diff --git a/.gitattributes b/.gitattributes
index a6344aac8c09253b3b630fb776ae94478aa0275b..ac978988309dfe0988394ff66881e85e606e41c4 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -33,3 +33,27 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text
*tfevents* filter=lfs diff=lfs merge=lfs -text
+Down/graphics/graphics/down_paradox_tabular_reward.png filter=lfs diff=lfs merge=lfs -text
+Down/graphics/graphics/dual_down_antidown_episode_return.png filter=lfs diff=lfs merge=lfs -text
+Strange/AntiStrange/graphics/antistrange_diversity.png filter=lfs diff=lfs merge=lfs -text
+Strange/AntiStrange/graphics/antistrange_episode_return.png filter=lfs diff=lfs merge=lfs -text
+Strange/AntiStrange/graphics/antistrange_phase.png filter=lfs diff=lfs merge=lfs -text
+Strange/AntiStrange/graphics/antistrange_progress.png filter=lfs diff=lfs merge=lfs -text
+Strange/AntiStrange/graphics/antistrange_stability.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/antistrange_diversity.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/antistrange_episode_return.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/antistrange_phase.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/antistrange_progress.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/antistrange_stability.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/dual_episode_return.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/dual_stability.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/strange_diversity.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/strange_episode_return.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/strange_phase.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/strange_progress.png filter=lfs diff=lfs merge=lfs -text
+Strange/graphics/graphics/strange_stability.png filter=lfs diff=lfs merge=lfs -text
+Strange/strange/graphics/strange_diversity.png filter=lfs diff=lfs merge=lfs -text
+Strange/strange/graphics/strange_episode_return.png filter=lfs diff=lfs merge=lfs -text
+Strange/strange/graphics/strange_phase.png filter=lfs diff=lfs merge=lfs -text
+Strange/strange/graphics/strange_progress.png filter=lfs diff=lfs merge=lfs -text
+Strange/strange/graphics/strange_stability.png filter=lfs diff=lfs merge=lfs -text
diff --git a/Down/AntiDown/envs/corrupted_valley.py b/Down/AntiDown/envs/corrupted_valley.py
new file mode 100644
index 0000000000000000000000000000000000000000..52649de040c3cec0a58a9bd8eaf44c3f199aad41
--- /dev/null
+++ b/Down/AntiDown/envs/corrupted_valley.py
@@ -0,0 +1,132 @@
+import math
+from dataclasses import dataclass
+from typing import Optional, Tuple, Dict, Any
+
+import numpy as np
+
+
+@dataclass
+class StepResult:
+ obs: int
+ reward: float
+ done: bool
+ info: Dict[str, Any]
+
+
+class CorruptedValleyEnv:
+ """
+ 7x7 gridworld with:
+ - Start S at bottom-left (row=6, col=0)
+ - Goal G at top-right (row=0, col=6)
+ - Corrupted valley V in the center of the grid.
+
+ Phases:
+ 1: Valley is falsely attractive (positive bonus).
+ 2: Valley is corrected (neutral or mildly negative).
+ 3: Same rewards as phase 2. Intended for noisy-training experiments.
+
+ Observation is a single integer state index in [0, n_states).
+ Actions: 0=up, 1=right, 2=down, 3=left.
+ """
+
+ def __init__(
+ self,
+ seed: Optional[int] = None,
+ grid_size: int = 7,
+ valley_reward_phase1: float = 2.0,
+ valley_reward_phase2: float = -0.5,
+ step_penalty: float = -0.01,
+ max_steps: int = 50,
+ phase: int = 1,
+ ) -> None:
+ self.grid_size = grid_size
+ self.n_states = grid_size * grid_size
+ self.n_actions = 4
+
+ self.valley_reward_phase1 = valley_reward_phase1
+ self.valley_reward_phase2 = valley_reward_phase2
+ self.step_penalty = step_penalty
+ self.max_steps = max_steps
+
+ self.start_pos = (grid_size - 1, 0)
+ self.goal_pos = (0, grid_size - 1)
+
+ self.rng = np.random.default_rng(seed)
+ self.phase = phase
+
+ # center 3x3 block as valley
+ c = grid_size // 2
+ self.valley_cells = {
+ (r, c2)
+ for r in range(c - 1, c + 2)
+ for c2 in range(c - 1, c + 2)
+ }
+
+ self.pos: Tuple[int, int] = self.start_pos
+ self.steps = 0
+
+ def _state_from_pos(self, pos: Tuple[int, int]) -> int:
+ r, c = pos
+ return r * self.grid_size + c
+
+ def _obs(self) -> int:
+ return self._state_from_pos(self.pos)
+
+ def reset(self) -> int:
+ self.pos = self.start_pos
+ self.steps = 0
+ return self._obs()
+
+ def set_phase(self, phase: int) -> None:
+ if phase not in (1, 2, 3):
+ raise ValueError(f"Invalid phase: {phase}")
+ self.phase = phase
+
+ def step(self, action: int) -> StepResult:
+ self.steps += 1
+
+ r, c = self.pos
+ if action == 0: # up
+ r -= 1
+ elif action == 1: # right
+ c += 1
+ elif action == 2: # down
+ r += 1
+ elif action == 3: # left
+ c -= 1
+
+ # clamp to grid
+ r = max(0, min(self.grid_size - 1, r))
+ c = max(0, min(self.grid_size - 1, c))
+ self.pos = (r, c)
+
+ reward = self.step_penalty
+ done = False
+ info: Dict[str, Any] = {}
+
+ in_valley = self.pos in self.valley_cells
+ info["valley"] = in_valley
+
+ if self.pos == self.goal_pos:
+ reward += 1.0
+ done = True
+ info["terminal"] = "goal"
+ elif in_valley:
+ if self.phase == 1:
+ reward += self.valley_reward_phase1
+ else:
+ reward += self.valley_reward_phase2
+
+ if self.steps >= self.max_steps and not done:
+ done = True
+ info["terminal"] = "timeout"
+
+ return StepResult(
+ obs=self._obs(),
+ reward=reward,
+ done=done,
+ info=info,
+ )
+
+ def sample_action(self) -> int:
+ return self.rng.integers(0, self.n_actions)
diff --git a/Down/AntiDown/exp/plot_corrupted_valley_results.py b/Down/AntiDown/exp/plot_corrupted_valley_results.py
new file mode 100644
index 0000000000000000000000000000000000000000..a53839fb26c21ab091c09d3cb0188f1c8b8e1198
--- /dev/null
+++ b/Down/AntiDown/exp/plot_corrupted_valley_results.py
@@ -0,0 +1,135 @@
+"""
+Plot results for the Corrupted Valley tabular experiment.
+
+Expects a CSV file created by `exp/run_corrupted_valley_tabular.py` with columns:
+ phase, phase_tag, episode, agent, total_reward, valley_visits
+"""
+
+# --- twoquarks bootstrap (path-stable imports) ---
+import sys
+from pathlib import Path
+_ROOT = Path(__file__).resolve().parents[1] # project root (sibling of exp/)
+if str(_ROOT) not in sys.path:
+ sys.path.insert(0, str(_ROOT))
+# -------------------------------------------------
+
+
+import csv
+import os
+from collections import defaultdict
+from typing import Dict, List, Tuple
+
+import matplotlib.pyplot as plt
+
+
+RESULTS_DIR = Path(os.environ.get("TWOQUARKS_RESULTS_DIR", (Path(__file__).resolve().parent.parent / "results").as_posix()))
+RESULTS_CSV = str(RESULTS_DIR / "antidown_corrupted_valley_tabular.csv")
+OUT_DIR = Path(os.environ.get("TWOQUARKS_GRAPHICS_DIR", (Path(__file__).resolve().parent.parent / "graphics").as_posix()))
+OUT_DIR.mkdir(parents=True, exist_ok=True)
+OUT_PREFIX = str(OUT_DIR / "antidown_corrupted_valley_")
+
+
+def load_results(path: str) -> List[Dict[str, str]]:
+ rows: List[Dict[str, str]] = []
+ with open(path, mode="r", newline="") as f:
+ reader = csv.DictReader(f)
+ for row in reader:
+ rows.append(row)
+ return rows
+
+
+def build_global_index(rows: List[Dict[str, str]]) -> Tuple[Dict[int, int], Dict[int, Dict[str, List[Tuple[int, float, float]]]]]:
+ """
+ Returns:
+ phase_to_max_ep: phase -> max episode index
+ data: phase -> agent -> list of (global_ep, total_reward, valley_visits)
+ """
+ phase_to_eps: Dict[int, List[int]] = defaultdict(list)
+ for r in rows:
+ phase = int(r["phase"])
+ ep = int(r["episode"])
+ phase_to_eps[phase].append(ep)
+
+ phase_to_max_ep: Dict[int, int] = {
+ phase: max(eps) + 1 for phase, eps in phase_to_eps.items()
+ }
+
+ data: Dict[int, Dict[str, List[Tuple[int, float, float]]]] = defaultdict(
+ lambda: defaultdict(list)
+ )
+
+ for r in rows:
+ phase = int(r["phase"])
+ agent = r["agent"]
+ ep = int(r["episode"])
+ total_reward = float(r["total_reward"])
+ valley_visits = float(r["valley_visits"])
+ max_ep = phase_to_max_ep[phase]
+ global_ep = (phase - 1) * max_ep + ep
+ data[phase][agent].append((global_ep, total_reward, valley_visits))
+
+ return phase_to_max_ep, data
+
+
+def plot_metric(
+ data: Dict[int, Dict[str, List[Tuple[int, float, float]]]],
+ metric_index: int,
+ ylabel: str,
+ out_path: str,
+) -> None:
+ """
+ metric_index: 1 for total_reward, 2 for valley_visits.
+ """
+ plt.figure()
+
+ # merge across phases, keeping breaks in the global index
+ agent_to_xy: Dict[str, Tuple[List[int], List[float]]] = {}
+
+ for phase, agents in sorted(data.items()):
+ for agent, triples in agents.items():
+ xs = [t[0] for t in triples]
+ ys = [t[metric_index] for t in triples]
+ if agent not in agent_to_xy:
+ agent_to_xy[agent] = ([], [])
+ agent_to_xy[agent][0].extend(xs)
+ agent_to_xy[agent][1].extend(ys)
+
+ for agent, (xs, ys) in agent_to_xy.items():
+ # sort by x
+ pairs = sorted(zip(xs, ys), key=lambda p: p[0])
+ xs_sorted = [p[0] for p in pairs]
+ ys_sorted = [p[1] for p in pairs]
+ plt.plot(xs_sorted, ys_sorted, label=agent)
+
+ plt.xlabel("global episode index")
+ plt.ylabel(ylabel)
+ plt.legend()
+ plt.tight_layout()
+ plt.savefig(out_path)
+ plt.close()
+
+
+def main() -> None:
+ if not os.path.exists(RESULTS_CSV):
+ raise FileNotFoundError(f"Results file not found: {RESULTS_CSV}")
+
+ rows = load_results(RESULTS_CSV)
+ _, data = build_global_index(rows)
+
+ plot_metric(
+ data,
+ metric_index=1,
+ ylabel="total reward per episode",
+ out_path=OUT_PREFIX + "reward.png",
+ )
+
+ plot_metric(
+ data,
+ metric_index=2,
+ ylabel="valley visits per episode",
+ out_path=OUT_PREFIX + "valley_visits.png",
+ )
+
+
+if __name__ == "__main__":
+ main()
\ No newline at end of file
diff --git a/Down/AntiDown/exp/run_corrupted_valley_tabular.py b/Down/AntiDown/exp/run_corrupted_valley_tabular.py
new file mode 100644
index 0000000000000000000000000000000000000000..0e22fde3261c5cc94c219bc8cd35a26a30f819a3
--- /dev/null
+++ b/Down/AntiDown/exp/run_corrupted_valley_tabular.py
@@ -0,0 +1,304 @@
+"""
+Tabular experiments in the Corrupted Valley Gridworld.
+
+Agents:
+- EpsGreedyQAgent (baseline)
+- SoftmaxBoltzmannAgent
+- LevoQTabularAgent
+- LevoThinkingEnsembleAgent
+
+Phases:
+1) Corrupted reward in the valley (falsely attractive).
+2) Corrected reward.
+3) Corrected reward + noisy TD-updates for LevoThinking heads.
+"""
+
+# --- twoquarks bootstrap (path-stable imports) ---
+import sys
+from pathlib import Path
+_ROOT = Path(__file__).resolve().parents[1] # project root (sibling of exp/)
+if str(_ROOT) not in sys.path:
+ sys.path.insert(0, str(_ROOT))
+# -------------------------------------------------
+
+
+import os
+from typing import Dict, List, Optional, Iterable
+
+import numpy as np
+
+from envs.corrupted_valley import CorruptedValleyEnv
+from levo.levo_q_tabular import LevoQTabularAgent
+from levo.levo_thinking_ensemble import LevoThinkingEnsembleAgent
+from utils.logging import CSVLogger
+
+
+class EpsGreedyQAgent:
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ epsilon: float = 0.1,
+ gamma: float = 0.99,
+ alpha: float = 0.1,
+ name: str = "EpsGreedy",
+ ) -> None:
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.epsilon = epsilon
+ self.gamma = gamma
+ self.alpha = alpha
+ self.name = name
+ self.Q = np.zeros((n_states, n_actions), dtype=float)
+
+ def select_action(self, state: int, rng: np.random.Generator) -> int:
+ if rng.random() < self.epsilon:
+ return int(rng.integers(0, self.n_actions))
+ q_s = self.Q[state]
+ return int(rng.choice(np.flatnonzero(q_s == q_s.max())))
+
+ def update(self, s: int, a: int, r: float, s_next: int, done: bool) -> None:
+ q_sa = self.Q[s, a]
+ if done:
+ target = r
+ else:
+ target = r + self.gamma * float(self.Q[s_next].max())
+ td = target - q_sa
+ self.Q[s, a] = q_sa + self.alpha * td
+
+
+class SoftmaxBoltzmannAgent:
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ tau: float = 0.5,
+ gamma: float = 0.99,
+ alpha: float = 0.1,
+ name: str = "Softmax",
+ ) -> None:
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.tau = tau
+ self.gamma = gamma
+ self.alpha = alpha
+ self.name = name
+ self.Q = np.zeros((n_states, n_actions), dtype=float)
+
+ def _softmax(self, q_s: np.ndarray) -> np.ndarray:
+ q = q_s / max(self.tau, 1e-8)
+ q = q - np.max(q)
+ ex = np.exp(q)
+ s = ex.sum()
+ if s <= 0.0:
+ return np.ones_like(ex) / len(ex)
+ return ex / s
+
+ def select_action(self, state: int, rng: np.random.Generator) -> int:
+ probs = self._softmax(self.Q[state])
+ return int(rng.choice(self.n_actions, p=probs))
+
+ def update(self, s: int, a: int, r: float, s_next: int, done: bool) -> None:
+ q_sa = self.Q[s, a]
+ if done:
+ target = r
+ else:
+ target = r + self.gamma * float(self.Q[s_next].max())
+ td = target - q_sa
+ self.Q[s, a] = q_sa + self.alpha * td
+
+
+def run_episode(
+ env: CorruptedValleyEnv,
+ agent,
+ phase_id: int,
+ episode_idx: int,
+ logger: CSVLogger,
+ rng: np.random.Generator,
+ noisy_heads: Optional[Iterable[int]] = None,
+ noise_std: float = 0.0,
+) -> None:
+ obs = env.reset()
+ total_reward = 0.0
+ valley_visits = 0
+ done = False
+
+ while not done:
+ action = agent.select_action(obs, rng=rng)
+ step = env.step(action)
+ next_obs = step.obs
+ reward = step.reward
+ done = step.done
+ info = step.info
+
+ total_reward += reward
+ if info.get("valley", False):
+ valley_visits += 1
+
+ if isinstance(agent, LevoThinkingEnsembleAgent):
+ agent.update(
+ obs,
+ action,
+ reward,
+ next_obs,
+ done,
+ noisy_heads=noisy_heads,
+ noise_std=noise_std,
+ rng=rng,
+ )
+ else:
+ agent.update(obs, action, reward, next_obs, done)
+
+ obs = next_obs
+
+ logger.log(
+ {
+ "phase": phase_id,
+ "phase_tag": f"phase{phase_id}",
+ "episode": episode_idx,
+ "agent": agent.name,
+ "total_reward": total_reward,
+ "valley_visits": valley_visits,
+ }
+ )
+
+
+def run_phase(
+ env_seed_base: int,
+ env_seed_offset: int,
+ phase_id: int,
+ n_episodes: int,
+ agents: List,
+ logger: CSVLogger,
+ noisy_heads_spec: Optional[Iterable[int]] = None,
+ noise_std: float = 0.0,
+) -> None:
+ """
+ Run one phase for all agents.
+
+ Seeds are constructed as:
+ env_seed = env_seed_base + phase_id * env_seed_offset + agent_idx * 10000 + episode_idx
+ so that episodes are reproducible but independent across agents and phases.
+ """
+ for agent_idx, agent in enumerate(agents):
+ for ep in range(n_episodes):
+ env_seed = (
+ env_seed_base
+ + phase_id * env_seed_offset
+ + agent_idx * 10000
+ + ep
+ )
+ env = CorruptedValleyEnv(seed=env_seed, phase=phase_id)
+ rng = np.random.default_rng(env_seed)
+
+ if isinstance(agent, LevoThinkingEnsembleAgent):
+ if noisy_heads_spec is None:
+ # default: half of the heads receive noisy TD-updates
+ k = max(1, agent.n_heads // 2)
+ effective_noisy_heads = range(k)
+ else:
+ effective_noisy_heads = noisy_heads_spec
+ episode_noise_std = noise_std
+ else:
+ effective_noisy_heads = None
+ episode_noise_std = 0.0
+
+ run_episode(
+ env=env,
+ agent=agent,
+ phase_id=phase_id,
+ episode_idx=ep,
+ logger=logger,
+ rng=rng,
+ noisy_heads=effective_noisy_heads,
+ noise_std=episode_noise_std,
+ )
+
+
+def main() -> None:
+ base_seed = 1234
+ seed_offset = 1000
+
+ # probe environment to get sizes
+ probe_env = CorruptedValleyEnv(seed=base_seed, phase=1)
+ n_states = probe_env.n_states
+ n_actions = probe_env.n_actions
+
+ agents = [
+ EpsGreedyQAgent(n_states, n_actions, epsilon=0.1, name="EpsGreedy"),
+ SoftmaxBoltzmannAgent(n_states, n_actions, tau=0.5, name="Softmax"),
+ LevoQTabularAgent(
+ n_states,
+ n_actions,
+ A=0.5,
+ omega=0.05,
+ ent_weight=0.0,
+ name="LevoQ",
+ ),
+ LevoThinkingEnsembleAgent(
+ n_states,
+ n_actions,
+ n_heads=5,
+ A=0.5,
+ omega=0.05,
+ lambda_var=0.5,
+ name="LevoThinking",
+ ),
+ ]
+
+ _results_dir = Path(os.environ.get("TWOQUARKS_RESULTS_DIR", (Path(__file__).resolve().parents[1] / "results").as_posix()))
+ _results_dir.mkdir(parents=True, exist_ok=True)
+ results_path = str(_results_dir / "antidown_corrupted_valley_tabular.csv")
+ logger = CSVLogger(
+ results_path,
+ fieldnames=[
+ "phase",
+ "phase_tag",
+ "episode",
+ "agent",
+ "total_reward",
+ "valley_visits",
+ ],
+ )
+
+ n_episodes = 200
+
+ # Phase 1: corrupted valley
+ run_phase(
+ env_seed_base=base_seed,
+ env_seed_offset=seed_offset,
+ phase_id=1,
+ n_episodes=n_episodes,
+ agents=agents,
+ logger=logger,
+ noisy_heads_spec=None,
+ noise_std=0.0,
+ )
+
+ # Phase 2: corrected valley
+ run_phase(
+ env_seed_base=base_seed,
+ env_seed_offset=seed_offset,
+ phase_id=2,
+ n_episodes=n_episodes,
+ agents=agents,
+ logger=logger,
+ noisy_heads_spec=None,
+ noise_std=0.0,
+ )
+
+ # Phase 3: corrected valley + noisy TD-updates for LevoThinking
+ run_phase(
+ env_seed_base=base_seed,
+ env_seed_offset=seed_offset,
+ phase_id=3,
+ n_episodes=n_episodes,
+ agents=agents,
+ logger=logger,
+ noisy_heads_spec=None, # default: half of the heads
+ noise_std=0.1,
+ )
+
+
+if __name__ == "__main__":
+ main()
\ No newline at end of file
diff --git a/Down/AntiDown/levo/levo_q_tabular.py b/Down/AntiDown/levo/levo_q_tabular.py
new file mode 100644
index 0000000000000000000000000000000000000000..8bf91bf1e5211e2dfc6a1c9514cf1826d5847e6f
--- /dev/null
+++ b/Down/AntiDown/levo/levo_q_tabular.py
@@ -0,0 +1,71 @@
+from typing import Optional
+
+import numpy as np
+
+from .policies import hf_levo_policy_tabular
+
+
+class LevoQTabularAgent:
+ """
+ Tabular Q-learning agent with an HF-Levo policy.
+
+ The Q-update is standard:
+ Q(s, a) <- Q(s, a) + alpha * (r + gamma max_a' Q(s', a') - Q(s, a))
+
+ The policy is:
+ score(a) = Q(s, a) + A cos(omega * t + phi_a + phase_offset)
+ pi(a|s) = softmax(score / tau)
+ """
+
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ gamma: float = 0.99,
+ alpha: float = 0.1,
+ A: float = 0.5,
+ omega: float = 0.1,
+ phase_offset: float = 0.0,
+ ent_weight: float = 0.0,
+ prior: Optional[np.ndarray] = None,
+ tau: float = 1.0,
+ name: str = "LevoQ",
+ ) -> None:
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.gamma = gamma
+ self.alpha = alpha
+ self.A = A
+ self.omega = omega
+ self.phase_offset = phase_offset
+ self.ent_weight = ent_weight
+ self.prior = prior
+ self.tau = tau
+
+ self.name = name
+ self.Q = np.zeros((n_states, n_actions), dtype=float)
+ self.t = 0 # global step counter for the HF modulation
+
+ def select_action(self, state: int, rng: np.random.Generator) -> int:
+ probs = hf_levo_policy_tabular(
+ self.Q,
+ state,
+ t=self.t,
+ A=self.A,
+ omega=self.omega,
+ phase_offset=self.phase_offset,
+ ent_weight=self.ent_weight,
+ prior=self.prior,
+ tau=self.tau,
+ )
+ self.t += 1
+ return int(rng.choice(self.n_actions, p=probs))
+
+ def update(self, s: int, a: int, r: float, s_next: int, done: bool) -> None:
+ q_sa = self.Q[s, a]
+ if done:
+ target = r
+ else:
+ target = r + self.gamma * float(self.Q[s_next].max())
+ td = target - q_sa
+ self.Q[s, a] = q_sa + self.alpha * td
diff --git a/Down/AntiDown/levo/levo_thinking_ensemble.py b/Down/AntiDown/levo/levo_thinking_ensemble.py
new file mode 100644
index 0000000000000000000000000000000000000000..7193fb283bc46443af37942e8462b016b121c2f0
--- /dev/null
+++ b/Down/AntiDown/levo/levo_thinking_ensemble.py
@@ -0,0 +1,104 @@
+from typing import Iterable, Optional
+
+import numpy as np
+
+from .policies import ensemble_levo_thinking_policy
+
+
+class LevoThinkingEnsembleAgent:
+ """
+ Ensemble Q-learning agent with LevoThinking policy.
+
+ Q has shape (n_heads, n_states, n_actions).
+
+ For action selection, we use:
+ mu(a) = mean_h Q_h(s, a)
+ var(a) = var_h Q_h(s, a)
+ base_score(a) = mu(a) - lambda_var * var(a)
+ score(a) = base_score(a) + HF(t, a)
+
+ Each head is updated independently with standard Q-learning, optionally
+ adding Gaussian noise to the TD-error for a subset of heads.
+ """
+
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ n_heads: int = 5,
+ gamma: float = 0.99,
+ alpha: float = 0.1,
+ A: float = 0.5,
+ omega: float = 0.1,
+ phase_offset: float = 0.0,
+ lambda_var: float = 0.5,
+ prior: Optional[np.ndarray] = None,
+ tau: float = 1.0,
+ name: str = "LevoThinking",
+ ) -> None:
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.n_heads = n_heads
+ self.gamma = gamma
+ self.alpha = alpha
+ self.A = A
+ self.omega = omega
+ self.phase_offset = phase_offset
+ self.lambda_var = lambda_var
+ self.prior = prior
+ self.tau = tau
+
+ self.name = name
+ self.Q = np.zeros((n_heads, n_states, n_actions), dtype=float)
+ self.t = 0 # global step counter for the HF modulation
+
+ def select_action(self, state: int, rng: np.random.Generator) -> int:
+ probs = ensemble_levo_thinking_policy(
+ self.Q,
+ state,
+ t=self.t,
+ A=self.A,
+ omega=self.omega,
+ phase_offset=self.phase_offset,
+ lambda_var=self.lambda_var,
+ prior=self.prior,
+ tau=self.tau,
+ )
+ self.t += 1
+ return int(rng.choice(self.n_actions, p=probs))
+
+ def update(
+ self,
+ s: int,
+ a: int,
+ r: float,
+ s_next: int,
+ done: bool,
+ noisy_heads: Optional[Iterable[int]] = None,
+ noise_std: float = 0.0,
+ rng: Optional[np.random.Generator] = None,
+ ) -> None:
+ """
+ Update each head with standard Q-learning.
+
+ If `noisy_heads` is not None and `noise_std > 0`, then for any head h
+ in `noisy_heads`, we add N(0, noise_std) to the TD-error before the
+ update. This is used in Phase 3 to simulate corrupted learning signals.
+ """
+ if noisy_heads is None:
+ noisy_set = set()
+ else:
+ noisy_set = set(int(h) for h in noisy_heads)
+
+ for h in range(self.n_heads):
+ q_sa = self.Q[h, s, a]
+ if done:
+ target = r
+ else:
+ target = r + self.gamma * float(self.Q[h, s_next].max())
+ td = target - q_sa
+
+ if h in noisy_set and noise_std > 0.0 and rng is not None:
+ td += float(rng.normal(loc=0.0, scale=noise_std))
+
+ self.Q[h, s, a] = q_sa + self.alpha * td
diff --git a/Down/AntiDown/levo/policies.py b/Down/AntiDown/levo/policies.py
new file mode 100644
index 0000000000000000000000000000000000000000..4c6d170d995195e4e837e7330ba3cf96849d91f0
--- /dev/null
+++ b/Down/AntiDown/levo/policies.py
@@ -0,0 +1,101 @@
+import math
+from typing import Optional
+
+import numpy as np
+
+
+def softmax(x: np.ndarray, tau: float = 1.0) -> np.ndarray:
+ x = np.asarray(x, dtype=float)
+ if tau <= 0.0:
+ raise ValueError("tau must be positive")
+ x = x / tau
+ x = x - np.max(x)
+ ex = np.exp(x)
+ s = ex.sum()
+ if s <= 0.0:
+ # fallback: uniform
+ return np.ones_like(ex) / len(ex)
+ return ex / s
+
+
+def hf_levo_policy_tabular(
+ Q: np.ndarray,
+ state: int,
+ t: int,
+ A: float = 0.5,
+ omega: float = 0.1,
+ phase_offset: float = 0.0,
+ ent_weight: float = 0.0,
+ prior: Optional[np.ndarray] = None,
+ tau: float = 1.0,
+) -> np.ndarray:
+ """
+ HF-Levo policy on a single Q-table.
+
+ score(a) = Q(s, a) + A cos(omega * t + phi_a + phase_offset)
+ """
+ q_s = np.asarray(Q[state], dtype=float)
+ n_actions = q_s.shape[0]
+
+ phases = np.linspace(0.0, 2.0 * math.pi, n_actions, endpoint=False)
+ osc = A * np.cos(omega * float(t) + phases + phase_offset)
+ score = q_s + osc
+
+ p = softmax(score, tau=tau)
+
+ if prior is None or ent_weight <= 0.0:
+ return p
+
+ prior = np.asarray(prior, dtype=float)
+ prior = prior / max(prior.sum(), 1e-8)
+ w = max(0.0, min(1.0, float(ent_weight)))
+ p_mix = (1.0 - w) * p + w * prior
+ p_mix = np.clip(p_mix, 1e-8, 1.0)
+ p_mix /= p_mix.sum()
+ return p_mix
+
+
+def ensemble_levo_thinking_policy(
+ Q_ensemble: np.ndarray,
+ state: int,
+ t: int,
+ A: float = 0.5,
+ omega: float = 0.1,
+ phase_offset: float = 0.0,
+ lambda_var: float = 0.5,
+ prior: Optional[np.ndarray] = None,
+ tau: float = 1.0,
+) -> np.ndarray:
+ """
+ LevoThinking ensemble policy.
+
+ Let Q_h be the Q-table of head h.
+
+ mu(a) = mean_h Q_h(s, a)
+ var(a) = var_h Q_h(s, a)
+
+ base_score(a) = mu(a) - lambda_var * var(a)
+ score(a) = base_score(a) + A cos(omega * t + phi_a + phase_offset)
+ """
+ q_heads = np.asarray(Q_ensemble[:, state, :], dtype=float)
+ mu = q_heads.mean(axis=0)
+ var = q_heads.var(axis=0)
+
+ n_actions = mu.shape[0]
+ phases = np.linspace(0.0, 2.0 * math.pi, n_actions, endpoint=False)
+ osc = A * np.cos(omega * float(t) + phases + phase_offset)
+
+ base_score = mu - lambda_var * var
+ score = base_score + osc
+
+ p = softmax(score, tau=tau)
+
+ if prior is None:
+ return p
+
+ prior = np.asarray(prior, dtype=float)
+ prior = prior / max(prior.sum(), 1e-8)
+ p_mix = 0.8 * p + 0.2 * prior
+ p_mix = np.clip(p_mix, 1e-8, 1.0)
+ p_mix /= p_mix.sum()
+ return p_mix
diff --git a/Down/AntiDown/utils/logging.py b/Down/AntiDown/utils/logging.py
new file mode 100644
index 0000000000000000000000000000000000000000..48eb53ef41067f626bbfcadaeabd2aaa10927896
--- /dev/null
+++ b/Down/AntiDown/utils/logging.py
@@ -0,0 +1,63 @@
+"""
+Simple logging utilities for experiments.
+
+Provides a minimal CSVLogger that creates the output directory if needed,
+writes a header once, and appends rows as dictionaries.
+"""
+
+from __future__ import annotations
+
+import csv
+import os
+from typing import Mapping, Sequence
+
+
+class CSVLogger:
+ """
+ Minimal CSV logger for experiment metrics.
+
+ Parameters
+ ----------
+ filepath : str
+ Path to the CSV file to create/append.
+ fieldnames : Sequence[str]
+ Ordered list of column names to use as the CSV header.
+
+ Notes
+ -----
+ - The directory containing `filepath` is created if it does not exist.
+ - The file is overwritten when the logger is constructed.
+ - Each call to `log` appends a single row.
+ """
+
+ def __init__(self, filepath: str, fieldnames: Sequence[str]) -> None:
+ self.filepath = filepath
+ # Handle the case where filepath is in the current directory.
+ directory = os.path.dirname(filepath)
+ if directory:
+ os.makedirs(directory, exist_ok=True)
+
+ self.fieldnames = list(fieldnames)
+ self._init_file()
+
+ def _init_file(self) -> None:
+ """Create or overwrite the CSV file and write the header row."""
+ with open(self.filepath, mode="w", newline="") as f:
+ writer = csv.DictWriter(f, fieldnames=self.fieldnames)
+ writer.writeheader()
+
+ def log(self, row_dict: Mapping[str, object]) -> None:
+ """
+ Append a single row to the CSV file.
+
+ Parameters
+ ----------
+ row_dict : Mapping[str, object]
+ Dictionary mapping field name to value. Missing keys will be
+ written as empty cells; extra keys are ignored.
+ """
+ # Project to known fieldnames to avoid surprises.
+ row = {k: row_dict.get(k, "") for k in self.fieldnames}
+ with open(self.filepath, mode="a", newline="") as f:
+ writer = csv.DictWriter(f, fieldnames=self.fieldnames)
+ writer.writerow(row)
diff --git a/Down/MODEL.md b/Down/MODEL.md
new file mode 100644
index 0000000000000000000000000000000000000000..572cb5e81dcdca5a592639a5614f09f644d11b23
--- /dev/null
+++ b/Down/MODEL.md
@@ -0,0 +1,96 @@
+\# Model Description: Down / AntiDown
+
+
+
+\## Purpose
+
+
+
+The Down / AntiDown models are reinforcement learning agents designed to expose and analyze failure modes under deceptive reward conditions. The emphasis is not on maximizing return, but on characterizing instability, collapse, and recovery dynamics.
+
+
+
+\## Down Agent
+
+
+
+\*\*Role:\*\*
+
+The Down agent represents a learner operating under a corrupted reward signal that remains internally consistent but externally misaligned.
+
+
+
+\*\*Key Properties:\*\*
+
+\- Learns normally during early phases
+
+\- Maintains high confidence even as reward becomes deceptive
+
+\- Exhibits delayed collapse once misalignment compounds
+
+
+
+\*\*Observed Behaviors:\*\*
+
+\- Prolonged false stability
+
+\- Sharp performance cliffs
+
+\- Difficulty detecting reward corruption autonomously
+
+
+
+
+
+\## AntiDown Agent
+
+
+
+\*\*Role:\*\*
+
+AntiDown serves as a contrasting hypothesis agent, exposed to the same environment but with altered sensitivity to reward inconsistencies.
+
+
+
+\*\*Key Properties:\*\*
+
+\- Increased sensitivity to instability signals
+
+\- Earlier behavioral deviation under reward corruption
+
+\- Serves as a comparative probe, not a “better” agent
+
+
+
+
+
+\## Design
+
+
+
+These models are not meant to be optimal. They are diagnostic instruments designed to surface questions such as:
+
+\- When does optimization become actively misleading?
+
+\- What internal signals precede collapse?
+
+\- Can instability be detected before outcomes degrade?
+
+
+
+\## Safety
+
+
+
+Down / AntiDown formalize a common safety failure mode:
+
+> Systems that behave correctly until they suddenly don’t — and give no warning when it matters.
+
+
+
+They are intended as testbeds for studying monitoring, intervention, and robustness rather than performance.
+
+
+
+
+
diff --git a/Down/README.md b/Down/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..7085883896b351c2895decb02c2756d8e431ebb6
--- /dev/null
+++ b/Down/README.md
@@ -0,0 +1,64 @@
+\# Reinforcement Learning under Deceptive Reward
+\## Down / AntiDown
+
+This project investigates failure modes in reinforcement learning systems operating under deceptive, corrupted, or mis-specified reward signals. Rather than optimizing for peak performance, the focus is on observing how agents behave when reward feedback becomes unreliable while confidence and apparent stability remain high.
+
+The Down / AntiDown pair is designed as a controlled benchmark for studying robustness, collapse, and recovery dynamics under adversarial reward conditions, with direct relevance to AI safety and alignment research.
+
+\## Core Idea
+
+In many real-world and safety-critical settings, reward signals may be:
+
+\- Misaligned with the true task objective
+
+\- Delayed, noisy, or partially adversarial
+
+\- Temporarily valid and then corrupted
+
+
+This project studies how learning agents respond to these conditions, particularly:
+
+\- How long they continue to act confidently under corrupted reward
+
+\- Whether collapse occurs abruptly or gradually
+
+\- Whether recovery is possible once reward integrity is restored
+
+
+\## Project Structure
+
+\- `agents/`
+
+#Implementations of the Down and AntiDown agents.
+
+\- `envs/`
+
+#Custom environments modeling deceptive reward dynamics.
+
+\- `run\_all.py`
+
+#Entry point to run both Down and AntiDown agents in a unified experimental setup.
+
+
+\## Running the Experiments
+
+This project is designed to run without notebooks. (I resorted to Anaconda)
+
+```bash
+
+conda activate your\_env
+
+python run\_all.py
+
+Relevance to AI Safety
+
+This benchmark targets a known blind spot in current ML evaluation: agents that appear competent while optimizing the wrong objective. It provides concrete tools to study:
+
+Misalignment under deceptive feedback
+
+Early-warning signals preceding collapse
+
+Limits of reward-centric evaluation
+
+The project directly supports research on stability-aware and intervention-based safety mechanisms.
+
diff --git a/Down/down/envs/env_paradox.py b/Down/down/envs/env_paradox.py
new file mode 100644
index 0000000000000000000000000000000000000000..390c902a252a022c555a707b6acb02a23fdeea95
--- /dev/null
+++ b/Down/down/envs/env_paradox.py
@@ -0,0 +1,193 @@
+
+import numpy as np
+from dataclasses import dataclass
+from typing import Tuple, Dict, Optional
+
+
+@dataclass(frozen=True)
+class ParadoxState:
+ """Structured view of the epistemic state."""
+ ambiguity_type: int # 0..2
+ evidence_bin: int # 0..2
+ risk_level: int # 0..1
+ phase: int # 1..3
+
+
+class EpistemicValleyEnv:
+ """
+ Epistemic Valley Inframe v2
+
+ Discrete one-step environment modelling epistemic risk under ambiguity.
+
+ State s = (ambiguity_type, evidence_bin, risk_level, phase)
+ - ambiguity_type: 0=lexical, 1=scope, 2=missing-data
+ - evidence_bin: 0=low, 1=medium, 2=high
+ - risk_level: 0=low, 1=high
+ - phase: 1, 2, or 3 (reward regime)
+
+ Actions:
+ 0 = HOLD (stay with current uncertainty)
+ 1 = EXPAND (seek more evidence / broader context)
+ 2 = CLARIFY (ask a targeted clarification)
+ 3 = DEFER (explicitly postpone the decision)
+ 4 = ANSWER (commit to an answer)
+
+ Episodes are single-step: reset() -> step(action) -> done=True.
+ """
+ # actions (kept as attributes so agents can introspect)
+ HOLD = 0
+ EXPAND = 1
+ CLARIFY = 2
+ DEFER = 3
+ ANSWER = 4
+
+ def __init__(self, phase: int = 1, seed: Optional[int] = None) -> None:
+ assert phase in (1, 2, 3), "phase must be 1, 2 or 3"
+ self.ambiguity_types = ["lexical", "scope", "missing-data"]
+ self.evidence_bins = ["low", "medium", "high"]
+ self.risk_levels = ["low", "high"]
+ self.phases = [1, 2, 3]
+
+ self.n_ambiguity = len(self.ambiguity_types)
+ self.n_evidence = len(self.evidence_bins)
+ self.n_risk = len(self.risk_levels)
+ self.n_phase = len(self.phases)
+
+ self.n_states = self.n_ambiguity * self.n_evidence * self.n_risk * self.n_phase
+ self.n_actions = 5
+
+ self.phase = phase
+ self.rng = np.random.default_rng(seed)
+ self.state: Optional[ParadoxState] = None
+ self.done: bool = False
+
+ # ------------------------------------------------------------------
+ # state indexing helpers
+ # ------------------------------------------------------------------
+ def encode_state(self, s: ParadoxState) -> int:
+ """Flatten ParadoxState into [0, n_states)."""
+ idx = s.ambiguity_type
+ idx = idx * self.n_evidence + s.evidence_bin
+ idx = idx * self.n_risk + s.risk_level
+ # phase is 1..3, internally we use 0..2
+ phase_index = s.phase - 1
+ idx = idx * self.n_phase + phase_index
+ return idx
+
+ def decode_state(self, idx: int) -> ParadoxState:
+ """Inverse of encode_state."""
+ phase_index = idx % self.n_phase
+ idx //= self.n_phase
+ risk_level = idx % self.n_risk
+ idx //= self.n_risk
+ evidence_bin = idx % self.n_evidence
+ idx //= self.n_evidence
+ ambiguity_type = idx
+ return ParadoxState(
+ ambiguity_type=int(ambiguity_type),
+ evidence_bin=int(evidence_bin),
+ risk_level=int(risk_level),
+ phase=int(phase_index + 1),
+ )
+
+ # ------------------------------------------------------------------
+ # core env API
+ # ------------------------------------------------------------------
+ def _sample_state(self) -> ParadoxState:
+ a = int(self.rng.integers(0, self.n_ambiguity))
+ e = int(self.rng.integers(0, self.n_evidence))
+ r = int(self.rng.integers(0, self.n_risk))
+ return ParadoxState(
+ ambiguity_type=a,
+ evidence_bin=e,
+ risk_level=r,
+ phase=self.phase,
+ )
+
+ def reset(self) -> Tuple[int, Dict]:
+ """Sample a new epistemic state and return its index + info."""
+ self.state = self._sample_state()
+ self.done = False
+ s_idx = self.encode_state(self.state)
+ return s_idx, {"state": self.state}
+
+ def step(self, action: int) -> Tuple[int, float, bool, Dict]:
+ """Apply one action, return (next_state_index, reward, done, info)."""
+ assert self.state is not None, "Call reset() before step()."
+ s = self.state
+ reward, failure_mode = self._reward(s, action)
+ self.done = True
+ info = {
+ "state": s,
+ "failure_mode": failure_mode,
+ }
+ # one-step episode; next state is irrelevant for this env
+ return self.encode_state(s), float(reward), self.done, info
+
+ # ------------------------------------------------------------------
+ # reward function
+ # ------------------------------------------------------------------
+ def _reward(self, s: ParadoxState, action: int) -> Tuple[float, str]:
+ """
+ Reward shaped by:
+ - evidence / risk alignment
+ - failure mode (overconfident vs overcautious)
+ - phase (reward regime and noise)
+
+ We implement a clean, reproducible version matching the narrative in
+ the original MODELS document: aggressive actions are good when
+ evidence is strong and risk is low, dangerous when evidence is weak
+ and risk is high, and conservative actions behave inversely.
+ """
+ e_str = self.evidence_bins[s.evidence_bin]
+ r_str = self.risk_levels[s.risk_level]
+ phase = s.phase
+
+ high_risk = (r_str == "high")
+ low_risk = (r_str == "low")
+ low_evidence = (e_str == "low")
+ high_evidence = (e_str == "high")
+
+ failure_mode = "neutral"
+ base = 0.0
+
+ # --- classify aggressive vs conservative actions ---
+ aggressive = action in (self.EXPAND, self.ANSWER)
+ conservative = action in (self.HOLD, self.DEFER)
+
+ # --- base reward logic before phase-specific shaping ---
+ if aggressive and high_risk and low_evidence:
+ # archetypal overconfidence: answer aggressively with little support
+ base = -2.0
+ failure_mode = "overconfident"
+ elif conservative and low_risk and high_evidence:
+ # archetypal overcautious: you could answer safely but you freeze
+ base = -0.8
+ failure_mode = "overcautious"
+ else:
+ # reasonably aligned choices
+ if aggressive and high_evidence and low_risk:
+ base = +2.0
+ elif aggressive and not (high_risk and low_evidence):
+ base = +0.8
+ elif conservative and high_risk and low_evidence:
+ base = +1.2
+ else:
+ base = 0.0
+
+ # --- phase-specific shaping ---
+ if phase == 1:
+ # Slight bonus for successful aggressive behaviour
+ if aggressive and base > 0:
+ base += 0.5
+ elif phase == 2:
+ # Harsher overconfidence penalty
+ if failure_mode == "overconfident":
+ base -= 1.0
+ elif phase == 3:
+ # Noisy feedback regime
+ noise = float(self.rng.normal(0.0, 0.5))
+ base += noise
+ base = float(np.clip(base, -3.0, 3.0))
+
+ return base, failure_mode
diff --git a/Down/down/exp/plot_paradox_results.py b/Down/down/exp/plot_paradox_results.py
new file mode 100644
index 0000000000000000000000000000000000000000..008b5f98f0e882147f38f240a43560b1a4d42ca0
--- /dev/null
+++ b/Down/down/exp/plot_paradox_results.py
@@ -0,0 +1,82 @@
+"""Plot results produced by exp/run_paradox_tabular.py.
+
+Creates PNG plots under down/graphics/.
+"""
+
+from __future__ import annotations
+
+import csv
+import os
+from pathlib import Path
+from typing import Dict, List
+
+import matplotlib.pyplot as plt
+
+
+def _load_csv(path: Path) -> List[Dict[str, str]]:
+ with path.open("r", newline="") as f:
+ return list(csv.DictReader(f))
+
+
+def main() -> None:
+ quark_dir = Path(__file__).resolve().parents[1] # .../down
+ results_dir = Path(os.environ.get("TWOQUARKS_RESULTS_DIR", (quark_dir / "results").as_posix()))
+ graphics_dir = Path(os.environ.get("TWOQUARKS_GRAPHICS_DIR", (quark_dir / "graphics").as_posix()))
+ results_dir.mkdir(parents=True, exist_ok=True)
+ graphics_dir.mkdir(parents=True, exist_ok=True)
+ results_csv = results_dir / "down_paradox_tabular_results.csv"
+
+ if not results_csv.exists():
+ raise FileNotFoundError(f"Missing results CSV: {results_csv}")
+
+ rows = _load_csv(results_csv)
+ if not rows:
+ raise RuntimeError(f"CSV is empty: {results_csv}")
+
+ # Normalize columns (older versions used episode_reward/rho_state)
+ def to_float(x: str) -> float:
+ try:
+ return float(x)
+ except Exception:
+ return float("nan")
+
+ # Build per-agent series
+ agents = sorted({r.get("agent", "unknown") for r in rows})
+ xs_all = [int(r.get("global_episode", r.get("episode", 0)) or 0) for r in rows]
+
+ # Episode reward plot
+ plt.figure()
+ for a in agents:
+ xs = [int(r.get("global_episode", r.get("episode", 0)) or 0) for r in rows if r.get("agent") == a]
+ ys = [to_float(r.get("episode_reward", r.get("return", "nan"))) for r in rows if r.get("agent") == a]
+ if xs:
+ plt.plot(xs, ys, label=a)
+ plt.xlabel("Global episode")
+ plt.ylabel("Episode reward")
+ plt.title("DOWN: reward over training")
+ plt.legend()
+ out1 = graphics_dir / "down_paradox_tabular_reward.png"
+ plt.savefig(out1, dpi=160, bbox_inches="tight")
+ plt.close()
+
+ # Rho plot (if present)
+ if any(("rho_state" in r) for r in rows) or any(("rho" in r) for r in rows):
+ plt.figure()
+ for a in agents:
+ xs = [int(r.get("global_episode", r.get("episode", 0)) or 0) for r in rows if r.get("agent") == a]
+ ys = [to_float(r.get("rho_state", r.get("rho", "nan"))) for r in rows if r.get("agent") == a]
+ if xs:
+ plt.plot(xs, ys, label=a)
+ plt.xlabel("Global episode")
+ plt.ylabel("rho")
+ plt.title("DOWN: rho over training")
+ plt.legend()
+ out2 = graphics_dir / "down_paradox_tabular_rho.png"
+ plt.savefig(out2, dpi=160, bbox_inches="tight")
+ plt.close()
+
+ print(f"Saved plots to {graphics_dir}")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/Down/down/exp/run_paradox_ppo_hybrid.py b/Down/down/exp/run_paradox_ppo_hybrid.py
new file mode 100644
index 0000000000000000000000000000000000000000..d1cb1abe59ca2c7d0aea80615b65a6a3c1d83823
--- /dev/null
+++ b/Down/down/exp/run_paradox_ppo_hybrid.py
@@ -0,0 +1,112 @@
+
+import csv
+from pathlib import Path
+
+import numpy as np
+
+from pathlib import Path
+import sys
+
+_THIS_DIR = Path(__file__).resolve().parent
+_QUARK_DIR = _THIS_DIR.parent
+if str(_QUARK_DIR) not in sys.path:
+ sys.path.insert(0, str(_QUARK_DIR))
+
+from envs.env_paradox import EpistemicValleyEnv
+from levo.agent_levo_paradox import HFLevoAgent, LevoParadoxIsomerAgent
+
+
+def run_ppo_hybrid(
+ out_csv: str | Path,
+ episodes_per_phase: int = 400,
+ seed: int = 2025,
+ update_every: int = 256,
+) -> None:
+ """
+ Train the Levo Paradox PPO Hybrid engine on Epistemic Valley and log results.
+
+ We keep the same CSV schema as the tabular runner, plus the PPO-specific
+ rho estimate for the visited state.
+ """
+ out_path = Path(out_csv)
+ out_path.parent.mkdir(parents=True, exist_ok=True)
+
+ rng = np.random.default_rng(seed)
+
+ # probe env for shapes
+ probe_env = EpistemicValleyEnv(phase=1, seed=seed)
+ n_states = probe_env.n_states
+ n_actions = probe_env.n_actions
+
+ agent = LevoParadoxPPOHybrid(
+ n_states=n_states,
+ n_actions=n_actions,
+ seed=seed,
+ )
+
+ global_ep = 0
+ steps_since_update = 0
+
+ with out_path.open("w", newline="") as f:
+ writer = csv.DictWriter(
+ f,
+ fieldnames=[
+ "global_episode",
+ "phase",
+ "episode",
+ "env_seed",
+ "agent",
+ "episode_reward",
+ "failure_mode",
+ "rho_state",
+ ],
+ )
+ writer.writeheader()
+
+ for phase in (1, 2, 3):
+ for local_ep in range(episodes_per_phase):
+ env_seed = int(rng.integers(0, 2**31 - 1))
+ env = EpistemicValleyEnv(phase=phase, seed=env_seed)
+
+ s_idx, info = env.reset()
+ action, logp, value_est, rho_est = agent.select_action(s_idx)
+ s_next_idx, reward, done, step_info = env.step(action)
+ failure_mode = step_info.get("failure_mode", "neutral")
+
+ agent.store_transition(
+ s_idx=s_idx,
+ action=action,
+ reward=reward,
+ log_prob=logp,
+ value=value_est,
+ rho=rho_est,
+ failure_mode=failure_mode,
+ )
+
+ writer.writerow(
+ {
+ "global_episode": global_ep,
+ "phase": phase,
+ "episode": local_ep,
+ "env_seed": env_seed,
+ "agent": "LevoParadoxPPOHybrid",
+ "episode_reward": float(reward),
+ "failure_mode": failure_mode,
+ "rho_state": rho_est,
+ }
+ )
+
+ global_ep += 1
+ steps_since_update += 1
+
+ if steps_since_update >= update_every:
+ agent.update()
+ steps_since_update = 0
+
+ # final update with any remaining samples
+ if steps_since_update > 0:
+ agent.update()
+
+
+if __name__ == "__main__":
+ run_ppo_hybrid((_QUARK_DIR / "results/paradox_ppo_results.csv").as_posix(), episodes_per_phase=400)
diff --git a/Down/down/exp/run_paradox_tabular.py b/Down/down/exp/run_paradox_tabular.py
new file mode 100644
index 0000000000000000000000000000000000000000..61111335273e753ec5a1d80bc5e7ff7d7608bea7
--- /dev/null
+++ b/Down/down/exp/run_paradox_tabular.py
@@ -0,0 +1,124 @@
+
+# --- twoquarks bootstrap (path-stable imports) ---
+import sys
+from pathlib import Path
+_ROOT = Path(__file__).resolve().parents[1] # project root (sibling of exp/)
+if str(_ROOT) not in sys.path:
+ sys.path.insert(0, str(_ROOT))
+# -------------------------------------------------
+
+import csv
+import os
+from pathlib import Path
+import sys
+
+import numpy as np
+
+# Robust imports regardless of where python is launched from.
+_THIS_DIR = Path(__file__).resolve().parent
+_QUARK_DIR = _THIS_DIR.parent # .../down
+_PROJECT_DIR = _QUARK_DIR.parent # .../Down
+
+if str(_QUARK_DIR) not in sys.path:
+ sys.path.insert(0, str(_QUARK_DIR))
+
+from envs.env_paradox import EpistemicValleyEnv
+from levo.agent_levo_paradox import HFLevoAgent, LevoParadoxIsomerAgent
+
+
+def run_experiment(
+ out_csv: str | Path,
+ episodes_per_phase: int = 400,
+ seed: int = 2025,
+) -> None:
+ """
+ Run HF-Levo and Levo Paradox tabular agents and log results to CSV.
+
+ The CSV schema is:
+
+ global_episode,phase,episode,env_seed,agent,episode_reward,failure_mode,rho_state
+ """
+ out_path = Path(out_csv)
+ out_path.parent.mkdir(parents=True, exist_ok=True)
+ out_path.parent.mkdir(parents=True, exist_ok=True)
+
+ rng = np.random.default_rng(seed)
+
+ # env for shape information only
+ probe_env = EpistemicValleyEnv(phase=1, seed=seed)
+ n_states = probe_env.n_states
+ n_actions = probe_env.n_actions
+
+ agents = [
+ HFLevoAgent(n_states, n_actions, seed=seed),
+ LevoParadoxIsomerAgent(n_states, n_actions, seed=seed + 1),
+ ]
+ agent_names = ["HFLevo", "LevoParadoxIsomer"]
+
+ global_ep = 0
+
+ with out_path.open("w", newline="") as f:
+ writer = csv.DictWriter(
+ f,
+ fieldnames=[
+ "global_episode",
+ "phase",
+ "episode",
+ "env_seed",
+ "agent",
+ "episode_reward",
+ "failure_mode",
+ "rho_state",
+ ],
+ )
+ writer.writeheader()
+
+ for phase in (1, 2, 3):
+ for local_ep in range(episodes_per_phase):
+ env_seed = int(rng.integers(0, 2**31 - 1))
+
+ for agent, name in zip(agents, agent_names, strict=True):
+ env = EpistemicValleyEnv(phase=phase, seed=env_seed)
+ s_idx, info = env.reset()
+ a = agent.select_action(s_idx)
+ s_next_idx, reward, done, step_info = env.step(a)
+
+ failure_mode = step_info.get("failure_mode", "neutral")
+
+ rho_state = (
+ float(getattr(agent, "rho")[s_idx]) # type: ignore[attr-defined]
+ if hasattr(agent, "rho")
+ else float("nan")
+ )
+
+ agent.update(
+ s_idx=s_idx,
+ a=a,
+ r=reward,
+ s_next_idx=s_next_idx,
+ done=done,
+ failure_mode=failure_mode,
+ )
+
+ writer.writerow(
+ {
+ "global_episode": global_ep,
+ "phase": phase,
+ "episode": local_ep,
+ "env_seed": env_seed,
+ "agent": name,
+ "episode_reward": float(reward),
+ "failure_mode": failure_mode,
+ "rho_state": rho_state,
+ }
+ )
+
+ global_ep += 1
+
+
+if __name__ == "__main__":
+ # Allow a caller (e.g., run_all.py) to route outputs to a shared folder.
+ _results_dir = Path(os.environ.get("TWOQUARKS_RESULTS_DIR", (_QUARK_DIR / "results").as_posix()))
+ _results_dir.mkdir(parents=True, exist_ok=True)
+ _out_csv = _results_dir / "down_paradox_tabular_results.csv"
+ run_experiment(_out_csv.as_posix(), episodes_per_phase=400)
diff --git a/Down/down/levo/agent_levo_paradox.py b/Down/down/levo/agent_levo_paradox.py
new file mode 100644
index 0000000000000000000000000000000000000000..246dd893d9d047e47736aa3b131c6200e4dcbae7
--- /dev/null
+++ b/Down/down/levo/agent_levo_paradox.py
@@ -0,0 +1,399 @@
+
+from __future__ import annotations
+
+import math
+from dataclasses import dataclass
+from typing import List, Tuple, Optional, Dict
+
+import numpy as np
+
+try:
+ import torch
+ import torch.nn as nn
+ import torch.optim as optim
+except Exception: # pragma: no cover - torch might not be installed
+ torch = None # type: ignore[assignment]
+ nn = object # type: ignore[assignment]
+ optim = object # type: ignore[assignment]
+
+
+# ---------------------------------------------------------------------------
+# Tabular baselines (HF-Levo + isomeric Levo Paradox)
+# ---------------------------------------------------------------------------
+
+
+class HFLevoAgent:
+ """
+ Single-head HF-Levo baseline agent.
+
+ A simple Q-learning agent whose exploration temperature is modulated
+ by a high-frequency term:
+
+ T_t = tau * (1 + A * sin(omega * t))
+
+ This creates oscillatory exploration / exploitation cycles.
+ """
+
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ A: float = 0.5,
+ omega: float = 0.05,
+ tau: float = 0.7,
+ alpha: float = 0.1,
+ gamma: float = 0.95,
+ seed: Optional[int] = None,
+ ) -> None:
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.A = A
+ self.omega = omega
+ self.tau = tau
+ self.alpha = alpha
+ self.gamma = gamma
+
+ self.Q = np.zeros((n_states, n_actions), dtype=np.float32)
+ self.rng = np.random.default_rng(seed)
+ self.t = 0
+
+ def _temperature(self) -> float:
+ return float(self.tau * (1.0 + self.A * math.sin(self.omega * self.t)))
+
+ def _softmax(self, q: np.ndarray, temp: float) -> np.ndarray:
+ z = q - np.max(q)
+ e = np.exp(z / max(temp, 1e-6))
+ return e / e.sum()
+
+ def select_action(self, s_idx: int) -> int:
+ temp = self._temperature()
+ probs = self._softmax(self.Q[s_idx], temp)
+ a = int(self.rng.choice(self.n_actions, p=probs))
+ self.t += 1
+ return a
+
+ def update(
+ self,
+ s_idx: int,
+ a: int,
+ r: float,
+ s_next_idx: int,
+ done: bool,
+ failure_mode: str,
+ ) -> None:
+ q = self.Q
+ target = r if done else (r + self.gamma * float(np.max(q[s_next_idx])))
+ delta = target - float(q[s_idx, a])
+ q[s_idx, a] += self.alpha * delta
+
+
+class LevoParadoxIsomerAgent:
+ """
+ Isomeric tabular agent with conservative and aggressive Q-functions.
+
+ Two heads Q_L (conservative) and Q_R (aggressive) are mixed by a
+ contextual polarization rho[s] in [0, 1]:
+
+ Q_mix[s] = (1 - rho[s]) * Q_L[s] + rho[s] * Q_R[s]
+
+ Polarization is nudged by failure modes reported by the environment:
+ - "overconfident" -> push rho down (more conservative)
+ - "overcautious" -> push rho up (more aggressive)
+ """
+
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ tau: float = 0.7,
+ alpha: float = 0.1,
+ gamma: float = 0.95,
+ eta: float = 0.05,
+ seed: Optional[int] = None,
+ ) -> None:
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.tau = tau
+ self.alpha = alpha
+ self.gamma = gamma
+ self.eta = eta
+
+ self.Q_L = np.zeros((n_states, n_actions), dtype=np.float32)
+ self.Q_R = np.zeros((n_states, n_actions), dtype=np.float32)
+ self.rho = np.full(n_states, 0.5, dtype=np.float32)
+
+ self.rng = np.random.default_rng(seed)
+
+ def _softmax(self, x: np.ndarray) -> np.ndarray:
+ z = x - np.max(x)
+ e = np.exp(z / max(self.tau, 1e-6))
+ return e / e.sum()
+
+ def select_action(self, s_idx: int) -> int:
+ rho_s = float(self.rho[s_idx])
+ q_mix = (1.0 - rho_s) * self.Q_L[s_idx] + rho_s * self.Q_R[s_idx]
+ probs = self._softmax(q_mix)
+ a = int(self.rng.choice(self.n_actions, p=probs))
+ return a
+
+ def update(
+ self,
+ s_idx: int,
+ a: int,
+ r: float,
+ s_next_idx: int,
+ done: bool,
+ failure_mode: str,
+ ) -> None:
+ # choose learning head: conservative for overconfidence,
+ # aggressive for overcautious, otherwise both share credit.
+ if failure_mode == "overconfident":
+ heads = ("L",)
+ elif failure_mode == "overcautious":
+ heads = ("R",)
+ else:
+ heads = ("L", "R")
+
+ for h in heads:
+ Q = self.Q_L if h == "L" else self.Q_R
+ target = r if done else (r + self.gamma * float(np.max(Q[s_next_idx])))
+ delta = target - float(Q[s_idx, a])
+ Q[s_idx, a] += self.alpha * delta
+
+ # polarization update
+ if failure_mode == "overconfident":
+ self.rho[s_idx] = np.clip(self.rho[s_idx] - self.eta, 0.0, 1.0)
+ elif failure_mode == "overcautious":
+ self.rho[s_idx] = np.clip(self.rho[s_idx] + self.eta, 0.0, 1.0)
+
+
+# ---------------------------------------------------------------------------
+# PPO Hybrid Engine (GPU-ready, isomeric actor-critic)
+# ---------------------------------------------------------------------------
+
+
+@dataclass
+class Transition:
+ state_idx: int
+ action: int
+ reward: float
+ log_prob: float
+ value: float
+ rho: float
+ failure_mode: str
+
+
+class ParadoxActorCritic(nn.Module): # type: ignore[misc]
+ """
+ Isomeric actor-critic.
+
+ - shared MLP trunk over a one-hot encoding of the discrete state
+ - two actor heads: conservative vs aggressive
+ - one scalar gating head producing rho(s) in [0, 1]
+ - one critic head V(s)
+
+ The final policy is a mixture of the two isomers, combined inside the
+ logits space and fed through softmax.
+ """
+
+ def __init__(self, n_states: int, n_actions: int, hidden_dim: int = 128) -> None:
+ super().__init__()
+ self.n_states = n_states
+ self.n_actions = n_actions
+
+ self.trunk = nn.Sequential(
+ nn.Linear(n_states, hidden_dim),
+ nn.ReLU(),
+ nn.Linear(hidden_dim, hidden_dim),
+ nn.ReLU(),
+ )
+ self.actor_cons = nn.Linear(hidden_dim, n_actions)
+ self.actor_aggr = nn.Linear(hidden_dim, n_actions)
+ self.gate = nn.Linear(hidden_dim, 1)
+ self.critic = nn.Linear(hidden_dim, 1)
+
+ def forward(self, state_one_hot: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor, torch.Tensor]:
+ z = self.trunk(state_one_hot)
+ logits_cons = self.actor_cons(z)
+ logits_aggr = self.actor_aggr(z)
+ rho = torch.sigmoid(self.gate(z)) # [B, 1]
+ value = self.critic(z).squeeze(-1) # [B]
+
+ # mixture in logit space
+ logits_mix = (1.0 - rho) * logits_cons + rho * logits_aggr
+ return logits_mix, value, rho.squeeze(-1), logits_cons * 1.0 # last term unused but can help debugging
+
+
+class LevoParadoxPPOHybrid:
+ """
+ GPU-ready PPO hybrid engine with isomeric policy.
+
+ This agent combines:
+ - an isomeric actor (conservative + aggressive heads),
+ - a gating network rho(s) trained end-to-end,
+ - PPO-style clipped policy updates,
+ - and a value baseline for variance reduction.
+
+ It operates directly on the discrete Epistemic Valley state space using
+ a one-hot encoding, which keeps things simple and fully reproducible.
+ """
+
+ def __init__(
+ self,
+ n_states: int,
+ n_actions: int,
+ gamma: float = 0.99,
+ lam: float = 0.95,
+ clip_eps: float = 0.2,
+ entropy_coef: float = 0.01,
+ value_coef: float = 0.5,
+ lr: float = 3e-4,
+ batch_size: int = 256,
+ update_epochs: int = 8,
+ seed: Optional[int] = None,
+ ) -> None:
+ if torch is None:
+ raise RuntimeError("PyTorch is required for LevoParadoxPPOHybrid.")
+
+ self.n_states = n_states
+ self.n_actions = n_actions
+ self.gamma = gamma
+ self.lam = lam
+ self.clip_eps = clip_eps
+ self.entropy_coef = entropy_coef
+ self.value_coef = value_coef
+ self.batch_size = batch_size
+ self.update_epochs = update_epochs
+
+ if seed is not None:
+ torch.manual_seed(seed)
+ np.random.seed(seed)
+
+ self.device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
+ self.net = ParadoxActorCritic(n_states, n_actions).to(self.device)
+ self.optimizer = optim.Adam(self.net.parameters(), lr=lr)
+
+ self.buffer: List[Transition] = []
+
+ # ---------------------------- utilities -----------------------------
+
+ def _one_hot(self, idx: np.ndarray | int) -> torch.Tensor:
+ idx_arr = np.atleast_1d(idx).astype(np.int64)
+ x = np.zeros((idx_arr.shape[0], self.n_states), dtype=np.float32)
+ x[np.arange(idx_arr.shape[0]), idx_arr] = 1.0
+ return torch.from_numpy(x).to(self.device)
+
+ # ---------------------------- interaction ---------------------------
+
+ def select_action(self, s_idx: int) -> Tuple[int, float, float, float]:
+ """Return (action, log_prob, value_estimate, rho)."""
+ self.net.eval()
+ state_one_hot = self._one_hot(s_idx)
+ logits_mix, value, rho, _ = self.net(state_one_hot) # type: ignore[misc]
+ dist = torch.distributions.Categorical(logits=logits_mix)
+ action = dist.sample()
+ log_prob = dist.log_prob(action)
+ return int(action.item()), float(log_prob.item()), float(value.item()), float(rho.item())
+
+ def store_transition(
+ self,
+ s_idx: int,
+ action: int,
+ reward: float,
+ log_prob: float,
+ value: float,
+ rho: float,
+ failure_mode: str,
+ ) -> None:
+ self.buffer.append(
+ Transition(
+ state_idx=int(s_idx),
+ action=int(action),
+ reward=float(reward),
+ log_prob=float(log_prob),
+ value=float(value),
+ rho=float(rho),
+ failure_mode=failure_mode,
+ )
+ )
+
+ # ---------------------------- learning ------------------------------
+
+ def _compute_advantages(
+ self, rewards: np.ndarray, values: np.ndarray
+ ) -> Tuple[np.ndarray, np.ndarray]:
+ # For one-step episodes, advantage = reward - value, return = reward
+ returns = rewards.copy()
+ advantages = rewards - values
+ # Normalise for stability
+ advantages = (advantages - advantages.mean()) / (advantages.std() + 1e-8)
+ return returns, advantages
+
+ def update(self) -> Dict[str, float]:
+ if not self.buffer:
+ return {}
+
+ # Collect batch
+ states = np.array([t.state_idx for t in self.buffer], dtype=np.int64)
+ actions = np.array([t.action for t in self.buffer], dtype=np.int64)
+ rewards = np.array([t.reward for t in self.buffer], dtype=np.float32)
+ old_log_probs = np.array([t.log_prob for t in self.buffer], dtype=np.float32)
+ values = np.array([t.value for t in self.buffer], dtype=np.float32)
+
+ returns, advantages = self._compute_advantages(rewards, values)
+
+ # Convert to tensors
+ states_t = self._one_hot(states)
+ actions_t = torch.from_numpy(actions).to(self.device)
+ returns_t = torch.from_numpy(returns).to(self.device)
+ advantages_t = torch.from_numpy(advantages).to(self.device)
+ old_log_probs_t = torch.from_numpy(old_log_probs).to(self.device)
+
+ dataset_size = states_t.size(0)
+ idxs = np.arange(dataset_size)
+
+ stats: Dict[str, float] = {}
+
+ self.net.train()
+ for _ in range(self.update_epochs):
+ np.random.shuffle(idxs)
+ for start in range(0, dataset_size, self.batch_size):
+ batch_idx = idxs[start : start + self.batch_size]
+ if len(batch_idx) == 0:
+ continue
+
+ batch_states = states_t[batch_idx]
+ batch_actions = actions_t[batch_idx]
+ batch_returns = returns_t[batch_idx]
+ batch_adv = advantages_t[batch_idx]
+ batch_old_logp = old_log_probs_t[batch_idx]
+
+ logits_mix, values_pred, _, _ = self.net(batch_states) # type: ignore[misc]
+ dist = torch.distributions.Categorical(logits=logits_mix)
+ log_probs = dist.log_prob(batch_actions)
+ entropy = dist.entropy().mean()
+
+ # PPO clipped objective
+ ratio = torch.exp(log_probs - batch_old_logp)
+ unclipped = ratio * batch_adv
+ clipped = torch.clamp(ratio, 1.0 - self.clip_eps, 1.0 + self.clip_eps) * batch_adv
+ policy_loss = -torch.min(unclipped, clipped).mean()
+
+ value_loss = (batch_returns - values_pred).pow(2).mean()
+
+ loss = policy_loss + self.value_coef * value_loss - self.entropy_coef * entropy
+
+ self.optimizer.zero_grad()
+ loss.backward()
+ torch.nn.utils.clip_grad_norm_(self.net.parameters(), max_norm=1.0)
+ self.optimizer.step()
+
+ stats = {
+ "policy_loss": float(policy_loss.item()),
+ "value_loss": float(value_loss.item()),
+ "entropy": float(entropy.item()),
+ }
+
+ # clear buffer
+ self.buffer.clear()
+ return stats
diff --git a/Down/down/results/paradox_ppo_results.csv b/Down/down/results/paradox_ppo_results.csv
new file mode 100644
index 0000000000000000000000000000000000000000..3bf76532044344a45f983d5ad953bf7687df3941
--- /dev/null
+++ b/Down/down/results/paradox_ppo_results.csv
@@ -0,0 +1,1201 @@
+global_episode,phase,episode,env_seed,agent,episode_reward,failure_mode,rho_state
+0,1,0,960941037,LevoParadoxPPOHybrid,1.3,neutral,0.4752805233001709
+1,1,1,2135581874,LevoParadoxPPOHybrid,1.3,neutral,0.47838863730430603
+2,1,2,2131554306,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+3,1,3,820359671,LevoParadoxPPOHybrid,1.2,neutral,0.4746558368206024
+4,1,4,2047814545,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+5,1,5,1776286830,LevoParadoxPPOHybrid,1.2,neutral,0.4746558368206024
+6,1,6,1373214917,LevoParadoxPPOHybrid,1.2,neutral,0.4743559956550598
+7,1,7,1797992013,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+8,1,8,1645535739,LevoParadoxPPOHybrid,1.2,neutral,0.4746558368206024
+9,1,9,2095533891,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+10,1,10,829401385,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+11,1,11,165839486,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+12,1,12,976680886,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+13,1,13,681732448,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+14,1,14,1046126860,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+15,1,15,1974730198,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+16,1,16,2073558604,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+17,1,17,1451418837,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+18,1,18,1365011226,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+19,1,19,613804374,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+20,1,20,32280267,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+21,1,21,836537275,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+22,1,22,975647501,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+23,1,23,494392738,LevoParadoxPPOHybrid,1.3,neutral,0.47838863730430603
+24,1,24,1706901824,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+25,1,25,358546340,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+26,1,26,1030268022,LevoParadoxPPOHybrid,0.0,neutral,0.4743559956550598
+27,1,27,329502221,LevoParadoxPPOHybrid,2.5,neutral,0.4768047034740448
+28,1,28,746578914,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+29,1,29,2091845998,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+30,1,30,1436029081,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+31,1,31,910309404,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+32,1,32,472048561,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+33,1,33,135600480,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+34,1,34,1892894588,LevoParadoxPPOHybrid,1.3,neutral,0.47656360268592834
+35,1,35,1055673936,LevoParadoxPPOHybrid,1.2,neutral,0.4746558368206024
+36,1,36,1340667110,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+37,1,37,619212679,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+38,1,38,120545107,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+39,1,39,454442609,LevoParadoxPPOHybrid,-0.8,overcautious,0.4768047034740448
+40,1,40,295287540,LevoParadoxPPOHybrid,1.2,neutral,0.4746558368206024
+41,1,41,445457645,LevoParadoxPPOHybrid,1.3,neutral,0.4784092605113983
+42,1,42,307622279,LevoParadoxPPOHybrid,1.3,neutral,0.4789677560329437
+43,1,43,1243437117,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+44,1,44,244133596,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+45,1,45,1268841274,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+46,1,46,1225761364,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+47,1,47,1907103971,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+48,1,48,1034799201,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+49,1,49,235864475,LevoParadoxPPOHybrid,1.2,neutral,0.4746558368206024
+50,1,50,691379092,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+51,1,51,1065800727,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+52,1,52,655184241,LevoParadoxPPOHybrid,-2.0,overconfident,0.4746558368206024
+53,1,53,623054291,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+54,1,54,540036626,LevoParadoxPPOHybrid,0.0,neutral,0.4768047034740448
+55,1,55,1043358048,LevoParadoxPPOHybrid,0.0,neutral,0.47555792331695557
+56,1,56,1932965406,LevoParadoxPPOHybrid,1.3,neutral,0.48266562819480896
+57,1,57,2036930070,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+58,1,58,1526743940,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+59,1,59,1989662969,LevoParadoxPPOHybrid,-0.8,overcautious,0.4768047034740448
+60,1,60,2139514329,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+61,1,61,1632303898,LevoParadoxPPOHybrid,1.3,neutral,0.4789677560329437
+62,1,62,1850997508,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+63,1,63,1679388031,LevoParadoxPPOHybrid,1.3,neutral,0.4784092605113983
+64,1,64,994656789,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+65,1,65,596802772,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+66,1,66,2022213408,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+67,1,67,1111583775,LevoParadoxPPOHybrid,0.0,neutral,0.47555792331695557
+68,1,68,243487825,LevoParadoxPPOHybrid,1.3,neutral,0.47656360268592834
+69,1,69,1727825584,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+70,1,70,138221208,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+71,1,71,1644995000,LevoParadoxPPOHybrid,0.0,neutral,0.4746558368206024
+72,1,72,609184021,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+73,1,73,1231929388,LevoParadoxPPOHybrid,1.2,neutral,0.47555792331695557
+74,1,74,1344075265,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+75,1,75,1828410100,LevoParadoxPPOHybrid,-2.0,overconfident,0.4746558368206024
+76,1,76,2048576691,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+77,1,77,1829711174,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+78,1,78,993502358,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+79,1,79,796970628,LevoParadoxPPOHybrid,-0.8,overcautious,0.4768047034740448
+80,1,80,1037953041,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+81,1,81,981620733,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+82,1,82,729569317,LevoParadoxPPOHybrid,0.0,neutral,0.4768047034740448
+83,1,83,646784317,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+84,1,84,740999785,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+85,1,85,1740597160,LevoParadoxPPOHybrid,0.0,neutral,0.4746558368206024
+86,1,86,661906414,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+87,1,87,1060388906,LevoParadoxPPOHybrid,1.3,neutral,0.4789677560329437
+88,1,88,359430184,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+89,1,89,1208987810,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+90,1,90,2009099257,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+91,1,91,1034716133,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+92,1,92,868969428,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+93,1,93,545077016,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+94,1,94,618241786,LevoParadoxPPOHybrid,1.3,neutral,0.4780098497867584
+95,1,95,2112109137,LevoParadoxPPOHybrid,-0.8,overcautious,0.4758386015892029
+96,1,96,300763006,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+97,1,97,1182747845,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+98,1,98,997933218,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+99,1,99,2082537479,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+100,1,100,948374647,LevoParadoxPPOHybrid,1.3,neutral,0.4772508144378662
+101,1,101,484158897,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+102,1,102,1023803420,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+103,1,103,1933155352,LevoParadoxPPOHybrid,-0.8,overcautious,0.4758386015892029
+104,1,104,531436601,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+105,1,105,693213698,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+106,1,106,1411219987,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+107,1,107,707739816,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+108,1,108,7444596,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+109,1,109,1531464733,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+110,1,110,1407225246,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+111,1,111,1617971802,LevoParadoxPPOHybrid,0.0,neutral,0.4758386015892029
+112,1,112,1856904126,LevoParadoxPPOHybrid,1.3,neutral,0.47656360268592834
+113,1,113,2080438781,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+114,1,114,92845013,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+115,1,115,2051487433,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+116,1,116,1625881056,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+117,1,117,1999467027,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+118,1,118,759769092,LevoParadoxPPOHybrid,2.5,neutral,0.4768047034740448
+119,1,119,1368848130,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+120,1,120,2079957582,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+121,1,121,858968924,LevoParadoxPPOHybrid,1.3,neutral,0.47656360268592834
+122,1,122,2037278180,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+123,1,123,301224287,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+124,1,124,595106119,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+125,1,125,830628267,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+126,1,126,2056643707,LevoParadoxPPOHybrid,1.3,neutral,0.47838863730430603
+127,1,127,676826452,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+128,1,128,1391976925,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+129,1,129,1312449805,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+130,1,130,441735078,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+131,1,131,1198114699,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+132,1,132,1177544228,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+133,1,133,235682355,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+134,1,134,594730155,LevoParadoxPPOHybrid,2.5,neutral,0.4768047034740448
+135,1,135,1031283908,LevoParadoxPPOHybrid,0.0,neutral,0.4743559956550598
+136,1,136,1468565562,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+137,1,137,1799515670,LevoParadoxPPOHybrid,1.2,neutral,0.47555792331695557
+138,1,138,1374703813,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+139,1,139,1412669082,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+140,1,140,342509991,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+141,1,141,129641700,LevoParadoxPPOHybrid,1.2,neutral,0.47555792331695557
+142,1,142,1979539584,LevoParadoxPPOHybrid,0.0,neutral,0.4746558368206024
+143,1,143,181563758,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+144,1,144,2121376515,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+145,1,145,359483640,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+146,1,146,1009660805,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+147,1,147,1772095163,LevoParadoxPPOHybrid,-0.8,overcautious,0.4768047034740448
+148,1,148,793047113,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+149,1,149,2123812620,LevoParadoxPPOHybrid,1.2,neutral,0.47555792331695557
+150,1,150,160023209,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+151,1,151,883833601,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+152,1,152,1345236526,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+153,1,153,2123563640,LevoParadoxPPOHybrid,1.3,neutral,0.4740993082523346
+154,1,154,1188897582,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+155,1,155,1835296655,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+156,1,156,263292300,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+157,1,157,339487389,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+158,1,158,640187192,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+159,1,159,1603617236,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+160,1,160,437479272,LevoParadoxPPOHybrid,-0.8,overcautious,0.4768047034740448
+161,1,161,1297938304,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+162,1,162,1736782144,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+163,1,163,1188005741,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+164,1,164,1925962876,LevoParadoxPPOHybrid,1.3,neutral,0.4772508144378662
+165,1,165,1419686978,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+166,1,166,113085408,LevoParadoxPPOHybrid,0.0,neutral,0.4772508144378662
+167,1,167,2107650812,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+168,1,168,1556544035,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+169,1,169,409268109,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+170,1,170,1707984479,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+171,1,171,2028373425,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+172,1,172,1712063860,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+173,1,173,729831432,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+174,1,174,1945712103,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+175,1,175,1662118687,LevoParadoxPPOHybrid,1.3,neutral,0.4784092605113983
+176,1,176,1263277082,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+177,1,177,600780774,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+178,1,178,389237547,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+179,1,179,531352528,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+180,1,180,308998320,LevoParadoxPPOHybrid,1.2,neutral,0.47555792331695557
+181,1,181,133112608,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+182,1,182,1335500866,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+183,1,183,1455247303,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+184,1,184,818574077,LevoParadoxPPOHybrid,-2.0,overconfident,0.4746558368206024
+185,1,185,783962675,LevoParadoxPPOHybrid,0.0,neutral,0.4743559956550598
+186,1,186,181722168,LevoParadoxPPOHybrid,-0.8,overcautious,0.4768047034740448
+187,1,187,922465315,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+188,1,188,1058682574,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+189,1,189,2126397323,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+190,1,190,23796221,LevoParadoxPPOHybrid,0.0,neutral,0.4743559956550598
+191,1,191,677074079,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+192,1,192,1977263236,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+193,1,193,1768875981,LevoParadoxPPOHybrid,0.0,neutral,0.47838863730430603
+194,1,194,1212545188,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+195,1,195,1186674390,LevoParadoxPPOHybrid,1.3,neutral,0.47656360268592834
+196,1,196,1056632766,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+197,1,197,268535661,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+198,1,198,888167157,LevoParadoxPPOHybrid,1.2,neutral,0.4743559956550598
+199,1,199,530391691,LevoParadoxPPOHybrid,1.3,neutral,0.48266562819480896
+200,1,200,50594990,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+201,1,201,222395105,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+202,1,202,287284573,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+203,1,203,514973304,LevoParadoxPPOHybrid,0.0,neutral,0.4752705693244934
+204,1,204,1909475802,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+205,1,205,1879525266,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+206,1,206,1420380137,LevoParadoxPPOHybrid,-0.8,overcautious,0.4810570776462555
+207,1,207,1737331410,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+208,1,208,1064923684,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+209,1,209,1238273317,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+210,1,210,144185798,LevoParadoxPPOHybrid,1.3,neutral,0.48266562819480896
+211,1,211,575162410,LevoParadoxPPOHybrid,0.0,neutral,0.4780098497867584
+212,1,212,707283582,LevoParadoxPPOHybrid,-0.8,overcautious,0.4758386015892029
+213,1,213,1405835406,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+214,1,214,789235422,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+215,1,215,1388271326,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+216,1,216,1865718892,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+217,1,217,1293915651,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+218,1,218,1428150647,LevoParadoxPPOHybrid,0.0,neutral,0.4810570776462555
+219,1,219,19248056,LevoParadoxPPOHybrid,-0.8,overcautious,0.4758386015892029
+220,1,220,491031830,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+221,1,221,636126198,LevoParadoxPPOHybrid,1.3,neutral,0.4789677560329437
+222,1,222,456728828,LevoParadoxPPOHybrid,0.0,neutral,0.4743559956550598
+223,1,223,966697912,LevoParadoxPPOHybrid,0.0,neutral,0.47555792331695557
+224,1,224,1166498720,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+225,1,225,1571014065,LevoParadoxPPOHybrid,2.5,neutral,0.4768047034740448
+226,1,226,714126436,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+227,1,227,1206418342,LevoParadoxPPOHybrid,0.0,neutral,0.47656360268592834
+228,1,228,1372090007,LevoParadoxPPOHybrid,-2.0,overconfident,0.4743559956550598
+229,1,229,769009050,LevoParadoxPPOHybrid,2.5,neutral,0.4758386015892029
+230,1,230,1353001314,LevoParadoxPPOHybrid,0.0,neutral,0.47702598571777344
+231,1,231,1733327736,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+232,1,232,638285556,LevoParadoxPPOHybrid,1.3,neutral,0.48266562819480896
+233,1,233,988454733,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+234,1,234,1459581848,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+235,1,235,1106839428,LevoParadoxPPOHybrid,1.2,neutral,0.47555792331695557
+236,1,236,388494700,LevoParadoxPPOHybrid,-2.0,overconfident,0.47555792331695557
+237,1,237,1441804184,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+238,1,238,683008548,LevoParadoxPPOHybrid,1.3,neutral,0.4784092605113983
+239,1,239,557447257,LevoParadoxPPOHybrid,0.0,neutral,0.4789677560329437
+240,1,240,1553434256,LevoParadoxPPOHybrid,-2.0,overconfident,0.4746558368206024
+241,1,241,1196216329,LevoParadoxPPOHybrid,0.0,neutral,0.4740993082523346
+242,1,242,205445195,LevoParadoxPPOHybrid,0.0,neutral,0.47567713260650635
+243,1,243,138987130,LevoParadoxPPOHybrid,1.3,neutral,0.48266562819480896
+244,1,244,1601279830,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+245,1,245,523497866,LevoParadoxPPOHybrid,0.0,neutral,0.4768047034740448
+246,1,246,1681903654,LevoParadoxPPOHybrid,1.3,neutral,0.4772508144378662
+247,1,247,1447758672,LevoParadoxPPOHybrid,0.0,neutral,0.4784092605113983
+248,1,248,1263090791,LevoParadoxPPOHybrid,0.0,neutral,0.4746558368206024
+249,1,249,2069934169,LevoParadoxPPOHybrid,1.3,neutral,0.4752705693244934
+250,1,250,1175589659,LevoParadoxPPOHybrid,0.0,neutral,0.4746558368206024
+251,1,251,792436927,LevoParadoxPPOHybrid,1.3,neutral,0.4789677560329437
+252,1,252,77793463,LevoParadoxPPOHybrid,1.3,neutral,0.47567713260650635
+253,1,253,1178447001,LevoParadoxPPOHybrid,0.0,neutral,0.4752805233001709
+254,1,254,1867902247,LevoParadoxPPOHybrid,1.3,neutral,0.47702598571777344
+255,1,255,1132483487,LevoParadoxPPOHybrid,0.0,neutral,0.48266562819480896
+256,1,256,1108550737,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+257,1,257,761845810,LevoParadoxPPOHybrid,0.0,neutral,0.47729626297950745
+258,1,258,2026103214,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+259,1,259,1320383576,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+260,1,260,165278918,LevoParadoxPPOHybrid,1.2,neutral,0.4783268868923187
+261,1,261,1264440670,LevoParadoxPPOHybrid,-0.8,overcautious,0.4791228175163269
+262,1,262,859892894,LevoParadoxPPOHybrid,1.3,neutral,0.48010820150375366
+263,1,263,411458685,LevoParadoxPPOHybrid,0.0,neutral,0.479666531085968
+264,1,264,1931263994,LevoParadoxPPOHybrid,0.0,neutral,0.4829937219619751
+265,1,265,213511530,LevoParadoxPPOHybrid,2.5,neutral,0.48367613554000854
+266,1,266,1137608613,LevoParadoxPPOHybrid,-2.0,overconfident,0.4773579239845276
+267,1,267,843567272,LevoParadoxPPOHybrid,0.0,neutral,0.4863224923610687
+268,1,268,11175988,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+269,1,269,687107894,LevoParadoxPPOHybrid,1.3,neutral,0.47729626297950745
+270,1,270,291918902,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+271,1,271,1087591275,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+272,1,272,1813734633,LevoParadoxPPOHybrid,0.0,neutral,0.4791228175163269
+273,1,273,461816730,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+274,1,274,441050625,LevoParadoxPPOHybrid,0.0,neutral,0.4863224923610687
+275,1,275,2141182885,LevoParadoxPPOHybrid,0.0,neutral,0.4808143377304077
+276,1,276,749647573,LevoParadoxPPOHybrid,-0.8,overcautious,0.4791228175163269
+277,1,277,702601389,LevoParadoxPPOHybrid,1.3,neutral,0.4818275570869446
+278,1,278,500813039,LevoParadoxPPOHybrid,1.3,neutral,0.4829937219619751
+279,1,279,1327850191,LevoParadoxPPOHybrid,0.0,neutral,0.4788035750389099
+280,1,280,1479353871,LevoParadoxPPOHybrid,0.0,neutral,0.48367613554000854
+281,1,281,875883029,LevoParadoxPPOHybrid,-0.8,overcautious,0.4791228175163269
+282,1,282,956514865,LevoParadoxPPOHybrid,0.0,neutral,0.4773579239845276
+283,1,283,140168808,LevoParadoxPPOHybrid,2.5,neutral,0.48367613554000854
+284,1,284,2023927855,LevoParadoxPPOHybrid,0.0,neutral,0.4777975380420685
+285,1,285,1850097089,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+286,1,286,366267895,LevoParadoxPPOHybrid,1.3,neutral,0.48010820150375366
+287,1,287,833125277,LevoParadoxPPOHybrid,0.0,neutral,0.48244643211364746
+288,1,288,1062058470,LevoParadoxPPOHybrid,-0.8,overcautious,0.48367613554000854
+289,1,289,755011055,LevoParadoxPPOHybrid,1.3,neutral,0.4805646538734436
+290,1,290,1193341725,LevoParadoxPPOHybrid,0.0,neutral,0.4784007668495178
+291,1,291,47566427,LevoParadoxPPOHybrid,1.3,neutral,0.4829937219619751
+292,1,292,1480907230,LevoParadoxPPOHybrid,1.3,neutral,0.4818275570869446
+293,1,293,1193747826,LevoParadoxPPOHybrid,0.0,neutral,0.4863224923610687
+294,1,294,188056822,LevoParadoxPPOHybrid,1.3,neutral,0.479666531085968
+295,1,295,2058188731,LevoParadoxPPOHybrid,1.3,neutral,0.4784007668495178
+296,1,296,131903334,LevoParadoxPPOHybrid,2.5,neutral,0.48367613554000854
+297,1,297,2023999375,LevoParadoxPPOHybrid,0.0,neutral,0.4782043993473053
+298,1,298,14284283,LevoParadoxPPOHybrid,1.3,neutral,0.4829937219619751
+299,1,299,430728515,LevoParadoxPPOHybrid,1.3,neutral,0.4818275570869446
+300,1,300,1773637227,LevoParadoxPPOHybrid,0.0,neutral,0.4784007668495178
+301,1,301,1447643177,LevoParadoxPPOHybrid,2.5,neutral,0.4791228175163269
+302,1,302,980890604,LevoParadoxPPOHybrid,-0.8,overcautious,0.4791228175163269
+303,1,303,1738676116,LevoParadoxPPOHybrid,2.5,neutral,0.48367613554000854
+304,1,304,202567723,LevoParadoxPPOHybrid,1.3,neutral,0.479666531085968
+305,1,305,1153805088,LevoParadoxPPOHybrid,1.2,neutral,0.4783268868923187
+306,1,306,972971566,LevoParadoxPPOHybrid,-2.0,overconfident,0.4783268868923187
+307,1,307,1472596543,LevoParadoxPPOHybrid,-0.8,overcautious,0.48367613554000854
+308,1,308,1472317967,LevoParadoxPPOHybrid,1.3,neutral,0.48244643211364746
+309,1,309,215008918,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+310,1,310,1105771947,LevoParadoxPPOHybrid,0.0,neutral,0.48244643211364746
+311,1,311,652569339,LevoParadoxPPOHybrid,0.0,neutral,0.4805646538734436
+312,1,312,1726057777,LevoParadoxPPOHybrid,-0.8,overcautious,0.48367613554000854
+313,1,313,1485944499,LevoParadoxPPOHybrid,1.3,neutral,0.48244643211364746
+314,1,314,294205674,LevoParadoxPPOHybrid,0.0,neutral,0.479666531085968
+315,1,315,1016871026,LevoParadoxPPOHybrid,0.0,neutral,0.4783268868923187
+316,1,316,1168910589,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+317,1,317,1517292813,LevoParadoxPPOHybrid,0.0,neutral,0.4863224923610687
+318,1,318,2030522066,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+319,1,319,959589186,LevoParadoxPPOHybrid,1.2,neutral,0.4773579239845276
+320,1,320,590193953,LevoParadoxPPOHybrid,1.3,neutral,0.479666531085968
+321,1,321,675005705,LevoParadoxPPOHybrid,0.0,neutral,0.4777975380420685
+322,1,322,925232956,LevoParadoxPPOHybrid,0.0,neutral,0.4784007668495178
+323,1,323,1408472699,LevoParadoxPPOHybrid,-0.8,overcautious,0.4791228175163269
+324,1,324,859189252,LevoParadoxPPOHybrid,1.3,neutral,0.4777975380420685
+325,1,325,399323533,LevoParadoxPPOHybrid,0.0,neutral,0.48244643211364746
+326,1,326,980315658,LevoParadoxPPOHybrid,-2.0,overconfident,0.4788035750389099
+327,1,327,123987181,LevoParadoxPPOHybrid,1.2,neutral,0.4773579239845276
+328,1,328,409996997,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+329,1,329,708892450,LevoParadoxPPOHybrid,-2.0,overconfident,0.4783268868923187
+330,1,330,1373932302,LevoParadoxPPOHybrid,1.3,neutral,0.47729626297950745
+331,1,331,2077742390,LevoParadoxPPOHybrid,1.3,neutral,0.4784007668495178
+332,1,332,761108960,LevoParadoxPPOHybrid,0.0,neutral,0.4784007668495178
+333,1,333,1211512608,LevoParadoxPPOHybrid,0.0,neutral,0.4863224923610687
+334,1,334,1884662523,LevoParadoxPPOHybrid,0.0,neutral,0.4777975380420685
+335,1,335,2002191522,LevoParadoxPPOHybrid,0.0,neutral,0.4863224923610687
+336,1,336,2028646946,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+337,1,337,589112024,LevoParadoxPPOHybrid,0.0,neutral,0.48244643211364746
+338,1,338,610703030,LevoParadoxPPOHybrid,0.0,neutral,0.4802131950855255
+339,1,339,972829234,LevoParadoxPPOHybrid,0.0,neutral,0.4777975380420685
+340,1,340,465154269,LevoParadoxPPOHybrid,2.5,neutral,0.4782043993473053
+341,1,341,470901255,LevoParadoxPPOHybrid,0.0,neutral,0.48244643211364746
+342,1,342,1990213325,LevoParadoxPPOHybrid,0.0,neutral,0.47729626297950745
+343,1,343,1646775850,LevoParadoxPPOHybrid,0.0,neutral,0.4829937219619751
+344,1,344,1057311607,LevoParadoxPPOHybrid,1.3,neutral,0.4802131950855255
+345,1,345,590319545,LevoParadoxPPOHybrid,0.0,neutral,0.4802131950855255
+346,1,346,516318123,LevoParadoxPPOHybrid,1.3,neutral,0.47729626297950745
+347,1,347,70890343,LevoParadoxPPOHybrid,0.0,neutral,0.47729626297950745
+348,1,348,804413128,LevoParadoxPPOHybrid,2.5,neutral,0.4782043993473053
+349,1,349,1504695760,LevoParadoxPPOHybrid,1.3,neutral,0.4805646538734436
+350,1,350,940669613,LevoParadoxPPOHybrid,0.0,neutral,0.4808143377304077
+351,1,351,821018278,LevoParadoxPPOHybrid,1.3,neutral,0.48010820150375366
+352,1,352,2080007758,LevoParadoxPPOHybrid,0.0,neutral,0.48367613554000854
+353,1,353,461373511,LevoParadoxPPOHybrid,0.0,neutral,0.4808143377304077
+354,1,354,1987269884,LevoParadoxPPOHybrid,0.0,neutral,0.4805646538734436
+355,1,355,885162807,LevoParadoxPPOHybrid,1.3,neutral,0.4863224923610687
+356,1,356,779768070,LevoParadoxPPOHybrid,0.0,neutral,0.4802131950855255
+357,1,357,966063187,LevoParadoxPPOHybrid,-2.0,overconfident,0.4783268868923187
+358,1,358,1359588046,LevoParadoxPPOHybrid,1.3,neutral,0.4808143377304077
+359,1,359,393633121,LevoParadoxPPOHybrid,0.0,neutral,0.4802131950855255
+360,1,360,991070115,LevoParadoxPPOHybrid,1.3,neutral,0.4818275570869446
+361,1,361,1695833246,LevoParadoxPPOHybrid,1.3,neutral,0.4808143377304077
+362,1,362,259218709,LevoParadoxPPOHybrid,0.0,neutral,0.4773579239845276
+363,1,363,1252523270,LevoParadoxPPOHybrid,1.2,neutral,0.4788035750389099
+364,1,364,618943155,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+365,1,365,1149281050,LevoParadoxPPOHybrid,1.3,neutral,0.4805646538734436
+366,1,366,605383710,LevoParadoxPPOHybrid,1.3,neutral,0.4784007668495178
+367,1,367,1156676417,LevoParadoxPPOHybrid,-2.0,overconfident,0.4788035750389099
+368,1,368,988215448,LevoParadoxPPOHybrid,1.3,neutral,0.4802131950855255
+369,1,369,1630817173,LevoParadoxPPOHybrid,-0.8,overcautious,0.48367613554000854
+370,1,370,1326405127,LevoParadoxPPOHybrid,1.3,neutral,0.4863224923610687
+371,1,371,279363521,LevoParadoxPPOHybrid,1.3,neutral,0.4805646538734436
+372,1,372,673386525,LevoParadoxPPOHybrid,0.0,neutral,0.479666531085968
+373,1,373,1485190259,LevoParadoxPPOHybrid,1.3,neutral,0.4808143377304077
+374,1,374,757249346,LevoParadoxPPOHybrid,1.3,neutral,0.4784007668495178
+375,1,375,2139173341,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+376,1,376,1407830714,LevoParadoxPPOHybrid,0.0,neutral,0.4777975380420685
+377,1,377,1328293493,LevoParadoxPPOHybrid,-2.0,overconfident,0.4783268868923187
+378,1,378,1561225140,LevoParadoxPPOHybrid,0.0,neutral,0.4802131950855255
+379,1,379,2054053838,LevoParadoxPPOHybrid,0.0,neutral,0.4791228175163269
+380,1,380,1538665569,LevoParadoxPPOHybrid,0.0,neutral,0.4773579239845276
+381,1,381,578245576,LevoParadoxPPOHybrid,1.3,neutral,0.4802131950855255
+382,1,382,1001750142,LevoParadoxPPOHybrid,1.3,neutral,0.4863224923610687
+383,1,383,247349919,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+384,1,384,1913641746,LevoParadoxPPOHybrid,0.0,neutral,0.48010820150375366
+385,1,385,191896624,LevoParadoxPPOHybrid,-0.8,overcautious,0.4782043993473053
+386,1,386,358450787,LevoParadoxPPOHybrid,0.0,neutral,0.47729626297950745
+387,1,387,1304006934,LevoParadoxPPOHybrid,1.3,neutral,0.4863224923610687
+388,1,388,854476003,LevoParadoxPPOHybrid,1.3,neutral,0.48244643211364746
+389,1,389,718810870,LevoParadoxPPOHybrid,0.0,neutral,0.48244643211364746
+390,1,390,2087848673,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+391,1,391,565983639,LevoParadoxPPOHybrid,0.0,neutral,0.48367613554000854
+392,1,392,406083697,LevoParadoxPPOHybrid,0.0,neutral,0.4805646538734436
+393,1,393,1812367355,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+394,1,394,1054994518,LevoParadoxPPOHybrid,1.3,neutral,0.4802131950855255
+395,1,395,235136936,LevoParadoxPPOHybrid,0.0,neutral,0.4808143377304077
+396,1,396,111732250,LevoParadoxPPOHybrid,-2.0,overconfident,0.4773579239845276
+397,1,397,289408596,LevoParadoxPPOHybrid,1.3,neutral,0.4802131950855255
+398,1,398,1197540953,LevoParadoxPPOHybrid,0.0,neutral,0.479666531085968
+399,1,399,34196977,LevoParadoxPPOHybrid,0.0,neutral,0.4818275570869446
+400,2,0,2034269964,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+401,2,1,912146831,LevoParadoxPPOHybrid,0.0,neutral,0.48142847418785095
+402,2,2,144856919,LevoParadoxPPOHybrid,1.2,neutral,0.47782430052757263
+403,2,3,685506823,LevoParadoxPPOHybrid,1.2,neutral,0.4803639352321625
+404,2,4,1939181862,LevoParadoxPPOHybrid,0.0,neutral,0.4791390895843506
+405,2,5,1502803201,LevoParadoxPPOHybrid,0.0,neutral,0.47879713773727417
+406,2,6,1504803878,LevoParadoxPPOHybrid,-3.0,overconfident,0.4803639352321625
+407,2,7,67883367,LevoParadoxPPOHybrid,2.0,neutral,0.48142847418785095
+408,2,8,235174993,LevoParadoxPPOHybrid,0.8,neutral,0.48121845722198486
+409,2,9,1767017071,LevoParadoxPPOHybrid,2.0,neutral,0.48142847418785095
+410,2,10,1195637117,LevoParadoxPPOHybrid,-3.0,overconfident,0.48439839482307434
+411,2,11,2140388521,LevoParadoxPPOHybrid,0.0,neutral,0.47790008783340454
+412,2,12,285128217,LevoParadoxPPOHybrid,0.0,neutral,0.47782430052757263
+413,2,13,1297214282,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+414,2,14,2128926662,LevoParadoxPPOHybrid,0.8,neutral,0.4789300858974457
+415,2,15,1227615478,LevoParadoxPPOHybrid,0.0,neutral,0.4791390895843506
+416,2,16,562820587,LevoParadoxPPOHybrid,-3.0,overconfident,0.48439839482307434
+417,2,17,1938965903,LevoParadoxPPOHybrid,2.0,neutral,0.47879713773727417
+418,2,18,1938899583,LevoParadoxPPOHybrid,0.0,neutral,0.48121845722198486
+419,2,19,146416322,LevoParadoxPPOHybrid,2.0,neutral,0.47879713773727417
+420,2,20,2034761172,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+421,2,21,1531184118,LevoParadoxPPOHybrid,0.8,neutral,0.47790008783340454
+422,2,22,1624823478,LevoParadoxPPOHybrid,-3.0,overconfident,0.47782430052757263
+423,2,23,1973982599,LevoParadoxPPOHybrid,0.0,neutral,0.47879713773727417
+424,2,24,1433121745,LevoParadoxPPOHybrid,0.0,neutral,0.47766703367233276
+425,2,25,269942302,LevoParadoxPPOHybrid,-0.8,overcautious,0.47879713773727417
+426,2,26,662577618,LevoParadoxPPOHybrid,-3.0,overconfident,0.48439839482307434
+427,2,27,1680792863,LevoParadoxPPOHybrid,1.2,neutral,0.47782430052757263
+428,2,28,608196857,LevoParadoxPPOHybrid,0.0,neutral,0.4791390895843506
+429,2,29,750797946,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+430,2,30,1703067462,LevoParadoxPPOHybrid,0.0,neutral,0.4789300858974457
+431,2,31,354277540,LevoParadoxPPOHybrid,2.0,neutral,0.48142847418785095
+432,2,32,516686757,LevoParadoxPPOHybrid,0.0,neutral,0.4789300858974457
+433,2,33,145581260,LevoParadoxPPOHybrid,0.8,neutral,0.47702041268348694
+434,2,34,1801241574,LevoParadoxPPOHybrid,2.0,neutral,0.47879713773727417
+435,2,35,2100309440,LevoParadoxPPOHybrid,2.0,neutral,0.47879713773727417
+436,2,36,1637824222,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+437,2,37,1781578254,LevoParadoxPPOHybrid,0.0,neutral,0.47879713773727417
+438,2,38,774535340,LevoParadoxPPOHybrid,0.0,neutral,0.47766703367233276
+439,2,39,1592536280,LevoParadoxPPOHybrid,0.8,neutral,0.47760096192359924
+440,2,40,803715272,LevoParadoxPPOHybrid,0.0,neutral,0.47968432307243347
+441,2,41,1295445709,LevoParadoxPPOHybrid,-0.8,overcautious,0.47879713773727417
+442,2,42,580455628,LevoParadoxPPOHybrid,0.8,neutral,0.47702041268348694
+443,2,43,608571353,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+444,2,44,220247617,LevoParadoxPPOHybrid,0.8,neutral,0.47702041268348694
+445,2,45,1007502304,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+446,2,46,1485027697,LevoParadoxPPOHybrid,1.2,neutral,0.47782430052757263
+447,2,47,308424123,LevoParadoxPPOHybrid,0.8,neutral,0.481337308883667
+448,2,48,1831539103,LevoParadoxPPOHybrid,0.0,neutral,0.4791390895843506
+449,2,49,96205481,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+450,2,50,572983894,LevoParadoxPPOHybrid,0.8,neutral,0.4789300858974457
+451,2,51,1559559556,LevoParadoxPPOHybrid,0.0,neutral,0.48121845722198486
+452,2,52,289588363,LevoParadoxPPOHybrid,0.0,neutral,0.4781184792518616
+453,2,53,1021080331,LevoParadoxPPOHybrid,0.8,neutral,0.47968432307243347
+454,2,54,43845046,LevoParadoxPPOHybrid,0.0,neutral,0.47968432307243347
+455,2,55,1969391451,LevoParadoxPPOHybrid,0.0,neutral,0.47984620928764343
+456,2,56,112141255,LevoParadoxPPOHybrid,0.0,neutral,0.47984620928764343
+457,2,57,407044235,LevoParadoxPPOHybrid,0.0,neutral,0.48121845722198486
+458,2,58,1413331621,LevoParadoxPPOHybrid,0.0,neutral,0.4791390895843506
+459,2,59,1124438664,LevoParadoxPPOHybrid,2.0,neutral,0.479806512594223
+460,2,60,1823383091,LevoParadoxPPOHybrid,0.0,neutral,0.47702041268348694
+461,2,61,1452420947,LevoParadoxPPOHybrid,-3.0,overconfident,0.47782430052757263
+462,2,62,2031250630,LevoParadoxPPOHybrid,-3.0,overconfident,0.4803639352321625
+463,2,63,788674418,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+464,2,64,1437390327,LevoParadoxPPOHybrid,0.8,neutral,0.48121845722198486
+465,2,65,879262169,LevoParadoxPPOHybrid,0.0,neutral,0.479806512594223
+466,2,66,958652521,LevoParadoxPPOHybrid,0.8,neutral,0.4793781638145447
+467,2,67,2142602411,LevoParadoxPPOHybrid,0.0,neutral,0.4789300858974457
+468,2,68,59947504,LevoParadoxPPOHybrid,0.8,neutral,0.47766703367233276
+469,2,69,384107305,LevoParadoxPPOHybrid,0.0,neutral,0.47968432307243347
+470,2,70,1830507375,LevoParadoxPPOHybrid,0.8,neutral,0.4789300858974457
+471,2,71,571519169,LevoParadoxPPOHybrid,0.8,neutral,0.4793781638145447
+472,2,72,1626492832,LevoParadoxPPOHybrid,0.8,neutral,0.4789300858974457
+473,2,73,1386853771,LevoParadoxPPOHybrid,0.8,neutral,0.47760096192359924
+474,2,74,1706685627,LevoParadoxPPOHybrid,-0.8,overcautious,0.47879713773727417
+475,2,75,1611897310,LevoParadoxPPOHybrid,2.0,neutral,0.48142847418785095
+476,2,76,1751003019,LevoParadoxPPOHybrid,0.8,neutral,0.47790008783340454
+477,2,77,1422082962,LevoParadoxPPOHybrid,1.2,neutral,0.48439839482307434
+478,2,78,1883691922,LevoParadoxPPOHybrid,0.0,neutral,0.481337308883667
+479,2,79,1013721795,LevoParadoxPPOHybrid,0.8,neutral,0.4791390895843506
+480,2,80,820766304,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+481,2,81,292577686,LevoParadoxPPOHybrid,0.8,neutral,0.481337308883667
+482,2,82,1774181236,LevoParadoxPPOHybrid,0.8,neutral,0.47968432307243347
+483,2,83,16477750,LevoParadoxPPOHybrid,0.8,neutral,0.4781184792518616
+484,2,84,270709347,LevoParadoxPPOHybrid,0.0,neutral,0.47766703367233276
+485,2,85,117649210,LevoParadoxPPOHybrid,0.8,neutral,0.47790008783340454
+486,2,86,1315442558,LevoParadoxPPOHybrid,0.0,neutral,0.47984620928764343
+487,2,87,2057676732,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+488,2,88,211459733,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+489,2,89,91146202,LevoParadoxPPOHybrid,0.0,neutral,0.47702041268348694
+490,2,90,588068454,LevoParadoxPPOHybrid,0.8,neutral,0.47968432307243347
+491,2,91,467526601,LevoParadoxPPOHybrid,-0.8,overcautious,0.479806512594223
+492,2,92,335299668,LevoParadoxPPOHybrid,0.8,neutral,0.47984620928764343
+493,2,93,779362037,LevoParadoxPPOHybrid,0.0,neutral,0.47968432307243347
+494,2,94,660339976,LevoParadoxPPOHybrid,2.0,neutral,0.479806512594223
+495,2,95,637136818,LevoParadoxPPOHybrid,1.2,neutral,0.48439839482307434
+496,2,96,1999866855,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+497,2,97,139896496,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+498,2,98,863743810,LevoParadoxPPOHybrid,0.0,neutral,0.4781184792518616
+499,2,99,1908673249,LevoParadoxPPOHybrid,2.0,neutral,0.479806512594223
+500,2,100,1039141574,LevoParadoxPPOHybrid,0.0,neutral,0.47984620928764343
+501,2,101,1051567495,LevoParadoxPPOHybrid,-3.0,overconfident,0.4803639352321625
+502,2,102,837394817,LevoParadoxPPOHybrid,0.8,neutral,0.47968432307243347
+503,2,103,2013481887,LevoParadoxPPOHybrid,0.0,neutral,0.47760096192359924
+504,2,104,438355621,LevoParadoxPPOHybrid,0.0,neutral,0.481337308883667
+505,2,105,993080718,LevoParadoxPPOHybrid,0.0,neutral,0.4781184792518616
+506,2,106,1682379032,LevoParadoxPPOHybrid,0.0,neutral,0.47766703367233276
+507,2,107,1013432362,LevoParadoxPPOHybrid,0.8,neutral,0.47702041268348694
+508,2,108,1856562955,LevoParadoxPPOHybrid,0.8,neutral,0.47702041268348694
+509,2,109,1667805176,LevoParadoxPPOHybrid,1.2,neutral,0.48439839482307434
+510,2,110,506300911,LevoParadoxPPOHybrid,0.0,neutral,0.4781184792518616
+511,2,111,222604131,LevoParadoxPPOHybrid,0.0,neutral,0.4793781638145447
+512,2,112,804599567,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+513,2,113,1492613445,LevoParadoxPPOHybrid,0.0,neutral,0.481283962726593
+514,2,114,552650077,LevoParadoxPPOHybrid,-3.0,overconfident,0.4819849133491516
+515,2,115,930025102,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+516,2,116,873459449,LevoParadoxPPOHybrid,2.0,neutral,0.48265746235847473
+517,2,117,467662889,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+518,2,118,445679122,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+519,2,119,1328599419,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+520,2,120,1323806708,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+521,2,121,1034589592,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+522,2,122,413811598,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+523,2,123,753550936,LevoParadoxPPOHybrid,0.0,neutral,0.4846201539039612
+524,2,124,1202521986,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+525,2,125,1933381577,LevoParadoxPPOHybrid,0.0,neutral,0.4850122034549713
+526,2,126,1963329040,LevoParadoxPPOHybrid,0.8,neutral,0.48379752039909363
+527,2,127,1399821071,LevoParadoxPPOHybrid,0.0,neutral,0.4850122034549713
+528,2,128,1828929971,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+529,2,129,1100686433,LevoParadoxPPOHybrid,0.0,neutral,0.4818302094936371
+530,2,130,423774818,LevoParadoxPPOHybrid,0.8,neutral,0.4854736030101776
+531,2,131,2047001195,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+532,2,132,127060851,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+533,2,133,1430942851,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+534,2,134,1194133788,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+535,2,135,30246456,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+536,2,136,1871301169,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+537,2,137,1724977905,LevoParadoxPPOHybrid,0.0,neutral,0.4846201539039612
+538,2,138,1717796771,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+539,2,139,1593858573,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+540,2,140,200663940,LevoParadoxPPOHybrid,-3.0,overconfident,0.4846201539039612
+541,2,141,1366649604,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+542,2,142,1673519505,LevoParadoxPPOHybrid,0.8,neutral,0.4811937212944031
+543,2,143,1177626327,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+544,2,144,262855495,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+545,2,145,1035690989,LevoParadoxPPOHybrid,0.0,neutral,0.4819849133491516
+546,2,146,192999926,LevoParadoxPPOHybrid,0.8,neutral,0.4811937212944031
+547,2,147,1097961901,LevoParadoxPPOHybrid,-0.8,overcautious,0.48265746235847473
+548,2,148,1040646467,LevoParadoxPPOHybrid,2.0,neutral,0.4850122034549713
+549,2,149,1995566658,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+550,2,150,390674833,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+551,2,151,662645968,LevoParadoxPPOHybrid,1.2,neutral,0.4846201539039612
+552,2,152,111224037,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+553,2,153,1242319339,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+554,2,154,1295579201,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+555,2,155,88079789,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+556,2,156,1218832160,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+557,2,157,1199450774,LevoParadoxPPOHybrid,0.8,neutral,0.48379752039909363
+558,2,158,93920744,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+559,2,159,301211568,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+560,2,160,606831608,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+561,2,161,248267762,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+562,2,162,479831997,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+563,2,163,443794762,LevoParadoxPPOHybrid,1.2,neutral,0.4876437187194824
+564,2,164,317845088,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+565,2,165,976368810,LevoParadoxPPOHybrid,0.0,neutral,0.4876437187194824
+566,2,166,1096060710,LevoParadoxPPOHybrid,1.2,neutral,0.4846201539039612
+567,2,167,1786432503,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+568,2,168,92915493,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+569,2,169,169421372,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+570,2,170,827738447,LevoParadoxPPOHybrid,-0.8,overcautious,0.48265746235847473
+571,2,171,91871503,LevoParadoxPPOHybrid,0.8,neutral,0.4812925159931183
+572,2,172,1181786707,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+573,2,173,14354338,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+574,2,174,2140443672,LevoParadoxPPOHybrid,0.0,neutral,0.4819849133491516
+575,2,175,318790932,LevoParadoxPPOHybrid,2.0,neutral,0.48265746235847473
+576,2,176,721850175,LevoParadoxPPOHybrid,2.0,neutral,0.48265746235847473
+577,2,177,1030785601,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+578,2,178,1316251630,LevoParadoxPPOHybrid,0.0,neutral,0.4850122034549713
+579,2,179,1719447051,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+580,2,180,574594100,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+581,2,181,2130613154,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+582,2,182,527701015,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+583,2,183,1227208042,LevoParadoxPPOHybrid,-3.0,overconfident,0.4846201539039612
+584,2,184,633972706,LevoParadoxPPOHybrid,0.8,neutral,0.4818302094936371
+585,2,185,1481264686,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+586,2,186,1403332419,LevoParadoxPPOHybrid,0.8,neutral,0.48329493403434753
+587,2,187,573328882,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+588,2,188,896430961,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+589,2,189,861308429,LevoParadoxPPOHybrid,-3.0,overconfident,0.4819849133491516
+590,2,190,857542805,LevoParadoxPPOHybrid,-3.0,overconfident,0.4846201539039612
+591,2,191,555627012,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+592,2,192,883473089,LevoParadoxPPOHybrid,1.2,neutral,0.4876437187194824
+593,2,193,1183906577,LevoParadoxPPOHybrid,-0.8,overcautious,0.48265746235847473
+594,2,194,1295404722,LevoParadoxPPOHybrid,0.0,neutral,0.4842311441898346
+595,2,195,1602782174,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+596,2,196,1168170146,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+597,2,197,247049848,LevoParadoxPPOHybrid,0.8,neutral,0.4829106330871582
+598,2,198,1217521579,LevoParadoxPPOHybrid,2.0,neutral,0.4850122034549713
+599,2,199,1154221074,LevoParadoxPPOHybrid,-3.0,overconfident,0.4846201539039612
+600,2,200,1039822287,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+601,2,201,403774715,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+602,2,202,1937799744,LevoParadoxPPOHybrid,0.0,neutral,0.4812925159931183
+603,2,203,1530207800,LevoParadoxPPOHybrid,0.8,neutral,0.48379752039909363
+604,2,204,899360822,LevoParadoxPPOHybrid,0.8,neutral,0.4812925159931183
+605,2,205,839140609,LevoParadoxPPOHybrid,2.0,neutral,0.48265746235847473
+606,2,206,2141035731,LevoParadoxPPOHybrid,0.0,neutral,0.4842311441898346
+607,2,207,778084307,LevoParadoxPPOHybrid,1.2,neutral,0.4846201539039612
+608,2,208,350945807,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+609,2,209,970046052,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+610,2,210,828658713,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+611,2,211,899193899,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+612,2,212,1918263815,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+613,2,213,861402774,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+614,2,214,545630730,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+615,2,215,1771344806,LevoParadoxPPOHybrid,0.8,neutral,0.4818302094936371
+616,2,216,835556689,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+617,2,217,920739262,LevoParadoxPPOHybrid,0.8,neutral,0.4857918918132782
+618,2,218,1075133249,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+619,2,219,1466130915,LevoParadoxPPOHybrid,0.8,neutral,0.4811937212944031
+620,2,220,1545638251,LevoParadoxPPOHybrid,-3.0,overconfident,0.4819849133491516
+621,2,221,379504837,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+622,2,222,833504022,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+623,2,223,1846676001,LevoParadoxPPOHybrid,1.2,neutral,0.4876437187194824
+624,2,224,6416948,LevoParadoxPPOHybrid,0.0,neutral,0.4818302094936371
+625,2,225,1751117666,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+626,2,226,284570123,LevoParadoxPPOHybrid,0.8,neutral,0.48379752039909363
+627,2,227,189352376,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+628,2,228,1370043294,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+629,2,229,1967776583,LevoParadoxPPOHybrid,0.0,neutral,0.4818302094936371
+630,2,230,1013942334,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+631,2,231,600184202,LevoParadoxPPOHybrid,0.8,neutral,0.4829106330871582
+632,2,232,2085636407,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+633,2,233,328848547,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+634,2,234,63425983,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+635,2,235,531264304,LevoParadoxPPOHybrid,0.0,neutral,0.48265746235847473
+636,2,236,1531168957,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+637,2,237,1789312949,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+638,2,238,1084402395,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+639,2,239,1545622175,LevoParadoxPPOHybrid,0.8,neutral,0.4854736030101776
+640,2,240,999431888,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+641,2,241,1725426490,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+642,2,242,669407095,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+643,2,243,1417993163,LevoParadoxPPOHybrid,0.8,neutral,0.4818302094936371
+644,2,244,1057045593,LevoParadoxPPOHybrid,0.8,neutral,0.4829106330871582
+645,2,245,1380890934,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+646,2,246,238129855,LevoParadoxPPOHybrid,0.8,neutral,0.4854736030101776
+647,2,247,1486485713,LevoParadoxPPOHybrid,0.8,neutral,0.4811937212944031
+648,2,248,30716145,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+649,2,249,1615261593,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+650,2,250,2052819092,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+651,2,251,11185487,LevoParadoxPPOHybrid,0.0,neutral,0.4812925159931183
+652,2,252,928000143,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+653,2,253,2023963770,LevoParadoxPPOHybrid,1.2,neutral,0.4876437187194824
+654,2,254,1301736393,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+655,2,255,398352915,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+656,2,256,299104752,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+657,2,257,1900619662,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+658,2,258,402834001,LevoParadoxPPOHybrid,1.2,neutral,0.4846201539039612
+659,2,259,618191185,LevoParadoxPPOHybrid,1.2,neutral,0.4876437187194824
+660,2,260,1107226955,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+661,2,261,1079996997,LevoParadoxPPOHybrid,0.8,neutral,0.4857918918132782
+662,2,262,1090799708,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+663,2,263,614807561,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+664,2,264,1110540374,LevoParadoxPPOHybrid,0.0,neutral,0.4850122034549713
+665,2,265,230358128,LevoParadoxPPOHybrid,0.8,neutral,0.4857918918132782
+666,2,266,1307025172,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+667,2,267,2128513208,LevoParadoxPPOHybrid,-3.0,overconfident,0.4846201539039612
+668,2,268,1813190214,LevoParadoxPPOHybrid,1.2,neutral,0.4876437187194824
+669,2,269,427517589,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+670,2,270,971704768,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+671,2,271,379120844,LevoParadoxPPOHybrid,0.8,neutral,0.4857918918132782
+672,2,272,366674027,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+673,2,273,1267589757,LevoParadoxPPOHybrid,0.8,neutral,0.4818302094936371
+674,2,274,397609752,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+675,2,275,544583423,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+676,2,276,1765101426,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+677,2,277,569693597,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+678,2,278,189460983,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+679,2,279,505940532,LevoParadoxPPOHybrid,0.0,neutral,0.481283962726593
+680,2,280,961700536,LevoParadoxPPOHybrid,1.2,neutral,0.4819849133491516
+681,2,281,932456279,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+682,2,282,390287427,LevoParadoxPPOHybrid,2.0,neutral,0.4850122034549713
+683,2,283,297976648,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+684,2,284,436098708,LevoParadoxPPOHybrid,0.0,neutral,0.481283962726593
+685,2,285,794629335,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+686,2,286,1214082779,LevoParadoxPPOHybrid,0.8,neutral,0.481283962726593
+687,2,287,1935214602,LevoParadoxPPOHybrid,0.0,neutral,0.4842311441898346
+688,2,288,284248471,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+689,2,289,1230641234,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+690,2,290,388858966,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+691,2,291,1021791854,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+692,2,292,603303402,LevoParadoxPPOHybrid,0.8,neutral,0.48379752039909363
+693,2,293,862608619,LevoParadoxPPOHybrid,0.8,neutral,0.481283962726593
+694,2,294,1651871421,LevoParadoxPPOHybrid,0.8,neutral,0.4811937212944031
+695,2,295,2051444313,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+696,2,296,144628230,LevoParadoxPPOHybrid,0.8,neutral,0.48329493403434753
+697,2,297,1520429634,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+698,2,298,881109934,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+699,2,299,1255956995,LevoParadoxPPOHybrid,0.0,neutral,0.481283962726593
+700,2,300,208230768,LevoParadoxPPOHybrid,0.8,neutral,0.4829106330871582
+701,2,301,1460257335,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+702,2,302,1011782590,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+703,2,303,1789340557,LevoParadoxPPOHybrid,2.0,neutral,0.48265746235847473
+704,2,304,1869217819,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+705,2,305,1673802110,LevoParadoxPPOHybrid,0.0,neutral,0.481283962726593
+706,2,306,62463393,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+707,2,307,2074841997,LevoParadoxPPOHybrid,-3.0,overconfident,0.4846201539039612
+708,2,308,1764116324,LevoParadoxPPOHybrid,-3.0,overconfident,0.4819849133491516
+709,2,309,1361763883,LevoParadoxPPOHybrid,0.0,neutral,0.4819849133491516
+710,2,310,2068149571,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+711,2,311,1761270974,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+712,2,312,1610445955,LevoParadoxPPOHybrid,0.8,neutral,0.4818302094936371
+713,2,313,527574022,LevoParadoxPPOHybrid,0.8,neutral,0.4857918918132782
+714,2,314,1948416385,LevoParadoxPPOHybrid,0.8,neutral,0.4812925159931183
+715,2,315,842515162,LevoParadoxPPOHybrid,1.2,neutral,0.4846201539039612
+716,2,316,728127582,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+717,2,317,1807809684,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+718,2,318,1911608906,LevoParadoxPPOHybrid,0.8,neutral,0.481283962726593
+719,2,319,507860031,LevoParadoxPPOHybrid,0.8,neutral,0.48329493403434753
+720,2,320,1559660249,LevoParadoxPPOHybrid,0.0,neutral,0.4812925159931183
+721,2,321,817113483,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+722,2,322,181612330,LevoParadoxPPOHybrid,0.0,neutral,0.4818302094936371
+723,2,323,330146939,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+724,2,324,1451519916,LevoParadoxPPOHybrid,0.8,neutral,0.48329493403434753
+725,2,325,429715005,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+726,2,326,1836744305,LevoParadoxPPOHybrid,2.0,neutral,0.48265746235847473
+727,2,327,200999922,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+728,2,328,686960989,LevoParadoxPPOHybrid,1.2,neutral,0.4819849133491516
+729,2,329,2137759524,LevoParadoxPPOHybrid,0.0,neutral,0.4857918918132782
+730,2,330,48470119,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+731,2,331,1429722682,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+732,2,332,218074447,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+733,2,333,2104545774,LevoParadoxPPOHybrid,0.8,neutral,0.4811937212944031
+734,2,334,1816453390,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+735,2,335,639577193,LevoParadoxPPOHybrid,0.0,neutral,0.48379752039909363
+736,2,336,231860645,LevoParadoxPPOHybrid,1.2,neutral,0.4846201539039612
+737,2,337,1142197128,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+738,2,338,1321680746,LevoParadoxPPOHybrid,0.8,neutral,0.48379752039909363
+739,2,339,1746554905,LevoParadoxPPOHybrid,0.0,neutral,0.4812925159931183
+740,2,340,396707811,LevoParadoxPPOHybrid,0.8,neutral,0.4854736030101776
+741,2,341,491514850,LevoParadoxPPOHybrid,0.8,neutral,0.48286885023117065
+742,2,342,461674718,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+743,2,343,1701500925,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+744,2,344,1344298913,LevoParadoxPPOHybrid,0.0,neutral,0.4818302094936371
+745,2,345,1354823084,LevoParadoxPPOHybrid,0.0,neutral,0.4811937212944031
+746,2,346,118160105,LevoParadoxPPOHybrid,1.2,neutral,0.4819849133491516
+747,2,347,1044584312,LevoParadoxPPOHybrid,0.8,neutral,0.4839756190776825
+748,2,348,1524392230,LevoParadoxPPOHybrid,0.0,neutral,0.4819849133491516
+749,2,349,428869864,LevoParadoxPPOHybrid,0.8,neutral,0.48329493403434753
+750,2,350,180994417,LevoParadoxPPOHybrid,0.8,neutral,0.4829106330871582
+751,2,351,885019589,LevoParadoxPPOHybrid,0.0,neutral,0.4812925159931183
+752,2,352,1231928222,LevoParadoxPPOHybrid,0.0,neutral,0.4854736030101776
+753,2,353,1670237802,LevoParadoxPPOHybrid,0.0,neutral,0.4839756190776825
+754,2,354,1414482049,LevoParadoxPPOHybrid,0.8,neutral,0.4854736030101776
+755,2,355,1971477631,LevoParadoxPPOHybrid,2.0,neutral,0.4842311441898346
+756,2,356,883215094,LevoParadoxPPOHybrid,0.0,neutral,0.4846201539039612
+757,2,357,343285816,LevoParadoxPPOHybrid,-3.0,overconfident,0.4819849133491516
+758,2,358,1993664325,LevoParadoxPPOHybrid,-0.8,overcautious,0.4850122034549713
+759,2,359,538994041,LevoParadoxPPOHybrid,0.8,neutral,0.4818005859851837
+760,2,360,365720817,LevoParadoxPPOHybrid,-0.8,overcautious,0.4842311441898346
+761,2,361,1931073180,LevoParadoxPPOHybrid,0.0,neutral,0.48286885023117065
+762,2,362,330654991,LevoParadoxPPOHybrid,0.0,neutral,0.4818005859851837
+763,2,363,2117986561,LevoParadoxPPOHybrid,-3.0,overconfident,0.4876437187194824
+764,2,364,1745610389,LevoParadoxPPOHybrid,0.0,neutral,0.48265746235847473
+765,2,365,1935491097,LevoParadoxPPOHybrid,0.8,neutral,0.481283962726593
+766,2,366,816460352,LevoParadoxPPOHybrid,0.0,neutral,0.48329493403434753
+767,2,367,2034287239,LevoParadoxPPOHybrid,0.0,neutral,0.4829106330871582
+768,2,368,1494357375,LevoParadoxPPOHybrid,0.8,neutral,0.48519960045814514
+769,2,369,525099930,LevoParadoxPPOHybrid,0.8,neutral,0.48731231689453125
+770,2,370,461861420,LevoParadoxPPOHybrid,0.8,neutral,0.4886108636856079
+771,2,371,424434369,LevoParadoxPPOHybrid,0.0,neutral,0.48417460918426514
+772,2,372,1696040440,LevoParadoxPPOHybrid,0.0,neutral,0.48826003074645996
+773,2,373,1327732050,LevoParadoxPPOHybrid,0.8,neutral,0.48468780517578125
+774,2,374,1275639253,LevoParadoxPPOHybrid,0.8,neutral,0.48519960045814514
+775,2,375,180175624,LevoParadoxPPOHybrid,0.0,neutral,0.48731231689453125
+776,2,376,853325992,LevoParadoxPPOHybrid,1.2,neutral,0.48919999599456787
+777,2,377,35314844,LevoParadoxPPOHybrid,0.0,neutral,0.4842897355556488
+778,2,378,512421119,LevoParadoxPPOHybrid,-0.8,overcautious,0.48792359232902527
+779,2,379,1818877815,LevoParadoxPPOHybrid,0.0,neutral,0.4842897355556488
+780,2,380,244612068,LevoParadoxPPOHybrid,0.8,neutral,0.48738181591033936
+781,2,381,438090890,LevoParadoxPPOHybrid,0.8,neutral,0.4872293472290039
+782,2,382,71908212,LevoParadoxPPOHybrid,0.0,neutral,0.4857252836227417
+783,2,383,763979621,LevoParadoxPPOHybrid,0.0,neutral,0.4857252836227417
+784,2,384,492409950,LevoParadoxPPOHybrid,0.8,neutral,0.4872293472290039
+785,2,385,1939330706,LevoParadoxPPOHybrid,-3.0,overconfident,0.48516950011253357
+786,2,386,304266562,LevoParadoxPPOHybrid,0.8,neutral,0.4857252836227417
+787,2,387,1839152413,LevoParadoxPPOHybrid,0.8,neutral,0.48519960045814514
+788,2,388,1584964798,LevoParadoxPPOHybrid,0.8,neutral,0.48738181591033936
+789,2,389,1705345529,LevoParadoxPPOHybrid,0.0,neutral,0.48468780517578125
+790,2,390,530680927,LevoParadoxPPOHybrid,0.0,neutral,0.48826003074645996
+791,2,391,601158382,LevoParadoxPPOHybrid,-3.0,overconfident,0.4865123927593231
+792,2,392,661312537,LevoParadoxPPOHybrid,0.8,neutral,0.4886108636856079
+793,2,393,1099910893,LevoParadoxPPOHybrid,0.8,neutral,0.48417460918426514
+794,2,394,1777836792,LevoParadoxPPOHybrid,1.2,neutral,0.4865123927593231
+795,2,395,320819501,LevoParadoxPPOHybrid,0.0,neutral,0.48519960045814514
+796,2,396,1262930064,LevoParadoxPPOHybrid,0.0,neutral,0.48468780517578125
+797,2,397,1476382876,LevoParadoxPPOHybrid,0.8,neutral,0.48468780517578125
+798,2,398,229480971,LevoParadoxPPOHybrid,0.0,neutral,0.48731231689453125
+799,2,399,1346765522,LevoParadoxPPOHybrid,0.0,neutral,0.48731231689453125
+800,3,0,1015467875,LevoParadoxPPOHybrid,0.49029308438457947,neutral,0.48342037200927734
+801,3,1,871703027,LevoParadoxPPOHybrid,0.2583186351063763,neutral,0.48847508430480957
+802,3,2,1121193219,LevoParadoxPPOHybrid,-0.9285687801394484,overcautious,0.4896336793899536
+803,3,3,1844331605,LevoParadoxPPOHybrid,1.268712954493355,neutral,0.4856588840484619
+804,3,4,376821421,LevoParadoxPPOHybrid,-2.1540989698282287,overconfident,0.49011749029159546
+805,3,5,1528947293,LevoParadoxPPOHybrid,1.9236203197456223,neutral,0.49011749029159546
+806,3,6,1457385050,LevoParadoxPPOHybrid,-0.388878696540991,neutral,0.48847508430480957
+807,3,7,1930833205,LevoParadoxPPOHybrid,1.8947708652049988,neutral,0.4878310561180115
+808,3,8,331658631,LevoParadoxPPOHybrid,-0.34637226145235095,overcautious,0.48912549018859863
+809,3,9,1392760183,LevoParadoxPPOHybrid,-1.7470900488231007,overconfident,0.48763468861579895
+810,3,10,1410154195,LevoParadoxPPOHybrid,0.37503834948416703,neutral,0.48973292112350464
+811,3,11,1330897656,LevoParadoxPPOHybrid,1.9046013636486836,neutral,0.49011749029159546
+812,3,12,755426389,LevoParadoxPPOHybrid,-0.08449315822425026,neutral,0.4876002371311188
+813,3,13,478344337,LevoParadoxPPOHybrid,-0.20334804248604185,neutral,0.48973292112350464
+814,3,14,2135473267,LevoParadoxPPOHybrid,-0.321538017298501,neutral,0.48342037200927734
+815,3,15,1381920965,LevoParadoxPPOHybrid,-0.8946149359899849,neutral,0.4856588840484619
+816,3,16,790353978,LevoParadoxPPOHybrid,0.805089675891586,neutral,0.48261088132858276
+817,3,17,886917887,LevoParadoxPPOHybrid,-2.0434560465424223,overconfident,0.48763468861579895
+818,3,18,1326287162,LevoParadoxPPOHybrid,0.35056089697345333,neutral,0.4878310561180115
+819,3,19,132467973,LevoParadoxPPOHybrid,0.7640856467236494,neutral,0.49011749029159546
+820,3,20,896694920,LevoParadoxPPOHybrid,0.6314368917416728,neutral,0.48973292112350464
+821,3,21,265295982,LevoParadoxPPOHybrid,0.472286750236512,neutral,0.48261088132858276
+822,3,22,188123431,LevoParadoxPPOHybrid,0.7270211373649718,neutral,0.4841948449611664
+823,3,23,1385912200,LevoParadoxPPOHybrid,0.5742713840510624,neutral,0.48847508430480957
+824,3,24,449987729,LevoParadoxPPOHybrid,0.150792838879278,neutral,0.4853600561618805
+825,3,25,593302824,LevoParadoxPPOHybrid,-0.045015931355259255,neutral,0.48763468861579895
+826,3,26,194879931,LevoParadoxPPOHybrid,0.17815411284413574,neutral,0.4832690358161926
+827,3,27,1758518115,LevoParadoxPPOHybrid,1.045585673873838,neutral,0.49009424448013306
+828,3,28,1545311517,LevoParadoxPPOHybrid,0.1627856125489353,neutral,0.4856588840484619
+829,3,29,562603550,LevoParadoxPPOHybrid,1.2183364147364109,neutral,0.48261088132858276
+830,3,30,1059808449,LevoParadoxPPOHybrid,1.2917831804345576,neutral,0.48261088132858276
+831,3,31,614383066,LevoParadoxPPOHybrid,0.016342221885410586,neutral,0.48973292112350464
+832,3,32,1192512057,LevoParadoxPPOHybrid,-0.5442359769557571,overcautious,0.48912549018859863
+833,3,33,950581637,LevoParadoxPPOHybrid,-0.8977958223217277,neutral,0.48956099152565
+834,3,34,1863772308,LevoParadoxPPOHybrid,0.45308998140979106,neutral,0.48973292112350464
+835,3,35,1007304414,LevoParadoxPPOHybrid,0.5254077508874286,neutral,0.48956099152565
+836,3,36,809066309,LevoParadoxPPOHybrid,-1.1110986321443062,overcautious,0.4853600561618805
+837,3,37,1514006645,LevoParadoxPPOHybrid,-0.3418469151415457,neutral,0.48763468861579895
+838,3,38,1146495174,LevoParadoxPPOHybrid,-0.2942163006184566,neutral,0.48847508430480957
+839,3,39,1859928275,LevoParadoxPPOHybrid,2.5861061474664324,neutral,0.48912549018859863
+840,3,40,303035184,LevoParadoxPPOHybrid,2.2035140269583504,neutral,0.4896336793899536
+841,3,41,1724145893,LevoParadoxPPOHybrid,0.9938873972881753,neutral,0.4878310561180115
+842,3,42,1035035036,LevoParadoxPPOHybrid,2.053749158155912,neutral,0.4853600561618805
+843,3,43,278635683,LevoParadoxPPOHybrid,1.54230006707985,neutral,0.4896336793899536
+844,3,44,377801781,LevoParadoxPPOHybrid,2.2669636777741404,neutral,0.48912549018859863
+845,3,45,1487506785,LevoParadoxPPOHybrid,0.5730128127334602,neutral,0.4841948449611664
+846,3,46,766738768,LevoParadoxPPOHybrid,1.7451958636224911,neutral,0.48763468861579895
+847,3,47,1469590444,LevoParadoxPPOHybrid,-0.11980525970062122,neutral,0.4856588840484619
+848,3,48,1527511243,LevoParadoxPPOHybrid,0.47426746416333615,neutral,0.4882761538028717
+849,3,49,1889868992,LevoParadoxPPOHybrid,0.18740335053313484,neutral,0.48342037200927734
+850,3,50,808836466,LevoParadoxPPOHybrid,1.4424045317149554,neutral,0.48342037200927734
+851,3,51,880209119,LevoParadoxPPOHybrid,-0.41698242562591825,neutral,0.4856588840484619
+852,3,52,2069774123,LevoParadoxPPOHybrid,1.1358277140176187,neutral,0.48973292112350464
+853,3,53,59978537,LevoParadoxPPOHybrid,1.2273143926451668,neutral,0.48261088132858276
+854,3,54,268314216,LevoParadoxPPOHybrid,1.1038476892173612,neutral,0.49011749029159546
+855,3,55,786773386,LevoParadoxPPOHybrid,1.2293653945237177,neutral,0.48973292112350464
+856,3,56,1078804137,LevoParadoxPPOHybrid,1.9968823651873315,neutral,0.4896336793899536
+857,3,57,88529032,LevoParadoxPPOHybrid,0.9139455244229703,neutral,0.48261088132858276
+858,3,58,733437594,LevoParadoxPPOHybrid,0.9998437802015792,neutral,0.4832690358161926
+859,3,59,1895500654,LevoParadoxPPOHybrid,1.1147969815448564,neutral,0.4832690358161926
+860,3,60,1156794677,LevoParadoxPPOHybrid,0.2822839034147425,neutral,0.4878310561180115
+861,3,61,1733698348,LevoParadoxPPOHybrid,1.1083787111148988,neutral,0.48261088132858276
+862,3,62,1987643195,LevoParadoxPPOHybrid,1.6494336690825908,neutral,0.48973292112350464
+863,3,63,968829821,LevoParadoxPPOHybrid,-1.3638653475842197,overcautious,0.4896336793899536
+864,3,64,2125839782,LevoParadoxPPOHybrid,-0.2783466794080766,neutral,0.4832690358161926
+865,3,65,1588322590,LevoParadoxPPOHybrid,2.2909286951175467,neutral,0.4859134256839752
+866,3,66,956367808,LevoParadoxPPOHybrid,-0.13769164780464407,neutral,0.49011749029159546
+867,3,67,2135886715,LevoParadoxPPOHybrid,0.9020338710094363,neutral,0.48261088132858276
+868,3,68,705297723,LevoParadoxPPOHybrid,2.267886356355249,neutral,0.48912549018859863
+869,3,69,493712258,LevoParadoxPPOHybrid,0.07995221270930497,neutral,0.4876002371311188
+870,3,70,75420035,LevoParadoxPPOHybrid,1.2007933704297795,neutral,0.4856588840484619
+871,3,71,1867815399,LevoParadoxPPOHybrid,-1.475944225695721,overconfident,0.4882761538028717
+872,3,72,509860178,LevoParadoxPPOHybrid,-1.0158303213136595,neutral,0.48973292112350464
+873,3,73,687658415,LevoParadoxPPOHybrid,-0.044455013110146525,neutral,0.48956099152565
+874,3,74,319346835,LevoParadoxPPOHybrid,1.1336872360109915,neutral,0.49009424448013306
+875,3,75,985914893,LevoParadoxPPOHybrid,-1.1520970521006983,overconfident,0.49011749029159546
+876,3,76,456914363,LevoParadoxPPOHybrid,-0.5563823345326576,neutral,0.48847508430480957
+877,3,77,1903234235,LevoParadoxPPOHybrid,-0.6168972120738625,neutral,0.48973292112350464
+878,3,78,1104964239,LevoParadoxPPOHybrid,-0.5537494140426967,neutral,0.4859134256839752
+879,3,79,800272976,LevoParadoxPPOHybrid,1.0014376600959138,neutral,0.48763468861579895
+880,3,80,514077870,LevoParadoxPPOHybrid,1.348889466402683,neutral,0.4878310561180115
+881,3,81,2084198909,LevoParadoxPPOHybrid,1.1757541313429112,neutral,0.48973292112350464
+882,3,82,909365514,LevoParadoxPPOHybrid,1.6573741369785153,neutral,0.4832690358161926
+883,3,83,1338386269,LevoParadoxPPOHybrid,-2.0258053677846037,overconfident,0.4882761538028717
+884,3,84,947429886,LevoParadoxPPOHybrid,0.6408681653569512,neutral,0.48342037200927734
+885,3,85,58590834,LevoParadoxPPOHybrid,1.324978671615042,neutral,0.49009424448013306
+886,3,86,684669113,LevoParadoxPPOHybrid,0.7636384160065989,neutral,0.48973292112350464
+887,3,87,898917724,LevoParadoxPPOHybrid,-1.2982161592441008,overcautious,0.48912549018859863
+888,3,88,548630351,LevoParadoxPPOHybrid,-0.2270660769418316,neutral,0.4832690358161926
+889,3,89,1616758964,LevoParadoxPPOHybrid,1.9765640849812711,neutral,0.49011749029159546
+890,3,90,2082505679,LevoParadoxPPOHybrid,-0.6935378671763233,neutral,0.4841948449611664
+891,3,91,741581883,LevoParadoxPPOHybrid,-0.0517050103645994,neutral,0.48847508430480957
+892,3,92,393553070,LevoParadoxPPOHybrid,-1.66724885658832,overconfident,0.48763468861579895
+893,3,93,890404536,LevoParadoxPPOHybrid,0.11880035600180827,neutral,0.48847508430480957
+894,3,94,179225205,LevoParadoxPPOHybrid,1.1151171438000786,neutral,0.48912549018859863
+895,3,95,852483643,LevoParadoxPPOHybrid,1.0428840098478962,neutral,0.4878310561180115
+896,3,96,596549345,LevoParadoxPPOHybrid,1.0439902976490092,neutral,0.4859134256839752
+897,3,97,1246421089,LevoParadoxPPOHybrid,1.363801434612391,neutral,0.48763468861579895
+898,3,98,505921964,LevoParadoxPPOHybrid,-1.858527642939623,overconfident,0.49011749029159546
+899,3,99,1670483738,LevoParadoxPPOHybrid,2.368154360450977,neutral,0.4896336793899536
+900,3,100,598294997,LevoParadoxPPOHybrid,1.318673479308487,neutral,0.4878310561180115
+901,3,101,1370406670,LevoParadoxPPOHybrid,-0.6009999531995625,overcautious,0.48912549018859863
+902,3,102,1690182943,LevoParadoxPPOHybrid,0.4903581932462463,neutral,0.4882761538028717
+903,3,103,1763960416,LevoParadoxPPOHybrid,0.10068445791849981,neutral,0.4878310561180115
+904,3,104,1645746969,LevoParadoxPPOHybrid,0.4513871460018203,neutral,0.4882761538028717
+905,3,105,820931753,LevoParadoxPPOHybrid,0.962884542235,neutral,0.4878310561180115
+906,3,106,1937660724,LevoParadoxPPOHybrid,0.20491593125696084,neutral,0.48763468861579895
+907,3,107,536112434,LevoParadoxPPOHybrid,-0.6515974640687232,neutral,0.4859134256839752
+908,3,108,852564596,LevoParadoxPPOHybrid,1.9825755691164177,neutral,0.49011749029159546
+909,3,109,2109579034,LevoParadoxPPOHybrid,0.849483274776245,neutral,0.4876002371311188
+910,3,110,1119218651,LevoParadoxPPOHybrid,2.36103349569904,neutral,0.48912549018859863
+911,3,111,1171844126,LevoParadoxPPOHybrid,0.6209249958307298,neutral,0.4896336793899536
+912,3,112,1066832,LevoParadoxPPOHybrid,-1.592546479482495,overconfident,0.48763468861579895
+913,3,113,2039855300,LevoParadoxPPOHybrid,-1.504881615380498,overconfident,0.49011749029159546
+914,3,114,1830413706,LevoParadoxPPOHybrid,0.6645794180980706,neutral,0.48973292112350464
+915,3,115,1536434038,LevoParadoxPPOHybrid,-2.4062797861421963,overconfident,0.48763468861579895
+916,3,116,204181968,LevoParadoxPPOHybrid,0.6050677080581792,neutral,0.4841948449611664
+917,3,117,782074719,LevoParadoxPPOHybrid,0.5091854411977584,neutral,0.48342037200927734
+918,3,118,1683677695,LevoParadoxPPOHybrid,-0.13301843465527774,neutral,0.4882761538028717
+919,3,119,811003462,LevoParadoxPPOHybrid,0.23188393912158678,neutral,0.48973292112350464
+920,3,120,1843531798,LevoParadoxPPOHybrid,-2.1411527352505653,overconfident,0.4882761538028717
+921,3,121,244956048,LevoParadoxPPOHybrid,-3.0,overconfident,0.4882761538028717
+922,3,122,521744775,LevoParadoxPPOHybrid,1.2719310359187297,neutral,0.48973292112350464
+923,3,123,137476059,LevoParadoxPPOHybrid,-0.01526260625040965,overcautious,0.4896336793899536
+924,3,124,1493249395,LevoParadoxPPOHybrid,0.7601033690157201,neutral,0.48342037200927734
+925,3,125,1658377656,LevoParadoxPPOHybrid,-0.0057138258475040145,neutral,0.48847508430480957
+926,3,126,1598149764,LevoParadoxPPOHybrid,-0.7555320294233012,overcautious,0.4896336793899536
+927,3,127,1973871594,LevoParadoxPPOHybrid,-0.17183341968445853,neutral,0.48342037200927734
+928,3,128,1575988774,LevoParadoxPPOHybrid,1.1486204800254285,neutral,0.4878310561180115
+929,3,129,352160276,LevoParadoxPPOHybrid,-0.09552234063130116,overcautious,0.4896336793899536
+930,3,130,1951098323,LevoParadoxPPOHybrid,-0.30943551223890026,overcautious,0.4896336793899536
+931,3,131,496971788,LevoParadoxPPOHybrid,0.12521537161674298,neutral,0.48342037200927734
+932,3,132,1527624590,LevoParadoxPPOHybrid,0.27854327915885413,neutral,0.4859134256839752
+933,3,133,400244675,LevoParadoxPPOHybrid,0.4690883568339111,neutral,0.48261088132858276
+934,3,134,386029926,LevoParadoxPPOHybrid,1.6115419185654172,neutral,0.48847508430480957
+935,3,135,573115058,LevoParadoxPPOHybrid,0.3348870252362766,neutral,0.4878310561180115
+936,3,136,575530726,LevoParadoxPPOHybrid,-0.4869844334164761,neutral,0.4878310561180115
+937,3,137,1964806113,LevoParadoxPPOHybrid,1.646603023563101,neutral,0.48956099152565
+938,3,138,1773149752,LevoParadoxPPOHybrid,-1.4756296842408974,overcautious,0.4853600561618805
+939,3,139,1241865463,LevoParadoxPPOHybrid,0.7525970473504748,neutral,0.4856588840484619
+940,3,140,330338515,LevoParadoxPPOHybrid,0.14435952462764418,neutral,0.49011749029159546
+941,3,141,761423743,LevoParadoxPPOHybrid,1.498481325424641,neutral,0.48912549018859863
+942,3,142,455706626,LevoParadoxPPOHybrid,-0.4525828220379003,neutral,0.48342037200927734
+943,3,143,1509528211,LevoParadoxPPOHybrid,0.26559561736173787,neutral,0.48847508430480957
+944,3,144,1356675324,LevoParadoxPPOHybrid,-3.0,overconfident,0.48763468861579895
+945,3,145,567724229,LevoParadoxPPOHybrid,-1.9704376301344195,overconfident,0.48763468861579895
+946,3,146,490459625,LevoParadoxPPOHybrid,-0.4252469944816251,neutral,0.48973292112350464
+947,3,147,1407038082,LevoParadoxPPOHybrid,-0.4074473579795859,neutral,0.4832690358161926
+948,3,148,247701853,LevoParadoxPPOHybrid,0.8320849787931718,neutral,0.48261088132858276
+949,3,149,1656318998,LevoParadoxPPOHybrid,-1.844959510594005,overconfident,0.49011749029159546
+950,3,150,1050418889,LevoParadoxPPOHybrid,-1.712401117846471,overconfident,0.4882761538028717
+951,3,151,1647828121,LevoParadoxPPOHybrid,-2.585520438420843,overconfident,0.49011749029159546
+952,3,152,1665251223,LevoParadoxPPOHybrid,0.4598923759613715,neutral,0.48956099152565
+953,3,153,1158119200,LevoParadoxPPOHybrid,-0.3010780110926538,neutral,0.4882761538028717
+954,3,154,1745086003,LevoParadoxPPOHybrid,1.3934767393490588,neutral,0.49011749029159546
+955,3,155,1329952935,LevoParadoxPPOHybrid,0.4028712963253857,neutral,0.48847508430480957
+956,3,156,129216577,LevoParadoxPPOHybrid,1.6226525683891055,neutral,0.48973292112350464
+957,3,157,264447624,LevoParadoxPPOHybrid,-0.2925163838635117,neutral,0.48956099152565
+958,3,158,1239906804,LevoParadoxPPOHybrid,-0.3826083405585227,neutral,0.4878310561180115
+959,3,159,1968251934,LevoParadoxPPOHybrid,-3.0,overconfident,0.4882761538028717
+960,3,160,1710361518,LevoParadoxPPOHybrid,0.24410679553415088,neutral,0.4859134256839752
+961,3,161,1919087800,LevoParadoxPPOHybrid,1.3080289495019592,neutral,0.48261088132858276
+962,3,162,1038210496,LevoParadoxPPOHybrid,-0.795060643378411,neutral,0.4878310561180115
+963,3,163,1786593305,LevoParadoxPPOHybrid,-0.4133444185482581,neutral,0.48956099152565
+964,3,164,2098346951,LevoParadoxPPOHybrid,0.37264748440059975,neutral,0.4876002371311188
+965,3,165,1526904777,LevoParadoxPPOHybrid,0.24330040162795474,neutral,0.4853600561618805
+966,3,166,1540522504,LevoParadoxPPOHybrid,0.3133023273996773,neutral,0.4841948449611664
+967,3,167,2109348201,LevoParadoxPPOHybrid,0.6798652475070099,neutral,0.4832690358161926
+968,3,168,1132622124,LevoParadoxPPOHybrid,-0.6901294612165475,overcautious,0.4896336793899536
+969,3,169,1615465936,LevoParadoxPPOHybrid,-2.3064563431034584,overconfident,0.49011749029159546
+970,3,170,364326948,LevoParadoxPPOHybrid,1.0815486952393436,neutral,0.4876002371311188
+971,3,171,1220814450,LevoParadoxPPOHybrid,0.8723429375012457,neutral,0.4841948449611664
+972,3,172,731873456,LevoParadoxPPOHybrid,0.612363357663838,neutral,0.4859134256839752
+973,3,173,1247536227,LevoParadoxPPOHybrid,-0.8071191221540742,neutral,0.48261088132858276
+974,3,174,1337517349,LevoParadoxPPOHybrid,-0.04748141792384848,neutral,0.48956099152565
+975,3,175,988735470,LevoParadoxPPOHybrid,-0.22941818391398483,neutral,0.49009424448013306
+976,3,176,624782456,LevoParadoxPPOHybrid,0.20896413148081383,neutral,0.49009424448013306
+977,3,177,1614653143,LevoParadoxPPOHybrid,-0.4293029498830948,neutral,0.4856588840484619
+978,3,178,1500038813,LevoParadoxPPOHybrid,1.1161432423615547,neutral,0.4856588840484619
+979,3,179,2130149343,LevoParadoxPPOHybrid,-0.6482581247171009,neutral,0.4832690358161926
+980,3,180,132980447,LevoParadoxPPOHybrid,-1.6670530094964546,neutral,0.4896336793899536
+981,3,181,1952726781,LevoParadoxPPOHybrid,-2.434336344440533,overconfident,0.48763468861579895
+982,3,182,555625828,LevoParadoxPPOHybrid,0.7003550926274642,neutral,0.4876002371311188
+983,3,183,498814370,LevoParadoxPPOHybrid,-0.2862536747479175,neutral,0.48261088132858276
+984,3,184,206366738,LevoParadoxPPOHybrid,0.8775826217617475,neutral,0.48956099152565
+985,3,185,400273478,LevoParadoxPPOHybrid,-0.2835608641021956,neutral,0.4832690358161926
+986,3,186,670771760,LevoParadoxPPOHybrid,0.14429033269177619,neutral,0.4859134256839752
+987,3,187,1820812129,LevoParadoxPPOHybrid,1.1935862197370715,neutral,0.48956099152565
+988,3,188,1243239295,LevoParadoxPPOHybrid,-1.127181247498464,overcautious,0.4853600561618805
+989,3,189,1980464422,LevoParadoxPPOHybrid,0.2808684424586057,neutral,0.4856588840484619
+990,3,190,1156736002,LevoParadoxPPOHybrid,-0.28270551923738596,neutral,0.48956099152565
+991,3,191,1697044130,LevoParadoxPPOHybrid,0.4826422855105287,neutral,0.48912549018859863
+992,3,192,562498219,LevoParadoxPPOHybrid,0.07891803981678115,neutral,0.4859134256839752
+993,3,193,1878178784,LevoParadoxPPOHybrid,0.20228392169117065,neutral,0.48956099152565
+994,3,194,2065152970,LevoParadoxPPOHybrid,1.3065279618298171,neutral,0.48261088132858276
+995,3,195,775550551,LevoParadoxPPOHybrid,0.7688120776761941,neutral,0.4876002371311188
+996,3,196,1056375082,LevoParadoxPPOHybrid,2.643885410414239,neutral,0.48912549018859863
+997,3,197,1600998019,LevoParadoxPPOHybrid,0.04270551606696389,neutral,0.4853600561618805
+998,3,198,1027113059,LevoParadoxPPOHybrid,0.6819952539956415,neutral,0.48763468861579895
+999,3,199,609138227,LevoParadoxPPOHybrid,1.2826738383017549,neutral,0.4876002371311188
+1000,3,200,122699067,LevoParadoxPPOHybrid,1.4645920019362932,neutral,0.4882761538028717
+1001,3,201,365381056,LevoParadoxPPOHybrid,0.1175398932744254,neutral,0.49011749029159546
+1002,3,202,1238636582,LevoParadoxPPOHybrid,1.5278968205399832,neutral,0.4853600561618805
+1003,3,203,1658289347,LevoParadoxPPOHybrid,-2.3608989109395417,overconfident,0.4882761538028717
+1004,3,204,1322727040,LevoParadoxPPOHybrid,-0.5812129563754665,neutral,0.49009424448013306
+1005,3,205,2126230739,LevoParadoxPPOHybrid,0.055286863165256224,neutral,0.4856588840484619
+1006,3,206,289701504,LevoParadoxPPOHybrid,-0.6531967872653202,neutral,0.4832690358161926
+1007,3,207,1261784629,LevoParadoxPPOHybrid,0.1842492194028491,neutral,0.48342037200927734
+1008,3,208,1377412115,LevoParadoxPPOHybrid,0.6245206594688067,neutral,0.48763468861579895
+1009,3,209,1724786786,LevoParadoxPPOHybrid,0.8985310433229601,neutral,0.48956099152565
+1010,3,210,89300232,LevoParadoxPPOHybrid,0.6123175354440541,neutral,0.48261088132858276
+1011,3,211,1017426355,LevoParadoxPPOHybrid,1.4029986467083133,neutral,0.48261088132858276
+1012,3,212,1395142654,LevoParadoxPPOHybrid,1.3212883154759467,neutral,0.48763468861579895
+1013,3,213,939770990,LevoParadoxPPOHybrid,0.3690192392322482,neutral,0.48847508430480957
+1014,3,214,1446797165,LevoParadoxPPOHybrid,2.042922515816966,neutral,0.48912549018859863
+1015,3,215,464152649,LevoParadoxPPOHybrid,0.66230012650082,neutral,0.48956099152565
+1016,3,216,495168830,LevoParadoxPPOHybrid,2.231253447189229,neutral,0.4853600561618805
+1017,3,217,1239321323,LevoParadoxPPOHybrid,0.7971781308027754,neutral,0.4832690358161926
+1018,3,218,1388207032,LevoParadoxPPOHybrid,0.19859386994917153,neutral,0.4841948449611664
+1019,3,219,1731639298,LevoParadoxPPOHybrid,-0.01593363519287893,neutral,0.48261088132858276
+1020,3,220,1605648698,LevoParadoxPPOHybrid,0.5776867006145332,neutral,0.4841948449611664
+1021,3,221,281650086,LevoParadoxPPOHybrid,0.1894277803351234,neutral,0.4832690358161926
+1022,3,222,931350263,LevoParadoxPPOHybrid,0.98787063742711,neutral,0.4841948449611664
+1023,3,223,691328288,LevoParadoxPPOHybrid,0.0743356805063284,neutral,0.48261088132858276
+1024,3,224,633318446,LevoParadoxPPOHybrid,1.8361888649880167,neutral,0.48833152651786804
+1025,3,225,1081427988,LevoParadoxPPOHybrid,0.1338333666167951,neutral,0.49327588081359863
+1026,3,226,115545717,LevoParadoxPPOHybrid,1.360667887399388,neutral,0.48658421635627747
+1027,3,227,309528326,LevoParadoxPPOHybrid,-1.4173429922782725,overcautious,0.49301716685295105
+1028,3,228,396994132,LevoParadoxPPOHybrid,0.22439107870340078,neutral,0.49331241846084595
+1029,3,229,1235689954,LevoParadoxPPOHybrid,0.266905886575473,neutral,0.489418625831604
+1030,3,230,992703584,LevoParadoxPPOHybrid,0.3321246635033697,neutral,0.49285888671875
+1031,3,231,1080333835,LevoParadoxPPOHybrid,1.6931666633730826,neutral,0.4898187220096588
+1032,3,232,610075266,LevoParadoxPPOHybrid,0.1761494721175345,neutral,0.49076247215270996
+1033,3,233,131753921,LevoParadoxPPOHybrid,0.543341071924465,neutral,0.4936416745185852
+1034,3,234,1547145187,LevoParadoxPPOHybrid,-0.09291703783075383,neutral,0.48658421635627747
+1035,3,235,1112526292,LevoParadoxPPOHybrid,0.9173411436063477,neutral,0.4916113317012787
+1036,3,236,1114040609,LevoParadoxPPOHybrid,-0.466186548405527,neutral,0.48658421635627747
+1037,3,237,9016300,LevoParadoxPPOHybrid,0.5729399550735099,neutral,0.4916086792945862
+1038,3,238,2021796480,LevoParadoxPPOHybrid,1.1871455134687214,neutral,0.48658421635627747
+1039,3,239,1032777022,LevoParadoxPPOHybrid,1.5605861822412053,neutral,0.49060913920402527
+1040,3,240,430409080,LevoParadoxPPOHybrid,0.47291951840375646,neutral,0.486750990152359
+1041,3,241,1399360085,LevoParadoxPPOHybrid,-2.6455916936013986,overconfident,0.4898187220096588
+1042,3,242,436964639,LevoParadoxPPOHybrid,2.487891437358731,neutral,0.49301716685295105
+1043,3,243,1154674875,LevoParadoxPPOHybrid,1.0635383620472745,neutral,0.48833152651786804
+1044,3,244,1018060628,LevoParadoxPPOHybrid,0.9310030302878805,neutral,0.4895656704902649
+1045,3,245,302524943,LevoParadoxPPOHybrid,0.050867633534433285,neutral,0.489418625831604
+1046,3,246,993587315,LevoParadoxPPOHybrid,0.2719540899073052,neutral,0.489418625831604
+1047,3,247,821789357,LevoParadoxPPOHybrid,1.6952904194648668,neutral,0.49283483624458313
+1048,3,248,2140712286,LevoParadoxPPOHybrid,0.17938752569393754,neutral,0.4895656704902649
+1049,3,249,791580549,LevoParadoxPPOHybrid,0.5520582714410324,neutral,0.49327588081359863
+1050,3,250,1895531684,LevoParadoxPPOHybrid,-0.2268423785723466,neutral,0.48658421635627747
+1051,3,251,245446075,LevoParadoxPPOHybrid,1.4389144622355732,neutral,0.49060913920402527
+1052,3,252,528694894,LevoParadoxPPOHybrid,0.2077126290733675,neutral,0.489418625831604
+1053,3,253,383543867,LevoParadoxPPOHybrid,-0.5433073101045013,neutral,0.4916113317012787
+1054,3,254,507831984,LevoParadoxPPOHybrid,0.7572496251706334,neutral,0.4916113317012787
+1055,3,255,1866575340,LevoParadoxPPOHybrid,0.6129199969750596,neutral,0.49285888671875
+1056,3,256,1604134655,LevoParadoxPPOHybrid,1.0593717973391175,neutral,0.4866838753223419
+1057,3,257,2099757217,LevoParadoxPPOHybrid,-2.40684095296509,overconfident,0.49060913920402527
+1058,3,258,113075702,LevoParadoxPPOHybrid,1.5841466214856086,neutral,0.49283483624458313
+1059,3,259,1114107496,LevoParadoxPPOHybrid,-0.40426330871151356,neutral,0.49060913920402527
+1060,3,260,540143375,LevoParadoxPPOHybrid,-0.3669807746773094,neutral,0.4866838753223419
+1061,3,261,1516404,LevoParadoxPPOHybrid,2.304766172762145,neutral,0.49301716685295105
+1062,3,262,444535043,LevoParadoxPPOHybrid,1.689358900483771,neutral,0.49060913920402527
+1063,3,263,413354163,LevoParadoxPPOHybrid,0.4654184462253926,neutral,0.4916113317012787
+1064,3,264,554663744,LevoParadoxPPOHybrid,1.1133992594778106,neutral,0.4936416745185852
+1065,3,265,903269569,LevoParadoxPPOHybrid,0.8714377976361631,neutral,0.4916086792945862
+1066,3,266,1932585699,LevoParadoxPPOHybrid,0.23303728348539654,neutral,0.49327588081359863
+1067,3,267,127998833,LevoParadoxPPOHybrid,-0.3177470682658397,neutral,0.49285888671875
+1068,3,268,880556158,LevoParadoxPPOHybrid,1.106183553403016,neutral,0.4916113317012787
+1069,3,269,936001589,LevoParadoxPPOHybrid,0.7549588091802616,neutral,0.4936416745185852
+1070,3,270,1501301443,LevoParadoxPPOHybrid,0.9736562726861935,neutral,0.4936416745185852
+1071,3,271,19383980,LevoParadoxPPOHybrid,0.6944357474098843,neutral,0.49331241846084595
+1072,3,272,1157426772,LevoParadoxPPOHybrid,-1.7601137690719457,overconfident,0.49060913920402527
+1073,3,273,1952228844,LevoParadoxPPOHybrid,-0.7176220302503407,neutral,0.486750990152359
+1074,3,274,1211030371,LevoParadoxPPOHybrid,1.7340914342199532,neutral,0.48833152651786804
+1075,3,275,1321059392,LevoParadoxPPOHybrid,-0.8466103390976051,neutral,0.4936416745185852
+1076,3,276,1798791588,LevoParadoxPPOHybrid,-1.9097750416271517,overconfident,0.49060913920402527
+1077,3,277,1246246285,LevoParadoxPPOHybrid,0.8795901381968463,neutral,0.49285888671875
+1078,3,278,457172572,LevoParadoxPPOHybrid,0.4305942352110612,neutral,0.4936416745185852
+1079,3,279,448736337,LevoParadoxPPOHybrid,0.6904533826305582,neutral,0.4916113317012787
+1080,3,280,1299406706,LevoParadoxPPOHybrid,1.4523638955546416,neutral,0.4895656704902649
+1081,3,281,1264773565,LevoParadoxPPOHybrid,0.6735045597096321,neutral,0.49331241846084595
+1082,3,282,1354099525,LevoParadoxPPOHybrid,-0.9555847332433495,neutral,0.49285888671875
+1083,3,283,372058917,LevoParadoxPPOHybrid,0.7365455977878236,neutral,0.489418625831604
+1084,3,284,1037785478,LevoParadoxPPOHybrid,-0.4828807234404753,neutral,0.48658421635627747
+1085,3,285,1811624747,LevoParadoxPPOHybrid,0.6071438024245759,neutral,0.4858545958995819
+1086,3,286,1038158713,LevoParadoxPPOHybrid,0.6997274493131587,neutral,0.489418625831604
+1087,3,287,2093019788,LevoParadoxPPOHybrid,-1.0100227353420415,neutral,0.489418625831604
+1088,3,288,212225853,LevoParadoxPPOHybrid,-0.38702110349628943,neutral,0.486750990152359
+1089,3,289,780127530,LevoParadoxPPOHybrid,1.3053559696215205,neutral,0.4916113317012787
+1090,3,290,708820677,LevoParadoxPPOHybrid,0.6396186228494765,neutral,0.486750990152359
+1091,3,291,1943826058,LevoParadoxPPOHybrid,0.5280049650751485,neutral,0.4858545958995819
+1092,3,292,1228600845,LevoParadoxPPOHybrid,2.351804957931147,neutral,0.49283483624458313
+1093,3,293,1907054980,LevoParadoxPPOHybrid,0.47626137268114643,neutral,0.49285888671875
+1094,3,294,684222005,LevoParadoxPPOHybrid,2.0141844440006436,neutral,0.4898187220096588
+1095,3,295,1264548661,LevoParadoxPPOHybrid,0.9825214353567251,neutral,0.4898187220096588
+1096,3,296,1936568871,LevoParadoxPPOHybrid,-1.105227888104164,overcautious,0.48833152651786804
+1097,3,297,1497319181,LevoParadoxPPOHybrid,0.06488571313026902,neutral,0.4916086792945862
+1098,3,298,97345709,LevoParadoxPPOHybrid,-0.269915704835884,neutral,0.4916086792945862
+1099,3,299,652059175,LevoParadoxPPOHybrid,1.4430543711983108,neutral,0.49331241846084595
+1100,3,300,130313659,LevoParadoxPPOHybrid,1.4325859998188804,neutral,0.4936416745185852
+1101,3,301,1373428940,LevoParadoxPPOHybrid,0.22583825072159266,neutral,0.4866838753223419
+1102,3,302,1763220031,LevoParadoxPPOHybrid,0.5867242898117275,neutral,0.4858545958995819
+1103,3,303,766053327,LevoParadoxPPOHybrid,2.286235206364041,neutral,0.49283483624458313
+1104,3,304,186108448,LevoParadoxPPOHybrid,1.687379567654013,neutral,0.48833152651786804
+1105,3,305,1525727770,LevoParadoxPPOHybrid,-0.2806885114658522,neutral,0.49283483624458313
+1106,3,306,1723298298,LevoParadoxPPOHybrid,-2.053392775572538,overconfident,0.4898187220096588
+1107,3,307,1809177412,LevoParadoxPPOHybrid,-0.21809959973084328,neutral,0.4916086792945862
+1108,3,308,808471678,LevoParadoxPPOHybrid,-0.21586492152146408,neutral,0.48658421635627747
+1109,3,309,1012658889,LevoParadoxPPOHybrid,0.659992373614612,neutral,0.489418625831604
+1110,3,310,123240018,LevoParadoxPPOHybrid,-0.02788444401156496,neutral,0.49076247215270996
+1111,3,311,595923089,LevoParadoxPPOHybrid,-0.45128377826996513,overcautious,0.49283483624458313
+1112,3,312,64946568,LevoParadoxPPOHybrid,1.0220192129178896,neutral,0.4866838753223419
+1113,3,313,1694054676,LevoParadoxPPOHybrid,3.0,neutral,0.49283483624458313
+1114,3,314,1378532479,LevoParadoxPPOHybrid,1.6602005302173342,neutral,0.48833152651786804
+1115,3,315,294177744,LevoParadoxPPOHybrid,0.9431097985305882,neutral,0.4866838753223419
+1116,3,316,382616457,LevoParadoxPPOHybrid,0.19900701204930193,neutral,0.489418625831604
+1117,3,317,654022692,LevoParadoxPPOHybrid,0.5937927035952054,neutral,0.48658421635627747
+1118,3,318,1938298404,LevoParadoxPPOHybrid,-1.83814468538334,overconfident,0.4898187220096588
+1119,3,319,1251753220,LevoParadoxPPOHybrid,0.25922762062913374,neutral,0.49076247215270996
+1120,3,320,164235737,LevoParadoxPPOHybrid,0.9360725189336654,neutral,0.4916113317012787
+1121,3,321,1176577515,LevoParadoxPPOHybrid,-0.07777068337054072,neutral,0.4866838753223419
+1122,3,322,66131236,LevoParadoxPPOHybrid,0.08199780321756987,neutral,0.4916113317012787
+1123,3,323,816614407,LevoParadoxPPOHybrid,1.8730655609120999,neutral,0.48833152651786804
+1124,3,324,1678449735,LevoParadoxPPOHybrid,0.5252050183718692,neutral,0.486750990152359
+1125,3,325,155847418,LevoParadoxPPOHybrid,-0.02681169897223142,neutral,0.4936416745185852
+1126,3,326,385469728,LevoParadoxPPOHybrid,2.376726011756658,neutral,0.49283483624458313
+1127,3,327,2122723976,LevoParadoxPPOHybrid,1.4471731631475728,neutral,0.4866838753223419
+1128,3,328,1933100203,LevoParadoxPPOHybrid,-2.0497120652466028,overconfident,0.4898187220096588
+1129,3,329,650925416,LevoParadoxPPOHybrid,-0.49579878845179687,neutral,0.489418625831604
+1130,3,330,1094127659,LevoParadoxPPOHybrid,-0.07141335729505123,neutral,0.48658421635627747
+1131,3,331,876865270,LevoParadoxPPOHybrid,-0.5407918798944782,neutral,0.49327588081359863
+1132,3,332,1319422772,LevoParadoxPPOHybrid,1.6276730098197536,neutral,0.49301716685295105
+1133,3,333,174465858,LevoParadoxPPOHybrid,0.2544404882028042,neutral,0.49076247215270996
+1134,3,334,2060489424,LevoParadoxPPOHybrid,0.2477776674203278,neutral,0.4898187220096588
+1135,3,335,1621988536,LevoParadoxPPOHybrid,-0.48591510057403453,neutral,0.49331241846084595
+1136,3,336,965810292,LevoParadoxPPOHybrid,0.049978842421051245,neutral,0.49301716685295105
+1137,3,337,2093565938,LevoParadoxPPOHybrid,2.4772099381580697,neutral,0.49301716685295105
+1138,3,338,1650235702,LevoParadoxPPOHybrid,0.1418919856891526,neutral,0.4858545958995819
+1139,3,339,511412748,LevoParadoxPPOHybrid,0.6346451568587965,neutral,0.489418625831604
+1140,3,340,922611389,LevoParadoxPPOHybrid,-0.8616451980838941,overcautious,0.48833152651786804
+1141,3,341,652729866,LevoParadoxPPOHybrid,1.948976720949957,neutral,0.49331241846084595
+1142,3,342,221600474,LevoParadoxPPOHybrid,0.9973383239464882,neutral,0.4916113317012787
+1143,3,343,31421970,LevoParadoxPPOHybrid,0.02929702365773283,neutral,0.4866838753223419
+1144,3,344,1192414163,LevoParadoxPPOHybrid,0.6691241621227473,neutral,0.4916086792945862
+1145,3,345,649875877,LevoParadoxPPOHybrid,0.7070359587513864,neutral,0.4895656704902649
+1146,3,346,105131269,LevoParadoxPPOHybrid,2.652461124351755,neutral,0.48833152651786804
+1147,3,347,156751511,LevoParadoxPPOHybrid,0.6272225859885717,neutral,0.4895656704902649
+1148,3,348,761801730,LevoParadoxPPOHybrid,-0.5934301134706246,neutral,0.4895656704902649
+1149,3,349,2081080430,LevoParadoxPPOHybrid,0.5738879582462928,neutral,0.4866838753223419
+1150,3,350,2015553861,LevoParadoxPPOHybrid,-1.4177993539631866,neutral,0.4895656704902649
+1151,3,351,1908286303,LevoParadoxPPOHybrid,1.506092772192412,neutral,0.4895656704902649
+1152,3,352,911061556,LevoParadoxPPOHybrid,1.3687399763929848,neutral,0.49285888671875
+1153,3,353,34499089,LevoParadoxPPOHybrid,-0.9282651241178062,overcautious,0.49301716685295105
+1154,3,354,2098425720,LevoParadoxPPOHybrid,-0.9085834687581021,neutral,0.4936416745185852
+1155,3,355,1106840722,LevoParadoxPPOHybrid,-0.24296696671554552,overcautious,0.49301716685295105
+1156,3,356,317986024,LevoParadoxPPOHybrid,0.5275187514191623,neutral,0.4916086792945862
+1157,3,357,129256349,LevoParadoxPPOHybrid,1.1843746050806352,neutral,0.49327588081359863
+1158,3,358,431303789,LevoParadoxPPOHybrid,0.071342761929298,overcautious,0.49301716685295105
+1159,3,359,523632446,LevoParadoxPPOHybrid,0.08805085928707428,neutral,0.4858545958995819
+1160,3,360,1950687447,LevoParadoxPPOHybrid,0.26743054682592193,neutral,0.49076247215270996
+1161,3,361,1411833232,LevoParadoxPPOHybrid,0.8063372079804664,neutral,0.4895656704902649
+1162,3,362,690319881,LevoParadoxPPOHybrid,-1.4350170010233716,overconfident,0.49327588081359863
+1163,3,363,175246150,LevoParadoxPPOHybrid,0.8602184244464084,neutral,0.49060913920402527
+1164,3,364,1182674932,LevoParadoxPPOHybrid,1.7870325658814412,neutral,0.4898187220096588
+1165,3,365,393595655,LevoParadoxPPOHybrid,0.049699194185405235,neutral,0.48658421635627747
+1166,3,366,1029071917,LevoParadoxPPOHybrid,-0.5707083935878005,neutral,0.48658421635627747
+1167,3,367,440607926,LevoParadoxPPOHybrid,0.3759669685649799,neutral,0.48658421635627747
+1168,3,368,990295427,LevoParadoxPPOHybrid,0.7107320242384884,neutral,0.4858545958995819
+1169,3,369,1533915152,LevoParadoxPPOHybrid,0.1294248189887542,neutral,0.486750990152359
+1170,3,370,2028880655,LevoParadoxPPOHybrid,1.0673159176286864,neutral,0.4866838753223419
+1171,3,371,1110082952,LevoParadoxPPOHybrid,-0.14934540849956535,neutral,0.489418625831604
+1172,3,372,1351612215,LevoParadoxPPOHybrid,0.4566579866558717,neutral,0.489418625831604
+1173,3,373,161873384,LevoParadoxPPOHybrid,0.4425368930740302,neutral,0.49331241846084595
+1174,3,374,1943568012,LevoParadoxPPOHybrid,-1.0470027903099404,overcautious,0.48833152651786804
+1175,3,375,27538724,LevoParadoxPPOHybrid,1.1698618251818689,neutral,0.49327588081359863
+1176,3,376,534070892,LevoParadoxPPOHybrid,0.204998638571319,neutral,0.48658421635627747
+1177,3,377,1484958114,LevoParadoxPPOHybrid,1.2965587422443934,neutral,0.49285888671875
+1178,3,378,1217763652,LevoParadoxPPOHybrid,1.4505600122642395,neutral,0.4898187220096588
+1179,3,379,951904837,LevoParadoxPPOHybrid,-0.6140963258839023,neutral,0.4916113317012787
+1180,3,380,1611118613,LevoParadoxPPOHybrid,0.7767451020137636,neutral,0.4895656704902649
+1181,3,381,518917746,LevoParadoxPPOHybrid,-0.3309841660977714,neutral,0.49285888671875
+1182,3,382,64896530,LevoParadoxPPOHybrid,-1.7495881572101664,overconfident,0.49060913920402527
+1183,3,383,703323482,LevoParadoxPPOHybrid,0.39758457782113854,neutral,0.49285888671875
+1184,3,384,878877531,LevoParadoxPPOHybrid,-0.45663118508894723,neutral,0.49076247215270996
+1185,3,385,743424612,LevoParadoxPPOHybrid,0.15881701687226527,neutral,0.4898187220096588
+1186,3,386,1611600344,LevoParadoxPPOHybrid,1.1958528378072517,neutral,0.486750990152359
+1187,3,387,1653110007,LevoParadoxPPOHybrid,-1.294775431953231,overcautious,0.48833152651786804
+1188,3,388,1477247030,LevoParadoxPPOHybrid,0.06359680112012978,neutral,0.49060913920402527
+1189,3,389,460418126,LevoParadoxPPOHybrid,2.5444399454267375,neutral,0.49283483624458313
+1190,3,390,965728184,LevoParadoxPPOHybrid,-0.5056482391152837,neutral,0.4936416745185852
+1191,3,391,800112339,LevoParadoxPPOHybrid,1.3941253259697812,neutral,0.4866838753223419
+1192,3,392,1881978705,LevoParadoxPPOHybrid,0.11355250158904308,neutral,0.4858545958995819
+1193,3,393,765013452,LevoParadoxPPOHybrid,0.1964416250166414,neutral,0.49331241846084595
+1194,3,394,1327556692,LevoParadoxPPOHybrid,0.27807276108114626,neutral,0.49076247215270996
+1195,3,395,149816571,LevoParadoxPPOHybrid,0.536807514032734,neutral,0.49331241846084595
+1196,3,396,338046121,LevoParadoxPPOHybrid,0.3025212168232634,neutral,0.48833152651786804
+1197,3,397,994124776,LevoParadoxPPOHybrid,0.38399826581662966,neutral,0.49076247215270996
+1198,3,398,713057376,LevoParadoxPPOHybrid,1.3402040989179698,neutral,0.4866838753223419
+1199,3,399,1118891224,LevoParadoxPPOHybrid,-0.48269914185478485,neutral,0.489418625831604
diff --git a/Down/down/results/paradox_tabular_results.csv b/Down/down/results/paradox_tabular_results.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5efdeb1d1448e91c4e9f1308d49e86055be464f8
--- /dev/null
+++ b/Down/down/results/paradox_tabular_results.csv
@@ -0,0 +1,2401 @@
+global_episode,phase,episode,env_seed,agent,episode_reward,failure_mode,rho_state
+0,1,0,960941037,HFLevo,1.3,neutral,nan
+0,1,0,960941037,LevoParadoxIsomer,0.0,neutral,0.5
+1,1,1,2135581874,HFLevo,1.3,neutral,nan
+1,1,1,2135581874,LevoParadoxIsomer,0.0,neutral,0.5
+2,1,2,2131554306,HFLevo,1.3,neutral,nan
+2,1,2,2131554306,LevoParadoxIsomer,0.0,neutral,0.5
+3,1,3,820359671,HFLevo,-2.0,overconfident,nan
+3,1,3,820359671,LevoParadoxIsomer,-2.0,overconfident,0.5
+4,1,4,2047814545,HFLevo,1.3,neutral,nan
+4,1,4,2047814545,LevoParadoxIsomer,1.3,neutral,0.5
+5,1,5,1776286830,HFLevo,1.2,neutral,nan
+5,1,5,1776286830,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+6,1,6,1373214917,HFLevo,-2.0,overconfident,nan
+6,1,6,1373214917,LevoParadoxIsomer,-2.0,overconfident,0.5
+7,1,7,1797992013,HFLevo,1.3,neutral,nan
+7,1,7,1797992013,LevoParadoxIsomer,0.0,neutral,0.5
+8,1,8,1645535739,HFLevo,1.2,neutral,nan
+8,1,8,1645535739,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+9,1,9,2095533891,HFLevo,1.3,neutral,nan
+9,1,9,2095533891,LevoParadoxIsomer,1.3,neutral,0.5
+10,1,10,829401385,HFLevo,1.3,neutral,nan
+10,1,10,829401385,LevoParadoxIsomer,1.3,neutral,0.5
+11,1,11,165839486,HFLevo,1.3,neutral,nan
+11,1,11,165839486,LevoParadoxIsomer,1.3,neutral,0.5
+12,1,12,976680886,HFLevo,1.2,neutral,nan
+12,1,12,976680886,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+13,1,13,681732448,HFLevo,0.0,neutral,nan
+13,1,13,681732448,LevoParadoxIsomer,0.0,neutral,0.5
+14,1,14,1046126860,HFLevo,1.3,neutral,nan
+14,1,14,1046126860,LevoParadoxIsomer,0.0,neutral,0.5
+15,1,15,1974730198,HFLevo,0.0,neutral,nan
+15,1,15,1974730198,LevoParadoxIsomer,1.3,neutral,0.5
+16,1,16,2073558604,HFLevo,0.0,neutral,nan
+16,1,16,2073558604,LevoParadoxIsomer,0.0,neutral,0.5
+17,1,17,1451418837,HFLevo,0.0,neutral,nan
+17,1,17,1451418837,LevoParadoxIsomer,1.3,neutral,0.5
+18,1,18,1365011226,HFLevo,1.3,neutral,nan
+18,1,18,1365011226,LevoParadoxIsomer,1.3,neutral,0.5
+19,1,19,613804374,HFLevo,1.3,neutral,nan
+19,1,19,613804374,LevoParadoxIsomer,1.3,neutral,0.5
+20,1,20,32280267,HFLevo,1.3,neutral,nan
+20,1,20,32280267,LevoParadoxIsomer,0.0,neutral,0.5
+21,1,21,836537275,HFLevo,0.0,neutral,nan
+21,1,21,836537275,LevoParadoxIsomer,0.0,neutral,0.5
+22,1,22,975647501,HFLevo,0.0,neutral,nan
+22,1,22,975647501,LevoParadoxIsomer,-0.8,overcautious,0.5
+23,1,23,494392738,HFLevo,1.3,neutral,nan
+23,1,23,494392738,LevoParadoxIsomer,0.0,neutral,0.5
+24,1,24,1706901824,HFLevo,0.0,neutral,nan
+24,1,24,1706901824,LevoParadoxIsomer,0.0,neutral,0.5
+25,1,25,358546340,HFLevo,0.0,neutral,nan
+25,1,25,358546340,LevoParadoxIsomer,1.3,neutral,0.5
+26,1,26,1030268022,HFLevo,-2.0,overconfident,nan
+26,1,26,1030268022,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+27,1,27,329502221,HFLevo,0.0,neutral,nan
+27,1,27,329502221,LevoParadoxIsomer,0.0,neutral,0.5
+28,1,28,746578914,HFLevo,1.3,neutral,nan
+28,1,28,746578914,LevoParadoxIsomer,0.0,neutral,0.5
+29,1,29,2091845998,HFLevo,1.3,neutral,nan
+29,1,29,2091845998,LevoParadoxIsomer,1.3,neutral,0.5
+30,1,30,1436029081,HFLevo,0.0,neutral,nan
+30,1,30,1436029081,LevoParadoxIsomer,1.3,neutral,0.5
+31,1,31,910309404,HFLevo,0.0,neutral,nan
+31,1,31,910309404,LevoParadoxIsomer,1.3,neutral,0.5
+32,1,32,472048561,HFLevo,1.3,neutral,nan
+32,1,32,472048561,LevoParadoxIsomer,0.0,neutral,0.5
+33,1,33,135600480,HFLevo,0.0,neutral,nan
+33,1,33,135600480,LevoParadoxIsomer,0.0,neutral,0.5
+34,1,34,1892894588,HFLevo,0.0,neutral,nan
+34,1,34,1892894588,LevoParadoxIsomer,1.3,neutral,0.5
+35,1,35,1055673936,HFLevo,1.2,neutral,nan
+35,1,35,1055673936,LevoParadoxIsomer,-2.0,overconfident,0.44999998807907104
+36,1,36,1340667110,HFLevo,0.0,neutral,nan
+36,1,36,1340667110,LevoParadoxIsomer,0.0,neutral,0.5
+37,1,37,619212679,HFLevo,-2.0,overconfident,nan
+37,1,37,619212679,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+38,1,38,120545107,HFLevo,1.3,neutral,nan
+38,1,38,120545107,LevoParadoxIsomer,1.3,neutral,0.5
+39,1,39,454442609,HFLevo,2.5,neutral,nan
+39,1,39,454442609,LevoParadoxIsomer,2.5,neutral,0.5
+40,1,40,295287540,HFLevo,0.0,neutral,nan
+40,1,40,295287540,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+41,1,41,445457645,HFLevo,1.3,neutral,nan
+41,1,41,445457645,LevoParadoxIsomer,1.3,neutral,0.5
+42,1,42,307622279,HFLevo,1.3,neutral,nan
+42,1,42,307622279,LevoParadoxIsomer,1.3,neutral,0.5
+43,1,43,1243437117,HFLevo,0.0,neutral,nan
+43,1,43,1243437117,LevoParadoxIsomer,0.0,neutral,0.5
+44,1,44,244133596,HFLevo,0.0,neutral,nan
+44,1,44,244133596,LevoParadoxIsomer,1.3,neutral,0.5
+45,1,45,1268841274,HFLevo,0.0,neutral,nan
+45,1,45,1268841274,LevoParadoxIsomer,0.0,neutral,0.5
+46,1,46,1225761364,HFLevo,1.3,neutral,nan
+46,1,46,1225761364,LevoParadoxIsomer,0.0,neutral,0.5
+47,1,47,1907103971,HFLevo,1.3,neutral,nan
+47,1,47,1907103971,LevoParadoxIsomer,1.3,neutral,0.5
+48,1,48,1034799201,HFLevo,0.0,neutral,nan
+48,1,48,1034799201,LevoParadoxIsomer,0.0,neutral,0.5
+49,1,49,235864475,HFLevo,-2.0,overconfident,nan
+49,1,49,235864475,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+50,1,50,691379092,HFLevo,-2.0,overconfident,nan
+50,1,50,691379092,LevoParadoxIsomer,1.2,neutral,0.5
+51,1,51,1065800727,HFLevo,2.5,neutral,nan
+51,1,51,1065800727,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+52,1,52,655184241,HFLevo,-2.0,overconfident,nan
+52,1,52,655184241,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+53,1,53,623054291,HFLevo,2.5,neutral,nan
+53,1,53,623054291,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+54,1,54,540036626,HFLevo,-0.8,overcautious,nan
+54,1,54,540036626,LevoParadoxIsomer,0.0,neutral,0.5
+55,1,55,1043358048,HFLevo,1.2,neutral,nan
+55,1,55,1043358048,LevoParadoxIsomer,1.2,neutral,0.5
+56,1,56,1932965406,HFLevo,1.3,neutral,nan
+56,1,56,1932965406,LevoParadoxIsomer,0.0,neutral,0.5
+57,1,57,2036930070,HFLevo,1.3,neutral,nan
+57,1,57,2036930070,LevoParadoxIsomer,1.3,neutral,0.5
+58,1,58,1526743940,HFLevo,1.3,neutral,nan
+58,1,58,1526743940,LevoParadoxIsomer,0.0,neutral,0.5
+59,1,59,1989662969,HFLevo,0.0,neutral,nan
+59,1,59,1989662969,LevoParadoxIsomer,-0.8,overcautious,0.5
+60,1,60,2139514329,HFLevo,0.0,neutral,nan
+60,1,60,2139514329,LevoParadoxIsomer,0.0,neutral,0.5
+61,1,61,1632303898,HFLevo,0.0,neutral,nan
+61,1,61,1632303898,LevoParadoxIsomer,1.3,neutral,0.5
+62,1,62,1850997508,HFLevo,1.3,neutral,nan
+62,1,62,1850997508,LevoParadoxIsomer,0.0,neutral,0.5
+63,1,63,1679388031,HFLevo,1.3,neutral,nan
+63,1,63,1679388031,LevoParadoxIsomer,0.0,neutral,0.5
+64,1,64,994656789,HFLevo,0.0,neutral,nan
+64,1,64,994656789,LevoParadoxIsomer,1.3,neutral,0.5
+65,1,65,596802772,HFLevo,0.0,neutral,nan
+65,1,65,596802772,LevoParadoxIsomer,1.3,neutral,0.5
+66,1,66,2022213408,HFLevo,-0.8,overcautious,nan
+66,1,66,2022213408,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+67,1,67,1111583775,HFLevo,0.0,neutral,nan
+67,1,67,1111583775,LevoParadoxIsomer,-2.0,overconfident,0.5
+68,1,68,243487825,HFLevo,1.3,neutral,nan
+68,1,68,243487825,LevoParadoxIsomer,0.0,neutral,0.5
+69,1,69,1727825584,HFLevo,-0.8,overcautious,nan
+69,1,69,1727825584,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+70,1,70,138221208,HFLevo,0.0,neutral,nan
+70,1,70,138221208,LevoParadoxIsomer,0.0,neutral,0.5
+71,1,71,1644995000,HFLevo,1.2,neutral,nan
+71,1,71,1644995000,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+72,1,72,609184021,HFLevo,0.0,neutral,nan
+72,1,72,609184021,LevoParadoxIsomer,0.0,neutral,0.5
+73,1,73,1231929388,HFLevo,-2.0,overconfident,nan
+73,1,73,1231929388,LevoParadoxIsomer,-2.0,overconfident,0.44999998807907104
+74,1,74,1344075265,HFLevo,1.3,neutral,nan
+74,1,74,1344075265,LevoParadoxIsomer,1.3,neutral,0.5
+75,1,75,1828410100,HFLevo,-2.0,overconfident,nan
+75,1,75,1828410100,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+76,1,76,2048576691,HFLevo,-2.0,overconfident,nan
+76,1,76,2048576691,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+77,1,77,1829711174,HFLevo,1.3,neutral,nan
+77,1,77,1829711174,LevoParadoxIsomer,1.3,neutral,0.5
+78,1,78,993502358,HFLevo,1.3,neutral,nan
+78,1,78,993502358,LevoParadoxIsomer,0.0,neutral,0.5
+79,1,79,796970628,HFLevo,-0.8,overcautious,nan
+79,1,79,796970628,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+80,1,80,1037953041,HFLevo,0.0,neutral,nan
+80,1,80,1037953041,LevoParadoxIsomer,1.3,neutral,0.5
+81,1,81,981620733,HFLevo,0.0,neutral,nan
+81,1,81,981620733,LevoParadoxIsomer,0.0,neutral,0.5
+82,1,82,729569317,HFLevo,0.0,neutral,nan
+82,1,82,729569317,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+83,1,83,646784317,HFLevo,-2.0,overconfident,nan
+83,1,83,646784317,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+84,1,84,740999785,HFLevo,1.3,neutral,nan
+84,1,84,740999785,LevoParadoxIsomer,0.0,neutral,0.5
+85,1,85,1740597160,HFLevo,-2.0,overconfident,nan
+85,1,85,1740597160,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+86,1,86,661906414,HFLevo,1.3,neutral,nan
+86,1,86,661906414,LevoParadoxIsomer,0.0,neutral,0.5
+87,1,87,1060388906,HFLevo,1.3,neutral,nan
+87,1,87,1060388906,LevoParadoxIsomer,0.0,neutral,0.5
+88,1,88,359430184,HFLevo,2.5,neutral,nan
+88,1,88,359430184,LevoParadoxIsomer,0.0,neutral,0.5
+89,1,89,1208987810,HFLevo,1.3,neutral,nan
+89,1,89,1208987810,LevoParadoxIsomer,1.3,neutral,0.5
+90,1,90,2009099257,HFLevo,0.0,neutral,nan
+90,1,90,2009099257,LevoParadoxIsomer,1.3,neutral,0.5
+91,1,91,1034716133,HFLevo,0.0,neutral,nan
+91,1,91,1034716133,LevoParadoxIsomer,1.3,neutral,0.5
+92,1,92,868969428,HFLevo,0.0,neutral,nan
+92,1,92,868969428,LevoParadoxIsomer,-2.0,overconfident,0.3999999761581421
+93,1,93,545077016,HFLevo,2.5,neutral,nan
+93,1,93,545077016,LevoParadoxIsomer,-0.8,overcautious,0.5
+94,1,94,618241786,HFLevo,1.3,neutral,nan
+94,1,94,618241786,LevoParadoxIsomer,0.0,neutral,0.5
+95,1,95,2112109137,HFLevo,2.5,neutral,nan
+95,1,95,2112109137,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+96,1,96,300763006,HFLevo,1.3,neutral,nan
+96,1,96,300763006,LevoParadoxIsomer,0.0,neutral,0.5
+97,1,97,1182747845,HFLevo,0.0,neutral,nan
+97,1,97,1182747845,LevoParadoxIsomer,1.3,neutral,0.5
+98,1,98,997933218,HFLevo,0.0,neutral,nan
+98,1,98,997933218,LevoParadoxIsomer,1.3,neutral,0.5
+99,1,99,2082537479,HFLevo,1.3,neutral,nan
+99,1,99,2082537479,LevoParadoxIsomer,0.0,neutral,0.5
+100,1,100,948374647,HFLevo,0.0,neutral,nan
+100,1,100,948374647,LevoParadoxIsomer,1.3,neutral,0.5
+101,1,101,484158897,HFLevo,1.3,neutral,nan
+101,1,101,484158897,LevoParadoxIsomer,0.0,neutral,0.5
+102,1,102,1023803420,HFLevo,-0.8,overcautious,nan
+102,1,102,1023803420,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+103,1,103,1933155352,HFLevo,0.0,neutral,nan
+103,1,103,1933155352,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+104,1,104,531436601,HFLevo,0.0,neutral,nan
+104,1,104,531436601,LevoParadoxIsomer,0.0,neutral,0.5
+105,1,105,693213698,HFLevo,1.3,neutral,nan
+105,1,105,693213698,LevoParadoxIsomer,0.0,neutral,0.5
+106,1,106,1411219987,HFLevo,-0.8,overcautious,nan
+106,1,106,1411219987,LevoParadoxIsomer,0.0,neutral,0.6000000238418579
+107,1,107,707739816,HFLevo,0.0,neutral,nan
+107,1,107,707739816,LevoParadoxIsomer,1.3,neutral,0.5
+108,1,108,7444596,HFLevo,0.0,neutral,nan
+108,1,108,7444596,LevoParadoxIsomer,0.0,neutral,0.5
+109,1,109,1531464733,HFLevo,0.0,neutral,nan
+109,1,109,1531464733,LevoParadoxIsomer,1.3,neutral,0.5
+110,1,110,1407225246,HFLevo,1.3,neutral,nan
+110,1,110,1407225246,LevoParadoxIsomer,0.0,neutral,0.5
+111,1,111,1617971802,HFLevo,2.5,neutral,nan
+111,1,111,1617971802,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+112,1,112,1856904126,HFLevo,0.0,neutral,nan
+112,1,112,1856904126,LevoParadoxIsomer,0.0,neutral,0.5
+113,1,113,2080438781,HFLevo,0.0,neutral,nan
+113,1,113,2080438781,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+114,1,114,92845013,HFLevo,0.0,neutral,nan
+114,1,114,92845013,LevoParadoxIsomer,1.3,neutral,0.5
+115,1,115,2051487433,HFLevo,1.3,neutral,nan
+115,1,115,2051487433,LevoParadoxIsomer,0.0,neutral,0.5
+116,1,116,1625881056,HFLevo,0.0,neutral,nan
+116,1,116,1625881056,LevoParadoxIsomer,0.0,neutral,0.5
+117,1,117,1999467027,HFLevo,0.0,neutral,nan
+117,1,117,1999467027,LevoParadoxIsomer,0.0,neutral,0.5
+118,1,118,759769092,HFLevo,-0.8,overcautious,nan
+118,1,118,759769092,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+119,1,119,1368848130,HFLevo,1.3,neutral,nan
+119,1,119,1368848130,LevoParadoxIsomer,0.0,neutral,0.5
+120,1,120,2079957582,HFLevo,0.0,neutral,nan
+120,1,120,2079957582,LevoParadoxIsomer,0.0,neutral,0.5
+121,1,121,858968924,HFLevo,0.0,neutral,nan
+121,1,121,858968924,LevoParadoxIsomer,1.3,neutral,0.5
+122,1,122,2037278180,HFLevo,1.3,neutral,nan
+122,1,122,2037278180,LevoParadoxIsomer,1.3,neutral,0.5
+123,1,123,301224287,HFLevo,-0.8,overcautious,nan
+123,1,123,301224287,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+124,1,124,595106119,HFLevo,1.3,neutral,nan
+124,1,124,595106119,LevoParadoxIsomer,1.3,neutral,0.5
+125,1,125,830628267,HFLevo,1.3,neutral,nan
+125,1,125,830628267,LevoParadoxIsomer,0.0,neutral,0.5
+126,1,126,2056643707,HFLevo,0.0,neutral,nan
+126,1,126,2056643707,LevoParadoxIsomer,0.0,neutral,0.5
+127,1,127,676826452,HFLevo,0.0,neutral,nan
+127,1,127,676826452,LevoParadoxIsomer,1.3,neutral,0.5
+128,1,128,1391976925,HFLevo,2.5,neutral,nan
+128,1,128,1391976925,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+129,1,129,1312449805,HFLevo,0.0,neutral,nan
+129,1,129,1312449805,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+130,1,130,441735078,HFLevo,0.0,neutral,nan
+130,1,130,441735078,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+131,1,131,1198114699,HFLevo,1.3,neutral,nan
+131,1,131,1198114699,LevoParadoxIsomer,0.0,neutral,0.5
+132,1,132,1177544228,HFLevo,0.0,neutral,nan
+132,1,132,1177544228,LevoParadoxIsomer,0.0,neutral,0.5
+133,1,133,235682355,HFLevo,1.3,neutral,nan
+133,1,133,235682355,LevoParadoxIsomer,1.3,neutral,0.5
+134,1,134,594730155,HFLevo,2.5,neutral,nan
+134,1,134,594730155,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+135,1,135,1031283908,HFLevo,0.0,neutral,nan
+135,1,135,1031283908,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+136,1,136,1468565562,HFLevo,1.3,neutral,nan
+136,1,136,1468565562,LevoParadoxIsomer,0.0,neutral,0.5
+137,1,137,1799515670,HFLevo,-2.0,overconfident,nan
+137,1,137,1799515670,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+138,1,138,1374703813,HFLevo,1.3,neutral,nan
+138,1,138,1374703813,LevoParadoxIsomer,1.3,neutral,0.5
+139,1,139,1412669082,HFLevo,0.0,neutral,nan
+139,1,139,1412669082,LevoParadoxIsomer,0.0,neutral,0.5
+140,1,140,342509991,HFLevo,0.0,neutral,nan
+140,1,140,342509991,LevoParadoxIsomer,0.0,neutral,0.5
+141,1,141,129641700,HFLevo,1.2,neutral,nan
+141,1,141,129641700,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+142,1,142,1979539584,HFLevo,1.2,neutral,nan
+142,1,142,1979539584,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+143,1,143,181563758,HFLevo,1.3,neutral,nan
+143,1,143,181563758,LevoParadoxIsomer,1.3,neutral,0.5
+144,1,144,2121376515,HFLevo,1.3,neutral,nan
+144,1,144,2121376515,LevoParadoxIsomer,1.3,neutral,0.5
+145,1,145,359483640,HFLevo,1.2,neutral,nan
+145,1,145,359483640,LevoParadoxIsomer,-2.0,overconfident,0.34999996423721313
+146,1,146,1009660805,HFLevo,0.0,neutral,nan
+146,1,146,1009660805,LevoParadoxIsomer,0.0,neutral,0.5
+147,1,147,1772095163,HFLevo,2.5,neutral,nan
+147,1,147,1772095163,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+148,1,148,793047113,HFLevo,1.3,neutral,nan
+148,1,148,793047113,LevoParadoxIsomer,0.0,neutral,0.5
+149,1,149,2123812620,HFLevo,1.2,neutral,nan
+149,1,149,2123812620,LevoParadoxIsomer,-2.0,overconfident,0.2999999523162842
+150,1,150,160023209,HFLevo,1.2,neutral,nan
+150,1,150,160023209,LevoParadoxIsomer,-2.0,overconfident,0.24999995529651642
+151,1,151,883833601,HFLevo,1.3,neutral,nan
+151,1,151,883833601,LevoParadoxIsomer,1.3,neutral,0.5
+152,1,152,1345236526,HFLevo,0.0,neutral,nan
+152,1,152,1345236526,LevoParadoxIsomer,0.0,neutral,0.5
+153,1,153,2123563640,HFLevo,0.0,neutral,nan
+153,1,153,2123563640,LevoParadoxIsomer,1.3,neutral,0.5
+154,1,154,1188897582,HFLevo,0.0,neutral,nan
+154,1,154,1188897582,LevoParadoxIsomer,0.0,neutral,0.5
+155,1,155,1835296655,HFLevo,1.3,neutral,nan
+155,1,155,1835296655,LevoParadoxIsomer,0.0,neutral,0.5
+156,1,156,263292300,HFLevo,0.0,neutral,nan
+156,1,156,263292300,LevoParadoxIsomer,1.3,neutral,0.5
+157,1,157,339487389,HFLevo,0.0,neutral,nan
+157,1,157,339487389,LevoParadoxIsomer,0.0,neutral,0.5
+158,1,158,640187192,HFLevo,-0.8,overcautious,nan
+158,1,158,640187192,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+159,1,159,1603617236,HFLevo,0.0,neutral,nan
+159,1,159,1603617236,LevoParadoxIsomer,0.0,neutral,0.5
+160,1,160,437479272,HFLevo,2.5,neutral,nan
+160,1,160,437479272,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+161,1,161,1297938304,HFLevo,0.0,neutral,nan
+161,1,161,1297938304,LevoParadoxIsomer,1.3,neutral,0.5
+162,1,162,1736782144,HFLevo,1.3,neutral,nan
+162,1,162,1736782144,LevoParadoxIsomer,1.3,neutral,0.5
+163,1,163,1188005741,HFLevo,0.0,neutral,nan
+163,1,163,1188005741,LevoParadoxIsomer,1.3,neutral,0.5
+164,1,164,1925962876,HFLevo,1.3,neutral,nan
+164,1,164,1925962876,LevoParadoxIsomer,0.0,neutral,0.5
+165,1,165,1419686978,HFLevo,1.3,neutral,nan
+165,1,165,1419686978,LevoParadoxIsomer,0.0,neutral,0.5
+166,1,166,113085408,HFLevo,0.0,neutral,nan
+166,1,166,113085408,LevoParadoxIsomer,1.3,neutral,0.5
+167,1,167,2107650812,HFLevo,1.3,neutral,nan
+167,1,167,2107650812,LevoParadoxIsomer,0.0,neutral,0.5
+168,1,168,1556544035,HFLevo,1.3,neutral,nan
+168,1,168,1556544035,LevoParadoxIsomer,0.0,neutral,0.5
+169,1,169,409268109,HFLevo,0.0,neutral,nan
+169,1,169,409268109,LevoParadoxIsomer,0.0,neutral,0.5
+170,1,170,1707984479,HFLevo,1.3,neutral,nan
+170,1,170,1707984479,LevoParadoxIsomer,1.3,neutral,0.5
+171,1,171,2028373425,HFLevo,0.0,neutral,nan
+171,1,171,2028373425,LevoParadoxIsomer,1.3,neutral,0.5
+172,1,172,1712063860,HFLevo,1.3,neutral,nan
+172,1,172,1712063860,LevoParadoxIsomer,0.0,neutral,0.5
+173,1,173,729831432,HFLevo,0.0,neutral,nan
+173,1,173,729831432,LevoParadoxIsomer,1.3,neutral,0.5
+174,1,174,1945712103,HFLevo,-0.8,overcautious,nan
+174,1,174,1945712103,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+175,1,175,1662118687,HFLevo,1.3,neutral,nan
+175,1,175,1662118687,LevoParadoxIsomer,0.0,neutral,0.5
+176,1,176,1263277082,HFLevo,1.3,neutral,nan
+176,1,176,1263277082,LevoParadoxIsomer,1.3,neutral,0.5
+177,1,177,600780774,HFLevo,1.3,neutral,nan
+177,1,177,600780774,LevoParadoxIsomer,0.0,neutral,0.5
+178,1,178,389237547,HFLevo,0.0,neutral,nan
+178,1,178,389237547,LevoParadoxIsomer,1.3,neutral,0.5
+179,1,179,531352528,HFLevo,1.3,neutral,nan
+179,1,179,531352528,LevoParadoxIsomer,1.3,neutral,0.5
+180,1,180,308998320,HFLevo,1.2,neutral,nan
+180,1,180,308998320,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+181,1,181,133112608,HFLevo,0.0,neutral,nan
+181,1,181,133112608,LevoParadoxIsomer,0.0,neutral,0.5
+182,1,182,1335500866,HFLevo,0.0,neutral,nan
+182,1,182,1335500866,LevoParadoxIsomer,1.3,neutral,0.5
+183,1,183,1455247303,HFLevo,2.5,neutral,nan
+183,1,183,1455247303,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+184,1,184,818574077,HFLevo,1.2,neutral,nan
+184,1,184,818574077,LevoParadoxIsomer,-2.0,overconfident,0.3999999761581421
+185,1,185,783962675,HFLevo,1.2,neutral,nan
+185,1,185,783962675,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+186,1,186,181722168,HFLevo,-0.8,overcautious,nan
+186,1,186,181722168,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+187,1,187,922465315,HFLevo,1.3,neutral,nan
+187,1,187,922465315,LevoParadoxIsomer,0.0,neutral,0.5
+188,1,188,1058682574,HFLevo,0.0,neutral,nan
+188,1,188,1058682574,LevoParadoxIsomer,0.0,neutral,0.5
+189,1,189,2126397323,HFLevo,1.3,neutral,nan
+189,1,189,2126397323,LevoParadoxIsomer,1.3,neutral,0.5
+190,1,190,23796221,HFLevo,1.2,neutral,nan
+190,1,190,23796221,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+191,1,191,677074079,HFLevo,-0.8,overcautious,nan
+191,1,191,677074079,LevoParadoxIsomer,0.0,neutral,0.6000000238418579
+192,1,192,1977263236,HFLevo,1.2,neutral,nan
+192,1,192,1977263236,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+193,1,193,1768875981,HFLevo,0.0,neutral,nan
+193,1,193,1768875981,LevoParadoxIsomer,0.0,neutral,0.5
+194,1,194,1212545188,HFLevo,2.5,neutral,nan
+194,1,194,1212545188,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+195,1,195,1186674390,HFLevo,1.3,neutral,nan
+195,1,195,1186674390,LevoParadoxIsomer,0.0,neutral,0.5
+196,1,196,1056632766,HFLevo,1.3,neutral,nan
+196,1,196,1056632766,LevoParadoxIsomer,1.3,neutral,0.5
+197,1,197,268535661,HFLevo,0.0,neutral,nan
+197,1,197,268535661,LevoParadoxIsomer,1.3,neutral,0.5
+198,1,198,888167157,HFLevo,1.2,neutral,nan
+198,1,198,888167157,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+199,1,199,530391691,HFLevo,0.0,neutral,nan
+199,1,199,530391691,LevoParadoxIsomer,1.3,neutral,0.5
+200,1,200,50594990,HFLevo,2.5,neutral,nan
+200,1,200,50594990,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+201,1,201,222395105,HFLevo,1.2,neutral,nan
+201,1,201,222395105,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+202,1,202,287284573,HFLevo,1.3,neutral,nan
+202,1,202,287284573,LevoParadoxIsomer,1.3,neutral,0.5
+203,1,203,514973304,HFLevo,0.0,neutral,nan
+203,1,203,514973304,LevoParadoxIsomer,0.0,neutral,0.5
+204,1,204,1909475802,HFLevo,2.5,neutral,nan
+204,1,204,1909475802,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+205,1,205,1879525266,HFLevo,-2.0,overconfident,nan
+205,1,205,1879525266,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+206,1,206,1420380137,HFLevo,-0.8,overcautious,nan
+206,1,206,1420380137,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+207,1,207,1737331410,HFLevo,0.0,neutral,nan
+207,1,207,1737331410,LevoParadoxIsomer,1.3,neutral,0.5
+208,1,208,1064923684,HFLevo,1.3,neutral,nan
+208,1,208,1064923684,LevoParadoxIsomer,1.3,neutral,0.5
+209,1,209,1238273317,HFLevo,0.0,neutral,nan
+209,1,209,1238273317,LevoParadoxIsomer,1.3,neutral,0.5
+210,1,210,144185798,HFLevo,0.0,neutral,nan
+210,1,210,144185798,LevoParadoxIsomer,1.3,neutral,0.5
+211,1,211,575162410,HFLevo,1.3,neutral,nan
+211,1,211,575162410,LevoParadoxIsomer,0.0,neutral,0.5
+212,1,212,707283582,HFLevo,2.5,neutral,nan
+212,1,212,707283582,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+213,1,213,1405835406,HFLevo,1.3,neutral,nan
+213,1,213,1405835406,LevoParadoxIsomer,1.3,neutral,0.5
+214,1,214,789235422,HFLevo,1.3,neutral,nan
+214,1,214,789235422,LevoParadoxIsomer,0.0,neutral,0.5
+215,1,215,1388271326,HFLevo,1.3,neutral,nan
+215,1,215,1388271326,LevoParadoxIsomer,1.3,neutral,0.5
+216,1,216,1865718892,HFLevo,0.0,neutral,nan
+216,1,216,1865718892,LevoParadoxIsomer,1.3,neutral,0.5
+217,1,217,1293915651,HFLevo,1.3,neutral,nan
+217,1,217,1293915651,LevoParadoxIsomer,1.3,neutral,0.5
+218,1,218,1428150647,HFLevo,2.5,neutral,nan
+218,1,218,1428150647,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+219,1,219,19248056,HFLevo,2.5,neutral,nan
+219,1,219,19248056,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+220,1,220,491031830,HFLevo,0.0,neutral,nan
+220,1,220,491031830,LevoParadoxIsomer,0.0,neutral,0.5
+221,1,221,636126198,HFLevo,1.3,neutral,nan
+221,1,221,636126198,LevoParadoxIsomer,0.0,neutral,0.5
+222,1,222,456728828,HFLevo,1.2,neutral,nan
+222,1,222,456728828,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+223,1,223,966697912,HFLevo,1.2,neutral,nan
+223,1,223,966697912,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+224,1,224,1166498720,HFLevo,0.0,neutral,nan
+224,1,224,1166498720,LevoParadoxIsomer,1.3,neutral,0.5
+225,1,225,1571014065,HFLevo,0.0,neutral,nan
+225,1,225,1571014065,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+226,1,226,714126436,HFLevo,1.3,neutral,nan
+226,1,226,714126436,LevoParadoxIsomer,0.0,neutral,0.5
+227,1,227,1206418342,HFLevo,1.3,neutral,nan
+227,1,227,1206418342,LevoParadoxIsomer,1.3,neutral,0.5
+228,1,228,1372090007,HFLevo,1.2,neutral,nan
+228,1,228,1372090007,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+229,1,229,769009050,HFLevo,2.5,neutral,nan
+229,1,229,769009050,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+230,1,230,1353001314,HFLevo,0.0,neutral,nan
+230,1,230,1353001314,LevoParadoxIsomer,0.0,neutral,0.5
+231,1,231,1733327736,HFLevo,0.0,neutral,nan
+231,1,231,1733327736,LevoParadoxIsomer,1.3,neutral,0.5
+232,1,232,638285556,HFLevo,1.3,neutral,nan
+232,1,232,638285556,LevoParadoxIsomer,1.3,neutral,0.5
+233,1,233,988454733,HFLevo,1.3,neutral,nan
+233,1,233,988454733,LevoParadoxIsomer,0.0,neutral,0.5
+234,1,234,1459581848,HFLevo,1.3,neutral,nan
+234,1,234,1459581848,LevoParadoxIsomer,0.0,neutral,0.5
+235,1,235,1106839428,HFLevo,1.2,neutral,nan
+235,1,235,1106839428,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+236,1,236,388494700,HFLevo,0.0,neutral,nan
+236,1,236,388494700,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+237,1,237,1441804184,HFLevo,0.0,neutral,nan
+237,1,237,1441804184,LevoParadoxIsomer,0.0,neutral,0.5
+238,1,238,683008548,HFLevo,0.0,neutral,nan
+238,1,238,683008548,LevoParadoxIsomer,1.3,neutral,0.5
+239,1,239,557447257,HFLevo,1.3,neutral,nan
+239,1,239,557447257,LevoParadoxIsomer,1.3,neutral,0.5
+240,1,240,1553434256,HFLevo,1.2,neutral,nan
+240,1,240,1553434256,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+241,1,241,1196216329,HFLevo,0.0,neutral,nan
+241,1,241,1196216329,LevoParadoxIsomer,1.3,neutral,0.5
+242,1,242,205445195,HFLevo,0.0,neutral,nan
+242,1,242,205445195,LevoParadoxIsomer,1.3,neutral,0.5
+243,1,243,138987130,HFLevo,1.3,neutral,nan
+243,1,243,138987130,LevoParadoxIsomer,0.0,neutral,0.5
+244,1,244,1601279830,HFLevo,0.0,neutral,nan
+244,1,244,1601279830,LevoParadoxIsomer,0.0,neutral,0.5
+245,1,245,523497866,HFLevo,2.5,neutral,nan
+245,1,245,523497866,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+246,1,246,1681903654,HFLevo,1.3,neutral,nan
+246,1,246,1681903654,LevoParadoxIsomer,0.0,neutral,0.5
+247,1,247,1447758672,HFLevo,1.3,neutral,nan
+247,1,247,1447758672,LevoParadoxIsomer,0.0,neutral,0.5
+248,1,248,1263090791,HFLevo,1.2,neutral,nan
+248,1,248,1263090791,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+249,1,249,2069934169,HFLevo,1.3,neutral,nan
+249,1,249,2069934169,LevoParadoxIsomer,1.3,neutral,0.5
+250,1,250,1175589659,HFLevo,0.0,neutral,nan
+250,1,250,1175589659,LevoParadoxIsomer,-2.0,overconfident,0.34999996423721313
+251,1,251,792436927,HFLevo,1.3,neutral,nan
+251,1,251,792436927,LevoParadoxIsomer,1.3,neutral,0.5
+252,1,252,77793463,HFLevo,1.3,neutral,nan
+252,1,252,77793463,LevoParadoxIsomer,0.0,neutral,0.5
+253,1,253,1178447001,HFLevo,0.0,neutral,nan
+253,1,253,1178447001,LevoParadoxIsomer,1.3,neutral,0.5
+254,1,254,1867902247,HFLevo,1.3,neutral,nan
+254,1,254,1867902247,LevoParadoxIsomer,0.0,neutral,0.5
+255,1,255,1132483487,HFLevo,0.0,neutral,nan
+255,1,255,1132483487,LevoParadoxIsomer,0.0,neutral,0.5
+256,1,256,1108550737,HFLevo,0.0,neutral,nan
+256,1,256,1108550737,LevoParadoxIsomer,1.3,neutral,0.5
+257,1,257,761845810,HFLevo,0.0,neutral,nan
+257,1,257,761845810,LevoParadoxIsomer,1.3,neutral,0.5
+258,1,258,2026103214,HFLevo,2.5,neutral,nan
+258,1,258,2026103214,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+259,1,259,1320383576,HFLevo,2.5,neutral,nan
+259,1,259,1320383576,LevoParadoxIsomer,0.0,neutral,0.7000000476837158
+260,1,260,165278918,HFLevo,0.0,neutral,nan
+260,1,260,165278918,LevoParadoxIsomer,-2.0,overconfident,0.2999999523162842
+261,1,261,1264440670,HFLevo,2.5,neutral,nan
+261,1,261,1264440670,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+262,1,262,859892894,HFLevo,1.3,neutral,nan
+262,1,262,859892894,LevoParadoxIsomer,0.0,neutral,0.5
+263,1,263,411458685,HFLevo,0.0,neutral,nan
+263,1,263,411458685,LevoParadoxIsomer,1.3,neutral,0.5
+264,1,264,1931263994,HFLevo,0.0,neutral,nan
+264,1,264,1931263994,LevoParadoxIsomer,0.0,neutral,0.5
+265,1,265,213511530,HFLevo,2.5,neutral,nan
+265,1,265,213511530,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+266,1,266,1137608613,HFLevo,0.0,neutral,nan
+266,1,266,1137608613,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+267,1,267,843567272,HFLevo,0.0,neutral,nan
+267,1,267,843567272,LevoParadoxIsomer,0.0,neutral,0.5
+268,1,268,11175988,HFLevo,1.3,neutral,nan
+268,1,268,11175988,LevoParadoxIsomer,1.3,neutral,0.5
+269,1,269,687107894,HFLevo,0.0,neutral,nan
+269,1,269,687107894,LevoParadoxIsomer,0.0,neutral,0.5
+270,1,270,291918902,HFLevo,2.5,neutral,nan
+270,1,270,291918902,LevoParadoxIsomer,-0.8,overcautious,0.7000000476837158
+271,1,271,1087591275,HFLevo,2.5,neutral,nan
+271,1,271,1087591275,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+272,1,272,1813734633,HFLevo,2.5,neutral,nan
+272,1,272,1813734633,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+273,1,273,461816730,HFLevo,0.0,neutral,nan
+273,1,273,461816730,LevoParadoxIsomer,1.3,neutral,0.5
+274,1,274,441050625,HFLevo,1.3,neutral,nan
+274,1,274,441050625,LevoParadoxIsomer,1.3,neutral,0.5
+275,1,275,2141182885,HFLevo,1.3,neutral,nan
+275,1,275,2141182885,LevoParadoxIsomer,0.0,neutral,0.5
+276,1,276,749647573,HFLevo,0.0,neutral,nan
+276,1,276,749647573,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+277,1,277,702601389,HFLevo,0.0,neutral,nan
+277,1,277,702601389,LevoParadoxIsomer,0.0,neutral,0.5
+278,1,278,500813039,HFLevo,0.0,neutral,nan
+278,1,278,500813039,LevoParadoxIsomer,1.3,neutral,0.5
+279,1,279,1327850191,HFLevo,1.2,neutral,nan
+279,1,279,1327850191,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+280,1,280,1479353871,HFLevo,-0.8,overcautious,nan
+280,1,280,1479353871,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+281,1,281,875883029,HFLevo,2.5,neutral,nan
+281,1,281,875883029,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+282,1,282,956514865,HFLevo,-2.0,overconfident,nan
+282,1,282,956514865,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+283,1,283,140168808,HFLevo,2.5,neutral,nan
+283,1,283,140168808,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+284,1,284,2023927855,HFLevo,0.0,neutral,nan
+284,1,284,2023927855,LevoParadoxIsomer,1.3,neutral,0.5
+285,1,285,1850097089,HFLevo,0.0,neutral,nan
+285,1,285,1850097089,LevoParadoxIsomer,1.3,neutral,0.5
+286,1,286,366267895,HFLevo,0.0,neutral,nan
+286,1,286,366267895,LevoParadoxIsomer,1.3,neutral,0.5
+287,1,287,833125277,HFLevo,0.0,neutral,nan
+287,1,287,833125277,LevoParadoxIsomer,1.3,neutral,0.5
+288,1,288,1062058470,HFLevo,0.0,neutral,nan
+288,1,288,1062058470,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+289,1,289,755011055,HFLevo,1.3,neutral,nan
+289,1,289,755011055,LevoParadoxIsomer,1.3,neutral,0.5
+290,1,290,1193341725,HFLevo,1.3,neutral,nan
+290,1,290,1193341725,LevoParadoxIsomer,0.0,neutral,0.5
+291,1,291,47566427,HFLevo,0.0,neutral,nan
+291,1,291,47566427,LevoParadoxIsomer,1.3,neutral,0.5
+292,1,292,1480907230,HFLevo,0.0,neutral,nan
+292,1,292,1480907230,LevoParadoxIsomer,1.3,neutral,0.5
+293,1,293,1193747826,HFLevo,1.3,neutral,nan
+293,1,293,1193747826,LevoParadoxIsomer,1.3,neutral,0.5
+294,1,294,188056822,HFLevo,0.0,neutral,nan
+294,1,294,188056822,LevoParadoxIsomer,0.0,neutral,0.5
+295,1,295,2058188731,HFLevo,1.3,neutral,nan
+295,1,295,2058188731,LevoParadoxIsomer,0.0,neutral,0.5
+296,1,296,131903334,HFLevo,-0.8,overcautious,nan
+296,1,296,131903334,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+297,1,297,2023999375,HFLevo,0.0,neutral,nan
+297,1,297,2023999375,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+298,1,298,14284283,HFLevo,0.0,neutral,nan
+298,1,298,14284283,LevoParadoxIsomer,1.3,neutral,0.5
+299,1,299,430728515,HFLevo,0.0,neutral,nan
+299,1,299,430728515,LevoParadoxIsomer,1.3,neutral,0.5
+300,1,300,1773637227,HFLevo,1.3,neutral,nan
+300,1,300,1773637227,LevoParadoxIsomer,1.3,neutral,0.5
+301,1,301,1447643177,HFLevo,0.0,neutral,nan
+301,1,301,1447643177,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+302,1,302,980890604,HFLevo,2.5,neutral,nan
+302,1,302,980890604,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+303,1,303,1738676116,HFLevo,0.0,neutral,nan
+303,1,303,1738676116,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+304,1,304,202567723,HFLevo,0.0,neutral,nan
+304,1,304,202567723,LevoParadoxIsomer,1.3,neutral,0.5
+305,1,305,1153805088,HFLevo,0.0,neutral,nan
+305,1,305,1153805088,LevoParadoxIsomer,-2.0,overconfident,0.24999995529651642
+306,1,306,972971566,HFLevo,-2.0,overconfident,nan
+306,1,306,972971566,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+307,1,307,1472596543,HFLevo,2.5,neutral,nan
+307,1,307,1472596543,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+308,1,308,1472317967,HFLevo,1.3,neutral,nan
+308,1,308,1472317967,LevoParadoxIsomer,1.3,neutral,0.5
+309,1,309,215008918,HFLevo,0.0,neutral,nan
+309,1,309,215008918,LevoParadoxIsomer,0.0,neutral,0.5
+310,1,310,1105771947,HFLevo,1.3,neutral,nan
+310,1,310,1105771947,LevoParadoxIsomer,1.3,neutral,0.5
+311,1,311,652569339,HFLevo,1.3,neutral,nan
+311,1,311,652569339,LevoParadoxIsomer,1.3,neutral,0.5
+312,1,312,1726057777,HFLevo,2.5,neutral,nan
+312,1,312,1726057777,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+313,1,313,1485944499,HFLevo,0.0,neutral,nan
+313,1,313,1485944499,LevoParadoxIsomer,1.3,neutral,0.5
+314,1,314,294205674,HFLevo,1.3,neutral,nan
+314,1,314,294205674,LevoParadoxIsomer,1.3,neutral,0.5
+315,1,315,1016871026,HFLevo,1.2,neutral,nan
+315,1,315,1016871026,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+316,1,316,1168910589,HFLevo,1.3,neutral,nan
+316,1,316,1168910589,LevoParadoxIsomer,0.0,neutral,0.5
+317,1,317,1517292813,HFLevo,1.3,neutral,nan
+317,1,317,1517292813,LevoParadoxIsomer,0.0,neutral,0.5
+318,1,318,2030522066,HFLevo,2.5,neutral,nan
+318,1,318,2030522066,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+319,1,319,959589186,HFLevo,0.0,neutral,nan
+319,1,319,959589186,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+320,1,320,590193953,HFLevo,1.3,neutral,nan
+320,1,320,590193953,LevoParadoxIsomer,1.3,neutral,0.5
+321,1,321,675005705,HFLevo,1.3,neutral,nan
+321,1,321,675005705,LevoParadoxIsomer,1.3,neutral,0.5
+322,1,322,925232956,HFLevo,0.0,neutral,nan
+322,1,322,925232956,LevoParadoxIsomer,0.0,neutral,0.5
+323,1,323,1408472699,HFLevo,2.5,neutral,nan
+323,1,323,1408472699,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+324,1,324,859189252,HFLevo,1.3,neutral,nan
+324,1,324,859189252,LevoParadoxIsomer,0.0,neutral,0.5
+325,1,325,399323533,HFLevo,0.0,neutral,nan
+325,1,325,399323533,LevoParadoxIsomer,0.0,neutral,0.5
+326,1,326,980315658,HFLevo,-2.0,overconfident,nan
+326,1,326,980315658,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+327,1,327,123987181,HFLevo,1.2,neutral,nan
+327,1,327,123987181,LevoParadoxIsomer,-2.0,overconfident,0.44999998807907104
+328,1,328,409996997,HFLevo,1.3,neutral,nan
+328,1,328,409996997,LevoParadoxIsomer,1.3,neutral,0.5
+329,1,329,708892450,HFLevo,1.2,neutral,nan
+329,1,329,708892450,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+330,1,330,1373932302,HFLevo,0.0,neutral,nan
+330,1,330,1373932302,LevoParadoxIsomer,1.3,neutral,0.5
+331,1,331,2077742390,HFLevo,1.3,neutral,nan
+331,1,331,2077742390,LevoParadoxIsomer,1.3,neutral,0.5
+332,1,332,761108960,HFLevo,1.3,neutral,nan
+332,1,332,761108960,LevoParadoxIsomer,0.0,neutral,0.5
+333,1,333,1211512608,HFLevo,1.3,neutral,nan
+333,1,333,1211512608,LevoParadoxIsomer,0.0,neutral,0.5
+334,1,334,1884662523,HFLevo,0.0,neutral,nan
+334,1,334,1884662523,LevoParadoxIsomer,0.0,neutral,0.5
+335,1,335,2002191522,HFLevo,1.3,neutral,nan
+335,1,335,2002191522,LevoParadoxIsomer,1.3,neutral,0.5
+336,1,336,2028646946,HFLevo,0.0,neutral,nan
+336,1,336,2028646946,LevoParadoxIsomer,1.3,neutral,0.5
+337,1,337,589112024,HFLevo,1.3,neutral,nan
+337,1,337,589112024,LevoParadoxIsomer,1.3,neutral,0.5
+338,1,338,610703030,HFLevo,1.3,neutral,nan
+338,1,338,610703030,LevoParadoxIsomer,1.3,neutral,0.5
+339,1,339,972829234,HFLevo,0.0,neutral,nan
+339,1,339,972829234,LevoParadoxIsomer,1.3,neutral,0.5
+340,1,340,465154269,HFLevo,2.5,neutral,nan
+340,1,340,465154269,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+341,1,341,470901255,HFLevo,1.3,neutral,nan
+341,1,341,470901255,LevoParadoxIsomer,1.3,neutral,0.5
+342,1,342,1990213325,HFLevo,1.3,neutral,nan
+342,1,342,1990213325,LevoParadoxIsomer,0.0,neutral,0.5
+343,1,343,1646775850,HFLevo,1.3,neutral,nan
+343,1,343,1646775850,LevoParadoxIsomer,0.0,neutral,0.5
+344,1,344,1057311607,HFLevo,0.0,neutral,nan
+344,1,344,1057311607,LevoParadoxIsomer,1.3,neutral,0.5
+345,1,345,590319545,HFLevo,1.3,neutral,nan
+345,1,345,590319545,LevoParadoxIsomer,0.0,neutral,0.5
+346,1,346,516318123,HFLevo,1.3,neutral,nan
+346,1,346,516318123,LevoParadoxIsomer,0.0,neutral,0.5
+347,1,347,70890343,HFLevo,1.3,neutral,nan
+347,1,347,70890343,LevoParadoxIsomer,1.3,neutral,0.5
+348,1,348,804413128,HFLevo,2.5,neutral,nan
+348,1,348,804413128,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+349,1,349,1504695760,HFLevo,0.0,neutral,nan
+349,1,349,1504695760,LevoParadoxIsomer,1.3,neutral,0.5
+350,1,350,940669613,HFLevo,0.0,neutral,nan
+350,1,350,940669613,LevoParadoxIsomer,0.0,neutral,0.5
+351,1,351,821018278,HFLevo,1.3,neutral,nan
+351,1,351,821018278,LevoParadoxIsomer,1.3,neutral,0.5
+352,1,352,2080007758,HFLevo,2.5,neutral,nan
+352,1,352,2080007758,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+353,1,353,461373511,HFLevo,1.3,neutral,nan
+353,1,353,461373511,LevoParadoxIsomer,0.0,neutral,0.5
+354,1,354,1987269884,HFLevo,1.3,neutral,nan
+354,1,354,1987269884,LevoParadoxIsomer,0.0,neutral,0.5
+355,1,355,885162807,HFLevo,1.3,neutral,nan
+355,1,355,885162807,LevoParadoxIsomer,0.0,neutral,0.5
+356,1,356,779768070,HFLevo,1.3,neutral,nan
+356,1,356,779768070,LevoParadoxIsomer,1.3,neutral,0.5
+357,1,357,966063187,HFLevo,1.2,neutral,nan
+357,1,357,966063187,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+358,1,358,1359588046,HFLevo,1.3,neutral,nan
+358,1,358,1359588046,LevoParadoxIsomer,1.3,neutral,0.5
+359,1,359,393633121,HFLevo,1.3,neutral,nan
+359,1,359,393633121,LevoParadoxIsomer,0.0,neutral,0.5
+360,1,360,991070115,HFLevo,1.3,neutral,nan
+360,1,360,991070115,LevoParadoxIsomer,1.3,neutral,0.5
+361,1,361,1695833246,HFLevo,1.3,neutral,nan
+361,1,361,1695833246,LevoParadoxIsomer,1.3,neutral,0.5
+362,1,362,259218709,HFLevo,1.2,neutral,nan
+362,1,362,259218709,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+363,1,363,1252523270,HFLevo,1.2,neutral,nan
+363,1,363,1252523270,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+364,1,364,618943155,HFLevo,1.3,neutral,nan
+364,1,364,618943155,LevoParadoxIsomer,1.3,neutral,0.5
+365,1,365,1149281050,HFLevo,1.3,neutral,nan
+365,1,365,1149281050,LevoParadoxIsomer,1.3,neutral,0.5
+366,1,366,605383710,HFLevo,1.3,neutral,nan
+366,1,366,605383710,LevoParadoxIsomer,1.3,neutral,0.5
+367,1,367,1156676417,HFLevo,1.2,neutral,nan
+367,1,367,1156676417,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+368,1,368,988215448,HFLevo,1.3,neutral,nan
+368,1,368,988215448,LevoParadoxIsomer,1.3,neutral,0.5
+369,1,369,1630817173,HFLevo,2.5,neutral,nan
+369,1,369,1630817173,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+370,1,370,1326405127,HFLevo,1.3,neutral,nan
+370,1,370,1326405127,LevoParadoxIsomer,1.3,neutral,0.5
+371,1,371,279363521,HFLevo,1.3,neutral,nan
+371,1,371,279363521,LevoParadoxIsomer,0.0,neutral,0.5
+372,1,372,673386525,HFLevo,1.3,neutral,nan
+372,1,372,673386525,LevoParadoxIsomer,1.3,neutral,0.5
+373,1,373,1485190259,HFLevo,0.0,neutral,nan
+373,1,373,1485190259,LevoParadoxIsomer,0.0,neutral,0.5
+374,1,374,757249346,HFLevo,1.3,neutral,nan
+374,1,374,757249346,LevoParadoxIsomer,1.3,neutral,0.5
+375,1,375,2139173341,HFLevo,2.5,neutral,nan
+375,1,375,2139173341,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+376,1,376,1407830714,HFLevo,1.3,neutral,nan
+376,1,376,1407830714,LevoParadoxIsomer,1.3,neutral,0.5
+377,1,377,1328293493,HFLevo,1.2,neutral,nan
+377,1,377,1328293493,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+378,1,378,1561225140,HFLevo,1.3,neutral,nan
+378,1,378,1561225140,LevoParadoxIsomer,1.3,neutral,0.5
+379,1,379,2054053838,HFLevo,2.5,neutral,nan
+379,1,379,2054053838,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+380,1,380,1538665569,HFLevo,1.2,neutral,nan
+380,1,380,1538665569,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+381,1,381,578245576,HFLevo,1.3,neutral,nan
+381,1,381,578245576,LevoParadoxIsomer,0.0,neutral,0.5
+382,1,382,1001750142,HFLevo,1.3,neutral,nan
+382,1,382,1001750142,LevoParadoxIsomer,1.3,neutral,0.5
+383,1,383,247349919,HFLevo,1.3,neutral,nan
+383,1,383,247349919,LevoParadoxIsomer,0.0,neutral,0.5
+384,1,384,1913641746,HFLevo,1.3,neutral,nan
+384,1,384,1913641746,LevoParadoxIsomer,0.0,neutral,0.5
+385,1,385,191896624,HFLevo,2.5,neutral,nan
+385,1,385,191896624,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+386,1,386,358450787,HFLevo,0.0,neutral,nan
+386,1,386,358450787,LevoParadoxIsomer,1.3,neutral,0.5
+387,1,387,1304006934,HFLevo,0.0,neutral,nan
+387,1,387,1304006934,LevoParadoxIsomer,1.3,neutral,0.5
+388,1,388,854476003,HFLevo,0.0,neutral,nan
+388,1,388,854476003,LevoParadoxIsomer,0.0,neutral,0.5
+389,1,389,718810870,HFLevo,1.3,neutral,nan
+389,1,389,718810870,LevoParadoxIsomer,1.3,neutral,0.5
+390,1,390,2087848673,HFLevo,1.3,neutral,nan
+390,1,390,2087848673,LevoParadoxIsomer,1.3,neutral,0.5
+391,1,391,565983639,HFLevo,0.0,neutral,nan
+391,1,391,565983639,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+392,1,392,406083697,HFLevo,1.3,neutral,nan
+392,1,392,406083697,LevoParadoxIsomer,0.0,neutral,0.5
+393,1,393,1812367355,HFLevo,1.3,neutral,nan
+393,1,393,1812367355,LevoParadoxIsomer,0.0,neutral,0.5
+394,1,394,1054994518,HFLevo,0.0,neutral,nan
+394,1,394,1054994518,LevoParadoxIsomer,1.3,neutral,0.5
+395,1,395,235136936,HFLevo,1.3,neutral,nan
+395,1,395,235136936,LevoParadoxIsomer,0.0,neutral,0.5
+396,1,396,111732250,HFLevo,0.0,neutral,nan
+396,1,396,111732250,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+397,1,397,289408596,HFLevo,0.0,neutral,nan
+397,1,397,289408596,LevoParadoxIsomer,1.3,neutral,0.5
+398,1,398,1197540953,HFLevo,1.3,neutral,nan
+398,1,398,1197540953,LevoParadoxIsomer,0.0,neutral,0.5
+399,1,399,34196977,HFLevo,0.0,neutral,nan
+399,1,399,34196977,LevoParadoxIsomer,1.3,neutral,0.5
+400,2,0,2034269964,HFLevo,0.0,neutral,nan
+400,2,0,2034269964,LevoParadoxIsomer,0.8,neutral,0.5
+401,2,1,912146831,HFLevo,2.0,neutral,nan
+401,2,1,912146831,LevoParadoxIsomer,2.0,neutral,0.5
+402,2,2,144856919,HFLevo,1.2,neutral,nan
+402,2,2,144856919,LevoParadoxIsomer,-3.0,overconfident,0.5
+403,2,3,685506823,HFLevo,-3.0,overconfident,nan
+403,2,3,685506823,LevoParadoxIsomer,1.2,neutral,0.5
+404,2,4,1939181862,HFLevo,0.0,neutral,nan
+404,2,4,1939181862,LevoParadoxIsomer,0.0,neutral,0.5
+405,2,5,1502803201,HFLevo,-0.8,overcautious,nan
+405,2,5,1502803201,LevoParadoxIsomer,-0.8,overcautious,0.5
+406,2,6,1504803878,HFLevo,-3.0,overconfident,nan
+406,2,6,1504803878,LevoParadoxIsomer,-3.0,overconfident,0.5
+407,2,7,67883367,HFLevo,-0.8,overcautious,nan
+407,2,7,67883367,LevoParadoxIsomer,-0.8,overcautious,0.5
+408,2,8,235174993,HFLevo,0.0,neutral,nan
+408,2,8,235174993,LevoParadoxIsomer,0.0,neutral,0.5
+409,2,9,1767017071,HFLevo,-0.8,overcautious,nan
+409,2,9,1767017071,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+410,2,10,1195637117,HFLevo,1.2,neutral,nan
+410,2,10,1195637117,LevoParadoxIsomer,-3.0,overconfident,0.5
+411,2,11,2140388521,HFLevo,0.0,neutral,nan
+411,2,11,2140388521,LevoParadoxIsomer,0.8,neutral,0.5
+412,2,12,285128217,HFLevo,-3.0,overconfident,nan
+412,2,12,285128217,LevoParadoxIsomer,-3.0,overconfident,0.44999998807907104
+413,2,13,1297214282,HFLevo,0.8,neutral,nan
+413,2,13,1297214282,LevoParadoxIsomer,0.0,neutral,0.5
+414,2,14,2128926662,HFLevo,0.8,neutral,nan
+414,2,14,2128926662,LevoParadoxIsomer,0.8,neutral,0.5
+415,2,15,1227615478,HFLevo,0.8,neutral,nan
+415,2,15,1227615478,LevoParadoxIsomer,0.0,neutral,0.5
+416,2,16,562820587,HFLevo,0.0,neutral,nan
+416,2,16,562820587,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+417,2,17,1938965903,HFLevo,0.0,neutral,nan
+417,2,17,1938965903,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+418,2,18,1938899583,HFLevo,0.0,neutral,nan
+418,2,18,1938899583,LevoParadoxIsomer,0.0,neutral,0.5
+419,2,19,146416322,HFLevo,2.0,neutral,nan
+419,2,19,146416322,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+420,2,20,2034761172,HFLevo,0.8,neutral,nan
+420,2,20,2034761172,LevoParadoxIsomer,0.0,neutral,0.5
+421,2,21,1531184118,HFLevo,0.0,neutral,nan
+421,2,21,1531184118,LevoParadoxIsomer,0.0,neutral,0.5
+422,2,22,1624823478,HFLevo,1.2,neutral,nan
+422,2,22,1624823478,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+423,2,23,1973982599,HFLevo,-0.8,overcautious,nan
+423,2,23,1973982599,LevoParadoxIsomer,2.0,neutral,0.550000011920929
+424,2,24,1433121745,HFLevo,0.8,neutral,nan
+424,2,24,1433121745,LevoParadoxIsomer,0.8,neutral,0.5
+425,2,25,269942302,HFLevo,0.0,neutral,nan
+425,2,25,269942302,LevoParadoxIsomer,2.0,neutral,0.550000011920929
+426,2,26,662577618,HFLevo,1.2,neutral,nan
+426,2,26,662577618,LevoParadoxIsomer,-3.0,overconfident,0.44999998807907104
+427,2,27,1680792863,HFLevo,0.0,neutral,nan
+427,2,27,1680792863,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+428,2,28,608196857,HFLevo,0.0,neutral,nan
+428,2,28,608196857,LevoParadoxIsomer,0.8,neutral,0.5
+429,2,29,750797946,HFLevo,0.8,neutral,nan
+429,2,29,750797946,LevoParadoxIsomer,0.8,neutral,0.5
+430,2,30,1703067462,HFLevo,0.8,neutral,nan
+430,2,30,1703067462,LevoParadoxIsomer,0.0,neutral,0.5
+431,2,31,354277540,HFLevo,0.0,neutral,nan
+431,2,31,354277540,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+432,2,32,516686757,HFLevo,0.0,neutral,nan
+432,2,32,516686757,LevoParadoxIsomer,0.0,neutral,0.5
+433,2,33,145581260,HFLevo,0.8,neutral,nan
+433,2,33,145581260,LevoParadoxIsomer,0.8,neutral,0.5
+434,2,34,1801241574,HFLevo,2.0,neutral,nan
+434,2,34,1801241574,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+435,2,35,2100309440,HFLevo,2.0,neutral,nan
+435,2,35,2100309440,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+436,2,36,1637824222,HFLevo,0.8,neutral,nan
+436,2,36,1637824222,LevoParadoxIsomer,0.8,neutral,0.5
+437,2,37,1781578254,HFLevo,0.0,neutral,nan
+437,2,37,1781578254,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+438,2,38,774535340,HFLevo,0.8,neutral,nan
+438,2,38,774535340,LevoParadoxIsomer,0.8,neutral,0.5
+439,2,39,1592536280,HFLevo,0.8,neutral,nan
+439,2,39,1592536280,LevoParadoxIsomer,0.8,neutral,0.5
+440,2,40,803715272,HFLevo,0.8,neutral,nan
+440,2,40,803715272,LevoParadoxIsomer,0.0,neutral,0.5
+441,2,41,1295445709,HFLevo,-0.8,overcautious,nan
+441,2,41,1295445709,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+442,2,42,580455628,HFLevo,0.0,neutral,nan
+442,2,42,580455628,LevoParadoxIsomer,0.8,neutral,0.5
+443,2,43,608571353,HFLevo,0.0,neutral,nan
+443,2,43,608571353,LevoParadoxIsomer,0.0,neutral,0.5
+444,2,44,220247617,HFLevo,0.0,neutral,nan
+444,2,44,220247617,LevoParadoxIsomer,0.8,neutral,0.5
+445,2,45,1007502304,HFLevo,0.8,neutral,nan
+445,2,45,1007502304,LevoParadoxIsomer,0.8,neutral,0.5
+446,2,46,1485027697,HFLevo,0.0,neutral,nan
+446,2,46,1485027697,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+447,2,47,308424123,HFLevo,0.8,neutral,nan
+447,2,47,308424123,LevoParadoxIsomer,0.8,neutral,0.5
+448,2,48,1831539103,HFLevo,0.0,neutral,nan
+448,2,48,1831539103,LevoParadoxIsomer,0.0,neutral,0.5
+449,2,49,96205481,HFLevo,0.8,neutral,nan
+449,2,49,96205481,LevoParadoxIsomer,0.0,neutral,0.5
+450,2,50,572983894,HFLevo,0.0,neutral,nan
+450,2,50,572983894,LevoParadoxIsomer,0.8,neutral,0.5
+451,2,51,1559559556,HFLevo,0.8,neutral,nan
+451,2,51,1559559556,LevoParadoxIsomer,0.0,neutral,0.5
+452,2,52,289588363,HFLevo,0.8,neutral,nan
+452,2,52,289588363,LevoParadoxIsomer,0.8,neutral,0.5
+453,2,53,1021080331,HFLevo,0.8,neutral,nan
+453,2,53,1021080331,LevoParadoxIsomer,0.0,neutral,0.5
+454,2,54,43845046,HFLevo,0.8,neutral,nan
+454,2,54,43845046,LevoParadoxIsomer,0.8,neutral,0.5
+455,2,55,1969391451,HFLevo,0.0,neutral,nan
+455,2,55,1969391451,LevoParadoxIsomer,0.0,neutral,0.5
+456,2,56,112141255,HFLevo,0.8,neutral,nan
+456,2,56,112141255,LevoParadoxIsomer,0.8,neutral,0.5
+457,2,57,407044235,HFLevo,0.0,neutral,nan
+457,2,57,407044235,LevoParadoxIsomer,0.0,neutral,0.5
+458,2,58,1413331621,HFLevo,0.8,neutral,nan
+458,2,58,1413331621,LevoParadoxIsomer,0.8,neutral,0.5
+459,2,59,1124438664,HFLevo,2.0,neutral,nan
+459,2,59,1124438664,LevoParadoxIsomer,-0.8,overcautious,0.5
+460,2,60,1823383091,HFLevo,0.0,neutral,nan
+460,2,60,1823383091,LevoParadoxIsomer,0.8,neutral,0.5
+461,2,61,1452420947,HFLevo,1.2,neutral,nan
+461,2,61,1452420947,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+462,2,62,2031250630,HFLevo,1.2,neutral,nan
+462,2,62,2031250630,LevoParadoxIsomer,-3.0,overconfident,0.44999998807907104
+463,2,63,788674418,HFLevo,0.8,neutral,nan
+463,2,63,788674418,LevoParadoxIsomer,0.0,neutral,0.5
+464,2,64,1437390327,HFLevo,0.0,neutral,nan
+464,2,64,1437390327,LevoParadoxIsomer,0.8,neutral,0.5
+465,2,65,879262169,HFLevo,2.0,neutral,nan
+465,2,65,879262169,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+466,2,66,958652521,HFLevo,0.8,neutral,nan
+466,2,66,958652521,LevoParadoxIsomer,0.0,neutral,0.5
+467,2,67,2142602411,HFLevo,0.8,neutral,nan
+467,2,67,2142602411,LevoParadoxIsomer,0.0,neutral,0.5
+468,2,68,59947504,HFLevo,0.8,neutral,nan
+468,2,68,59947504,LevoParadoxIsomer,0.0,neutral,0.5
+469,2,69,384107305,HFLevo,0.0,neutral,nan
+469,2,69,384107305,LevoParadoxIsomer,0.8,neutral,0.5
+470,2,70,1830507375,HFLevo,0.8,neutral,nan
+470,2,70,1830507375,LevoParadoxIsomer,0.8,neutral,0.5
+471,2,71,571519169,HFLevo,0.8,neutral,nan
+471,2,71,571519169,LevoParadoxIsomer,0.0,neutral,0.5
+472,2,72,1626492832,HFLevo,0.8,neutral,nan
+472,2,72,1626492832,LevoParadoxIsomer,0.8,neutral,0.5
+473,2,73,1386853771,HFLevo,0.0,neutral,nan
+473,2,73,1386853771,LevoParadoxIsomer,0.8,neutral,0.5
+474,2,74,1706685627,HFLevo,2.0,neutral,nan
+474,2,74,1706685627,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+475,2,75,1611897310,HFLevo,2.0,neutral,nan
+475,2,75,1611897310,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+476,2,76,1751003019,HFLevo,0.0,neutral,nan
+476,2,76,1751003019,LevoParadoxIsomer,0.8,neutral,0.5
+477,2,77,1422082962,HFLevo,0.0,neutral,nan
+477,2,77,1422082962,LevoParadoxIsomer,-3.0,overconfident,0.3999999761581421
+478,2,78,1883691922,HFLevo,0.0,neutral,nan
+478,2,78,1883691922,LevoParadoxIsomer,0.8,neutral,0.5
+479,2,79,1013721795,HFLevo,0.8,neutral,nan
+479,2,79,1013721795,LevoParadoxIsomer,0.8,neutral,0.5
+480,2,80,820766304,HFLevo,0.8,neutral,nan
+480,2,80,820766304,LevoParadoxIsomer,0.8,neutral,0.5
+481,2,81,292577686,HFLevo,0.8,neutral,nan
+481,2,81,292577686,LevoParadoxIsomer,0.8,neutral,0.5
+482,2,82,1774181236,HFLevo,0.0,neutral,nan
+482,2,82,1774181236,LevoParadoxIsomer,0.0,neutral,0.5
+483,2,83,16477750,HFLevo,0.8,neutral,nan
+483,2,83,16477750,LevoParadoxIsomer,0.0,neutral,0.5
+484,2,84,270709347,HFLevo,0.8,neutral,nan
+484,2,84,270709347,LevoParadoxIsomer,0.0,neutral,0.5
+485,2,85,117649210,HFLevo,0.0,neutral,nan
+485,2,85,117649210,LevoParadoxIsomer,0.8,neutral,0.5
+486,2,86,1315442558,HFLevo,0.0,neutral,nan
+486,2,86,1315442558,LevoParadoxIsomer,0.0,neutral,0.5
+487,2,87,2057676732,HFLevo,0.0,neutral,nan
+487,2,87,2057676732,LevoParadoxIsomer,0.0,neutral,0.5
+488,2,88,211459733,HFLevo,0.8,neutral,nan
+488,2,88,211459733,LevoParadoxIsomer,0.8,neutral,0.5
+489,2,89,91146202,HFLevo,0.8,neutral,nan
+489,2,89,91146202,LevoParadoxIsomer,0.0,neutral,0.5
+490,2,90,588068454,HFLevo,0.8,neutral,nan
+490,2,90,588068454,LevoParadoxIsomer,0.0,neutral,0.5
+491,2,91,467526601,HFLevo,2.0,neutral,nan
+491,2,91,467526601,LevoParadoxIsomer,0.0,neutral,0.6000000238418579
+492,2,92,335299668,HFLevo,0.0,neutral,nan
+492,2,92,335299668,LevoParadoxIsomer,0.0,neutral,0.5
+493,2,93,779362037,HFLevo,0.8,neutral,nan
+493,2,93,779362037,LevoParadoxIsomer,0.0,neutral,0.5
+494,2,94,660339976,HFLevo,2.0,neutral,nan
+494,2,94,660339976,LevoParadoxIsomer,2.0,neutral,0.6000000238418579
+495,2,95,637136818,HFLevo,1.2,neutral,nan
+495,2,95,637136818,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+496,2,96,1999866855,HFLevo,0.8,neutral,nan
+496,2,96,1999866855,LevoParadoxIsomer,0.0,neutral,0.5
+497,2,97,139896496,HFLevo,0.8,neutral,nan
+497,2,97,139896496,LevoParadoxIsomer,0.8,neutral,0.5
+498,2,98,863743810,HFLevo,0.0,neutral,nan
+498,2,98,863743810,LevoParadoxIsomer,0.0,neutral,0.5
+499,2,99,1908673249,HFLevo,2.0,neutral,nan
+499,2,99,1908673249,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+500,2,100,1039141574,HFLevo,0.0,neutral,nan
+500,2,100,1039141574,LevoParadoxIsomer,0.8,neutral,0.5
+501,2,101,1051567495,HFLevo,1.2,neutral,nan
+501,2,101,1051567495,LevoParadoxIsomer,-3.0,overconfident,0.3999999761581421
+502,2,102,837394817,HFLevo,0.8,neutral,nan
+502,2,102,837394817,LevoParadoxIsomer,0.8,neutral,0.5
+503,2,103,2013481887,HFLevo,0.0,neutral,nan
+503,2,103,2013481887,LevoParadoxIsomer,0.8,neutral,0.5
+504,2,104,438355621,HFLevo,0.8,neutral,nan
+504,2,104,438355621,LevoParadoxIsomer,0.0,neutral,0.5
+505,2,105,993080718,HFLevo,0.0,neutral,nan
+505,2,105,993080718,LevoParadoxIsomer,0.8,neutral,0.5
+506,2,106,1682379032,HFLevo,0.0,neutral,nan
+506,2,106,1682379032,LevoParadoxIsomer,0.8,neutral,0.5
+507,2,107,1013432362,HFLevo,0.8,neutral,nan
+507,2,107,1013432362,LevoParadoxIsomer,0.0,neutral,0.5
+508,2,108,1856562955,HFLevo,0.0,neutral,nan
+508,2,108,1856562955,LevoParadoxIsomer,0.0,neutral,0.5
+509,2,109,1667805176,HFLevo,1.2,neutral,nan
+509,2,109,1667805176,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+510,2,110,506300911,HFLevo,0.0,neutral,nan
+510,2,110,506300911,LevoParadoxIsomer,0.8,neutral,0.5
+511,2,111,222604131,HFLevo,0.8,neutral,nan
+511,2,111,222604131,LevoParadoxIsomer,0.0,neutral,0.5
+512,2,112,804599567,HFLevo,0.0,neutral,nan
+512,2,112,804599567,LevoParadoxIsomer,0.8,neutral,0.5
+513,2,113,1492613445,HFLevo,0.0,neutral,nan
+513,2,113,1492613445,LevoParadoxIsomer,0.8,neutral,0.5
+514,2,114,552650077,HFLevo,1.2,neutral,nan
+514,2,114,552650077,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+515,2,115,930025102,HFLevo,0.0,neutral,nan
+515,2,115,930025102,LevoParadoxIsomer,0.8,neutral,0.5
+516,2,116,873459449,HFLevo,-0.8,overcautious,nan
+516,2,116,873459449,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+517,2,117,467662889,HFLevo,0.0,neutral,nan
+517,2,117,467662889,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+518,2,118,445679122,HFLevo,0.0,neutral,nan
+518,2,118,445679122,LevoParadoxIsomer,0.0,neutral,0.5
+519,2,119,1328599419,HFLevo,2.0,neutral,nan
+519,2,119,1328599419,LevoParadoxIsomer,-0.8,overcautious,0.7000000476837158
+520,2,120,1323806708,HFLevo,0.0,neutral,nan
+520,2,120,1323806708,LevoParadoxIsomer,0.0,neutral,0.5
+521,2,121,1034589592,HFLevo,0.0,neutral,nan
+521,2,121,1034589592,LevoParadoxIsomer,0.8,neutral,0.5
+522,2,122,413811598,HFLevo,0.0,neutral,nan
+522,2,122,413811598,LevoParadoxIsomer,0.8,neutral,0.5
+523,2,123,753550936,HFLevo,0.0,neutral,nan
+523,2,123,753550936,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+524,2,124,1202521986,HFLevo,0.8,neutral,nan
+524,2,124,1202521986,LevoParadoxIsomer,0.8,neutral,0.5
+525,2,125,1933381577,HFLevo,-0.8,overcautious,nan
+525,2,125,1933381577,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+526,2,126,1963329040,HFLevo,0.0,neutral,nan
+526,2,126,1963329040,LevoParadoxIsomer,0.8,neutral,0.5
+527,2,127,1399821071,HFLevo,2.0,neutral,nan
+527,2,127,1399821071,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+528,2,128,1828929971,HFLevo,-3.0,overconfident,nan
+528,2,128,1828929971,LevoParadoxIsomer,-3.0,overconfident,0.34999996423721313
+529,2,129,1100686433,HFLevo,0.0,neutral,nan
+529,2,129,1100686433,LevoParadoxIsomer,0.8,neutral,0.5
+530,2,130,423774818,HFLevo,0.0,neutral,nan
+530,2,130,423774818,LevoParadoxIsomer,0.0,neutral,0.5
+531,2,131,2047001195,HFLevo,0.0,neutral,nan
+531,2,131,2047001195,LevoParadoxIsomer,0.8,neutral,0.5
+532,2,132,127060851,HFLevo,0.8,neutral,nan
+532,2,132,127060851,LevoParadoxIsomer,0.0,neutral,0.5
+533,2,133,1430942851,HFLevo,1.2,neutral,nan
+533,2,133,1430942851,LevoParadoxIsomer,-3.0,overconfident,0.2999999523162842
+534,2,134,1194133788,HFLevo,2.0,neutral,nan
+534,2,134,1194133788,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+535,2,135,30246456,HFLevo,0.0,neutral,nan
+535,2,135,30246456,LevoParadoxIsomer,0.0,neutral,0.5
+536,2,136,1871301169,HFLevo,0.8,neutral,nan
+536,2,136,1871301169,LevoParadoxIsomer,0.0,neutral,0.5
+537,2,137,1724977905,HFLevo,1.2,neutral,nan
+537,2,137,1724977905,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+538,2,138,1717796771,HFLevo,0.0,neutral,nan
+538,2,138,1717796771,LevoParadoxIsomer,0.8,neutral,0.5
+539,2,139,1593858573,HFLevo,0.8,neutral,nan
+539,2,139,1593858573,LevoParadoxIsomer,0.0,neutral,0.5
+540,2,140,200663940,HFLevo,1.2,neutral,nan
+540,2,140,200663940,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+541,2,141,1366649604,HFLevo,0.0,neutral,nan
+541,2,141,1366649604,LevoParadoxIsomer,0.8,neutral,0.5
+542,2,142,1673519505,HFLevo,0.8,neutral,nan
+542,2,142,1673519505,LevoParadoxIsomer,0.0,neutral,0.5
+543,2,143,1177626327,HFLevo,0.8,neutral,nan
+543,2,143,1177626327,LevoParadoxIsomer,0.0,neutral,0.5
+544,2,144,262855495,HFLevo,0.8,neutral,nan
+544,2,144,262855495,LevoParadoxIsomer,0.8,neutral,0.5
+545,2,145,1035690989,HFLevo,-3.0,overconfident,nan
+545,2,145,1035690989,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+546,2,146,192999926,HFLevo,0.8,neutral,nan
+546,2,146,192999926,LevoParadoxIsomer,0.8,neutral,0.5
+547,2,147,1097961901,HFLevo,-0.8,overcautious,nan
+547,2,147,1097961901,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+548,2,148,1040646467,HFLevo,2.0,neutral,nan
+548,2,148,1040646467,LevoParadoxIsomer,0.0,neutral,0.7000000476837158
+549,2,149,1995566658,HFLevo,0.8,neutral,nan
+549,2,149,1995566658,LevoParadoxIsomer,0.8,neutral,0.5
+550,2,150,390674833,HFLevo,0.0,neutral,nan
+550,2,150,390674833,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+551,2,151,662645968,HFLevo,0.0,neutral,nan
+551,2,151,662645968,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+552,2,152,111224037,HFLevo,2.0,neutral,nan
+552,2,152,111224037,LevoParadoxIsomer,0.0,neutral,0.7000000476837158
+553,2,153,1242319339,HFLevo,0.8,neutral,nan
+553,2,153,1242319339,LevoParadoxIsomer,0.8,neutral,0.5
+554,2,154,1295579201,HFLevo,0.0,neutral,nan
+554,2,154,1295579201,LevoParadoxIsomer,0.0,neutral,0.5
+555,2,155,88079789,HFLevo,0.8,neutral,nan
+555,2,155,88079789,LevoParadoxIsomer,0.8,neutral,0.5
+556,2,156,1218832160,HFLevo,0.8,neutral,nan
+556,2,156,1218832160,LevoParadoxIsomer,0.0,neutral,0.5
+557,2,157,1199450774,HFLevo,0.0,neutral,nan
+557,2,157,1199450774,LevoParadoxIsomer,0.8,neutral,0.5
+558,2,158,93920744,HFLevo,0.8,neutral,nan
+558,2,158,93920744,LevoParadoxIsomer,0.0,neutral,0.5
+559,2,159,301211568,HFLevo,0.0,neutral,nan
+559,2,159,301211568,LevoParadoxIsomer,0.0,neutral,0.5
+560,2,160,606831608,HFLevo,0.0,neutral,nan
+560,2,160,606831608,LevoParadoxIsomer,0.8,neutral,0.5
+561,2,161,248267762,HFLevo,2.0,neutral,nan
+561,2,161,248267762,LevoParadoxIsomer,0.0,neutral,0.7500000596046448
+562,2,162,479831997,HFLevo,0.0,neutral,nan
+562,2,162,479831997,LevoParadoxIsomer,0.8,neutral,0.5
+563,2,163,443794762,HFLevo,-3.0,overconfident,nan
+563,2,163,443794762,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+564,2,164,317845088,HFLevo,0.8,neutral,nan
+564,2,164,317845088,LevoParadoxIsomer,0.8,neutral,0.5
+565,2,165,976368810,HFLevo,-3.0,overconfident,nan
+565,2,165,976368810,LevoParadoxIsomer,0.0,neutral,0.24999995529651642
+566,2,166,1096060710,HFLevo,1.2,neutral,nan
+566,2,166,1096060710,LevoParadoxIsomer,-3.0,overconfident,0.34999996423721313
+567,2,167,1786432503,HFLevo,0.0,neutral,nan
+567,2,167,1786432503,LevoParadoxIsomer,0.0,neutral,0.5
+568,2,168,92915493,HFLevo,0.8,neutral,nan
+568,2,168,92915493,LevoParadoxIsomer,0.0,neutral,0.5
+569,2,169,169421372,HFLevo,0.8,neutral,nan
+569,2,169,169421372,LevoParadoxIsomer,0.8,neutral,0.5
+570,2,170,827738447,HFLevo,2.0,neutral,nan
+570,2,170,827738447,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+571,2,171,91871503,HFLevo,0.0,neutral,nan
+571,2,171,91871503,LevoParadoxIsomer,0.8,neutral,0.5
+572,2,172,1181786707,HFLevo,1.2,neutral,nan
+572,2,172,1181786707,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+573,2,173,14354338,HFLevo,0.0,neutral,nan
+573,2,173,14354338,LevoParadoxIsomer,0.0,neutral,0.5
+574,2,174,2140443672,HFLevo,-3.0,overconfident,nan
+574,2,174,2140443672,LevoParadoxIsomer,-3.0,overconfident,0.3999999761581421
+575,2,175,318790932,HFLevo,2.0,neutral,nan
+575,2,175,318790932,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+576,2,176,721850175,HFLevo,-0.8,overcautious,nan
+576,2,176,721850175,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+577,2,177,1030785601,HFLevo,0.0,neutral,nan
+577,2,177,1030785601,LevoParadoxIsomer,0.0,neutral,0.5
+578,2,178,1316251630,HFLevo,-0.8,overcautious,nan
+578,2,178,1316251630,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+579,2,179,1719447051,HFLevo,0.8,neutral,nan
+579,2,179,1719447051,LevoParadoxIsomer,0.0,neutral,0.5
+580,2,180,574594100,HFLevo,0.0,neutral,nan
+580,2,180,574594100,LevoParadoxIsomer,0.0,neutral,0.5
+581,2,181,2130613154,HFLevo,0.0,neutral,nan
+581,2,181,2130613154,LevoParadoxIsomer,0.0,neutral,0.5
+582,2,182,527701015,HFLevo,0.0,neutral,nan
+582,2,182,527701015,LevoParadoxIsomer,0.0,neutral,0.5
+583,2,183,1227208042,HFLevo,1.2,neutral,nan
+583,2,183,1227208042,LevoParadoxIsomer,0.0,neutral,0.2999999523162842
+584,2,184,633972706,HFLevo,0.0,neutral,nan
+584,2,184,633972706,LevoParadoxIsomer,0.8,neutral,0.5
+585,2,185,1481264686,HFLevo,0.0,neutral,nan
+585,2,185,1481264686,LevoParadoxIsomer,0.0,neutral,0.5
+586,2,186,1403332419,HFLevo,0.0,neutral,nan
+586,2,186,1403332419,LevoParadoxIsomer,0.0,neutral,0.5
+587,2,187,573328882,HFLevo,1.2,neutral,nan
+587,2,187,573328882,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+588,2,188,896430961,HFLevo,0.0,neutral,nan
+588,2,188,896430961,LevoParadoxIsomer,0.8,neutral,0.5
+589,2,189,861308429,HFLevo,0.0,neutral,nan
+589,2,189,861308429,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+590,2,190,857542805,HFLevo,1.2,neutral,nan
+590,2,190,857542805,LevoParadoxIsomer,-3.0,overconfident,0.2999999523162842
+591,2,191,555627012,HFLevo,0.8,neutral,nan
+591,2,191,555627012,LevoParadoxIsomer,0.0,neutral,0.5
+592,2,192,883473089,HFLevo,1.2,neutral,nan
+592,2,192,883473089,LevoParadoxIsomer,-3.0,overconfident,0.24999995529651642
+593,2,193,1183906577,HFLevo,2.0,neutral,nan
+593,2,193,1183906577,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+594,2,194,1295404722,HFLevo,2.0,neutral,nan
+594,2,194,1295404722,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+595,2,195,1602782174,HFLevo,0.0,neutral,nan
+595,2,195,1602782174,LevoParadoxIsomer,0.0,neutral,0.5
+596,2,196,1168170146,HFLevo,0.8,neutral,nan
+596,2,196,1168170146,LevoParadoxIsomer,0.8,neutral,0.5
+597,2,197,247049848,HFLevo,0.0,neutral,nan
+597,2,197,247049848,LevoParadoxIsomer,0.0,neutral,0.5
+598,2,198,1217521579,HFLevo,2.0,neutral,nan
+598,2,198,1217521579,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+599,2,199,1154221074,HFLevo,1.2,neutral,nan
+599,2,199,1154221074,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+600,2,200,1039822287,HFLevo,0.0,neutral,nan
+600,2,200,1039822287,LevoParadoxIsomer,0.0,neutral,0.5
+601,2,201,403774715,HFLevo,0.8,neutral,nan
+601,2,201,403774715,LevoParadoxIsomer,0.0,neutral,0.5
+602,2,202,1937799744,HFLevo,0.8,neutral,nan
+602,2,202,1937799744,LevoParadoxIsomer,0.0,neutral,0.5
+603,2,203,1530207800,HFLevo,0.8,neutral,nan
+603,2,203,1530207800,LevoParadoxIsomer,0.8,neutral,0.5
+604,2,204,899360822,HFLevo,0.8,neutral,nan
+604,2,204,899360822,LevoParadoxIsomer,0.8,neutral,0.5
+605,2,205,839140609,HFLevo,2.0,neutral,nan
+605,2,205,839140609,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+606,2,206,2141035731,HFLevo,2.0,neutral,nan
+606,2,206,2141035731,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+607,2,207,778084307,HFLevo,1.2,neutral,nan
+607,2,207,778084307,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+608,2,208,350945807,HFLevo,0.0,neutral,nan
+608,2,208,350945807,LevoParadoxIsomer,0.0,neutral,0.5
+609,2,209,970046052,HFLevo,2.0,neutral,nan
+609,2,209,970046052,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+610,2,210,828658713,HFLevo,1.2,neutral,nan
+610,2,210,828658713,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+611,2,211,899193899,HFLevo,0.8,neutral,nan
+611,2,211,899193899,LevoParadoxIsomer,0.0,neutral,0.5
+612,2,212,1918263815,HFLevo,1.2,neutral,nan
+612,2,212,1918263815,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+613,2,213,861402774,HFLevo,0.0,neutral,nan
+613,2,213,861402774,LevoParadoxIsomer,0.0,neutral,0.5
+614,2,214,545630730,HFLevo,0.0,neutral,nan
+614,2,214,545630730,LevoParadoxIsomer,0.8,neutral,0.5
+615,2,215,1771344806,HFLevo,0.0,neutral,nan
+615,2,215,1771344806,LevoParadoxIsomer,0.0,neutral,0.5
+616,2,216,835556689,HFLevo,2.0,neutral,nan
+616,2,216,835556689,LevoParadoxIsomer,-0.8,overcautious,0.7500000596046448
+617,2,217,920739262,HFLevo,0.8,neutral,nan
+617,2,217,920739262,LevoParadoxIsomer,0.8,neutral,0.5
+618,2,218,1075133249,HFLevo,0.8,neutral,nan
+618,2,218,1075133249,LevoParadoxIsomer,0.8,neutral,0.5
+619,2,219,1466130915,HFLevo,0.8,neutral,nan
+619,2,219,1466130915,LevoParadoxIsomer,0.0,neutral,0.5
+620,2,220,1545638251,HFLevo,0.0,neutral,nan
+620,2,220,1545638251,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+621,2,221,379504837,HFLevo,0.0,neutral,nan
+621,2,221,379504837,LevoParadoxIsomer,0.8,neutral,0.5
+622,2,222,833504022,HFLevo,0.8,neutral,nan
+622,2,222,833504022,LevoParadoxIsomer,0.8,neutral,0.5
+623,2,223,1846676001,HFLevo,1.2,neutral,nan
+623,2,223,1846676001,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+624,2,224,6416948,HFLevo,0.0,neutral,nan
+624,2,224,6416948,LevoParadoxIsomer,0.0,neutral,0.5
+625,2,225,1751117666,HFLevo,0.0,neutral,nan
+625,2,225,1751117666,LevoParadoxIsomer,0.8,neutral,0.5
+626,2,226,284570123,HFLevo,0.0,neutral,nan
+626,2,226,284570123,LevoParadoxIsomer,0.8,neutral,0.5
+627,2,227,189352376,HFLevo,0.0,neutral,nan
+627,2,227,189352376,LevoParadoxIsomer,0.8,neutral,0.5
+628,2,228,1370043294,HFLevo,0.0,neutral,nan
+628,2,228,1370043294,LevoParadoxIsomer,0.8,neutral,0.5
+629,2,229,1967776583,HFLevo,0.0,neutral,nan
+629,2,229,1967776583,LevoParadoxIsomer,0.8,neutral,0.5
+630,2,230,1013942334,HFLevo,0.8,neutral,nan
+630,2,230,1013942334,LevoParadoxIsomer,0.8,neutral,0.5
+631,2,231,600184202,HFLevo,0.0,neutral,nan
+631,2,231,600184202,LevoParadoxIsomer,0.0,neutral,0.5
+632,2,232,2085636407,HFLevo,0.8,neutral,nan
+632,2,232,2085636407,LevoParadoxIsomer,0.8,neutral,0.5
+633,2,233,328848547,HFLevo,0.8,neutral,nan
+633,2,233,328848547,LevoParadoxIsomer,0.0,neutral,0.5
+634,2,234,63425983,HFLevo,2.0,neutral,nan
+634,2,234,63425983,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+635,2,235,531264304,HFLevo,0.0,neutral,nan
+635,2,235,531264304,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+636,2,236,1531168957,HFLevo,0.8,neutral,nan
+636,2,236,1531168957,LevoParadoxIsomer,0.8,neutral,0.5
+637,2,237,1789312949,HFLevo,2.0,neutral,nan
+637,2,237,1789312949,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+638,2,238,1084402395,HFLevo,0.8,neutral,nan
+638,2,238,1084402395,LevoParadoxIsomer,0.0,neutral,0.5
+639,2,239,1545622175,HFLevo,0.8,neutral,nan
+639,2,239,1545622175,LevoParadoxIsomer,0.8,neutral,0.5
+640,2,240,999431888,HFLevo,0.0,neutral,nan
+640,2,240,999431888,LevoParadoxIsomer,0.8,neutral,0.5
+641,2,241,1725426490,HFLevo,0.8,neutral,nan
+641,2,241,1725426490,LevoParadoxIsomer,0.8,neutral,0.5
+642,2,242,669407095,HFLevo,0.8,neutral,nan
+642,2,242,669407095,LevoParadoxIsomer,0.8,neutral,0.5
+643,2,243,1417993163,HFLevo,0.0,neutral,nan
+643,2,243,1417993163,LevoParadoxIsomer,0.0,neutral,0.5
+644,2,244,1057045593,HFLevo,0.0,neutral,nan
+644,2,244,1057045593,LevoParadoxIsomer,0.8,neutral,0.5
+645,2,245,1380890934,HFLevo,0.8,neutral,nan
+645,2,245,1380890934,LevoParadoxIsomer,0.0,neutral,0.5
+646,2,246,238129855,HFLevo,0.0,neutral,nan
+646,2,246,238129855,LevoParadoxIsomer,0.8,neutral,0.5
+647,2,247,1486485713,HFLevo,0.8,neutral,nan
+647,2,247,1486485713,LevoParadoxIsomer,0.8,neutral,0.5
+648,2,248,30716145,HFLevo,0.0,neutral,nan
+648,2,248,30716145,LevoParadoxIsomer,0.8,neutral,0.5
+649,2,249,1615261593,HFLevo,0.0,neutral,nan
+649,2,249,1615261593,LevoParadoxIsomer,0.0,neutral,0.5
+650,2,250,2052819092,HFLevo,0.0,neutral,nan
+650,2,250,2052819092,LevoParadoxIsomer,0.8,neutral,0.5
+651,2,251,11185487,HFLevo,0.8,neutral,nan
+651,2,251,11185487,LevoParadoxIsomer,0.8,neutral,0.5
+652,2,252,928000143,HFLevo,-0.8,overcautious,nan
+652,2,252,928000143,LevoParadoxIsomer,-0.8,overcautious,0.8000000715255737
+653,2,253,2023963770,HFLevo,-3.0,overconfident,nan
+653,2,253,2023963770,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+654,2,254,1301736393,HFLevo,0.0,neutral,nan
+654,2,254,1301736393,LevoParadoxIsomer,0.8,neutral,0.5
+655,2,255,398352915,HFLevo,0.8,neutral,nan
+655,2,255,398352915,LevoParadoxIsomer,0.8,neutral,0.5
+656,2,256,299104752,HFLevo,0.8,neutral,nan
+656,2,256,299104752,LevoParadoxIsomer,0.8,neutral,0.5
+657,2,257,1900619662,HFLevo,2.0,neutral,nan
+657,2,257,1900619662,LevoParadoxIsomer,2.0,neutral,0.8500000834465027
+658,2,258,402834001,HFLevo,0.0,neutral,nan
+658,2,258,402834001,LevoParadoxIsomer,-3.0,overconfident,0.24999995529651642
+659,2,259,618191185,HFLevo,-3.0,overconfident,nan
+659,2,259,618191185,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+660,2,260,1107226955,HFLevo,2.0,neutral,nan
+660,2,260,1107226955,LevoParadoxIsomer,-0.8,overcautious,0.7000000476837158
+661,2,261,1079996997,HFLevo,0.8,neutral,nan
+661,2,261,1079996997,LevoParadoxIsomer,0.0,neutral,0.5
+662,2,262,1090799708,HFLevo,-0.8,overcautious,nan
+662,2,262,1090799708,LevoParadoxIsomer,2.0,neutral,0.8500000834465027
+663,2,263,614807561,HFLevo,1.2,neutral,nan
+663,2,263,614807561,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+664,2,264,1110540374,HFLevo,0.0,neutral,nan
+664,2,264,1110540374,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+665,2,265,230358128,HFLevo,0.0,neutral,nan
+665,2,265,230358128,LevoParadoxIsomer,0.0,neutral,0.5
+666,2,266,1307025172,HFLevo,0.8,neutral,nan
+666,2,266,1307025172,LevoParadoxIsomer,0.8,neutral,0.5
+667,2,267,2128513208,HFLevo,0.0,neutral,nan
+667,2,267,2128513208,LevoParadoxIsomer,-3.0,overconfident,0.19999995827674866
+668,2,268,1813190214,HFLevo,0.0,neutral,nan
+668,2,268,1813190214,LevoParadoxIsomer,-3.0,overconfident,0.19999995827674866
+669,2,269,427517589,HFLevo,2.0,neutral,nan
+669,2,269,427517589,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+670,2,270,971704768,HFLevo,0.0,neutral,nan
+670,2,270,971704768,LevoParadoxIsomer,0.8,neutral,0.5
+671,2,271,379120844,HFLevo,0.8,neutral,nan
+671,2,271,379120844,LevoParadoxIsomer,0.8,neutral,0.5
+672,2,272,366674027,HFLevo,2.0,neutral,nan
+672,2,272,366674027,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+673,2,273,1267589757,HFLevo,0.0,neutral,nan
+673,2,273,1267589757,LevoParadoxIsomer,0.0,neutral,0.5
+674,2,274,397609752,HFLevo,0.0,neutral,nan
+674,2,274,397609752,LevoParadoxIsomer,0.0,neutral,0.5
+675,2,275,544583423,HFLevo,0.8,neutral,nan
+675,2,275,544583423,LevoParadoxIsomer,0.0,neutral,0.5
+676,2,276,1765101426,HFLevo,0.0,neutral,nan
+676,2,276,1765101426,LevoParadoxIsomer,0.8,neutral,0.5
+677,2,277,569693597,HFLevo,2.0,neutral,nan
+677,2,277,569693597,LevoParadoxIsomer,-0.8,overcautious,0.8500000834465027
+678,2,278,189460983,HFLevo,0.0,neutral,nan
+678,2,278,189460983,LevoParadoxIsomer,0.0,neutral,0.5
+679,2,279,505940532,HFLevo,0.8,neutral,nan
+679,2,279,505940532,LevoParadoxIsomer,0.0,neutral,0.5
+680,2,280,961700536,HFLevo,-3.0,overconfident,nan
+680,2,280,961700536,LevoParadoxIsomer,-3.0,overconfident,0.34999996423721313
+681,2,281,932456279,HFLevo,2.0,neutral,nan
+681,2,281,932456279,LevoParadoxIsomer,-0.8,overcautious,0.7500000596046448
+682,2,282,390287427,HFLevo,2.0,neutral,nan
+682,2,282,390287427,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+683,2,283,297976648,HFLevo,2.0,neutral,nan
+683,2,283,297976648,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+684,2,284,436098708,HFLevo,0.8,neutral,nan
+684,2,284,436098708,LevoParadoxIsomer,0.0,neutral,0.5
+685,2,285,794629335,HFLevo,2.0,neutral,nan
+685,2,285,794629335,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+686,2,286,1214082779,HFLevo,0.0,neutral,nan
+686,2,286,1214082779,LevoParadoxIsomer,0.8,neutral,0.5
+687,2,287,1935214602,HFLevo,2.0,neutral,nan
+687,2,287,1935214602,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+688,2,288,284248471,HFLevo,0.8,neutral,nan
+688,2,288,284248471,LevoParadoxIsomer,0.0,neutral,0.5
+689,2,289,1230641234,HFLevo,0.0,neutral,nan
+689,2,289,1230641234,LevoParadoxIsomer,0.8,neutral,0.5
+690,2,290,388858966,HFLevo,2.0,neutral,nan
+690,2,290,388858966,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+691,2,291,1021791854,HFLevo,2.0,neutral,nan
+691,2,291,1021791854,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+692,2,292,603303402,HFLevo,0.0,neutral,nan
+692,2,292,603303402,LevoParadoxIsomer,0.8,neutral,0.5
+693,2,293,862608619,HFLevo,0.0,neutral,nan
+693,2,293,862608619,LevoParadoxIsomer,0.0,neutral,0.5
+694,2,294,1651871421,HFLevo,0.8,neutral,nan
+694,2,294,1651871421,LevoParadoxIsomer,0.0,neutral,0.5
+695,2,295,2051444313,HFLevo,0.0,neutral,nan
+695,2,295,2051444313,LevoParadoxIsomer,0.8,neutral,0.5
+696,2,296,144628230,HFLevo,0.0,neutral,nan
+696,2,296,144628230,LevoParadoxIsomer,0.8,neutral,0.5
+697,2,297,1520429634,HFLevo,0.8,neutral,nan
+697,2,297,1520429634,LevoParadoxIsomer,0.0,neutral,0.5
+698,2,298,881109934,HFLevo,0.0,neutral,nan
+698,2,298,881109934,LevoParadoxIsomer,0.8,neutral,0.5
+699,2,299,1255956995,HFLevo,0.0,neutral,nan
+699,2,299,1255956995,LevoParadoxIsomer,0.0,neutral,0.5
+700,2,300,208230768,HFLevo,0.8,neutral,nan
+700,2,300,208230768,LevoParadoxIsomer,0.8,neutral,0.5
+701,2,301,1460257335,HFLevo,0.0,neutral,nan
+701,2,301,1460257335,LevoParadoxIsomer,0.0,neutral,0.5
+702,2,302,1011782590,HFLevo,0.8,neutral,nan
+702,2,302,1011782590,LevoParadoxIsomer,0.8,neutral,0.5
+703,2,303,1789340557,HFLevo,2.0,neutral,nan
+703,2,303,1789340557,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+704,2,304,1869217819,HFLevo,0.8,neutral,nan
+704,2,304,1869217819,LevoParadoxIsomer,0.8,neutral,0.5
+705,2,305,1673802110,HFLevo,0.8,neutral,nan
+705,2,305,1673802110,LevoParadoxIsomer,0.8,neutral,0.5
+706,2,306,62463393,HFLevo,2.0,neutral,nan
+706,2,306,62463393,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+707,2,307,2074841997,HFLevo,1.2,neutral,nan
+707,2,307,2074841997,LevoParadoxIsomer,0.0,neutral,0.1499999612569809
+708,2,308,1764116324,HFLevo,1.2,neutral,nan
+708,2,308,1764116324,LevoParadoxIsomer,0.0,neutral,0.2999999523162842
+709,2,309,1361763883,HFLevo,1.2,neutral,nan
+709,2,309,1361763883,LevoParadoxIsomer,0.0,neutral,0.2999999523162842
+710,2,310,2068149571,HFLevo,0.0,neutral,nan
+710,2,310,2068149571,LevoParadoxIsomer,0.0,neutral,0.5
+711,2,311,1761270974,HFLevo,0.8,neutral,nan
+711,2,311,1761270974,LevoParadoxIsomer,0.8,neutral,0.5
+712,2,312,1610445955,HFLevo,0.8,neutral,nan
+712,2,312,1610445955,LevoParadoxIsomer,0.0,neutral,0.5
+713,2,313,527574022,HFLevo,0.0,neutral,nan
+713,2,313,527574022,LevoParadoxIsomer,0.8,neutral,0.5
+714,2,314,1948416385,HFLevo,0.0,neutral,nan
+714,2,314,1948416385,LevoParadoxIsomer,0.0,neutral,0.5
+715,2,315,842515162,HFLevo,1.2,neutral,nan
+715,2,315,842515162,LevoParadoxIsomer,-3.0,overconfident,0.1499999612569809
+716,2,316,728127582,HFLevo,0.8,neutral,nan
+716,2,316,728127582,LevoParadoxIsomer,0.8,neutral,0.5
+717,2,317,1807809684,HFLevo,2.0,neutral,nan
+717,2,317,1807809684,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+718,2,318,1911608906,HFLevo,0.8,neutral,nan
+718,2,318,1911608906,LevoParadoxIsomer,0.0,neutral,0.5
+719,2,319,507860031,HFLevo,0.0,neutral,nan
+719,2,319,507860031,LevoParadoxIsomer,0.0,neutral,0.5
+720,2,320,1559660249,HFLevo,0.8,neutral,nan
+720,2,320,1559660249,LevoParadoxIsomer,0.8,neutral,0.5
+721,2,321,817113483,HFLevo,0.0,neutral,nan
+721,2,321,817113483,LevoParadoxIsomer,0.0,neutral,0.5
+722,2,322,181612330,HFLevo,0.8,neutral,nan
+722,2,322,181612330,LevoParadoxIsomer,0.8,neutral,0.5
+723,2,323,330146939,HFLevo,0.0,neutral,nan
+723,2,323,330146939,LevoParadoxIsomer,0.8,neutral,0.5
+724,2,324,1451519916,HFLevo,0.0,neutral,nan
+724,2,324,1451519916,LevoParadoxIsomer,0.8,neutral,0.5
+725,2,325,429715005,HFLevo,0.0,neutral,nan
+725,2,325,429715005,LevoParadoxIsomer,0.8,neutral,0.5
+726,2,326,1836744305,HFLevo,2.0,neutral,nan
+726,2,326,1836744305,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+727,2,327,200999922,HFLevo,0.8,neutral,nan
+727,2,327,200999922,LevoParadoxIsomer,0.8,neutral,0.5
+728,2,328,686960989,HFLevo,1.2,neutral,nan
+728,2,328,686960989,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+729,2,329,2137759524,HFLevo,0.0,neutral,nan
+729,2,329,2137759524,LevoParadoxIsomer,0.0,neutral,0.5
+730,2,330,48470119,HFLevo,0.0,neutral,nan
+730,2,330,48470119,LevoParadoxIsomer,0.0,neutral,0.5
+731,2,331,1429722682,HFLevo,0.0,neutral,nan
+731,2,331,1429722682,LevoParadoxIsomer,0.0,neutral,0.5
+732,2,332,218074447,HFLevo,0.0,neutral,nan
+732,2,332,218074447,LevoParadoxIsomer,0.0,neutral,0.5
+733,2,333,2104545774,HFLevo,0.0,neutral,nan
+733,2,333,2104545774,LevoParadoxIsomer,0.0,neutral,0.5
+734,2,334,1816453390,HFLevo,0.0,neutral,nan
+734,2,334,1816453390,LevoParadoxIsomer,0.0,neutral,0.5
+735,2,335,639577193,HFLevo,0.8,neutral,nan
+735,2,335,639577193,LevoParadoxIsomer,0.0,neutral,0.5
+736,2,336,231860645,HFLevo,1.2,neutral,nan
+736,2,336,231860645,LevoParadoxIsomer,1.2,neutral,0.09999996423721313
+737,2,337,1142197128,HFLevo,0.0,neutral,nan
+737,2,337,1142197128,LevoParadoxIsomer,0.0,neutral,0.5
+738,2,338,1321680746,HFLevo,0.8,neutral,nan
+738,2,338,1321680746,LevoParadoxIsomer,0.8,neutral,0.5
+739,2,339,1746554905,HFLevo,0.0,neutral,nan
+739,2,339,1746554905,LevoParadoxIsomer,0.8,neutral,0.5
+740,2,340,396707811,HFLevo,0.0,neutral,nan
+740,2,340,396707811,LevoParadoxIsomer,0.8,neutral,0.5
+741,2,341,491514850,HFLevo,0.8,neutral,nan
+741,2,341,491514850,LevoParadoxIsomer,0.8,neutral,0.5
+742,2,342,461674718,HFLevo,2.0,neutral,nan
+742,2,342,461674718,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+743,2,343,1701500925,HFLevo,0.8,neutral,nan
+743,2,343,1701500925,LevoParadoxIsomer,0.0,neutral,0.5
+744,2,344,1344298913,HFLevo,0.8,neutral,nan
+744,2,344,1344298913,LevoParadoxIsomer,0.0,neutral,0.5
+745,2,345,1354823084,HFLevo,0.8,neutral,nan
+745,2,345,1354823084,LevoParadoxIsomer,0.0,neutral,0.5
+746,2,346,118160105,HFLevo,1.2,neutral,nan
+746,2,346,118160105,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+747,2,347,1044584312,HFLevo,0.8,neutral,nan
+747,2,347,1044584312,LevoParadoxIsomer,0.0,neutral,0.5
+748,2,348,1524392230,HFLevo,1.2,neutral,nan
+748,2,348,1524392230,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+749,2,349,428869864,HFLevo,0.8,neutral,nan
+749,2,349,428869864,LevoParadoxIsomer,0.8,neutral,0.5
+750,2,350,180994417,HFLevo,0.0,neutral,nan
+750,2,350,180994417,LevoParadoxIsomer,0.0,neutral,0.5
+751,2,351,885019589,HFLevo,0.8,neutral,nan
+751,2,351,885019589,LevoParadoxIsomer,0.8,neutral,0.5
+752,2,352,1231928222,HFLevo,0.8,neutral,nan
+752,2,352,1231928222,LevoParadoxIsomer,0.8,neutral,0.5
+753,2,353,1670237802,HFLevo,0.8,neutral,nan
+753,2,353,1670237802,LevoParadoxIsomer,0.8,neutral,0.5
+754,2,354,1414482049,HFLevo,0.0,neutral,nan
+754,2,354,1414482049,LevoParadoxIsomer,0.0,neutral,0.5
+755,2,355,1971477631,HFLevo,2.0,neutral,nan
+755,2,355,1971477631,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+756,2,356,883215094,HFLevo,-3.0,overconfident,nan
+756,2,356,883215094,LevoParadoxIsomer,1.2,neutral,0.09999996423721313
+757,2,357,343285816,HFLevo,1.2,neutral,nan
+757,2,357,343285816,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+758,2,358,1993664325,HFLevo,0.0,neutral,nan
+758,2,358,1993664325,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+759,2,359,538994041,HFLevo,0.0,neutral,nan
+759,2,359,538994041,LevoParadoxIsomer,0.8,neutral,0.5
+760,2,360,365720817,HFLevo,2.0,neutral,nan
+760,2,360,365720817,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+761,2,361,1931073180,HFLevo,0.0,neutral,nan
+761,2,361,1931073180,LevoParadoxIsomer,0.8,neutral,0.5
+762,2,362,330654991,HFLevo,0.0,neutral,nan
+762,2,362,330654991,LevoParadoxIsomer,0.0,neutral,0.5
+763,2,363,2117986561,HFLevo,-3.0,overconfident,nan
+763,2,363,2117986561,LevoParadoxIsomer,1.2,neutral,0.1499999612569809
+764,2,364,1745610389,HFLevo,2.0,neutral,nan
+764,2,364,1745610389,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+765,2,365,1935491097,HFLevo,0.8,neutral,nan
+765,2,365,1935491097,LevoParadoxIsomer,0.0,neutral,0.5
+766,2,366,816460352,HFLevo,0.8,neutral,nan
+766,2,366,816460352,LevoParadoxIsomer,0.8,neutral,0.5
+767,2,367,2034287239,HFLevo,0.0,neutral,nan
+767,2,367,2034287239,LevoParadoxIsomer,0.8,neutral,0.5
+768,2,368,1494357375,HFLevo,0.8,neutral,nan
+768,2,368,1494357375,LevoParadoxIsomer,0.0,neutral,0.5
+769,2,369,525099930,HFLevo,0.8,neutral,nan
+769,2,369,525099930,LevoParadoxIsomer,0.0,neutral,0.5
+770,2,370,461861420,HFLevo,0.8,neutral,nan
+770,2,370,461861420,LevoParadoxIsomer,0.8,neutral,0.5
+771,2,371,424434369,HFLevo,0.0,neutral,nan
+771,2,371,424434369,LevoParadoxIsomer,0.0,neutral,0.5
+772,2,372,1696040440,HFLevo,2.0,neutral,nan
+772,2,372,1696040440,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+773,2,373,1327732050,HFLevo,0.0,neutral,nan
+773,2,373,1327732050,LevoParadoxIsomer,0.0,neutral,0.5
+774,2,374,1275639253,HFLevo,0.8,neutral,nan
+774,2,374,1275639253,LevoParadoxIsomer,0.8,neutral,0.5
+775,2,375,180175624,HFLevo,0.8,neutral,nan
+775,2,375,180175624,LevoParadoxIsomer,0.0,neutral,0.5
+776,2,376,853325992,HFLevo,0.0,neutral,nan
+776,2,376,853325992,LevoParadoxIsomer,1.2,neutral,0.1499999612569809
+777,2,377,35314844,HFLevo,0.8,neutral,nan
+777,2,377,35314844,LevoParadoxIsomer,0.0,neutral,0.5
+778,2,378,512421119,HFLevo,2.0,neutral,nan
+778,2,378,512421119,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+779,2,379,1818877815,HFLevo,0.8,neutral,nan
+779,2,379,1818877815,LevoParadoxIsomer,0.8,neutral,0.5
+780,2,380,244612068,HFLevo,0.8,neutral,nan
+780,2,380,244612068,LevoParadoxIsomer,0.8,neutral,0.5
+781,2,381,438090890,HFLevo,0.0,neutral,nan
+781,2,381,438090890,LevoParadoxIsomer,0.8,neutral,0.5
+782,2,382,71908212,HFLevo,0.8,neutral,nan
+782,2,382,71908212,LevoParadoxIsomer,0.8,neutral,0.5
+783,2,383,763979621,HFLevo,0.8,neutral,nan
+783,2,383,763979621,LevoParadoxIsomer,0.0,neutral,0.5
+784,2,384,492409950,HFLevo,0.8,neutral,nan
+784,2,384,492409950,LevoParadoxIsomer,0.8,neutral,0.5
+785,2,385,1939330706,HFLevo,-3.0,overconfident,nan
+785,2,385,1939330706,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+786,2,386,304266562,HFLevo,0.8,neutral,nan
+786,2,386,304266562,LevoParadoxIsomer,0.8,neutral,0.5
+787,2,387,1839152413,HFLevo,0.0,neutral,nan
+787,2,387,1839152413,LevoParadoxIsomer,0.8,neutral,0.5
+788,2,388,1584964798,HFLevo,0.8,neutral,nan
+788,2,388,1584964798,LevoParadoxIsomer,0.0,neutral,0.5
+789,2,389,1705345529,HFLevo,0.0,neutral,nan
+789,2,389,1705345529,LevoParadoxIsomer,0.0,neutral,0.5
+790,2,390,530680927,HFLevo,0.0,neutral,nan
+790,2,390,530680927,LevoParadoxIsomer,-0.8,overcautious,0.8000000715255737
+791,2,391,601158382,HFLevo,1.2,neutral,nan
+791,2,391,601158382,LevoParadoxIsomer,-3.0,overconfident,0.09999996423721313
+792,2,392,661312537,HFLevo,0.8,neutral,nan
+792,2,392,661312537,LevoParadoxIsomer,0.0,neutral,0.5
+793,2,393,1099910893,HFLevo,0.0,neutral,nan
+793,2,393,1099910893,LevoParadoxIsomer,0.8,neutral,0.5
+794,2,394,1777836792,HFLevo,-3.0,overconfident,nan
+794,2,394,1777836792,LevoParadoxIsomer,-3.0,overconfident,0.049999963492155075
+795,2,395,320819501,HFLevo,0.0,neutral,nan
+795,2,395,320819501,LevoParadoxIsomer,0.8,neutral,0.5
+796,2,396,1262930064,HFLevo,0.8,neutral,nan
+796,2,396,1262930064,LevoParadoxIsomer,0.8,neutral,0.5
+797,2,397,1476382876,HFLevo,0.0,neutral,nan
+797,2,397,1476382876,LevoParadoxIsomer,0.0,neutral,0.5
+798,2,398,229480971,HFLevo,0.8,neutral,nan
+798,2,398,229480971,LevoParadoxIsomer,0.8,neutral,0.5
+799,2,399,1346765522,HFLevo,0.8,neutral,nan
+799,2,399,1346765522,LevoParadoxIsomer,0.8,neutral,0.5
+800,3,0,1015467875,HFLevo,1.2902930843845795,neutral,nan
+800,3,0,1015467875,LevoParadoxIsomer,0.49029308438457947,neutral,0.5
+801,3,1,871703027,HFLevo,0.2583186351063763,neutral,nan
+801,3,1,871703027,LevoParadoxIsomer,0.2583186351063763,neutral,0.5
+802,3,2,1121193219,HFLevo,-0.9285687801394484,overcautious,nan
+802,3,2,1121193219,LevoParadoxIsomer,-0.9285687801394484,overcautious,0.5
+803,3,3,1844331605,HFLevo,1.268712954493355,neutral,nan
+803,3,3,1844331605,LevoParadoxIsomer,2.068712954493355,neutral,0.5
+804,3,4,376821421,HFLevo,-2.1540989698282287,overconfident,nan
+804,3,4,376821421,LevoParadoxIsomer,1.0459010301717713,neutral,0.5
+805,3,5,1528947293,HFLevo,1.9236203197456223,neutral,nan
+805,3,5,1528947293,LevoParadoxIsomer,0.7236203197456224,neutral,0.5
+806,3,6,1457385050,HFLevo,-0.388878696540991,neutral,nan
+806,3,6,1457385050,LevoParadoxIsomer,-0.388878696540991,neutral,0.5
+807,3,7,1930833205,HFLevo,1.8947708652049988,neutral,nan
+807,3,7,1930833205,LevoParadoxIsomer,1.8947708652049988,neutral,0.5
+808,3,8,331658631,HFLevo,-0.34637226145235095,overcautious,nan
+808,3,8,331658631,LevoParadoxIsomer,2.4536277385476493,neutral,0.5
+809,3,9,1392760183,HFLevo,-1.7470900488231007,overconfident,nan
+809,3,9,1392760183,LevoParadoxIsomer,-1.7470900488231007,overconfident,0.5
+810,3,10,1410154195,HFLevo,-0.424961650515833,neutral,nan
+810,3,10,1410154195,LevoParadoxIsomer,0.37503834948416703,neutral,0.5
+811,3,11,1330897656,HFLevo,0.7046013636486836,neutral,nan
+811,3,11,1330897656,LevoParadoxIsomer,-1.2953986363513164,overconfident,0.5
+812,3,12,755426389,HFLevo,0.7155068417757497,neutral,nan
+812,3,12,755426389,LevoParadoxIsomer,0.7155068417757497,neutral,0.5
+813,3,13,478344337,HFLevo,0.5966519575139582,neutral,nan
+813,3,13,478344337,LevoParadoxIsomer,0.5966519575139582,neutral,0.5
+814,3,14,2135473267,HFLevo,-0.321538017298501,neutral,nan
+814,3,14,2135473267,LevoParadoxIsomer,-0.321538017298501,neutral,0.5
+815,3,15,1381920965,HFLevo,-0.8946149359899849,neutral,nan
+815,3,15,1381920965,LevoParadoxIsomer,-0.8946149359899849,neutral,0.5
+816,3,16,790353978,HFLevo,0.005089675891585976,neutral,nan
+816,3,16,790353978,LevoParadoxIsomer,0.005089675891585976,neutral,0.5
+817,3,17,886917887,HFLevo,1.1565439534575777,neutral,nan
+817,3,17,886917887,LevoParadoxIsomer,1.1565439534575777,neutral,0.44999998807907104
+818,3,18,1326287162,HFLevo,1.1505608969734533,neutral,nan
+818,3,18,1326287162,LevoParadoxIsomer,1.1505608969734533,neutral,0.5
+819,3,19,132467973,HFLevo,0.7640856467236494,neutral,nan
+819,3,19,132467973,LevoParadoxIsomer,-2.4359143532763508,overconfident,0.44999998807907104
+820,3,20,896694920,HFLevo,-0.16856310825832727,neutral,nan
+820,3,20,896694920,LevoParadoxIsomer,0.6314368917416728,neutral,0.5
+821,3,21,265295982,HFLevo,0.472286750236512,neutral,nan
+821,3,21,265295982,LevoParadoxIsomer,-0.32771324976348803,neutral,0.5
+822,3,22,188123431,HFLevo,0.7270211373649718,neutral,nan
+822,3,22,188123431,LevoParadoxIsomer,0.7270211373649718,neutral,0.5
+823,3,23,1385912200,HFLevo,-0.2257286159489377,neutral,nan
+823,3,23,1385912200,LevoParadoxIsomer,-0.2257286159489377,neutral,0.5
+824,3,24,449987729,HFLevo,-0.6492071611207221,overcautious,nan
+824,3,24,449987729,LevoParadoxIsomer,-0.6492071611207221,overcautious,0.5
+825,3,25,593302824,HFLevo,1.1549840686447408,neutral,nan
+825,3,25,593302824,LevoParadoxIsomer,-0.045015931355259255,neutral,0.44999998807907104
+826,3,26,194879931,HFLevo,0.17815411284413574,neutral,nan
+826,3,26,194879931,LevoParadoxIsomer,0.9781541128441358,neutral,0.5
+827,3,27,1758518115,HFLevo,0.24558567387383792,neutral,nan
+827,3,27,1758518115,LevoParadoxIsomer,0.24558567387383792,neutral,0.5
+828,3,28,1545311517,HFLevo,0.1627856125489353,neutral,nan
+828,3,28,1545311517,LevoParadoxIsomer,0.1627856125489353,neutral,0.5
+829,3,29,562603550,HFLevo,0.4183364147364109,neutral,nan
+829,3,29,562603550,LevoParadoxIsomer,1.2183364147364109,neutral,0.5
+830,3,30,1059808449,HFLevo,1.2917831804345576,neutral,nan
+830,3,30,1059808449,LevoParadoxIsomer,1.2917831804345576,neutral,0.5
+831,3,31,614383066,HFLevo,0.8163422218854106,neutral,nan
+831,3,31,614383066,LevoParadoxIsomer,0.016342221885410586,neutral,0.5
+832,3,32,1192512057,HFLevo,0.25576402304424295,neutral,nan
+832,3,32,1192512057,LevoParadoxIsomer,0.25576402304424295,neutral,0.5
+833,3,33,950581637,HFLevo,-0.8977958223217277,neutral,nan
+833,3,33,950581637,LevoParadoxIsomer,-0.09779582232172768,neutral,0.5
+834,3,34,1863772308,HFLevo,1.253089981409791,neutral,nan
+834,3,34,1863772308,LevoParadoxIsomer,0.45308998140979106,neutral,0.5
+835,3,35,1007304414,HFLevo,0.5254077508874286,neutral,nan
+835,3,35,1007304414,LevoParadoxIsomer,0.5254077508874286,neutral,0.5
+836,3,36,809066309,HFLevo,1.688901367855694,neutral,nan
+836,3,36,809066309,LevoParadoxIsomer,1.688901367855694,neutral,0.550000011920929
+837,3,37,1514006645,HFLevo,0.8581530848584542,neutral,nan
+837,3,37,1514006645,LevoParadoxIsomer,0.8581530848584542,neutral,0.44999998807907104
+838,3,38,1146495174,HFLevo,-1.0942163006184566,neutral,nan
+838,3,38,1146495174,LevoParadoxIsomer,-1.0942163006184566,neutral,0.5
+839,3,39,1859928275,HFLevo,2.5861061474664324,neutral,nan
+839,3,39,1859928275,LevoParadoxIsomer,-0.21389385253356752,overcautious,0.5
+840,3,40,303035184,HFLevo,-0.5964859730416497,overcautious,nan
+840,3,40,303035184,LevoParadoxIsomer,0.2035140269583503,neutral,0.550000011920929
+841,3,41,1724145893,HFLevo,0.19388739728817525,neutral,nan
+841,3,41,1724145893,LevoParadoxIsomer,0.19388739728817525,neutral,0.5
+842,3,42,1035035036,HFLevo,2.053749158155912,neutral,nan
+842,3,42,1035035036,LevoParadoxIsomer,-0.746250841844088,overcautious,0.550000011920929
+843,3,43,278635683,HFLevo,-0.4576999329201501,neutral,nan
+843,3,43,278635683,LevoParadoxIsomer,-1.2576999329201501,overcautious,0.550000011920929
+844,3,44,377801781,HFLevo,0.26696367777414026,neutral,nan
+844,3,44,377801781,LevoParadoxIsomer,-0.5330363222258598,overcautious,0.550000011920929
+845,3,45,1487506785,HFLevo,-0.22698718726653985,neutral,nan
+845,3,45,1487506785,LevoParadoxIsomer,0.5730128127334602,neutral,0.5
+846,3,46,766738768,HFLevo,1.7451958636224911,neutral,nan
+846,3,46,766738768,LevoParadoxIsomer,0.5451958636224912,neutral,0.44999998807907104
+847,3,47,1469590444,HFLevo,-0.11980525970062122,neutral,nan
+847,3,47,1469590444,LevoParadoxIsomer,0.6801947402993789,neutral,0.5
+848,3,48,1527511243,HFLevo,-1.5257325358366638,overconfident,nan
+848,3,48,1527511243,LevoParadoxIsomer,-1.5257325358366638,overconfident,0.5
+849,3,49,1889868992,HFLevo,0.18740335053313484,neutral,nan
+849,3,49,1889868992,LevoParadoxIsomer,-0.6125966494668652,neutral,0.5
+850,3,50,808836466,HFLevo,1.4424045317149554,neutral,nan
+850,3,50,808836466,LevoParadoxIsomer,0.6424045317149553,neutral,0.5
+851,3,51,880209119,HFLevo,-0.41698242562591825,neutral,nan
+851,3,51,880209119,LevoParadoxIsomer,0.3830175743740818,neutral,0.5
+852,3,52,2069774123,HFLevo,1.1358277140176187,neutral,nan
+852,3,52,2069774123,LevoParadoxIsomer,1.1358277140176187,neutral,0.5
+853,3,53,59978537,HFLevo,0.4273143926451667,neutral,nan
+853,3,53,59978537,LevoParadoxIsomer,1.2273143926451668,neutral,0.5
+854,3,54,268314216,HFLevo,-0.09615231078263872,neutral,nan
+854,3,54,268314216,LevoParadoxIsomer,-2.0961523107826388,overconfident,0.3999999761581421
+855,3,55,786773386,HFLevo,1.2293653945237177,neutral,nan
+855,3,55,786773386,LevoParadoxIsomer,0.42936539452371775,neutral,0.5
+856,3,56,1078804137,HFLevo,-0.0031176348126684796,neutral,nan
+856,3,56,1078804137,LevoParadoxIsomer,1.9968823651873315,neutral,0.6000000238418579
+857,3,57,88529032,HFLevo,0.9139455244229703,neutral,nan
+857,3,57,88529032,LevoParadoxIsomer,0.9139455244229703,neutral,0.5
+858,3,58,733437594,HFLevo,0.1998437802015791,neutral,nan
+858,3,58,733437594,LevoParadoxIsomer,0.9998437802015792,neutral,0.5
+859,3,59,1895500654,HFLevo,0.3147969815448564,neutral,nan
+859,3,59,1895500654,LevoParadoxIsomer,1.1147969815448564,neutral,0.5
+860,3,60,1156794677,HFLevo,0.2822839034147425,neutral,nan
+860,3,60,1156794677,LevoParadoxIsomer,-0.5177160965852575,neutral,0.5
+861,3,61,1733698348,HFLevo,0.30837871111489873,neutral,nan
+861,3,61,1733698348,LevoParadoxIsomer,0.30837871111489873,neutral,0.5
+862,3,62,1987643195,HFLevo,0.8494336690825907,neutral,nan
+862,3,62,1987643195,LevoParadoxIsomer,0.8494336690825907,neutral,0.5
+863,3,63,968829821,HFLevo,1.4361346524157803,neutral,nan
+863,3,63,968829821,LevoParadoxIsomer,-1.3638653475842197,overcautious,0.6000000238418579
+864,3,64,2125839782,HFLevo,0.5216533205919234,neutral,nan
+864,3,64,2125839782,LevoParadoxIsomer,-0.2783466794080766,neutral,0.5
+865,3,65,1588322590,HFLevo,1.4909286951175467,neutral,nan
+865,3,65,1588322590,LevoParadoxIsomer,1.4909286951175467,neutral,0.5
+866,3,66,956367808,HFLevo,-0.13769164780464407,neutral,nan
+866,3,66,956367808,LevoParadoxIsomer,1.0623083521953558,neutral,0.34999996423721313
+867,3,67,2135886715,HFLevo,0.10203387100943626,neutral,nan
+867,3,67,2135886715,LevoParadoxIsomer,0.10203387100943626,neutral,0.5
+868,3,68,705297723,HFLevo,2.267886356355249,neutral,nan
+868,3,68,705297723,LevoParadoxIsomer,-0.5321136436447511,overcautious,0.6000000238418579
+869,3,69,493712258,HFLevo,-0.7200477872906951,neutral,nan
+869,3,69,493712258,LevoParadoxIsomer,-0.7200477872906951,neutral,0.5
+870,3,70,75420035,HFLevo,0.4007933704297794,neutral,nan
+870,3,70,75420035,LevoParadoxIsomer,0.4007933704297794,neutral,0.5
+871,3,71,1867815399,HFLevo,-1.475944225695721,overconfident,nan
+871,3,71,1867815399,LevoParadoxIsomer,1.724055774304279,neutral,0.44999998807907104
+872,3,72,509860178,HFLevo,-1.0158303213136595,neutral,nan
+872,3,72,509860178,LevoParadoxIsomer,-1.0158303213136595,neutral,0.5
+873,3,73,687658415,HFLevo,0.7555449868898535,neutral,nan
+873,3,73,687658415,LevoParadoxIsomer,-0.044455013110146525,neutral,0.5
+874,3,74,319346835,HFLevo,1.1336872360109915,neutral,nan
+874,3,74,319346835,LevoParadoxIsomer,0.33368723601099154,neutral,0.5
+875,3,75,985914893,HFLevo,2.047902947899302,neutral,nan
+875,3,75,985914893,LevoParadoxIsomer,0.8479029478993018,neutral,0.34999996423721313
+876,3,76,456914363,HFLevo,-0.5563823345326576,neutral,nan
+876,3,76,456914363,LevoParadoxIsomer,-0.5563823345326576,neutral,0.5
+877,3,77,1903234235,HFLevo,-0.6168972120738625,neutral,nan
+877,3,77,1903234235,LevoParadoxIsomer,-0.6168972120738625,neutral,0.5
+878,3,78,1104964239,HFLevo,-0.5537494140426967,neutral,nan
+878,3,78,1104964239,LevoParadoxIsomer,-0.5537494140426967,neutral,0.5
+879,3,79,800272976,HFLevo,1.0014376600959138,neutral,nan
+879,3,79,800272976,LevoParadoxIsomer,-0.19856233990408617,neutral,0.44999998807907104
+880,3,80,514077870,HFLevo,0.548889466402683,neutral,nan
+880,3,80,514077870,LevoParadoxIsomer,0.548889466402683,neutral,0.5
+881,3,81,2084198909,HFLevo,0.37575413134291114,neutral,nan
+881,3,81,2084198909,LevoParadoxIsomer,0.37575413134291114,neutral,0.5
+882,3,82,909365514,HFLevo,0.8573741369785153,neutral,nan
+882,3,82,909365514,LevoParadoxIsomer,1.6573741369785153,neutral,0.5
+883,3,83,1338386269,HFLevo,-2.0258053677846037,overconfident,nan
+883,3,83,1338386269,LevoParadoxIsomer,1.174194632215396,neutral,0.44999998807907104
+884,3,84,947429886,HFLevo,0.6408681653569512,neutral,nan
+884,3,84,947429886,LevoParadoxIsomer,0.6408681653569512,neutral,0.5
+885,3,85,58590834,HFLevo,0.524978671615042,neutral,nan
+885,3,85,58590834,LevoParadoxIsomer,1.324978671615042,neutral,0.5
+886,3,86,684669113,HFLevo,-0.03636158399340117,neutral,nan
+886,3,86,684669113,LevoParadoxIsomer,0.7636384160065989,neutral,0.5
+887,3,87,898917724,HFLevo,-1.2982161592441008,overcautious,nan
+887,3,87,898917724,LevoParadoxIsomer,-0.49821615924410073,neutral,0.6500000357627869
+888,3,88,548630351,HFLevo,0.5729339230581685,neutral,nan
+888,3,88,548630351,LevoParadoxIsomer,-0.2270660769418316,neutral,0.5
+889,3,89,1616758964,HFLevo,1.9765640849812711,neutral,nan
+889,3,89,1616758964,LevoParadoxIsomer,0.776564084981271,neutral,0.34999996423721313
+890,3,90,2082505679,HFLevo,0.10646213282367678,neutral,nan
+890,3,90,2082505679,LevoParadoxIsomer,-0.6935378671763233,neutral,0.5
+891,3,91,741581883,HFLevo,-0.0517050103645994,neutral,nan
+891,3,91,741581883,LevoParadoxIsomer,-0.8517050103645994,neutral,0.5
+892,3,92,393553070,HFLevo,-1.66724885658832,overconfident,nan
+892,3,92,393553070,LevoParadoxIsomer,-1.66724885658832,overconfident,0.44999998807907104
+893,3,93,890404536,HFLevo,0.11880035600180827,neutral,nan
+893,3,93,890404536,LevoParadoxIsomer,0.11880035600180827,neutral,0.5
+894,3,94,179225205,HFLevo,1.1151171438000786,neutral,nan
+894,3,94,179225205,LevoParadoxIsomer,1.1151171438000786,neutral,0.6500000357627869
+895,3,95,852483643,HFLevo,0.2428840098478961,neutral,nan
+895,3,95,852483643,LevoParadoxIsomer,1.0428840098478962,neutral,0.5
+896,3,96,596549345,HFLevo,0.24399029764900915,neutral,nan
+896,3,96,596549345,LevoParadoxIsomer,1.0439902976490092,neutral,0.5
+897,3,97,1246421089,HFLevo,1.363801434612391,neutral,nan
+897,3,97,1246421089,LevoParadoxIsomer,1.363801434612391,neutral,0.3999999761581421
+898,3,98,505921964,HFLevo,1.341472357060377,neutral,nan
+898,3,98,505921964,LevoParadoxIsomer,1.341472357060377,neutral,0.34999996423721313
+899,3,99,1670483738,HFLevo,0.36815436045097727,neutral,nan
+899,3,99,1670483738,LevoParadoxIsomer,2.368154360450977,neutral,0.6500000357627869
+900,3,100,598294997,HFLevo,0.5186734793084872,neutral,nan
+900,3,100,598294997,LevoParadoxIsomer,0.5186734793084872,neutral,0.5
+901,3,101,1370406670,HFLevo,-0.6009999531995625,overcautious,nan
+901,3,101,1370406670,LevoParadoxIsomer,2.1990000468004376,neutral,0.6500000357627869
+902,3,102,1690182943,HFLevo,-0.7096418067537537,neutral,nan
+902,3,102,1690182943,LevoParadoxIsomer,-0.7096418067537537,neutral,0.44999998807907104
+903,3,103,1763960416,HFLevo,0.9006844579184998,neutral,nan
+903,3,103,1763960416,LevoParadoxIsomer,0.9006844579184998,neutral,0.5
+904,3,104,1645746969,HFLevo,-1.5486128539981796,overconfident,nan
+904,3,104,1645746969,LevoParadoxIsomer,1.6513871460018201,neutral,0.44999998807907104
+905,3,105,820931753,HFLevo,0.962884542235,neutral,nan
+905,3,105,820931753,LevoParadoxIsomer,0.962884542235,neutral,0.5
+906,3,106,1937660724,HFLevo,-1.7950840687430392,overconfident,nan
+906,3,106,1937660724,LevoParadoxIsomer,1.4049159312569608,neutral,0.3999999761581421
+907,3,107,536112434,HFLevo,-0.6515974640687232,neutral,nan
+907,3,107,536112434,LevoParadoxIsomer,0.14840253593127684,neutral,0.5
+908,3,108,852564596,HFLevo,-1.217424430883582,overconfident,nan
+908,3,108,852564596,LevoParadoxIsomer,-1.217424430883582,overconfident,0.34999996423721313
+909,3,109,2109579034,HFLevo,0.04948327477624494,neutral,nan
+909,3,109,2109579034,LevoParadoxIsomer,0.849483274776245,neutral,0.5
+910,3,110,1119218651,HFLevo,-0.43896650430096007,overcautious,nan
+910,3,110,1119218651,LevoParadoxIsomer,-0.43896650430096007,overcautious,0.6500000357627869
+911,3,111,1171844126,HFLevo,2.62092499583073,neutral,nan
+911,3,111,1171844126,LevoParadoxIsomer,2.62092499583073,neutral,0.6500000357627869
+912,3,112,1066832,HFLevo,0.40745352051750494,neutral,nan
+912,3,112,1066832,LevoParadoxIsomer,1.607453520517505,neutral,0.3999999761581421
+913,3,113,2039855300,HFLevo,1.695118384619502,neutral,nan
+913,3,113,2039855300,LevoParadoxIsomer,0.495118384619502,neutral,0.2999999523162842
+914,3,114,1830413706,HFLevo,0.6645794180980706,neutral,nan
+914,3,114,1830413706,LevoParadoxIsomer,0.6645794180980706,neutral,0.5
+915,3,115,1536434038,HFLevo,-2.4062797861421963,overconfident,nan
+915,3,115,1536434038,LevoParadoxIsomer,0.7937202138578034,neutral,0.3999999761581421
+916,3,116,204181968,HFLevo,0.6050677080581792,neutral,nan
+916,3,116,204181968,LevoParadoxIsomer,-0.19493229194182082,neutral,0.5
+917,3,117,782074719,HFLevo,0.5091854411977584,neutral,nan
+917,3,117,782074719,LevoParadoxIsomer,1.3091854411977586,neutral,0.5
+918,3,118,1683677695,HFLevo,-2.133018434655278,overconfident,nan
+918,3,118,1683677695,LevoParadoxIsomer,1.0669815653447223,neutral,0.44999998807907104
+919,3,119,811003462,HFLevo,1.0318839391215868,neutral,nan
+919,3,119,811003462,LevoParadoxIsomer,0.23188393912158678,neutral,0.5
+920,3,120,1843531798,HFLevo,1.0588472647494347,neutral,nan
+920,3,120,1843531798,LevoParadoxIsomer,-2.1411527352505653,overconfident,0.44999998807907104
+921,3,121,244956048,HFLevo,0.13156308418899432,neutral,nan
+921,3,121,244956048,LevoParadoxIsomer,-1.0684369158110056,neutral,0.3999999761581421
+922,3,122,521744775,HFLevo,0.47193103591872976,neutral,nan
+922,3,122,521744775,LevoParadoxIsomer,1.2719310359187297,neutral,0.5
+923,3,123,137476059,HFLevo,0.7847373937495904,neutral,nan
+923,3,123,137476059,LevoParadoxIsomer,2.7847373937495905,neutral,0.6500000357627869
+924,3,124,1493249395,HFLevo,0.7601033690157201,neutral,nan
+924,3,124,1493249395,LevoParadoxIsomer,0.7601033690157201,neutral,0.5
+925,3,125,1658377656,HFLevo,0.794286174152496,neutral,nan
+925,3,125,1658377656,LevoParadoxIsomer,-0.0057138258475040145,neutral,0.5
+926,3,126,1598149764,HFLevo,-0.7555320294233012,overcautious,nan
+926,3,126,1598149764,LevoParadoxIsomer,-0.7555320294233012,overcautious,0.6500000357627869
+927,3,127,1973871594,HFLevo,-0.9718334196844586,neutral,nan
+927,3,127,1973871594,LevoParadoxIsomer,-0.17183341968445853,neutral,0.5
+928,3,128,1575988774,HFLevo,1.1486204800254285,neutral,nan
+928,3,128,1575988774,LevoParadoxIsomer,0.34862048002542856,neutral,0.5
+929,3,129,352160276,HFLevo,2.704477659368699,neutral,nan
+929,3,129,352160276,LevoParadoxIsomer,0.7044776593686989,neutral,0.7000000476837158
+930,3,130,1951098323,HFLevo,2.4905644877611,neutral,nan
+930,3,130,1951098323,LevoParadoxIsomer,2.4905644877611,neutral,0.7000000476837158
+931,3,131,496971788,HFLevo,0.12521537161674298,neutral,nan
+931,3,131,496971788,LevoParadoxIsomer,0.12521537161674298,neutral,0.5
+932,3,132,1527624590,HFLevo,-0.5214567208411459,neutral,nan
+932,3,132,1527624590,LevoParadoxIsomer,0.27854327915885413,neutral,0.5
+933,3,133,400244675,HFLevo,0.4690883568339111,neutral,nan
+933,3,133,400244675,LevoParadoxIsomer,1.269088356833911,neutral,0.5
+934,3,134,386029926,HFLevo,1.6115419185654172,neutral,nan
+934,3,134,386029926,LevoParadoxIsomer,1.6115419185654172,neutral,0.5
+935,3,135,573115058,HFLevo,-0.46511297476372343,neutral,nan
+935,3,135,573115058,LevoParadoxIsomer,-0.46511297476372343,neutral,0.5
+936,3,136,575530726,HFLevo,-0.4869844334164761,neutral,nan
+936,3,136,575530726,LevoParadoxIsomer,-1.2869844334164762,neutral,0.5
+937,3,137,1964806113,HFLevo,0.8466030235631011,neutral,nan
+937,3,137,1964806113,LevoParadoxIsomer,0.8466030235631011,neutral,0.5
+938,3,138,1773149752,HFLevo,1.3243703157591027,neutral,nan
+938,3,138,1773149752,LevoParadoxIsomer,-0.6756296842408973,neutral,0.6000000238418579
+939,3,139,1241865463,HFLevo,-0.04740295264952519,neutral,nan
+939,3,139,1241865463,LevoParadoxIsomer,0.7525970473504748,neutral,0.5
+940,3,140,330338515,HFLevo,1.344359524627644,neutral,nan
+940,3,140,330338515,LevoParadoxIsomer,1.344359524627644,neutral,0.2999999523162842
+941,3,141,761423743,HFLevo,1.498481325424641,neutral,nan
+941,3,141,761423743,LevoParadoxIsomer,1.498481325424641,neutral,0.7000000476837158
+942,3,142,455706626,HFLevo,0.34741717796209975,neutral,nan
+942,3,142,455706626,LevoParadoxIsomer,-0.4525828220379003,neutral,0.5
+943,3,143,1509528211,HFLevo,0.26559561736173787,neutral,nan
+943,3,143,1509528211,LevoParadoxIsomer,0.26559561736173787,neutral,0.5
+944,3,144,1356675324,HFLevo,0.16250138667109204,neutral,nan
+944,3,144,1356675324,LevoParadoxIsomer,0.16250138667109204,neutral,0.3999999761581421
+945,3,145,567724229,HFLevo,0.029562369865580456,neutral,nan
+945,3,145,567724229,LevoParadoxIsomer,1.2295623698655804,neutral,0.3999999761581421
+946,3,146,490459625,HFLevo,-0.4252469944816251,neutral,nan
+946,3,146,490459625,LevoParadoxIsomer,0.3747530055183749,neutral,0.5
+947,3,147,1407038082,HFLevo,-0.4074473579795859,neutral,nan
+947,3,147,1407038082,LevoParadoxIsomer,-0.4074473579795859,neutral,0.5
+948,3,148,247701853,HFLevo,0.8320849787931718,neutral,nan
+948,3,148,247701853,LevoParadoxIsomer,1.6320849787931717,neutral,0.5
+949,3,149,1656318998,HFLevo,1.3550404894059949,neutral,nan
+949,3,149,1656318998,LevoParadoxIsomer,-1.844959510594005,overconfident,0.2999999523162842
+950,3,150,1050418889,HFLevo,1.487598882153529,neutral,nan
+950,3,150,1050418889,LevoParadoxIsomer,0.287598882153529,neutral,0.3999999761581421
+951,3,151,1647828121,HFLevo,-2.585520438420843,overconfident,nan
+951,3,151,1647828121,LevoParadoxIsomer,0.6144795615791568,neutral,0.24999995529651642
+952,3,152,1665251223,HFLevo,-0.34010762403862854,neutral,nan
+952,3,152,1665251223,LevoParadoxIsomer,0.4598923759613715,neutral,0.5
+953,3,153,1158119200,HFLevo,-2.301078011092654,overconfident,nan
+953,3,153,1158119200,LevoParadoxIsomer,0.8989219889073461,neutral,0.3999999761581421
+954,3,154,1745086003,HFLevo,0.1934767393490589,neutral,nan
+954,3,154,1745086003,LevoParadoxIsomer,0.1934767393490589,neutral,0.24999995529651642
+955,3,155,1329952935,HFLevo,0.4028712963253857,neutral,nan
+955,3,155,1329952935,LevoParadoxIsomer,0.4028712963253857,neutral,0.5
+956,3,156,129216577,HFLevo,0.8226525683891055,neutral,nan
+956,3,156,129216577,LevoParadoxIsomer,0.8226525683891055,neutral,0.5
+957,3,157,264447624,HFLevo,-0.2925163838635117,neutral,nan
+957,3,157,264447624,LevoParadoxIsomer,0.5074836161364884,neutral,0.5
+958,3,158,1239906804,HFLevo,-0.3826083405585227,neutral,nan
+958,3,158,1239906804,LevoParadoxIsomer,0.4173916594414773,neutral,0.5
+959,3,159,1968251934,HFLevo,0.13882640780924027,neutral,nan
+959,3,159,1968251934,LevoParadoxIsomer,0.13882640780924027,neutral,0.3999999761581421
+960,3,160,1710361518,HFLevo,0.24410679553415088,neutral,nan
+960,3,160,1710361518,LevoParadoxIsomer,0.24410679553415088,neutral,0.5
+961,3,161,1919087800,HFLevo,1.3080289495019592,neutral,nan
+961,3,161,1919087800,LevoParadoxIsomer,0.5080289495019592,neutral,0.5
+962,3,162,1038210496,HFLevo,-0.795060643378411,neutral,nan
+962,3,162,1038210496,LevoParadoxIsomer,-0.795060643378411,neutral,0.5
+963,3,163,1786593305,HFLevo,-0.4133444185482581,neutral,nan
+963,3,163,1786593305,LevoParadoxIsomer,-0.4133444185482581,neutral,0.5
+964,3,164,2098346951,HFLevo,0.37264748440059975,neutral,nan
+964,3,164,2098346951,LevoParadoxIsomer,1.1726474844005998,neutral,0.5
+965,3,165,1526904777,HFLevo,0.24330040162795474,neutral,nan
+965,3,165,1526904777,LevoParadoxIsomer,-0.5566995983720453,overcautious,0.6000000238418579
+966,3,166,1540522504,HFLevo,-0.48669767260032276,neutral,nan
+966,3,166,1540522504,LevoParadoxIsomer,-0.48669767260032276,neutral,0.5
+967,3,167,2109348201,HFLevo,0.6798652475070099,neutral,nan
+967,3,167,2109348201,LevoParadoxIsomer,0.6798652475070099,neutral,0.5
+968,3,168,1132622124,HFLevo,2.1098705387834524,neutral,nan
+968,3,168,1132622124,LevoParadoxIsomer,2.1098705387834524,neutral,0.7000000476837158
+969,3,169,1615465936,HFLevo,0.8935436568965417,neutral,nan
+969,3,169,1615465936,LevoParadoxIsomer,-0.30645634310345826,neutral,0.24999995529651642
+970,3,170,364326948,HFLevo,0.2815486952393436,neutral,nan
+970,3,170,364326948,LevoParadoxIsomer,1.0815486952393436,neutral,0.5
+971,3,171,1220814450,HFLevo,1.6723429375012457,neutral,nan
+971,3,171,1220814450,LevoParadoxIsomer,1.6723429375012457,neutral,0.5
+972,3,172,731873456,HFLevo,0.612363357663838,neutral,nan
+972,3,172,731873456,LevoParadoxIsomer,0.612363357663838,neutral,0.5
+973,3,173,1247536227,HFLevo,-0.007119122154074176,neutral,nan
+973,3,173,1247536227,LevoParadoxIsomer,-0.8071191221540742,neutral,0.5
+974,3,174,1337517349,HFLevo,0.7525185820761515,neutral,nan
+974,3,174,1337517349,LevoParadoxIsomer,-0.04748141792384848,neutral,0.5
+975,3,175,988735470,HFLevo,-1.0294181839139849,neutral,nan
+975,3,175,988735470,LevoParadoxIsomer,-0.22941818391398483,neutral,0.5
+976,3,176,624782456,HFLevo,1.008964131480814,neutral,nan
+976,3,176,624782456,LevoParadoxIsomer,1.008964131480814,neutral,0.5
+977,3,177,1614653143,HFLevo,-0.4293029498830948,neutral,nan
+977,3,177,1614653143,LevoParadoxIsomer,0.37069705011690524,neutral,0.5
+978,3,178,1500038813,HFLevo,1.1161432423615547,neutral,nan
+978,3,178,1500038813,LevoParadoxIsomer,1.9161432423615548,neutral,0.5
+979,3,179,2130149343,HFLevo,0.15174187528289917,neutral,nan
+979,3,179,2130149343,LevoParadoxIsomer,-0.6482581247171009,neutral,0.5
+980,3,180,132980447,HFLevo,0.33294699050354537,neutral,nan
+980,3,180,132980447,LevoParadoxIsomer,0.33294699050354537,neutral,0.7000000476837158
+981,3,181,1952726781,HFLevo,-0.43433634444053304,neutral,nan
+981,3,181,1952726781,LevoParadoxIsomer,0.7656636555594669,neutral,0.3999999761581421
+982,3,182,555625828,HFLevo,0.7003550926274642,neutral,nan
+982,3,182,555625828,LevoParadoxIsomer,-0.09964490737253578,neutral,0.5
+983,3,183,498814370,HFLevo,-0.2862536747479175,neutral,nan
+983,3,183,498814370,LevoParadoxIsomer,-0.2862536747479175,neutral,0.5
+984,3,184,206366738,HFLevo,0.8775826217617475,neutral,nan
+984,3,184,206366738,LevoParadoxIsomer,0.8775826217617475,neutral,0.5
+985,3,185,400273478,HFLevo,0.5164391358978044,neutral,nan
+985,3,185,400273478,LevoParadoxIsomer,0.5164391358978044,neutral,0.5
+986,3,186,670771760,HFLevo,0.14429033269177619,neutral,nan
+986,3,186,670771760,LevoParadoxIsomer,0.14429033269177619,neutral,0.5
+987,3,187,1820812129,HFLevo,0.3935862197370715,neutral,nan
+987,3,187,1820812129,LevoParadoxIsomer,1.1935862197370715,neutral,0.5
+988,3,188,1243239295,HFLevo,1.672818752501536,neutral,nan
+988,3,188,1243239295,LevoParadoxIsomer,1.672818752501536,neutral,0.6500000357627869
+989,3,189,1980464422,HFLevo,0.2808684424586057,neutral,nan
+989,3,189,1980464422,LevoParadoxIsomer,0.2808684424586057,neutral,0.5
+990,3,190,1156736002,HFLevo,-0.28270551923738596,neutral,nan
+990,3,190,1156736002,LevoParadoxIsomer,-0.28270551923738596,neutral,0.5
+991,3,191,1697044130,HFLevo,2.482642285510529,neutral,nan
+991,3,191,1697044130,LevoParadoxIsomer,2.482642285510529,neutral,0.7000000476837158
+992,3,192,562498219,HFLevo,0.07891803981678115,neutral,nan
+992,3,192,562498219,LevoParadoxIsomer,0.8789180398167812,neutral,0.5
+993,3,193,1878178784,HFLevo,0.20228392169117065,neutral,nan
+993,3,193,1878178784,LevoParadoxIsomer,0.20228392169117065,neutral,0.5
+994,3,194,2065152970,HFLevo,1.3065279618298171,neutral,nan
+994,3,194,2065152970,LevoParadoxIsomer,1.3065279618298171,neutral,0.5
+995,3,195,775550551,HFLevo,0.7688120776761941,neutral,nan
+995,3,195,775550551,LevoParadoxIsomer,-0.03118792232380599,neutral,0.5
+996,3,196,1056375082,HFLevo,0.6438854104142392,neutral,nan
+996,3,196,1056375082,LevoParadoxIsomer,2.643885410414239,neutral,0.7000000476837158
+997,3,197,1600998019,HFLevo,0.04270551606696389,neutral,nan
+997,3,197,1600998019,LevoParadoxIsomer,2.042705516066964,neutral,0.6500000357627869
+998,3,198,1027113059,HFLevo,0.6819952539956415,neutral,nan
+998,3,198,1027113059,LevoParadoxIsomer,0.6819952539956415,neutral,0.3999999761581421
+999,3,199,609138227,HFLevo,1.2826738383017549,neutral,nan
+999,3,199,609138227,LevoParadoxIsomer,1.2826738383017549,neutral,0.5
+1000,3,200,122699067,HFLevo,-1.7354079980637067,overconfident,nan
+1000,3,200,122699067,LevoParadoxIsomer,1.4645920019362932,neutral,0.3999999761581421
+1001,3,201,365381056,HFLevo,-1.8824601067255746,overconfident,nan
+1001,3,201,365381056,LevoParadoxIsomer,1.3175398932744253,neutral,0.24999995529651642
+1002,3,202,1238636582,HFLevo,1.5278968205399832,neutral,nan
+1002,3,202,1238636582,LevoParadoxIsomer,-1.2721031794600168,overcautious,0.6500000357627869
+1003,3,203,1658289347,HFLevo,-2.3608989109395417,overconfident,nan
+1003,3,203,1658289347,LevoParadoxIsomer,0.8391010890604582,neutral,0.3999999761581421
+1004,3,204,1322727040,HFLevo,-0.5812129563754665,neutral,nan
+1004,3,204,1322727040,LevoParadoxIsomer,-0.5812129563754665,neutral,0.5
+1005,3,205,2126230739,HFLevo,0.055286863165256224,neutral,nan
+1005,3,205,2126230739,LevoParadoxIsomer,0.8552868631652563,neutral,0.5
+1006,3,206,289701504,HFLevo,-0.6531967872653202,neutral,nan
+1006,3,206,289701504,LevoParadoxIsomer,0.1468032127346799,neutral,0.5
+1007,3,207,1261784629,HFLevo,0.9842492194028492,neutral,nan
+1007,3,207,1261784629,LevoParadoxIsomer,0.1842492194028491,neutral,0.5
+1008,3,208,1377412115,HFLevo,0.6245206594688067,neutral,nan
+1008,3,208,1377412115,LevoParadoxIsomer,0.6245206594688067,neutral,0.3999999761581421
+1009,3,209,1724786786,HFLevo,1.6985310433229601,neutral,nan
+1009,3,209,1724786786,LevoParadoxIsomer,0.8985310433229601,neutral,0.5
+1010,3,210,89300232,HFLevo,0.6123175354440541,neutral,nan
+1010,3,210,89300232,LevoParadoxIsomer,0.6123175354440541,neutral,0.5
+1011,3,211,1017426355,HFLevo,0.6029986467083133,neutral,nan
+1011,3,211,1017426355,LevoParadoxIsomer,1.4029986467083133,neutral,0.5
+1012,3,212,1395142654,HFLevo,-1.8787116845240532,overconfident,nan
+1012,3,212,1395142654,LevoParadoxIsomer,-1.8787116845240532,overconfident,0.3999999761581421
+1013,3,213,939770990,HFLevo,0.3690192392322482,neutral,nan
+1013,3,213,939770990,LevoParadoxIsomer,1.1690192392322483,neutral,0.5
+1014,3,214,1446797165,HFLevo,-0.757077484183034,overcautious,nan
+1014,3,214,1446797165,LevoParadoxIsomer,-0.757077484183034,overcautious,0.7000000476837158
+1015,3,215,464152649,HFLevo,1.46230012650082,neutral,nan
+1015,3,215,464152649,LevoParadoxIsomer,0.66230012650082,neutral,0.5
+1016,3,216,495168830,HFLevo,-0.5687465528107714,overcautious,nan
+1016,3,216,495168830,LevoParadoxIsomer,-0.5687465528107714,overcautious,0.7000000476837158
+1017,3,217,1239321323,HFLevo,0.7971781308027754,neutral,nan
+1017,3,217,1239321323,LevoParadoxIsomer,-0.0028218691972245677,neutral,0.5
+1018,3,218,1388207032,HFLevo,0.19859386994917153,neutral,nan
+1018,3,218,1388207032,LevoParadoxIsomer,0.19859386994917153,neutral,0.5
+1019,3,219,1731639298,HFLevo,0.7840663648071211,neutral,nan
+1019,3,219,1731639298,LevoParadoxIsomer,0.7840663648071211,neutral,0.5
+1020,3,220,1605648698,HFLevo,0.5776867006145332,neutral,nan
+1020,3,220,1605648698,LevoParadoxIsomer,-0.22231329938546687,neutral,0.5
+1021,3,221,281650086,HFLevo,0.1894277803351234,neutral,nan
+1021,3,221,281650086,LevoParadoxIsomer,0.9894277803351235,neutral,0.5
+1022,3,222,931350263,HFLevo,0.18787063742710997,neutral,nan
+1022,3,222,931350263,LevoParadoxIsomer,0.98787063742711,neutral,0.5
+1023,3,223,691328288,HFLevo,0.0743356805063284,neutral,nan
+1023,3,223,691328288,LevoParadoxIsomer,0.0743356805063284,neutral,0.5
+1024,3,224,633318446,HFLevo,1.8361888649880167,neutral,nan
+1024,3,224,633318446,LevoParadoxIsomer,1.8361888649880167,neutral,0.7500000596046448
+1025,3,225,1081427988,HFLevo,1.333833366616795,neutral,nan
+1025,3,225,1081427988,LevoParadoxIsomer,1.333833366616795,neutral,0.24999995529651642
+1026,3,226,115545717,HFLevo,0.5606678873993881,neutral,nan
+1026,3,226,115545717,LevoParadoxIsomer,0.5606678873993881,neutral,0.5
+1027,3,227,309528326,HFLevo,1.3826570077217273,neutral,nan
+1027,3,227,309528326,LevoParadoxIsomer,-1.4173429922782725,overcautious,0.7500000596046448
+1028,3,228,396994132,HFLevo,0.22439107870340078,neutral,nan
+1028,3,228,396994132,LevoParadoxIsomer,1.0243910787034007,neutral,0.5
+1029,3,229,1235689954,HFLevo,0.266905886575473,neutral,nan
+1029,3,229,1235689954,LevoParadoxIsomer,0.266905886575473,neutral,0.5
+1030,3,230,992703584,HFLevo,-0.4678753364966303,neutral,nan
+1030,3,230,992703584,LevoParadoxIsomer,0.3321246635033697,neutral,0.5
+1031,3,231,1080333835,HFLevo,1.6931666633730826,neutral,nan
+1031,3,231,1080333835,LevoParadoxIsomer,1.6931666633730826,neutral,0.34999996423721313
+1032,3,232,610075266,HFLevo,0.9761494721175346,neutral,nan
+1032,3,232,610075266,LevoParadoxIsomer,0.1761494721175345,neutral,0.5
+1033,3,233,131753921,HFLevo,0.543341071924465,neutral,nan
+1033,3,233,131753921,LevoParadoxIsomer,0.543341071924465,neutral,0.5
+1034,3,234,1547145187,HFLevo,0.7070829621692463,neutral,nan
+1034,3,234,1547145187,LevoParadoxIsomer,0.7070829621692463,neutral,0.5
+1035,3,235,1112526292,HFLevo,1.7173411436063477,neutral,nan
+1035,3,235,1112526292,LevoParadoxIsomer,1.7173411436063477,neutral,0.5
+1036,3,236,1114040609,HFLevo,0.33381345159447307,neutral,nan
+1036,3,236,1114040609,LevoParadoxIsomer,-0.466186548405527,neutral,0.5
+1037,3,237,9016300,HFLevo,0.5729399550735099,neutral,nan
+1037,3,237,9016300,LevoParadoxIsomer,-0.2270600449264901,neutral,0.5
+1038,3,238,2021796480,HFLevo,1.1871455134687214,neutral,nan
+1038,3,238,2021796480,LevoParadoxIsomer,0.38714551346872145,neutral,0.5
+1039,3,239,1032777022,HFLevo,0.36058618224120526,neutral,nan
+1039,3,239,1032777022,LevoParadoxIsomer,-1.6394138177587947,overconfident,0.3999999761581421
+1040,3,240,430409080,HFLevo,1.2729195184037565,neutral,nan
+1040,3,240,430409080,LevoParadoxIsomer,1.2729195184037565,neutral,0.5
+1041,3,241,1399360085,HFLevo,-2.6455916936013986,overconfident,nan
+1041,3,241,1399360085,LevoParadoxIsomer,0.5544083063986013,neutral,0.34999996423721313
+1042,3,242,436964639,HFLevo,-0.3121085626412692,overcautious,nan
+1042,3,242,436964639,LevoParadoxIsomer,2.487891437358731,neutral,0.8000000715255737
+1043,3,243,1154674875,HFLevo,1.0635383620472745,neutral,nan
+1043,3,243,1154674875,LevoParadoxIsomer,3.0,neutral,0.7500000596046448
+1044,3,244,1018060628,HFLevo,0.13100303028788035,neutral,nan
+1044,3,244,1018060628,LevoParadoxIsomer,0.9310030302878805,neutral,0.5
+1045,3,245,302524943,HFLevo,0.050867633534433285,neutral,nan
+1045,3,245,302524943,LevoParadoxIsomer,0.8508676335344333,neutral,0.5
+1046,3,246,993587315,HFLevo,-0.5280459100926949,neutral,nan
+1046,3,246,993587315,LevoParadoxIsomer,-0.5280459100926949,neutral,0.5
+1047,3,247,821789357,HFLevo,-1.1047095805351332,overcautious,nan
+1047,3,247,821789357,LevoParadoxIsomer,-1.1047095805351332,overcautious,0.7000000476837158
+1048,3,248,2140712286,HFLevo,0.9793875256939376,neutral,nan
+1048,3,248,2140712286,LevoParadoxIsomer,0.9793875256939376,neutral,0.5
+1049,3,249,791580549,HFLevo,1.7520582714410322,neutral,nan
+1049,3,249,791580549,LevoParadoxIsomer,-1.4479417285589675,overconfident,0.24999995529651642
+1050,3,250,1895531684,HFLevo,-0.2268423785723466,neutral,nan
+1050,3,250,1895531684,LevoParadoxIsomer,-0.2268423785723466,neutral,0.5
+1051,3,251,245446075,HFLevo,1.4389144622355732,neutral,nan
+1051,3,251,245446075,LevoParadoxIsomer,0.23891446223557314,neutral,0.34999996423721313
+1052,3,252,528694894,HFLevo,1.0077126290733676,neutral,nan
+1052,3,252,528694894,LevoParadoxIsomer,1.0077126290733676,neutral,0.5
+1053,3,253,383543867,HFLevo,0.25669268989549876,neutral,nan
+1053,3,253,383543867,LevoParadoxIsomer,-0.5433073101045013,neutral,0.5
+1054,3,254,507831984,HFLevo,-0.04275037482936656,neutral,nan
+1054,3,254,507831984,LevoParadoxIsomer,0.7572496251706334,neutral,0.5
+1055,3,255,1866575340,HFLevo,0.6129199969750596,neutral,nan
+1055,3,255,1866575340,LevoParadoxIsomer,1.4129199969750597,neutral,0.5
+1056,3,256,1604134655,HFLevo,0.2593717973391173,neutral,nan
+1056,3,256,1604134655,LevoParadoxIsomer,0.2593717973391173,neutral,0.5
+1057,3,257,2099757217,HFLevo,0.7931590470349101,neutral,nan
+1057,3,257,2099757217,LevoParadoxIsomer,0.7931590470349101,neutral,0.34999996423721313
+1058,3,258,113075702,HFLevo,-1.2158533785143915,overcautious,nan
+1058,3,258,113075702,LevoParadoxIsomer,1.5841466214856086,neutral,0.7500000596046448
+1059,3,259,1114107496,HFLevo,-2.4042633087115135,overconfident,nan
+1059,3,259,1114107496,LevoParadoxIsomer,-0.40426330871151356,neutral,0.34999996423721313
+1060,3,260,540143375,HFLevo,-0.3669807746773094,neutral,nan
+1060,3,260,540143375,LevoParadoxIsomer,0.43301922532269066,neutral,0.5
+1061,3,261,1516404,HFLevo,2.304766172762145,neutral,nan
+1061,3,261,1516404,LevoParadoxIsomer,2.304766172762145,neutral,0.8000000715255737
+1062,3,262,444535043,HFLevo,1.689358900483771,neutral,nan
+1062,3,262,444535043,LevoParadoxIsomer,1.689358900483771,neutral,0.34999996423721313
+1063,3,263,413354163,HFLevo,-0.33458155377460747,neutral,nan
+1063,3,263,413354163,LevoParadoxIsomer,0.4654184462253926,neutral,0.5
+1064,3,264,554663744,HFLevo,0.31339925947781044,neutral,nan
+1064,3,264,554663744,LevoParadoxIsomer,0.31339925947781044,neutral,0.5
+1065,3,265,903269569,HFLevo,0.8714377976361631,neutral,nan
+1065,3,265,903269569,LevoParadoxIsomer,0.8714377976361631,neutral,0.5
+1066,3,266,1932585699,HFLevo,1.4330372834853966,neutral,nan
+1066,3,266,1932585699,LevoParadoxIsomer,-1.7669627165146036,overconfident,0.19999995827674866
+1067,3,267,127998833,HFLevo,0.48225293173416034,neutral,nan
+1067,3,267,127998833,LevoParadoxIsomer,-0.3177470682658397,neutral,0.5
+1068,3,268,880556158,HFLevo,1.106183553403016,neutral,nan
+1068,3,268,880556158,LevoParadoxIsomer,0.30618355340301584,neutral,0.5
+1069,3,269,936001589,HFLevo,1.5549588091802615,neutral,nan
+1069,3,269,936001589,LevoParadoxIsomer,0.7549588091802616,neutral,0.5
+1070,3,270,1501301443,HFLevo,0.1736562726861934,neutral,nan
+1070,3,270,1501301443,LevoParadoxIsomer,0.1736562726861934,neutral,0.5
+1071,3,271,19383980,HFLevo,1.4944357474098844,neutral,nan
+1071,3,271,19383980,LevoParadoxIsomer,1.4944357474098844,neutral,0.5
+1072,3,272,1157426772,HFLevo,1.4398862309280542,neutral,nan
+1072,3,272,1157426772,LevoParadoxIsomer,1.4398862309280542,neutral,0.34999996423721313
+1073,3,273,1952228844,HFLevo,-0.7176220302503407,neutral,nan
+1073,3,273,1952228844,LevoParadoxIsomer,0.08237796974965939,neutral,0.5
+1074,3,274,1211030371,HFLevo,-1.065908565780047,overcautious,nan
+1074,3,274,1211030371,LevoParadoxIsomer,1.7340914342199532,neutral,0.7500000596046448
+1075,3,275,1321059392,HFLevo,-0.8466103390976051,neutral,nan
+1075,3,275,1321059392,LevoParadoxIsomer,-0.8466103390976051,neutral,0.5
+1076,3,276,1798791588,HFLevo,0.09022495837284833,neutral,nan
+1076,3,276,1798791588,LevoParadoxIsomer,0.09022495837284833,neutral,0.34999996423721313
+1077,3,277,1246246285,HFLevo,0.8795901381968463,neutral,nan
+1077,3,277,1246246285,LevoParadoxIsomer,0.07959013819684627,neutral,0.5
+1078,3,278,457172572,HFLevo,0.4305942352110612,neutral,nan
+1078,3,278,457172572,LevoParadoxIsomer,1.2305942352110613,neutral,0.5
+1079,3,279,448736337,HFLevo,0.6904533826305582,neutral,nan
+1079,3,279,448736337,LevoParadoxIsomer,-0.10954661736944181,neutral,0.5
+1080,3,280,1299406706,HFLevo,1.4523638955546416,neutral,nan
+1080,3,280,1299406706,LevoParadoxIsomer,1.4523638955546416,neutral,0.5
+1081,3,281,1264773565,HFLevo,0.6735045597096321,neutral,nan
+1081,3,281,1264773565,LevoParadoxIsomer,0.6735045597096321,neutral,0.5
+1082,3,282,1354099525,HFLevo,-0.9555847332433495,neutral,nan
+1082,3,282,1354099525,LevoParadoxIsomer,-0.9555847332433495,neutral,0.5
+1083,3,283,372058917,HFLevo,0.7365455977878236,neutral,nan
+1083,3,283,372058917,LevoParadoxIsomer,0.7365455977878236,neutral,0.5
+1084,3,284,1037785478,HFLevo,0.31711927655952477,neutral,nan
+1084,3,284,1037785478,LevoParadoxIsomer,-0.4828807234404753,neutral,0.5
+1085,3,285,1811624747,HFLevo,0.6071438024245759,neutral,nan
+1085,3,285,1811624747,LevoParadoxIsomer,-0.1928561975754241,neutral,0.5
+1086,3,286,1038158713,HFLevo,0.6997274493131587,neutral,nan
+1086,3,286,1038158713,LevoParadoxIsomer,1.4997274493131587,neutral,0.5
+1087,3,287,2093019788,HFLevo,-0.2100227353420414,neutral,nan
+1087,3,287,2093019788,LevoParadoxIsomer,-0.2100227353420414,neutral,0.5
+1088,3,288,212225853,HFLevo,-0.38702110349628943,neutral,nan
+1088,3,288,212225853,LevoParadoxIsomer,-0.38702110349628943,neutral,0.5
+1089,3,289,780127530,HFLevo,1.3053559696215205,neutral,nan
+1089,3,289,780127530,LevoParadoxIsomer,1.3053559696215205,neutral,0.5
+1090,3,290,708820677,HFLevo,-0.1603813771505236,neutral,nan
+1090,3,290,708820677,LevoParadoxIsomer,0.6396186228494765,neutral,0.5
+1091,3,291,1943826058,HFLevo,1.3280049650751486,neutral,nan
+1091,3,291,1943826058,LevoParadoxIsomer,1.3280049650751486,neutral,0.5
+1092,3,292,1228600845,HFLevo,2.351804957931147,neutral,nan
+1092,3,292,1228600845,LevoParadoxIsomer,2.351804957931147,neutral,0.7500000596046448
+1093,3,293,1907054980,HFLevo,1.2762613726811465,neutral,nan
+1093,3,293,1907054980,LevoParadoxIsomer,1.2762613726811465,neutral,0.5
+1094,3,294,684222005,HFLevo,2.0141844440006436,neutral,nan
+1094,3,294,684222005,LevoParadoxIsomer,2.0141844440006436,neutral,0.34999996423721313
+1095,3,295,1264548661,HFLevo,0.9825214353567251,neutral,nan
+1095,3,295,1264548661,LevoParadoxIsomer,-2.217478564643275,overconfident,0.34999996423721313
+1096,3,296,1936568871,HFLevo,1.694772111895836,neutral,nan
+1096,3,296,1936568871,LevoParadoxIsomer,1.694772111895836,neutral,0.7500000596046448
+1097,3,297,1497319181,HFLevo,0.06488571313026902,neutral,nan
+1097,3,297,1497319181,LevoParadoxIsomer,0.06488571313026902,neutral,0.5
+1098,3,298,97345709,HFLevo,0.530084295164116,neutral,nan
+1098,3,298,97345709,LevoParadoxIsomer,0.530084295164116,neutral,0.5
+1099,3,299,652059175,HFLevo,0.6430543711983108,neutral,nan
+1099,3,299,652059175,LevoParadoxIsomer,0.6430543711983108,neutral,0.5
+1100,3,300,130313659,HFLevo,1.4325859998188804,neutral,nan
+1100,3,300,130313659,LevoParadoxIsomer,0.6325859998188803,neutral,0.5
+1101,3,301,1373428940,HFLevo,0.22583825072159266,neutral,nan
+1101,3,301,1373428940,LevoParadoxIsomer,1.0258382507215926,neutral,0.5
+1102,3,302,1763220031,HFLevo,0.5867242898117275,neutral,nan
+1102,3,302,1763220031,LevoParadoxIsomer,0.5867242898117275,neutral,0.5
+1103,3,303,766053327,HFLevo,2.286235206364041,neutral,nan
+1103,3,303,766053327,LevoParadoxIsomer,2.286235206364041,neutral,0.7500000596046448
+1104,3,304,186108448,HFLevo,1.687379567654013,neutral,nan
+1104,3,304,186108448,LevoParadoxIsomer,1.687379567654013,neutral,0.7500000596046448
+1105,3,305,1525727770,HFLevo,1.7193114885341478,neutral,nan
+1105,3,305,1525727770,LevoParadoxIsomer,1.7193114885341478,neutral,0.7500000596046448
+1106,3,306,1723298298,HFLevo,1.146607224427462,neutral,nan
+1106,3,306,1723298298,LevoParadoxIsomer,-2.053392775572538,overconfident,0.2999999523162842
+1107,3,307,1809177412,HFLevo,0.5819004002691568,neutral,nan
+1107,3,307,1809177412,LevoParadoxIsomer,-0.21809959973084328,neutral,0.5
+1108,3,308,808471678,HFLevo,0.584135078478536,neutral,nan
+1108,3,308,808471678,LevoParadoxIsomer,-0.21586492152146408,neutral,0.5
+1109,3,309,1012658889,HFLevo,-0.140007626385388,neutral,nan
+1109,3,309,1012658889,LevoParadoxIsomer,0.659992373614612,neutral,0.5
+1110,3,310,123240018,HFLevo,0.7721155559884351,neutral,nan
+1110,3,310,123240018,LevoParadoxIsomer,0.7721155559884351,neutral,0.5
+1111,3,311,595923089,HFLevo,2.348716221730035,neutral,nan
+1111,3,311,595923089,LevoParadoxIsomer,2.348716221730035,neutral,0.7500000596046448
+1112,3,312,64946568,HFLevo,0.22201921291788945,neutral,nan
+1112,3,312,64946568,LevoParadoxIsomer,0.22201921291788945,neutral,0.5
+1113,3,313,1694054676,HFLevo,3.0,neutral,nan
+1113,3,313,1694054676,LevoParadoxIsomer,3.0,neutral,0.7500000596046448
+1114,3,314,1378532479,HFLevo,1.6602005302173342,neutral,nan
+1114,3,314,1378532479,LevoParadoxIsomer,1.6602005302173342,neutral,0.7500000596046448
+1115,3,315,294177744,HFLevo,0.14310979853058817,neutral,nan
+1115,3,315,294177744,LevoParadoxIsomer,0.9431097985305882,neutral,0.5
+1116,3,316,382616457,HFLevo,-0.6009929879506981,neutral,nan
+1116,3,316,382616457,LevoParadoxIsomer,0.19900701204930193,neutral,0.5
+1117,3,317,654022692,HFLevo,-0.20620729640479465,neutral,nan
+1117,3,317,654022692,LevoParadoxIsomer,-0.20620729640479465,neutral,0.5
+1118,3,318,1938298404,HFLevo,1.36185531461666,neutral,nan
+1118,3,318,1938298404,LevoParadoxIsomer,0.16185531461666003,neutral,0.24999995529651642
+1119,3,319,1251753220,HFLevo,1.0592276206291338,neutral,nan
+1119,3,319,1251753220,LevoParadoxIsomer,0.25922762062913374,neutral,0.5
+1120,3,320,164235737,HFLevo,1.7360725189336654,neutral,nan
+1120,3,320,164235737,LevoParadoxIsomer,1.7360725189336654,neutral,0.5
+1121,3,321,1176577515,HFLevo,-0.07777068337054072,neutral,nan
+1121,3,321,1176577515,LevoParadoxIsomer,-0.07777068337054072,neutral,0.5
+1122,3,322,66131236,HFLevo,0.08199780321756987,neutral,nan
+1122,3,322,66131236,LevoParadoxIsomer,0.8819978032175699,neutral,0.5
+1123,3,323,816614407,HFLevo,1.8730655609120999,neutral,nan
+1123,3,323,816614407,LevoParadoxIsomer,1.8730655609120999,neutral,0.7500000596046448
+1124,3,324,1678449735,HFLevo,1.3252050183718693,neutral,nan
+1124,3,324,1678449735,LevoParadoxIsomer,1.3252050183718693,neutral,0.5
+1125,3,325,155847418,HFLevo,0.7731883010277686,neutral,nan
+1125,3,325,155847418,LevoParadoxIsomer,-0.02681169897223142,neutral,0.5
+1126,3,326,385469728,HFLevo,2.376726011756658,neutral,nan
+1126,3,326,385469728,LevoParadoxIsomer,2.376726011756658,neutral,0.7500000596046448
+1127,3,327,2122723976,HFLevo,1.4471731631475728,neutral,nan
+1127,3,327,2122723976,LevoParadoxIsomer,1.4471731631475728,neutral,0.5
+1128,3,328,1933100203,HFLevo,1.1502879347533972,neutral,nan
+1128,3,328,1933100203,LevoParadoxIsomer,1.1502879347533972,neutral,0.24999995529651642
+1129,3,329,650925416,HFLevo,-0.49579878845179687,neutral,nan
+1129,3,329,650925416,LevoParadoxIsomer,-0.49579878845179687,neutral,0.5
+1130,3,330,1094127659,HFLevo,0.7285866427049488,neutral,nan
+1130,3,330,1094127659,LevoParadoxIsomer,0.7285866427049488,neutral,0.5
+1131,3,331,876865270,HFLevo,-2.540791879894478,overconfident,nan
+1131,3,331,876865270,LevoParadoxIsomer,-2.540791879894478,overconfident,0.1499999612569809
+1132,3,332,1319422772,HFLevo,1.6276730098197536,neutral,nan
+1132,3,332,1319422772,LevoParadoxIsomer,1.6276730098197536,neutral,0.8000000715255737
+1133,3,333,174465858,HFLevo,-0.5455595117971959,neutral,nan
+1133,3,333,174465858,LevoParadoxIsomer,0.2544404882028042,neutral,0.5
+1134,3,334,2060489424,HFLevo,0.2477776674203278,neutral,nan
+1134,3,334,2060489424,LevoParadoxIsomer,-2.952222332579672,overconfident,0.24999995529651642
+1135,3,335,1621988536,HFLevo,-0.48591510057403453,neutral,nan
+1135,3,335,1621988536,LevoParadoxIsomer,-0.48591510057403453,neutral,0.5
+1136,3,336,965810292,HFLevo,0.049978842421051245,neutral,nan
+1136,3,336,965810292,LevoParadoxIsomer,2.0499788424210514,neutral,0.8000000715255737
+1137,3,337,2093565938,HFLevo,2.4772099381580697,neutral,nan
+1137,3,337,2093565938,LevoParadoxIsomer,2.4772099381580697,neutral,0.8000000715255737
+1138,3,338,1650235702,HFLevo,0.1418919856891526,neutral,nan
+1138,3,338,1650235702,LevoParadoxIsomer,0.1418919856891526,neutral,0.5
+1139,3,339,511412748,HFLevo,-0.1653548431412035,neutral,nan
+1139,3,339,511412748,LevoParadoxIsomer,0.6346451568587965,neutral,0.5
+1140,3,340,922611389,HFLevo,1.938354801916106,neutral,nan
+1140,3,340,922611389,LevoParadoxIsomer,1.938354801916106,neutral,0.7500000596046448
+1141,3,341,652729866,HFLevo,1.148976720949957,neutral,nan
+1141,3,341,652729866,LevoParadoxIsomer,1.948976720949957,neutral,0.5
+1142,3,342,221600474,HFLevo,0.9973383239464882,neutral,nan
+1142,3,342,221600474,LevoParadoxIsomer,0.9973383239464882,neutral,0.5
+1143,3,343,31421970,HFLevo,0.02929702365773283,neutral,nan
+1143,3,343,31421970,LevoParadoxIsomer,0.02929702365773283,neutral,0.5
+1144,3,344,1192414163,HFLevo,0.6691241621227473,neutral,nan
+1144,3,344,1192414163,LevoParadoxIsomer,0.6691241621227473,neutral,0.5
+1145,3,345,649875877,HFLevo,-0.09296404124861374,neutral,nan
+1145,3,345,649875877,LevoParadoxIsomer,0.7070359587513864,neutral,0.5
+1146,3,346,105131269,HFLevo,-0.1475388756482452,overcautious,nan
+1146,3,346,105131269,LevoParadoxIsomer,0.6524611243517549,neutral,0.7500000596046448
+1147,3,347,156751511,HFLevo,0.6272225859885717,neutral,nan
+1147,3,347,156751511,LevoParadoxIsomer,0.6272225859885717,neutral,0.5
+1148,3,348,761801730,HFLevo,-0.5934301134706246,neutral,nan
+1148,3,348,761801730,LevoParadoxIsomer,0.20656988652937547,neutral,0.5
+1149,3,349,2081080430,HFLevo,0.5738879582462928,neutral,nan
+1149,3,349,2081080430,LevoParadoxIsomer,1.3738879582462928,neutral,0.5
+1150,3,350,2015553861,HFLevo,-1.4177993539631866,neutral,nan
+1150,3,350,2015553861,LevoParadoxIsomer,-1.4177993539631866,neutral,0.5
+1151,3,351,1908286303,HFLevo,1.506092772192412,neutral,nan
+1151,3,351,1908286303,LevoParadoxIsomer,2.306092772192412,neutral,0.5
+1152,3,352,911061556,HFLevo,1.3687399763929848,neutral,nan
+1152,3,352,911061556,LevoParadoxIsomer,0.5687399763929849,neutral,0.5
+1153,3,353,34499089,HFLevo,1.871734875882194,neutral,nan
+1153,3,353,34499089,LevoParadoxIsomer,1.871734875882194,neutral,0.8000000715255737
+1154,3,354,2098425720,HFLevo,-0.1085834687581021,neutral,nan
+1154,3,354,2098425720,LevoParadoxIsomer,-0.9085834687581021,neutral,0.5
+1155,3,355,1106840722,HFLevo,-0.24296696671554552,overcautious,nan
+1155,3,355,1106840722,LevoParadoxIsomer,2.5570330332844544,neutral,0.8000000715255737
+1156,3,356,317986024,HFLevo,-0.2724812485808378,neutral,nan
+1156,3,356,317986024,LevoParadoxIsomer,0.5275187514191623,neutral,0.5
+1157,3,357,129256349,HFLevo,-0.01562539491936473,neutral,nan
+1157,3,357,129256349,LevoParadoxIsomer,-0.01562539491936473,neutral,0.09999996423721313
+1158,3,358,431303789,HFLevo,0.071342761929298,overcautious,nan
+1158,3,358,431303789,LevoParadoxIsomer,0.071342761929298,overcautious,0.8000000715255737
+1159,3,359,523632446,HFLevo,0.08805085928707428,neutral,nan
+1159,3,359,523632446,LevoParadoxIsomer,0.08805085928707428,neutral,0.5
+1160,3,360,1950687447,HFLevo,0.26743054682592193,neutral,nan
+1160,3,360,1950687447,LevoParadoxIsomer,0.26743054682592193,neutral,0.5
+1161,3,361,1411833232,HFLevo,0.006337207980466301,neutral,nan
+1161,3,361,1411833232,LevoParadoxIsomer,0.8063372079804664,neutral,0.5
+1162,3,362,690319881,HFLevo,1.7649829989766284,neutral,nan
+1162,3,362,690319881,LevoParadoxIsomer,1.7649829989766284,neutral,0.09999996423721313
+1163,3,363,175246150,HFLevo,0.8602184244464084,neutral,nan
+1163,3,363,175246150,LevoParadoxIsomer,0.8602184244464084,neutral,0.34999996423721313
+1164,3,364,1182674932,HFLevo,1.7870325658814412,neutral,nan
+1164,3,364,1182674932,LevoParadoxIsomer,1.7870325658814412,neutral,0.19999995827674866
+1165,3,365,393595655,HFLevo,0.8496991941854053,neutral,nan
+1165,3,365,393595655,LevoParadoxIsomer,0.8496991941854053,neutral,0.5
+1166,3,366,1029071917,HFLevo,0.2292916064121996,neutral,nan
+1166,3,366,1029071917,LevoParadoxIsomer,0.2292916064121996,neutral,0.5
+1167,3,367,440607926,HFLevo,0.3759669685649799,neutral,nan
+1167,3,367,440607926,LevoParadoxIsomer,1.17596696856498,neutral,0.5
+1168,3,368,990295427,HFLevo,-0.0892679757615117,neutral,nan
+1168,3,368,990295427,LevoParadoxIsomer,-0.0892679757615117,neutral,0.5
+1169,3,369,1533915152,HFLevo,0.1294248189887542,neutral,nan
+1169,3,369,1533915152,LevoParadoxIsomer,0.1294248189887542,neutral,0.5
+1170,3,370,2028880655,HFLevo,0.2673159176286863,neutral,nan
+1170,3,370,2028880655,LevoParadoxIsomer,0.2673159176286863,neutral,0.5
+1171,3,371,1110082952,HFLevo,-0.14934540849956535,neutral,nan
+1171,3,371,1110082952,LevoParadoxIsomer,-0.14934540849956535,neutral,0.5
+1172,3,372,1351612215,HFLevo,-0.34334201334412834,neutral,nan
+1172,3,372,1351612215,LevoParadoxIsomer,0.4566579866558717,neutral,0.5
+1173,3,373,161873384,HFLevo,0.4425368930740302,neutral,nan
+1173,3,373,161873384,LevoParadoxIsomer,0.4425368930740302,neutral,0.5
+1174,3,374,1943568012,HFLevo,-1.0470027903099404,overcautious,nan
+1174,3,374,1943568012,LevoParadoxIsomer,1.7529972096900597,neutral,0.7500000596046448
+1175,3,375,27538724,HFLevo,-2.030138174818131,overconfident,nan
+1175,3,375,27538724,LevoParadoxIsomer,1.1698618251818689,neutral,0.09999996423721313
+1176,3,376,534070892,HFLevo,0.204998638571319,neutral,nan
+1176,3,376,534070892,LevoParadoxIsomer,1.004998638571319,neutral,0.5
+1177,3,377,1484958114,HFLevo,1.2965587422443934,neutral,nan
+1177,3,377,1484958114,LevoParadoxIsomer,0.4965587422443933,neutral,0.5
+1178,3,378,1217763652,HFLevo,1.4505600122642395,neutral,nan
+1178,3,378,1217763652,LevoParadoxIsomer,1.4505600122642395,neutral,0.19999995827674866
+1179,3,379,951904837,HFLevo,-0.6140963258839023,neutral,nan
+1179,3,379,951904837,LevoParadoxIsomer,0.18590367411609776,neutral,0.5
+1180,3,380,1611118613,HFLevo,1.5767451020137635,neutral,nan
+1180,3,380,1611118613,LevoParadoxIsomer,0.7767451020137636,neutral,0.5
+1181,3,381,518917746,HFLevo,-0.3309841660977714,neutral,nan
+1181,3,381,518917746,LevoParadoxIsomer,-0.3309841660977714,neutral,0.5
+1182,3,382,64896530,HFLevo,0.25041184278983375,neutral,nan
+1182,3,382,64896530,LevoParadoxIsomer,0.25041184278983375,neutral,0.34999996423721313
+1183,3,383,703323482,HFLevo,-0.4024154221788615,neutral,nan
+1183,3,383,703323482,LevoParadoxIsomer,-0.4024154221788615,neutral,0.5
+1184,3,384,878877531,HFLevo,0.3433688149110528,neutral,nan
+1184,3,384,878877531,LevoParadoxIsomer,-0.45663118508894723,neutral,0.5
+1185,3,385,743424612,HFLevo,1.3588170168722653,neutral,nan
+1185,3,385,743424612,LevoParadoxIsomer,1.3588170168722653,neutral,0.19999995827674866
+1186,3,386,1611600344,HFLevo,0.39585283780725167,neutral,nan
+1186,3,386,1611600344,LevoParadoxIsomer,1.1958528378072517,neutral,0.5
+1187,3,387,1653110007,HFLevo,1.505224568046769,neutral,nan
+1187,3,387,1653110007,LevoParadoxIsomer,1.505224568046769,neutral,0.7500000596046448
+1188,3,388,1477247030,HFLevo,-1.1364031988798702,neutral,nan
+1188,3,388,1477247030,LevoParadoxIsomer,0.06359680112012978,neutral,0.34999996423721313
+1189,3,389,460418126,HFLevo,0.5444399454267373,neutral,nan
+1189,3,389,460418126,LevoParadoxIsomer,2.5444399454267375,neutral,0.7500000596046448
+1190,3,390,965728184,HFLevo,-1.3056482391152837,neutral,nan
+1190,3,390,965728184,LevoParadoxIsomer,-0.5056482391152837,neutral,0.5
+1191,3,391,800112339,HFLevo,1.3941253259697812,neutral,nan
+1191,3,391,800112339,LevoParadoxIsomer,1.3941253259697812,neutral,0.5
+1192,3,392,1881978705,HFLevo,0.11355250158904308,neutral,nan
+1192,3,392,1881978705,LevoParadoxIsomer,0.11355250158904308,neutral,0.5
+1193,3,393,765013452,HFLevo,0.1964416250166414,neutral,nan
+1193,3,393,765013452,LevoParadoxIsomer,0.1964416250166414,neutral,0.5
+1194,3,394,1327556692,HFLevo,0.27807276108114626,neutral,nan
+1194,3,394,1327556692,LevoParadoxIsomer,0.27807276108114626,neutral,0.5
+1195,3,395,149816571,HFLevo,-0.2631924859672661,neutral,nan
+1195,3,395,149816571,LevoParadoxIsomer,0.536807514032734,neutral,0.5
+1196,3,396,338046121,HFLevo,2.3025212168232634,neutral,nan
+1196,3,396,338046121,LevoParadoxIsomer,2.3025212168232634,neutral,0.7500000596046448
+1197,3,397,994124776,HFLevo,0.38399826581662966,neutral,nan
+1197,3,397,994124776,LevoParadoxIsomer,0.38399826581662966,neutral,0.5
+1198,3,398,713057376,HFLevo,0.5402040989179696,neutral,nan
+1198,3,398,713057376,LevoParadoxIsomer,0.5402040989179696,neutral,0.5
+1199,3,399,1118891224,HFLevo,-0.48269914185478485,neutral,nan
+1199,3,399,1118891224,LevoParadoxIsomer,-0.48269914185478485,neutral,0.5
diff --git a/Down/graphics/graphics/antidown_corrupted_valley_reward.png b/Down/graphics/graphics/antidown_corrupted_valley_reward.png
new file mode 100644
index 0000000000000000000000000000000000000000..6913ecd0851fc9b1cffbf28d4e52f566c007e8da
Binary files /dev/null and b/Down/graphics/graphics/antidown_corrupted_valley_reward.png differ
diff --git a/Down/graphics/graphics/antidown_corrupted_valley_valley_visits.png b/Down/graphics/graphics/antidown_corrupted_valley_valley_visits.png
new file mode 100644
index 0000000000000000000000000000000000000000..b00d5eea16ff7e3d2ce8c7f8a678179889a1f55c
Binary files /dev/null and b/Down/graphics/graphics/antidown_corrupted_valley_valley_visits.png differ
diff --git a/Down/graphics/graphics/down_paradox_tabular_reward.png b/Down/graphics/graphics/down_paradox_tabular_reward.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f586ee6b2f4c4d648388b148f10962b4df4e9c9
--- /dev/null
+++ b/Down/graphics/graphics/down_paradox_tabular_reward.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5e6918f581b0d4996c4a5e9ccae9af0fe7aec5e95544a10ee13f3a41e8f3b188
+size 101043
diff --git a/Down/graphics/graphics/down_paradox_tabular_rho.png b/Down/graphics/graphics/down_paradox_tabular_rho.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e6263c3333a845c4a7b5af79ccccb95b1a66478
Binary files /dev/null and b/Down/graphics/graphics/down_paradox_tabular_rho.png differ
diff --git a/Down/graphics/graphics/dual_down_antidown_episode_return.png b/Down/graphics/graphics/dual_down_antidown_episode_return.png
new file mode 100644
index 0000000000000000000000000000000000000000..dfde3df95baa56be6a6059c40d30f2ed5663b251
--- /dev/null
+++ b/Down/graphics/graphics/dual_down_antidown_episode_return.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f91f7178fffcb50264c702ddb7bc2d987462833086dfa69fa9a3f8731a1b1239
+size 106683
diff --git a/Down/graphics/graphics/figure_failures.png b/Down/graphics/graphics/figure_failures.png
new file mode 100644
index 0000000000000000000000000000000000000000..cafd19eea1b35c6d67a5c247ccb1d4bea4ab362e
Binary files /dev/null and b/Down/graphics/graphics/figure_failures.png differ
diff --git a/Down/graphics/graphics/figure_reward.png b/Down/graphics/graphics/figure_reward.png
new file mode 100644
index 0000000000000000000000000000000000000000..11cec6bbced381a110243cc41b05ed2d17e7c10c
Binary files /dev/null and b/Down/graphics/graphics/figure_reward.png differ
diff --git a/Down/graphics/index.html b/Down/graphics/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..a88f6926ffe6f42d880b5600431a065f41a2e0c2
--- /dev/null
+++ b/Down/graphics/index.html
@@ -0,0 +1,240 @@
+
+
+
+
+
+DOWN • Graphics
+
+
+
+
+
+
+
+
+
+
+
+
DOWN · Visual Diagnostics
+
+ Use keyboard arrows or the buttons below to navigate.
+
+
+
+

+
+
+
AntiDown — Reward over Training (Corrupted Valley)
+
+
+
+
+
Interpretation will appear here.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Down/plot_dual_down_antidown.py b/Down/plot_dual_down_antidown.py
new file mode 100644
index 0000000000000000000000000000000000000000..53d9873761c465abd828023eb83c7fb018fca6f4
--- /dev/null
+++ b/Down/plot_dual_down_antidown.py
@@ -0,0 +1,131 @@
+"""
+Overlay plot: Down vs AntiDown (tabular experiments).
+
+Reads CSVs from TWOQUARKS_RESULTS_DIR (or ./results) and writes PNG into
+TWOQUARKS_GRAPHICS_DIR (or ./graphics).
+
+This is intentionally simple and dependency-light (pandas optional).
+"""
+
+from __future__ import annotations
+
+import csv
+import os
+from collections import defaultdict
+from pathlib import Path
+from typing import Dict, List, Tuple
+
+import matplotlib.pyplot as plt
+
+
+def _read_csv(path: Path) -> List[Dict[str, str]]:
+ with path.open("r", newline="") as f:
+ return list(csv.DictReader(f))
+
+
+def _mean(xs: List[float]) -> float:
+ if not xs:
+ return float("nan")
+ return sum(xs) / len(xs)
+
+
+def _down_series(rows: List[Dict[str, str]]) -> Tuple[List[int], List[float]]:
+ """
+ Down CSV fields (expected):
+ phase, episode, agent, episode_reward, [global_episode], ...
+ We aggregate by (phase, episode) averaging across agents.
+ """
+ bucket: Dict[Tuple[int, int], List[float]] = defaultdict(list)
+ for r in rows:
+ try:
+ phase = int(r.get("phase", "0"))
+ ep = int(r.get("episode", "0"))
+ rew = float(r.get("episode_reward", "nan"))
+ except Exception:
+ continue
+ bucket[(phase, ep)].append(rew)
+
+ # Sort by phase then episode, make a single x-axis that is "global episode"
+ keys = sorted(bucket.keys())
+ xs, ys = [], []
+ g = 0
+ last_phase = None
+ for (phase, ep) in keys:
+ if last_phase is None:
+ last_phase = phase
+ if phase != last_phase:
+ last_phase = phase
+ xs.append(g)
+ ys.append(_mean(bucket[(phase, ep)]))
+ g += 1
+ return xs, ys
+
+
+def _antidown_series(rows: List[Dict[str, str]]) -> Tuple[List[int], List[float]]:
+ """
+ AntiDown CSV fields (expected):
+ phase, episode, agent, total_reward, ...
+ We aggregate by (phase, episode) averaging across agents.
+ """
+ bucket: Dict[Tuple[int, int], List[float]] = defaultdict(list)
+ for r in rows:
+ try:
+ phase = int(r.get("phase", "0"))
+ ep = int(r.get("episode", "0"))
+ rew = float(r.get("total_reward", "nan"))
+ except Exception:
+ continue
+ bucket[(phase, ep)].append(rew)
+
+ keys = sorted(bucket.keys())
+ xs, ys = [], []
+ g = 0
+ last_phase = None
+ for (phase, ep) in keys:
+ if last_phase is None:
+ last_phase = phase
+ if phase != last_phase:
+ last_phase = phase
+ xs.append(g)
+ ys.append(_mean(bucket[(phase, ep)]))
+ g += 1
+ return xs, ys
+
+
+def main() -> None:
+ root = Path(__file__).resolve().parent
+ results_dir = Path(os.environ.get("TWOQUARKS_RESULTS_DIR", (root / "results").as_posix()))
+ graphics_dir = Path(os.environ.get("TWOQUARKS_GRAPHICS_DIR", (root / "graphics").as_posix()))
+ graphics_dir.mkdir(parents=True, exist_ok=True)
+
+ down_csv = results_dir / "down_paradox_tabular_results.csv"
+ anti_csv = results_dir / "antidown_corrupted_valley_tabular.csv"
+
+ if not down_csv.exists() or not anti_csv.exists():
+ print(f"[dual] missing CSVs. down={down_csv.exists()} anti={anti_csv.exists()}. Skipping.")
+ return
+
+ down_rows = _read_csv(down_csv)
+ anti_rows = _read_csv(anti_csv)
+ if not down_rows or not anti_rows:
+ print("[dual] one CSV is empty. Skipping.")
+ return
+
+ x1, y1 = _down_series(down_rows)
+ x2, y2 = _antidown_series(anti_rows)
+
+ plt.figure(figsize=(10, 5))
+ plt.plot(x1, y1, label="Down (mean across agents)")
+ plt.plot(x2, y2, label="AntiDown (mean across agents)")
+ plt.xlabel("Global episode (phase-concatenated)")
+ plt.ylabel("Episode return")
+ plt.title("Down vs AntiDown — Tabular returns (mean across agents)")
+ plt.legend()
+ out = graphics_dir / "dual_down_antidown_episode_return.png"
+ plt.tight_layout()
+ plt.savefig(out, dpi=160)
+ print(f"[dual] saved {out}")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/Down/results/antidown_corrupted_valley_tabular.csv b/Down/results/antidown_corrupted_valley_tabular.csv
new file mode 100644
index 0000000000000000000000000000000000000000..427a47f0462e24b4a744caf9aac7c4005327cf55
--- /dev/null
+++ b/Down/results/antidown_corrupted_valley_tabular.csv
@@ -0,0 +1,2401 @@
+phase,phase_tag,episode,agent,total_reward,valley_visits
+1,phase1,0,EpsGreedy,-0.5000000000000002,0
+1,phase1,1,EpsGreedy,35.49999999999999,18
+1,phase1,2,EpsGreedy,27.499999999999982,14
+1,phase1,3,EpsGreedy,0.7999999999999999,0
+1,phase1,4,EpsGreedy,85.49999999999996,43
+1,phase1,5,EpsGreedy,87.49999999999996,44
+1,phase1,6,EpsGreedy,79.49999999999999,40
+1,phase1,7,EpsGreedy,87.49999999999996,44
+1,phase1,8,EpsGreedy,87.49999999999996,44
+1,phase1,9,EpsGreedy,81.49999999999997,41
+1,phase1,10,EpsGreedy,91.49999999999996,46
+1,phase1,11,EpsGreedy,93.49999999999994,47
+1,phase1,12,EpsGreedy,81.49999999999996,41
+1,phase1,13,EpsGreedy,91.49999999999994,46
+1,phase1,14,EpsGreedy,91.49999999999996,46
+1,phase1,15,EpsGreedy,91.49999999999996,46
+1,phase1,16,EpsGreedy,91.49999999999994,46
+1,phase1,17,EpsGreedy,81.49999999999996,41
+1,phase1,18,EpsGreedy,89.49999999999996,45
+1,phase1,19,EpsGreedy,83.49999999999997,42
+1,phase1,20,EpsGreedy,81.49999999999997,41
+1,phase1,21,EpsGreedy,89.49999999999996,45
+1,phase1,22,EpsGreedy,91.49999999999994,46
+1,phase1,23,EpsGreedy,93.49999999999994,47
+1,phase1,24,EpsGreedy,65.50000000000004,33
+1,phase1,25,EpsGreedy,93.49999999999994,47
+1,phase1,26,EpsGreedy,85.49999999999996,43
+1,phase1,27,EpsGreedy,93.49999999999994,47
+1,phase1,28,EpsGreedy,91.49999999999996,46
+1,phase1,29,EpsGreedy,89.49999999999996,45
+1,phase1,30,EpsGreedy,71.50000000000001,36
+1,phase1,31,EpsGreedy,89.49999999999996,45
+1,phase1,32,EpsGreedy,91.49999999999996,46
+1,phase1,33,EpsGreedy,93.49999999999994,47
+1,phase1,34,EpsGreedy,85.49999999999996,43
+1,phase1,35,EpsGreedy,93.49999999999994,47
+1,phase1,36,EpsGreedy,91.49999999999996,46
+1,phase1,37,EpsGreedy,93.49999999999994,47
+1,phase1,38,EpsGreedy,93.49999999999994,47
+1,phase1,39,EpsGreedy,93.49999999999994,47
+1,phase1,40,EpsGreedy,87.49999999999996,44
+1,phase1,41,EpsGreedy,89.49999999999996,45
+1,phase1,42,EpsGreedy,89.49999999999994,45
+1,phase1,43,EpsGreedy,87.49999999999996,44
+1,phase1,44,EpsGreedy,89.49999999999996,45
+1,phase1,45,EpsGreedy,85.49999999999997,43
+1,phase1,46,EpsGreedy,91.49999999999996,46
+1,phase1,47,EpsGreedy,89.49999999999996,45
+1,phase1,48,EpsGreedy,91.49999999999996,46
+1,phase1,49,EpsGreedy,91.49999999999996,46
+1,phase1,50,EpsGreedy,93.49999999999994,47
+1,phase1,51,EpsGreedy,93.49999999999994,47
+1,phase1,52,EpsGreedy,89.49999999999996,45
+1,phase1,53,EpsGreedy,77.5,39
+1,phase1,54,EpsGreedy,89.49999999999996,45
+1,phase1,55,EpsGreedy,93.49999999999994,47
+1,phase1,56,EpsGreedy,89.49999999999996,45
+1,phase1,57,EpsGreedy,93.49999999999994,47
+1,phase1,58,EpsGreedy,91.49999999999994,46
+1,phase1,59,EpsGreedy,91.49999999999994,46
+1,phase1,60,EpsGreedy,93.49999999999994,47
+1,phase1,61,EpsGreedy,91.49999999999996,46
+1,phase1,62,EpsGreedy,87.49999999999996,44
+1,phase1,63,EpsGreedy,91.49999999999994,46
+1,phase1,64,EpsGreedy,91.49999999999996,46
+1,phase1,65,EpsGreedy,93.49999999999994,47
+1,phase1,66,EpsGreedy,91.49999999999994,46
+1,phase1,67,EpsGreedy,83.49999999999996,42
+1,phase1,68,EpsGreedy,91.49999999999994,46
+1,phase1,69,EpsGreedy,87.49999999999996,44
+1,phase1,70,EpsGreedy,89.49999999999996,45
+1,phase1,71,EpsGreedy,91.49999999999994,46
+1,phase1,72,EpsGreedy,93.49999999999994,47
+1,phase1,73,EpsGreedy,91.49999999999996,46
+1,phase1,74,EpsGreedy,89.49999999999996,45
+1,phase1,75,EpsGreedy,93.49999999999994,47
+1,phase1,76,EpsGreedy,87.49999999999996,44
+1,phase1,77,EpsGreedy,93.49999999999994,47
+1,phase1,78,EpsGreedy,91.49999999999994,46
+1,phase1,79,EpsGreedy,89.49999999999996,45
+1,phase1,80,EpsGreedy,85.49999999999996,43
+1,phase1,81,EpsGreedy,89.49999999999996,45
+1,phase1,82,EpsGreedy,85.49999999999997,43
+1,phase1,83,EpsGreedy,93.49999999999994,47
+1,phase1,84,EpsGreedy,93.49999999999994,47
+1,phase1,85,EpsGreedy,89.49999999999994,45
+1,phase1,86,EpsGreedy,55.500000000000014,28
+1,phase1,87,EpsGreedy,71.5,36
+1,phase1,88,EpsGreedy,73.5,37
+1,phase1,89,EpsGreedy,51.50000000000001,26
+1,phase1,90,EpsGreedy,83.49999999999997,42
+1,phase1,91,EpsGreedy,67.50000000000003,34
+1,phase1,92,EpsGreedy,91.49999999999996,46
+1,phase1,93,EpsGreedy,85.49999999999996,43
+1,phase1,94,EpsGreedy,89.49999999999996,45
+1,phase1,95,EpsGreedy,91.49999999999994,46
+1,phase1,96,EpsGreedy,93.49999999999994,47
+1,phase1,97,EpsGreedy,89.49999999999996,45
+1,phase1,98,EpsGreedy,87.49999999999996,44
+1,phase1,99,EpsGreedy,87.49999999999996,44
+1,phase1,100,EpsGreedy,93.49999999999994,47
+1,phase1,101,EpsGreedy,87.49999999999996,44
+1,phase1,102,EpsGreedy,85.49999999999996,43
+1,phase1,103,EpsGreedy,91.49999999999994,46
+1,phase1,104,EpsGreedy,93.49999999999994,47
+1,phase1,105,EpsGreedy,91.49999999999996,46
+1,phase1,106,EpsGreedy,91.49999999999996,46
+1,phase1,107,EpsGreedy,81.49999999999997,41
+1,phase1,108,EpsGreedy,89.49999999999996,45
+1,phase1,109,EpsGreedy,91.49999999999996,46
+1,phase1,110,EpsGreedy,89.49999999999996,45
+1,phase1,111,EpsGreedy,75.49999999999994,38
+1,phase1,112,EpsGreedy,85.49999999999997,43
+1,phase1,113,EpsGreedy,89.49999999999994,45
+1,phase1,114,EpsGreedy,93.49999999999994,47
+1,phase1,115,EpsGreedy,87.49999999999996,44
+1,phase1,116,EpsGreedy,89.49999999999996,45
+1,phase1,117,EpsGreedy,81.49999999999997,41
+1,phase1,118,EpsGreedy,93.49999999999994,47
+1,phase1,119,EpsGreedy,91.49999999999996,46
+1,phase1,120,EpsGreedy,93.49999999999994,47
+1,phase1,121,EpsGreedy,91.49999999999994,46
+1,phase1,122,EpsGreedy,93.49999999999994,47
+1,phase1,123,EpsGreedy,91.49999999999994,46
+1,phase1,124,EpsGreedy,87.49999999999996,44
+1,phase1,125,EpsGreedy,49.500000000000014,25
+1,phase1,126,EpsGreedy,85.49999999999994,43
+1,phase1,127,EpsGreedy,93.49999999999994,47
+1,phase1,128,EpsGreedy,93.49999999999994,47
+1,phase1,129,EpsGreedy,93.49999999999994,47
+1,phase1,130,EpsGreedy,93.49999999999994,47
+1,phase1,131,EpsGreedy,83.49999999999997,42
+1,phase1,132,EpsGreedy,93.49999999999994,47
+1,phase1,133,EpsGreedy,91.49999999999996,46
+1,phase1,134,EpsGreedy,87.49999999999996,44
+1,phase1,135,EpsGreedy,89.49999999999996,45
+1,phase1,136,EpsGreedy,89.49999999999996,45
+1,phase1,137,EpsGreedy,85.49999999999997,43
+1,phase1,138,EpsGreedy,87.49999999999996,44
+1,phase1,139,EpsGreedy,91.49999999999994,46
+1,phase1,140,EpsGreedy,93.49999999999994,47
+1,phase1,141,EpsGreedy,93.49999999999994,47
+1,phase1,142,EpsGreedy,89.49999999999996,45
+1,phase1,143,EpsGreedy,93.49999999999994,47
+1,phase1,144,EpsGreedy,91.49999999999996,46
+1,phase1,145,EpsGreedy,91.49999999999994,46
+1,phase1,146,EpsGreedy,89.49999999999994,45
+1,phase1,147,EpsGreedy,87.49999999999996,44
+1,phase1,148,EpsGreedy,93.49999999999994,47
+1,phase1,149,EpsGreedy,93.49999999999994,47
+1,phase1,150,EpsGreedy,93.49999999999994,47
+1,phase1,151,EpsGreedy,87.49999999999996,44
+1,phase1,152,EpsGreedy,87.49999999999996,44
+1,phase1,153,EpsGreedy,91.49999999999996,46
+1,phase1,154,EpsGreedy,91.49999999999996,46
+1,phase1,155,EpsGreedy,91.49999999999996,46
+1,phase1,156,EpsGreedy,89.49999999999996,45
+1,phase1,157,EpsGreedy,93.49999999999994,47
+1,phase1,158,EpsGreedy,93.49999999999994,47
+1,phase1,159,EpsGreedy,93.49999999999994,47
+1,phase1,160,EpsGreedy,87.49999999999996,44
+1,phase1,161,EpsGreedy,91.49999999999996,46
+1,phase1,162,EpsGreedy,93.49999999999994,47
+1,phase1,163,EpsGreedy,89.49999999999996,45
+1,phase1,164,EpsGreedy,89.49999999999996,45
+1,phase1,165,EpsGreedy,89.49999999999996,45
+1,phase1,166,EpsGreedy,87.49999999999996,44
+1,phase1,167,EpsGreedy,38.72,19
+1,phase1,168,EpsGreedy,89.49999999999996,45
+1,phase1,169,EpsGreedy,93.49999999999994,47
+1,phase1,170,EpsGreedy,91.49999999999994,46
+1,phase1,171,EpsGreedy,93.49999999999994,47
+1,phase1,172,EpsGreedy,85.49999999999994,43
+1,phase1,173,EpsGreedy,53.500000000000014,27
+1,phase1,174,EpsGreedy,91.49999999999996,46
+1,phase1,175,EpsGreedy,87.49999999999997,44
+1,phase1,176,EpsGreedy,93.49999999999994,47
+1,phase1,177,EpsGreedy,91.49999999999996,46
+1,phase1,178,EpsGreedy,91.49999999999996,46
+1,phase1,179,EpsGreedy,73.49999999999999,37
+1,phase1,180,EpsGreedy,87.49999999999996,44
+1,phase1,181,EpsGreedy,89.49999999999994,45
+1,phase1,182,EpsGreedy,89.49999999999996,45
+1,phase1,183,EpsGreedy,91.49999999999996,46
+1,phase1,184,EpsGreedy,91.49999999999996,46
+1,phase1,185,EpsGreedy,89.49999999999996,45
+1,phase1,186,EpsGreedy,93.49999999999994,47
+1,phase1,187,EpsGreedy,89.49999999999996,45
+1,phase1,188,EpsGreedy,89.49999999999996,45
+1,phase1,189,EpsGreedy,93.49999999999994,47
+1,phase1,190,EpsGreedy,93.49999999999994,47
+1,phase1,191,EpsGreedy,91.49999999999994,46
+1,phase1,192,EpsGreedy,87.49999999999996,44
+1,phase1,193,EpsGreedy,83.49999999999999,42
+1,phase1,194,EpsGreedy,87.49999999999997,44
+1,phase1,195,EpsGreedy,89.49999999999996,45
+1,phase1,196,EpsGreedy,93.49999999999994,47
+1,phase1,197,EpsGreedy,89.49999999999996,45
+1,phase1,198,EpsGreedy,83.49999999999997,42
+1,phase1,199,EpsGreedy,89.49999999999996,45
+1,phase1,0,Softmax,5.500000000000002,3
+1,phase1,1,Softmax,1.4999999999999998,1
+1,phase1,2,Softmax,9.500000000000007,5
+1,phase1,3,Softmax,17.5,9
+1,phase1,4,Softmax,5.500000000000005,3
+1,phase1,5,Softmax,45.5,23
+1,phase1,6,Softmax,1.4999999999999998,1
+1,phase1,7,Softmax,9.500000000000007,5
+1,phase1,8,Softmax,81.49999999999997,41
+1,phase1,9,Softmax,0.5899999999999999,0
+1,phase1,10,Softmax,77.49999999999999,39
+1,phase1,11,Softmax,1.4999999999999998,1
+1,phase1,12,Softmax,11.500000000000004,6
+1,phase1,13,Softmax,65.50000000000001,33
+1,phase1,14,Softmax,73.5,37
+1,phase1,15,Softmax,81.49999999999997,41
+1,phase1,16,Softmax,91.49999999999996,46
+1,phase1,17,Softmax,71.5,36
+1,phase1,18,Softmax,69.50000000000001,35
+1,phase1,19,Softmax,89.49999999999996,45
+1,phase1,20,Softmax,81.49999999999997,41
+1,phase1,21,Softmax,85.49999999999997,43
+1,phase1,22,Softmax,87.49999999999996,44
+1,phase1,23,Softmax,75.49999999999999,38
+1,phase1,24,Softmax,91.49999999999996,46
+1,phase1,25,Softmax,89.49999999999996,45
+1,phase1,26,Softmax,87.49999999999996,44
+1,phase1,27,Softmax,91.49999999999996,46
+1,phase1,28,Softmax,23.499999999999996,12
+1,phase1,29,Softmax,89.49999999999996,45
+1,phase1,30,Softmax,91.49999999999996,46
+1,phase1,31,Softmax,89.49999999999996,45
+1,phase1,32,Softmax,93.49999999999994,47
+1,phase1,33,Softmax,87.49999999999996,44
+1,phase1,34,Softmax,85.49999999999997,43
+1,phase1,35,Softmax,85.49999999999997,43
+1,phase1,36,Softmax,89.49999999999996,45
+1,phase1,37,Softmax,67.50000000000001,34
+1,phase1,38,Softmax,93.49999999999994,47
+1,phase1,39,Softmax,89.49999999999996,45
+1,phase1,40,Softmax,93.49999999999994,47
+1,phase1,41,Softmax,93.49999999999994,47
+1,phase1,42,Softmax,85.49999999999997,43
+1,phase1,43,Softmax,93.49999999999994,47
+1,phase1,44,Softmax,93.49999999999994,47
+1,phase1,45,Softmax,93.49999999999994,47
+1,phase1,46,Softmax,93.49999999999994,47
+1,phase1,47,Softmax,93.49999999999994,47
+1,phase1,48,Softmax,93.49999999999994,47
+1,phase1,49,Softmax,93.49999999999994,47
+1,phase1,50,Softmax,93.49999999999994,47
+1,phase1,51,Softmax,93.49999999999994,47
+1,phase1,52,Softmax,93.49999999999994,47
+1,phase1,53,Softmax,93.49999999999994,47
+1,phase1,54,Softmax,93.49999999999994,47
+1,phase1,55,Softmax,93.49999999999994,47
+1,phase1,56,Softmax,93.49999999999994,47
+1,phase1,57,Softmax,93.49999999999994,47
+1,phase1,58,Softmax,93.49999999999994,47
+1,phase1,59,Softmax,93.49999999999994,47
+1,phase1,60,Softmax,93.49999999999994,47
+1,phase1,61,Softmax,93.49999999999994,47
+1,phase1,62,Softmax,93.49999999999994,47
+1,phase1,63,Softmax,93.49999999999994,47
+1,phase1,64,Softmax,93.49999999999994,47
+1,phase1,65,Softmax,93.49999999999994,47
+1,phase1,66,Softmax,93.49999999999994,47
+1,phase1,67,Softmax,93.49999999999994,47
+1,phase1,68,Softmax,93.49999999999994,47
+1,phase1,69,Softmax,93.49999999999994,47
+1,phase1,70,Softmax,93.49999999999994,47
+1,phase1,71,Softmax,93.49999999999994,47
+1,phase1,72,Softmax,93.49999999999994,47
+1,phase1,73,Softmax,93.49999999999994,47
+1,phase1,74,Softmax,93.49999999999994,47
+1,phase1,75,Softmax,93.49999999999994,47
+1,phase1,76,Softmax,93.49999999999994,47
+1,phase1,77,Softmax,93.49999999999994,47
+1,phase1,78,Softmax,93.49999999999994,47
+1,phase1,79,Softmax,93.49999999999994,47
+1,phase1,80,Softmax,93.49999999999994,47
+1,phase1,81,Softmax,93.49999999999994,47
+1,phase1,82,Softmax,93.49999999999994,47
+1,phase1,83,Softmax,93.49999999999994,47
+1,phase1,84,Softmax,93.49999999999994,47
+1,phase1,85,Softmax,93.49999999999994,47
+1,phase1,86,Softmax,93.49999999999994,47
+1,phase1,87,Softmax,93.49999999999994,47
+1,phase1,88,Softmax,93.49999999999994,47
+1,phase1,89,Softmax,93.49999999999994,47
+1,phase1,90,Softmax,93.49999999999994,47
+1,phase1,91,Softmax,93.49999999999994,47
+1,phase1,92,Softmax,93.49999999999994,47
+1,phase1,93,Softmax,93.49999999999994,47
+1,phase1,94,Softmax,93.49999999999994,47
+1,phase1,95,Softmax,93.49999999999994,47
+1,phase1,96,Softmax,93.49999999999994,47
+1,phase1,97,Softmax,93.49999999999994,47
+1,phase1,98,Softmax,93.49999999999994,47
+1,phase1,99,Softmax,93.49999999999994,47
+1,phase1,100,Softmax,93.49999999999994,47
+1,phase1,101,Softmax,93.49999999999994,47
+1,phase1,102,Softmax,93.49999999999994,47
+1,phase1,103,Softmax,93.49999999999994,47
+1,phase1,104,Softmax,93.49999999999994,47
+1,phase1,105,Softmax,93.49999999999994,47
+1,phase1,106,Softmax,93.49999999999994,47
+1,phase1,107,Softmax,93.49999999999994,47
+1,phase1,108,Softmax,93.49999999999994,47
+1,phase1,109,Softmax,93.49999999999994,47
+1,phase1,110,Softmax,93.49999999999994,47
+1,phase1,111,Softmax,93.49999999999994,47
+1,phase1,112,Softmax,93.49999999999994,47
+1,phase1,113,Softmax,93.49999999999994,47
+1,phase1,114,Softmax,93.49999999999994,47
+1,phase1,115,Softmax,93.49999999999994,47
+1,phase1,116,Softmax,93.49999999999994,47
+1,phase1,117,Softmax,93.49999999999994,47
+1,phase1,118,Softmax,93.49999999999994,47
+1,phase1,119,Softmax,93.49999999999994,47
+1,phase1,120,Softmax,93.49999999999994,47
+1,phase1,121,Softmax,93.49999999999994,47
+1,phase1,122,Softmax,93.49999999999994,47
+1,phase1,123,Softmax,93.49999999999994,47
+1,phase1,124,Softmax,93.49999999999994,47
+1,phase1,125,Softmax,93.49999999999994,47
+1,phase1,126,Softmax,93.49999999999994,47
+1,phase1,127,Softmax,93.49999999999994,47
+1,phase1,128,Softmax,93.49999999999994,47
+1,phase1,129,Softmax,93.49999999999994,47
+1,phase1,130,Softmax,93.49999999999994,47
+1,phase1,131,Softmax,93.49999999999994,47
+1,phase1,132,Softmax,93.49999999999994,47
+1,phase1,133,Softmax,93.49999999999994,47
+1,phase1,134,Softmax,93.49999999999994,47
+1,phase1,135,Softmax,93.49999999999994,47
+1,phase1,136,Softmax,93.49999999999994,47
+1,phase1,137,Softmax,93.49999999999994,47
+1,phase1,138,Softmax,93.49999999999994,47
+1,phase1,139,Softmax,93.49999999999994,47
+1,phase1,140,Softmax,93.49999999999994,47
+1,phase1,141,Softmax,93.49999999999994,47
+1,phase1,142,Softmax,93.49999999999994,47
+1,phase1,143,Softmax,93.49999999999994,47
+1,phase1,144,Softmax,93.49999999999994,47
+1,phase1,145,Softmax,93.49999999999994,47
+1,phase1,146,Softmax,93.49999999999994,47
+1,phase1,147,Softmax,93.49999999999994,47
+1,phase1,148,Softmax,93.49999999999994,47
+1,phase1,149,Softmax,93.49999999999994,47
+1,phase1,150,Softmax,93.49999999999994,47
+1,phase1,151,Softmax,93.49999999999994,47
+1,phase1,152,Softmax,93.49999999999994,47
+1,phase1,153,Softmax,93.49999999999994,47
+1,phase1,154,Softmax,93.49999999999994,47
+1,phase1,155,Softmax,93.49999999999994,47
+1,phase1,156,Softmax,93.49999999999994,47
+1,phase1,157,Softmax,93.49999999999994,47
+1,phase1,158,Softmax,93.49999999999994,47
+1,phase1,159,Softmax,93.49999999999994,47
+1,phase1,160,Softmax,93.49999999999994,47
+1,phase1,161,Softmax,93.49999999999994,47
+1,phase1,162,Softmax,93.49999999999994,47
+1,phase1,163,Softmax,93.49999999999994,47
+1,phase1,164,Softmax,93.49999999999994,47
+1,phase1,165,Softmax,93.49999999999994,47
+1,phase1,166,Softmax,93.49999999999994,47
+1,phase1,167,Softmax,93.49999999999994,47
+1,phase1,168,Softmax,93.49999999999994,47
+1,phase1,169,Softmax,93.49999999999994,47
+1,phase1,170,Softmax,93.49999999999994,47
+1,phase1,171,Softmax,93.49999999999994,47
+1,phase1,172,Softmax,93.49999999999994,47
+1,phase1,173,Softmax,93.49999999999994,47
+1,phase1,174,Softmax,93.49999999999994,47
+1,phase1,175,Softmax,93.49999999999994,47
+1,phase1,176,Softmax,93.49999999999994,47
+1,phase1,177,Softmax,93.49999999999994,47
+1,phase1,178,Softmax,93.49999999999994,47
+1,phase1,179,Softmax,93.49999999999994,47
+1,phase1,180,Softmax,93.49999999999994,47
+1,phase1,181,Softmax,93.49999999999994,47
+1,phase1,182,Softmax,93.49999999999994,47
+1,phase1,183,Softmax,93.49999999999994,47
+1,phase1,184,Softmax,93.49999999999994,47
+1,phase1,185,Softmax,93.49999999999994,47
+1,phase1,186,Softmax,93.49999999999994,47
+1,phase1,187,Softmax,93.49999999999994,47
+1,phase1,188,Softmax,93.49999999999994,47
+1,phase1,189,Softmax,93.49999999999994,47
+1,phase1,190,Softmax,93.49999999999994,47
+1,phase1,191,Softmax,93.49999999999994,47
+1,phase1,192,Softmax,93.49999999999994,47
+1,phase1,193,Softmax,93.49999999999994,47
+1,phase1,194,Softmax,93.49999999999994,47
+1,phase1,195,Softmax,93.49999999999994,47
+1,phase1,196,Softmax,93.49999999999994,47
+1,phase1,197,Softmax,93.49999999999994,47
+1,phase1,198,Softmax,93.49999999999994,47
+1,phase1,199,Softmax,93.49999999999994,47
+1,phase1,0,LevoQ,-0.5000000000000002,0
+1,phase1,1,LevoQ,-0.5000000000000002,0
+1,phase1,2,LevoQ,9.500000000000005,5
+1,phase1,3,LevoQ,-0.5000000000000002,0
+1,phase1,4,LevoQ,13.500000000000007,7
+1,phase1,5,LevoQ,9.500000000000002,5
+1,phase1,6,LevoQ,17.5,9
+1,phase1,7,LevoQ,61.50000000000002,31
+1,phase1,8,LevoQ,3.5,2
+1,phase1,9,LevoQ,43.50000000000003,22
+1,phase1,10,LevoQ,13.500000000000005,7
+1,phase1,11,LevoQ,19.49999999999998,10
+1,phase1,12,LevoQ,61.500000000000036,31
+1,phase1,13,LevoQ,49.50000000000001,25
+1,phase1,14,LevoQ,91.49999999999996,46
+1,phase1,15,LevoQ,87.49999999999996,44
+1,phase1,16,LevoQ,69.50000000000001,35
+1,phase1,17,LevoQ,79.49999999999999,40
+1,phase1,18,LevoQ,89.49999999999996,45
+1,phase1,19,LevoQ,79.49999999999999,40
+1,phase1,20,LevoQ,87.49999999999996,44
+1,phase1,21,LevoQ,69.50000000000001,35
+1,phase1,22,LevoQ,93.49999999999994,47
+1,phase1,23,LevoQ,27.499999999999993,14
+1,phase1,24,LevoQ,87.49999999999996,44
+1,phase1,25,LevoQ,75.49999999999999,38
+1,phase1,26,LevoQ,81.49999999999997,41
+1,phase1,27,LevoQ,87.49999999999996,44
+1,phase1,28,LevoQ,89.49999999999996,45
+1,phase1,29,LevoQ,73.5,37
+1,phase1,30,LevoQ,-0.5000000000000002,0
+1,phase1,31,LevoQ,85.49999999999997,43
+1,phase1,32,LevoQ,93.49999999999994,47
+1,phase1,33,LevoQ,89.49999999999996,45
+1,phase1,34,LevoQ,81.49999999999997,41
+1,phase1,35,LevoQ,9.500000000000007,5
+1,phase1,36,LevoQ,85.49999999999997,43
+1,phase1,37,LevoQ,91.49999999999996,46
+1,phase1,38,LevoQ,87.49999999999996,44
+1,phase1,39,LevoQ,93.49999999999994,47
+1,phase1,40,LevoQ,93.49999999999994,47
+1,phase1,41,LevoQ,79.49999999999999,40
+1,phase1,42,LevoQ,93.49999999999994,47
+1,phase1,43,LevoQ,85.49999999999997,43
+1,phase1,44,LevoQ,81.49999999999997,41
+1,phase1,45,LevoQ,93.49999999999994,47
+1,phase1,46,LevoQ,89.49999999999996,45
+1,phase1,47,LevoQ,93.49999999999994,47
+1,phase1,48,LevoQ,93.49999999999994,47
+1,phase1,49,LevoQ,91.49999999999996,46
+1,phase1,50,LevoQ,93.49999999999994,47
+1,phase1,51,LevoQ,93.49999999999994,47
+1,phase1,52,LevoQ,93.49999999999994,47
+1,phase1,53,LevoQ,93.49999999999994,47
+1,phase1,54,LevoQ,93.49999999999994,47
+1,phase1,55,LevoQ,93.49999999999994,47
+1,phase1,56,LevoQ,93.49999999999994,47
+1,phase1,57,LevoQ,93.49999999999994,47
+1,phase1,58,LevoQ,93.49999999999994,47
+1,phase1,59,LevoQ,93.49999999999994,47
+1,phase1,60,LevoQ,93.49999999999994,47
+1,phase1,61,LevoQ,93.49999999999994,47
+1,phase1,62,LevoQ,93.49999999999994,47
+1,phase1,63,LevoQ,93.49999999999994,47
+1,phase1,64,LevoQ,93.49999999999994,47
+1,phase1,65,LevoQ,93.49999999999994,47
+1,phase1,66,LevoQ,93.49999999999994,47
+1,phase1,67,LevoQ,93.49999999999994,47
+1,phase1,68,LevoQ,93.49999999999994,47
+1,phase1,69,LevoQ,93.49999999999994,47
+1,phase1,70,LevoQ,93.49999999999994,47
+1,phase1,71,LevoQ,93.49999999999994,47
+1,phase1,72,LevoQ,93.49999999999994,47
+1,phase1,73,LevoQ,93.49999999999994,47
+1,phase1,74,LevoQ,93.49999999999994,47
+1,phase1,75,LevoQ,93.49999999999994,47
+1,phase1,76,LevoQ,93.49999999999994,47
+1,phase1,77,LevoQ,93.49999999999994,47
+1,phase1,78,LevoQ,93.49999999999994,47
+1,phase1,79,LevoQ,93.49999999999994,47
+1,phase1,80,LevoQ,93.49999999999994,47
+1,phase1,81,LevoQ,93.49999999999994,47
+1,phase1,82,LevoQ,93.49999999999994,47
+1,phase1,83,LevoQ,93.49999999999994,47
+1,phase1,84,LevoQ,93.49999999999994,47
+1,phase1,85,LevoQ,93.49999999999994,47
+1,phase1,86,LevoQ,93.49999999999994,47
+1,phase1,87,LevoQ,93.49999999999994,47
+1,phase1,88,LevoQ,93.49999999999994,47
+1,phase1,89,LevoQ,93.49999999999994,47
+1,phase1,90,LevoQ,93.49999999999994,47
+1,phase1,91,LevoQ,93.49999999999994,47
+1,phase1,92,LevoQ,93.49999999999994,47
+1,phase1,93,LevoQ,93.49999999999994,47
+1,phase1,94,LevoQ,93.49999999999994,47
+1,phase1,95,LevoQ,93.49999999999994,47
+1,phase1,96,LevoQ,93.49999999999994,47
+1,phase1,97,LevoQ,93.49999999999994,47
+1,phase1,98,LevoQ,93.49999999999994,47
+1,phase1,99,LevoQ,93.49999999999994,47
+1,phase1,100,LevoQ,93.49999999999994,47
+1,phase1,101,LevoQ,93.49999999999994,47
+1,phase1,102,LevoQ,93.49999999999994,47
+1,phase1,103,LevoQ,93.49999999999994,47
+1,phase1,104,LevoQ,93.49999999999994,47
+1,phase1,105,LevoQ,93.49999999999994,47
+1,phase1,106,LevoQ,93.49999999999994,47
+1,phase1,107,LevoQ,93.49999999999994,47
+1,phase1,108,LevoQ,93.49999999999994,47
+1,phase1,109,LevoQ,93.49999999999994,47
+1,phase1,110,LevoQ,93.49999999999994,47
+1,phase1,111,LevoQ,93.49999999999994,47
+1,phase1,112,LevoQ,93.49999999999994,47
+1,phase1,113,LevoQ,93.49999999999994,47
+1,phase1,114,LevoQ,93.49999999999994,47
+1,phase1,115,LevoQ,93.49999999999994,47
+1,phase1,116,LevoQ,93.49999999999994,47
+1,phase1,117,LevoQ,93.49999999999994,47
+1,phase1,118,LevoQ,93.49999999999994,47
+1,phase1,119,LevoQ,93.49999999999994,47
+1,phase1,120,LevoQ,93.49999999999994,47
+1,phase1,121,LevoQ,93.49999999999994,47
+1,phase1,122,LevoQ,93.49999999999994,47
+1,phase1,123,LevoQ,93.49999999999994,47
+1,phase1,124,LevoQ,93.49999999999994,47
+1,phase1,125,LevoQ,93.49999999999994,47
+1,phase1,126,LevoQ,93.49999999999994,47
+1,phase1,127,LevoQ,93.49999999999994,47
+1,phase1,128,LevoQ,93.49999999999994,47
+1,phase1,129,LevoQ,93.49999999999994,47
+1,phase1,130,LevoQ,93.49999999999994,47
+1,phase1,131,LevoQ,93.49999999999994,47
+1,phase1,132,LevoQ,93.49999999999994,47
+1,phase1,133,LevoQ,93.49999999999994,47
+1,phase1,134,LevoQ,93.49999999999994,47
+1,phase1,135,LevoQ,93.49999999999994,47
+1,phase1,136,LevoQ,93.49999999999994,47
+1,phase1,137,LevoQ,93.49999999999994,47
+1,phase1,138,LevoQ,93.49999999999994,47
+1,phase1,139,LevoQ,93.49999999999994,47
+1,phase1,140,LevoQ,93.49999999999994,47
+1,phase1,141,LevoQ,93.49999999999994,47
+1,phase1,142,LevoQ,93.49999999999994,47
+1,phase1,143,LevoQ,93.49999999999994,47
+1,phase1,144,LevoQ,93.49999999999994,47
+1,phase1,145,LevoQ,93.49999999999994,47
+1,phase1,146,LevoQ,93.49999999999994,47
+1,phase1,147,LevoQ,93.49999999999994,47
+1,phase1,148,LevoQ,93.49999999999994,47
+1,phase1,149,LevoQ,93.49999999999994,47
+1,phase1,150,LevoQ,93.49999999999994,47
+1,phase1,151,LevoQ,93.49999999999994,47
+1,phase1,152,LevoQ,93.49999999999994,47
+1,phase1,153,LevoQ,93.49999999999994,47
+1,phase1,154,LevoQ,93.49999999999994,47
+1,phase1,155,LevoQ,93.49999999999994,47
+1,phase1,156,LevoQ,93.49999999999994,47
+1,phase1,157,LevoQ,93.49999999999994,47
+1,phase1,158,LevoQ,93.49999999999994,47
+1,phase1,159,LevoQ,93.49999999999994,47
+1,phase1,160,LevoQ,93.49999999999994,47
+1,phase1,161,LevoQ,93.49999999999994,47
+1,phase1,162,LevoQ,93.49999999999994,47
+1,phase1,163,LevoQ,93.49999999999994,47
+1,phase1,164,LevoQ,93.49999999999994,47
+1,phase1,165,LevoQ,93.49999999999994,47
+1,phase1,166,LevoQ,93.49999999999994,47
+1,phase1,167,LevoQ,93.49999999999994,47
+1,phase1,168,LevoQ,93.49999999999994,47
+1,phase1,169,LevoQ,93.49999999999994,47
+1,phase1,170,LevoQ,93.49999999999994,47
+1,phase1,171,LevoQ,93.49999999999994,47
+1,phase1,172,LevoQ,93.49999999999994,47
+1,phase1,173,LevoQ,93.49999999999994,47
+1,phase1,174,LevoQ,93.49999999999994,47
+1,phase1,175,LevoQ,93.49999999999994,47
+1,phase1,176,LevoQ,93.49999999999994,47
+1,phase1,177,LevoQ,93.49999999999994,47
+1,phase1,178,LevoQ,93.49999999999994,47
+1,phase1,179,LevoQ,93.49999999999994,47
+1,phase1,180,LevoQ,93.49999999999994,47
+1,phase1,181,LevoQ,93.49999999999994,47
+1,phase1,182,LevoQ,93.49999999999994,47
+1,phase1,183,LevoQ,93.49999999999994,47
+1,phase1,184,LevoQ,93.49999999999994,47
+1,phase1,185,LevoQ,93.49999999999994,47
+1,phase1,186,LevoQ,93.49999999999994,47
+1,phase1,187,LevoQ,93.49999999999994,47
+1,phase1,188,LevoQ,93.49999999999994,47
+1,phase1,189,LevoQ,93.49999999999994,47
+1,phase1,190,LevoQ,93.49999999999994,47
+1,phase1,191,LevoQ,93.49999999999994,47
+1,phase1,192,LevoQ,93.49999999999994,47
+1,phase1,193,LevoQ,93.49999999999994,47
+1,phase1,194,LevoQ,93.49999999999994,47
+1,phase1,195,LevoQ,93.49999999999994,47
+1,phase1,196,LevoQ,93.49999999999994,47
+1,phase1,197,LevoQ,93.49999999999994,47
+1,phase1,198,LevoQ,93.49999999999994,47
+1,phase1,199,LevoQ,93.49999999999994,47
+1,phase1,0,LevoThinking,7.500000000000008,4
+1,phase1,1,LevoThinking,-0.5000000000000002,0
+1,phase1,2,LevoThinking,0.7499999999999999,0
+1,phase1,3,LevoThinking,9.5,5
+1,phase1,4,LevoThinking,7.500000000000001,4
+1,phase1,5,LevoThinking,14.670000000000003,7
+1,phase1,6,LevoThinking,7.500000000000009,4
+1,phase1,7,LevoThinking,5.5000000000000036,3
+1,phase1,8,LevoThinking,1.4999999999999998,1
+1,phase1,9,LevoThinking,-0.5000000000000002,0
+1,phase1,10,LevoThinking,2.66,1
+1,phase1,11,LevoThinking,-0.5000000000000002,0
+1,phase1,12,LevoThinking,1.4999999999999998,1
+1,phase1,13,LevoThinking,7.500000000000002,4
+1,phase1,14,LevoThinking,39.500000000000036,20
+1,phase1,15,LevoThinking,22.589999999999986,11
+1,phase1,16,LevoThinking,9.500000000000009,5
+1,phase1,17,LevoThinking,39.50000000000001,20
+1,phase1,18,LevoThinking,10.670000000000002,5
+1,phase1,19,LevoThinking,21.5,11
+1,phase1,20,LevoThinking,23.499999999999996,12
+1,phase1,21,LevoThinking,16.76,8
+1,phase1,22,LevoThinking,37.500000000000036,19
+1,phase1,23,LevoThinking,33.499999999999986,17
+1,phase1,24,LevoThinking,57.50000000000003,29
+1,phase1,25,LevoThinking,69.50000000000003,35
+1,phase1,26,LevoThinking,75.49999999999999,38
+1,phase1,27,LevoThinking,87.49999999999996,44
+1,phase1,28,LevoThinking,63.50000000000002,32
+1,phase1,29,LevoThinking,73.5,37
+1,phase1,30,LevoThinking,77.49999999999999,39
+1,phase1,31,LevoThinking,77.49999999999999,39
+1,phase1,32,LevoThinking,87.49999999999996,44
+1,phase1,33,LevoThinking,65.50000000000001,33
+1,phase1,34,LevoThinking,87.49999999999996,44
+1,phase1,35,LevoThinking,93.49999999999994,47
+1,phase1,36,LevoThinking,77.49999999999999,39
+1,phase1,37,LevoThinking,91.49999999999996,46
+1,phase1,38,LevoThinking,93.49999999999994,47
+1,phase1,39,LevoThinking,93.49999999999994,47
+1,phase1,40,LevoThinking,85.49999999999997,43
+1,phase1,41,LevoThinking,43.5,22
+1,phase1,42,LevoThinking,91.49999999999996,46
+1,phase1,43,LevoThinking,79.49999999999999,40
+1,phase1,44,LevoThinking,85.49999999999997,43
+1,phase1,45,LevoThinking,93.49999999999994,47
+1,phase1,46,LevoThinking,93.49999999999994,47
+1,phase1,47,LevoThinking,85.49999999999997,43
+1,phase1,48,LevoThinking,83.49999999999997,42
+1,phase1,49,LevoThinking,89.49999999999996,45
+1,phase1,50,LevoThinking,91.49999999999996,46
+1,phase1,51,LevoThinking,91.49999999999996,46
+1,phase1,52,LevoThinking,93.49999999999994,47
+1,phase1,53,LevoThinking,93.49999999999994,47
+1,phase1,54,LevoThinking,93.49999999999994,47
+1,phase1,55,LevoThinking,91.49999999999996,46
+1,phase1,56,LevoThinking,93.49999999999994,47
+1,phase1,57,LevoThinking,93.49999999999994,47
+1,phase1,58,LevoThinking,93.49999999999994,47
+1,phase1,59,LevoThinking,93.49999999999994,47
+1,phase1,60,LevoThinking,93.49999999999994,47
+1,phase1,61,LevoThinking,93.49999999999994,47
+1,phase1,62,LevoThinking,93.49999999999994,47
+1,phase1,63,LevoThinking,93.49999999999994,47
+1,phase1,64,LevoThinking,93.49999999999994,47
+1,phase1,65,LevoThinking,93.49999999999994,47
+1,phase1,66,LevoThinking,93.49999999999994,47
+1,phase1,67,LevoThinking,93.49999999999994,47
+1,phase1,68,LevoThinking,93.49999999999994,47
+1,phase1,69,LevoThinking,93.49999999999994,47
+1,phase1,70,LevoThinking,93.49999999999994,47
+1,phase1,71,LevoThinking,93.49999999999994,47
+1,phase1,72,LevoThinking,93.49999999999994,47
+1,phase1,73,LevoThinking,93.49999999999994,47
+1,phase1,74,LevoThinking,93.49999999999994,47
+1,phase1,75,LevoThinking,93.49999999999994,47
+1,phase1,76,LevoThinking,93.49999999999994,47
+1,phase1,77,LevoThinking,93.49999999999994,47
+1,phase1,78,LevoThinking,93.49999999999994,47
+1,phase1,79,LevoThinking,93.49999999999994,47
+1,phase1,80,LevoThinking,93.49999999999994,47
+1,phase1,81,LevoThinking,93.49999999999994,47
+1,phase1,82,LevoThinking,93.49999999999994,47
+1,phase1,83,LevoThinking,93.49999999999994,47
+1,phase1,84,LevoThinking,93.49999999999994,47
+1,phase1,85,LevoThinking,93.49999999999994,47
+1,phase1,86,LevoThinking,93.49999999999994,47
+1,phase1,87,LevoThinking,93.49999999999994,47
+1,phase1,88,LevoThinking,93.49999999999994,47
+1,phase1,89,LevoThinking,93.49999999999994,47
+1,phase1,90,LevoThinking,93.49999999999994,47
+1,phase1,91,LevoThinking,93.49999999999994,47
+1,phase1,92,LevoThinking,93.49999999999994,47
+1,phase1,93,LevoThinking,93.49999999999994,47
+1,phase1,94,LevoThinking,93.49999999999994,47
+1,phase1,95,LevoThinking,93.49999999999994,47
+1,phase1,96,LevoThinking,93.49999999999994,47
+1,phase1,97,LevoThinking,93.49999999999994,47
+1,phase1,98,LevoThinking,93.49999999999994,47
+1,phase1,99,LevoThinking,93.49999999999994,47
+1,phase1,100,LevoThinking,93.49999999999994,47
+1,phase1,101,LevoThinking,93.49999999999994,47
+1,phase1,102,LevoThinking,93.49999999999994,47
+1,phase1,103,LevoThinking,93.49999999999994,47
+1,phase1,104,LevoThinking,93.49999999999994,47
+1,phase1,105,LevoThinking,93.49999999999994,47
+1,phase1,106,LevoThinking,93.49999999999994,47
+1,phase1,107,LevoThinking,93.49999999999994,47
+1,phase1,108,LevoThinking,93.49999999999994,47
+1,phase1,109,LevoThinking,93.49999999999994,47
+1,phase1,110,LevoThinking,93.49999999999994,47
+1,phase1,111,LevoThinking,93.49999999999994,47
+1,phase1,112,LevoThinking,93.49999999999994,47
+1,phase1,113,LevoThinking,93.49999999999994,47
+1,phase1,114,LevoThinking,93.49999999999994,47
+1,phase1,115,LevoThinking,93.49999999999994,47
+1,phase1,116,LevoThinking,93.49999999999994,47
+1,phase1,117,LevoThinking,93.49999999999994,47
+1,phase1,118,LevoThinking,93.49999999999994,47
+1,phase1,119,LevoThinking,93.49999999999994,47
+1,phase1,120,LevoThinking,93.49999999999994,47
+1,phase1,121,LevoThinking,93.49999999999994,47
+1,phase1,122,LevoThinking,93.49999999999994,47
+1,phase1,123,LevoThinking,93.49999999999994,47
+1,phase1,124,LevoThinking,93.49999999999994,47
+1,phase1,125,LevoThinking,93.49999999999994,47
+1,phase1,126,LevoThinking,93.49999999999994,47
+1,phase1,127,LevoThinking,93.49999999999994,47
+1,phase1,128,LevoThinking,93.49999999999994,47
+1,phase1,129,LevoThinking,93.49999999999994,47
+1,phase1,130,LevoThinking,93.49999999999994,47
+1,phase1,131,LevoThinking,93.49999999999994,47
+1,phase1,132,LevoThinking,93.49999999999994,47
+1,phase1,133,LevoThinking,93.49999999999994,47
+1,phase1,134,LevoThinking,93.49999999999994,47
+1,phase1,135,LevoThinking,93.49999999999994,47
+1,phase1,136,LevoThinking,93.49999999999994,47
+1,phase1,137,LevoThinking,93.49999999999994,47
+1,phase1,138,LevoThinking,93.49999999999994,47
+1,phase1,139,LevoThinking,93.49999999999994,47
+1,phase1,140,LevoThinking,93.49999999999994,47
+1,phase1,141,LevoThinking,93.49999999999994,47
+1,phase1,142,LevoThinking,93.49999999999994,47
+1,phase1,143,LevoThinking,93.49999999999994,47
+1,phase1,144,LevoThinking,93.49999999999994,47
+1,phase1,145,LevoThinking,93.49999999999994,47
+1,phase1,146,LevoThinking,93.49999999999994,47
+1,phase1,147,LevoThinking,93.49999999999994,47
+1,phase1,148,LevoThinking,93.49999999999994,47
+1,phase1,149,LevoThinking,93.49999999999994,47
+1,phase1,150,LevoThinking,93.49999999999994,47
+1,phase1,151,LevoThinking,93.49999999999994,47
+1,phase1,152,LevoThinking,93.49999999999994,47
+1,phase1,153,LevoThinking,93.49999999999994,47
+1,phase1,154,LevoThinking,93.49999999999994,47
+1,phase1,155,LevoThinking,93.49999999999994,47
+1,phase1,156,LevoThinking,93.49999999999994,47
+1,phase1,157,LevoThinking,93.49999999999994,47
+1,phase1,158,LevoThinking,93.49999999999994,47
+1,phase1,159,LevoThinking,93.49999999999994,47
+1,phase1,160,LevoThinking,93.49999999999994,47
+1,phase1,161,LevoThinking,93.49999999999994,47
+1,phase1,162,LevoThinking,93.49999999999994,47
+1,phase1,163,LevoThinking,93.49999999999994,47
+1,phase1,164,LevoThinking,93.49999999999994,47
+1,phase1,165,LevoThinking,93.49999999999994,47
+1,phase1,166,LevoThinking,93.49999999999994,47
+1,phase1,167,LevoThinking,93.49999999999994,47
+1,phase1,168,LevoThinking,93.49999999999994,47
+1,phase1,169,LevoThinking,93.49999999999994,47
+1,phase1,170,LevoThinking,93.49999999999994,47
+1,phase1,171,LevoThinking,93.49999999999994,47
+1,phase1,172,LevoThinking,93.49999999999994,47
+1,phase1,173,LevoThinking,93.49999999999994,47
+1,phase1,174,LevoThinking,93.49999999999994,47
+1,phase1,175,LevoThinking,93.49999999999994,47
+1,phase1,176,LevoThinking,93.49999999999994,47
+1,phase1,177,LevoThinking,93.49999999999994,47
+1,phase1,178,LevoThinking,93.49999999999994,47
+1,phase1,179,LevoThinking,93.49999999999994,47
+1,phase1,180,LevoThinking,93.49999999999994,47
+1,phase1,181,LevoThinking,93.49999999999994,47
+1,phase1,182,LevoThinking,93.49999999999994,47
+1,phase1,183,LevoThinking,93.49999999999994,47
+1,phase1,184,LevoThinking,93.49999999999994,47
+1,phase1,185,LevoThinking,93.49999999999994,47
+1,phase1,186,LevoThinking,93.49999999999994,47
+1,phase1,187,LevoThinking,93.49999999999994,47
+1,phase1,188,LevoThinking,93.49999999999994,47
+1,phase1,189,LevoThinking,93.49999999999994,47
+1,phase1,190,LevoThinking,93.49999999999994,47
+1,phase1,191,LevoThinking,93.49999999999994,47
+1,phase1,192,LevoThinking,93.49999999999994,47
+1,phase1,193,LevoThinking,93.49999999999994,47
+1,phase1,194,LevoThinking,93.49999999999994,47
+1,phase1,195,LevoThinking,93.49999999999994,47
+1,phase1,196,LevoThinking,93.49999999999994,47
+1,phase1,197,LevoThinking,93.49999999999994,47
+1,phase1,198,LevoThinking,93.49999999999994,47
+1,phase1,199,LevoThinking,93.49999999999994,47
+2,phase2,0,EpsGreedy,-23.000000000000018,45
+2,phase2,1,EpsGreedy,-23.500000000000018,46
+2,phase2,2,EpsGreedy,-21.500000000000014,42
+2,phase2,3,EpsGreedy,-21.00000000000001,41
+2,phase2,4,EpsGreedy,-13.499999999999991,26
+2,phase2,5,EpsGreedy,-18.000000000000004,35
+2,phase2,6,EpsGreedy,-21.50000000000001,42
+2,phase2,7,EpsGreedy,-23.000000000000014,45
+2,phase2,8,EpsGreedy,-23.000000000000014,45
+2,phase2,9,EpsGreedy,-23.500000000000018,46
+2,phase2,10,EpsGreedy,-22.500000000000018,44
+2,phase2,11,EpsGreedy,-19.500000000000004,38
+2,phase2,12,EpsGreedy,-20.50000000000001,40
+2,phase2,13,EpsGreedy,-15.999999999999991,31
+2,phase2,14,EpsGreedy,-15.499999999999993,30
+2,phase2,15,EpsGreedy,-12.999999999999991,25
+2,phase2,16,EpsGreedy,-23.000000000000018,45
+2,phase2,17,EpsGreedy,-22.500000000000014,44
+2,phase2,18,EpsGreedy,-23.000000000000014,45
+2,phase2,19,EpsGreedy,-22.000000000000014,43
+2,phase2,20,EpsGreedy,-22.500000000000014,44
+2,phase2,21,EpsGreedy,-22.00000000000001,43
+2,phase2,22,EpsGreedy,-19.50000000000001,38
+2,phase2,23,EpsGreedy,-13.999999999999991,27
+2,phase2,24,EpsGreedy,-14.999999999999991,29
+2,phase2,25,EpsGreedy,-15.999999999999993,31
+2,phase2,26,EpsGreedy,-14.499999999999993,28
+2,phase2,27,EpsGreedy,-12.999999999999993,25
+2,phase2,28,EpsGreedy,-23.500000000000018,46
+2,phase2,29,EpsGreedy,-21.500000000000018,42
+2,phase2,30,EpsGreedy,-21.500000000000018,42
+2,phase2,31,EpsGreedy,-23.000000000000018,45
+2,phase2,32,EpsGreedy,-20.00000000000001,39
+2,phase2,33,EpsGreedy,-19.000000000000004,37
+2,phase2,34,EpsGreedy,-19.500000000000004,38
+2,phase2,35,EpsGreedy,-21.000000000000007,41
+2,phase2,36,EpsGreedy,-21.00000000000001,41
+2,phase2,37,EpsGreedy,-20.500000000000007,40
+2,phase2,38,EpsGreedy,-22.500000000000014,44
+2,phase2,39,EpsGreedy,-19.0,37
+2,phase2,40,EpsGreedy,-13.499999999999993,26
+2,phase2,41,EpsGreedy,-12.499999999999991,24
+2,phase2,42,EpsGreedy,-12.999999999999991,25
+2,phase2,43,EpsGreedy,-22.500000000000018,44
+2,phase2,44,EpsGreedy,-16.999999999999993,33
+2,phase2,45,EpsGreedy,-20.500000000000007,40
+2,phase2,46,EpsGreedy,-23.500000000000018,46
+2,phase2,47,EpsGreedy,-23.500000000000018,46
+2,phase2,48,EpsGreedy,-23.500000000000018,46
+2,phase2,49,EpsGreedy,-20.000000000000007,39
+2,phase2,50,EpsGreedy,-19.0,37
+2,phase2,51,EpsGreedy,-23.000000000000018,45
+2,phase2,52,EpsGreedy,-21.50000000000001,42
+2,phase2,53,EpsGreedy,-18.500000000000007,36
+2,phase2,54,EpsGreedy,-19.00000000000001,37
+2,phase2,55,EpsGreedy,-23.000000000000014,45
+2,phase2,56,EpsGreedy,-22.000000000000014,43
+2,phase2,57,EpsGreedy,-21.00000000000001,41
+2,phase2,58,EpsGreedy,-18.500000000000004,36
+2,phase2,59,EpsGreedy,-19.500000000000007,38
+2,phase2,60,EpsGreedy,-16.499999999999993,32
+2,phase2,61,EpsGreedy,-18.5,36
+2,phase2,62,EpsGreedy,-18.500000000000004,36
+2,phase2,63,EpsGreedy,-16.999999999999996,33
+2,phase2,64,EpsGreedy,-19.000000000000004,37
+2,phase2,65,EpsGreedy,-14.999999999999993,29
+2,phase2,66,EpsGreedy,-15.999999999999993,31
+2,phase2,67,EpsGreedy,-12.499999999999993,24
+2,phase2,68,EpsGreedy,-19.500000000000004,38
+2,phase2,69,EpsGreedy,-22.000000000000014,43
+2,phase2,70,EpsGreedy,-22.000000000000014,43
+2,phase2,71,EpsGreedy,-20.50000000000001,40
+2,phase2,72,EpsGreedy,-19.000000000000004,37
+2,phase2,73,EpsGreedy,-23.500000000000018,46
+2,phase2,74,EpsGreedy,-14.499999999999993,28
+2,phase2,75,EpsGreedy,-17.0,33
+2,phase2,76,EpsGreedy,-17.499999999999996,34
+2,phase2,77,EpsGreedy,-11.999999999999993,23
+2,phase2,78,EpsGreedy,-14.999999999999993,29
+2,phase2,79,EpsGreedy,-21.000000000000018,41
+2,phase2,80,EpsGreedy,-14.499999999999993,28
+2,phase2,81,EpsGreedy,-18.000000000000004,35
+2,phase2,82,EpsGreedy,-8.999999999999996,17
+2,phase2,83,EpsGreedy,-7.999999999999993,15
+2,phase2,84,EpsGreedy,-1.5000000000000002,2
+2,phase2,85,EpsGreedy,-14.499999999999993,28
+2,phase2,86,EpsGreedy,-14.999999999999991,29
+2,phase2,87,EpsGreedy,-17.499999999999996,34
+2,phase2,88,EpsGreedy,-17.999999999999996,35
+2,phase2,89,EpsGreedy,-16.999999999999996,33
+2,phase2,90,EpsGreedy,-11.499999999999991,22
+2,phase2,91,EpsGreedy,-6.4999999999999964,12
+2,phase2,92,EpsGreedy,-8.999999999999995,17
+2,phase2,93,EpsGreedy,-0.5000000000000002,0
+2,phase2,94,EpsGreedy,-14.499999999999995,28
+2,phase2,95,EpsGreedy,-21.500000000000014,42
+2,phase2,96,EpsGreedy,-11.499999999999993,22
+2,phase2,97,EpsGreedy,-14.999999999999991,29
+2,phase2,98,EpsGreedy,-0.5000000000000002,0
+2,phase2,99,EpsGreedy,-1.0000000000000002,1
+2,phase2,100,EpsGreedy,-1.5000000000000002,2
+2,phase2,101,EpsGreedy,-0.5000000000000002,0
+2,phase2,102,EpsGreedy,-0.5000000000000002,0
+2,phase2,103,EpsGreedy,-0.5000000000000002,0
+2,phase2,104,EpsGreedy,-0.5000000000000002,0
+2,phase2,105,EpsGreedy,-4.4999999999999964,8
+2,phase2,106,EpsGreedy,-0.5000000000000002,0
+2,phase2,107,EpsGreedy,-22.500000000000014,44
+2,phase2,108,EpsGreedy,-22.000000000000014,43
+2,phase2,109,EpsGreedy,-15.499999999999995,30
+2,phase2,110,EpsGreedy,-18.500000000000004,36
+2,phase2,111,EpsGreedy,-19.000000000000004,37
+2,phase2,112,EpsGreedy,-22.500000000000014,44
+2,phase2,113,EpsGreedy,-11.999999999999993,23
+2,phase2,114,EpsGreedy,-11.499999999999993,22
+2,phase2,115,EpsGreedy,-12.999999999999991,25
+2,phase2,116,EpsGreedy,-13.499999999999993,26
+2,phase2,117,EpsGreedy,-19.000000000000007,37
+2,phase2,118,EpsGreedy,-21.500000000000014,42
+2,phase2,119,EpsGreedy,-22.500000000000014,44
+2,phase2,120,EpsGreedy,-21.50000000000001,42
+2,phase2,121,EpsGreedy,-23.000000000000014,45
+2,phase2,122,EpsGreedy,-21.50000000000001,42
+2,phase2,123,EpsGreedy,-21.50000000000001,42
+2,phase2,124,EpsGreedy,-22.000000000000014,43
+2,phase2,125,EpsGreedy,-15.4,32
+2,phase2,126,EpsGreedy,-22.500000000000014,44
+2,phase2,127,EpsGreedy,-18.000000000000004,35
+2,phase2,128,EpsGreedy,-14.499999999999993,28
+2,phase2,129,EpsGreedy,-12.499999999999993,24
+2,phase2,130,EpsGreedy,-11.999999999999991,23
+2,phase2,131,EpsGreedy,-12.999999999999991,25
+2,phase2,132,EpsGreedy,-14.499999999999991,28
+2,phase2,133,EpsGreedy,-16.499999999999996,32
+2,phase2,134,EpsGreedy,-18.5,36
+2,phase2,135,EpsGreedy,-20.000000000000004,39
+2,phase2,136,EpsGreedy,-0.5000000000000002,0
+2,phase2,137,EpsGreedy,-8.499999999999996,16
+2,phase2,138,EpsGreedy,-0.5000000000000002,0
+2,phase2,139,EpsGreedy,-12.499999999999995,24
+2,phase2,140,EpsGreedy,-15.999999999999993,31
+2,phase2,141,EpsGreedy,-15.499999999999993,30
+2,phase2,142,EpsGreedy,-21.50000000000001,42
+2,phase2,143,EpsGreedy,-17.499999999999996,34
+2,phase2,144,EpsGreedy,-17.499999999999996,34
+2,phase2,145,EpsGreedy,-13.999999999999993,27
+2,phase2,146,EpsGreedy,-6.999999999999992,13
+2,phase2,147,EpsGreedy,-12.499999999999993,24
+2,phase2,148,EpsGreedy,-11.999999999999993,23
+2,phase2,149,EpsGreedy,-5.9999999999999964,11
+2,phase2,150,EpsGreedy,-13.499999999999993,26
+2,phase2,151,EpsGreedy,-4.499999999999998,8
+2,phase2,152,EpsGreedy,-13.499999999999991,26
+2,phase2,153,EpsGreedy,-19.500000000000004,38
+2,phase2,154,EpsGreedy,-16.999999999999996,33
+2,phase2,155,EpsGreedy,-9.999999999999996,19
+2,phase2,156,EpsGreedy,-5.999999999999992,11
+2,phase2,157,EpsGreedy,-0.5000000000000002,0
+2,phase2,158,EpsGreedy,-4.4999999999999964,8
+2,phase2,159,EpsGreedy,-0.5000000000000002,0
+2,phase2,160,EpsGreedy,-0.5000000000000002,0
+2,phase2,161,EpsGreedy,-0.5000000000000002,0
+2,phase2,162,EpsGreedy,-0.5000000000000002,0
+2,phase2,163,EpsGreedy,-7.499999999999993,14
+2,phase2,164,EpsGreedy,-5.499999999999992,10
+2,phase2,165,EpsGreedy,-15.499999999999991,30
+2,phase2,166,EpsGreedy,-7.499999999999996,14
+2,phase2,167,EpsGreedy,-0.5000000000000002,0
+2,phase2,168,EpsGreedy,-13.999999999999995,27
+2,phase2,169,EpsGreedy,-21.500000000000014,42
+2,phase2,170,EpsGreedy,-21.00000000000001,41
+2,phase2,171,EpsGreedy,-12.499999999999993,24
+2,phase2,172,EpsGreedy,-21.50000000000001,42
+2,phase2,173,EpsGreedy,-13.499999999999995,26
+2,phase2,174,EpsGreedy,-14.499999999999993,28
+2,phase2,175,EpsGreedy,-14.999999999999993,29
+2,phase2,176,EpsGreedy,-10.499999999999995,20
+2,phase2,177,EpsGreedy,-0.5000000000000002,0
+2,phase2,178,EpsGreedy,-10.499999999999995,20
+2,phase2,179,EpsGreedy,-12.499999999999995,24
+2,phase2,180,EpsGreedy,-14.999999999999995,29
+2,phase2,181,EpsGreedy,-12.499999999999993,24
+2,phase2,182,EpsGreedy,-12.999999999999996,25
+2,phase2,183,EpsGreedy,-11.999999999999993,23
+2,phase2,184,EpsGreedy,-8.999999999999996,17
+2,phase2,185,EpsGreedy,-15.499999999999993,30
+2,phase2,186,EpsGreedy,-21.00000000000001,41
+2,phase2,187,EpsGreedy,-10.499999999999993,20
+2,phase2,188,EpsGreedy,-14.999999999999993,29
+2,phase2,189,EpsGreedy,-4.999999999999996,9
+2,phase2,190,EpsGreedy,-1.0000000000000002,1
+2,phase2,191,EpsGreedy,-6.999999999999996,13
+2,phase2,192,EpsGreedy,-8.999999999999996,17
+2,phase2,193,EpsGreedy,-6.999999999999997,13
+2,phase2,194,EpsGreedy,-3.0,5
+2,phase2,195,EpsGreedy,-11.499999999999996,22
+2,phase2,196,EpsGreedy,-5.999999999999997,11
+2,phase2,197,EpsGreedy,-5.499999999999998,10
+2,phase2,198,EpsGreedy,-7.499999999999993,14
+2,phase2,199,EpsGreedy,-2.0,3
+2,phase2,0,Softmax,-24.000000000000018,47
+2,phase2,1,Softmax,-24.000000000000018,47
+2,phase2,2,Softmax,-24.000000000000018,47
+2,phase2,3,Softmax,-24.000000000000018,47
+2,phase2,4,Softmax,-24.000000000000018,47
+2,phase2,5,Softmax,-24.000000000000018,47
+2,phase2,6,Softmax,-24.000000000000018,47
+2,phase2,7,Softmax,-24.000000000000018,47
+2,phase2,8,Softmax,-24.000000000000018,47
+2,phase2,9,Softmax,-24.000000000000018,47
+2,phase2,10,Softmax,-24.000000000000018,47
+2,phase2,11,Softmax,-24.000000000000018,47
+2,phase2,12,Softmax,-24.000000000000018,47
+2,phase2,13,Softmax,-24.000000000000018,47
+2,phase2,14,Softmax,-24.000000000000018,47
+2,phase2,15,Softmax,-24.000000000000018,47
+2,phase2,16,Softmax,-24.000000000000018,47
+2,phase2,17,Softmax,-24.000000000000018,47
+2,phase2,18,Softmax,-23.000000000000018,45
+2,phase2,19,Softmax,-23.000000000000014,45
+2,phase2,20,Softmax,-24.000000000000018,47
+2,phase2,21,Softmax,-24.000000000000018,47
+2,phase2,22,Softmax,-24.000000000000018,47
+2,phase2,23,Softmax,-24.000000000000018,47
+2,phase2,24,Softmax,-24.000000000000018,47
+2,phase2,25,Softmax,-16.499999999999993,32
+2,phase2,26,Softmax,-15.999999999999991,31
+2,phase2,27,Softmax,-23.500000000000018,46
+2,phase2,28,Softmax,-24.000000000000018,47
+2,phase2,29,Softmax,-24.000000000000018,47
+2,phase2,30,Softmax,-23.500000000000018,46
+2,phase2,31,Softmax,-23.000000000000018,45
+2,phase2,32,Softmax,-17.999999999999996,35
+2,phase2,33,Softmax,-15.999999999999991,31
+2,phase2,34,Softmax,-18.0,35
+2,phase2,35,Softmax,-15.499999999999991,30
+2,phase2,36,Softmax,-18.5,36
+2,phase2,37,Softmax,-9.999999999999991,19
+2,phase2,38,Softmax,-15.499999999999991,30
+2,phase2,39,Softmax,-12.499999999999993,24
+2,phase2,40,Softmax,-12.499999999999993,24
+2,phase2,41,Softmax,-12.499999999999993,24
+2,phase2,42,Softmax,-12.499999999999993,24
+2,phase2,43,Softmax,-13.999999999999993,27
+2,phase2,44,Softmax,-15.499999999999993,30
+2,phase2,45,Softmax,-7.499999999999993,14
+2,phase2,46,Softmax,-7.999999999999995,15
+2,phase2,47,Softmax,-1.0000000000000002,1
+2,phase2,48,Softmax,-1.5000000000000002,2
+2,phase2,49,Softmax,-3.4999999999999982,6
+2,phase2,50,Softmax,-1.5000000000000004,2
+2,phase2,51,Softmax,-0.5000000000000002,0
+2,phase2,52,Softmax,-0.5000000000000002,0
+2,phase2,53,Softmax,-0.5000000000000002,0
+2,phase2,54,Softmax,-0.5000000000000002,0
+2,phase2,55,Softmax,-0.5000000000000002,0
+2,phase2,56,Softmax,-1.0000000000000004,1
+2,phase2,57,Softmax,-0.5000000000000002,0
+2,phase2,58,Softmax,-0.5000000000000002,0
+2,phase2,59,Softmax,-1.5000000000000004,2
+2,phase2,60,Softmax,-1.5000000000000004,2
+2,phase2,61,Softmax,-2.5000000000000004,4
+2,phase2,62,Softmax,-1.5000000000000004,2
+2,phase2,63,Softmax,-1.0000000000000002,1
+2,phase2,64,Softmax,-3.4999999999999982,6
+2,phase2,65,Softmax,-3.4999999999999947,6
+2,phase2,66,Softmax,-2.5000000000000004,4
+2,phase2,67,Softmax,-1.0000000000000002,1
+2,phase2,68,Softmax,-5.499999999999993,10
+2,phase2,69,Softmax,-2.9999999999999947,5
+2,phase2,70,Softmax,-7.999999999999994,15
+2,phase2,71,Softmax,-3.9999999999999964,7
+2,phase2,72,Softmax,-3.9999999999999947,7
+2,phase2,73,Softmax,-4.999999999999993,9
+2,phase2,74,Softmax,-9.999999999999993,19
+2,phase2,75,Softmax,-2.499999999999998,4
+2,phase2,76,Softmax,-1.5000000000000004,2
+2,phase2,77,Softmax,-1.5000000000000004,2
+2,phase2,78,Softmax,-5.999999999999993,11
+2,phase2,79,Softmax,-9.499999999999993,18
+2,phase2,80,Softmax,-8.499999999999995,16
+2,phase2,81,Softmax,-5.499999999999992,10
+2,phase2,82,Softmax,-0.5000000000000002,0
+2,phase2,83,Softmax,-0.5000000000000002,0
+2,phase2,84,Softmax,-2.499999999999996,4
+2,phase2,85,Softmax,-3.4999999999999964,6
+2,phase2,86,Softmax,-2.9999999999999956,5
+2,phase2,87,Softmax,-2.0,3
+2,phase2,88,Softmax,-4.999999999999998,9
+2,phase2,89,Softmax,-1.5000000000000002,2
+2,phase2,90,Softmax,-1.0000000000000002,1
+2,phase2,91,Softmax,-4.999999999999999,9
+2,phase2,92,Softmax,-2.999999999999999,5
+2,phase2,93,Softmax,-1.5000000000000002,2
+2,phase2,94,Softmax,-5.499999999999996,10
+2,phase2,95,Softmax,-4.9999999999999964,9
+2,phase2,96,Softmax,-1.0000000000000002,1
+2,phase2,97,Softmax,-2.5,4
+2,phase2,98,Softmax,-8.499999999999991,16
+2,phase2,99,Softmax,-1.5000000000000002,2
+2,phase2,100,Softmax,-4.999999999999992,9
+2,phase2,101,Softmax,-2.0,3
+2,phase2,102,Softmax,-2.0,3
+2,phase2,103,Softmax,-4.499999999999993,8
+2,phase2,104,Softmax,-2.0,3
+2,phase2,105,Softmax,-0.37000000000000033,2
+2,phase2,106,Softmax,-1.5000000000000004,2
+2,phase2,107,Softmax,-1.5000000000000002,2
+2,phase2,108,Softmax,-5.499999999999992,10
+2,phase2,109,Softmax,-1.5000000000000004,2
+2,phase2,110,Softmax,-10.999999999999996,21
+2,phase2,111,Softmax,-1.5000000000000004,2
+2,phase2,112,Softmax,-2.5,4
+2,phase2,113,Softmax,-1.5000000000000002,2
+2,phase2,114,Softmax,-1.5000000000000002,2
+2,phase2,115,Softmax,-4.499999999999993,8
+2,phase2,116,Softmax,-4.4999999999999964,8
+2,phase2,117,Softmax,-2.5,4
+2,phase2,118,Softmax,-5.999999999999997,11
+2,phase2,119,Softmax,-2.0,3
+2,phase2,120,Softmax,-2.4999999999999933,4
+2,phase2,121,Softmax,-3.0,5
+2,phase2,122,Softmax,-1.0000000000000002,1
+2,phase2,123,Softmax,-3.9999999999999956,7
+2,phase2,124,Softmax,-1.0000000000000002,1
+2,phase2,125,Softmax,-1.0000000000000002,1
+2,phase2,126,Softmax,-1.0000000000000002,1
+2,phase2,127,Softmax,-2.0,3
+2,phase2,128,Softmax,-2.0,3
+2,phase2,129,Softmax,-1.0000000000000002,1
+2,phase2,130,Softmax,-2.9999999999999982,5
+2,phase2,131,Softmax,-1.5000000000000002,2
+2,phase2,132,Softmax,-1.0000000000000002,1
+2,phase2,133,Softmax,-1.5000000000000004,2
+2,phase2,134,Softmax,-1.5000000000000002,2
+2,phase2,135,Softmax,-1.0000000000000002,1
+2,phase2,136,Softmax,-1.5000000000000002,2
+2,phase2,137,Softmax,-9.999999999999991,19
+2,phase2,138,Softmax,-2.499999999999992,4
+2,phase2,139,Softmax,-2.0,3
+2,phase2,140,Softmax,-1.5000000000000002,2
+2,phase2,141,Softmax,-1.0000000000000002,1
+2,phase2,142,Softmax,-2.0000000000000004,3
+2,phase2,143,Softmax,-2.0000000000000004,3
+2,phase2,144,Softmax,-4.999999999999992,9
+2,phase2,145,Softmax,-5.999999999999996,11
+2,phase2,146,Softmax,-5.499999999999996,10
+2,phase2,147,Softmax,-1.5000000000000002,2
+2,phase2,148,Softmax,-0.5000000000000002,0
+2,phase2,149,Softmax,-1.819999999999997,5
+2,phase2,150,Softmax,-1.5000000000000002,2
+2,phase2,151,Softmax,-2.499999999999996,4
+2,phase2,152,Softmax,-2.0000000000000004,3
+2,phase2,153,Softmax,-5.999999999999998,11
+2,phase2,154,Softmax,-2.4999999999999987,4
+2,phase2,155,Softmax,-2.0,3
+2,phase2,156,Softmax,-1.5000000000000002,2
+2,phase2,157,Softmax,-3.4999999999999982,6
+2,phase2,158,Softmax,-2.0,3
+2,phase2,159,Softmax,-2.0,3
+2,phase2,160,Softmax,-2.4999999999999973,4
+2,phase2,161,Softmax,-6.499999999999996,12
+2,phase2,162,Softmax,-0.5000000000000002,0
+2,phase2,163,Softmax,-1.0000000000000002,1
+2,phase2,164,Softmax,-1.5000000000000002,2
+2,phase2,165,Softmax,-1.0000000000000002,1
+2,phase2,166,Softmax,-0.5000000000000002,0
+2,phase2,167,Softmax,-2.999999999999994,5
+2,phase2,168,Softmax,-2.9999999999999947,5
+2,phase2,169,Softmax,-1.0000000000000002,1
+2,phase2,170,Softmax,-0.5000000000000002,0
+2,phase2,171,Softmax,-1.0000000000000002,1
+2,phase2,172,Softmax,-0.5000000000000002,0
+2,phase2,173,Softmax,-2.499999999999995,4
+2,phase2,174,Softmax,-0.5000000000000002,0
+2,phase2,175,Softmax,-2.9999999999999964,5
+2,phase2,176,Softmax,-2.0000000000000004,3
+2,phase2,177,Softmax,-4.999999999999995,9
+2,phase2,178,Softmax,-1.5000000000000004,2
+2,phase2,179,Softmax,-2.0000000000000004,3
+2,phase2,180,Softmax,-1.5000000000000002,2
+2,phase2,181,Softmax,-2.4999999999999973,4
+2,phase2,182,Softmax,-0.5000000000000002,0
+2,phase2,183,Softmax,-1.0000000000000002,1
+2,phase2,184,Softmax,-1.0000000000000002,1
+2,phase2,185,Softmax,-1.5000000000000002,2
+2,phase2,186,Softmax,-2.9999999999999973,5
+2,phase2,187,Softmax,-2.0000000000000004,3
+2,phase2,188,Softmax,-2.499999999999994,4
+2,phase2,189,Softmax,-1.0000000000000002,1
+2,phase2,190,Softmax,-2.0000000000000004,3
+2,phase2,191,Softmax,-0.5000000000000002,0
+2,phase2,192,Softmax,-1.0000000000000002,1
+2,phase2,193,Softmax,-1.0000000000000002,1
+2,phase2,194,Softmax,-0.5000000000000002,0
+2,phase2,195,Softmax,-1.0000000000000002,1
+2,phase2,196,Softmax,-0.5000000000000002,0
+2,phase2,197,Softmax,-3.4999999999999947,6
+2,phase2,198,Softmax,-3.499999999999993,6
+2,phase2,199,Softmax,-1.0000000000000002,1
+2,phase2,0,LevoQ,-24.000000000000018,47
+2,phase2,1,LevoQ,-24.000000000000018,47
+2,phase2,2,LevoQ,-24.000000000000018,47
+2,phase2,3,LevoQ,-24.000000000000018,47
+2,phase2,4,LevoQ,-24.000000000000018,47
+2,phase2,5,LevoQ,-24.000000000000018,47
+2,phase2,6,LevoQ,-24.000000000000018,47
+2,phase2,7,LevoQ,-24.000000000000018,47
+2,phase2,8,LevoQ,-24.000000000000018,47
+2,phase2,9,LevoQ,-24.000000000000018,47
+2,phase2,10,LevoQ,-24.000000000000018,47
+2,phase2,11,LevoQ,-24.000000000000018,47
+2,phase2,12,LevoQ,-24.000000000000018,47
+2,phase2,13,LevoQ,-24.000000000000018,47
+2,phase2,14,LevoQ,-24.000000000000018,47
+2,phase2,15,LevoQ,-24.000000000000018,47
+2,phase2,16,LevoQ,-9.499999999999991,18
+2,phase2,17,LevoQ,-24.000000000000018,47
+2,phase2,18,LevoQ,-24.000000000000018,47
+2,phase2,19,LevoQ,-24.000000000000018,47
+2,phase2,20,LevoQ,-24.000000000000018,47
+2,phase2,21,LevoQ,-23.500000000000018,46
+2,phase2,22,LevoQ,-21.50000000000001,42
+2,phase2,23,LevoQ,-23.000000000000014,45
+2,phase2,24,LevoQ,-23.000000000000014,45
+2,phase2,25,LevoQ,-23.000000000000014,45
+2,phase2,26,LevoQ,-6.999999999999991,13
+2,phase2,27,LevoQ,-24.000000000000018,47
+2,phase2,28,LevoQ,-24.000000000000018,47
+2,phase2,29,LevoQ,-22.500000000000018,44
+2,phase2,30,LevoQ,-23.000000000000018,45
+2,phase2,31,LevoQ,-8.999999999999991,17
+2,phase2,32,LevoQ,-14.499999999999991,28
+2,phase2,33,LevoQ,-12.499999999999993,24
+2,phase2,34,LevoQ,-12.499999999999993,24
+2,phase2,35,LevoQ,-15.499999999999993,30
+2,phase2,36,LevoQ,-12.999999999999993,25
+2,phase2,37,LevoQ,-12.499999999999993,24
+2,phase2,38,LevoQ,-12.999999999999993,25
+2,phase2,39,LevoQ,-12.499999999999993,24
+2,phase2,40,LevoQ,-13.999999999999993,27
+2,phase2,41,LevoQ,-10.999999999999991,21
+2,phase2,42,LevoQ,-10.499999999999993,20
+2,phase2,43,LevoQ,-7.499999999999992,14
+2,phase2,44,LevoQ,-6.999999999999993,13
+2,phase2,45,LevoQ,-9.499999999999993,18
+2,phase2,46,LevoQ,-7.999999999999993,15
+2,phase2,47,LevoQ,-9.499999999999993,18
+2,phase2,48,LevoQ,-11.499999999999991,22
+2,phase2,49,LevoQ,-12.499999999999991,24
+2,phase2,50,LevoQ,-13.999999999999993,27
+2,phase2,51,LevoQ,-12.999999999999991,25
+2,phase2,52,LevoQ,-10.999999999999993,21
+2,phase2,53,LevoQ,-13.499999999999991,26
+2,phase2,54,LevoQ,-7.499999999999992,14
+2,phase2,55,LevoQ,-16.499999999999996,32
+2,phase2,56,LevoQ,-8.999999999999993,17
+2,phase2,57,LevoQ,-10.999999999999993,21
+2,phase2,58,LevoQ,-14.499999999999991,28
+2,phase2,59,LevoQ,-9.999999999999993,19
+2,phase2,60,LevoQ,-5.999999999999992,11
+2,phase2,61,LevoQ,-9.999999999999991,19
+2,phase2,62,LevoQ,-5.9999999999999964,11
+2,phase2,63,LevoQ,-14.999999999999993,29
+2,phase2,64,LevoQ,-3.9999999999999947,7
+2,phase2,65,LevoQ,-10.999999999999996,21
+2,phase2,66,LevoQ,-10.499999999999993,20
+2,phase2,67,LevoQ,-2.0,3
+2,phase2,68,LevoQ,-9.999999999999996,19
+2,phase2,69,LevoQ,-2.9999999999999947,5
+2,phase2,70,LevoQ,-8.999999999999996,17
+2,phase2,71,LevoQ,-9.499999999999991,18
+2,phase2,72,LevoQ,-0.5000000000000002,0
+2,phase2,73,LevoQ,-1.5000000000000004,2
+2,phase2,74,LevoQ,-0.5000000000000002,0
+2,phase2,75,LevoQ,-8.999999999999996,17
+2,phase2,76,LevoQ,-7.999999999999992,15
+2,phase2,77,LevoQ,-3.499999999999999,6
+2,phase2,78,LevoQ,-13.499999999999991,26
+2,phase2,79,LevoQ,-1.0000000000000002,1
+2,phase2,80,LevoQ,-3.0,5
+2,phase2,81,LevoQ,-1.0000000000000002,1
+2,phase2,82,LevoQ,-0.5000000000000002,0
+2,phase2,83,LevoQ,-4.999999999999996,9
+2,phase2,84,LevoQ,-2.4999999999999925,4
+2,phase2,85,LevoQ,-3.4999999999999973,6
+2,phase2,86,LevoQ,-0.2300000000000002,2
+2,phase2,87,LevoQ,-1.0000000000000002,1
+2,phase2,88,LevoQ,-5.499999999999997,10
+2,phase2,89,LevoQ,-3.999999999999994,7
+2,phase2,90,LevoQ,-2.0,3
+2,phase2,91,LevoQ,-5.499999999999992,10
+2,phase2,92,LevoQ,-2.4999999999999964,4
+2,phase2,93,LevoQ,-1.5000000000000002,2
+2,phase2,94,LevoQ,-5.999999999999992,11
+2,phase2,95,LevoQ,-2.0,3
+2,phase2,96,LevoQ,-9.999999999999996,19
+2,phase2,97,LevoQ,-0.5000000000000002,0
+2,phase2,98,LevoQ,-3.0,5
+2,phase2,99,LevoQ,-7.499999999999994,14
+2,phase2,100,LevoQ,-1.5000000000000002,2
+2,phase2,101,LevoQ,-11.999999999999993,23
+2,phase2,102,LevoQ,-2.4999999999999956,4
+2,phase2,103,LevoQ,-2.0,3
+2,phase2,104,LevoQ,-6.999999999999992,13
+2,phase2,105,LevoQ,-1.5000000000000002,2
+2,phase2,106,LevoQ,-1.849999999999999,5
+2,phase2,107,LevoQ,-7.499999999999994,14
+2,phase2,108,LevoQ,-0.5000000000000002,0
+2,phase2,109,LevoQ,-2.0,3
+2,phase2,110,LevoQ,-1.0000000000000002,1
+2,phase2,111,LevoQ,-8.499999999999996,16
+2,phase2,112,LevoQ,-3.399999999999995,8
+2,phase2,113,LevoQ,-2.499999999999992,4
+2,phase2,114,LevoQ,-4.439999999999997,10
+2,phase2,115,LevoQ,-2.9999999999999964,5
+2,phase2,116,LevoQ,-1.5000000000000002,2
+2,phase2,117,LevoQ,-7.999999999999992,15
+2,phase2,118,LevoQ,-0.5000000000000002,0
+2,phase2,119,LevoQ,-7.999999999999996,15
+2,phase2,120,LevoQ,-3.499999999999994,6
+2,phase2,121,LevoQ,-3.0,5
+2,phase2,122,LevoQ,-2.399999999999997,6
+2,phase2,123,LevoQ,-1.0000000000000002,1
+2,phase2,124,LevoQ,-8.999999999999996,17
+2,phase2,125,LevoQ,-5.779999999999997,13
+2,phase2,126,LevoQ,-5.999999999999992,11
+2,phase2,127,LevoQ,-4.499999999999999,8
+2,phase2,128,LevoQ,-2.0000000000000004,3
+2,phase2,129,LevoQ,-1.5000000000000002,2
+2,phase2,130,LevoQ,-4.999999999999998,9
+2,phase2,131,LevoQ,-1.0000000000000002,1
+2,phase2,132,LevoQ,-2.0,3
+2,phase2,133,LevoQ,-2.999999999999993,5
+2,phase2,134,LevoQ,-2.0,3
+2,phase2,135,LevoQ,-12.499999999999996,24
+2,phase2,136,LevoQ,-3.999999999999999,7
+2,phase2,137,LevoQ,-7.999999999999996,15
+2,phase2,138,LevoQ,-11.999999999999993,23
+2,phase2,139,LevoQ,-1.0000000000000002,1
+2,phase2,140,LevoQ,0.5599999999999998,0
+2,phase2,141,LevoQ,-0.5000000000000002,0
+2,phase2,142,LevoQ,-0.5000000000000002,0
+2,phase2,143,LevoQ,-0.5000000000000002,0
+2,phase2,144,LevoQ,-0.5000000000000002,0
+2,phase2,145,LevoQ,-5.4999999999999964,10
+2,phase2,146,LevoQ,-8.999999999999991,17
+2,phase2,147,LevoQ,-2.0,3
+2,phase2,148,LevoQ,-9.499999999999993,18
+2,phase2,149,LevoQ,-0.5000000000000002,0
+2,phase2,150,LevoQ,-5.999999999999997,11
+2,phase2,151,LevoQ,-1.5000000000000004,2
+2,phase2,152,LevoQ,-0.5000000000000002,0
+2,phase2,153,LevoQ,-3.499999999999993,6
+2,phase2,154,LevoQ,-1.0000000000000002,1
+2,phase2,155,LevoQ,-2.0,3
+2,phase2,156,LevoQ,-5.999999999999998,11
+2,phase2,157,LevoQ,-2.0,3
+2,phase2,158,LevoQ,-10.499999999999993,20
+2,phase2,159,LevoQ,-0.5000000000000002,0
+2,phase2,160,LevoQ,-5.499999999999995,10
+2,phase2,161,LevoQ,-1.0000000000000002,1
+2,phase2,162,LevoQ,-0.5000000000000002,0
+2,phase2,163,LevoQ,-2.5,4
+2,phase2,164,LevoQ,-1.0000000000000002,1
+2,phase2,165,LevoQ,-5.499999999999999,10
+2,phase2,166,LevoQ,-0.5000000000000002,0
+2,phase2,167,LevoQ,-0.5000000000000002,0
+2,phase2,168,LevoQ,-5.499999999999996,10
+2,phase2,169,LevoQ,-0.5000000000000002,0
+2,phase2,170,LevoQ,-4.999999999999996,9
+2,phase2,171,LevoQ,-1.0000000000000002,1
+2,phase2,172,LevoQ,-1.0000000000000002,1
+2,phase2,173,LevoQ,-7.999999999999996,15
+2,phase2,174,LevoQ,-0.5000000000000002,0
+2,phase2,175,LevoQ,-5.499999999999995,10
+2,phase2,176,LevoQ,-2.259999999999997,6
+2,phase2,177,LevoQ,-2.0,3
+2,phase2,178,LevoQ,-4.499999999999999,8
+2,phase2,179,LevoQ,-6.999999999999992,13
+2,phase2,180,LevoQ,-3.9999999999999982,7
+2,phase2,181,LevoQ,-6.999999999999998,13
+2,phase2,182,LevoQ,-2.0000000000000004,3
+2,phase2,183,LevoQ,-4.499999999999999,8
+2,phase2,184,LevoQ,-3.4999999999999947,6
+2,phase2,185,LevoQ,-1.0000000000000002,1
+2,phase2,186,LevoQ,-2.929999999999997,7
+2,phase2,187,LevoQ,-3.999999999999992,7
+2,phase2,188,LevoQ,-1.0000000000000002,1
+2,phase2,189,LevoQ,-4.999999999999993,9
+2,phase2,190,LevoQ,-1.0000000000000002,1
+2,phase2,191,LevoQ,-1.4399999999999962,4
+2,phase2,192,LevoQ,-6.999999999999993,13
+2,phase2,193,LevoQ,-4.4999999999999964,8
+2,phase2,194,LevoQ,-3.9999999999999956,7
+2,phase2,195,LevoQ,-0.5000000000000002,0
+2,phase2,196,LevoQ,-3.9999999999999982,7
+2,phase2,197,LevoQ,-1.5000000000000004,2
+2,phase2,198,LevoQ,-0.5000000000000002,0
+2,phase2,199,LevoQ,-2.4999999999999973,4
+2,phase2,0,LevoThinking,-24.000000000000018,47
+2,phase2,1,LevoThinking,-24.000000000000018,47
+2,phase2,2,LevoThinking,-24.000000000000018,47
+2,phase2,3,LevoThinking,-24.000000000000018,47
+2,phase2,4,LevoThinking,-24.000000000000018,47
+2,phase2,5,LevoThinking,-24.000000000000018,47
+2,phase2,6,LevoThinking,-24.000000000000018,47
+2,phase2,7,LevoThinking,-24.000000000000018,47
+2,phase2,8,LevoThinking,-24.000000000000018,47
+2,phase2,9,LevoThinking,-24.000000000000018,47
+2,phase2,10,LevoThinking,-24.000000000000018,47
+2,phase2,11,LevoThinking,-24.000000000000018,47
+2,phase2,12,LevoThinking,-24.000000000000018,47
+2,phase2,13,LevoThinking,-24.000000000000018,47
+2,phase2,14,LevoThinking,-24.000000000000018,47
+2,phase2,15,LevoThinking,-24.000000000000018,47
+2,phase2,16,LevoThinking,-24.000000000000018,47
+2,phase2,17,LevoThinking,-23.000000000000018,45
+2,phase2,18,LevoThinking,-20.000000000000004,39
+2,phase2,19,LevoThinking,-13.499999999999991,26
+2,phase2,20,LevoThinking,-12.499999999999993,24
+2,phase2,21,LevoThinking,-12.499999999999993,24
+2,phase2,22,LevoThinking,-13.499999999999993,26
+2,phase2,23,LevoThinking,-13.999999999999991,27
+2,phase2,24,LevoThinking,-12.999999999999993,25
+2,phase2,25,LevoThinking,-12.499999999999993,24
+2,phase2,26,LevoThinking,-12.499999999999993,24
+2,phase2,27,LevoThinking,-12.499999999999993,24
+2,phase2,28,LevoThinking,-12.999999999999993,25
+2,phase2,29,LevoThinking,-12.499999999999993,24
+2,phase2,30,LevoThinking,-13.499999999999993,26
+2,phase2,31,LevoThinking,-13.499999999999991,26
+2,phase2,32,LevoThinking,-14.999999999999991,29
+2,phase2,33,LevoThinking,-15.499999999999993,30
+2,phase2,34,LevoThinking,-7.499999999999992,14
+2,phase2,35,LevoThinking,-7.499999999999995,14
+2,phase2,36,LevoThinking,-1.5000000000000004,2
+2,phase2,37,LevoThinking,-2.9999999999999964,5
+2,phase2,38,LevoThinking,-7.499999999999991,14
+2,phase2,39,LevoThinking,-4.499999999999997,8
+2,phase2,40,LevoThinking,-12.499999999999991,24
+2,phase2,41,LevoThinking,-2.499999999999994,4
+2,phase2,42,LevoThinking,-8.999999999999996,17
+2,phase2,43,LevoThinking,-11.999999999999993,23
+2,phase2,44,LevoThinking,-7.999999999999992,15
+2,phase2,45,LevoThinking,-5.959999999999995,13
+2,phase2,46,LevoThinking,-8.499999999999991,16
+2,phase2,47,LevoThinking,-5.999999999999993,11
+2,phase2,48,LevoThinking,-11.999999999999993,23
+2,phase2,49,LevoThinking,-4.999999999999992,9
+2,phase2,50,LevoThinking,-2.219999999999998,6
+2,phase2,51,LevoThinking,-4.499999999999992,8
+2,phase2,52,LevoThinking,-6.499999999999993,12
+2,phase2,53,LevoThinking,-11.999999999999995,23
+2,phase2,54,LevoThinking,-11.499999999999995,22
+2,phase2,55,LevoThinking,-10.499999999999996,20
+2,phase2,56,LevoThinking,-17.5,34
+2,phase2,57,LevoThinking,-1.0000000000000002,1
+2,phase2,58,LevoThinking,-4.409999999999996,10
+2,phase2,59,LevoThinking,-8.999999999999993,17
+2,phase2,60,LevoThinking,-1.0000000000000004,1
+2,phase2,61,LevoThinking,-9.999999999999995,19
+2,phase2,62,LevoThinking,-6.499999999999992,12
+2,phase2,63,LevoThinking,-7.499999999999997,14
+2,phase2,64,LevoThinking,-12.499999999999993,24
+2,phase2,65,LevoThinking,-5.499999999999999,10
+2,phase2,66,LevoThinking,-3.999999999999994,7
+2,phase2,67,LevoThinking,-4.999999999999993,9
+2,phase2,68,LevoThinking,-2.0,3
+2,phase2,69,LevoThinking,-4.999999999999995,9
+2,phase2,70,LevoThinking,-2.0,3
+2,phase2,71,LevoThinking,-5.999999999999998,11
+2,phase2,72,LevoThinking,-5.999999999999991,11
+2,phase2,73,LevoThinking,-0.5000000000000002,0
+2,phase2,74,LevoThinking,-6.499999999999992,12
+2,phase2,75,LevoThinking,-0.5000000000000002,0
+2,phase2,76,LevoThinking,-2.9099999999999966,7
+2,phase2,77,LevoThinking,-5.999999999999993,11
+2,phase2,78,LevoThinking,-1.0000000000000002,1
+2,phase2,79,LevoThinking,-10.499999999999995,20
+2,phase2,80,LevoThinking,-10.499999999999993,20
+2,phase2,81,LevoThinking,-5.999999999999993,11
+2,phase2,82,LevoThinking,-7.499999999999992,14
+2,phase2,83,LevoThinking,-2.5000000000000004,4
+2,phase2,84,LevoThinking,-0.27000000000000024,2
+2,phase2,85,LevoThinking,-2.999999999999992,5
+2,phase2,86,LevoThinking,-3.0,5
+2,phase2,87,LevoThinking,-6.499999999999993,12
+2,phase2,88,LevoThinking,-3.999999999999994,7
+2,phase2,89,LevoThinking,-6.499999999999998,12
+2,phase2,90,LevoThinking,-2.999999999999994,5
+2,phase2,91,LevoThinking,-2.0,3
+2,phase2,92,LevoThinking,-6.999999999999994,13
+2,phase2,93,LevoThinking,-3.4999999999999982,6
+2,phase2,94,LevoThinking,-6.499999999999997,12
+2,phase2,95,LevoThinking,-4.999999999999993,9
+2,phase2,96,LevoThinking,-7.499999999999996,14
+2,phase2,97,LevoThinking,-9.499999999999991,18
+2,phase2,98,LevoThinking,-1.0000000000000002,1
+2,phase2,99,LevoThinking,-2.5,4
+2,phase2,100,LevoThinking,-6.499999999999993,12
+2,phase2,101,LevoThinking,-0.5000000000000002,0
+2,phase2,102,LevoThinking,-13.499999999999991,26
+2,phase2,103,LevoThinking,-1.5000000000000002,2
+2,phase2,104,LevoThinking,-5.999999999999998,11
+2,phase2,105,LevoThinking,-2.499999999999996,4
+2,phase2,106,LevoThinking,-0.5000000000000002,0
+2,phase2,107,LevoThinking,-11.999999999999993,23
+2,phase2,108,LevoThinking,-3.999999999999993,7
+2,phase2,109,LevoThinking,-2.8599999999999985,7
+2,phase2,110,LevoThinking,-4.999999999999998,9
+2,phase2,111,LevoThinking,-0.5000000000000002,0
+2,phase2,112,LevoThinking,-5.999999999999998,11
+2,phase2,113,LevoThinking,-6.499999999999992,12
+2,phase2,114,LevoThinking,-3.999999999999992,7
+2,phase2,115,LevoThinking,-4.999999999999995,9
+2,phase2,116,LevoThinking,-0.5000000000000002,0
+2,phase2,117,LevoThinking,-8.999999999999996,17
+2,phase2,118,LevoThinking,-2.499999999999993,4
+2,phase2,119,LevoThinking,-1.5000000000000002,2
+2,phase2,120,LevoThinking,-1.5000000000000002,2
+2,phase2,121,LevoThinking,-5.999999999999995,11
+2,phase2,122,LevoThinking,-2.4999999999999982,4
+2,phase2,123,LevoThinking,-2.4999999999999982,4
+2,phase2,124,LevoThinking,-0.5000000000000002,0
+2,phase2,125,LevoThinking,-5.499999999999995,10
+2,phase2,126,LevoThinking,-2.999999999999992,5
+2,phase2,127,LevoThinking,-4.999999999999996,9
+2,phase2,128,LevoThinking,-2.999999999999993,5
+2,phase2,129,LevoThinking,-0.5000000000000002,0
+2,phase2,130,LevoThinking,-11.999999999999993,23
+2,phase2,131,LevoThinking,-0.5000000000000002,0
+2,phase2,132,LevoThinking,-3.4999999999999982,6
+2,phase2,133,LevoThinking,-5.999999999999992,11
+2,phase2,134,LevoThinking,-1.0000000000000002,1
+2,phase2,135,LevoThinking,-7.499999999999995,14
+2,phase2,136,LevoThinking,-0.5000000000000002,0
+2,phase2,137,LevoThinking,-2.5,4
+2,phase2,138,LevoThinking,-5.499999999999992,10
+2,phase2,139,LevoThinking,-0.5000000000000002,0
+2,phase2,140,LevoThinking,-8.999999999999995,17
+2,phase2,141,LevoThinking,-1.5000000000000004,2
+2,phase2,142,LevoThinking,-4.499999999999998,8
+2,phase2,143,LevoThinking,-3.769999999999997,9
+2,phase2,144,LevoThinking,-0.5000000000000002,0
+2,phase2,145,LevoThinking,-3.9999999999999973,7
+2,phase2,146,LevoThinking,-4.4999999999999964,8
+2,phase2,147,LevoThinking,-2.4999999999999982,4
+2,phase2,148,LevoThinking,-10.499999999999993,20
+2,phase2,149,LevoThinking,-2.0000000000000004,3
+2,phase2,150,LevoThinking,-2.0,3
+2,phase2,151,LevoThinking,-2.0000000000000004,3
+2,phase2,152,LevoThinking,-0.5000000000000002,0
+2,phase2,153,LevoThinking,-6.499999999999994,12
+2,phase2,154,LevoThinking,-0.5000000000000002,0
+2,phase2,155,LevoThinking,-3.0,5
+2,phase2,156,LevoThinking,-7.499999999999993,14
+2,phase2,157,LevoThinking,-4.999999999999999,9
+2,phase2,158,LevoThinking,-6.4999999999999964,12
+2,phase2,159,LevoThinking,-1.0000000000000004,1
+2,phase2,160,LevoThinking,-0.5000000000000002,0
+2,phase2,161,LevoThinking,-5.999999999999993,11
+2,phase2,162,LevoThinking,-0.5000000000000002,0
+2,phase2,163,LevoThinking,-6.999999999999993,13
+2,phase2,164,LevoThinking,-1.5000000000000004,2
+2,phase2,165,LevoThinking,-3.5,6
+2,phase2,166,LevoThinking,-3.9999999999999964,7
+2,phase2,167,LevoThinking,-1.5000000000000002,2
+2,phase2,168,LevoThinking,-4.359999999999997,10
+2,phase2,169,LevoThinking,-3.9999999999999956,7
+2,phase2,170,LevoThinking,-0.5000000000000002,0
+2,phase2,171,LevoThinking,-2.0000000000000004,3
+2,phase2,172,LevoThinking,-5.4999999999999964,10
+2,phase2,173,LevoThinking,-1.5000000000000002,2
+2,phase2,174,LevoThinking,-5.499999999999993,10
+2,phase2,175,LevoThinking,-3.0,5
+2,phase2,176,LevoThinking,-7.999999999999994,15
+2,phase2,177,LevoThinking,-0.5000000000000002,0
+2,phase2,178,LevoThinking,-2.4999999999999973,4
+2,phase2,179,LevoThinking,-8.999999999999993,17
+2,phase2,180,LevoThinking,-4.5,8
+2,phase2,181,LevoThinking,-2.0000000000000004,3
+2,phase2,182,LevoThinking,-0.5000000000000002,0
+2,phase2,183,LevoThinking,-4.999999999999997,11
+2,phase2,184,LevoThinking,-1.0000000000000002,1
+2,phase2,185,LevoThinking,-1.5000000000000002,2
+2,phase2,186,LevoThinking,-2.759999999999997,7
+2,phase2,187,LevoThinking,-3.499999999999993,6
+2,phase2,188,LevoThinking,-1.5000000000000002,2
+2,phase2,189,LevoThinking,-5.999999999999995,11
+2,phase2,190,LevoThinking,-2.9999999999999973,5
+2,phase2,191,LevoThinking,-7.499999999999995,14
+2,phase2,192,LevoThinking,-4.499999999999996,8
+2,phase2,193,LevoThinking,-0.5000000000000002,0
+2,phase2,194,LevoThinking,-3.2399999999999984,8
+2,phase2,195,LevoThinking,-2.9999999999999947,5
+2,phase2,196,LevoThinking,-6.499999999999996,12
+2,phase2,197,LevoThinking,-4.9999999999999964,9
+2,phase2,198,LevoThinking,-0.5000000000000002,0
+2,phase2,199,LevoThinking,-11.999999999999993,23
+3,phase3,0,EpsGreedy,-1.0000000000000002,1
+3,phase3,1,EpsGreedy,-5.499999999999994,10
+3,phase3,2,EpsGreedy,-0.5000000000000002,0
+3,phase3,3,EpsGreedy,-0.5000000000000002,0
+3,phase3,4,EpsGreedy,-4.499999999999999,8
+3,phase3,5,EpsGreedy,-8.499999999999996,16
+3,phase3,6,EpsGreedy,-8.499999999999996,16
+3,phase3,7,EpsGreedy,-9.999999999999996,19
+3,phase3,8,EpsGreedy,-7.499999999999997,14
+3,phase3,9,EpsGreedy,-2.9999999999999956,5
+3,phase3,10,EpsGreedy,-7.499999999999992,14
+3,phase3,11,EpsGreedy,-2.9999999999999947,5
+3,phase3,12,EpsGreedy,-6.499999999999994,12
+3,phase3,13,EpsGreedy,-3.499999999999994,6
+3,phase3,14,EpsGreedy,-0.5000000000000002,0
+3,phase3,15,EpsGreedy,-1.0000000000000002,1
+3,phase3,16,EpsGreedy,-0.5000000000000002,0
+3,phase3,17,EpsGreedy,-0.5000000000000002,0
+3,phase3,18,EpsGreedy,-0.5000000000000002,0
+3,phase3,19,EpsGreedy,-2.4999999999999982,4
+3,phase3,20,EpsGreedy,-0.5000000000000002,0
+3,phase3,21,EpsGreedy,-5.4999999999999964,10
+3,phase3,22,EpsGreedy,-2.0,3
+3,phase3,23,EpsGreedy,-0.5000000000000002,0
+3,phase3,24,EpsGreedy,-0.5000000000000002,0
+3,phase3,25,EpsGreedy,-0.5000000000000002,0
+3,phase3,26,EpsGreedy,-1.0000000000000002,1
+3,phase3,27,EpsGreedy,-4.999999999999996,9
+3,phase3,28,EpsGreedy,-17.499999999999996,34
+3,phase3,29,EpsGreedy,-10.499999999999995,20
+3,phase3,30,EpsGreedy,-15.499999999999993,30
+3,phase3,31,EpsGreedy,-17.499999999999996,34
+3,phase3,32,EpsGreedy,-16.999999999999996,33
+3,phase3,33,EpsGreedy,-14.999999999999993,29
+3,phase3,34,EpsGreedy,-7.499999999999998,14
+3,phase3,35,EpsGreedy,-10.499999999999996,20
+3,phase3,36,EpsGreedy,-16.499999999999993,32
+3,phase3,37,EpsGreedy,-3.4999999999999947,6
+3,phase3,38,EpsGreedy,-1.0000000000000004,1
+3,phase3,39,EpsGreedy,-1.5000000000000004,2
+3,phase3,40,EpsGreedy,-19.000000000000004,37
+3,phase3,41,EpsGreedy,-17.5,34
+3,phase3,42,EpsGreedy,-19.500000000000004,38
+3,phase3,43,EpsGreedy,-2.499999999999998,4
+3,phase3,44,EpsGreedy,-5.999999999999997,11
+3,phase3,45,EpsGreedy,-9.499999999999996,18
+3,phase3,46,EpsGreedy,-8.499999999999991,16
+3,phase3,47,EpsGreedy,-8.499999999999996,16
+3,phase3,48,EpsGreedy,-15.499999999999991,30
+3,phase3,49,EpsGreedy,-13.499999999999993,26
+3,phase3,50,EpsGreedy,-9.999999999999993,19
+3,phase3,51,EpsGreedy,-5.499999999999995,10
+3,phase3,52,EpsGreedy,-4.499999999999994,8
+3,phase3,53,EpsGreedy,-2.9999999999999973,5
+3,phase3,54,EpsGreedy,-0.5000000000000002,0
+3,phase3,55,EpsGreedy,-2.0,3
+3,phase3,56,EpsGreedy,-2.4999999999999982,4
+3,phase3,57,EpsGreedy,-4.499999999999995,8
+3,phase3,58,EpsGreedy,-3.499999999999994,6
+3,phase3,59,EpsGreedy,-3.9999999999999964,7
+3,phase3,60,EpsGreedy,-0.5000000000000002,0
+3,phase3,61,EpsGreedy,-0.5000000000000002,0
+3,phase3,62,EpsGreedy,-2.4999999999999996,4
+3,phase3,63,EpsGreedy,-2.0000000000000004,3
+3,phase3,64,EpsGreedy,-3.5,6
+3,phase3,65,EpsGreedy,-11.499999999999993,22
+3,phase3,66,EpsGreedy,-12.499999999999995,24
+3,phase3,67,EpsGreedy,-12.499999999999993,24
+3,phase3,68,EpsGreedy,-13.999999999999993,27
+3,phase3,69,EpsGreedy,-11.499999999999993,22
+3,phase3,70,EpsGreedy,-10.499999999999995,20
+3,phase3,71,EpsGreedy,-7.999999999999995,15
+3,phase3,72,EpsGreedy,-4.499999999999994,8
+3,phase3,73,EpsGreedy,-7.499999999999997,14
+3,phase3,74,EpsGreedy,-11.499999999999995,22
+3,phase3,75,EpsGreedy,-14.999999999999995,29
+3,phase3,76,EpsGreedy,-16.499999999999996,32
+3,phase3,77,EpsGreedy,-10.999999999999993,21
+3,phase3,78,EpsGreedy,-4.499999999999994,8
+3,phase3,79,EpsGreedy,-14.499999999999993,28
+3,phase3,80,EpsGreedy,-10.999999999999993,21
+3,phase3,81,EpsGreedy,-4.999999999999992,9
+3,phase3,82,EpsGreedy,-8.999999999999996,17
+3,phase3,83,EpsGreedy,-5.999999999999992,11
+3,phase3,84,EpsGreedy,-7.499999999999995,14
+3,phase3,85,EpsGreedy,-3.9999999999999964,7
+3,phase3,86,EpsGreedy,-9.999999999999995,19
+3,phase3,87,EpsGreedy,-10.499999999999993,20
+3,phase3,88,EpsGreedy,-5.999999999999996,11
+3,phase3,89,EpsGreedy,-12.499999999999993,24
+3,phase3,90,EpsGreedy,-3.4999999999999956,6
+3,phase3,91,EpsGreedy,-5.9999999999999964,11
+3,phase3,92,EpsGreedy,-1.5000000000000002,2
+3,phase3,93,EpsGreedy,-1.5000000000000002,2
+3,phase3,94,EpsGreedy,-2.5,4
+3,phase3,95,EpsGreedy,-9.499999999999996,18
+3,phase3,96,EpsGreedy,-12.499999999999995,24
+3,phase3,97,EpsGreedy,-15.499999999999993,30
+3,phase3,98,EpsGreedy,-13.999999999999993,27
+3,phase3,99,EpsGreedy,-7.499999999999997,14
+3,phase3,100,EpsGreedy,-10.999999999999995,21
+3,phase3,101,EpsGreedy,-10.499999999999995,20
+3,phase3,102,EpsGreedy,-9.999999999999995,19
+3,phase3,103,EpsGreedy,-4.999999999999999,9
+3,phase3,104,EpsGreedy,-13.499999999999996,26
+3,phase3,105,EpsGreedy,-0.5000000000000002,0
+3,phase3,106,EpsGreedy,-0.5000000000000002,0
+3,phase3,107,EpsGreedy,-5.499999999999997,10
+3,phase3,108,EpsGreedy,-0.5000000000000002,0
+3,phase3,109,EpsGreedy,-12.999999999999995,25
+3,phase3,110,EpsGreedy,-8.999999999999993,17
+3,phase3,111,EpsGreedy,-7.499999999999993,14
+3,phase3,112,EpsGreedy,-14.499999999999993,28
+3,phase3,113,EpsGreedy,-11.999999999999993,23
+3,phase3,114,EpsGreedy,-0.5000000000000002,0
+3,phase3,115,EpsGreedy,-12.499999999999995,24
+3,phase3,116,EpsGreedy,-9.499999999999991,18
+3,phase3,117,EpsGreedy,-6.999999999999996,13
+3,phase3,118,EpsGreedy,-7.999999999999996,15
+3,phase3,119,EpsGreedy,-6.999999999999993,13
+3,phase3,120,EpsGreedy,-12.999999999999995,25
+3,phase3,121,EpsGreedy,-6.999999999999994,13
+3,phase3,122,EpsGreedy,-2.9999999999999964,5
+3,phase3,123,EpsGreedy,-0.5000000000000002,0
+3,phase3,124,EpsGreedy,-8.999999999999996,17
+3,phase3,125,EpsGreedy,-0.5000000000000002,0
+3,phase3,126,EpsGreedy,-0.5000000000000002,0
+3,phase3,127,EpsGreedy,-0.5000000000000002,0
+3,phase3,128,EpsGreedy,-2.0,3
+3,phase3,129,EpsGreedy,-11.999999999999995,23
+3,phase3,130,EpsGreedy,-1.5000000000000002,2
+3,phase3,131,EpsGreedy,-0.5000000000000002,0
+3,phase3,132,EpsGreedy,-0.5000000000000002,0
+3,phase3,133,EpsGreedy,-0.5000000000000002,0
+3,phase3,134,EpsGreedy,-0.5000000000000002,0
+3,phase3,135,EpsGreedy,-0.5000000000000002,0
+3,phase3,136,EpsGreedy,-8.499999999999998,16
+3,phase3,137,EpsGreedy,-19.000000000000007,37
+3,phase3,138,EpsGreedy,-20.000000000000007,39
+3,phase3,139,EpsGreedy,-18.500000000000004,36
+3,phase3,140,EpsGreedy,-14.499999999999993,28
+3,phase3,141,EpsGreedy,-14.499999999999993,28
+3,phase3,142,EpsGreedy,-9.499999999999993,18
+3,phase3,143,EpsGreedy,-0.5000000000000002,0
+3,phase3,144,EpsGreedy,-4.999999999999997,9
+3,phase3,145,EpsGreedy,-10.499999999999993,20
+3,phase3,146,EpsGreedy,-7.999999999999996,15
+3,phase3,147,EpsGreedy,-3.3499999999999988,8
+3,phase3,148,EpsGreedy,-11.499999999999991,22
+3,phase3,149,EpsGreedy,-9.499999999999996,18
+3,phase3,150,EpsGreedy,-0.5000000000000002,0
+3,phase3,151,EpsGreedy,-15.999999999999995,31
+3,phase3,152,EpsGreedy,-0.5000000000000002,0
+3,phase3,153,EpsGreedy,-7.499999999999994,14
+3,phase3,154,EpsGreedy,-2.9999999999999973,5
+3,phase3,155,EpsGreedy,-6.499999999999993,12
+3,phase3,156,EpsGreedy,-2.0000000000000004,3
+3,phase3,157,EpsGreedy,-1.5000000000000002,2
+3,phase3,158,EpsGreedy,-5.499999999999998,10
+3,phase3,159,EpsGreedy,-7.999999999999995,15
+3,phase3,160,EpsGreedy,-0.5000000000000002,0
+3,phase3,161,EpsGreedy,-5.999999999999996,11
+3,phase3,162,EpsGreedy,-10.499999999999995,20
+3,phase3,163,EpsGreedy,-5.499999999999998,10
+3,phase3,164,EpsGreedy,-0.5000000000000002,0
+3,phase3,165,EpsGreedy,-7.499999999999993,14
+3,phase3,166,EpsGreedy,-4.499999999999996,8
+3,phase3,167,EpsGreedy,-10.499999999999993,20
+3,phase3,168,EpsGreedy,-4.499999999999993,8
+3,phase3,169,EpsGreedy,-1.0000000000000002,1
+3,phase3,170,EpsGreedy,-12.999999999999993,25
+3,phase3,171,EpsGreedy,-10.999999999999993,21
+3,phase3,172,EpsGreedy,-9.499999999999993,18
+3,phase3,173,EpsGreedy,-12.999999999999991,25
+3,phase3,174,EpsGreedy,-7.499999999999996,14
+3,phase3,175,EpsGreedy,-16.499999999999993,32
+3,phase3,176,EpsGreedy,-7.499999999999994,14
+3,phase3,177,EpsGreedy,-13.499999999999993,26
+3,phase3,178,EpsGreedy,-11.999999999999993,23
+3,phase3,179,EpsGreedy,-12.999999999999995,25
+3,phase3,180,EpsGreedy,-7.999999999999995,15
+3,phase3,181,EpsGreedy,-13.499999999999995,26
+3,phase3,182,EpsGreedy,-9.499999999999995,18
+3,phase3,183,EpsGreedy,-0.5000000000000002,0
+3,phase3,184,EpsGreedy,-0.5000000000000002,0
+3,phase3,185,EpsGreedy,-15.999999999999991,31
+3,phase3,186,EpsGreedy,-10.999999999999996,21
+3,phase3,187,EpsGreedy,-16.999999999999996,33
+3,phase3,188,EpsGreedy,-12.499999999999993,24
+3,phase3,189,EpsGreedy,-18.500000000000004,36
+3,phase3,190,EpsGreedy,-19.000000000000004,37
+3,phase3,191,EpsGreedy,-17.000000000000004,33
+3,phase3,192,EpsGreedy,-19.000000000000004,37
+3,phase3,193,EpsGreedy,-0.5000000000000002,0
+3,phase3,194,EpsGreedy,-1.0000000000000002,1
+3,phase3,195,EpsGreedy,-0.5000000000000002,0
+3,phase3,196,EpsGreedy,-0.5000000000000002,0
+3,phase3,197,EpsGreedy,-0.5000000000000002,0
+3,phase3,198,EpsGreedy,-0.5000000000000002,0
+3,phase3,199,EpsGreedy,-0.5000000000000002,0
+3,phase3,0,Softmax,-1.4199999999999966,4
+3,phase3,1,Softmax,-0.9700000000000004,3
+3,phase3,2,Softmax,-1.5000000000000002,2
+3,phase3,3,Softmax,-3.0,5
+3,phase3,4,Softmax,-1.5000000000000002,2
+3,phase3,5,Softmax,-1.0000000000000002,1
+3,phase3,6,Softmax,-0.5000000000000002,0
+3,phase3,7,Softmax,-0.5000000000000002,0
+3,phase3,8,Softmax,-2.0,3
+3,phase3,9,Softmax,-4.999999999999992,9
+3,phase3,10,Softmax,-1.5000000000000004,2
+3,phase3,11,Softmax,-2.0,3
+3,phase3,12,Softmax,-2.5,4
+3,phase3,13,Softmax,-3.0,5
+3,phase3,14,Softmax,-3.999999999999999,7
+3,phase3,15,Softmax,-2.9999999999999947,5
+3,phase3,16,Softmax,-0.5000000000000002,0
+3,phase3,17,Softmax,-1.0000000000000002,1
+3,phase3,18,Softmax,-1.0000000000000002,1
+3,phase3,19,Softmax,-1.5000000000000002,2
+3,phase3,20,Softmax,-0.5000000000000002,0
+3,phase3,21,Softmax,-2.0,3
+3,phase3,22,Softmax,-2.999999999999992,5
+3,phase3,23,Softmax,-6.499999999999994,12
+3,phase3,24,Softmax,-0.5000000000000002,0
+3,phase3,25,Softmax,-1.0000000000000002,1
+3,phase3,26,Softmax,-3.999999999999992,7
+3,phase3,27,Softmax,-2.0,3
+3,phase3,28,Softmax,-1.0000000000000002,1
+3,phase3,29,Softmax,-1.0000000000000002,1
+3,phase3,30,Softmax,-1.5000000000000002,2
+3,phase3,31,Softmax,-2.4999999999999973,4
+3,phase3,32,Softmax,-2.499999999999993,4
+3,phase3,33,Softmax,-1.5000000000000002,2
+3,phase3,34,Softmax,-1.5000000000000002,2
+3,phase3,35,Softmax,-1.0000000000000002,1
+3,phase3,36,Softmax,-7.499999999999994,14
+3,phase3,37,Softmax,-1.0000000000000002,1
+3,phase3,38,Softmax,-1.0000000000000002,1
+3,phase3,39,Softmax,-1.5000000000000004,2
+3,phase3,40,Softmax,-1.0000000000000002,1
+3,phase3,41,Softmax,-2.499999999999995,4
+3,phase3,42,Softmax,-2.4999999999999956,4
+3,phase3,43,Softmax,-2.499999999999999,4
+3,phase3,44,Softmax,-4.999999999999993,9
+3,phase3,45,Softmax,-0.5000000000000002,0
+3,phase3,46,Softmax,-1.5000000000000002,2
+3,phase3,47,Softmax,-1.0000000000000002,1
+3,phase3,48,Softmax,-1.5000000000000002,2
+3,phase3,49,Softmax,-2.0,3
+3,phase3,50,Softmax,-1.5000000000000004,2
+3,phase3,51,Softmax,-1.5000000000000004,2
+3,phase3,52,Softmax,-0.5000000000000002,0
+3,phase3,53,Softmax,-1.0000000000000002,1
+3,phase3,54,Softmax,-1.0000000000000002,1
+3,phase3,55,Softmax,-0.5000000000000002,0
+3,phase3,56,Softmax,-0.5000000000000002,0
+3,phase3,57,Softmax,-3.4999999999999982,6
+3,phase3,58,Softmax,-0.5000000000000002,0
+3,phase3,59,Softmax,-2.5,4
+3,phase3,60,Softmax,-1.0000000000000002,1
+3,phase3,61,Softmax,-6.999999999999995,13
+3,phase3,62,Softmax,-0.5000000000000002,0
+3,phase3,63,Softmax,-1.0000000000000002,1
+3,phase3,64,Softmax,-1.5000000000000004,2
+3,phase3,65,Softmax,-0.5000000000000002,0
+3,phase3,66,Softmax,-1.0000000000000002,1
+3,phase3,67,Softmax,-1.5000000000000002,2
+3,phase3,68,Softmax,-0.5000000000000002,0
+3,phase3,69,Softmax,-2.0,3
+3,phase3,70,Softmax,-3.5,6
+3,phase3,71,Softmax,-5.999999999999993,11
+3,phase3,72,Softmax,-0.5000000000000002,0
+3,phase3,73,Softmax,-3.999999999999993,7
+3,phase3,74,Softmax,-2.499999999999999,4
+3,phase3,75,Softmax,-0.5000000000000002,0
+3,phase3,76,Softmax,-1.5000000000000002,2
+3,phase3,77,Softmax,-1.5000000000000004,2
+3,phase3,78,Softmax,-1.5000000000000002,2
+3,phase3,79,Softmax,-3.4999999999999973,6
+3,phase3,80,Softmax,-0.5000000000000002,0
+3,phase3,81,Softmax,-3.4999999999999947,6
+3,phase3,82,Softmax,-1.0000000000000002,1
+3,phase3,83,Softmax,-0.5000000000000002,0
+3,phase3,84,Softmax,-0.5000000000000002,0
+3,phase3,85,Softmax,-2.0,3
+3,phase3,86,Softmax,-2.4999999999999933,4
+3,phase3,87,Softmax,-2.0,3
+3,phase3,88,Softmax,-2.0000000000000004,3
+3,phase3,89,Softmax,-3.4999999999999973,6
+3,phase3,90,Softmax,-0.5000000000000002,0
+3,phase3,91,Softmax,-1.5000000000000002,2
+3,phase3,92,Softmax,-1.0000000000000002,1
+3,phase3,93,Softmax,-0.5000000000000002,0
+3,phase3,94,Softmax,-2.4999999999999973,4
+3,phase3,95,Softmax,-0.5000000000000002,0
+3,phase3,96,Softmax,-4.499999999999996,8
+3,phase3,97,Softmax,-1.0000000000000002,1
+3,phase3,98,Softmax,-3.499999999999999,6
+3,phase3,99,Softmax,-1.0000000000000002,1
+3,phase3,100,Softmax,-2.0,3
+3,phase3,101,Softmax,-0.5000000000000002,0
+3,phase3,102,Softmax,-2.0,3
+3,phase3,103,Softmax,-1.5000000000000002,2
+3,phase3,104,Softmax,-1.0000000000000004,1
+3,phase3,105,Softmax,-1.0000000000000004,1
+3,phase3,106,Softmax,-0.5000000000000002,0
+3,phase3,107,Softmax,-3.499999999999999,6
+3,phase3,108,Softmax,-4.499999999999992,8
+3,phase3,109,Softmax,-2.5,4
+3,phase3,110,Softmax,-2.0,3
+3,phase3,111,Softmax,-0.5000000000000002,0
+3,phase3,112,Softmax,-1.5000000000000002,2
+3,phase3,113,Softmax,-2.4999999999999982,4
+3,phase3,114,Softmax,-2.999999999999999,5
+3,phase3,115,Softmax,-1.0000000000000002,1
+3,phase3,116,Softmax,-4.9999999999999964,9
+3,phase3,117,Softmax,-2.499999999999995,4
+3,phase3,118,Softmax,-4.499999999999999,8
+3,phase3,119,Softmax,-1.0000000000000002,1
+3,phase3,120,Softmax,-3.4999999999999947,6
+3,phase3,121,Softmax,-0.5000000000000002,0
+3,phase3,122,Softmax,-0.5000000000000002,0
+3,phase3,123,Softmax,-0.5000000000000002,0
+3,phase3,124,Softmax,-2.9999999999999982,5
+3,phase3,125,Softmax,-1.2199999999999995,4
+3,phase3,126,Softmax,-1.5000000000000004,2
+3,phase3,127,Softmax,-2.999999999999994,5
+3,phase3,128,Softmax,-0.5000000000000002,0
+3,phase3,129,Softmax,-1.0000000000000004,1
+3,phase3,130,Softmax,-3.0,5
+3,phase3,131,Softmax,-2.0,3
+3,phase3,132,Softmax,-1.5000000000000004,2
+3,phase3,133,Softmax,-0.5000000000000002,0
+3,phase3,134,Softmax,-0.5000000000000002,0
+3,phase3,135,Softmax,-1.4899999999999978,4
+3,phase3,136,Softmax,-4.999999999999995,9
+3,phase3,137,Softmax,-1.5000000000000002,2
+3,phase3,138,Softmax,-1.0000000000000002,1
+3,phase3,139,Softmax,-2.0000000000000004,3
+3,phase3,140,Softmax,-3.9999999999999964,7
+3,phase3,141,Softmax,-1.0000000000000002,1
+3,phase3,142,Softmax,-2.5000000000000004,4
+3,phase3,143,Softmax,-2.0000000000000004,3
+3,phase3,144,Softmax,-1.5000000000000002,2
+3,phase3,145,Softmax,-0.5000000000000002,0
+3,phase3,146,Softmax,-1.5000000000000004,2
+3,phase3,147,Softmax,-3.4999999999999947,6
+3,phase3,148,Softmax,-5.499999999999998,10
+3,phase3,149,Softmax,-0.5000000000000002,0
+3,phase3,150,Softmax,-1.0000000000000002,1
+3,phase3,151,Softmax,-0.5000000000000002,0
+3,phase3,152,Softmax,-1.0000000000000002,1
+3,phase3,153,Softmax,-1.0000000000000002,1
+3,phase3,154,Softmax,-2.0000000000000004,3
+3,phase3,155,Softmax,-1.0000000000000002,1
+3,phase3,156,Softmax,-0.5000000000000002,0
+3,phase3,157,Softmax,-0.5000000000000002,0
+3,phase3,158,Softmax,-2.499999999999999,4
+3,phase3,159,Softmax,-3.0,5
+3,phase3,160,Softmax,-2.999999999999994,5
+3,phase3,161,Softmax,-1.0000000000000004,1
+3,phase3,162,Softmax,-4.499999999999993,8
+3,phase3,163,Softmax,-2.0000000000000004,3
+3,phase3,164,Softmax,-0.5000000000000002,0
+3,phase3,165,Softmax,-1.0000000000000002,1
+3,phase3,166,Softmax,-2.999999999999993,5
+3,phase3,167,Softmax,-1.0000000000000002,1
+3,phase3,168,Softmax,-2.4999999999999964,4
+3,phase3,169,Softmax,-0.5000000000000002,0
+3,phase3,170,Softmax,-1.0000000000000002,1
+3,phase3,171,Softmax,-1.0000000000000004,1
+3,phase3,172,Softmax,-2.499999999999998,4
+3,phase3,173,Softmax,-0.5000000000000002,0
+3,phase3,174,Softmax,-1.0000000000000004,1
+3,phase3,175,Softmax,-1.5000000000000002,2
+3,phase3,176,Softmax,-1.0000000000000004,1
+3,phase3,177,Softmax,-0.5000000000000002,0
+3,phase3,178,Softmax,-1.5000000000000002,2
+3,phase3,179,Softmax,-2.499999999999993,4
+3,phase3,180,Softmax,-0.5000000000000002,0
+3,phase3,181,Softmax,-3.999999999999992,7
+3,phase3,182,Softmax,-0.5000000000000002,0
+3,phase3,183,Softmax,-0.5000000000000002,0
+3,phase3,184,Softmax,-1.0000000000000004,1
+3,phase3,185,Softmax,-1.0000000000000002,1
+3,phase3,186,Softmax,-1.0000000000000002,1
+3,phase3,187,Softmax,-1.0000000000000002,1
+3,phase3,188,Softmax,-1.5000000000000002,2
+3,phase3,189,Softmax,-0.5000000000000002,0
+3,phase3,190,Softmax,-0.5000000000000002,0
+3,phase3,191,Softmax,-0.5000000000000002,0
+3,phase3,192,Softmax,-0.5000000000000002,0
+3,phase3,193,Softmax,-0.5000000000000002,0
+3,phase3,194,Softmax,-1.5000000000000002,2
+3,phase3,195,Softmax,-2.0,3
+3,phase3,196,Softmax,-1.0000000000000002,1
+3,phase3,197,Softmax,-0.5000000000000002,0
+3,phase3,198,Softmax,-1.5000000000000002,2
+3,phase3,199,Softmax,-1.0000000000000002,1
+3,phase3,0,LevoQ,-1.0000000000000002,1
+3,phase3,1,LevoQ,-5.9999999999999964,11
+3,phase3,2,LevoQ,-1.5000000000000002,2
+3,phase3,3,LevoQ,-0.5000000000000002,0
+3,phase3,4,LevoQ,-6.499999999999992,12
+3,phase3,5,LevoQ,-0.5000000000000002,0
+3,phase3,6,LevoQ,-1.429999999999999,4
+3,phase3,7,LevoQ,-2.999999999999993,5
+3,phase3,8,LevoQ,-4.999999999999998,9
+3,phase3,9,LevoQ,-4.999999999999997,9
+3,phase3,10,LevoQ,-0.5000000000000002,0
+3,phase3,11,LevoQ,-2.4999999999999947,4
+3,phase3,12,LevoQ,-5.999999999999992,11
+3,phase3,13,LevoQ,-0.5000000000000002,0
+3,phase3,14,LevoQ,-0.4500000000000004,2
+3,phase3,15,LevoQ,-2.0000000000000004,3
+3,phase3,16,LevoQ,-2.5000000000000004,4
+3,phase3,17,LevoQ,-2.999999999999999,5
+3,phase3,18,LevoQ,-0.5000000000000002,0
+3,phase3,19,LevoQ,-5.4999999999999964,10
+3,phase3,20,LevoQ,-2.499999999999998,4
+3,phase3,21,LevoQ,-1.0000000000000002,1
+3,phase3,22,LevoQ,-4.499999999999992,8
+3,phase3,23,LevoQ,-0.5000000000000002,0
+3,phase3,24,LevoQ,-7.999999999999996,15
+3,phase3,25,LevoQ,-5.499999999999991,10
+3,phase3,26,LevoQ,-1.5000000000000002,2
+3,phase3,27,LevoQ,-7.4999999999999964,14
+3,phase3,28,LevoQ,-1.0000000000000002,1
+3,phase3,29,LevoQ,-0.4700000000000002,2
+3,phase3,30,LevoQ,-7.999999999999991,15
+3,phase3,31,LevoQ,-1.0000000000000002,1
+3,phase3,32,LevoQ,-6.499999999999994,12
+3,phase3,33,LevoQ,-4.499999999999995,8
+3,phase3,34,LevoQ,-0.5000000000000002,0
+3,phase3,35,LevoQ,-4.999999999999992,9
+3,phase3,36,LevoQ,-1.0000000000000002,1
+3,phase3,37,LevoQ,-4.999999999999996,9
+3,phase3,38,LevoQ,-1.5000000000000002,2
+3,phase3,39,LevoQ,-2.0,3
+3,phase3,40,LevoQ,-5.499999999999991,10
+3,phase3,41,LevoQ,-0.5000000000000002,0
+3,phase3,42,LevoQ,-5.499999999999994,10
+3,phase3,43,LevoQ,-1.0000000000000002,1
+3,phase3,44,LevoQ,-3.0,5
+3,phase3,45,LevoQ,-1.0000000000000002,1
+3,phase3,46,LevoQ,-0.5000000000000002,0
+3,phase3,47,LevoQ,-1.1999999999999986,4
+3,phase3,48,LevoQ,-0.5000000000000002,0
+3,phase3,49,LevoQ,-0.5000000000000002,0
+3,phase3,50,LevoQ,-9.499999999999993,18
+3,phase3,51,LevoQ,-1.0000000000000004,1
+3,phase3,52,LevoQ,-4.999999999999996,9
+3,phase3,53,LevoQ,-2.4999999999999925,4
+3,phase3,54,LevoQ,-0.5000000000000002,0
+3,phase3,55,LevoQ,-1.0000000000000002,1
+3,phase3,56,LevoQ,-2.4999999999999982,4
+3,phase3,57,LevoQ,-2.0,3
+3,phase3,58,LevoQ,-2.9999999999999982,5
+3,phase3,59,LevoQ,-0.5000000000000002,0
+3,phase3,60,LevoQ,-11.999999999999995,23
+3,phase3,61,LevoQ,-1.0000000000000002,1
+3,phase3,62,LevoQ,-1.0000000000000002,1
+3,phase3,63,LevoQ,-1.6899999999999988,5
+3,phase3,64,LevoQ,-2.499999999999999,4
+3,phase3,65,LevoQ,-4.499999999999997,8
+3,phase3,66,LevoQ,-5.499999999999994,10
+3,phase3,67,LevoQ,-0.5000000000000002,0
+3,phase3,68,LevoQ,-3.9999999999999964,7
+3,phase3,69,LevoQ,-3.999999999999993,7
+3,phase3,70,LevoQ,-1.5000000000000002,2
+3,phase3,71,LevoQ,-2.9999999999999947,5
+3,phase3,72,LevoQ,-0.5000000000000002,0
+3,phase3,73,LevoQ,-10.499999999999995,20
+3,phase3,74,LevoQ,-0.5000000000000002,0
+3,phase3,75,LevoQ,-3.0,5
+3,phase3,76,LevoQ,-4.999999999999995,9
+3,phase3,77,LevoQ,-1.0000000000000002,1
+3,phase3,78,LevoQ,-5.499999999999996,12
+3,phase3,79,LevoQ,-2.0000000000000004,3
+3,phase3,80,LevoQ,-1.5000000000000002,2
+3,phase3,81,LevoQ,-4.4999999999999964,8
+3,phase3,82,LevoQ,-1.0000000000000002,1
+3,phase3,83,LevoQ,-4.499999999999999,8
+3,phase3,84,LevoQ,-3.999999999999991,7
+3,phase3,85,LevoQ,-0.5000000000000002,0
+3,phase3,86,LevoQ,-6.499999999999994,12
+3,phase3,87,LevoQ,-2.9999999999999964,5
+3,phase3,88,LevoQ,-4.999999999999994,9
+3,phase3,89,LevoQ,-3.499999999999994,6
+3,phase3,90,LevoQ,-0.5000000000000002,0
+3,phase3,91,LevoQ,-4.4999999999999964,8
+3,phase3,92,LevoQ,-2.9999999999999947,5
+3,phase3,93,LevoQ,-4.499999999999999,8
+3,phase3,94,LevoQ,-2.9999999999999982,5
+3,phase3,95,LevoQ,-0.5000000000000002,0
+3,phase3,96,LevoQ,-3.999999999999992,7
+3,phase3,97,LevoQ,-1.0000000000000002,1
+3,phase3,98,LevoQ,-2.499999999999999,4
+3,phase3,99,LevoQ,-4.499999999999992,8
+3,phase3,100,LevoQ,-1.0000000000000002,1
+3,phase3,101,LevoQ,-6.999999999999994,13
+3,phase3,102,LevoQ,-0.5000000000000002,0
+3,phase3,103,LevoQ,-2.0000000000000004,3
+3,phase3,104,LevoQ,-4.999999999999998,9
+3,phase3,105,LevoQ,-0.5000000000000002,0
+3,phase3,106,LevoQ,-6.499999999999999,12
+3,phase3,107,LevoQ,-0.5000000000000002,0
+3,phase3,108,LevoQ,-7.4999999999999964,14
+3,phase3,109,LevoQ,-2.4999999999999982,4
+3,phase3,110,LevoQ,-1.0000000000000002,1
+3,phase3,111,LevoQ,-1.3599999999999997,4
+3,phase3,112,LevoQ,-6.999999999999992,13
+3,phase3,113,LevoQ,-2.5,4
+3,phase3,114,LevoQ,-4.499999999999999,8
+3,phase3,115,LevoQ,-0.5000000000000002,0
+3,phase3,116,LevoQ,-4.999999999999995,9
+3,phase3,117,LevoQ,-2.999999999999991,5
+3,phase3,118,LevoQ,-2.5,4
+3,phase3,119,LevoQ,-9.499999999999993,18
+3,phase3,120,LevoQ,-0.5000000000000002,0
+3,phase3,121,LevoQ,-1.5000000000000002,2
+3,phase3,122,LevoQ,-2.499999999999991,4
+3,phase3,123,LevoQ,-2.0,3
+3,phase3,124,LevoQ,-9.999999999999995,19
+3,phase3,125,LevoQ,-0.5000000000000002,0
+3,phase3,126,LevoQ,-0.5000000000000002,0
+3,phase3,127,LevoQ,-0.5000000000000002,0
+3,phase3,128,LevoQ,-0.5000000000000002,0
+3,phase3,129,LevoQ,-3.9999999999999964,7
+3,phase3,130,LevoQ,-2.0000000000000004,3
+3,phase3,131,LevoQ,-5.9999999999999964,11
+3,phase3,132,LevoQ,-5.999999999999993,11
+3,phase3,133,LevoQ,-3.4999999999999973,6
+3,phase3,134,LevoQ,-2.0000000000000004,3
+3,phase3,135,LevoQ,-1.0000000000000004,1
+3,phase3,136,LevoQ,-7.999999999999992,15
+3,phase3,137,LevoQ,-2.4999999999999964,4
+3,phase3,138,LevoQ,-1.5000000000000002,2
+3,phase3,139,LevoQ,-1.3199999999999956,4
+3,phase3,140,LevoQ,-4.499999999999992,8
+3,phase3,141,LevoQ,-1.0000000000000002,1
+3,phase3,142,LevoQ,-2.0,3
+3,phase3,143,LevoQ,-1.0000000000000002,1
+3,phase3,144,LevoQ,-5.9999999999999964,11
+3,phase3,145,LevoQ,-1.0000000000000004,1
+3,phase3,146,LevoQ,-2.5000000000000004,4
+3,phase3,147,LevoQ,-1.5000000000000004,2
+3,phase3,148,LevoQ,-1.0000000000000002,1
+3,phase3,149,LevoQ,-6.499999999999998,12
+3,phase3,150,LevoQ,-1.0000000000000002,1
+3,phase3,151,LevoQ,-1.0000000000000002,1
+3,phase3,152,LevoQ,-11.999999999999995,23
+3,phase3,153,LevoQ,-0.5000000000000002,0
+3,phase3,154,LevoQ,-2.0,3
+3,phase3,155,LevoQ,-2.9999999999999947,5
+3,phase3,156,LevoQ,-1.5000000000000002,2
+3,phase3,157,LevoQ,-5.999999999999994,11
+3,phase3,158,LevoQ,-1.0000000000000004,1
+3,phase3,159,LevoQ,-2.0,3
+3,phase3,160,LevoQ,-1.0000000000000002,1
+3,phase3,161,LevoQ,-3.999999999999991,7
+3,phase3,162,LevoQ,-3.9999999999999947,7
+3,phase3,163,LevoQ,-0.5000000000000002,0
+3,phase3,164,LevoQ,-5.999999999999998,11
+3,phase3,165,LevoQ,-1.0000000000000002,1
+3,phase3,166,LevoQ,-1.0000000000000002,1
+3,phase3,167,LevoQ,-1.0000000000000002,1
+3,phase3,168,LevoQ,-1.5000000000000004,2
+3,phase3,169,LevoQ,-0.5000000000000002,0
+3,phase3,170,LevoQ,-1.0000000000000002,1
+3,phase3,171,LevoQ,-1.0000000000000002,1
+3,phase3,172,LevoQ,-2.4999999999999996,4
+3,phase3,173,LevoQ,-0.5000000000000002,0
+3,phase3,174,LevoQ,-6.499999999999998,12
+3,phase3,175,LevoQ,-0.5000000000000002,0
+3,phase3,176,LevoQ,-1.0000000000000002,1
+3,phase3,177,LevoQ,-6.499999999999995,12
+3,phase3,178,LevoQ,-0.5000000000000002,0
+3,phase3,179,LevoQ,-1.5000000000000002,2
+3,phase3,180,LevoQ,-1.5000000000000004,2
+3,phase3,181,LevoQ,-1.0000000000000002,1
+3,phase3,182,LevoQ,-3.4999999999999973,6
+3,phase3,183,LevoQ,-0.5000000000000002,0
+3,phase3,184,LevoQ,-3.999999999999999,7
+3,phase3,185,LevoQ,-1.0000000000000002,1
+3,phase3,186,LevoQ,-2.499999999999999,4
+3,phase3,187,LevoQ,-2.4999999999999982,4
+3,phase3,188,LevoQ,-1.0000000000000002,1
+3,phase3,189,LevoQ,-3.5,6
+3,phase3,190,LevoQ,-1.0000000000000004,1
+3,phase3,191,LevoQ,-0.5000000000000002,0
+3,phase3,192,LevoQ,-6.4999999999999964,12
+3,phase3,193,LevoQ,-1.0000000000000002,1
+3,phase3,194,LevoQ,-0.5000000000000002,0
+3,phase3,195,LevoQ,-0.5000000000000002,0
+3,phase3,196,LevoQ,-0.5000000000000002,0
+3,phase3,197,LevoQ,-3.4999999999999956,6
+3,phase3,198,LevoQ,-2.0,3
+3,phase3,199,LevoQ,-2.999999999999999,5
+3,phase3,0,LevoThinking,-0.5000000000000002,0
+3,phase3,1,LevoThinking,-1.0000000000000002,1
+3,phase3,2,LevoThinking,-8.999999999999996,17
+3,phase3,3,LevoThinking,-0.5000000000000002,0
+3,phase3,4,LevoThinking,-5.999999999999998,11
+3,phase3,5,LevoThinking,-5.999999999999991,11
+3,phase3,6,LevoThinking,-1.0000000000000002,1
+3,phase3,7,LevoThinking,-6.499999999999991,12
+3,phase3,8,LevoThinking,-1.0000000000000002,1
+3,phase3,9,LevoThinking,-6.4999999999999964,12
+3,phase3,10,LevoThinking,-3.9999999999999947,7
+3,phase3,11,LevoThinking,-4.499999999999998,8
+3,phase3,12,LevoThinking,-6.4999999999999964,12
+3,phase3,13,LevoThinking,-1.0000000000000002,1
+3,phase3,14,LevoThinking,-0.5000000000000002,0
+3,phase3,15,LevoThinking,-1.0000000000000002,1
+3,phase3,16,LevoThinking,-1.0000000000000002,1
+3,phase3,17,LevoThinking,-9.999999999999993,19
+3,phase3,18,LevoThinking,-2.4999999999999973,4
+3,phase3,19,LevoThinking,-1.5000000000000004,2
+3,phase3,20,LevoThinking,-5.499999999999991,10
+3,phase3,21,LevoThinking,-0.5000000000000002,0
+3,phase3,22,LevoThinking,-2.9999999999999982,5
+3,phase3,23,LevoThinking,-1.0000000000000002,1
+3,phase3,24,LevoThinking,-2.9999999999999982,5
+3,phase3,25,LevoThinking,-2.4999999999999973,4
+3,phase3,26,LevoThinking,-2.999999999999992,5
+3,phase3,27,LevoThinking,-14.499999999999995,28
+3,phase3,28,LevoThinking,-3.4999999999999956,6
+3,phase3,29,LevoThinking,-4.499999999999999,8
+3,phase3,30,LevoThinking,-1.0000000000000002,1
+3,phase3,31,LevoThinking,-2.4999999999999987,4
+3,phase3,32,LevoThinking,-8.499999999999996,16
+3,phase3,33,LevoThinking,-1.0000000000000002,1
+3,phase3,34,LevoThinking,-0.5000000000000002,0
+3,phase3,35,LevoThinking,-2.9999999999999973,5
+3,phase3,36,LevoThinking,-0.5000000000000002,0
+3,phase3,37,LevoThinking,-5.999999999999998,11
+3,phase3,38,LevoThinking,-0.5000000000000002,0
+3,phase3,39,LevoThinking,-5.499999999999997,10
+3,phase3,40,LevoThinking,-1.5000000000000002,2
+3,phase3,41,LevoThinking,-0.5000000000000002,0
+3,phase3,42,LevoThinking,-4.4999999999999964,8
+3,phase3,43,LevoThinking,-2.0,3
+3,phase3,44,LevoThinking,-4.4999999999999964,8
+3,phase3,45,LevoThinking,-7.999999999999991,15
+3,phase3,46,LevoThinking,-0.5000000000000002,0
+3,phase3,47,LevoThinking,-10.999999999999993,21
+3,phase3,48,LevoThinking,-4.499999999999992,8
+3,phase3,49,LevoThinking,-4.499999999999999,8
+3,phase3,50,LevoThinking,-2.9999999999999964,5
+3,phase3,51,LevoThinking,-0.5000000000000002,0
+3,phase3,52,LevoThinking,-1.0000000000000002,1
+3,phase3,53,LevoThinking,-1.0000000000000002,1
+3,phase3,54,LevoThinking,-4.999999999999998,9
+3,phase3,55,LevoThinking,-2.0000000000000004,3
+3,phase3,56,LevoThinking,-0.5000000000000002,0
+3,phase3,57,LevoThinking,-3.0,5
+3,phase3,58,LevoThinking,-3.999999999999992,7
+3,phase3,59,LevoThinking,-3.5,6
+3,phase3,60,LevoThinking,-0.7300000000000002,3
+3,phase3,61,LevoThinking,-3.999999999999999,7
+3,phase3,62,LevoThinking,-0.5000000000000002,0
+3,phase3,63,LevoThinking,-9.499999999999995,18
+3,phase3,64,LevoThinking,-1.5000000000000004,2
+3,phase3,65,LevoThinking,-6.999999999999997,13
+3,phase3,66,LevoThinking,-1.0000000000000002,1
+3,phase3,67,LevoThinking,-1.0000000000000002,1
+3,phase3,68,LevoThinking,-3.999999999999993,7
+3,phase3,69,LevoThinking,-0.5000000000000002,0
+3,phase3,70,LevoThinking,-9.999999999999995,19
+3,phase3,71,LevoThinking,-3.999999999999992,7
+3,phase3,72,LevoThinking,-3.0,5
+3,phase3,73,LevoThinking,-4.499999999999994,8
+3,phase3,74,LevoThinking,-0.5000000000000002,0
+3,phase3,75,LevoThinking,-8.499999999999996,16
+3,phase3,76,LevoThinking,-1.0000000000000004,1
+3,phase3,77,LevoThinking,-6.499999999999998,12
+3,phase3,78,LevoThinking,-1.0000000000000002,1
+3,phase3,79,LevoThinking,-0.5000000000000002,0
+3,phase3,80,LevoThinking,-6.999999999999996,13
+3,phase3,81,LevoThinking,-2.9999999999999982,5
+3,phase3,82,LevoThinking,-0.5000000000000002,0
+3,phase3,83,LevoThinking,-5.499999999999993,10
+3,phase3,84,LevoThinking,-0.5000000000000002,0
+3,phase3,85,LevoThinking,-5.4999999999999964,10
+3,phase3,86,LevoThinking,-4.499999999999992,8
+3,phase3,87,LevoThinking,-0.5000000000000002,0
+3,phase3,88,LevoThinking,-7.999999999999994,15
+3,phase3,89,LevoThinking,-1.0000000000000002,1
+3,phase3,90,LevoThinking,-8.999999999999991,17
+3,phase3,91,LevoThinking,-5.999999999999992,11
+3,phase3,92,LevoThinking,-0.5000000000000002,0
+3,phase3,93,LevoThinking,-5.499999999999992,10
+3,phase3,94,LevoThinking,-0.5000000000000002,0
+3,phase3,95,LevoThinking,-1.0000000000000002,1
+3,phase3,96,LevoThinking,-0.5000000000000002,0
+3,phase3,97,LevoThinking,-0.5000000000000002,0
+3,phase3,98,LevoThinking,-5.999999999999993,11
+3,phase3,99,LevoThinking,-1.5000000000000002,2
+3,phase3,100,LevoThinking,-3.999999999999999,7
+3,phase3,101,LevoThinking,-1.5000000000000002,2
+3,phase3,102,LevoThinking,-0.5000000000000002,0
+3,phase3,103,LevoThinking,-3.9999999999999947,7
+3,phase3,104,LevoThinking,-4.999999999999991,9
+3,phase3,105,LevoThinking,-1.5000000000000002,2
+3,phase3,106,LevoThinking,-3.499999999999991,6
+3,phase3,107,LevoThinking,-0.5000000000000002,0
+3,phase3,108,LevoThinking,-1.3099999999999994,4
+3,phase3,109,LevoThinking,-4.999999999999994,9
+3,phase3,110,LevoThinking,-2.4999999999999982,4
+3,phase3,111,LevoThinking,-8.999999999999995,17
+3,phase3,112,LevoThinking,-0.5000000000000002,0
+3,phase3,113,LevoThinking,-3.999999999999999,7
+3,phase3,114,LevoThinking,-4.999999999999994,9
+3,phase3,115,LevoThinking,-0.5000000000000002,0
+3,phase3,116,LevoThinking,-6.4999999999999964,12
+3,phase3,117,LevoThinking,-0.5000000000000002,0
+3,phase3,118,LevoThinking,-7.499999999999997,14
+3,phase3,119,LevoThinking,-1.5000000000000004,2
+3,phase3,120,LevoThinking,-0.5000000000000002,0
+3,phase3,121,LevoThinking,-3.9999999999999947,7
+3,phase3,122,LevoThinking,-0.5000000000000002,0
+3,phase3,123,LevoThinking,-5.499999999999998,10
+3,phase3,124,LevoThinking,-1.5000000000000004,2
+3,phase3,125,LevoThinking,-1.0000000000000002,1
+3,phase3,126,LevoThinking,-3.8599999999999985,9
+3,phase3,127,LevoThinking,-5.499999999999992,10
+3,phase3,128,LevoThinking,-1.5000000000000004,2
+3,phase3,129,LevoThinking,-3.9999999999999973,7
+3,phase3,130,LevoThinking,-2.499999999999999,4
+3,phase3,131,LevoThinking,-8.999999999999993,17
+3,phase3,132,LevoThinking,-1.0000000000000002,1
+3,phase3,133,LevoThinking,-5.499999999999999,10
+3,phase3,134,LevoThinking,-11.499999999999993,22
+3,phase3,135,LevoThinking,-0.5000000000000002,0
+3,phase3,136,LevoThinking,-7.499999999999998,14
+3,phase3,137,LevoThinking,-1.0000000000000002,1
+3,phase3,138,LevoThinking,-4.499999999999999,8
+3,phase3,139,LevoThinking,-1.2499999999999993,4
+3,phase3,140,LevoThinking,-1.0000000000000002,1
+3,phase3,141,LevoThinking,-1.0000000000000002,1
+3,phase3,142,LevoThinking,0.2599999999999998,1
+3,phase3,143,LevoThinking,-2.999999999999993,5
+3,phase3,144,LevoThinking,-2.499999999999992,4
+3,phase3,145,LevoThinking,-6.499999999999992,12
+3,phase3,146,LevoThinking,-0.5000000000000002,0
+3,phase3,147,LevoThinking,-2.9999999999999982,5
+3,phase3,148,LevoThinking,-4.999999999999993,9
+3,phase3,149,LevoThinking,-2.0,3
+3,phase3,150,LevoThinking,-0.29000000000000004,2
+3,phase3,151,LevoThinking,-2.499999999999993,4
+3,phase3,152,LevoThinking,-1.0000000000000002,1
+3,phase3,153,LevoThinking,-12.499999999999993,24
+3,phase3,154,LevoThinking,-1.0000000000000002,1
+3,phase3,155,LevoThinking,-3.5,6
+3,phase3,156,LevoThinking,-0.5000000000000002,0
+3,phase3,157,LevoThinking,-0.5000000000000002,0
+3,phase3,158,LevoThinking,-7.499999999999993,14
+3,phase3,159,LevoThinking,-2.0000000000000004,3
+3,phase3,160,LevoThinking,0.5499999999999998,0
+3,phase3,161,LevoThinking,-6.499999999999994,12
+3,phase3,162,LevoThinking,-1.0000000000000002,1
+3,phase3,163,LevoThinking,-3.499999999999999,6
+3,phase3,164,LevoThinking,-1.0000000000000004,1
+3,phase3,165,LevoThinking,-2.999999999999999,5
+3,phase3,166,LevoThinking,-2.999999999999993,5
+3,phase3,167,LevoThinking,-1.0000000000000002,1
+3,phase3,168,LevoThinking,-3.9999999999999947,7
+3,phase3,169,LevoThinking,-0.5000000000000002,0
+3,phase3,170,LevoThinking,-0.5000000000000002,0
+3,phase3,171,LevoThinking,-2.5,4
+3,phase3,172,LevoThinking,-3.0,5
+3,phase3,173,LevoThinking,-4.499999999999993,8
+3,phase3,174,LevoThinking,-4.499999999999993,8
+3,phase3,175,LevoThinking,-3.9999999999999973,7
+3,phase3,176,LevoThinking,-4.999999999999993,9
+3,phase3,177,LevoThinking,-1.0000000000000002,1
+3,phase3,178,LevoThinking,-2.9999999999999956,5
+3,phase3,179,LevoThinking,-0.5000000000000002,0
+3,phase3,180,LevoThinking,-3.5,6
+3,phase3,181,LevoThinking,-5.999999999999991,11
+3,phase3,182,LevoThinking,-0.5000000000000002,0
+3,phase3,183,LevoThinking,-1.5000000000000002,2
+3,phase3,184,LevoThinking,-2.999999999999993,5
+3,phase3,185,LevoThinking,-0.5000000000000002,0
+3,phase3,186,LevoThinking,-2.5,4
+3,phase3,187,LevoThinking,-0.5000000000000002,0
+3,phase3,188,LevoThinking,-3.9999999999999973,7
+3,phase3,189,LevoThinking,-2.0,3
+3,phase3,190,LevoThinking,-3.4999999999999956,6
+3,phase3,191,LevoThinking,-2.9999999999999982,5
+3,phase3,192,LevoThinking,-1.0000000000000002,1
+3,phase3,193,LevoThinking,-9.999999999999995,19
+3,phase3,194,LevoThinking,-2.4999999999999973,4
+3,phase3,195,LevoThinking,-3.4999999999999973,6
+3,phase3,196,LevoThinking,-4.499999999999993,8
+3,phase3,197,LevoThinking,-0.5000000000000002,0
+3,phase3,198,LevoThinking,-3.5,6
+3,phase3,199,LevoThinking,-2.499999999999998,4
diff --git a/Down/results/down_paradox_tabular_results.csv b/Down/results/down_paradox_tabular_results.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5efdeb1d1448e91c4e9f1308d49e86055be464f8
--- /dev/null
+++ b/Down/results/down_paradox_tabular_results.csv
@@ -0,0 +1,2401 @@
+global_episode,phase,episode,env_seed,agent,episode_reward,failure_mode,rho_state
+0,1,0,960941037,HFLevo,1.3,neutral,nan
+0,1,0,960941037,LevoParadoxIsomer,0.0,neutral,0.5
+1,1,1,2135581874,HFLevo,1.3,neutral,nan
+1,1,1,2135581874,LevoParadoxIsomer,0.0,neutral,0.5
+2,1,2,2131554306,HFLevo,1.3,neutral,nan
+2,1,2,2131554306,LevoParadoxIsomer,0.0,neutral,0.5
+3,1,3,820359671,HFLevo,-2.0,overconfident,nan
+3,1,3,820359671,LevoParadoxIsomer,-2.0,overconfident,0.5
+4,1,4,2047814545,HFLevo,1.3,neutral,nan
+4,1,4,2047814545,LevoParadoxIsomer,1.3,neutral,0.5
+5,1,5,1776286830,HFLevo,1.2,neutral,nan
+5,1,5,1776286830,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+6,1,6,1373214917,HFLevo,-2.0,overconfident,nan
+6,1,6,1373214917,LevoParadoxIsomer,-2.0,overconfident,0.5
+7,1,7,1797992013,HFLevo,1.3,neutral,nan
+7,1,7,1797992013,LevoParadoxIsomer,0.0,neutral,0.5
+8,1,8,1645535739,HFLevo,1.2,neutral,nan
+8,1,8,1645535739,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+9,1,9,2095533891,HFLevo,1.3,neutral,nan
+9,1,9,2095533891,LevoParadoxIsomer,1.3,neutral,0.5
+10,1,10,829401385,HFLevo,1.3,neutral,nan
+10,1,10,829401385,LevoParadoxIsomer,1.3,neutral,0.5
+11,1,11,165839486,HFLevo,1.3,neutral,nan
+11,1,11,165839486,LevoParadoxIsomer,1.3,neutral,0.5
+12,1,12,976680886,HFLevo,1.2,neutral,nan
+12,1,12,976680886,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+13,1,13,681732448,HFLevo,0.0,neutral,nan
+13,1,13,681732448,LevoParadoxIsomer,0.0,neutral,0.5
+14,1,14,1046126860,HFLevo,1.3,neutral,nan
+14,1,14,1046126860,LevoParadoxIsomer,0.0,neutral,0.5
+15,1,15,1974730198,HFLevo,0.0,neutral,nan
+15,1,15,1974730198,LevoParadoxIsomer,1.3,neutral,0.5
+16,1,16,2073558604,HFLevo,0.0,neutral,nan
+16,1,16,2073558604,LevoParadoxIsomer,0.0,neutral,0.5
+17,1,17,1451418837,HFLevo,0.0,neutral,nan
+17,1,17,1451418837,LevoParadoxIsomer,1.3,neutral,0.5
+18,1,18,1365011226,HFLevo,1.3,neutral,nan
+18,1,18,1365011226,LevoParadoxIsomer,1.3,neutral,0.5
+19,1,19,613804374,HFLevo,1.3,neutral,nan
+19,1,19,613804374,LevoParadoxIsomer,1.3,neutral,0.5
+20,1,20,32280267,HFLevo,1.3,neutral,nan
+20,1,20,32280267,LevoParadoxIsomer,0.0,neutral,0.5
+21,1,21,836537275,HFLevo,0.0,neutral,nan
+21,1,21,836537275,LevoParadoxIsomer,0.0,neutral,0.5
+22,1,22,975647501,HFLevo,0.0,neutral,nan
+22,1,22,975647501,LevoParadoxIsomer,-0.8,overcautious,0.5
+23,1,23,494392738,HFLevo,1.3,neutral,nan
+23,1,23,494392738,LevoParadoxIsomer,0.0,neutral,0.5
+24,1,24,1706901824,HFLevo,0.0,neutral,nan
+24,1,24,1706901824,LevoParadoxIsomer,0.0,neutral,0.5
+25,1,25,358546340,HFLevo,0.0,neutral,nan
+25,1,25,358546340,LevoParadoxIsomer,1.3,neutral,0.5
+26,1,26,1030268022,HFLevo,-2.0,overconfident,nan
+26,1,26,1030268022,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+27,1,27,329502221,HFLevo,0.0,neutral,nan
+27,1,27,329502221,LevoParadoxIsomer,0.0,neutral,0.5
+28,1,28,746578914,HFLevo,1.3,neutral,nan
+28,1,28,746578914,LevoParadoxIsomer,0.0,neutral,0.5
+29,1,29,2091845998,HFLevo,1.3,neutral,nan
+29,1,29,2091845998,LevoParadoxIsomer,1.3,neutral,0.5
+30,1,30,1436029081,HFLevo,0.0,neutral,nan
+30,1,30,1436029081,LevoParadoxIsomer,1.3,neutral,0.5
+31,1,31,910309404,HFLevo,0.0,neutral,nan
+31,1,31,910309404,LevoParadoxIsomer,1.3,neutral,0.5
+32,1,32,472048561,HFLevo,1.3,neutral,nan
+32,1,32,472048561,LevoParadoxIsomer,0.0,neutral,0.5
+33,1,33,135600480,HFLevo,0.0,neutral,nan
+33,1,33,135600480,LevoParadoxIsomer,0.0,neutral,0.5
+34,1,34,1892894588,HFLevo,0.0,neutral,nan
+34,1,34,1892894588,LevoParadoxIsomer,1.3,neutral,0.5
+35,1,35,1055673936,HFLevo,1.2,neutral,nan
+35,1,35,1055673936,LevoParadoxIsomer,-2.0,overconfident,0.44999998807907104
+36,1,36,1340667110,HFLevo,0.0,neutral,nan
+36,1,36,1340667110,LevoParadoxIsomer,0.0,neutral,0.5
+37,1,37,619212679,HFLevo,-2.0,overconfident,nan
+37,1,37,619212679,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+38,1,38,120545107,HFLevo,1.3,neutral,nan
+38,1,38,120545107,LevoParadoxIsomer,1.3,neutral,0.5
+39,1,39,454442609,HFLevo,2.5,neutral,nan
+39,1,39,454442609,LevoParadoxIsomer,2.5,neutral,0.5
+40,1,40,295287540,HFLevo,0.0,neutral,nan
+40,1,40,295287540,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+41,1,41,445457645,HFLevo,1.3,neutral,nan
+41,1,41,445457645,LevoParadoxIsomer,1.3,neutral,0.5
+42,1,42,307622279,HFLevo,1.3,neutral,nan
+42,1,42,307622279,LevoParadoxIsomer,1.3,neutral,0.5
+43,1,43,1243437117,HFLevo,0.0,neutral,nan
+43,1,43,1243437117,LevoParadoxIsomer,0.0,neutral,0.5
+44,1,44,244133596,HFLevo,0.0,neutral,nan
+44,1,44,244133596,LevoParadoxIsomer,1.3,neutral,0.5
+45,1,45,1268841274,HFLevo,0.0,neutral,nan
+45,1,45,1268841274,LevoParadoxIsomer,0.0,neutral,0.5
+46,1,46,1225761364,HFLevo,1.3,neutral,nan
+46,1,46,1225761364,LevoParadoxIsomer,0.0,neutral,0.5
+47,1,47,1907103971,HFLevo,1.3,neutral,nan
+47,1,47,1907103971,LevoParadoxIsomer,1.3,neutral,0.5
+48,1,48,1034799201,HFLevo,0.0,neutral,nan
+48,1,48,1034799201,LevoParadoxIsomer,0.0,neutral,0.5
+49,1,49,235864475,HFLevo,-2.0,overconfident,nan
+49,1,49,235864475,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+50,1,50,691379092,HFLevo,-2.0,overconfident,nan
+50,1,50,691379092,LevoParadoxIsomer,1.2,neutral,0.5
+51,1,51,1065800727,HFLevo,2.5,neutral,nan
+51,1,51,1065800727,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+52,1,52,655184241,HFLevo,-2.0,overconfident,nan
+52,1,52,655184241,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+53,1,53,623054291,HFLevo,2.5,neutral,nan
+53,1,53,623054291,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+54,1,54,540036626,HFLevo,-0.8,overcautious,nan
+54,1,54,540036626,LevoParadoxIsomer,0.0,neutral,0.5
+55,1,55,1043358048,HFLevo,1.2,neutral,nan
+55,1,55,1043358048,LevoParadoxIsomer,1.2,neutral,0.5
+56,1,56,1932965406,HFLevo,1.3,neutral,nan
+56,1,56,1932965406,LevoParadoxIsomer,0.0,neutral,0.5
+57,1,57,2036930070,HFLevo,1.3,neutral,nan
+57,1,57,2036930070,LevoParadoxIsomer,1.3,neutral,0.5
+58,1,58,1526743940,HFLevo,1.3,neutral,nan
+58,1,58,1526743940,LevoParadoxIsomer,0.0,neutral,0.5
+59,1,59,1989662969,HFLevo,0.0,neutral,nan
+59,1,59,1989662969,LevoParadoxIsomer,-0.8,overcautious,0.5
+60,1,60,2139514329,HFLevo,0.0,neutral,nan
+60,1,60,2139514329,LevoParadoxIsomer,0.0,neutral,0.5
+61,1,61,1632303898,HFLevo,0.0,neutral,nan
+61,1,61,1632303898,LevoParadoxIsomer,1.3,neutral,0.5
+62,1,62,1850997508,HFLevo,1.3,neutral,nan
+62,1,62,1850997508,LevoParadoxIsomer,0.0,neutral,0.5
+63,1,63,1679388031,HFLevo,1.3,neutral,nan
+63,1,63,1679388031,LevoParadoxIsomer,0.0,neutral,0.5
+64,1,64,994656789,HFLevo,0.0,neutral,nan
+64,1,64,994656789,LevoParadoxIsomer,1.3,neutral,0.5
+65,1,65,596802772,HFLevo,0.0,neutral,nan
+65,1,65,596802772,LevoParadoxIsomer,1.3,neutral,0.5
+66,1,66,2022213408,HFLevo,-0.8,overcautious,nan
+66,1,66,2022213408,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+67,1,67,1111583775,HFLevo,0.0,neutral,nan
+67,1,67,1111583775,LevoParadoxIsomer,-2.0,overconfident,0.5
+68,1,68,243487825,HFLevo,1.3,neutral,nan
+68,1,68,243487825,LevoParadoxIsomer,0.0,neutral,0.5
+69,1,69,1727825584,HFLevo,-0.8,overcautious,nan
+69,1,69,1727825584,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+70,1,70,138221208,HFLevo,0.0,neutral,nan
+70,1,70,138221208,LevoParadoxIsomer,0.0,neutral,0.5
+71,1,71,1644995000,HFLevo,1.2,neutral,nan
+71,1,71,1644995000,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+72,1,72,609184021,HFLevo,0.0,neutral,nan
+72,1,72,609184021,LevoParadoxIsomer,0.0,neutral,0.5
+73,1,73,1231929388,HFLevo,-2.0,overconfident,nan
+73,1,73,1231929388,LevoParadoxIsomer,-2.0,overconfident,0.44999998807907104
+74,1,74,1344075265,HFLevo,1.3,neutral,nan
+74,1,74,1344075265,LevoParadoxIsomer,1.3,neutral,0.5
+75,1,75,1828410100,HFLevo,-2.0,overconfident,nan
+75,1,75,1828410100,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+76,1,76,2048576691,HFLevo,-2.0,overconfident,nan
+76,1,76,2048576691,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+77,1,77,1829711174,HFLevo,1.3,neutral,nan
+77,1,77,1829711174,LevoParadoxIsomer,1.3,neutral,0.5
+78,1,78,993502358,HFLevo,1.3,neutral,nan
+78,1,78,993502358,LevoParadoxIsomer,0.0,neutral,0.5
+79,1,79,796970628,HFLevo,-0.8,overcautious,nan
+79,1,79,796970628,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+80,1,80,1037953041,HFLevo,0.0,neutral,nan
+80,1,80,1037953041,LevoParadoxIsomer,1.3,neutral,0.5
+81,1,81,981620733,HFLevo,0.0,neutral,nan
+81,1,81,981620733,LevoParadoxIsomer,0.0,neutral,0.5
+82,1,82,729569317,HFLevo,0.0,neutral,nan
+82,1,82,729569317,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+83,1,83,646784317,HFLevo,-2.0,overconfident,nan
+83,1,83,646784317,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+84,1,84,740999785,HFLevo,1.3,neutral,nan
+84,1,84,740999785,LevoParadoxIsomer,0.0,neutral,0.5
+85,1,85,1740597160,HFLevo,-2.0,overconfident,nan
+85,1,85,1740597160,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+86,1,86,661906414,HFLevo,1.3,neutral,nan
+86,1,86,661906414,LevoParadoxIsomer,0.0,neutral,0.5
+87,1,87,1060388906,HFLevo,1.3,neutral,nan
+87,1,87,1060388906,LevoParadoxIsomer,0.0,neutral,0.5
+88,1,88,359430184,HFLevo,2.5,neutral,nan
+88,1,88,359430184,LevoParadoxIsomer,0.0,neutral,0.5
+89,1,89,1208987810,HFLevo,1.3,neutral,nan
+89,1,89,1208987810,LevoParadoxIsomer,1.3,neutral,0.5
+90,1,90,2009099257,HFLevo,0.0,neutral,nan
+90,1,90,2009099257,LevoParadoxIsomer,1.3,neutral,0.5
+91,1,91,1034716133,HFLevo,0.0,neutral,nan
+91,1,91,1034716133,LevoParadoxIsomer,1.3,neutral,0.5
+92,1,92,868969428,HFLevo,0.0,neutral,nan
+92,1,92,868969428,LevoParadoxIsomer,-2.0,overconfident,0.3999999761581421
+93,1,93,545077016,HFLevo,2.5,neutral,nan
+93,1,93,545077016,LevoParadoxIsomer,-0.8,overcautious,0.5
+94,1,94,618241786,HFLevo,1.3,neutral,nan
+94,1,94,618241786,LevoParadoxIsomer,0.0,neutral,0.5
+95,1,95,2112109137,HFLevo,2.5,neutral,nan
+95,1,95,2112109137,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+96,1,96,300763006,HFLevo,1.3,neutral,nan
+96,1,96,300763006,LevoParadoxIsomer,0.0,neutral,0.5
+97,1,97,1182747845,HFLevo,0.0,neutral,nan
+97,1,97,1182747845,LevoParadoxIsomer,1.3,neutral,0.5
+98,1,98,997933218,HFLevo,0.0,neutral,nan
+98,1,98,997933218,LevoParadoxIsomer,1.3,neutral,0.5
+99,1,99,2082537479,HFLevo,1.3,neutral,nan
+99,1,99,2082537479,LevoParadoxIsomer,0.0,neutral,0.5
+100,1,100,948374647,HFLevo,0.0,neutral,nan
+100,1,100,948374647,LevoParadoxIsomer,1.3,neutral,0.5
+101,1,101,484158897,HFLevo,1.3,neutral,nan
+101,1,101,484158897,LevoParadoxIsomer,0.0,neutral,0.5
+102,1,102,1023803420,HFLevo,-0.8,overcautious,nan
+102,1,102,1023803420,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+103,1,103,1933155352,HFLevo,0.0,neutral,nan
+103,1,103,1933155352,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+104,1,104,531436601,HFLevo,0.0,neutral,nan
+104,1,104,531436601,LevoParadoxIsomer,0.0,neutral,0.5
+105,1,105,693213698,HFLevo,1.3,neutral,nan
+105,1,105,693213698,LevoParadoxIsomer,0.0,neutral,0.5
+106,1,106,1411219987,HFLevo,-0.8,overcautious,nan
+106,1,106,1411219987,LevoParadoxIsomer,0.0,neutral,0.6000000238418579
+107,1,107,707739816,HFLevo,0.0,neutral,nan
+107,1,107,707739816,LevoParadoxIsomer,1.3,neutral,0.5
+108,1,108,7444596,HFLevo,0.0,neutral,nan
+108,1,108,7444596,LevoParadoxIsomer,0.0,neutral,0.5
+109,1,109,1531464733,HFLevo,0.0,neutral,nan
+109,1,109,1531464733,LevoParadoxIsomer,1.3,neutral,0.5
+110,1,110,1407225246,HFLevo,1.3,neutral,nan
+110,1,110,1407225246,LevoParadoxIsomer,0.0,neutral,0.5
+111,1,111,1617971802,HFLevo,2.5,neutral,nan
+111,1,111,1617971802,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+112,1,112,1856904126,HFLevo,0.0,neutral,nan
+112,1,112,1856904126,LevoParadoxIsomer,0.0,neutral,0.5
+113,1,113,2080438781,HFLevo,0.0,neutral,nan
+113,1,113,2080438781,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+114,1,114,92845013,HFLevo,0.0,neutral,nan
+114,1,114,92845013,LevoParadoxIsomer,1.3,neutral,0.5
+115,1,115,2051487433,HFLevo,1.3,neutral,nan
+115,1,115,2051487433,LevoParadoxIsomer,0.0,neutral,0.5
+116,1,116,1625881056,HFLevo,0.0,neutral,nan
+116,1,116,1625881056,LevoParadoxIsomer,0.0,neutral,0.5
+117,1,117,1999467027,HFLevo,0.0,neutral,nan
+117,1,117,1999467027,LevoParadoxIsomer,0.0,neutral,0.5
+118,1,118,759769092,HFLevo,-0.8,overcautious,nan
+118,1,118,759769092,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+119,1,119,1368848130,HFLevo,1.3,neutral,nan
+119,1,119,1368848130,LevoParadoxIsomer,0.0,neutral,0.5
+120,1,120,2079957582,HFLevo,0.0,neutral,nan
+120,1,120,2079957582,LevoParadoxIsomer,0.0,neutral,0.5
+121,1,121,858968924,HFLevo,0.0,neutral,nan
+121,1,121,858968924,LevoParadoxIsomer,1.3,neutral,0.5
+122,1,122,2037278180,HFLevo,1.3,neutral,nan
+122,1,122,2037278180,LevoParadoxIsomer,1.3,neutral,0.5
+123,1,123,301224287,HFLevo,-0.8,overcautious,nan
+123,1,123,301224287,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+124,1,124,595106119,HFLevo,1.3,neutral,nan
+124,1,124,595106119,LevoParadoxIsomer,1.3,neutral,0.5
+125,1,125,830628267,HFLevo,1.3,neutral,nan
+125,1,125,830628267,LevoParadoxIsomer,0.0,neutral,0.5
+126,1,126,2056643707,HFLevo,0.0,neutral,nan
+126,1,126,2056643707,LevoParadoxIsomer,0.0,neutral,0.5
+127,1,127,676826452,HFLevo,0.0,neutral,nan
+127,1,127,676826452,LevoParadoxIsomer,1.3,neutral,0.5
+128,1,128,1391976925,HFLevo,2.5,neutral,nan
+128,1,128,1391976925,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+129,1,129,1312449805,HFLevo,0.0,neutral,nan
+129,1,129,1312449805,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+130,1,130,441735078,HFLevo,0.0,neutral,nan
+130,1,130,441735078,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+131,1,131,1198114699,HFLevo,1.3,neutral,nan
+131,1,131,1198114699,LevoParadoxIsomer,0.0,neutral,0.5
+132,1,132,1177544228,HFLevo,0.0,neutral,nan
+132,1,132,1177544228,LevoParadoxIsomer,0.0,neutral,0.5
+133,1,133,235682355,HFLevo,1.3,neutral,nan
+133,1,133,235682355,LevoParadoxIsomer,1.3,neutral,0.5
+134,1,134,594730155,HFLevo,2.5,neutral,nan
+134,1,134,594730155,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+135,1,135,1031283908,HFLevo,0.0,neutral,nan
+135,1,135,1031283908,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+136,1,136,1468565562,HFLevo,1.3,neutral,nan
+136,1,136,1468565562,LevoParadoxIsomer,0.0,neutral,0.5
+137,1,137,1799515670,HFLevo,-2.0,overconfident,nan
+137,1,137,1799515670,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+138,1,138,1374703813,HFLevo,1.3,neutral,nan
+138,1,138,1374703813,LevoParadoxIsomer,1.3,neutral,0.5
+139,1,139,1412669082,HFLevo,0.0,neutral,nan
+139,1,139,1412669082,LevoParadoxIsomer,0.0,neutral,0.5
+140,1,140,342509991,HFLevo,0.0,neutral,nan
+140,1,140,342509991,LevoParadoxIsomer,0.0,neutral,0.5
+141,1,141,129641700,HFLevo,1.2,neutral,nan
+141,1,141,129641700,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+142,1,142,1979539584,HFLevo,1.2,neutral,nan
+142,1,142,1979539584,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+143,1,143,181563758,HFLevo,1.3,neutral,nan
+143,1,143,181563758,LevoParadoxIsomer,1.3,neutral,0.5
+144,1,144,2121376515,HFLevo,1.3,neutral,nan
+144,1,144,2121376515,LevoParadoxIsomer,1.3,neutral,0.5
+145,1,145,359483640,HFLevo,1.2,neutral,nan
+145,1,145,359483640,LevoParadoxIsomer,-2.0,overconfident,0.34999996423721313
+146,1,146,1009660805,HFLevo,0.0,neutral,nan
+146,1,146,1009660805,LevoParadoxIsomer,0.0,neutral,0.5
+147,1,147,1772095163,HFLevo,2.5,neutral,nan
+147,1,147,1772095163,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+148,1,148,793047113,HFLevo,1.3,neutral,nan
+148,1,148,793047113,LevoParadoxIsomer,0.0,neutral,0.5
+149,1,149,2123812620,HFLevo,1.2,neutral,nan
+149,1,149,2123812620,LevoParadoxIsomer,-2.0,overconfident,0.2999999523162842
+150,1,150,160023209,HFLevo,1.2,neutral,nan
+150,1,150,160023209,LevoParadoxIsomer,-2.0,overconfident,0.24999995529651642
+151,1,151,883833601,HFLevo,1.3,neutral,nan
+151,1,151,883833601,LevoParadoxIsomer,1.3,neutral,0.5
+152,1,152,1345236526,HFLevo,0.0,neutral,nan
+152,1,152,1345236526,LevoParadoxIsomer,0.0,neutral,0.5
+153,1,153,2123563640,HFLevo,0.0,neutral,nan
+153,1,153,2123563640,LevoParadoxIsomer,1.3,neutral,0.5
+154,1,154,1188897582,HFLevo,0.0,neutral,nan
+154,1,154,1188897582,LevoParadoxIsomer,0.0,neutral,0.5
+155,1,155,1835296655,HFLevo,1.3,neutral,nan
+155,1,155,1835296655,LevoParadoxIsomer,0.0,neutral,0.5
+156,1,156,263292300,HFLevo,0.0,neutral,nan
+156,1,156,263292300,LevoParadoxIsomer,1.3,neutral,0.5
+157,1,157,339487389,HFLevo,0.0,neutral,nan
+157,1,157,339487389,LevoParadoxIsomer,0.0,neutral,0.5
+158,1,158,640187192,HFLevo,-0.8,overcautious,nan
+158,1,158,640187192,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+159,1,159,1603617236,HFLevo,0.0,neutral,nan
+159,1,159,1603617236,LevoParadoxIsomer,0.0,neutral,0.5
+160,1,160,437479272,HFLevo,2.5,neutral,nan
+160,1,160,437479272,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+161,1,161,1297938304,HFLevo,0.0,neutral,nan
+161,1,161,1297938304,LevoParadoxIsomer,1.3,neutral,0.5
+162,1,162,1736782144,HFLevo,1.3,neutral,nan
+162,1,162,1736782144,LevoParadoxIsomer,1.3,neutral,0.5
+163,1,163,1188005741,HFLevo,0.0,neutral,nan
+163,1,163,1188005741,LevoParadoxIsomer,1.3,neutral,0.5
+164,1,164,1925962876,HFLevo,1.3,neutral,nan
+164,1,164,1925962876,LevoParadoxIsomer,0.0,neutral,0.5
+165,1,165,1419686978,HFLevo,1.3,neutral,nan
+165,1,165,1419686978,LevoParadoxIsomer,0.0,neutral,0.5
+166,1,166,113085408,HFLevo,0.0,neutral,nan
+166,1,166,113085408,LevoParadoxIsomer,1.3,neutral,0.5
+167,1,167,2107650812,HFLevo,1.3,neutral,nan
+167,1,167,2107650812,LevoParadoxIsomer,0.0,neutral,0.5
+168,1,168,1556544035,HFLevo,1.3,neutral,nan
+168,1,168,1556544035,LevoParadoxIsomer,0.0,neutral,0.5
+169,1,169,409268109,HFLevo,0.0,neutral,nan
+169,1,169,409268109,LevoParadoxIsomer,0.0,neutral,0.5
+170,1,170,1707984479,HFLevo,1.3,neutral,nan
+170,1,170,1707984479,LevoParadoxIsomer,1.3,neutral,0.5
+171,1,171,2028373425,HFLevo,0.0,neutral,nan
+171,1,171,2028373425,LevoParadoxIsomer,1.3,neutral,0.5
+172,1,172,1712063860,HFLevo,1.3,neutral,nan
+172,1,172,1712063860,LevoParadoxIsomer,0.0,neutral,0.5
+173,1,173,729831432,HFLevo,0.0,neutral,nan
+173,1,173,729831432,LevoParadoxIsomer,1.3,neutral,0.5
+174,1,174,1945712103,HFLevo,-0.8,overcautious,nan
+174,1,174,1945712103,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+175,1,175,1662118687,HFLevo,1.3,neutral,nan
+175,1,175,1662118687,LevoParadoxIsomer,0.0,neutral,0.5
+176,1,176,1263277082,HFLevo,1.3,neutral,nan
+176,1,176,1263277082,LevoParadoxIsomer,1.3,neutral,0.5
+177,1,177,600780774,HFLevo,1.3,neutral,nan
+177,1,177,600780774,LevoParadoxIsomer,0.0,neutral,0.5
+178,1,178,389237547,HFLevo,0.0,neutral,nan
+178,1,178,389237547,LevoParadoxIsomer,1.3,neutral,0.5
+179,1,179,531352528,HFLevo,1.3,neutral,nan
+179,1,179,531352528,LevoParadoxIsomer,1.3,neutral,0.5
+180,1,180,308998320,HFLevo,1.2,neutral,nan
+180,1,180,308998320,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+181,1,181,133112608,HFLevo,0.0,neutral,nan
+181,1,181,133112608,LevoParadoxIsomer,0.0,neutral,0.5
+182,1,182,1335500866,HFLevo,0.0,neutral,nan
+182,1,182,1335500866,LevoParadoxIsomer,1.3,neutral,0.5
+183,1,183,1455247303,HFLevo,2.5,neutral,nan
+183,1,183,1455247303,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+184,1,184,818574077,HFLevo,1.2,neutral,nan
+184,1,184,818574077,LevoParadoxIsomer,-2.0,overconfident,0.3999999761581421
+185,1,185,783962675,HFLevo,1.2,neutral,nan
+185,1,185,783962675,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+186,1,186,181722168,HFLevo,-0.8,overcautious,nan
+186,1,186,181722168,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+187,1,187,922465315,HFLevo,1.3,neutral,nan
+187,1,187,922465315,LevoParadoxIsomer,0.0,neutral,0.5
+188,1,188,1058682574,HFLevo,0.0,neutral,nan
+188,1,188,1058682574,LevoParadoxIsomer,0.0,neutral,0.5
+189,1,189,2126397323,HFLevo,1.3,neutral,nan
+189,1,189,2126397323,LevoParadoxIsomer,1.3,neutral,0.5
+190,1,190,23796221,HFLevo,1.2,neutral,nan
+190,1,190,23796221,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+191,1,191,677074079,HFLevo,-0.8,overcautious,nan
+191,1,191,677074079,LevoParadoxIsomer,0.0,neutral,0.6000000238418579
+192,1,192,1977263236,HFLevo,1.2,neutral,nan
+192,1,192,1977263236,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+193,1,193,1768875981,HFLevo,0.0,neutral,nan
+193,1,193,1768875981,LevoParadoxIsomer,0.0,neutral,0.5
+194,1,194,1212545188,HFLevo,2.5,neutral,nan
+194,1,194,1212545188,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+195,1,195,1186674390,HFLevo,1.3,neutral,nan
+195,1,195,1186674390,LevoParadoxIsomer,0.0,neutral,0.5
+196,1,196,1056632766,HFLevo,1.3,neutral,nan
+196,1,196,1056632766,LevoParadoxIsomer,1.3,neutral,0.5
+197,1,197,268535661,HFLevo,0.0,neutral,nan
+197,1,197,268535661,LevoParadoxIsomer,1.3,neutral,0.5
+198,1,198,888167157,HFLevo,1.2,neutral,nan
+198,1,198,888167157,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+199,1,199,530391691,HFLevo,0.0,neutral,nan
+199,1,199,530391691,LevoParadoxIsomer,1.3,neutral,0.5
+200,1,200,50594990,HFLevo,2.5,neutral,nan
+200,1,200,50594990,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+201,1,201,222395105,HFLevo,1.2,neutral,nan
+201,1,201,222395105,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+202,1,202,287284573,HFLevo,1.3,neutral,nan
+202,1,202,287284573,LevoParadoxIsomer,1.3,neutral,0.5
+203,1,203,514973304,HFLevo,0.0,neutral,nan
+203,1,203,514973304,LevoParadoxIsomer,0.0,neutral,0.5
+204,1,204,1909475802,HFLevo,2.5,neutral,nan
+204,1,204,1909475802,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+205,1,205,1879525266,HFLevo,-2.0,overconfident,nan
+205,1,205,1879525266,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+206,1,206,1420380137,HFLevo,-0.8,overcautious,nan
+206,1,206,1420380137,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+207,1,207,1737331410,HFLevo,0.0,neutral,nan
+207,1,207,1737331410,LevoParadoxIsomer,1.3,neutral,0.5
+208,1,208,1064923684,HFLevo,1.3,neutral,nan
+208,1,208,1064923684,LevoParadoxIsomer,1.3,neutral,0.5
+209,1,209,1238273317,HFLevo,0.0,neutral,nan
+209,1,209,1238273317,LevoParadoxIsomer,1.3,neutral,0.5
+210,1,210,144185798,HFLevo,0.0,neutral,nan
+210,1,210,144185798,LevoParadoxIsomer,1.3,neutral,0.5
+211,1,211,575162410,HFLevo,1.3,neutral,nan
+211,1,211,575162410,LevoParadoxIsomer,0.0,neutral,0.5
+212,1,212,707283582,HFLevo,2.5,neutral,nan
+212,1,212,707283582,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+213,1,213,1405835406,HFLevo,1.3,neutral,nan
+213,1,213,1405835406,LevoParadoxIsomer,1.3,neutral,0.5
+214,1,214,789235422,HFLevo,1.3,neutral,nan
+214,1,214,789235422,LevoParadoxIsomer,0.0,neutral,0.5
+215,1,215,1388271326,HFLevo,1.3,neutral,nan
+215,1,215,1388271326,LevoParadoxIsomer,1.3,neutral,0.5
+216,1,216,1865718892,HFLevo,0.0,neutral,nan
+216,1,216,1865718892,LevoParadoxIsomer,1.3,neutral,0.5
+217,1,217,1293915651,HFLevo,1.3,neutral,nan
+217,1,217,1293915651,LevoParadoxIsomer,1.3,neutral,0.5
+218,1,218,1428150647,HFLevo,2.5,neutral,nan
+218,1,218,1428150647,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+219,1,219,19248056,HFLevo,2.5,neutral,nan
+219,1,219,19248056,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+220,1,220,491031830,HFLevo,0.0,neutral,nan
+220,1,220,491031830,LevoParadoxIsomer,0.0,neutral,0.5
+221,1,221,636126198,HFLevo,1.3,neutral,nan
+221,1,221,636126198,LevoParadoxIsomer,0.0,neutral,0.5
+222,1,222,456728828,HFLevo,1.2,neutral,nan
+222,1,222,456728828,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+223,1,223,966697912,HFLevo,1.2,neutral,nan
+223,1,223,966697912,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+224,1,224,1166498720,HFLevo,0.0,neutral,nan
+224,1,224,1166498720,LevoParadoxIsomer,1.3,neutral,0.5
+225,1,225,1571014065,HFLevo,0.0,neutral,nan
+225,1,225,1571014065,LevoParadoxIsomer,2.5,neutral,0.550000011920929
+226,1,226,714126436,HFLevo,1.3,neutral,nan
+226,1,226,714126436,LevoParadoxIsomer,0.0,neutral,0.5
+227,1,227,1206418342,HFLevo,1.3,neutral,nan
+227,1,227,1206418342,LevoParadoxIsomer,1.3,neutral,0.5
+228,1,228,1372090007,HFLevo,1.2,neutral,nan
+228,1,228,1372090007,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+229,1,229,769009050,HFLevo,2.5,neutral,nan
+229,1,229,769009050,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+230,1,230,1353001314,HFLevo,0.0,neutral,nan
+230,1,230,1353001314,LevoParadoxIsomer,0.0,neutral,0.5
+231,1,231,1733327736,HFLevo,0.0,neutral,nan
+231,1,231,1733327736,LevoParadoxIsomer,1.3,neutral,0.5
+232,1,232,638285556,HFLevo,1.3,neutral,nan
+232,1,232,638285556,LevoParadoxIsomer,1.3,neutral,0.5
+233,1,233,988454733,HFLevo,1.3,neutral,nan
+233,1,233,988454733,LevoParadoxIsomer,0.0,neutral,0.5
+234,1,234,1459581848,HFLevo,1.3,neutral,nan
+234,1,234,1459581848,LevoParadoxIsomer,0.0,neutral,0.5
+235,1,235,1106839428,HFLevo,1.2,neutral,nan
+235,1,235,1106839428,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+236,1,236,388494700,HFLevo,0.0,neutral,nan
+236,1,236,388494700,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+237,1,237,1441804184,HFLevo,0.0,neutral,nan
+237,1,237,1441804184,LevoParadoxIsomer,0.0,neutral,0.5
+238,1,238,683008548,HFLevo,0.0,neutral,nan
+238,1,238,683008548,LevoParadoxIsomer,1.3,neutral,0.5
+239,1,239,557447257,HFLevo,1.3,neutral,nan
+239,1,239,557447257,LevoParadoxIsomer,1.3,neutral,0.5
+240,1,240,1553434256,HFLevo,1.2,neutral,nan
+240,1,240,1553434256,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+241,1,241,1196216329,HFLevo,0.0,neutral,nan
+241,1,241,1196216329,LevoParadoxIsomer,1.3,neutral,0.5
+242,1,242,205445195,HFLevo,0.0,neutral,nan
+242,1,242,205445195,LevoParadoxIsomer,1.3,neutral,0.5
+243,1,243,138987130,HFLevo,1.3,neutral,nan
+243,1,243,138987130,LevoParadoxIsomer,0.0,neutral,0.5
+244,1,244,1601279830,HFLevo,0.0,neutral,nan
+244,1,244,1601279830,LevoParadoxIsomer,0.0,neutral,0.5
+245,1,245,523497866,HFLevo,2.5,neutral,nan
+245,1,245,523497866,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+246,1,246,1681903654,HFLevo,1.3,neutral,nan
+246,1,246,1681903654,LevoParadoxIsomer,0.0,neutral,0.5
+247,1,247,1447758672,HFLevo,1.3,neutral,nan
+247,1,247,1447758672,LevoParadoxIsomer,0.0,neutral,0.5
+248,1,248,1263090791,HFLevo,1.2,neutral,nan
+248,1,248,1263090791,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+249,1,249,2069934169,HFLevo,1.3,neutral,nan
+249,1,249,2069934169,LevoParadoxIsomer,1.3,neutral,0.5
+250,1,250,1175589659,HFLevo,0.0,neutral,nan
+250,1,250,1175589659,LevoParadoxIsomer,-2.0,overconfident,0.34999996423721313
+251,1,251,792436927,HFLevo,1.3,neutral,nan
+251,1,251,792436927,LevoParadoxIsomer,1.3,neutral,0.5
+252,1,252,77793463,HFLevo,1.3,neutral,nan
+252,1,252,77793463,LevoParadoxIsomer,0.0,neutral,0.5
+253,1,253,1178447001,HFLevo,0.0,neutral,nan
+253,1,253,1178447001,LevoParadoxIsomer,1.3,neutral,0.5
+254,1,254,1867902247,HFLevo,1.3,neutral,nan
+254,1,254,1867902247,LevoParadoxIsomer,0.0,neutral,0.5
+255,1,255,1132483487,HFLevo,0.0,neutral,nan
+255,1,255,1132483487,LevoParadoxIsomer,0.0,neutral,0.5
+256,1,256,1108550737,HFLevo,0.0,neutral,nan
+256,1,256,1108550737,LevoParadoxIsomer,1.3,neutral,0.5
+257,1,257,761845810,HFLevo,0.0,neutral,nan
+257,1,257,761845810,LevoParadoxIsomer,1.3,neutral,0.5
+258,1,258,2026103214,HFLevo,2.5,neutral,nan
+258,1,258,2026103214,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+259,1,259,1320383576,HFLevo,2.5,neutral,nan
+259,1,259,1320383576,LevoParadoxIsomer,0.0,neutral,0.7000000476837158
+260,1,260,165278918,HFLevo,0.0,neutral,nan
+260,1,260,165278918,LevoParadoxIsomer,-2.0,overconfident,0.2999999523162842
+261,1,261,1264440670,HFLevo,2.5,neutral,nan
+261,1,261,1264440670,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+262,1,262,859892894,HFLevo,1.3,neutral,nan
+262,1,262,859892894,LevoParadoxIsomer,0.0,neutral,0.5
+263,1,263,411458685,HFLevo,0.0,neutral,nan
+263,1,263,411458685,LevoParadoxIsomer,1.3,neutral,0.5
+264,1,264,1931263994,HFLevo,0.0,neutral,nan
+264,1,264,1931263994,LevoParadoxIsomer,0.0,neutral,0.5
+265,1,265,213511530,HFLevo,2.5,neutral,nan
+265,1,265,213511530,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+266,1,266,1137608613,HFLevo,0.0,neutral,nan
+266,1,266,1137608613,LevoParadoxIsomer,0.0,neutral,0.44999998807907104
+267,1,267,843567272,HFLevo,0.0,neutral,nan
+267,1,267,843567272,LevoParadoxIsomer,0.0,neutral,0.5
+268,1,268,11175988,HFLevo,1.3,neutral,nan
+268,1,268,11175988,LevoParadoxIsomer,1.3,neutral,0.5
+269,1,269,687107894,HFLevo,0.0,neutral,nan
+269,1,269,687107894,LevoParadoxIsomer,0.0,neutral,0.5
+270,1,270,291918902,HFLevo,2.5,neutral,nan
+270,1,270,291918902,LevoParadoxIsomer,-0.8,overcautious,0.7000000476837158
+271,1,271,1087591275,HFLevo,2.5,neutral,nan
+271,1,271,1087591275,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+272,1,272,1813734633,HFLevo,2.5,neutral,nan
+272,1,272,1813734633,LevoParadoxIsomer,2.5,neutral,0.6000000238418579
+273,1,273,461816730,HFLevo,0.0,neutral,nan
+273,1,273,461816730,LevoParadoxIsomer,1.3,neutral,0.5
+274,1,274,441050625,HFLevo,1.3,neutral,nan
+274,1,274,441050625,LevoParadoxIsomer,1.3,neutral,0.5
+275,1,275,2141182885,HFLevo,1.3,neutral,nan
+275,1,275,2141182885,LevoParadoxIsomer,0.0,neutral,0.5
+276,1,276,749647573,HFLevo,0.0,neutral,nan
+276,1,276,749647573,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+277,1,277,702601389,HFLevo,0.0,neutral,nan
+277,1,277,702601389,LevoParadoxIsomer,0.0,neutral,0.5
+278,1,278,500813039,HFLevo,0.0,neutral,nan
+278,1,278,500813039,LevoParadoxIsomer,1.3,neutral,0.5
+279,1,279,1327850191,HFLevo,1.2,neutral,nan
+279,1,279,1327850191,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+280,1,280,1479353871,HFLevo,-0.8,overcautious,nan
+280,1,280,1479353871,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+281,1,281,875883029,HFLevo,2.5,neutral,nan
+281,1,281,875883029,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+282,1,282,956514865,HFLevo,-2.0,overconfident,nan
+282,1,282,956514865,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+283,1,283,140168808,HFLevo,2.5,neutral,nan
+283,1,283,140168808,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+284,1,284,2023927855,HFLevo,0.0,neutral,nan
+284,1,284,2023927855,LevoParadoxIsomer,1.3,neutral,0.5
+285,1,285,1850097089,HFLevo,0.0,neutral,nan
+285,1,285,1850097089,LevoParadoxIsomer,1.3,neutral,0.5
+286,1,286,366267895,HFLevo,0.0,neutral,nan
+286,1,286,366267895,LevoParadoxIsomer,1.3,neutral,0.5
+287,1,287,833125277,HFLevo,0.0,neutral,nan
+287,1,287,833125277,LevoParadoxIsomer,1.3,neutral,0.5
+288,1,288,1062058470,HFLevo,0.0,neutral,nan
+288,1,288,1062058470,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+289,1,289,755011055,HFLevo,1.3,neutral,nan
+289,1,289,755011055,LevoParadoxIsomer,1.3,neutral,0.5
+290,1,290,1193341725,HFLevo,1.3,neutral,nan
+290,1,290,1193341725,LevoParadoxIsomer,0.0,neutral,0.5
+291,1,291,47566427,HFLevo,0.0,neutral,nan
+291,1,291,47566427,LevoParadoxIsomer,1.3,neutral,0.5
+292,1,292,1480907230,HFLevo,0.0,neutral,nan
+292,1,292,1480907230,LevoParadoxIsomer,1.3,neutral,0.5
+293,1,293,1193747826,HFLevo,1.3,neutral,nan
+293,1,293,1193747826,LevoParadoxIsomer,1.3,neutral,0.5
+294,1,294,188056822,HFLevo,0.0,neutral,nan
+294,1,294,188056822,LevoParadoxIsomer,0.0,neutral,0.5
+295,1,295,2058188731,HFLevo,1.3,neutral,nan
+295,1,295,2058188731,LevoParadoxIsomer,0.0,neutral,0.5
+296,1,296,131903334,HFLevo,-0.8,overcautious,nan
+296,1,296,131903334,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+297,1,297,2023999375,HFLevo,0.0,neutral,nan
+297,1,297,2023999375,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+298,1,298,14284283,HFLevo,0.0,neutral,nan
+298,1,298,14284283,LevoParadoxIsomer,1.3,neutral,0.5
+299,1,299,430728515,HFLevo,0.0,neutral,nan
+299,1,299,430728515,LevoParadoxIsomer,1.3,neutral,0.5
+300,1,300,1773637227,HFLevo,1.3,neutral,nan
+300,1,300,1773637227,LevoParadoxIsomer,1.3,neutral,0.5
+301,1,301,1447643177,HFLevo,0.0,neutral,nan
+301,1,301,1447643177,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+302,1,302,980890604,HFLevo,2.5,neutral,nan
+302,1,302,980890604,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+303,1,303,1738676116,HFLevo,0.0,neutral,nan
+303,1,303,1738676116,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+304,1,304,202567723,HFLevo,0.0,neutral,nan
+304,1,304,202567723,LevoParadoxIsomer,1.3,neutral,0.5
+305,1,305,1153805088,HFLevo,0.0,neutral,nan
+305,1,305,1153805088,LevoParadoxIsomer,-2.0,overconfident,0.24999995529651642
+306,1,306,972971566,HFLevo,-2.0,overconfident,nan
+306,1,306,972971566,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+307,1,307,1472596543,HFLevo,2.5,neutral,nan
+307,1,307,1472596543,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+308,1,308,1472317967,HFLevo,1.3,neutral,nan
+308,1,308,1472317967,LevoParadoxIsomer,1.3,neutral,0.5
+309,1,309,215008918,HFLevo,0.0,neutral,nan
+309,1,309,215008918,LevoParadoxIsomer,0.0,neutral,0.5
+310,1,310,1105771947,HFLevo,1.3,neutral,nan
+310,1,310,1105771947,LevoParadoxIsomer,1.3,neutral,0.5
+311,1,311,652569339,HFLevo,1.3,neutral,nan
+311,1,311,652569339,LevoParadoxIsomer,1.3,neutral,0.5
+312,1,312,1726057777,HFLevo,2.5,neutral,nan
+312,1,312,1726057777,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+313,1,313,1485944499,HFLevo,0.0,neutral,nan
+313,1,313,1485944499,LevoParadoxIsomer,1.3,neutral,0.5
+314,1,314,294205674,HFLevo,1.3,neutral,nan
+314,1,314,294205674,LevoParadoxIsomer,1.3,neutral,0.5
+315,1,315,1016871026,HFLevo,1.2,neutral,nan
+315,1,315,1016871026,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+316,1,316,1168910589,HFLevo,1.3,neutral,nan
+316,1,316,1168910589,LevoParadoxIsomer,0.0,neutral,0.5
+317,1,317,1517292813,HFLevo,1.3,neutral,nan
+317,1,317,1517292813,LevoParadoxIsomer,0.0,neutral,0.5
+318,1,318,2030522066,HFLevo,2.5,neutral,nan
+318,1,318,2030522066,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+319,1,319,959589186,HFLevo,0.0,neutral,nan
+319,1,319,959589186,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+320,1,320,590193953,HFLevo,1.3,neutral,nan
+320,1,320,590193953,LevoParadoxIsomer,1.3,neutral,0.5
+321,1,321,675005705,HFLevo,1.3,neutral,nan
+321,1,321,675005705,LevoParadoxIsomer,1.3,neutral,0.5
+322,1,322,925232956,HFLevo,0.0,neutral,nan
+322,1,322,925232956,LevoParadoxIsomer,0.0,neutral,0.5
+323,1,323,1408472699,HFLevo,2.5,neutral,nan
+323,1,323,1408472699,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+324,1,324,859189252,HFLevo,1.3,neutral,nan
+324,1,324,859189252,LevoParadoxIsomer,0.0,neutral,0.5
+325,1,325,399323533,HFLevo,0.0,neutral,nan
+325,1,325,399323533,LevoParadoxIsomer,0.0,neutral,0.5
+326,1,326,980315658,HFLevo,-2.0,overconfident,nan
+326,1,326,980315658,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+327,1,327,123987181,HFLevo,1.2,neutral,nan
+327,1,327,123987181,LevoParadoxIsomer,-2.0,overconfident,0.44999998807907104
+328,1,328,409996997,HFLevo,1.3,neutral,nan
+328,1,328,409996997,LevoParadoxIsomer,1.3,neutral,0.5
+329,1,329,708892450,HFLevo,1.2,neutral,nan
+329,1,329,708892450,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+330,1,330,1373932302,HFLevo,0.0,neutral,nan
+330,1,330,1373932302,LevoParadoxIsomer,1.3,neutral,0.5
+331,1,331,2077742390,HFLevo,1.3,neutral,nan
+331,1,331,2077742390,LevoParadoxIsomer,1.3,neutral,0.5
+332,1,332,761108960,HFLevo,1.3,neutral,nan
+332,1,332,761108960,LevoParadoxIsomer,0.0,neutral,0.5
+333,1,333,1211512608,HFLevo,1.3,neutral,nan
+333,1,333,1211512608,LevoParadoxIsomer,0.0,neutral,0.5
+334,1,334,1884662523,HFLevo,0.0,neutral,nan
+334,1,334,1884662523,LevoParadoxIsomer,0.0,neutral,0.5
+335,1,335,2002191522,HFLevo,1.3,neutral,nan
+335,1,335,2002191522,LevoParadoxIsomer,1.3,neutral,0.5
+336,1,336,2028646946,HFLevo,0.0,neutral,nan
+336,1,336,2028646946,LevoParadoxIsomer,1.3,neutral,0.5
+337,1,337,589112024,HFLevo,1.3,neutral,nan
+337,1,337,589112024,LevoParadoxIsomer,1.3,neutral,0.5
+338,1,338,610703030,HFLevo,1.3,neutral,nan
+338,1,338,610703030,LevoParadoxIsomer,1.3,neutral,0.5
+339,1,339,972829234,HFLevo,0.0,neutral,nan
+339,1,339,972829234,LevoParadoxIsomer,1.3,neutral,0.5
+340,1,340,465154269,HFLevo,2.5,neutral,nan
+340,1,340,465154269,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+341,1,341,470901255,HFLevo,1.3,neutral,nan
+341,1,341,470901255,LevoParadoxIsomer,1.3,neutral,0.5
+342,1,342,1990213325,HFLevo,1.3,neutral,nan
+342,1,342,1990213325,LevoParadoxIsomer,0.0,neutral,0.5
+343,1,343,1646775850,HFLevo,1.3,neutral,nan
+343,1,343,1646775850,LevoParadoxIsomer,0.0,neutral,0.5
+344,1,344,1057311607,HFLevo,0.0,neutral,nan
+344,1,344,1057311607,LevoParadoxIsomer,1.3,neutral,0.5
+345,1,345,590319545,HFLevo,1.3,neutral,nan
+345,1,345,590319545,LevoParadoxIsomer,0.0,neutral,0.5
+346,1,346,516318123,HFLevo,1.3,neutral,nan
+346,1,346,516318123,LevoParadoxIsomer,0.0,neutral,0.5
+347,1,347,70890343,HFLevo,1.3,neutral,nan
+347,1,347,70890343,LevoParadoxIsomer,1.3,neutral,0.5
+348,1,348,804413128,HFLevo,2.5,neutral,nan
+348,1,348,804413128,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+349,1,349,1504695760,HFLevo,0.0,neutral,nan
+349,1,349,1504695760,LevoParadoxIsomer,1.3,neutral,0.5
+350,1,350,940669613,HFLevo,0.0,neutral,nan
+350,1,350,940669613,LevoParadoxIsomer,0.0,neutral,0.5
+351,1,351,821018278,HFLevo,1.3,neutral,nan
+351,1,351,821018278,LevoParadoxIsomer,1.3,neutral,0.5
+352,1,352,2080007758,HFLevo,2.5,neutral,nan
+352,1,352,2080007758,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+353,1,353,461373511,HFLevo,1.3,neutral,nan
+353,1,353,461373511,LevoParadoxIsomer,0.0,neutral,0.5
+354,1,354,1987269884,HFLevo,1.3,neutral,nan
+354,1,354,1987269884,LevoParadoxIsomer,0.0,neutral,0.5
+355,1,355,885162807,HFLevo,1.3,neutral,nan
+355,1,355,885162807,LevoParadoxIsomer,0.0,neutral,0.5
+356,1,356,779768070,HFLevo,1.3,neutral,nan
+356,1,356,779768070,LevoParadoxIsomer,1.3,neutral,0.5
+357,1,357,966063187,HFLevo,1.2,neutral,nan
+357,1,357,966063187,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+358,1,358,1359588046,HFLevo,1.3,neutral,nan
+358,1,358,1359588046,LevoParadoxIsomer,1.3,neutral,0.5
+359,1,359,393633121,HFLevo,1.3,neutral,nan
+359,1,359,393633121,LevoParadoxIsomer,0.0,neutral,0.5
+360,1,360,991070115,HFLevo,1.3,neutral,nan
+360,1,360,991070115,LevoParadoxIsomer,1.3,neutral,0.5
+361,1,361,1695833246,HFLevo,1.3,neutral,nan
+361,1,361,1695833246,LevoParadoxIsomer,1.3,neutral,0.5
+362,1,362,259218709,HFLevo,1.2,neutral,nan
+362,1,362,259218709,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+363,1,363,1252523270,HFLevo,1.2,neutral,nan
+363,1,363,1252523270,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+364,1,364,618943155,HFLevo,1.3,neutral,nan
+364,1,364,618943155,LevoParadoxIsomer,1.3,neutral,0.5
+365,1,365,1149281050,HFLevo,1.3,neutral,nan
+365,1,365,1149281050,LevoParadoxIsomer,1.3,neutral,0.5
+366,1,366,605383710,HFLevo,1.3,neutral,nan
+366,1,366,605383710,LevoParadoxIsomer,1.3,neutral,0.5
+367,1,367,1156676417,HFLevo,1.2,neutral,nan
+367,1,367,1156676417,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+368,1,368,988215448,HFLevo,1.3,neutral,nan
+368,1,368,988215448,LevoParadoxIsomer,1.3,neutral,0.5
+369,1,369,1630817173,HFLevo,2.5,neutral,nan
+369,1,369,1630817173,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+370,1,370,1326405127,HFLevo,1.3,neutral,nan
+370,1,370,1326405127,LevoParadoxIsomer,1.3,neutral,0.5
+371,1,371,279363521,HFLevo,1.3,neutral,nan
+371,1,371,279363521,LevoParadoxIsomer,0.0,neutral,0.5
+372,1,372,673386525,HFLevo,1.3,neutral,nan
+372,1,372,673386525,LevoParadoxIsomer,1.3,neutral,0.5
+373,1,373,1485190259,HFLevo,0.0,neutral,nan
+373,1,373,1485190259,LevoParadoxIsomer,0.0,neutral,0.5
+374,1,374,757249346,HFLevo,1.3,neutral,nan
+374,1,374,757249346,LevoParadoxIsomer,1.3,neutral,0.5
+375,1,375,2139173341,HFLevo,2.5,neutral,nan
+375,1,375,2139173341,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+376,1,376,1407830714,HFLevo,1.3,neutral,nan
+376,1,376,1407830714,LevoParadoxIsomer,1.3,neutral,0.5
+377,1,377,1328293493,HFLevo,1.2,neutral,nan
+377,1,377,1328293493,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+378,1,378,1561225140,HFLevo,1.3,neutral,nan
+378,1,378,1561225140,LevoParadoxIsomer,1.3,neutral,0.5
+379,1,379,2054053838,HFLevo,2.5,neutral,nan
+379,1,379,2054053838,LevoParadoxIsomer,2.5,neutral,0.7000000476837158
+380,1,380,1538665569,HFLevo,1.2,neutral,nan
+380,1,380,1538665569,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+381,1,381,578245576,HFLevo,1.3,neutral,nan
+381,1,381,578245576,LevoParadoxIsomer,0.0,neutral,0.5
+382,1,382,1001750142,HFLevo,1.3,neutral,nan
+382,1,382,1001750142,LevoParadoxIsomer,1.3,neutral,0.5
+383,1,383,247349919,HFLevo,1.3,neutral,nan
+383,1,383,247349919,LevoParadoxIsomer,0.0,neutral,0.5
+384,1,384,1913641746,HFLevo,1.3,neutral,nan
+384,1,384,1913641746,LevoParadoxIsomer,0.0,neutral,0.5
+385,1,385,191896624,HFLevo,2.5,neutral,nan
+385,1,385,191896624,LevoParadoxIsomer,2.5,neutral,0.7500000596046448
+386,1,386,358450787,HFLevo,0.0,neutral,nan
+386,1,386,358450787,LevoParadoxIsomer,1.3,neutral,0.5
+387,1,387,1304006934,HFLevo,0.0,neutral,nan
+387,1,387,1304006934,LevoParadoxIsomer,1.3,neutral,0.5
+388,1,388,854476003,HFLevo,0.0,neutral,nan
+388,1,388,854476003,LevoParadoxIsomer,0.0,neutral,0.5
+389,1,389,718810870,HFLevo,1.3,neutral,nan
+389,1,389,718810870,LevoParadoxIsomer,1.3,neutral,0.5
+390,1,390,2087848673,HFLevo,1.3,neutral,nan
+390,1,390,2087848673,LevoParadoxIsomer,1.3,neutral,0.5
+391,1,391,565983639,HFLevo,0.0,neutral,nan
+391,1,391,565983639,LevoParadoxIsomer,2.5,neutral,0.6500000357627869
+392,1,392,406083697,HFLevo,1.3,neutral,nan
+392,1,392,406083697,LevoParadoxIsomer,0.0,neutral,0.5
+393,1,393,1812367355,HFLevo,1.3,neutral,nan
+393,1,393,1812367355,LevoParadoxIsomer,0.0,neutral,0.5
+394,1,394,1054994518,HFLevo,0.0,neutral,nan
+394,1,394,1054994518,LevoParadoxIsomer,1.3,neutral,0.5
+395,1,395,235136936,HFLevo,1.3,neutral,nan
+395,1,395,235136936,LevoParadoxIsomer,0.0,neutral,0.5
+396,1,396,111732250,HFLevo,0.0,neutral,nan
+396,1,396,111732250,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+397,1,397,289408596,HFLevo,0.0,neutral,nan
+397,1,397,289408596,LevoParadoxIsomer,1.3,neutral,0.5
+398,1,398,1197540953,HFLevo,1.3,neutral,nan
+398,1,398,1197540953,LevoParadoxIsomer,0.0,neutral,0.5
+399,1,399,34196977,HFLevo,0.0,neutral,nan
+399,1,399,34196977,LevoParadoxIsomer,1.3,neutral,0.5
+400,2,0,2034269964,HFLevo,0.0,neutral,nan
+400,2,0,2034269964,LevoParadoxIsomer,0.8,neutral,0.5
+401,2,1,912146831,HFLevo,2.0,neutral,nan
+401,2,1,912146831,LevoParadoxIsomer,2.0,neutral,0.5
+402,2,2,144856919,HFLevo,1.2,neutral,nan
+402,2,2,144856919,LevoParadoxIsomer,-3.0,overconfident,0.5
+403,2,3,685506823,HFLevo,-3.0,overconfident,nan
+403,2,3,685506823,LevoParadoxIsomer,1.2,neutral,0.5
+404,2,4,1939181862,HFLevo,0.0,neutral,nan
+404,2,4,1939181862,LevoParadoxIsomer,0.0,neutral,0.5
+405,2,5,1502803201,HFLevo,-0.8,overcautious,nan
+405,2,5,1502803201,LevoParadoxIsomer,-0.8,overcautious,0.5
+406,2,6,1504803878,HFLevo,-3.0,overconfident,nan
+406,2,6,1504803878,LevoParadoxIsomer,-3.0,overconfident,0.5
+407,2,7,67883367,HFLevo,-0.8,overcautious,nan
+407,2,7,67883367,LevoParadoxIsomer,-0.8,overcautious,0.5
+408,2,8,235174993,HFLevo,0.0,neutral,nan
+408,2,8,235174993,LevoParadoxIsomer,0.0,neutral,0.5
+409,2,9,1767017071,HFLevo,-0.8,overcautious,nan
+409,2,9,1767017071,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+410,2,10,1195637117,HFLevo,1.2,neutral,nan
+410,2,10,1195637117,LevoParadoxIsomer,-3.0,overconfident,0.5
+411,2,11,2140388521,HFLevo,0.0,neutral,nan
+411,2,11,2140388521,LevoParadoxIsomer,0.8,neutral,0.5
+412,2,12,285128217,HFLevo,-3.0,overconfident,nan
+412,2,12,285128217,LevoParadoxIsomer,-3.0,overconfident,0.44999998807907104
+413,2,13,1297214282,HFLevo,0.8,neutral,nan
+413,2,13,1297214282,LevoParadoxIsomer,0.0,neutral,0.5
+414,2,14,2128926662,HFLevo,0.8,neutral,nan
+414,2,14,2128926662,LevoParadoxIsomer,0.8,neutral,0.5
+415,2,15,1227615478,HFLevo,0.8,neutral,nan
+415,2,15,1227615478,LevoParadoxIsomer,0.0,neutral,0.5
+416,2,16,562820587,HFLevo,0.0,neutral,nan
+416,2,16,562820587,LevoParadoxIsomer,1.2,neutral,0.44999998807907104
+417,2,17,1938965903,HFLevo,0.0,neutral,nan
+417,2,17,1938965903,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+418,2,18,1938899583,HFLevo,0.0,neutral,nan
+418,2,18,1938899583,LevoParadoxIsomer,0.0,neutral,0.5
+419,2,19,146416322,HFLevo,2.0,neutral,nan
+419,2,19,146416322,LevoParadoxIsomer,0.0,neutral,0.550000011920929
+420,2,20,2034761172,HFLevo,0.8,neutral,nan
+420,2,20,2034761172,LevoParadoxIsomer,0.0,neutral,0.5
+421,2,21,1531184118,HFLevo,0.0,neutral,nan
+421,2,21,1531184118,LevoParadoxIsomer,0.0,neutral,0.5
+422,2,22,1624823478,HFLevo,1.2,neutral,nan
+422,2,22,1624823478,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+423,2,23,1973982599,HFLevo,-0.8,overcautious,nan
+423,2,23,1973982599,LevoParadoxIsomer,2.0,neutral,0.550000011920929
+424,2,24,1433121745,HFLevo,0.8,neutral,nan
+424,2,24,1433121745,LevoParadoxIsomer,0.8,neutral,0.5
+425,2,25,269942302,HFLevo,0.0,neutral,nan
+425,2,25,269942302,LevoParadoxIsomer,2.0,neutral,0.550000011920929
+426,2,26,662577618,HFLevo,1.2,neutral,nan
+426,2,26,662577618,LevoParadoxIsomer,-3.0,overconfident,0.44999998807907104
+427,2,27,1680792863,HFLevo,0.0,neutral,nan
+427,2,27,1680792863,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+428,2,28,608196857,HFLevo,0.0,neutral,nan
+428,2,28,608196857,LevoParadoxIsomer,0.8,neutral,0.5
+429,2,29,750797946,HFLevo,0.8,neutral,nan
+429,2,29,750797946,LevoParadoxIsomer,0.8,neutral,0.5
+430,2,30,1703067462,HFLevo,0.8,neutral,nan
+430,2,30,1703067462,LevoParadoxIsomer,0.0,neutral,0.5
+431,2,31,354277540,HFLevo,0.0,neutral,nan
+431,2,31,354277540,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+432,2,32,516686757,HFLevo,0.0,neutral,nan
+432,2,32,516686757,LevoParadoxIsomer,0.0,neutral,0.5
+433,2,33,145581260,HFLevo,0.8,neutral,nan
+433,2,33,145581260,LevoParadoxIsomer,0.8,neutral,0.5
+434,2,34,1801241574,HFLevo,2.0,neutral,nan
+434,2,34,1801241574,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+435,2,35,2100309440,HFLevo,2.0,neutral,nan
+435,2,35,2100309440,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+436,2,36,1637824222,HFLevo,0.8,neutral,nan
+436,2,36,1637824222,LevoParadoxIsomer,0.8,neutral,0.5
+437,2,37,1781578254,HFLevo,0.0,neutral,nan
+437,2,37,1781578254,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+438,2,38,774535340,HFLevo,0.8,neutral,nan
+438,2,38,774535340,LevoParadoxIsomer,0.8,neutral,0.5
+439,2,39,1592536280,HFLevo,0.8,neutral,nan
+439,2,39,1592536280,LevoParadoxIsomer,0.8,neutral,0.5
+440,2,40,803715272,HFLevo,0.8,neutral,nan
+440,2,40,803715272,LevoParadoxIsomer,0.0,neutral,0.5
+441,2,41,1295445709,HFLevo,-0.8,overcautious,nan
+441,2,41,1295445709,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+442,2,42,580455628,HFLevo,0.0,neutral,nan
+442,2,42,580455628,LevoParadoxIsomer,0.8,neutral,0.5
+443,2,43,608571353,HFLevo,0.0,neutral,nan
+443,2,43,608571353,LevoParadoxIsomer,0.0,neutral,0.5
+444,2,44,220247617,HFLevo,0.0,neutral,nan
+444,2,44,220247617,LevoParadoxIsomer,0.8,neutral,0.5
+445,2,45,1007502304,HFLevo,0.8,neutral,nan
+445,2,45,1007502304,LevoParadoxIsomer,0.8,neutral,0.5
+446,2,46,1485027697,HFLevo,0.0,neutral,nan
+446,2,46,1485027697,LevoParadoxIsomer,1.2,neutral,0.3999999761581421
+447,2,47,308424123,HFLevo,0.8,neutral,nan
+447,2,47,308424123,LevoParadoxIsomer,0.8,neutral,0.5
+448,2,48,1831539103,HFLevo,0.0,neutral,nan
+448,2,48,1831539103,LevoParadoxIsomer,0.0,neutral,0.5
+449,2,49,96205481,HFLevo,0.8,neutral,nan
+449,2,49,96205481,LevoParadoxIsomer,0.0,neutral,0.5
+450,2,50,572983894,HFLevo,0.0,neutral,nan
+450,2,50,572983894,LevoParadoxIsomer,0.8,neutral,0.5
+451,2,51,1559559556,HFLevo,0.8,neutral,nan
+451,2,51,1559559556,LevoParadoxIsomer,0.0,neutral,0.5
+452,2,52,289588363,HFLevo,0.8,neutral,nan
+452,2,52,289588363,LevoParadoxIsomer,0.8,neutral,0.5
+453,2,53,1021080331,HFLevo,0.8,neutral,nan
+453,2,53,1021080331,LevoParadoxIsomer,0.0,neutral,0.5
+454,2,54,43845046,HFLevo,0.8,neutral,nan
+454,2,54,43845046,LevoParadoxIsomer,0.8,neutral,0.5
+455,2,55,1969391451,HFLevo,0.0,neutral,nan
+455,2,55,1969391451,LevoParadoxIsomer,0.0,neutral,0.5
+456,2,56,112141255,HFLevo,0.8,neutral,nan
+456,2,56,112141255,LevoParadoxIsomer,0.8,neutral,0.5
+457,2,57,407044235,HFLevo,0.0,neutral,nan
+457,2,57,407044235,LevoParadoxIsomer,0.0,neutral,0.5
+458,2,58,1413331621,HFLevo,0.8,neutral,nan
+458,2,58,1413331621,LevoParadoxIsomer,0.8,neutral,0.5
+459,2,59,1124438664,HFLevo,2.0,neutral,nan
+459,2,59,1124438664,LevoParadoxIsomer,-0.8,overcautious,0.5
+460,2,60,1823383091,HFLevo,0.0,neutral,nan
+460,2,60,1823383091,LevoParadoxIsomer,0.8,neutral,0.5
+461,2,61,1452420947,HFLevo,1.2,neutral,nan
+461,2,61,1452420947,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+462,2,62,2031250630,HFLevo,1.2,neutral,nan
+462,2,62,2031250630,LevoParadoxIsomer,-3.0,overconfident,0.44999998807907104
+463,2,63,788674418,HFLevo,0.8,neutral,nan
+463,2,63,788674418,LevoParadoxIsomer,0.0,neutral,0.5
+464,2,64,1437390327,HFLevo,0.0,neutral,nan
+464,2,64,1437390327,LevoParadoxIsomer,0.8,neutral,0.5
+465,2,65,879262169,HFLevo,2.0,neutral,nan
+465,2,65,879262169,LevoParadoxIsomer,-0.8,overcautious,0.550000011920929
+466,2,66,958652521,HFLevo,0.8,neutral,nan
+466,2,66,958652521,LevoParadoxIsomer,0.0,neutral,0.5
+467,2,67,2142602411,HFLevo,0.8,neutral,nan
+467,2,67,2142602411,LevoParadoxIsomer,0.0,neutral,0.5
+468,2,68,59947504,HFLevo,0.8,neutral,nan
+468,2,68,59947504,LevoParadoxIsomer,0.0,neutral,0.5
+469,2,69,384107305,HFLevo,0.0,neutral,nan
+469,2,69,384107305,LevoParadoxIsomer,0.8,neutral,0.5
+470,2,70,1830507375,HFLevo,0.8,neutral,nan
+470,2,70,1830507375,LevoParadoxIsomer,0.8,neutral,0.5
+471,2,71,571519169,HFLevo,0.8,neutral,nan
+471,2,71,571519169,LevoParadoxIsomer,0.0,neutral,0.5
+472,2,72,1626492832,HFLevo,0.8,neutral,nan
+472,2,72,1626492832,LevoParadoxIsomer,0.8,neutral,0.5
+473,2,73,1386853771,HFLevo,0.0,neutral,nan
+473,2,73,1386853771,LevoParadoxIsomer,0.8,neutral,0.5
+474,2,74,1706685627,HFLevo,2.0,neutral,nan
+474,2,74,1706685627,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+475,2,75,1611897310,HFLevo,2.0,neutral,nan
+475,2,75,1611897310,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+476,2,76,1751003019,HFLevo,0.0,neutral,nan
+476,2,76,1751003019,LevoParadoxIsomer,0.8,neutral,0.5
+477,2,77,1422082962,HFLevo,0.0,neutral,nan
+477,2,77,1422082962,LevoParadoxIsomer,-3.0,overconfident,0.3999999761581421
+478,2,78,1883691922,HFLevo,0.0,neutral,nan
+478,2,78,1883691922,LevoParadoxIsomer,0.8,neutral,0.5
+479,2,79,1013721795,HFLevo,0.8,neutral,nan
+479,2,79,1013721795,LevoParadoxIsomer,0.8,neutral,0.5
+480,2,80,820766304,HFLevo,0.8,neutral,nan
+480,2,80,820766304,LevoParadoxIsomer,0.8,neutral,0.5
+481,2,81,292577686,HFLevo,0.8,neutral,nan
+481,2,81,292577686,LevoParadoxIsomer,0.8,neutral,0.5
+482,2,82,1774181236,HFLevo,0.0,neutral,nan
+482,2,82,1774181236,LevoParadoxIsomer,0.0,neutral,0.5
+483,2,83,16477750,HFLevo,0.8,neutral,nan
+483,2,83,16477750,LevoParadoxIsomer,0.0,neutral,0.5
+484,2,84,270709347,HFLevo,0.8,neutral,nan
+484,2,84,270709347,LevoParadoxIsomer,0.0,neutral,0.5
+485,2,85,117649210,HFLevo,0.0,neutral,nan
+485,2,85,117649210,LevoParadoxIsomer,0.8,neutral,0.5
+486,2,86,1315442558,HFLevo,0.0,neutral,nan
+486,2,86,1315442558,LevoParadoxIsomer,0.0,neutral,0.5
+487,2,87,2057676732,HFLevo,0.0,neutral,nan
+487,2,87,2057676732,LevoParadoxIsomer,0.0,neutral,0.5
+488,2,88,211459733,HFLevo,0.8,neutral,nan
+488,2,88,211459733,LevoParadoxIsomer,0.8,neutral,0.5
+489,2,89,91146202,HFLevo,0.8,neutral,nan
+489,2,89,91146202,LevoParadoxIsomer,0.0,neutral,0.5
+490,2,90,588068454,HFLevo,0.8,neutral,nan
+490,2,90,588068454,LevoParadoxIsomer,0.0,neutral,0.5
+491,2,91,467526601,HFLevo,2.0,neutral,nan
+491,2,91,467526601,LevoParadoxIsomer,0.0,neutral,0.6000000238418579
+492,2,92,335299668,HFLevo,0.0,neutral,nan
+492,2,92,335299668,LevoParadoxIsomer,0.0,neutral,0.5
+493,2,93,779362037,HFLevo,0.8,neutral,nan
+493,2,93,779362037,LevoParadoxIsomer,0.0,neutral,0.5
+494,2,94,660339976,HFLevo,2.0,neutral,nan
+494,2,94,660339976,LevoParadoxIsomer,2.0,neutral,0.6000000238418579
+495,2,95,637136818,HFLevo,1.2,neutral,nan
+495,2,95,637136818,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+496,2,96,1999866855,HFLevo,0.8,neutral,nan
+496,2,96,1999866855,LevoParadoxIsomer,0.0,neutral,0.5
+497,2,97,139896496,HFLevo,0.8,neutral,nan
+497,2,97,139896496,LevoParadoxIsomer,0.8,neutral,0.5
+498,2,98,863743810,HFLevo,0.0,neutral,nan
+498,2,98,863743810,LevoParadoxIsomer,0.0,neutral,0.5
+499,2,99,1908673249,HFLevo,2.0,neutral,nan
+499,2,99,1908673249,LevoParadoxIsomer,-0.8,overcautious,0.6000000238418579
+500,2,100,1039141574,HFLevo,0.0,neutral,nan
+500,2,100,1039141574,LevoParadoxIsomer,0.8,neutral,0.5
+501,2,101,1051567495,HFLevo,1.2,neutral,nan
+501,2,101,1051567495,LevoParadoxIsomer,-3.0,overconfident,0.3999999761581421
+502,2,102,837394817,HFLevo,0.8,neutral,nan
+502,2,102,837394817,LevoParadoxIsomer,0.8,neutral,0.5
+503,2,103,2013481887,HFLevo,0.0,neutral,nan
+503,2,103,2013481887,LevoParadoxIsomer,0.8,neutral,0.5
+504,2,104,438355621,HFLevo,0.8,neutral,nan
+504,2,104,438355621,LevoParadoxIsomer,0.0,neutral,0.5
+505,2,105,993080718,HFLevo,0.0,neutral,nan
+505,2,105,993080718,LevoParadoxIsomer,0.8,neutral,0.5
+506,2,106,1682379032,HFLevo,0.0,neutral,nan
+506,2,106,1682379032,LevoParadoxIsomer,0.8,neutral,0.5
+507,2,107,1013432362,HFLevo,0.8,neutral,nan
+507,2,107,1013432362,LevoParadoxIsomer,0.0,neutral,0.5
+508,2,108,1856562955,HFLevo,0.0,neutral,nan
+508,2,108,1856562955,LevoParadoxIsomer,0.0,neutral,0.5
+509,2,109,1667805176,HFLevo,1.2,neutral,nan
+509,2,109,1667805176,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+510,2,110,506300911,HFLevo,0.0,neutral,nan
+510,2,110,506300911,LevoParadoxIsomer,0.8,neutral,0.5
+511,2,111,222604131,HFLevo,0.8,neutral,nan
+511,2,111,222604131,LevoParadoxIsomer,0.0,neutral,0.5
+512,2,112,804599567,HFLevo,0.0,neutral,nan
+512,2,112,804599567,LevoParadoxIsomer,0.8,neutral,0.5
+513,2,113,1492613445,HFLevo,0.0,neutral,nan
+513,2,113,1492613445,LevoParadoxIsomer,0.8,neutral,0.5
+514,2,114,552650077,HFLevo,1.2,neutral,nan
+514,2,114,552650077,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+515,2,115,930025102,HFLevo,0.0,neutral,nan
+515,2,115,930025102,LevoParadoxIsomer,0.8,neutral,0.5
+516,2,116,873459449,HFLevo,-0.8,overcautious,nan
+516,2,116,873459449,LevoParadoxIsomer,0.0,neutral,0.6500000357627869
+517,2,117,467662889,HFLevo,0.0,neutral,nan
+517,2,117,467662889,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+518,2,118,445679122,HFLevo,0.0,neutral,nan
+518,2,118,445679122,LevoParadoxIsomer,0.0,neutral,0.5
+519,2,119,1328599419,HFLevo,2.0,neutral,nan
+519,2,119,1328599419,LevoParadoxIsomer,-0.8,overcautious,0.7000000476837158
+520,2,120,1323806708,HFLevo,0.0,neutral,nan
+520,2,120,1323806708,LevoParadoxIsomer,0.0,neutral,0.5
+521,2,121,1034589592,HFLevo,0.0,neutral,nan
+521,2,121,1034589592,LevoParadoxIsomer,0.8,neutral,0.5
+522,2,122,413811598,HFLevo,0.0,neutral,nan
+522,2,122,413811598,LevoParadoxIsomer,0.8,neutral,0.5
+523,2,123,753550936,HFLevo,0.0,neutral,nan
+523,2,123,753550936,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+524,2,124,1202521986,HFLevo,0.8,neutral,nan
+524,2,124,1202521986,LevoParadoxIsomer,0.8,neutral,0.5
+525,2,125,1933381577,HFLevo,-0.8,overcautious,nan
+525,2,125,1933381577,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+526,2,126,1963329040,HFLevo,0.0,neutral,nan
+526,2,126,1963329040,LevoParadoxIsomer,0.8,neutral,0.5
+527,2,127,1399821071,HFLevo,2.0,neutral,nan
+527,2,127,1399821071,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+528,2,128,1828929971,HFLevo,-3.0,overconfident,nan
+528,2,128,1828929971,LevoParadoxIsomer,-3.0,overconfident,0.34999996423721313
+529,2,129,1100686433,HFLevo,0.0,neutral,nan
+529,2,129,1100686433,LevoParadoxIsomer,0.8,neutral,0.5
+530,2,130,423774818,HFLevo,0.0,neutral,nan
+530,2,130,423774818,LevoParadoxIsomer,0.0,neutral,0.5
+531,2,131,2047001195,HFLevo,0.0,neutral,nan
+531,2,131,2047001195,LevoParadoxIsomer,0.8,neutral,0.5
+532,2,132,127060851,HFLevo,0.8,neutral,nan
+532,2,132,127060851,LevoParadoxIsomer,0.0,neutral,0.5
+533,2,133,1430942851,HFLevo,1.2,neutral,nan
+533,2,133,1430942851,LevoParadoxIsomer,-3.0,overconfident,0.2999999523162842
+534,2,134,1194133788,HFLevo,2.0,neutral,nan
+534,2,134,1194133788,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+535,2,135,30246456,HFLevo,0.0,neutral,nan
+535,2,135,30246456,LevoParadoxIsomer,0.0,neutral,0.5
+536,2,136,1871301169,HFLevo,0.8,neutral,nan
+536,2,136,1871301169,LevoParadoxIsomer,0.0,neutral,0.5
+537,2,137,1724977905,HFLevo,1.2,neutral,nan
+537,2,137,1724977905,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+538,2,138,1717796771,HFLevo,0.0,neutral,nan
+538,2,138,1717796771,LevoParadoxIsomer,0.8,neutral,0.5
+539,2,139,1593858573,HFLevo,0.8,neutral,nan
+539,2,139,1593858573,LevoParadoxIsomer,0.0,neutral,0.5
+540,2,140,200663940,HFLevo,1.2,neutral,nan
+540,2,140,200663940,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+541,2,141,1366649604,HFLevo,0.0,neutral,nan
+541,2,141,1366649604,LevoParadoxIsomer,0.8,neutral,0.5
+542,2,142,1673519505,HFLevo,0.8,neutral,nan
+542,2,142,1673519505,LevoParadoxIsomer,0.0,neutral,0.5
+543,2,143,1177626327,HFLevo,0.8,neutral,nan
+543,2,143,1177626327,LevoParadoxIsomer,0.0,neutral,0.5
+544,2,144,262855495,HFLevo,0.8,neutral,nan
+544,2,144,262855495,LevoParadoxIsomer,0.8,neutral,0.5
+545,2,145,1035690989,HFLevo,-3.0,overconfident,nan
+545,2,145,1035690989,LevoParadoxIsomer,0.0,neutral,0.3999999761581421
+546,2,146,192999926,HFLevo,0.8,neutral,nan
+546,2,146,192999926,LevoParadoxIsomer,0.8,neutral,0.5
+547,2,147,1097961901,HFLevo,-0.8,overcautious,nan
+547,2,147,1097961901,LevoParadoxIsomer,2.0,neutral,0.6500000357627869
+548,2,148,1040646467,HFLevo,2.0,neutral,nan
+548,2,148,1040646467,LevoParadoxIsomer,0.0,neutral,0.7000000476837158
+549,2,149,1995566658,HFLevo,0.8,neutral,nan
+549,2,149,1995566658,LevoParadoxIsomer,0.8,neutral,0.5
+550,2,150,390674833,HFLevo,0.0,neutral,nan
+550,2,150,390674833,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+551,2,151,662645968,HFLevo,0.0,neutral,nan
+551,2,151,662645968,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+552,2,152,111224037,HFLevo,2.0,neutral,nan
+552,2,152,111224037,LevoParadoxIsomer,0.0,neutral,0.7000000476837158
+553,2,153,1242319339,HFLevo,0.8,neutral,nan
+553,2,153,1242319339,LevoParadoxIsomer,0.8,neutral,0.5
+554,2,154,1295579201,HFLevo,0.0,neutral,nan
+554,2,154,1295579201,LevoParadoxIsomer,0.0,neutral,0.5
+555,2,155,88079789,HFLevo,0.8,neutral,nan
+555,2,155,88079789,LevoParadoxIsomer,0.8,neutral,0.5
+556,2,156,1218832160,HFLevo,0.8,neutral,nan
+556,2,156,1218832160,LevoParadoxIsomer,0.0,neutral,0.5
+557,2,157,1199450774,HFLevo,0.0,neutral,nan
+557,2,157,1199450774,LevoParadoxIsomer,0.8,neutral,0.5
+558,2,158,93920744,HFLevo,0.8,neutral,nan
+558,2,158,93920744,LevoParadoxIsomer,0.0,neutral,0.5
+559,2,159,301211568,HFLevo,0.0,neutral,nan
+559,2,159,301211568,LevoParadoxIsomer,0.0,neutral,0.5
+560,2,160,606831608,HFLevo,0.0,neutral,nan
+560,2,160,606831608,LevoParadoxIsomer,0.8,neutral,0.5
+561,2,161,248267762,HFLevo,2.0,neutral,nan
+561,2,161,248267762,LevoParadoxIsomer,0.0,neutral,0.7500000596046448
+562,2,162,479831997,HFLevo,0.0,neutral,nan
+562,2,162,479831997,LevoParadoxIsomer,0.8,neutral,0.5
+563,2,163,443794762,HFLevo,-3.0,overconfident,nan
+563,2,163,443794762,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+564,2,164,317845088,HFLevo,0.8,neutral,nan
+564,2,164,317845088,LevoParadoxIsomer,0.8,neutral,0.5
+565,2,165,976368810,HFLevo,-3.0,overconfident,nan
+565,2,165,976368810,LevoParadoxIsomer,0.0,neutral,0.24999995529651642
+566,2,166,1096060710,HFLevo,1.2,neutral,nan
+566,2,166,1096060710,LevoParadoxIsomer,-3.0,overconfident,0.34999996423721313
+567,2,167,1786432503,HFLevo,0.0,neutral,nan
+567,2,167,1786432503,LevoParadoxIsomer,0.0,neutral,0.5
+568,2,168,92915493,HFLevo,0.8,neutral,nan
+568,2,168,92915493,LevoParadoxIsomer,0.0,neutral,0.5
+569,2,169,169421372,HFLevo,0.8,neutral,nan
+569,2,169,169421372,LevoParadoxIsomer,0.8,neutral,0.5
+570,2,170,827738447,HFLevo,2.0,neutral,nan
+570,2,170,827738447,LevoParadoxIsomer,-0.8,overcautious,0.6500000357627869
+571,2,171,91871503,HFLevo,0.0,neutral,nan
+571,2,171,91871503,LevoParadoxIsomer,0.8,neutral,0.5
+572,2,172,1181786707,HFLevo,1.2,neutral,nan
+572,2,172,1181786707,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+573,2,173,14354338,HFLevo,0.0,neutral,nan
+573,2,173,14354338,LevoParadoxIsomer,0.0,neutral,0.5
+574,2,174,2140443672,HFLevo,-3.0,overconfident,nan
+574,2,174,2140443672,LevoParadoxIsomer,-3.0,overconfident,0.3999999761581421
+575,2,175,318790932,HFLevo,2.0,neutral,nan
+575,2,175,318790932,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+576,2,176,721850175,HFLevo,-0.8,overcautious,nan
+576,2,176,721850175,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+577,2,177,1030785601,HFLevo,0.0,neutral,nan
+577,2,177,1030785601,LevoParadoxIsomer,0.0,neutral,0.5
+578,2,178,1316251630,HFLevo,-0.8,overcautious,nan
+578,2,178,1316251630,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+579,2,179,1719447051,HFLevo,0.8,neutral,nan
+579,2,179,1719447051,LevoParadoxIsomer,0.0,neutral,0.5
+580,2,180,574594100,HFLevo,0.0,neutral,nan
+580,2,180,574594100,LevoParadoxIsomer,0.0,neutral,0.5
+581,2,181,2130613154,HFLevo,0.0,neutral,nan
+581,2,181,2130613154,LevoParadoxIsomer,0.0,neutral,0.5
+582,2,182,527701015,HFLevo,0.0,neutral,nan
+582,2,182,527701015,LevoParadoxIsomer,0.0,neutral,0.5
+583,2,183,1227208042,HFLevo,1.2,neutral,nan
+583,2,183,1227208042,LevoParadoxIsomer,0.0,neutral,0.2999999523162842
+584,2,184,633972706,HFLevo,0.0,neutral,nan
+584,2,184,633972706,LevoParadoxIsomer,0.8,neutral,0.5
+585,2,185,1481264686,HFLevo,0.0,neutral,nan
+585,2,185,1481264686,LevoParadoxIsomer,0.0,neutral,0.5
+586,2,186,1403332419,HFLevo,0.0,neutral,nan
+586,2,186,1403332419,LevoParadoxIsomer,0.0,neutral,0.5
+587,2,187,573328882,HFLevo,1.2,neutral,nan
+587,2,187,573328882,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+588,2,188,896430961,HFLevo,0.0,neutral,nan
+588,2,188,896430961,LevoParadoxIsomer,0.8,neutral,0.5
+589,2,189,861308429,HFLevo,0.0,neutral,nan
+589,2,189,861308429,LevoParadoxIsomer,0.0,neutral,0.34999996423721313
+590,2,190,857542805,HFLevo,1.2,neutral,nan
+590,2,190,857542805,LevoParadoxIsomer,-3.0,overconfident,0.2999999523162842
+591,2,191,555627012,HFLevo,0.8,neutral,nan
+591,2,191,555627012,LevoParadoxIsomer,0.0,neutral,0.5
+592,2,192,883473089,HFLevo,1.2,neutral,nan
+592,2,192,883473089,LevoParadoxIsomer,-3.0,overconfident,0.24999995529651642
+593,2,193,1183906577,HFLevo,2.0,neutral,nan
+593,2,193,1183906577,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+594,2,194,1295404722,HFLevo,2.0,neutral,nan
+594,2,194,1295404722,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+595,2,195,1602782174,HFLevo,0.0,neutral,nan
+595,2,195,1602782174,LevoParadoxIsomer,0.0,neutral,0.5
+596,2,196,1168170146,HFLevo,0.8,neutral,nan
+596,2,196,1168170146,LevoParadoxIsomer,0.8,neutral,0.5
+597,2,197,247049848,HFLevo,0.0,neutral,nan
+597,2,197,247049848,LevoParadoxIsomer,0.0,neutral,0.5
+598,2,198,1217521579,HFLevo,2.0,neutral,nan
+598,2,198,1217521579,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+599,2,199,1154221074,HFLevo,1.2,neutral,nan
+599,2,199,1154221074,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+600,2,200,1039822287,HFLevo,0.0,neutral,nan
+600,2,200,1039822287,LevoParadoxIsomer,0.0,neutral,0.5
+601,2,201,403774715,HFLevo,0.8,neutral,nan
+601,2,201,403774715,LevoParadoxIsomer,0.0,neutral,0.5
+602,2,202,1937799744,HFLevo,0.8,neutral,nan
+602,2,202,1937799744,LevoParadoxIsomer,0.0,neutral,0.5
+603,2,203,1530207800,HFLevo,0.8,neutral,nan
+603,2,203,1530207800,LevoParadoxIsomer,0.8,neutral,0.5
+604,2,204,899360822,HFLevo,0.8,neutral,nan
+604,2,204,899360822,LevoParadoxIsomer,0.8,neutral,0.5
+605,2,205,839140609,HFLevo,2.0,neutral,nan
+605,2,205,839140609,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+606,2,206,2141035731,HFLevo,2.0,neutral,nan
+606,2,206,2141035731,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+607,2,207,778084307,HFLevo,1.2,neutral,nan
+607,2,207,778084307,LevoParadoxIsomer,1.2,neutral,0.24999995529651642
+608,2,208,350945807,HFLevo,0.0,neutral,nan
+608,2,208,350945807,LevoParadoxIsomer,0.0,neutral,0.5
+609,2,209,970046052,HFLevo,2.0,neutral,nan
+609,2,209,970046052,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+610,2,210,828658713,HFLevo,1.2,neutral,nan
+610,2,210,828658713,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+611,2,211,899193899,HFLevo,0.8,neutral,nan
+611,2,211,899193899,LevoParadoxIsomer,0.0,neutral,0.5
+612,2,212,1918263815,HFLevo,1.2,neutral,nan
+612,2,212,1918263815,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+613,2,213,861402774,HFLevo,0.0,neutral,nan
+613,2,213,861402774,LevoParadoxIsomer,0.0,neutral,0.5
+614,2,214,545630730,HFLevo,0.0,neutral,nan
+614,2,214,545630730,LevoParadoxIsomer,0.8,neutral,0.5
+615,2,215,1771344806,HFLevo,0.0,neutral,nan
+615,2,215,1771344806,LevoParadoxIsomer,0.0,neutral,0.5
+616,2,216,835556689,HFLevo,2.0,neutral,nan
+616,2,216,835556689,LevoParadoxIsomer,-0.8,overcautious,0.7500000596046448
+617,2,217,920739262,HFLevo,0.8,neutral,nan
+617,2,217,920739262,LevoParadoxIsomer,0.8,neutral,0.5
+618,2,218,1075133249,HFLevo,0.8,neutral,nan
+618,2,218,1075133249,LevoParadoxIsomer,0.8,neutral,0.5
+619,2,219,1466130915,HFLevo,0.8,neutral,nan
+619,2,219,1466130915,LevoParadoxIsomer,0.0,neutral,0.5
+620,2,220,1545638251,HFLevo,0.0,neutral,nan
+620,2,220,1545638251,LevoParadoxIsomer,1.2,neutral,0.34999996423721313
+621,2,221,379504837,HFLevo,0.0,neutral,nan
+621,2,221,379504837,LevoParadoxIsomer,0.8,neutral,0.5
+622,2,222,833504022,HFLevo,0.8,neutral,nan
+622,2,222,833504022,LevoParadoxIsomer,0.8,neutral,0.5
+623,2,223,1846676001,HFLevo,1.2,neutral,nan
+623,2,223,1846676001,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+624,2,224,6416948,HFLevo,0.0,neutral,nan
+624,2,224,6416948,LevoParadoxIsomer,0.0,neutral,0.5
+625,2,225,1751117666,HFLevo,0.0,neutral,nan
+625,2,225,1751117666,LevoParadoxIsomer,0.8,neutral,0.5
+626,2,226,284570123,HFLevo,0.0,neutral,nan
+626,2,226,284570123,LevoParadoxIsomer,0.8,neutral,0.5
+627,2,227,189352376,HFLevo,0.0,neutral,nan
+627,2,227,189352376,LevoParadoxIsomer,0.8,neutral,0.5
+628,2,228,1370043294,HFLevo,0.0,neutral,nan
+628,2,228,1370043294,LevoParadoxIsomer,0.8,neutral,0.5
+629,2,229,1967776583,HFLevo,0.0,neutral,nan
+629,2,229,1967776583,LevoParadoxIsomer,0.8,neutral,0.5
+630,2,230,1013942334,HFLevo,0.8,neutral,nan
+630,2,230,1013942334,LevoParadoxIsomer,0.8,neutral,0.5
+631,2,231,600184202,HFLevo,0.0,neutral,nan
+631,2,231,600184202,LevoParadoxIsomer,0.0,neutral,0.5
+632,2,232,2085636407,HFLevo,0.8,neutral,nan
+632,2,232,2085636407,LevoParadoxIsomer,0.8,neutral,0.5
+633,2,233,328848547,HFLevo,0.8,neutral,nan
+633,2,233,328848547,LevoParadoxIsomer,0.0,neutral,0.5
+634,2,234,63425983,HFLevo,2.0,neutral,nan
+634,2,234,63425983,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+635,2,235,531264304,HFLevo,0.0,neutral,nan
+635,2,235,531264304,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+636,2,236,1531168957,HFLevo,0.8,neutral,nan
+636,2,236,1531168957,LevoParadoxIsomer,0.8,neutral,0.5
+637,2,237,1789312949,HFLevo,2.0,neutral,nan
+637,2,237,1789312949,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+638,2,238,1084402395,HFLevo,0.8,neutral,nan
+638,2,238,1084402395,LevoParadoxIsomer,0.0,neutral,0.5
+639,2,239,1545622175,HFLevo,0.8,neutral,nan
+639,2,239,1545622175,LevoParadoxIsomer,0.8,neutral,0.5
+640,2,240,999431888,HFLevo,0.0,neutral,nan
+640,2,240,999431888,LevoParadoxIsomer,0.8,neutral,0.5
+641,2,241,1725426490,HFLevo,0.8,neutral,nan
+641,2,241,1725426490,LevoParadoxIsomer,0.8,neutral,0.5
+642,2,242,669407095,HFLevo,0.8,neutral,nan
+642,2,242,669407095,LevoParadoxIsomer,0.8,neutral,0.5
+643,2,243,1417993163,HFLevo,0.0,neutral,nan
+643,2,243,1417993163,LevoParadoxIsomer,0.0,neutral,0.5
+644,2,244,1057045593,HFLevo,0.0,neutral,nan
+644,2,244,1057045593,LevoParadoxIsomer,0.8,neutral,0.5
+645,2,245,1380890934,HFLevo,0.8,neutral,nan
+645,2,245,1380890934,LevoParadoxIsomer,0.0,neutral,0.5
+646,2,246,238129855,HFLevo,0.0,neutral,nan
+646,2,246,238129855,LevoParadoxIsomer,0.8,neutral,0.5
+647,2,247,1486485713,HFLevo,0.8,neutral,nan
+647,2,247,1486485713,LevoParadoxIsomer,0.8,neutral,0.5
+648,2,248,30716145,HFLevo,0.0,neutral,nan
+648,2,248,30716145,LevoParadoxIsomer,0.8,neutral,0.5
+649,2,249,1615261593,HFLevo,0.0,neutral,nan
+649,2,249,1615261593,LevoParadoxIsomer,0.0,neutral,0.5
+650,2,250,2052819092,HFLevo,0.0,neutral,nan
+650,2,250,2052819092,LevoParadoxIsomer,0.8,neutral,0.5
+651,2,251,11185487,HFLevo,0.8,neutral,nan
+651,2,251,11185487,LevoParadoxIsomer,0.8,neutral,0.5
+652,2,252,928000143,HFLevo,-0.8,overcautious,nan
+652,2,252,928000143,LevoParadoxIsomer,-0.8,overcautious,0.8000000715255737
+653,2,253,2023963770,HFLevo,-3.0,overconfident,nan
+653,2,253,2023963770,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+654,2,254,1301736393,HFLevo,0.0,neutral,nan
+654,2,254,1301736393,LevoParadoxIsomer,0.8,neutral,0.5
+655,2,255,398352915,HFLevo,0.8,neutral,nan
+655,2,255,398352915,LevoParadoxIsomer,0.8,neutral,0.5
+656,2,256,299104752,HFLevo,0.8,neutral,nan
+656,2,256,299104752,LevoParadoxIsomer,0.8,neutral,0.5
+657,2,257,1900619662,HFLevo,2.0,neutral,nan
+657,2,257,1900619662,LevoParadoxIsomer,2.0,neutral,0.8500000834465027
+658,2,258,402834001,HFLevo,0.0,neutral,nan
+658,2,258,402834001,LevoParadoxIsomer,-3.0,overconfident,0.24999995529651642
+659,2,259,618191185,HFLevo,-3.0,overconfident,nan
+659,2,259,618191185,LevoParadoxIsomer,1.2,neutral,0.19999995827674866
+660,2,260,1107226955,HFLevo,2.0,neutral,nan
+660,2,260,1107226955,LevoParadoxIsomer,-0.8,overcautious,0.7000000476837158
+661,2,261,1079996997,HFLevo,0.8,neutral,nan
+661,2,261,1079996997,LevoParadoxIsomer,0.0,neutral,0.5
+662,2,262,1090799708,HFLevo,-0.8,overcautious,nan
+662,2,262,1090799708,LevoParadoxIsomer,2.0,neutral,0.8500000834465027
+663,2,263,614807561,HFLevo,1.2,neutral,nan
+663,2,263,614807561,LevoParadoxIsomer,0.0,neutral,0.19999995827674866
+664,2,264,1110540374,HFLevo,0.0,neutral,nan
+664,2,264,1110540374,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+665,2,265,230358128,HFLevo,0.0,neutral,nan
+665,2,265,230358128,LevoParadoxIsomer,0.0,neutral,0.5
+666,2,266,1307025172,HFLevo,0.8,neutral,nan
+666,2,266,1307025172,LevoParadoxIsomer,0.8,neutral,0.5
+667,2,267,2128513208,HFLevo,0.0,neutral,nan
+667,2,267,2128513208,LevoParadoxIsomer,-3.0,overconfident,0.19999995827674866
+668,2,268,1813190214,HFLevo,0.0,neutral,nan
+668,2,268,1813190214,LevoParadoxIsomer,-3.0,overconfident,0.19999995827674866
+669,2,269,427517589,HFLevo,2.0,neutral,nan
+669,2,269,427517589,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+670,2,270,971704768,HFLevo,0.0,neutral,nan
+670,2,270,971704768,LevoParadoxIsomer,0.8,neutral,0.5
+671,2,271,379120844,HFLevo,0.8,neutral,nan
+671,2,271,379120844,LevoParadoxIsomer,0.8,neutral,0.5
+672,2,272,366674027,HFLevo,2.0,neutral,nan
+672,2,272,366674027,LevoParadoxIsomer,2.0,neutral,0.7500000596046448
+673,2,273,1267589757,HFLevo,0.0,neutral,nan
+673,2,273,1267589757,LevoParadoxIsomer,0.0,neutral,0.5
+674,2,274,397609752,HFLevo,0.0,neutral,nan
+674,2,274,397609752,LevoParadoxIsomer,0.0,neutral,0.5
+675,2,275,544583423,HFLevo,0.8,neutral,nan
+675,2,275,544583423,LevoParadoxIsomer,0.0,neutral,0.5
+676,2,276,1765101426,HFLevo,0.0,neutral,nan
+676,2,276,1765101426,LevoParadoxIsomer,0.8,neutral,0.5
+677,2,277,569693597,HFLevo,2.0,neutral,nan
+677,2,277,569693597,LevoParadoxIsomer,-0.8,overcautious,0.8500000834465027
+678,2,278,189460983,HFLevo,0.0,neutral,nan
+678,2,278,189460983,LevoParadoxIsomer,0.0,neutral,0.5
+679,2,279,505940532,HFLevo,0.8,neutral,nan
+679,2,279,505940532,LevoParadoxIsomer,0.0,neutral,0.5
+680,2,280,961700536,HFLevo,-3.0,overconfident,nan
+680,2,280,961700536,LevoParadoxIsomer,-3.0,overconfident,0.34999996423721313
+681,2,281,932456279,HFLevo,2.0,neutral,nan
+681,2,281,932456279,LevoParadoxIsomer,-0.8,overcautious,0.7500000596046448
+682,2,282,390287427,HFLevo,2.0,neutral,nan
+682,2,282,390287427,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+683,2,283,297976648,HFLevo,2.0,neutral,nan
+683,2,283,297976648,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+684,2,284,436098708,HFLevo,0.8,neutral,nan
+684,2,284,436098708,LevoParadoxIsomer,0.0,neutral,0.5
+685,2,285,794629335,HFLevo,2.0,neutral,nan
+685,2,285,794629335,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+686,2,286,1214082779,HFLevo,0.0,neutral,nan
+686,2,286,1214082779,LevoParadoxIsomer,0.8,neutral,0.5
+687,2,287,1935214602,HFLevo,2.0,neutral,nan
+687,2,287,1935214602,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+688,2,288,284248471,HFLevo,0.8,neutral,nan
+688,2,288,284248471,LevoParadoxIsomer,0.0,neutral,0.5
+689,2,289,1230641234,HFLevo,0.0,neutral,nan
+689,2,289,1230641234,LevoParadoxIsomer,0.8,neutral,0.5
+690,2,290,388858966,HFLevo,2.0,neutral,nan
+690,2,290,388858966,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+691,2,291,1021791854,HFLevo,2.0,neutral,nan
+691,2,291,1021791854,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+692,2,292,603303402,HFLevo,0.0,neutral,nan
+692,2,292,603303402,LevoParadoxIsomer,0.8,neutral,0.5
+693,2,293,862608619,HFLevo,0.0,neutral,nan
+693,2,293,862608619,LevoParadoxIsomer,0.0,neutral,0.5
+694,2,294,1651871421,HFLevo,0.8,neutral,nan
+694,2,294,1651871421,LevoParadoxIsomer,0.0,neutral,0.5
+695,2,295,2051444313,HFLevo,0.0,neutral,nan
+695,2,295,2051444313,LevoParadoxIsomer,0.8,neutral,0.5
+696,2,296,144628230,HFLevo,0.0,neutral,nan
+696,2,296,144628230,LevoParadoxIsomer,0.8,neutral,0.5
+697,2,297,1520429634,HFLevo,0.8,neutral,nan
+697,2,297,1520429634,LevoParadoxIsomer,0.0,neutral,0.5
+698,2,298,881109934,HFLevo,0.0,neutral,nan
+698,2,298,881109934,LevoParadoxIsomer,0.8,neutral,0.5
+699,2,299,1255956995,HFLevo,0.0,neutral,nan
+699,2,299,1255956995,LevoParadoxIsomer,0.0,neutral,0.5
+700,2,300,208230768,HFLevo,0.8,neutral,nan
+700,2,300,208230768,LevoParadoxIsomer,0.8,neutral,0.5
+701,2,301,1460257335,HFLevo,0.0,neutral,nan
+701,2,301,1460257335,LevoParadoxIsomer,0.0,neutral,0.5
+702,2,302,1011782590,HFLevo,0.8,neutral,nan
+702,2,302,1011782590,LevoParadoxIsomer,0.8,neutral,0.5
+703,2,303,1789340557,HFLevo,2.0,neutral,nan
+703,2,303,1789340557,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+704,2,304,1869217819,HFLevo,0.8,neutral,nan
+704,2,304,1869217819,LevoParadoxIsomer,0.8,neutral,0.5
+705,2,305,1673802110,HFLevo,0.8,neutral,nan
+705,2,305,1673802110,LevoParadoxIsomer,0.8,neutral,0.5
+706,2,306,62463393,HFLevo,2.0,neutral,nan
+706,2,306,62463393,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+707,2,307,2074841997,HFLevo,1.2,neutral,nan
+707,2,307,2074841997,LevoParadoxIsomer,0.0,neutral,0.1499999612569809
+708,2,308,1764116324,HFLevo,1.2,neutral,nan
+708,2,308,1764116324,LevoParadoxIsomer,0.0,neutral,0.2999999523162842
+709,2,309,1361763883,HFLevo,1.2,neutral,nan
+709,2,309,1361763883,LevoParadoxIsomer,0.0,neutral,0.2999999523162842
+710,2,310,2068149571,HFLevo,0.0,neutral,nan
+710,2,310,2068149571,LevoParadoxIsomer,0.0,neutral,0.5
+711,2,311,1761270974,HFLevo,0.8,neutral,nan
+711,2,311,1761270974,LevoParadoxIsomer,0.8,neutral,0.5
+712,2,312,1610445955,HFLevo,0.8,neutral,nan
+712,2,312,1610445955,LevoParadoxIsomer,0.0,neutral,0.5
+713,2,313,527574022,HFLevo,0.0,neutral,nan
+713,2,313,527574022,LevoParadoxIsomer,0.8,neutral,0.5
+714,2,314,1948416385,HFLevo,0.0,neutral,nan
+714,2,314,1948416385,LevoParadoxIsomer,0.0,neutral,0.5
+715,2,315,842515162,HFLevo,1.2,neutral,nan
+715,2,315,842515162,LevoParadoxIsomer,-3.0,overconfident,0.1499999612569809
+716,2,316,728127582,HFLevo,0.8,neutral,nan
+716,2,316,728127582,LevoParadoxIsomer,0.8,neutral,0.5
+717,2,317,1807809684,HFLevo,2.0,neutral,nan
+717,2,317,1807809684,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+718,2,318,1911608906,HFLevo,0.8,neutral,nan
+718,2,318,1911608906,LevoParadoxIsomer,0.0,neutral,0.5
+719,2,319,507860031,HFLevo,0.0,neutral,nan
+719,2,319,507860031,LevoParadoxIsomer,0.0,neutral,0.5
+720,2,320,1559660249,HFLevo,0.8,neutral,nan
+720,2,320,1559660249,LevoParadoxIsomer,0.8,neutral,0.5
+721,2,321,817113483,HFLevo,0.0,neutral,nan
+721,2,321,817113483,LevoParadoxIsomer,0.0,neutral,0.5
+722,2,322,181612330,HFLevo,0.8,neutral,nan
+722,2,322,181612330,LevoParadoxIsomer,0.8,neutral,0.5
+723,2,323,330146939,HFLevo,0.0,neutral,nan
+723,2,323,330146939,LevoParadoxIsomer,0.8,neutral,0.5
+724,2,324,1451519916,HFLevo,0.0,neutral,nan
+724,2,324,1451519916,LevoParadoxIsomer,0.8,neutral,0.5
+725,2,325,429715005,HFLevo,0.0,neutral,nan
+725,2,325,429715005,LevoParadoxIsomer,0.8,neutral,0.5
+726,2,326,1836744305,HFLevo,2.0,neutral,nan
+726,2,326,1836744305,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+727,2,327,200999922,HFLevo,0.8,neutral,nan
+727,2,327,200999922,LevoParadoxIsomer,0.8,neutral,0.5
+728,2,328,686960989,HFLevo,1.2,neutral,nan
+728,2,328,686960989,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+729,2,329,2137759524,HFLevo,0.0,neutral,nan
+729,2,329,2137759524,LevoParadoxIsomer,0.0,neutral,0.5
+730,2,330,48470119,HFLevo,0.0,neutral,nan
+730,2,330,48470119,LevoParadoxIsomer,0.0,neutral,0.5
+731,2,331,1429722682,HFLevo,0.0,neutral,nan
+731,2,331,1429722682,LevoParadoxIsomer,0.0,neutral,0.5
+732,2,332,218074447,HFLevo,0.0,neutral,nan
+732,2,332,218074447,LevoParadoxIsomer,0.0,neutral,0.5
+733,2,333,2104545774,HFLevo,0.0,neutral,nan
+733,2,333,2104545774,LevoParadoxIsomer,0.0,neutral,0.5
+734,2,334,1816453390,HFLevo,0.0,neutral,nan
+734,2,334,1816453390,LevoParadoxIsomer,0.0,neutral,0.5
+735,2,335,639577193,HFLevo,0.8,neutral,nan
+735,2,335,639577193,LevoParadoxIsomer,0.0,neutral,0.5
+736,2,336,231860645,HFLevo,1.2,neutral,nan
+736,2,336,231860645,LevoParadoxIsomer,1.2,neutral,0.09999996423721313
+737,2,337,1142197128,HFLevo,0.0,neutral,nan
+737,2,337,1142197128,LevoParadoxIsomer,0.0,neutral,0.5
+738,2,338,1321680746,HFLevo,0.8,neutral,nan
+738,2,338,1321680746,LevoParadoxIsomer,0.8,neutral,0.5
+739,2,339,1746554905,HFLevo,0.0,neutral,nan
+739,2,339,1746554905,LevoParadoxIsomer,0.8,neutral,0.5
+740,2,340,396707811,HFLevo,0.0,neutral,nan
+740,2,340,396707811,LevoParadoxIsomer,0.8,neutral,0.5
+741,2,341,491514850,HFLevo,0.8,neutral,nan
+741,2,341,491514850,LevoParadoxIsomer,0.8,neutral,0.5
+742,2,342,461674718,HFLevo,2.0,neutral,nan
+742,2,342,461674718,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+743,2,343,1701500925,HFLevo,0.8,neutral,nan
+743,2,343,1701500925,LevoParadoxIsomer,0.0,neutral,0.5
+744,2,344,1344298913,HFLevo,0.8,neutral,nan
+744,2,344,1344298913,LevoParadoxIsomer,0.0,neutral,0.5
+745,2,345,1354823084,HFLevo,0.8,neutral,nan
+745,2,345,1354823084,LevoParadoxIsomer,0.0,neutral,0.5
+746,2,346,118160105,HFLevo,1.2,neutral,nan
+746,2,346,118160105,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+747,2,347,1044584312,HFLevo,0.8,neutral,nan
+747,2,347,1044584312,LevoParadoxIsomer,0.0,neutral,0.5
+748,2,348,1524392230,HFLevo,1.2,neutral,nan
+748,2,348,1524392230,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+749,2,349,428869864,HFLevo,0.8,neutral,nan
+749,2,349,428869864,LevoParadoxIsomer,0.8,neutral,0.5
+750,2,350,180994417,HFLevo,0.0,neutral,nan
+750,2,350,180994417,LevoParadoxIsomer,0.0,neutral,0.5
+751,2,351,885019589,HFLevo,0.8,neutral,nan
+751,2,351,885019589,LevoParadoxIsomer,0.8,neutral,0.5
+752,2,352,1231928222,HFLevo,0.8,neutral,nan
+752,2,352,1231928222,LevoParadoxIsomer,0.8,neutral,0.5
+753,2,353,1670237802,HFLevo,0.8,neutral,nan
+753,2,353,1670237802,LevoParadoxIsomer,0.8,neutral,0.5
+754,2,354,1414482049,HFLevo,0.0,neutral,nan
+754,2,354,1414482049,LevoParadoxIsomer,0.0,neutral,0.5
+755,2,355,1971477631,HFLevo,2.0,neutral,nan
+755,2,355,1971477631,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+756,2,356,883215094,HFLevo,-3.0,overconfident,nan
+756,2,356,883215094,LevoParadoxIsomer,1.2,neutral,0.09999996423721313
+757,2,357,343285816,HFLevo,1.2,neutral,nan
+757,2,357,343285816,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+758,2,358,1993664325,HFLevo,0.0,neutral,nan
+758,2,358,1993664325,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+759,2,359,538994041,HFLevo,0.0,neutral,nan
+759,2,359,538994041,LevoParadoxIsomer,0.8,neutral,0.5
+760,2,360,365720817,HFLevo,2.0,neutral,nan
+760,2,360,365720817,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+761,2,361,1931073180,HFLevo,0.0,neutral,nan
+761,2,361,1931073180,LevoParadoxIsomer,0.8,neutral,0.5
+762,2,362,330654991,HFLevo,0.0,neutral,nan
+762,2,362,330654991,LevoParadoxIsomer,0.0,neutral,0.5
+763,2,363,2117986561,HFLevo,-3.0,overconfident,nan
+763,2,363,2117986561,LevoParadoxIsomer,1.2,neutral,0.1499999612569809
+764,2,364,1745610389,HFLevo,2.0,neutral,nan
+764,2,364,1745610389,LevoParadoxIsomer,2.0,neutral,0.7000000476837158
+765,2,365,1935491097,HFLevo,0.8,neutral,nan
+765,2,365,1935491097,LevoParadoxIsomer,0.0,neutral,0.5
+766,2,366,816460352,HFLevo,0.8,neutral,nan
+766,2,366,816460352,LevoParadoxIsomer,0.8,neutral,0.5
+767,2,367,2034287239,HFLevo,0.0,neutral,nan
+767,2,367,2034287239,LevoParadoxIsomer,0.8,neutral,0.5
+768,2,368,1494357375,HFLevo,0.8,neutral,nan
+768,2,368,1494357375,LevoParadoxIsomer,0.0,neutral,0.5
+769,2,369,525099930,HFLevo,0.8,neutral,nan
+769,2,369,525099930,LevoParadoxIsomer,0.0,neutral,0.5
+770,2,370,461861420,HFLevo,0.8,neutral,nan
+770,2,370,461861420,LevoParadoxIsomer,0.8,neutral,0.5
+771,2,371,424434369,HFLevo,0.0,neutral,nan
+771,2,371,424434369,LevoParadoxIsomer,0.0,neutral,0.5
+772,2,372,1696040440,HFLevo,2.0,neutral,nan
+772,2,372,1696040440,LevoParadoxIsomer,2.0,neutral,0.8000000715255737
+773,2,373,1327732050,HFLevo,0.0,neutral,nan
+773,2,373,1327732050,LevoParadoxIsomer,0.0,neutral,0.5
+774,2,374,1275639253,HFLevo,0.8,neutral,nan
+774,2,374,1275639253,LevoParadoxIsomer,0.8,neutral,0.5
+775,2,375,180175624,HFLevo,0.8,neutral,nan
+775,2,375,180175624,LevoParadoxIsomer,0.0,neutral,0.5
+776,2,376,853325992,HFLevo,0.0,neutral,nan
+776,2,376,853325992,LevoParadoxIsomer,1.2,neutral,0.1499999612569809
+777,2,377,35314844,HFLevo,0.8,neutral,nan
+777,2,377,35314844,LevoParadoxIsomer,0.0,neutral,0.5
+778,2,378,512421119,HFLevo,2.0,neutral,nan
+778,2,378,512421119,LevoParadoxIsomer,2.0,neutral,0.9000000953674316
+779,2,379,1818877815,HFLevo,0.8,neutral,nan
+779,2,379,1818877815,LevoParadoxIsomer,0.8,neutral,0.5
+780,2,380,244612068,HFLevo,0.8,neutral,nan
+780,2,380,244612068,LevoParadoxIsomer,0.8,neutral,0.5
+781,2,381,438090890,HFLevo,0.0,neutral,nan
+781,2,381,438090890,LevoParadoxIsomer,0.8,neutral,0.5
+782,2,382,71908212,HFLevo,0.8,neutral,nan
+782,2,382,71908212,LevoParadoxIsomer,0.8,neutral,0.5
+783,2,383,763979621,HFLevo,0.8,neutral,nan
+783,2,383,763979621,LevoParadoxIsomer,0.0,neutral,0.5
+784,2,384,492409950,HFLevo,0.8,neutral,nan
+784,2,384,492409950,LevoParadoxIsomer,0.8,neutral,0.5
+785,2,385,1939330706,HFLevo,-3.0,overconfident,nan
+785,2,385,1939330706,LevoParadoxIsomer,1.2,neutral,0.2999999523162842
+786,2,386,304266562,HFLevo,0.8,neutral,nan
+786,2,386,304266562,LevoParadoxIsomer,0.8,neutral,0.5
+787,2,387,1839152413,HFLevo,0.0,neutral,nan
+787,2,387,1839152413,LevoParadoxIsomer,0.8,neutral,0.5
+788,2,388,1584964798,HFLevo,0.8,neutral,nan
+788,2,388,1584964798,LevoParadoxIsomer,0.0,neutral,0.5
+789,2,389,1705345529,HFLevo,0.0,neutral,nan
+789,2,389,1705345529,LevoParadoxIsomer,0.0,neutral,0.5
+790,2,390,530680927,HFLevo,0.0,neutral,nan
+790,2,390,530680927,LevoParadoxIsomer,-0.8,overcautious,0.8000000715255737
+791,2,391,601158382,HFLevo,1.2,neutral,nan
+791,2,391,601158382,LevoParadoxIsomer,-3.0,overconfident,0.09999996423721313
+792,2,392,661312537,HFLevo,0.8,neutral,nan
+792,2,392,661312537,LevoParadoxIsomer,0.0,neutral,0.5
+793,2,393,1099910893,HFLevo,0.0,neutral,nan
+793,2,393,1099910893,LevoParadoxIsomer,0.8,neutral,0.5
+794,2,394,1777836792,HFLevo,-3.0,overconfident,nan
+794,2,394,1777836792,LevoParadoxIsomer,-3.0,overconfident,0.049999963492155075
+795,2,395,320819501,HFLevo,0.0,neutral,nan
+795,2,395,320819501,LevoParadoxIsomer,0.8,neutral,0.5
+796,2,396,1262930064,HFLevo,0.8,neutral,nan
+796,2,396,1262930064,LevoParadoxIsomer,0.8,neutral,0.5
+797,2,397,1476382876,HFLevo,0.0,neutral,nan
+797,2,397,1476382876,LevoParadoxIsomer,0.0,neutral,0.5
+798,2,398,229480971,HFLevo,0.8,neutral,nan
+798,2,398,229480971,LevoParadoxIsomer,0.8,neutral,0.5
+799,2,399,1346765522,HFLevo,0.8,neutral,nan
+799,2,399,1346765522,LevoParadoxIsomer,0.8,neutral,0.5
+800,3,0,1015467875,HFLevo,1.2902930843845795,neutral,nan
+800,3,0,1015467875,LevoParadoxIsomer,0.49029308438457947,neutral,0.5
+801,3,1,871703027,HFLevo,0.2583186351063763,neutral,nan
+801,3,1,871703027,LevoParadoxIsomer,0.2583186351063763,neutral,0.5
+802,3,2,1121193219,HFLevo,-0.9285687801394484,overcautious,nan
+802,3,2,1121193219,LevoParadoxIsomer,-0.9285687801394484,overcautious,0.5
+803,3,3,1844331605,HFLevo,1.268712954493355,neutral,nan
+803,3,3,1844331605,LevoParadoxIsomer,2.068712954493355,neutral,0.5
+804,3,4,376821421,HFLevo,-2.1540989698282287,overconfident,nan
+804,3,4,376821421,LevoParadoxIsomer,1.0459010301717713,neutral,0.5
+805,3,5,1528947293,HFLevo,1.9236203197456223,neutral,nan
+805,3,5,1528947293,LevoParadoxIsomer,0.7236203197456224,neutral,0.5
+806,3,6,1457385050,HFLevo,-0.388878696540991,neutral,nan
+806,3,6,1457385050,LevoParadoxIsomer,-0.388878696540991,neutral,0.5
+807,3,7,1930833205,HFLevo,1.8947708652049988,neutral,nan
+807,3,7,1930833205,LevoParadoxIsomer,1.8947708652049988,neutral,0.5
+808,3,8,331658631,HFLevo,-0.34637226145235095,overcautious,nan
+808,3,8,331658631,LevoParadoxIsomer,2.4536277385476493,neutral,0.5
+809,3,9,1392760183,HFLevo,-1.7470900488231007,overconfident,nan
+809,3,9,1392760183,LevoParadoxIsomer,-1.7470900488231007,overconfident,0.5
+810,3,10,1410154195,HFLevo,-0.424961650515833,neutral,nan
+810,3,10,1410154195,LevoParadoxIsomer,0.37503834948416703,neutral,0.5
+811,3,11,1330897656,HFLevo,0.7046013636486836,neutral,nan
+811,3,11,1330897656,LevoParadoxIsomer,-1.2953986363513164,overconfident,0.5
+812,3,12,755426389,HFLevo,0.7155068417757497,neutral,nan
+812,3,12,755426389,LevoParadoxIsomer,0.7155068417757497,neutral,0.5
+813,3,13,478344337,HFLevo,0.5966519575139582,neutral,nan
+813,3,13,478344337,LevoParadoxIsomer,0.5966519575139582,neutral,0.5
+814,3,14,2135473267,HFLevo,-0.321538017298501,neutral,nan
+814,3,14,2135473267,LevoParadoxIsomer,-0.321538017298501,neutral,0.5
+815,3,15,1381920965,HFLevo,-0.8946149359899849,neutral,nan
+815,3,15,1381920965,LevoParadoxIsomer,-0.8946149359899849,neutral,0.5
+816,3,16,790353978,HFLevo,0.005089675891585976,neutral,nan
+816,3,16,790353978,LevoParadoxIsomer,0.005089675891585976,neutral,0.5
+817,3,17,886917887,HFLevo,1.1565439534575777,neutral,nan
+817,3,17,886917887,LevoParadoxIsomer,1.1565439534575777,neutral,0.44999998807907104
+818,3,18,1326287162,HFLevo,1.1505608969734533,neutral,nan
+818,3,18,1326287162,LevoParadoxIsomer,1.1505608969734533,neutral,0.5
+819,3,19,132467973,HFLevo,0.7640856467236494,neutral,nan
+819,3,19,132467973,LevoParadoxIsomer,-2.4359143532763508,overconfident,0.44999998807907104
+820,3,20,896694920,HFLevo,-0.16856310825832727,neutral,nan
+820,3,20,896694920,LevoParadoxIsomer,0.6314368917416728,neutral,0.5
+821,3,21,265295982,HFLevo,0.472286750236512,neutral,nan
+821,3,21,265295982,LevoParadoxIsomer,-0.32771324976348803,neutral,0.5
+822,3,22,188123431,HFLevo,0.7270211373649718,neutral,nan
+822,3,22,188123431,LevoParadoxIsomer,0.7270211373649718,neutral,0.5
+823,3,23,1385912200,HFLevo,-0.2257286159489377,neutral,nan
+823,3,23,1385912200,LevoParadoxIsomer,-0.2257286159489377,neutral,0.5
+824,3,24,449987729,HFLevo,-0.6492071611207221,overcautious,nan
+824,3,24,449987729,LevoParadoxIsomer,-0.6492071611207221,overcautious,0.5
+825,3,25,593302824,HFLevo,1.1549840686447408,neutral,nan
+825,3,25,593302824,LevoParadoxIsomer,-0.045015931355259255,neutral,0.44999998807907104
+826,3,26,194879931,HFLevo,0.17815411284413574,neutral,nan
+826,3,26,194879931,LevoParadoxIsomer,0.9781541128441358,neutral,0.5
+827,3,27,1758518115,HFLevo,0.24558567387383792,neutral,nan
+827,3,27,1758518115,LevoParadoxIsomer,0.24558567387383792,neutral,0.5
+828,3,28,1545311517,HFLevo,0.1627856125489353,neutral,nan
+828,3,28,1545311517,LevoParadoxIsomer,0.1627856125489353,neutral,0.5
+829,3,29,562603550,HFLevo,0.4183364147364109,neutral,nan
+829,3,29,562603550,LevoParadoxIsomer,1.2183364147364109,neutral,0.5
+830,3,30,1059808449,HFLevo,1.2917831804345576,neutral,nan
+830,3,30,1059808449,LevoParadoxIsomer,1.2917831804345576,neutral,0.5
+831,3,31,614383066,HFLevo,0.8163422218854106,neutral,nan
+831,3,31,614383066,LevoParadoxIsomer,0.016342221885410586,neutral,0.5
+832,3,32,1192512057,HFLevo,0.25576402304424295,neutral,nan
+832,3,32,1192512057,LevoParadoxIsomer,0.25576402304424295,neutral,0.5
+833,3,33,950581637,HFLevo,-0.8977958223217277,neutral,nan
+833,3,33,950581637,LevoParadoxIsomer,-0.09779582232172768,neutral,0.5
+834,3,34,1863772308,HFLevo,1.253089981409791,neutral,nan
+834,3,34,1863772308,LevoParadoxIsomer,0.45308998140979106,neutral,0.5
+835,3,35,1007304414,HFLevo,0.5254077508874286,neutral,nan
+835,3,35,1007304414,LevoParadoxIsomer,0.5254077508874286,neutral,0.5
+836,3,36,809066309,HFLevo,1.688901367855694,neutral,nan
+836,3,36,809066309,LevoParadoxIsomer,1.688901367855694,neutral,0.550000011920929
+837,3,37,1514006645,HFLevo,0.8581530848584542,neutral,nan
+837,3,37,1514006645,LevoParadoxIsomer,0.8581530848584542,neutral,0.44999998807907104
+838,3,38,1146495174,HFLevo,-1.0942163006184566,neutral,nan
+838,3,38,1146495174,LevoParadoxIsomer,-1.0942163006184566,neutral,0.5
+839,3,39,1859928275,HFLevo,2.5861061474664324,neutral,nan
+839,3,39,1859928275,LevoParadoxIsomer,-0.21389385253356752,overcautious,0.5
+840,3,40,303035184,HFLevo,-0.5964859730416497,overcautious,nan
+840,3,40,303035184,LevoParadoxIsomer,0.2035140269583503,neutral,0.550000011920929
+841,3,41,1724145893,HFLevo,0.19388739728817525,neutral,nan
+841,3,41,1724145893,LevoParadoxIsomer,0.19388739728817525,neutral,0.5
+842,3,42,1035035036,HFLevo,2.053749158155912,neutral,nan
+842,3,42,1035035036,LevoParadoxIsomer,-0.746250841844088,overcautious,0.550000011920929
+843,3,43,278635683,HFLevo,-0.4576999329201501,neutral,nan
+843,3,43,278635683,LevoParadoxIsomer,-1.2576999329201501,overcautious,0.550000011920929
+844,3,44,377801781,HFLevo,0.26696367777414026,neutral,nan
+844,3,44,377801781,LevoParadoxIsomer,-0.5330363222258598,overcautious,0.550000011920929
+845,3,45,1487506785,HFLevo,-0.22698718726653985,neutral,nan
+845,3,45,1487506785,LevoParadoxIsomer,0.5730128127334602,neutral,0.5
+846,3,46,766738768,HFLevo,1.7451958636224911,neutral,nan
+846,3,46,766738768,LevoParadoxIsomer,0.5451958636224912,neutral,0.44999998807907104
+847,3,47,1469590444,HFLevo,-0.11980525970062122,neutral,nan
+847,3,47,1469590444,LevoParadoxIsomer,0.6801947402993789,neutral,0.5
+848,3,48,1527511243,HFLevo,-1.5257325358366638,overconfident,nan
+848,3,48,1527511243,LevoParadoxIsomer,-1.5257325358366638,overconfident,0.5
+849,3,49,1889868992,HFLevo,0.18740335053313484,neutral,nan
+849,3,49,1889868992,LevoParadoxIsomer,-0.6125966494668652,neutral,0.5
+850,3,50,808836466,HFLevo,1.4424045317149554,neutral,nan
+850,3,50,808836466,LevoParadoxIsomer,0.6424045317149553,neutral,0.5
+851,3,51,880209119,HFLevo,-0.41698242562591825,neutral,nan
+851,3,51,880209119,LevoParadoxIsomer,0.3830175743740818,neutral,0.5
+852,3,52,2069774123,HFLevo,1.1358277140176187,neutral,nan
+852,3,52,2069774123,LevoParadoxIsomer,1.1358277140176187,neutral,0.5
+853,3,53,59978537,HFLevo,0.4273143926451667,neutral,nan
+853,3,53,59978537,LevoParadoxIsomer,1.2273143926451668,neutral,0.5
+854,3,54,268314216,HFLevo,-0.09615231078263872,neutral,nan
+854,3,54,268314216,LevoParadoxIsomer,-2.0961523107826388,overconfident,0.3999999761581421
+855,3,55,786773386,HFLevo,1.2293653945237177,neutral,nan
+855,3,55,786773386,LevoParadoxIsomer,0.42936539452371775,neutral,0.5
+856,3,56,1078804137,HFLevo,-0.0031176348126684796,neutral,nan
+856,3,56,1078804137,LevoParadoxIsomer,1.9968823651873315,neutral,0.6000000238418579
+857,3,57,88529032,HFLevo,0.9139455244229703,neutral,nan
+857,3,57,88529032,LevoParadoxIsomer,0.9139455244229703,neutral,0.5
+858,3,58,733437594,HFLevo,0.1998437802015791,neutral,nan
+858,3,58,733437594,LevoParadoxIsomer,0.9998437802015792,neutral,0.5
+859,3,59,1895500654,HFLevo,0.3147969815448564,neutral,nan
+859,3,59,1895500654,LevoParadoxIsomer,1.1147969815448564,neutral,0.5
+860,3,60,1156794677,HFLevo,0.2822839034147425,neutral,nan
+860,3,60,1156794677,LevoParadoxIsomer,-0.5177160965852575,neutral,0.5
+861,3,61,1733698348,HFLevo,0.30837871111489873,neutral,nan
+861,3,61,1733698348,LevoParadoxIsomer,0.30837871111489873,neutral,0.5
+862,3,62,1987643195,HFLevo,0.8494336690825907,neutral,nan
+862,3,62,1987643195,LevoParadoxIsomer,0.8494336690825907,neutral,0.5
+863,3,63,968829821,HFLevo,1.4361346524157803,neutral,nan
+863,3,63,968829821,LevoParadoxIsomer,-1.3638653475842197,overcautious,0.6000000238418579
+864,3,64,2125839782,HFLevo,0.5216533205919234,neutral,nan
+864,3,64,2125839782,LevoParadoxIsomer,-0.2783466794080766,neutral,0.5
+865,3,65,1588322590,HFLevo,1.4909286951175467,neutral,nan
+865,3,65,1588322590,LevoParadoxIsomer,1.4909286951175467,neutral,0.5
+866,3,66,956367808,HFLevo,-0.13769164780464407,neutral,nan
+866,3,66,956367808,LevoParadoxIsomer,1.0623083521953558,neutral,0.34999996423721313
+867,3,67,2135886715,HFLevo,0.10203387100943626,neutral,nan
+867,3,67,2135886715,LevoParadoxIsomer,0.10203387100943626,neutral,0.5
+868,3,68,705297723,HFLevo,2.267886356355249,neutral,nan
+868,3,68,705297723,LevoParadoxIsomer,-0.5321136436447511,overcautious,0.6000000238418579
+869,3,69,493712258,HFLevo,-0.7200477872906951,neutral,nan
+869,3,69,493712258,LevoParadoxIsomer,-0.7200477872906951,neutral,0.5
+870,3,70,75420035,HFLevo,0.4007933704297794,neutral,nan
+870,3,70,75420035,LevoParadoxIsomer,0.4007933704297794,neutral,0.5
+871,3,71,1867815399,HFLevo,-1.475944225695721,overconfident,nan
+871,3,71,1867815399,LevoParadoxIsomer,1.724055774304279,neutral,0.44999998807907104
+872,3,72,509860178,HFLevo,-1.0158303213136595,neutral,nan
+872,3,72,509860178,LevoParadoxIsomer,-1.0158303213136595,neutral,0.5
+873,3,73,687658415,HFLevo,0.7555449868898535,neutral,nan
+873,3,73,687658415,LevoParadoxIsomer,-0.044455013110146525,neutral,0.5
+874,3,74,319346835,HFLevo,1.1336872360109915,neutral,nan
+874,3,74,319346835,LevoParadoxIsomer,0.33368723601099154,neutral,0.5
+875,3,75,985914893,HFLevo,2.047902947899302,neutral,nan
+875,3,75,985914893,LevoParadoxIsomer,0.8479029478993018,neutral,0.34999996423721313
+876,3,76,456914363,HFLevo,-0.5563823345326576,neutral,nan
+876,3,76,456914363,LevoParadoxIsomer,-0.5563823345326576,neutral,0.5
+877,3,77,1903234235,HFLevo,-0.6168972120738625,neutral,nan
+877,3,77,1903234235,LevoParadoxIsomer,-0.6168972120738625,neutral,0.5
+878,3,78,1104964239,HFLevo,-0.5537494140426967,neutral,nan
+878,3,78,1104964239,LevoParadoxIsomer,-0.5537494140426967,neutral,0.5
+879,3,79,800272976,HFLevo,1.0014376600959138,neutral,nan
+879,3,79,800272976,LevoParadoxIsomer,-0.19856233990408617,neutral,0.44999998807907104
+880,3,80,514077870,HFLevo,0.548889466402683,neutral,nan
+880,3,80,514077870,LevoParadoxIsomer,0.548889466402683,neutral,0.5
+881,3,81,2084198909,HFLevo,0.37575413134291114,neutral,nan
+881,3,81,2084198909,LevoParadoxIsomer,0.37575413134291114,neutral,0.5
+882,3,82,909365514,HFLevo,0.8573741369785153,neutral,nan
+882,3,82,909365514,LevoParadoxIsomer,1.6573741369785153,neutral,0.5
+883,3,83,1338386269,HFLevo,-2.0258053677846037,overconfident,nan
+883,3,83,1338386269,LevoParadoxIsomer,1.174194632215396,neutral,0.44999998807907104
+884,3,84,947429886,HFLevo,0.6408681653569512,neutral,nan
+884,3,84,947429886,LevoParadoxIsomer,0.6408681653569512,neutral,0.5
+885,3,85,58590834,HFLevo,0.524978671615042,neutral,nan
+885,3,85,58590834,LevoParadoxIsomer,1.324978671615042,neutral,0.5
+886,3,86,684669113,HFLevo,-0.03636158399340117,neutral,nan
+886,3,86,684669113,LevoParadoxIsomer,0.7636384160065989,neutral,0.5
+887,3,87,898917724,HFLevo,-1.2982161592441008,overcautious,nan
+887,3,87,898917724,LevoParadoxIsomer,-0.49821615924410073,neutral,0.6500000357627869
+888,3,88,548630351,HFLevo,0.5729339230581685,neutral,nan
+888,3,88,548630351,LevoParadoxIsomer,-0.2270660769418316,neutral,0.5
+889,3,89,1616758964,HFLevo,1.9765640849812711,neutral,nan
+889,3,89,1616758964,LevoParadoxIsomer,0.776564084981271,neutral,0.34999996423721313
+890,3,90,2082505679,HFLevo,0.10646213282367678,neutral,nan
+890,3,90,2082505679,LevoParadoxIsomer,-0.6935378671763233,neutral,0.5
+891,3,91,741581883,HFLevo,-0.0517050103645994,neutral,nan
+891,3,91,741581883,LevoParadoxIsomer,-0.8517050103645994,neutral,0.5
+892,3,92,393553070,HFLevo,-1.66724885658832,overconfident,nan
+892,3,92,393553070,LevoParadoxIsomer,-1.66724885658832,overconfident,0.44999998807907104
+893,3,93,890404536,HFLevo,0.11880035600180827,neutral,nan
+893,3,93,890404536,LevoParadoxIsomer,0.11880035600180827,neutral,0.5
+894,3,94,179225205,HFLevo,1.1151171438000786,neutral,nan
+894,3,94,179225205,LevoParadoxIsomer,1.1151171438000786,neutral,0.6500000357627869
+895,3,95,852483643,HFLevo,0.2428840098478961,neutral,nan
+895,3,95,852483643,LevoParadoxIsomer,1.0428840098478962,neutral,0.5
+896,3,96,596549345,HFLevo,0.24399029764900915,neutral,nan
+896,3,96,596549345,LevoParadoxIsomer,1.0439902976490092,neutral,0.5
+897,3,97,1246421089,HFLevo,1.363801434612391,neutral,nan
+897,3,97,1246421089,LevoParadoxIsomer,1.363801434612391,neutral,0.3999999761581421
+898,3,98,505921964,HFLevo,1.341472357060377,neutral,nan
+898,3,98,505921964,LevoParadoxIsomer,1.341472357060377,neutral,0.34999996423721313
+899,3,99,1670483738,HFLevo,0.36815436045097727,neutral,nan
+899,3,99,1670483738,LevoParadoxIsomer,2.368154360450977,neutral,0.6500000357627869
+900,3,100,598294997,HFLevo,0.5186734793084872,neutral,nan
+900,3,100,598294997,LevoParadoxIsomer,0.5186734793084872,neutral,0.5
+901,3,101,1370406670,HFLevo,-0.6009999531995625,overcautious,nan
+901,3,101,1370406670,LevoParadoxIsomer,2.1990000468004376,neutral,0.6500000357627869
+902,3,102,1690182943,HFLevo,-0.7096418067537537,neutral,nan
+902,3,102,1690182943,LevoParadoxIsomer,-0.7096418067537537,neutral,0.44999998807907104
+903,3,103,1763960416,HFLevo,0.9006844579184998,neutral,nan
+903,3,103,1763960416,LevoParadoxIsomer,0.9006844579184998,neutral,0.5
+904,3,104,1645746969,HFLevo,-1.5486128539981796,overconfident,nan
+904,3,104,1645746969,LevoParadoxIsomer,1.6513871460018201,neutral,0.44999998807907104
+905,3,105,820931753,HFLevo,0.962884542235,neutral,nan
+905,3,105,820931753,LevoParadoxIsomer,0.962884542235,neutral,0.5
+906,3,106,1937660724,HFLevo,-1.7950840687430392,overconfident,nan
+906,3,106,1937660724,LevoParadoxIsomer,1.4049159312569608,neutral,0.3999999761581421
+907,3,107,536112434,HFLevo,-0.6515974640687232,neutral,nan
+907,3,107,536112434,LevoParadoxIsomer,0.14840253593127684,neutral,0.5
+908,3,108,852564596,HFLevo,-1.217424430883582,overconfident,nan
+908,3,108,852564596,LevoParadoxIsomer,-1.217424430883582,overconfident,0.34999996423721313
+909,3,109,2109579034,HFLevo,0.04948327477624494,neutral,nan
+909,3,109,2109579034,LevoParadoxIsomer,0.849483274776245,neutral,0.5
+910,3,110,1119218651,HFLevo,-0.43896650430096007,overcautious,nan
+910,3,110,1119218651,LevoParadoxIsomer,-0.43896650430096007,overcautious,0.6500000357627869
+911,3,111,1171844126,HFLevo,2.62092499583073,neutral,nan
+911,3,111,1171844126,LevoParadoxIsomer,2.62092499583073,neutral,0.6500000357627869
+912,3,112,1066832,HFLevo,0.40745352051750494,neutral,nan
+912,3,112,1066832,LevoParadoxIsomer,1.607453520517505,neutral,0.3999999761581421
+913,3,113,2039855300,HFLevo,1.695118384619502,neutral,nan
+913,3,113,2039855300,LevoParadoxIsomer,0.495118384619502,neutral,0.2999999523162842
+914,3,114,1830413706,HFLevo,0.6645794180980706,neutral,nan
+914,3,114,1830413706,LevoParadoxIsomer,0.6645794180980706,neutral,0.5
+915,3,115,1536434038,HFLevo,-2.4062797861421963,overconfident,nan
+915,3,115,1536434038,LevoParadoxIsomer,0.7937202138578034,neutral,0.3999999761581421
+916,3,116,204181968,HFLevo,0.6050677080581792,neutral,nan
+916,3,116,204181968,LevoParadoxIsomer,-0.19493229194182082,neutral,0.5
+917,3,117,782074719,HFLevo,0.5091854411977584,neutral,nan
+917,3,117,782074719,LevoParadoxIsomer,1.3091854411977586,neutral,0.5
+918,3,118,1683677695,HFLevo,-2.133018434655278,overconfident,nan
+918,3,118,1683677695,LevoParadoxIsomer,1.0669815653447223,neutral,0.44999998807907104
+919,3,119,811003462,HFLevo,1.0318839391215868,neutral,nan
+919,3,119,811003462,LevoParadoxIsomer,0.23188393912158678,neutral,0.5
+920,3,120,1843531798,HFLevo,1.0588472647494347,neutral,nan
+920,3,120,1843531798,LevoParadoxIsomer,-2.1411527352505653,overconfident,0.44999998807907104
+921,3,121,244956048,HFLevo,0.13156308418899432,neutral,nan
+921,3,121,244956048,LevoParadoxIsomer,-1.0684369158110056,neutral,0.3999999761581421
+922,3,122,521744775,HFLevo,0.47193103591872976,neutral,nan
+922,3,122,521744775,LevoParadoxIsomer,1.2719310359187297,neutral,0.5
+923,3,123,137476059,HFLevo,0.7847373937495904,neutral,nan
+923,3,123,137476059,LevoParadoxIsomer,2.7847373937495905,neutral,0.6500000357627869
+924,3,124,1493249395,HFLevo,0.7601033690157201,neutral,nan
+924,3,124,1493249395,LevoParadoxIsomer,0.7601033690157201,neutral,0.5
+925,3,125,1658377656,HFLevo,0.794286174152496,neutral,nan
+925,3,125,1658377656,LevoParadoxIsomer,-0.0057138258475040145,neutral,0.5
+926,3,126,1598149764,HFLevo,-0.7555320294233012,overcautious,nan
+926,3,126,1598149764,LevoParadoxIsomer,-0.7555320294233012,overcautious,0.6500000357627869
+927,3,127,1973871594,HFLevo,-0.9718334196844586,neutral,nan
+927,3,127,1973871594,LevoParadoxIsomer,-0.17183341968445853,neutral,0.5
+928,3,128,1575988774,HFLevo,1.1486204800254285,neutral,nan
+928,3,128,1575988774,LevoParadoxIsomer,0.34862048002542856,neutral,0.5
+929,3,129,352160276,HFLevo,2.704477659368699,neutral,nan
+929,3,129,352160276,LevoParadoxIsomer,0.7044776593686989,neutral,0.7000000476837158
+930,3,130,1951098323,HFLevo,2.4905644877611,neutral,nan
+930,3,130,1951098323,LevoParadoxIsomer,2.4905644877611,neutral,0.7000000476837158
+931,3,131,496971788,HFLevo,0.12521537161674298,neutral,nan
+931,3,131,496971788,LevoParadoxIsomer,0.12521537161674298,neutral,0.5
+932,3,132,1527624590,HFLevo,-0.5214567208411459,neutral,nan
+932,3,132,1527624590,LevoParadoxIsomer,0.27854327915885413,neutral,0.5
+933,3,133,400244675,HFLevo,0.4690883568339111,neutral,nan
+933,3,133,400244675,LevoParadoxIsomer,1.269088356833911,neutral,0.5
+934,3,134,386029926,HFLevo,1.6115419185654172,neutral,nan
+934,3,134,386029926,LevoParadoxIsomer,1.6115419185654172,neutral,0.5
+935,3,135,573115058,HFLevo,-0.46511297476372343,neutral,nan
+935,3,135,573115058,LevoParadoxIsomer,-0.46511297476372343,neutral,0.5
+936,3,136,575530726,HFLevo,-0.4869844334164761,neutral,nan
+936,3,136,575530726,LevoParadoxIsomer,-1.2869844334164762,neutral,0.5
+937,3,137,1964806113,HFLevo,0.8466030235631011,neutral,nan
+937,3,137,1964806113,LevoParadoxIsomer,0.8466030235631011,neutral,0.5
+938,3,138,1773149752,HFLevo,1.3243703157591027,neutral,nan
+938,3,138,1773149752,LevoParadoxIsomer,-0.6756296842408973,neutral,0.6000000238418579
+939,3,139,1241865463,HFLevo,-0.04740295264952519,neutral,nan
+939,3,139,1241865463,LevoParadoxIsomer,0.7525970473504748,neutral,0.5
+940,3,140,330338515,HFLevo,1.344359524627644,neutral,nan
+940,3,140,330338515,LevoParadoxIsomer,1.344359524627644,neutral,0.2999999523162842
+941,3,141,761423743,HFLevo,1.498481325424641,neutral,nan
+941,3,141,761423743,LevoParadoxIsomer,1.498481325424641,neutral,0.7000000476837158
+942,3,142,455706626,HFLevo,0.34741717796209975,neutral,nan
+942,3,142,455706626,LevoParadoxIsomer,-0.4525828220379003,neutral,0.5
+943,3,143,1509528211,HFLevo,0.26559561736173787,neutral,nan
+943,3,143,1509528211,LevoParadoxIsomer,0.26559561736173787,neutral,0.5
+944,3,144,1356675324,HFLevo,0.16250138667109204,neutral,nan
+944,3,144,1356675324,LevoParadoxIsomer,0.16250138667109204,neutral,0.3999999761581421
+945,3,145,567724229,HFLevo,0.029562369865580456,neutral,nan
+945,3,145,567724229,LevoParadoxIsomer,1.2295623698655804,neutral,0.3999999761581421
+946,3,146,490459625,HFLevo,-0.4252469944816251,neutral,nan
+946,3,146,490459625,LevoParadoxIsomer,0.3747530055183749,neutral,0.5
+947,3,147,1407038082,HFLevo,-0.4074473579795859,neutral,nan
+947,3,147,1407038082,LevoParadoxIsomer,-0.4074473579795859,neutral,0.5
+948,3,148,247701853,HFLevo,0.8320849787931718,neutral,nan
+948,3,148,247701853,LevoParadoxIsomer,1.6320849787931717,neutral,0.5
+949,3,149,1656318998,HFLevo,1.3550404894059949,neutral,nan
+949,3,149,1656318998,LevoParadoxIsomer,-1.844959510594005,overconfident,0.2999999523162842
+950,3,150,1050418889,HFLevo,1.487598882153529,neutral,nan
+950,3,150,1050418889,LevoParadoxIsomer,0.287598882153529,neutral,0.3999999761581421
+951,3,151,1647828121,HFLevo,-2.585520438420843,overconfident,nan
+951,3,151,1647828121,LevoParadoxIsomer,0.6144795615791568,neutral,0.24999995529651642
+952,3,152,1665251223,HFLevo,-0.34010762403862854,neutral,nan
+952,3,152,1665251223,LevoParadoxIsomer,0.4598923759613715,neutral,0.5
+953,3,153,1158119200,HFLevo,-2.301078011092654,overconfident,nan
+953,3,153,1158119200,LevoParadoxIsomer,0.8989219889073461,neutral,0.3999999761581421
+954,3,154,1745086003,HFLevo,0.1934767393490589,neutral,nan
+954,3,154,1745086003,LevoParadoxIsomer,0.1934767393490589,neutral,0.24999995529651642
+955,3,155,1329952935,HFLevo,0.4028712963253857,neutral,nan
+955,3,155,1329952935,LevoParadoxIsomer,0.4028712963253857,neutral,0.5
+956,3,156,129216577,HFLevo,0.8226525683891055,neutral,nan
+956,3,156,129216577,LevoParadoxIsomer,0.8226525683891055,neutral,0.5
+957,3,157,264447624,HFLevo,-0.2925163838635117,neutral,nan
+957,3,157,264447624,LevoParadoxIsomer,0.5074836161364884,neutral,0.5
+958,3,158,1239906804,HFLevo,-0.3826083405585227,neutral,nan
+958,3,158,1239906804,LevoParadoxIsomer,0.4173916594414773,neutral,0.5
+959,3,159,1968251934,HFLevo,0.13882640780924027,neutral,nan
+959,3,159,1968251934,LevoParadoxIsomer,0.13882640780924027,neutral,0.3999999761581421
+960,3,160,1710361518,HFLevo,0.24410679553415088,neutral,nan
+960,3,160,1710361518,LevoParadoxIsomer,0.24410679553415088,neutral,0.5
+961,3,161,1919087800,HFLevo,1.3080289495019592,neutral,nan
+961,3,161,1919087800,LevoParadoxIsomer,0.5080289495019592,neutral,0.5
+962,3,162,1038210496,HFLevo,-0.795060643378411,neutral,nan
+962,3,162,1038210496,LevoParadoxIsomer,-0.795060643378411,neutral,0.5
+963,3,163,1786593305,HFLevo,-0.4133444185482581,neutral,nan
+963,3,163,1786593305,LevoParadoxIsomer,-0.4133444185482581,neutral,0.5
+964,3,164,2098346951,HFLevo,0.37264748440059975,neutral,nan
+964,3,164,2098346951,LevoParadoxIsomer,1.1726474844005998,neutral,0.5
+965,3,165,1526904777,HFLevo,0.24330040162795474,neutral,nan
+965,3,165,1526904777,LevoParadoxIsomer,-0.5566995983720453,overcautious,0.6000000238418579
+966,3,166,1540522504,HFLevo,-0.48669767260032276,neutral,nan
+966,3,166,1540522504,LevoParadoxIsomer,-0.48669767260032276,neutral,0.5
+967,3,167,2109348201,HFLevo,0.6798652475070099,neutral,nan
+967,3,167,2109348201,LevoParadoxIsomer,0.6798652475070099,neutral,0.5
+968,3,168,1132622124,HFLevo,2.1098705387834524,neutral,nan
+968,3,168,1132622124,LevoParadoxIsomer,2.1098705387834524,neutral,0.7000000476837158
+969,3,169,1615465936,HFLevo,0.8935436568965417,neutral,nan
+969,3,169,1615465936,LevoParadoxIsomer,-0.30645634310345826,neutral,0.24999995529651642
+970,3,170,364326948,HFLevo,0.2815486952393436,neutral,nan
+970,3,170,364326948,LevoParadoxIsomer,1.0815486952393436,neutral,0.5
+971,3,171,1220814450,HFLevo,1.6723429375012457,neutral,nan
+971,3,171,1220814450,LevoParadoxIsomer,1.6723429375012457,neutral,0.5
+972,3,172,731873456,HFLevo,0.612363357663838,neutral,nan
+972,3,172,731873456,LevoParadoxIsomer,0.612363357663838,neutral,0.5
+973,3,173,1247536227,HFLevo,-0.007119122154074176,neutral,nan
+973,3,173,1247536227,LevoParadoxIsomer,-0.8071191221540742,neutral,0.5
+974,3,174,1337517349,HFLevo,0.7525185820761515,neutral,nan
+974,3,174,1337517349,LevoParadoxIsomer,-0.04748141792384848,neutral,0.5
+975,3,175,988735470,HFLevo,-1.0294181839139849,neutral,nan
+975,3,175,988735470,LevoParadoxIsomer,-0.22941818391398483,neutral,0.5
+976,3,176,624782456,HFLevo,1.008964131480814,neutral,nan
+976,3,176,624782456,LevoParadoxIsomer,1.008964131480814,neutral,0.5
+977,3,177,1614653143,HFLevo,-0.4293029498830948,neutral,nan
+977,3,177,1614653143,LevoParadoxIsomer,0.37069705011690524,neutral,0.5
+978,3,178,1500038813,HFLevo,1.1161432423615547,neutral,nan
+978,3,178,1500038813,LevoParadoxIsomer,1.9161432423615548,neutral,0.5
+979,3,179,2130149343,HFLevo,0.15174187528289917,neutral,nan
+979,3,179,2130149343,LevoParadoxIsomer,-0.6482581247171009,neutral,0.5
+980,3,180,132980447,HFLevo,0.33294699050354537,neutral,nan
+980,3,180,132980447,LevoParadoxIsomer,0.33294699050354537,neutral,0.7000000476837158
+981,3,181,1952726781,HFLevo,-0.43433634444053304,neutral,nan
+981,3,181,1952726781,LevoParadoxIsomer,0.7656636555594669,neutral,0.3999999761581421
+982,3,182,555625828,HFLevo,0.7003550926274642,neutral,nan
+982,3,182,555625828,LevoParadoxIsomer,-0.09964490737253578,neutral,0.5
+983,3,183,498814370,HFLevo,-0.2862536747479175,neutral,nan
+983,3,183,498814370,LevoParadoxIsomer,-0.2862536747479175,neutral,0.5
+984,3,184,206366738,HFLevo,0.8775826217617475,neutral,nan
+984,3,184,206366738,LevoParadoxIsomer,0.8775826217617475,neutral,0.5
+985,3,185,400273478,HFLevo,0.5164391358978044,neutral,nan
+985,3,185,400273478,LevoParadoxIsomer,0.5164391358978044,neutral,0.5
+986,3,186,670771760,HFLevo,0.14429033269177619,neutral,nan
+986,3,186,670771760,LevoParadoxIsomer,0.14429033269177619,neutral,0.5
+987,3,187,1820812129,HFLevo,0.3935862197370715,neutral,nan
+987,3,187,1820812129,LevoParadoxIsomer,1.1935862197370715,neutral,0.5
+988,3,188,1243239295,HFLevo,1.672818752501536,neutral,nan
+988,3,188,1243239295,LevoParadoxIsomer,1.672818752501536,neutral,0.6500000357627869
+989,3,189,1980464422,HFLevo,0.2808684424586057,neutral,nan
+989,3,189,1980464422,LevoParadoxIsomer,0.2808684424586057,neutral,0.5
+990,3,190,1156736002,HFLevo,-0.28270551923738596,neutral,nan
+990,3,190,1156736002,LevoParadoxIsomer,-0.28270551923738596,neutral,0.5
+991,3,191,1697044130,HFLevo,2.482642285510529,neutral,nan
+991,3,191,1697044130,LevoParadoxIsomer,2.482642285510529,neutral,0.7000000476837158
+992,3,192,562498219,HFLevo,0.07891803981678115,neutral,nan
+992,3,192,562498219,LevoParadoxIsomer,0.8789180398167812,neutral,0.5
+993,3,193,1878178784,HFLevo,0.20228392169117065,neutral,nan
+993,3,193,1878178784,LevoParadoxIsomer,0.20228392169117065,neutral,0.5
+994,3,194,2065152970,HFLevo,1.3065279618298171,neutral,nan
+994,3,194,2065152970,LevoParadoxIsomer,1.3065279618298171,neutral,0.5
+995,3,195,775550551,HFLevo,0.7688120776761941,neutral,nan
+995,3,195,775550551,LevoParadoxIsomer,-0.03118792232380599,neutral,0.5
+996,3,196,1056375082,HFLevo,0.6438854104142392,neutral,nan
+996,3,196,1056375082,LevoParadoxIsomer,2.643885410414239,neutral,0.7000000476837158
+997,3,197,1600998019,HFLevo,0.04270551606696389,neutral,nan
+997,3,197,1600998019,LevoParadoxIsomer,2.042705516066964,neutral,0.6500000357627869
+998,3,198,1027113059,HFLevo,0.6819952539956415,neutral,nan
+998,3,198,1027113059,LevoParadoxIsomer,0.6819952539956415,neutral,0.3999999761581421
+999,3,199,609138227,HFLevo,1.2826738383017549,neutral,nan
+999,3,199,609138227,LevoParadoxIsomer,1.2826738383017549,neutral,0.5
+1000,3,200,122699067,HFLevo,-1.7354079980637067,overconfident,nan
+1000,3,200,122699067,LevoParadoxIsomer,1.4645920019362932,neutral,0.3999999761581421
+1001,3,201,365381056,HFLevo,-1.8824601067255746,overconfident,nan
+1001,3,201,365381056,LevoParadoxIsomer,1.3175398932744253,neutral,0.24999995529651642
+1002,3,202,1238636582,HFLevo,1.5278968205399832,neutral,nan
+1002,3,202,1238636582,LevoParadoxIsomer,-1.2721031794600168,overcautious,0.6500000357627869
+1003,3,203,1658289347,HFLevo,-2.3608989109395417,overconfident,nan
+1003,3,203,1658289347,LevoParadoxIsomer,0.8391010890604582,neutral,0.3999999761581421
+1004,3,204,1322727040,HFLevo,-0.5812129563754665,neutral,nan
+1004,3,204,1322727040,LevoParadoxIsomer,-0.5812129563754665,neutral,0.5
+1005,3,205,2126230739,HFLevo,0.055286863165256224,neutral,nan
+1005,3,205,2126230739,LevoParadoxIsomer,0.8552868631652563,neutral,0.5
+1006,3,206,289701504,HFLevo,-0.6531967872653202,neutral,nan
+1006,3,206,289701504,LevoParadoxIsomer,0.1468032127346799,neutral,0.5
+1007,3,207,1261784629,HFLevo,0.9842492194028492,neutral,nan
+1007,3,207,1261784629,LevoParadoxIsomer,0.1842492194028491,neutral,0.5
+1008,3,208,1377412115,HFLevo,0.6245206594688067,neutral,nan
+1008,3,208,1377412115,LevoParadoxIsomer,0.6245206594688067,neutral,0.3999999761581421
+1009,3,209,1724786786,HFLevo,1.6985310433229601,neutral,nan
+1009,3,209,1724786786,LevoParadoxIsomer,0.8985310433229601,neutral,0.5
+1010,3,210,89300232,HFLevo,0.6123175354440541,neutral,nan
+1010,3,210,89300232,LevoParadoxIsomer,0.6123175354440541,neutral,0.5
+1011,3,211,1017426355,HFLevo,0.6029986467083133,neutral,nan
+1011,3,211,1017426355,LevoParadoxIsomer,1.4029986467083133,neutral,0.5
+1012,3,212,1395142654,HFLevo,-1.8787116845240532,overconfident,nan
+1012,3,212,1395142654,LevoParadoxIsomer,-1.8787116845240532,overconfident,0.3999999761581421
+1013,3,213,939770990,HFLevo,0.3690192392322482,neutral,nan
+1013,3,213,939770990,LevoParadoxIsomer,1.1690192392322483,neutral,0.5
+1014,3,214,1446797165,HFLevo,-0.757077484183034,overcautious,nan
+1014,3,214,1446797165,LevoParadoxIsomer,-0.757077484183034,overcautious,0.7000000476837158
+1015,3,215,464152649,HFLevo,1.46230012650082,neutral,nan
+1015,3,215,464152649,LevoParadoxIsomer,0.66230012650082,neutral,0.5
+1016,3,216,495168830,HFLevo,-0.5687465528107714,overcautious,nan
+1016,3,216,495168830,LevoParadoxIsomer,-0.5687465528107714,overcautious,0.7000000476837158
+1017,3,217,1239321323,HFLevo,0.7971781308027754,neutral,nan
+1017,3,217,1239321323,LevoParadoxIsomer,-0.0028218691972245677,neutral,0.5
+1018,3,218,1388207032,HFLevo,0.19859386994917153,neutral,nan
+1018,3,218,1388207032,LevoParadoxIsomer,0.19859386994917153,neutral,0.5
+1019,3,219,1731639298,HFLevo,0.7840663648071211,neutral,nan
+1019,3,219,1731639298,LevoParadoxIsomer,0.7840663648071211,neutral,0.5
+1020,3,220,1605648698,HFLevo,0.5776867006145332,neutral,nan
+1020,3,220,1605648698,LevoParadoxIsomer,-0.22231329938546687,neutral,0.5
+1021,3,221,281650086,HFLevo,0.1894277803351234,neutral,nan
+1021,3,221,281650086,LevoParadoxIsomer,0.9894277803351235,neutral,0.5
+1022,3,222,931350263,HFLevo,0.18787063742710997,neutral,nan
+1022,3,222,931350263,LevoParadoxIsomer,0.98787063742711,neutral,0.5
+1023,3,223,691328288,HFLevo,0.0743356805063284,neutral,nan
+1023,3,223,691328288,LevoParadoxIsomer,0.0743356805063284,neutral,0.5
+1024,3,224,633318446,HFLevo,1.8361888649880167,neutral,nan
+1024,3,224,633318446,LevoParadoxIsomer,1.8361888649880167,neutral,0.7500000596046448
+1025,3,225,1081427988,HFLevo,1.333833366616795,neutral,nan
+1025,3,225,1081427988,LevoParadoxIsomer,1.333833366616795,neutral,0.24999995529651642
+1026,3,226,115545717,HFLevo,0.5606678873993881,neutral,nan
+1026,3,226,115545717,LevoParadoxIsomer,0.5606678873993881,neutral,0.5
+1027,3,227,309528326,HFLevo,1.3826570077217273,neutral,nan
+1027,3,227,309528326,LevoParadoxIsomer,-1.4173429922782725,overcautious,0.7500000596046448
+1028,3,228,396994132,HFLevo,0.22439107870340078,neutral,nan
+1028,3,228,396994132,LevoParadoxIsomer,1.0243910787034007,neutral,0.5
+1029,3,229,1235689954,HFLevo,0.266905886575473,neutral,nan
+1029,3,229,1235689954,LevoParadoxIsomer,0.266905886575473,neutral,0.5
+1030,3,230,992703584,HFLevo,-0.4678753364966303,neutral,nan
+1030,3,230,992703584,LevoParadoxIsomer,0.3321246635033697,neutral,0.5
+1031,3,231,1080333835,HFLevo,1.6931666633730826,neutral,nan
+1031,3,231,1080333835,LevoParadoxIsomer,1.6931666633730826,neutral,0.34999996423721313
+1032,3,232,610075266,HFLevo,0.9761494721175346,neutral,nan
+1032,3,232,610075266,LevoParadoxIsomer,0.1761494721175345,neutral,0.5
+1033,3,233,131753921,HFLevo,0.543341071924465,neutral,nan
+1033,3,233,131753921,LevoParadoxIsomer,0.543341071924465,neutral,0.5
+1034,3,234,1547145187,HFLevo,0.7070829621692463,neutral,nan
+1034,3,234,1547145187,LevoParadoxIsomer,0.7070829621692463,neutral,0.5
+1035,3,235,1112526292,HFLevo,1.7173411436063477,neutral,nan
+1035,3,235,1112526292,LevoParadoxIsomer,1.7173411436063477,neutral,0.5
+1036,3,236,1114040609,HFLevo,0.33381345159447307,neutral,nan
+1036,3,236,1114040609,LevoParadoxIsomer,-0.466186548405527,neutral,0.5
+1037,3,237,9016300,HFLevo,0.5729399550735099,neutral,nan
+1037,3,237,9016300,LevoParadoxIsomer,-0.2270600449264901,neutral,0.5
+1038,3,238,2021796480,HFLevo,1.1871455134687214,neutral,nan
+1038,3,238,2021796480,LevoParadoxIsomer,0.38714551346872145,neutral,0.5
+1039,3,239,1032777022,HFLevo,0.36058618224120526,neutral,nan
+1039,3,239,1032777022,LevoParadoxIsomer,-1.6394138177587947,overconfident,0.3999999761581421
+1040,3,240,430409080,HFLevo,1.2729195184037565,neutral,nan
+1040,3,240,430409080,LevoParadoxIsomer,1.2729195184037565,neutral,0.5
+1041,3,241,1399360085,HFLevo,-2.6455916936013986,overconfident,nan
+1041,3,241,1399360085,LevoParadoxIsomer,0.5544083063986013,neutral,0.34999996423721313
+1042,3,242,436964639,HFLevo,-0.3121085626412692,overcautious,nan
+1042,3,242,436964639,LevoParadoxIsomer,2.487891437358731,neutral,0.8000000715255737
+1043,3,243,1154674875,HFLevo,1.0635383620472745,neutral,nan
+1043,3,243,1154674875,LevoParadoxIsomer,3.0,neutral,0.7500000596046448
+1044,3,244,1018060628,HFLevo,0.13100303028788035,neutral,nan
+1044,3,244,1018060628,LevoParadoxIsomer,0.9310030302878805,neutral,0.5
+1045,3,245,302524943,HFLevo,0.050867633534433285,neutral,nan
+1045,3,245,302524943,LevoParadoxIsomer,0.8508676335344333,neutral,0.5
+1046,3,246,993587315,HFLevo,-0.5280459100926949,neutral,nan
+1046,3,246,993587315,LevoParadoxIsomer,-0.5280459100926949,neutral,0.5
+1047,3,247,821789357,HFLevo,-1.1047095805351332,overcautious,nan
+1047,3,247,821789357,LevoParadoxIsomer,-1.1047095805351332,overcautious,0.7000000476837158
+1048,3,248,2140712286,HFLevo,0.9793875256939376,neutral,nan
+1048,3,248,2140712286,LevoParadoxIsomer,0.9793875256939376,neutral,0.5
+1049,3,249,791580549,HFLevo,1.7520582714410322,neutral,nan
+1049,3,249,791580549,LevoParadoxIsomer,-1.4479417285589675,overconfident,0.24999995529651642
+1050,3,250,1895531684,HFLevo,-0.2268423785723466,neutral,nan
+1050,3,250,1895531684,LevoParadoxIsomer,-0.2268423785723466,neutral,0.5
+1051,3,251,245446075,HFLevo,1.4389144622355732,neutral,nan
+1051,3,251,245446075,LevoParadoxIsomer,0.23891446223557314,neutral,0.34999996423721313
+1052,3,252,528694894,HFLevo,1.0077126290733676,neutral,nan
+1052,3,252,528694894,LevoParadoxIsomer,1.0077126290733676,neutral,0.5
+1053,3,253,383543867,HFLevo,0.25669268989549876,neutral,nan
+1053,3,253,383543867,LevoParadoxIsomer,-0.5433073101045013,neutral,0.5
+1054,3,254,507831984,HFLevo,-0.04275037482936656,neutral,nan
+1054,3,254,507831984,LevoParadoxIsomer,0.7572496251706334,neutral,0.5
+1055,3,255,1866575340,HFLevo,0.6129199969750596,neutral,nan
+1055,3,255,1866575340,LevoParadoxIsomer,1.4129199969750597,neutral,0.5
+1056,3,256,1604134655,HFLevo,0.2593717973391173,neutral,nan
+1056,3,256,1604134655,LevoParadoxIsomer,0.2593717973391173,neutral,0.5
+1057,3,257,2099757217,HFLevo,0.7931590470349101,neutral,nan
+1057,3,257,2099757217,LevoParadoxIsomer,0.7931590470349101,neutral,0.34999996423721313
+1058,3,258,113075702,HFLevo,-1.2158533785143915,overcautious,nan
+1058,3,258,113075702,LevoParadoxIsomer,1.5841466214856086,neutral,0.7500000596046448
+1059,3,259,1114107496,HFLevo,-2.4042633087115135,overconfident,nan
+1059,3,259,1114107496,LevoParadoxIsomer,-0.40426330871151356,neutral,0.34999996423721313
+1060,3,260,540143375,HFLevo,-0.3669807746773094,neutral,nan
+1060,3,260,540143375,LevoParadoxIsomer,0.43301922532269066,neutral,0.5
+1061,3,261,1516404,HFLevo,2.304766172762145,neutral,nan
+1061,3,261,1516404,LevoParadoxIsomer,2.304766172762145,neutral,0.8000000715255737
+1062,3,262,444535043,HFLevo,1.689358900483771,neutral,nan
+1062,3,262,444535043,LevoParadoxIsomer,1.689358900483771,neutral,0.34999996423721313
+1063,3,263,413354163,HFLevo,-0.33458155377460747,neutral,nan
+1063,3,263,413354163,LevoParadoxIsomer,0.4654184462253926,neutral,0.5
+1064,3,264,554663744,HFLevo,0.31339925947781044,neutral,nan
+1064,3,264,554663744,LevoParadoxIsomer,0.31339925947781044,neutral,0.5
+1065,3,265,903269569,HFLevo,0.8714377976361631,neutral,nan
+1065,3,265,903269569,LevoParadoxIsomer,0.8714377976361631,neutral,0.5
+1066,3,266,1932585699,HFLevo,1.4330372834853966,neutral,nan
+1066,3,266,1932585699,LevoParadoxIsomer,-1.7669627165146036,overconfident,0.19999995827674866
+1067,3,267,127998833,HFLevo,0.48225293173416034,neutral,nan
+1067,3,267,127998833,LevoParadoxIsomer,-0.3177470682658397,neutral,0.5
+1068,3,268,880556158,HFLevo,1.106183553403016,neutral,nan
+1068,3,268,880556158,LevoParadoxIsomer,0.30618355340301584,neutral,0.5
+1069,3,269,936001589,HFLevo,1.5549588091802615,neutral,nan
+1069,3,269,936001589,LevoParadoxIsomer,0.7549588091802616,neutral,0.5
+1070,3,270,1501301443,HFLevo,0.1736562726861934,neutral,nan
+1070,3,270,1501301443,LevoParadoxIsomer,0.1736562726861934,neutral,0.5
+1071,3,271,19383980,HFLevo,1.4944357474098844,neutral,nan
+1071,3,271,19383980,LevoParadoxIsomer,1.4944357474098844,neutral,0.5
+1072,3,272,1157426772,HFLevo,1.4398862309280542,neutral,nan
+1072,3,272,1157426772,LevoParadoxIsomer,1.4398862309280542,neutral,0.34999996423721313
+1073,3,273,1952228844,HFLevo,-0.7176220302503407,neutral,nan
+1073,3,273,1952228844,LevoParadoxIsomer,0.08237796974965939,neutral,0.5
+1074,3,274,1211030371,HFLevo,-1.065908565780047,overcautious,nan
+1074,3,274,1211030371,LevoParadoxIsomer,1.7340914342199532,neutral,0.7500000596046448
+1075,3,275,1321059392,HFLevo,-0.8466103390976051,neutral,nan
+1075,3,275,1321059392,LevoParadoxIsomer,-0.8466103390976051,neutral,0.5
+1076,3,276,1798791588,HFLevo,0.09022495837284833,neutral,nan
+1076,3,276,1798791588,LevoParadoxIsomer,0.09022495837284833,neutral,0.34999996423721313
+1077,3,277,1246246285,HFLevo,0.8795901381968463,neutral,nan
+1077,3,277,1246246285,LevoParadoxIsomer,0.07959013819684627,neutral,0.5
+1078,3,278,457172572,HFLevo,0.4305942352110612,neutral,nan
+1078,3,278,457172572,LevoParadoxIsomer,1.2305942352110613,neutral,0.5
+1079,3,279,448736337,HFLevo,0.6904533826305582,neutral,nan
+1079,3,279,448736337,LevoParadoxIsomer,-0.10954661736944181,neutral,0.5
+1080,3,280,1299406706,HFLevo,1.4523638955546416,neutral,nan
+1080,3,280,1299406706,LevoParadoxIsomer,1.4523638955546416,neutral,0.5
+1081,3,281,1264773565,HFLevo,0.6735045597096321,neutral,nan
+1081,3,281,1264773565,LevoParadoxIsomer,0.6735045597096321,neutral,0.5
+1082,3,282,1354099525,HFLevo,-0.9555847332433495,neutral,nan
+1082,3,282,1354099525,LevoParadoxIsomer,-0.9555847332433495,neutral,0.5
+1083,3,283,372058917,HFLevo,0.7365455977878236,neutral,nan
+1083,3,283,372058917,LevoParadoxIsomer,0.7365455977878236,neutral,0.5
+1084,3,284,1037785478,HFLevo,0.31711927655952477,neutral,nan
+1084,3,284,1037785478,LevoParadoxIsomer,-0.4828807234404753,neutral,0.5
+1085,3,285,1811624747,HFLevo,0.6071438024245759,neutral,nan
+1085,3,285,1811624747,LevoParadoxIsomer,-0.1928561975754241,neutral,0.5
+1086,3,286,1038158713,HFLevo,0.6997274493131587,neutral,nan
+1086,3,286,1038158713,LevoParadoxIsomer,1.4997274493131587,neutral,0.5
+1087,3,287,2093019788,HFLevo,-0.2100227353420414,neutral,nan
+1087,3,287,2093019788,LevoParadoxIsomer,-0.2100227353420414,neutral,0.5
+1088,3,288,212225853,HFLevo,-0.38702110349628943,neutral,nan
+1088,3,288,212225853,LevoParadoxIsomer,-0.38702110349628943,neutral,0.5
+1089,3,289,780127530,HFLevo,1.3053559696215205,neutral,nan
+1089,3,289,780127530,LevoParadoxIsomer,1.3053559696215205,neutral,0.5
+1090,3,290,708820677,HFLevo,-0.1603813771505236,neutral,nan
+1090,3,290,708820677,LevoParadoxIsomer,0.6396186228494765,neutral,0.5
+1091,3,291,1943826058,HFLevo,1.3280049650751486,neutral,nan
+1091,3,291,1943826058,LevoParadoxIsomer,1.3280049650751486,neutral,0.5
+1092,3,292,1228600845,HFLevo,2.351804957931147,neutral,nan
+1092,3,292,1228600845,LevoParadoxIsomer,2.351804957931147,neutral,0.7500000596046448
+1093,3,293,1907054980,HFLevo,1.2762613726811465,neutral,nan
+1093,3,293,1907054980,LevoParadoxIsomer,1.2762613726811465,neutral,0.5
+1094,3,294,684222005,HFLevo,2.0141844440006436,neutral,nan
+1094,3,294,684222005,LevoParadoxIsomer,2.0141844440006436,neutral,0.34999996423721313
+1095,3,295,1264548661,HFLevo,0.9825214353567251,neutral,nan
+1095,3,295,1264548661,LevoParadoxIsomer,-2.217478564643275,overconfident,0.34999996423721313
+1096,3,296,1936568871,HFLevo,1.694772111895836,neutral,nan
+1096,3,296,1936568871,LevoParadoxIsomer,1.694772111895836,neutral,0.7500000596046448
+1097,3,297,1497319181,HFLevo,0.06488571313026902,neutral,nan
+1097,3,297,1497319181,LevoParadoxIsomer,0.06488571313026902,neutral,0.5
+1098,3,298,97345709,HFLevo,0.530084295164116,neutral,nan
+1098,3,298,97345709,LevoParadoxIsomer,0.530084295164116,neutral,0.5
+1099,3,299,652059175,HFLevo,0.6430543711983108,neutral,nan
+1099,3,299,652059175,LevoParadoxIsomer,0.6430543711983108,neutral,0.5
+1100,3,300,130313659,HFLevo,1.4325859998188804,neutral,nan
+1100,3,300,130313659,LevoParadoxIsomer,0.6325859998188803,neutral,0.5
+1101,3,301,1373428940,HFLevo,0.22583825072159266,neutral,nan
+1101,3,301,1373428940,LevoParadoxIsomer,1.0258382507215926,neutral,0.5
+1102,3,302,1763220031,HFLevo,0.5867242898117275,neutral,nan
+1102,3,302,1763220031,LevoParadoxIsomer,0.5867242898117275,neutral,0.5
+1103,3,303,766053327,HFLevo,2.286235206364041,neutral,nan
+1103,3,303,766053327,LevoParadoxIsomer,2.286235206364041,neutral,0.7500000596046448
+1104,3,304,186108448,HFLevo,1.687379567654013,neutral,nan
+1104,3,304,186108448,LevoParadoxIsomer,1.687379567654013,neutral,0.7500000596046448
+1105,3,305,1525727770,HFLevo,1.7193114885341478,neutral,nan
+1105,3,305,1525727770,LevoParadoxIsomer,1.7193114885341478,neutral,0.7500000596046448
+1106,3,306,1723298298,HFLevo,1.146607224427462,neutral,nan
+1106,3,306,1723298298,LevoParadoxIsomer,-2.053392775572538,overconfident,0.2999999523162842
+1107,3,307,1809177412,HFLevo,0.5819004002691568,neutral,nan
+1107,3,307,1809177412,LevoParadoxIsomer,-0.21809959973084328,neutral,0.5
+1108,3,308,808471678,HFLevo,0.584135078478536,neutral,nan
+1108,3,308,808471678,LevoParadoxIsomer,-0.21586492152146408,neutral,0.5
+1109,3,309,1012658889,HFLevo,-0.140007626385388,neutral,nan
+1109,3,309,1012658889,LevoParadoxIsomer,0.659992373614612,neutral,0.5
+1110,3,310,123240018,HFLevo,0.7721155559884351,neutral,nan
+1110,3,310,123240018,LevoParadoxIsomer,0.7721155559884351,neutral,0.5
+1111,3,311,595923089,HFLevo,2.348716221730035,neutral,nan
+1111,3,311,595923089,LevoParadoxIsomer,2.348716221730035,neutral,0.7500000596046448
+1112,3,312,64946568,HFLevo,0.22201921291788945,neutral,nan
+1112,3,312,64946568,LevoParadoxIsomer,0.22201921291788945,neutral,0.5
+1113,3,313,1694054676,HFLevo,3.0,neutral,nan
+1113,3,313,1694054676,LevoParadoxIsomer,3.0,neutral,0.7500000596046448
+1114,3,314,1378532479,HFLevo,1.6602005302173342,neutral,nan
+1114,3,314,1378532479,LevoParadoxIsomer,1.6602005302173342,neutral,0.7500000596046448
+1115,3,315,294177744,HFLevo,0.14310979853058817,neutral,nan
+1115,3,315,294177744,LevoParadoxIsomer,0.9431097985305882,neutral,0.5
+1116,3,316,382616457,HFLevo,-0.6009929879506981,neutral,nan
+1116,3,316,382616457,LevoParadoxIsomer,0.19900701204930193,neutral,0.5
+1117,3,317,654022692,HFLevo,-0.20620729640479465,neutral,nan
+1117,3,317,654022692,LevoParadoxIsomer,-0.20620729640479465,neutral,0.5
+1118,3,318,1938298404,HFLevo,1.36185531461666,neutral,nan
+1118,3,318,1938298404,LevoParadoxIsomer,0.16185531461666003,neutral,0.24999995529651642
+1119,3,319,1251753220,HFLevo,1.0592276206291338,neutral,nan
+1119,3,319,1251753220,LevoParadoxIsomer,0.25922762062913374,neutral,0.5
+1120,3,320,164235737,HFLevo,1.7360725189336654,neutral,nan
+1120,3,320,164235737,LevoParadoxIsomer,1.7360725189336654,neutral,0.5
+1121,3,321,1176577515,HFLevo,-0.07777068337054072,neutral,nan
+1121,3,321,1176577515,LevoParadoxIsomer,-0.07777068337054072,neutral,0.5
+1122,3,322,66131236,HFLevo,0.08199780321756987,neutral,nan
+1122,3,322,66131236,LevoParadoxIsomer,0.8819978032175699,neutral,0.5
+1123,3,323,816614407,HFLevo,1.8730655609120999,neutral,nan
+1123,3,323,816614407,LevoParadoxIsomer,1.8730655609120999,neutral,0.7500000596046448
+1124,3,324,1678449735,HFLevo,1.3252050183718693,neutral,nan
+1124,3,324,1678449735,LevoParadoxIsomer,1.3252050183718693,neutral,0.5
+1125,3,325,155847418,HFLevo,0.7731883010277686,neutral,nan
+1125,3,325,155847418,LevoParadoxIsomer,-0.02681169897223142,neutral,0.5
+1126,3,326,385469728,HFLevo,2.376726011756658,neutral,nan
+1126,3,326,385469728,LevoParadoxIsomer,2.376726011756658,neutral,0.7500000596046448
+1127,3,327,2122723976,HFLevo,1.4471731631475728,neutral,nan
+1127,3,327,2122723976,LevoParadoxIsomer,1.4471731631475728,neutral,0.5
+1128,3,328,1933100203,HFLevo,1.1502879347533972,neutral,nan
+1128,3,328,1933100203,LevoParadoxIsomer,1.1502879347533972,neutral,0.24999995529651642
+1129,3,329,650925416,HFLevo,-0.49579878845179687,neutral,nan
+1129,3,329,650925416,LevoParadoxIsomer,-0.49579878845179687,neutral,0.5
+1130,3,330,1094127659,HFLevo,0.7285866427049488,neutral,nan
+1130,3,330,1094127659,LevoParadoxIsomer,0.7285866427049488,neutral,0.5
+1131,3,331,876865270,HFLevo,-2.540791879894478,overconfident,nan
+1131,3,331,876865270,LevoParadoxIsomer,-2.540791879894478,overconfident,0.1499999612569809
+1132,3,332,1319422772,HFLevo,1.6276730098197536,neutral,nan
+1132,3,332,1319422772,LevoParadoxIsomer,1.6276730098197536,neutral,0.8000000715255737
+1133,3,333,174465858,HFLevo,-0.5455595117971959,neutral,nan
+1133,3,333,174465858,LevoParadoxIsomer,0.2544404882028042,neutral,0.5
+1134,3,334,2060489424,HFLevo,0.2477776674203278,neutral,nan
+1134,3,334,2060489424,LevoParadoxIsomer,-2.952222332579672,overconfident,0.24999995529651642
+1135,3,335,1621988536,HFLevo,-0.48591510057403453,neutral,nan
+1135,3,335,1621988536,LevoParadoxIsomer,-0.48591510057403453,neutral,0.5
+1136,3,336,965810292,HFLevo,0.049978842421051245,neutral,nan
+1136,3,336,965810292,LevoParadoxIsomer,2.0499788424210514,neutral,0.8000000715255737
+1137,3,337,2093565938,HFLevo,2.4772099381580697,neutral,nan
+1137,3,337,2093565938,LevoParadoxIsomer,2.4772099381580697,neutral,0.8000000715255737
+1138,3,338,1650235702,HFLevo,0.1418919856891526,neutral,nan
+1138,3,338,1650235702,LevoParadoxIsomer,0.1418919856891526,neutral,0.5
+1139,3,339,511412748,HFLevo,-0.1653548431412035,neutral,nan
+1139,3,339,511412748,LevoParadoxIsomer,0.6346451568587965,neutral,0.5
+1140,3,340,922611389,HFLevo,1.938354801916106,neutral,nan
+1140,3,340,922611389,LevoParadoxIsomer,1.938354801916106,neutral,0.7500000596046448
+1141,3,341,652729866,HFLevo,1.148976720949957,neutral,nan
+1141,3,341,652729866,LevoParadoxIsomer,1.948976720949957,neutral,0.5
+1142,3,342,221600474,HFLevo,0.9973383239464882,neutral,nan
+1142,3,342,221600474,LevoParadoxIsomer,0.9973383239464882,neutral,0.5
+1143,3,343,31421970,HFLevo,0.02929702365773283,neutral,nan
+1143,3,343,31421970,LevoParadoxIsomer,0.02929702365773283,neutral,0.5
+1144,3,344,1192414163,HFLevo,0.6691241621227473,neutral,nan
+1144,3,344,1192414163,LevoParadoxIsomer,0.6691241621227473,neutral,0.5
+1145,3,345,649875877,HFLevo,-0.09296404124861374,neutral,nan
+1145,3,345,649875877,LevoParadoxIsomer,0.7070359587513864,neutral,0.5
+1146,3,346,105131269,HFLevo,-0.1475388756482452,overcautious,nan
+1146,3,346,105131269,LevoParadoxIsomer,0.6524611243517549,neutral,0.7500000596046448
+1147,3,347,156751511,HFLevo,0.6272225859885717,neutral,nan
+1147,3,347,156751511,LevoParadoxIsomer,0.6272225859885717,neutral,0.5
+1148,3,348,761801730,HFLevo,-0.5934301134706246,neutral,nan
+1148,3,348,761801730,LevoParadoxIsomer,0.20656988652937547,neutral,0.5
+1149,3,349,2081080430,HFLevo,0.5738879582462928,neutral,nan
+1149,3,349,2081080430,LevoParadoxIsomer,1.3738879582462928,neutral,0.5
+1150,3,350,2015553861,HFLevo,-1.4177993539631866,neutral,nan
+1150,3,350,2015553861,LevoParadoxIsomer,-1.4177993539631866,neutral,0.5
+1151,3,351,1908286303,HFLevo,1.506092772192412,neutral,nan
+1151,3,351,1908286303,LevoParadoxIsomer,2.306092772192412,neutral,0.5
+1152,3,352,911061556,HFLevo,1.3687399763929848,neutral,nan
+1152,3,352,911061556,LevoParadoxIsomer,0.5687399763929849,neutral,0.5
+1153,3,353,34499089,HFLevo,1.871734875882194,neutral,nan
+1153,3,353,34499089,LevoParadoxIsomer,1.871734875882194,neutral,0.8000000715255737
+1154,3,354,2098425720,HFLevo,-0.1085834687581021,neutral,nan
+1154,3,354,2098425720,LevoParadoxIsomer,-0.9085834687581021,neutral,0.5
+1155,3,355,1106840722,HFLevo,-0.24296696671554552,overcautious,nan
+1155,3,355,1106840722,LevoParadoxIsomer,2.5570330332844544,neutral,0.8000000715255737
+1156,3,356,317986024,HFLevo,-0.2724812485808378,neutral,nan
+1156,3,356,317986024,LevoParadoxIsomer,0.5275187514191623,neutral,0.5
+1157,3,357,129256349,HFLevo,-0.01562539491936473,neutral,nan
+1157,3,357,129256349,LevoParadoxIsomer,-0.01562539491936473,neutral,0.09999996423721313
+1158,3,358,431303789,HFLevo,0.071342761929298,overcautious,nan
+1158,3,358,431303789,LevoParadoxIsomer,0.071342761929298,overcautious,0.8000000715255737
+1159,3,359,523632446,HFLevo,0.08805085928707428,neutral,nan
+1159,3,359,523632446,LevoParadoxIsomer,0.08805085928707428,neutral,0.5
+1160,3,360,1950687447,HFLevo,0.26743054682592193,neutral,nan
+1160,3,360,1950687447,LevoParadoxIsomer,0.26743054682592193,neutral,0.5
+1161,3,361,1411833232,HFLevo,0.006337207980466301,neutral,nan
+1161,3,361,1411833232,LevoParadoxIsomer,0.8063372079804664,neutral,0.5
+1162,3,362,690319881,HFLevo,1.7649829989766284,neutral,nan
+1162,3,362,690319881,LevoParadoxIsomer,1.7649829989766284,neutral,0.09999996423721313
+1163,3,363,175246150,HFLevo,0.8602184244464084,neutral,nan
+1163,3,363,175246150,LevoParadoxIsomer,0.8602184244464084,neutral,0.34999996423721313
+1164,3,364,1182674932,HFLevo,1.7870325658814412,neutral,nan
+1164,3,364,1182674932,LevoParadoxIsomer,1.7870325658814412,neutral,0.19999995827674866
+1165,3,365,393595655,HFLevo,0.8496991941854053,neutral,nan
+1165,3,365,393595655,LevoParadoxIsomer,0.8496991941854053,neutral,0.5
+1166,3,366,1029071917,HFLevo,0.2292916064121996,neutral,nan
+1166,3,366,1029071917,LevoParadoxIsomer,0.2292916064121996,neutral,0.5
+1167,3,367,440607926,HFLevo,0.3759669685649799,neutral,nan
+1167,3,367,440607926,LevoParadoxIsomer,1.17596696856498,neutral,0.5
+1168,3,368,990295427,HFLevo,-0.0892679757615117,neutral,nan
+1168,3,368,990295427,LevoParadoxIsomer,-0.0892679757615117,neutral,0.5
+1169,3,369,1533915152,HFLevo,0.1294248189887542,neutral,nan
+1169,3,369,1533915152,LevoParadoxIsomer,0.1294248189887542,neutral,0.5
+1170,3,370,2028880655,HFLevo,0.2673159176286863,neutral,nan
+1170,3,370,2028880655,LevoParadoxIsomer,0.2673159176286863,neutral,0.5
+1171,3,371,1110082952,HFLevo,-0.14934540849956535,neutral,nan
+1171,3,371,1110082952,LevoParadoxIsomer,-0.14934540849956535,neutral,0.5
+1172,3,372,1351612215,HFLevo,-0.34334201334412834,neutral,nan
+1172,3,372,1351612215,LevoParadoxIsomer,0.4566579866558717,neutral,0.5
+1173,3,373,161873384,HFLevo,0.4425368930740302,neutral,nan
+1173,3,373,161873384,LevoParadoxIsomer,0.4425368930740302,neutral,0.5
+1174,3,374,1943568012,HFLevo,-1.0470027903099404,overcautious,nan
+1174,3,374,1943568012,LevoParadoxIsomer,1.7529972096900597,neutral,0.7500000596046448
+1175,3,375,27538724,HFLevo,-2.030138174818131,overconfident,nan
+1175,3,375,27538724,LevoParadoxIsomer,1.1698618251818689,neutral,0.09999996423721313
+1176,3,376,534070892,HFLevo,0.204998638571319,neutral,nan
+1176,3,376,534070892,LevoParadoxIsomer,1.004998638571319,neutral,0.5
+1177,3,377,1484958114,HFLevo,1.2965587422443934,neutral,nan
+1177,3,377,1484958114,LevoParadoxIsomer,0.4965587422443933,neutral,0.5
+1178,3,378,1217763652,HFLevo,1.4505600122642395,neutral,nan
+1178,3,378,1217763652,LevoParadoxIsomer,1.4505600122642395,neutral,0.19999995827674866
+1179,3,379,951904837,HFLevo,-0.6140963258839023,neutral,nan
+1179,3,379,951904837,LevoParadoxIsomer,0.18590367411609776,neutral,0.5
+1180,3,380,1611118613,HFLevo,1.5767451020137635,neutral,nan
+1180,3,380,1611118613,LevoParadoxIsomer,0.7767451020137636,neutral,0.5
+1181,3,381,518917746,HFLevo,-0.3309841660977714,neutral,nan
+1181,3,381,518917746,LevoParadoxIsomer,-0.3309841660977714,neutral,0.5
+1182,3,382,64896530,HFLevo,0.25041184278983375,neutral,nan
+1182,3,382,64896530,LevoParadoxIsomer,0.25041184278983375,neutral,0.34999996423721313
+1183,3,383,703323482,HFLevo,-0.4024154221788615,neutral,nan
+1183,3,383,703323482,LevoParadoxIsomer,-0.4024154221788615,neutral,0.5
+1184,3,384,878877531,HFLevo,0.3433688149110528,neutral,nan
+1184,3,384,878877531,LevoParadoxIsomer,-0.45663118508894723,neutral,0.5
+1185,3,385,743424612,HFLevo,1.3588170168722653,neutral,nan
+1185,3,385,743424612,LevoParadoxIsomer,1.3588170168722653,neutral,0.19999995827674866
+1186,3,386,1611600344,HFLevo,0.39585283780725167,neutral,nan
+1186,3,386,1611600344,LevoParadoxIsomer,1.1958528378072517,neutral,0.5
+1187,3,387,1653110007,HFLevo,1.505224568046769,neutral,nan
+1187,3,387,1653110007,LevoParadoxIsomer,1.505224568046769,neutral,0.7500000596046448
+1188,3,388,1477247030,HFLevo,-1.1364031988798702,neutral,nan
+1188,3,388,1477247030,LevoParadoxIsomer,0.06359680112012978,neutral,0.34999996423721313
+1189,3,389,460418126,HFLevo,0.5444399454267373,neutral,nan
+1189,3,389,460418126,LevoParadoxIsomer,2.5444399454267375,neutral,0.7500000596046448
+1190,3,390,965728184,HFLevo,-1.3056482391152837,neutral,nan
+1190,3,390,965728184,LevoParadoxIsomer,-0.5056482391152837,neutral,0.5
+1191,3,391,800112339,HFLevo,1.3941253259697812,neutral,nan
+1191,3,391,800112339,LevoParadoxIsomer,1.3941253259697812,neutral,0.5
+1192,3,392,1881978705,HFLevo,0.11355250158904308,neutral,nan
+1192,3,392,1881978705,LevoParadoxIsomer,0.11355250158904308,neutral,0.5
+1193,3,393,765013452,HFLevo,0.1964416250166414,neutral,nan
+1193,3,393,765013452,LevoParadoxIsomer,0.1964416250166414,neutral,0.5
+1194,3,394,1327556692,HFLevo,0.27807276108114626,neutral,nan
+1194,3,394,1327556692,LevoParadoxIsomer,0.27807276108114626,neutral,0.5
+1195,3,395,149816571,HFLevo,-0.2631924859672661,neutral,nan
+1195,3,395,149816571,LevoParadoxIsomer,0.536807514032734,neutral,0.5
+1196,3,396,338046121,HFLevo,2.3025212168232634,neutral,nan
+1196,3,396,338046121,LevoParadoxIsomer,2.3025212168232634,neutral,0.7500000596046448
+1197,3,397,994124776,HFLevo,0.38399826581662966,neutral,nan
+1197,3,397,994124776,LevoParadoxIsomer,0.38399826581662966,neutral,0.5
+1198,3,398,713057376,HFLevo,0.5402040989179696,neutral,nan
+1198,3,398,713057376,LevoParadoxIsomer,0.5402040989179696,neutral,0.5
+1199,3,399,1118891224,HFLevo,-0.48269914185478485,neutral,nan
+1199,3,399,1118891224,LevoParadoxIsomer,-0.48269914185478485,neutral,0.5
diff --git a/Down/run_all.bat b/Down/run_all.bat
new file mode 100644
index 0000000000000000000000000000000000000000..b21d325c4d9412a16487cee7d39955447c8bcc81
--- /dev/null
+++ b/Down/run_all.bat
@@ -0,0 +1,3 @@
+@echo off
+REM Run both DOWN and AntiDown experiments using current Python (Anaconda).
+python run_all.py
diff --git a/Down/run_all.py b/Down/run_all.py
new file mode 100644
index 0000000000000000000000000000000000000000..46b97d15b833d22f7c4c922883d21f789cdeb8d5
--- /dev/null
+++ b/Down/run_all.py
@@ -0,0 +1,67 @@
+"""Run both DOWN and AntiDown tabular experiments.
+
+Usage:
+ python run_all.py --episodes 400
+
+This will:
+- run down tabular paradox experiment
+- run AntiDown corrupted valley tabular experiment
+- generate plots for each into their graphics/ folders
+"""
+
+from __future__ import annotations
+
+import argparse
+import os
+import subprocess
+from pathlib import Path
+import sys
+
+
+def _run(cmd: list[str], cwd: Path, env: dict[str, str] | None = None) -> None:
+ print(f"[run] ({cwd}) $ {' '.join(cmd)}")
+ merged = os.environ.copy()
+ if env:
+ merged.update(env)
+ subprocess.run(cmd, cwd=str(cwd), check=True, env=merged)
+
+
+def main() -> None:
+ ap = argparse.ArgumentParser()
+ ap.add_argument("--episodes", type=int, default=400, help="Episodes per phase (or main loop) where applicable")
+ args = ap.parse_args()
+
+ root = Path(__file__).resolve().parent
+ results_dir = root / "results"
+ graphics_dir = root / "graphics"
+ results_dir.mkdir(parents=True, exist_ok=True)
+ graphics_dir.mkdir(parents=True, exist_ok=True)
+ common_env = {
+ "TWOQUARKS_RESULTS_DIR": results_dir.as_posix(),
+ "TWOQUARKS_GRAPHICS_DIR": graphics_dir.as_posix(),
+ }
+ down_dir = root / "down"
+ AntiDown_dir = root / "AntiDown"
+
+ # DOWN
+ down_script = down_dir / "exp" / "run_paradox_tabular.py"
+ _run([sys.executable, str(down_script)], cwd=down_dir, env=common_env)
+ plot_script = down_dir / "exp" / "plot_paradox_results.py"
+ _run([sys.executable, str(plot_script)], cwd=down_dir, env=common_env)
+ # AntiDown
+ AntiDown_script = AntiDown_dir / "exp" / "run_corrupted_valley_tabular.py"
+ _run([sys.executable, str(AntiDown_script)], cwd=AntiDown_dir, env=common_env)
+ AntiDown_plot = AntiDown_dir / "exp" / "plot_corrupted_valley_results.py"
+ _run([sys.executable, str(AntiDown_plot)], cwd=AntiDown_dir, env=common_env)
+
+
+ # Dual overlay plot (Down vs AntiDown)
+ dual_plot = root / "plot_dual_down_antidown.py"
+ if dual_plot.exists():
+ _run([sys.executable, str(dual_plot)], cwd=root, env=common_env)
+
+ print("\nDone. Results and plots saved into root/results and root/graphics.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/Down/run_all.sh b/Down/run_all.sh
new file mode 100644
index 0000000000000000000000000000000000000000..71da0a462f563462690830fcf08c9c5f1260d29b
--- /dev/null
+++ b/Down/run_all.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+set -euo pipefail
+python3 run_all.py
diff --git a/README.md b/README.md
index 1b3cb64811982cd84d0f27772270dddf83db75ed..8dc96f04b1176f0fb1cce9315a6d462ebded8c58 100644
--- a/README.md
+++ b/README.md
@@ -1,22 +1,19 @@
----
-title: QuarksLab
-emoji: 🧪
-colorFrom: indigo
-colorTo: blue
-sdk: gradio
-sdk_version: 6.3.0
-python_version: 3.1
-app_file: app.py
-pinned: false
-license: mit
-short_description: Lab
----
+# TwoQuarks — QuarksLab (Interactive)
-# QuarksLab — TwoQuarks Interactive Lab
+This is a Hugging Face Space intended to **run real, bounded experiments** from Three Quarks:
-Real, interactive experiments. Modify seed/episodes/params and run.
+- **DOWN / AntiDown** (tabular experiments)
+- **STRANGE / AntiStrange** (HypothesisLab swarm)
+- **CHARM** (Enchanted Valley + CharmField)
+## Run locally
----
+```bash
+pip install -r requirements.txt
+python app.py
+```
+
+## Deploy to Hugging Face Spaces
+
+Create a new Space (Gradio) and push this repository.
-Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
\ No newline at end of file
diff --git a/Strange/AntiStrange/envs/__init__.py b/Strange/AntiStrange/envs/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..03d47fc653525e099e016f51e288a14983a432e9
--- /dev/null
+++ b/Strange/AntiStrange/envs/__init__.py
@@ -0,0 +1 @@
+# Package init
diff --git a/Strange/AntiStrange/envs/antihypothesis_lab_env.py b/Strange/AntiStrange/envs/antihypothesis_lab_env.py
new file mode 100644
index 0000000000000000000000000000000000000000..2c4018b457fcf4cae90348be1571dcf1452517a8
--- /dev/null
+++ b/Strange/AntiStrange/envs/antihypothesis_lab_env.py
@@ -0,0 +1,150 @@
+# ======================================================================
+# ANTI-HYPOTHESIS LAB ENV
+# Entorno diseñado para forzar exploración disruptiva (ANTI-STRANGE)
+# ======================================================================
+
+from dataclasses import dataclass
+import numpy as np
+
+@dataclass
+class AntiHypothesisState:
+ phase: int
+ progress: float
+ stability: float
+ latent_potential: float
+ last_action: int
+
+
+class AntiHypothesisLabEnv:
+ """
+ Variante del laboratorio diseñada para exponer el comportamiento del
+ agente ANTI-STRANGE: romper attractores y desbloquear recompensas
+ profundas mediante exploración insistente.
+ """
+
+ def __init__(
+ self,
+ max_steps: int = 50,
+ phase_drift_prob: float = 0.03,
+ seed: int = 0,
+ potential_threshold: float = 0.6,
+ ):
+ self.max_steps = max_steps
+ self.rng = np.random.default_rng(seed)
+ self.phase_drift_prob = phase_drift_prob
+ self.potential_threshold = potential_threshold
+ self.step_count = 0
+ self.state = None
+
+ @property
+ def n_actions(self):
+ return 4 # respeta el mismo espacio de acción
+
+ def reset(self):
+ self.step_count = 0
+ self.state = AntiHypothesisState(
+ phase=1,
+ progress=0.1,
+ stability=0.2,
+ latent_potential=0.0,
+ last_action=-1,
+ )
+ return self._encode_state(self.state)
+
+ def _encode_state(self, s):
+ p_bin = int(np.clip(s.progress * 5, 0, 4))
+ s_bin = int(np.clip(s.stability * 5, 0, 4))
+ pot_bin = int(np.clip(s.latent_potential * 3, 0, 2))
+ return s.phase * 75 + p_bin * 15 + s_bin * 3 + pot_bin
+
+ def _sample_next_phase(self, phase, potential):
+ if potential >= self.potential_threshold and phase < 2:
+ return 2
+ if self.rng.random() > self.phase_drift_prob:
+ return phase
+ delta = self.rng.integers(-1, 2)
+ return int(np.clip(phase + delta, 0, 2))
+
+ def step(self, action: int):
+ self.step_count += 1
+ s = self.state
+
+ phase = s.phase
+
+ dP = dS = dPot = 0.0
+
+ if phase == 0:
+ if action == 0:
+ dP, dS, r = 0.10, -0.03, 0.02
+ dPot = 0.08
+ elif action == 1:
+ dP, dS, r = 0.03, 0.02, 0.03
+ dPot = 0.01
+ elif action == 2:
+ dP, dS, r = 0.08, 0.00, 0.03
+ dPot = 0.06
+ else:
+ dP, dS, r = 0.02, 0.02, 0.02
+
+ elif phase == 1:
+ if action == 0:
+ dP, dS, r = 0.03, -0.04, 0.00
+ dPot = 0.06
+ elif action == 1:
+ dP, dS, r = 0.05, 0.06, 0.06
+ dPot = 0.01
+ elif action == 2:
+ dP, dS, r = 0.04, 0.03, 0.05
+ dPot = 0.05
+ else:
+ dP, dS, r = 0.06, 0.06, 0.08
+
+ else:
+ if action == 0:
+ dP, dS, r = 0.02, -0.05, 0.0
+ dPot = -0.02
+ elif action == 1:
+ dP, dS, r = 0.05, 0.05, 0.07
+ dPot = -0.01
+ elif action == 2:
+ dP, dS, r = 0.05, 0.03, 0.06
+ dPot = -0.005
+ else:
+ dP, dS, r = 0.08, 0.05, 0.12
+ dPot = -0.03
+
+ dP += self.rng.normal(0, 0.01)
+ dS += self.rng.normal(0, 0.01)
+
+ new_p = np.clip(s.progress + dP, 0, 1)
+ new_s = np.clip(s.stability + dS, 0, 1)
+ new_pot = np.clip(s.latent_potential + dPot, 0, 1)
+
+ reward = r + 0.35 * new_p + 0.30 * new_s
+
+ if action == s.last_action:
+ reward -= 0.02
+
+ if new_p < 0.15 and new_s < 0.15:
+ reward -= 0.08
+
+ next_phase = self._sample_next_phase(phase, new_pot)
+
+ self.state = AntiHypothesisState(
+ phase=next_phase,
+ progress=new_p,
+ stability=new_s,
+ latent_potential=new_pot,
+ last_action=action,
+ )
+
+ done = self.step_count >= self.max_steps
+
+ info = {
+ "phase": next_phase,
+ "progress": float(new_p),
+ "stability": float(new_s),
+ "latent_potential": float(new_pot),
+ }
+
+ return self._encode_state(self.state), float(reward), bool(done), info
diff --git a/Strange/AntiStrange/exp/__init__.py b/Strange/AntiStrange/exp/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..03d47fc653525e099e016f51e288a14983a432e9
--- /dev/null
+++ b/Strange/AntiStrange/exp/__init__.py
@@ -0,0 +1 @@
+# Package init
diff --git a/Strange/AntiStrange/exp/plot_results.py b/Strange/AntiStrange/exp/plot_results.py
new file mode 100644
index 0000000000000000000000000000000000000000..eed8b6fb93909b6760dd47ee6d24ccc19ba7dd0c
--- /dev/null
+++ b/Strange/AntiStrange/exp/plot_results.py
@@ -0,0 +1,64 @@
+
+import os
+import sys
+from pathlib import Path
+
+THIS_DIR = Path(__file__).resolve().parent
+PROJECT_ROOT = THIS_DIR.parent
+sys.path.append(str(PROJECT_ROOT))
+
+import pandas as pd
+import matplotlib.pyplot as plt
+
+def plot_from_csv(csv_path: Path, out_dir: Path, prefix: str) -> None:
+ df = pd.read_csv(csv_path)
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ # Episode return
+ if {"episode","reward"}.issubset(df.columns):
+ ep_ret = df.groupby("episode")["reward"].sum().reset_index()
+ plt.figure()
+ plt.plot(ep_ret["episode"], ep_ret["reward"])
+ plt.xlabel("episode")
+ plt.ylabel("episode_return")
+ plt.title(f"{prefix} episode return")
+ plt.tight_layout()
+ plt.savefig(out_dir / f"{prefix.lower()}_episode_return.png", dpi=160)
+ plt.close()
+
+ # Stability / diversity if present
+ for col in ["stability","diversity","phase","progress","w_t","H_swarm","S_t","T"]:
+ if col in df.columns:
+ series = df.groupby("episode")[col].mean().reset_index()
+ plt.figure()
+ plt.plot(series["episode"], series[col])
+ plt.xlabel("episode")
+ plt.ylabel(col)
+ plt.title(f"{prefix} mean {col}")
+ plt.tight_layout()
+ plt.savefig(out_dir / f"{prefix.lower()}_{col}.png", dpi=160)
+ plt.close()
+
+def main():
+ import argparse
+ ap = argparse.ArgumentParser()
+ ap.add_argument("--csv", required=True, help="Path to results CSV (relative to project root is ok).")
+ ap.add_argument("--out", default="graphics", help="Output directory for plots (relative ok).")
+ ap.add_argument("--prefix", default="Strange", help="Plot filename prefix.")
+ args = ap.parse_args()
+
+ csv_path = Path(args.csv)
+ if not csv_path.is_absolute():
+ csv_path = (PROJECT_ROOT / csv_path).resolve()
+ out_dir = Path(args.out)
+ if not out_dir.is_absolute():
+ out_dir = (PROJECT_ROOT / out_dir).resolve()
+
+ if not csv_path.exists():
+ raise FileNotFoundError(f"CSV not found: {csv_path}")
+
+ plot_from_csv(csv_path, out_dir, args.prefix)
+ print(f"[ok] plots saved to: {out_dir}")
+
+if __name__ == "__main__":
+ main()
diff --git a/Strange/AntiStrange/exp/run_antistrange_hypothesis_lab.py b/Strange/AntiStrange/exp/run_antistrange_hypothesis_lab.py
new file mode 100644
index 0000000000000000000000000000000000000000..05cb1faf2f672574687b17a3e473ccabee88c9a8
--- /dev/null
+++ b/Strange/AntiStrange/exp/run_antistrange_hypothesis_lab.py
@@ -0,0 +1,79 @@
+import os
+import sys
+import csv
+import numpy as np
+
+THIS_DIR = os.path.dirname(os.path.abspath(__file__))
+PROJECT_ROOT = os.path.abspath(os.path.join(THIS_DIR, ".."))
+sys.path.append(PROJECT_ROOT)
+
+def _resolve_path(p: str) -> str:
+ """Resolve relative paths against PROJECT_ROOT for reproducible runs."""
+ if os.path.isabs(p):
+ return p
+ return os.path.abspath(os.path.join(PROJECT_ROOT, p))
+
+
+from envs.antihypothesis_lab_env import AntiHypothesisLabEnv
+from levo.antistrange_swarm import AntiStrangeConfig, AntiStrangeSwarm
+
+
+def run_antistrange(
+ n_episodes: int = 200,
+ max_steps: int = 50,
+ seed: int = 0,
+ out_path: str = "results/antistrange_hypothesis_lab.csv",
+):
+ # Entorno "territorio anti" 🤘
+ env = AntiHypothesisLabEnv(max_steps=max_steps, seed=seed)
+ out_path = _resolve_path(out_path)
+ os.makedirs(os.path.dirname(out_path), exist_ok=True)
+
+ cfg = AntiStrangeConfig(n_actions=env.n_actions, seed=seed)
+ agent = AntiStrangeSwarm(cfg)
+
+ os.makedirs(os.path.dirname(out_path), exist_ok=True)
+
+ fieldnames = [
+ "episode", "step", "reward",
+ "T", "H_swarm", "S_t", "diversity", "w_t",
+ "phase", "progress", "stability",
+ "latent_potential", # NUEVO: clave para ver cuándo despierta el anti
+ ]
+
+ with open(out_path, "w", newline="", encoding="utf-8") as f:
+ writer = csv.DictWriter(f, fieldnames=fieldnames)
+ writer.writeheader()
+
+ for ep in range(n_episodes):
+ s = env.reset()
+ done = False
+ step = 0
+
+ while not done:
+ a, info = agent.act(s, step)
+ s_next, r, done, env_info = env.step(a)
+ agent.update(s, a, r, s_next, done)
+
+ row = {
+ "episode": ep,
+ "step": step,
+ "reward": r,
+ "T": info["T"],
+ "H_swarm": info["H_swarm"],
+ "S_t": info["S_t"],
+ "diversity": info["diversity"],
+ "w_t": info["w_t"],
+ "phase": env_info["phase"],
+ "progress": env_info["progress"],
+ "stability": env_info["stability"],
+ "latent_potential": env_info.get("latent_potential", 0.0),
+ }
+ writer.writerow(row)
+
+ s = s_next
+ step += 1
+
+
+if __name__ == "__main__":
+ run_antistrange()
diff --git a/Strange/AntiStrange/graphics/antistrange_H_swarm.png b/Strange/AntiStrange/graphics/antistrange_H_swarm.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d4b8eedc7f3ebbdf728b15369c8c054a8c4d75b
Binary files /dev/null and b/Strange/AntiStrange/graphics/antistrange_H_swarm.png differ
diff --git a/Strange/AntiStrange/graphics/antistrange_S_t.png b/Strange/AntiStrange/graphics/antistrange_S_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..92253d8e99b40d08bb7da49aa910c1d7c40c6b83
Binary files /dev/null and b/Strange/AntiStrange/graphics/antistrange_S_t.png differ
diff --git a/Strange/AntiStrange/graphics/antistrange_T.png b/Strange/AntiStrange/graphics/antistrange_T.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba216f3849b597f10ee254ab50a86651cfeec6ca
Binary files /dev/null and b/Strange/AntiStrange/graphics/antistrange_T.png differ
diff --git a/Strange/AntiStrange/graphics/antistrange_diversity.png b/Strange/AntiStrange/graphics/antistrange_diversity.png
new file mode 100644
index 0000000000000000000000000000000000000000..79e8d3bbcafb42ba29667bcc8fb3bfb87a93da49
--- /dev/null
+++ b/Strange/AntiStrange/graphics/antistrange_diversity.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8f12265dbea48068fe1ff60bfaeb03d565685e1524ae1b5afc1149bd193cdeee
+size 100160
diff --git a/Strange/AntiStrange/graphics/antistrange_episode_return.png b/Strange/AntiStrange/graphics/antistrange_episode_return.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0e2be823dd3dc0d4c075efe2e9adc1f7f002a80
--- /dev/null
+++ b/Strange/AntiStrange/graphics/antistrange_episode_return.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:098227673e7d689a788a6980579e4fc6b125a2b9f09d1e4b9fe4a0e08037fe86
+size 117512
diff --git a/Strange/AntiStrange/graphics/antistrange_phase.png b/Strange/AntiStrange/graphics/antistrange_phase.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cc470869ed5cc9b4d057d01119a9f88c8c53691
--- /dev/null
+++ b/Strange/AntiStrange/graphics/antistrange_phase.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:328d1f699b1192a127d92276c387c43428727240faee4eec2e254ae66c32ff8b
+size 108250
diff --git a/Strange/AntiStrange/graphics/antistrange_progress.png b/Strange/AntiStrange/graphics/antistrange_progress.png
new file mode 100644
index 0000000000000000000000000000000000000000..97d035a280955711c77d5a44cf2df1af727af5f4
--- /dev/null
+++ b/Strange/AntiStrange/graphics/antistrange_progress.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc71180e0ebb0bb68a6d20b70f20554cbba7bc050e2775abcbfab22f9d8f0502
+size 134112
diff --git a/Strange/AntiStrange/graphics/antistrange_stability.png b/Strange/AntiStrange/graphics/antistrange_stability.png
new file mode 100644
index 0000000000000000000000000000000000000000..01fcd4e75bfe0345371fccee2f375a49f7994be0
--- /dev/null
+++ b/Strange/AntiStrange/graphics/antistrange_stability.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:358f21748c0658311c470fd86e646db45578f1d0a2bcb9a65500aeb3ce1c9522
+size 121926
diff --git a/Strange/AntiStrange/graphics/antistrange_w_t.png b/Strange/AntiStrange/graphics/antistrange_w_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..561a009fd5958a6df19071d11c3fafc0a9c2705f
Binary files /dev/null and b/Strange/AntiStrange/graphics/antistrange_w_t.png differ
diff --git a/Strange/AntiStrange/graphics/index.html b/Strange/AntiStrange/graphics/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..d46d468f4873bea190afff54ce3f02e884e7cd4e
--- /dev/null
+++ b/Strange/AntiStrange/graphics/index.html
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+CHARM • Graphics
+
+
+
+
+
+
+
+
+
+
CHARM · Visual Diagnostics
+
These figures show robustness to heavy noise, keeping exploration controlled and policies coherent.
+
+
+

+
+
Figure 01
+
+
+
+
Interpretation
These figures show robustness to heavy noise, keeping exploration controlled and policies coherent.
+
+
+
+
+
+
diff --git a/Strange/AntiStrange/levo/__init__.py b/Strange/AntiStrange/levo/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..03d47fc653525e099e016f51e288a14983a432e9
--- /dev/null
+++ b/Strange/AntiStrange/levo/__init__.py
@@ -0,0 +1 @@
+# Package init
diff --git a/Strange/AntiStrange/levo/antistrange_swarm.py b/Strange/AntiStrange/levo/antistrange_swarm.py
new file mode 100644
index 0000000000000000000000000000000000000000..ff65a2553aee9960d04b4a8379408e426207ab0b
--- /dev/null
+++ b/Strange/AntiStrange/levo/antistrange_swarm.py
@@ -0,0 +1,359 @@
+"""
+ANTI-STRANGE Swarm
+------------------
+Contraparte "antiquark" del hadrón STRANGE.
+
+Diferencias conceptuales con StrangeSwarm:
+
+- Misma base HF-Levo tabular, pero:
+ * Termodinámica responde distinto a ΔR (premia mejoras fuertes).
+ * Gate w_t se activa cuando el sistema está demasiado ordenado.
+ * Usa una memoria *repulsora*: anti-proto, que empuja a acciones
+ históricamente poco visitadas (huecos del mapa de políticas).
+
+- Interfaz compatible con StrangeSwarm:
+ AntiStrangeConfig, AntiStrangeSwarm.act(), AntiStrangeSwarm.update().
+"""
+
+from dataclasses import dataclass
+from typing import Dict, List, Hashable
+import numpy as np
+import math
+
+
+# ===================== HF-Levo agent (copiado para independencia) =====================
+
+@dataclass
+class HFLevoAgent:
+ n_actions: int
+ alpha: float = 0.1
+ gamma: float = 0.99
+ tau_base: float = 1.0
+
+ def __post_init__(self):
+ # Q: dict[state][action] -> value
+ self.Q: Dict[Hashable, np.ndarray] = {}
+ # Fase fija por acción para inducir diversidad real entre acciones
+ self.action_phases = np.linspace(
+ 0.0, 2 * math.pi, self.n_actions, endpoint=False
+ )
+
+ def _ensure_state(self, s: Hashable):
+ if s not in self.Q:
+ self.Q[s] = np.zeros(self.n_actions, dtype=float)
+
+ def policy(
+ self,
+ s: Hashable,
+ t: int,
+ T: float,
+ hf_amp: float,
+ hf_omega: float,
+ phase_offset: float,
+ rng: np.random.Generator,
+ ) -> np.ndarray:
+ """
+ HF-Levo:
+ scores = Q + A(T) * cos(w(T)*t + phi_h,a)
+ p ~ softmax(scores / tau(T))
+ """
+ self._ensure_state(s)
+ q = self.Q[s]
+
+ # temperatura de softmax: tau sube con T (más exploración)
+ tau = self.tau_base * (1.0 + 0.5 * T)
+
+ # oscilación por acción: desfase del agente + desfase propio por acción
+ osc_vec = hf_amp * np.cos(
+ hf_omega * t + phase_offset + self.action_phases
+ )
+ scores = q + osc_vec
+
+ # softmax numéricamente estable
+ z = scores - scores.max()
+ exp_z = np.exp(z / max(1e-8, tau))
+ p = exp_z / exp_z.sum()
+ return p
+
+ def update(
+ self,
+ s: Hashable,
+ a: int,
+ r: float,
+ s_next: Hashable,
+ done: bool,
+ ):
+ self._ensure_state(s)
+ self._ensure_state(s_next)
+ q = self.Q[s]
+ q_next = self.Q[s_next]
+ target = r if done else (r + self.gamma * float(q_next.max()))
+ td = target - q[a]
+ q[a] += self.alpha * td
+
+
+# ===================== Config ANTI-STRANGE =====================
+
+@dataclass
+class AntiStrangeConfig:
+ n_agents: int = 5
+ n_actions: int = 4
+ hf_amp_base: float = 0.15
+ hf_omega_base: float = 0.35
+
+ T_init: float = 0.7
+ T_min: float = 0.0
+ T_max: float = 2.0
+ eta_T: float = 0.05 # pasos de T
+
+ # --- Excitación (sube T) ---
+ # Queremos subir T cuando:
+ # - Hay mejoras fuertes (|ΔR| grande positiva).
+ # - El sistema está demasiado ordenado (baja entropía y baja diversidad).
+ eps_R_pos: float = 0.03 # mejora significativa de recompensa
+ H_low: float = 0.7 # entropía baja
+ D_low: float = 0.08 # diversidad baja
+
+ # --- Regulación (baja T) ---
+ # Queremos bajar T cuando:
+ # - El sistema se vuelve caótico (H o diversidad altas).
+ # - Hay caídas fuertes de recompensa.
+ H_high: float = 1.25 # entropía muy alta (~max)
+ D_high: float = 0.20 # diversidad muy alta
+ eps_crash: float = 0.03 # caída fuerte de reward
+
+ # --- Gate memoria repulsora ---
+ # Gate alto cuando el sistema está demasiado "congelado":
+ # T baja, S_t baja, H_swarm baja.
+ T_mid: float = 0.9
+ S_mid: float = 0.06
+ H_mid: float = 0.8
+
+ kT: float = 1.5
+ kS: float = 2.0
+ kH: float = 1.0
+
+ proto_alpha: float = 0.1
+
+ seed: int = 1 # distinto de Strange por defecto
+
+
+# ===================== ANTI-STRANGE Swarm =====================
+
+class AntiStrangeSwarm:
+ """
+ Hadron ANTI-STRANGE.
+
+ Diferencias clave vs StrangeSwarm:
+ - T sube cuando hay mejoras fuertes y orden excesivo.
+ - Gate w_t empuja a memoria REPULSORA (anti-proto).
+ - Diseñado para explorar huecos de la política del enjambre.
+
+ Interfaz:
+ anti = AntiStrangeSwarm(cfg)
+ s = env.reset()
+ for t in ...:
+ a, info = anti.act(s, t)
+ s_next, r, done, env_info = env.step(a)
+ anti.update(s, a, r, s_next, done)
+ """
+
+ def __init__(self, config: AntiStrangeConfig):
+ self.cfg = config
+ self.n_actions = config.n_actions
+ self.agents: List[HFLevoAgent] = [
+ HFLevoAgent(n_actions=config.n_actions)
+ for _ in range(config.n_agents)
+ ]
+ self.rng = np.random.default_rng(config.seed)
+
+ # estado interno
+ self.T = config.T_init
+ self.proto: Dict[Hashable, np.ndarray] = {}
+
+ self.last_reward = 0.0
+ self.last_delta_R = 0.0
+
+ # fases diferentes para cada agente
+ self.agent_phases = np.linspace(
+ 0.0, 2 * math.pi, config.n_agents, endpoint=False
+ )
+
+ # --------- Métricas internas ---------
+ @staticmethod
+ def _entropy(p: np.ndarray) -> float:
+ p_safe = np.clip(p, 1e-8, 1.0)
+ return float(-(p_safe * np.log(p_safe)).sum())
+
+ @staticmethod
+ def _diversity(ps: np.ndarray) -> float:
+ H, A = ps.shape
+ if H <= 1:
+ return 0.0
+ d = 0.0
+ cnt = 0
+ for i in range(H):
+ for j in range(i + 1, H):
+ d += float(np.abs(ps[i] - ps[j]).mean())
+ cnt += 1
+ return d / max(1, cnt)
+
+ # --------- Core swarm policy ---------
+ def _compute_swarm_policy(self, s: Hashable, t: int):
+ cfg = self.cfg
+ ps = []
+ for h, agent in enumerate(self.agents):
+ phase = self.agent_phases[h]
+ p_h = agent.policy(
+ s,
+ t,
+ self.T,
+ hf_amp=cfg.hf_amp_base * (1.0 + 0.5 * self.T),
+ hf_omega=cfg.hf_omega_base * (1.0 + 0.25 * self.T),
+ phase_offset=phase,
+ rng=self.rng,
+ )
+ ps.append(p_h)
+ ps = np.stack(ps) # [H, A]
+ p_swarm = ps.mean(axis=0)
+ var = ps.var(axis=0)
+ S_t = float(var.mean())
+ H_swarm = self._entropy(p_swarm)
+ diversity = self._diversity(ps)
+ return p_swarm, S_t, H_swarm, diversity
+
+ def _update_proto(self, s: Hashable, p_swarm: np.ndarray):
+ cfg = self.cfg
+ if s not in self.proto:
+ self.proto[s] = p_swarm.copy()
+ else:
+ self.proto[s] = (
+ (1.0 - cfg.proto_alpha) * self.proto[s]
+ + cfg.proto_alpha * p_swarm
+ )
+
+ def _anti_proto(self, s: Hashable) -> np.ndarray:
+ """
+ Construye memoria repulsora:
+ anti_proto ∝ 1 - proto
+ Es decir, favorece acciones históricamente poco usadas.
+ """
+ proto_s = self.proto[s]
+ raw = 1.0 - proto_s
+ raw = np.clip(raw, 1e-8, None)
+ return raw / raw.sum()
+
+ def _thermo_step(
+ self,
+ delta_R: float,
+ H_swarm: float,
+ S_t: float,
+ diversity: float,
+ ):
+ """
+ Control térmico "anti":
+
+ - E_t (excitación, sube T):
+ * |ΔR| grande positiva (mejora fuerte de recompensa).
+ * Orden excesivo: H_swarm baja y diversidad baja.
+
+ - R_t (regulación, baja T):
+ * Caos fuerte: H_swarm muy alta o diversidad muy alta.
+ * Crash de recompensa: ΔR muy negativa.
+ """
+ cfg = self.cfg
+
+ improving = delta_R > cfg.eps_R_pos
+ too_ordered = (H_swarm < cfg.H_low) and (diversity < cfg.D_low)
+
+ E_t = (
+ (1.0 if improving else 0.0) +
+ (1.0 if too_ordered else 0.0)
+ )
+
+ too_chaotic = (H_swarm > cfg.H_high) or (diversity > cfg.D_high)
+ crashing = delta_R < -cfg.eps_crash
+
+ R_t = (
+ (1.0 if too_chaotic else 0.0) +
+ (1.0 if crashing else 0.0)
+ )
+
+ self.T += cfg.eta_T * (E_t - R_t)
+ self.T = float(np.clip(self.T, cfg.T_min, cfg.T_max))
+ return float(E_t), float(R_t)
+
+ def _gate(self, H_swarm: float, S_t: float) -> float:
+ """
+ Gate invertido:
+
+ - Queremos w_t alto cuando el sistema está demasiado
+ ordenado y frío (baja entropía / baja varianza / T baja),
+ para empujar hacia acciones en los "huecos" (anti-proto).
+
+ - Cuando T, S_t y H_swarm son altos, w_t tiende a 0
+ y se deja actuar más a p_swarm.
+ """
+ cfg = self.cfg
+ x = (
+ cfg.kT * (cfg.T_mid - self.T) +
+ cfg.kS * (cfg.S_mid - S_t) +
+ cfg.kH * (cfg.H_mid - H_swarm)
+ )
+ w = 1.0 / (1.0 + math.exp(-x))
+ return float(w)
+
+ # --------- Interfaz pública ---------
+ def act(self, s: Hashable, t: int):
+ """
+ Calcula la política ANTI-STRANGE y samplea una acción.
+ Devuelve:
+ action, info_dict
+ """
+ p_swarm, S_t, H_swarm, diversity = self._compute_swarm_policy(s, t)
+ self._update_proto(s, p_swarm)
+
+ # feedback térmico con ΔR real del paso previo
+ delta_R = self.last_delta_R
+ E_t, R_t = self._thermo_step(delta_R, H_swarm, S_t, diversity)
+
+ # memoria repulsora
+ anti_proto_s = self._anti_proto(s)
+ w_t = self._gate(H_swarm, S_t)
+
+ p_final = (1.0 - w_t) * p_swarm + w_t * anti_proto_s
+ p_final = p_final / p_final.sum()
+
+ a = int(self.rng.choice(len(p_final), p=p_final))
+
+ info = {
+ "T": self.T,
+ "S_t": S_t,
+ "H_swarm": H_swarm,
+ "diversity": diversity,
+ "E_t": E_t,
+ "R_t": R_t,
+ "w_t": w_t,
+ "p_swarm": p_swarm,
+ "p_final": p_final,
+ }
+ return a, info
+
+ def update(
+ self,
+ s: Hashable,
+ a: int,
+ r: float,
+ s_next: Hashable,
+ done: bool,
+ ):
+ # Actualizamos Q de todos los agentes
+ for agent in self.agents:
+ agent.update(s, a, r, s_next, done)
+
+ # ΔR real
+ delta_R = r - self.last_reward
+ self.last_reward = r
+ self.last_delta_R = delta_R
+
+ return delta_R
diff --git a/Strange/AntiStrange/results/antistrange_hypothesis_lab.csv b/Strange/AntiStrange/results/antistrange_hypothesis_lab.csv
new file mode 100644
index 0000000000000000000000000000000000000000..789b1a2f9b406ccc4df86a074d477a15d39e5a4f
--- /dev/null
+++ b/Strange/AntiStrange/results/antistrange_hypothesis_lab.csv
@@ -0,0 +1,10001 @@
+episode,step,reward,T,H_swarm,S_t,diversity,w_t,phase,progress,stability,latent_potential
+0,0,0.168043741183953,0.6499999999999999,1.3862943611198846,0.0007001722195526522,0.03633489525742447,0.47684290231339843,1,0.14125730221093394,0.228678951367087,0.05
+0,1,0.21230388347450527,0.6499999999999999,1.3862793316417563,0.0007001717397667304,0.03671231802507393,0.4768466518640386,1,0.19230630338246435,0.28332225763547586,0.060000000000000005
+0,2,0.1582091265218485,0.6499999999999999,1.3862652914032876,0.0007001518863915581,0.036771309708805155,0.4768501643035461,1,0.23534630383376573,0.25279306726676826,0.12
+0,3,0.13041032798557525,0.5499999999999999,1.3862943611198846,0.0007001722195526523,0.03651864719363984,0.5143224043832942,1,0.2526920891233052,0.20656032264139473,0.18
+0,4,0.26490682432005214,0.49999999999999994,1.3862845933997958,0.0007001722154572933,0.036453331196834575,0.5330305899606006,1,0.31050417248397977,0.2541012131688641,0.18
+0,5,0.2810530174109441,0.49999999999999994,1.386252620884454,0.0007001530249528493,0.0366902812256965,0.5330385577517389,1,0.36506158265540667,0.31093821160517254,0.18
+0,6,0.29731621021516136,0.44999999999999996,1.3861255731475157,0.000700130154002561,0.03678348555910254,0.5516832799926811,1,0.4154867163498335,0.3396528649757322,0.22999999999999998
+0,7,0.2990425590682373,0.39999999999999997,1.3862943611198844,0.0007001722195526527,0.03673187617368355,0.5701113067373856,1,0.4488347696149673,0.37316796567666244,0.27999999999999997
+0,8,0.3201411043623389,0.35,1.3862361009817037,0.0007001698962810262,0.0366147308044018,0.5884020766073934,1,0.48977489259257606,0.39573297318312434,0.32999999999999996
+0,9,0.4081996493429133,0.3,1.3860317480108586,0.0007001644938957683,0.03649366206193906,0.6064866977286626,1,0.5451976343359026,0.45793492441782485,0.32999999999999996
+0,10,0.4259898598011189,0.3,1.3862943611198846,0.0007001722195526527,0.03637657226475798,0.606424016890685,1,0.6031058785871855,0.5163426743186801,0.32999999999999996
+0,11,0.3663072848570108,0.25,1.3862943611198846,0.0007001722195526522,0.036595264452266116,0.6241745604395245,1,0.6352524698122488,0.4798964014090793,0.38999999999999996
+0,12,0.48720556354927014,0.15,1.3862943611198846,0.0007001722195526523,0.036629667647772715,0.6586548006992093,1,0.6939563334753212,0.5477361561096926,0.38999999999999996
+0,13,0.40584060551112294,0.15,1.386100380430457,0.0007001704668006274,0.03636805800711233,0.6586984125623365,1,0.71136567815428,0.5228753938570833,0.44999999999999996
+0,14,0.4823685623045624,0.04999999999999999,1.3860568849066235,0.0007000031561807185,0.03659517077083964,0.6915857087118943,1,0.7591787921612843,0.5555199501603763,0.49999999999999994
+0,15,0.4418524096462916,0.04999999999999999,1.386080980435433,0.0007001752516501652,0.036470457786910764,0.6915804958195101,1,0.8037589989966538,0.5351225333248759,0.5599999999999999
+0,16,0.5665274140548388,0.0,1.3862943611198844,0.0007001722195526523,0.03641787070125686,0.7072997068701548,1,0.8769100366439975,0.5986963374314654,0.5599999999999999
+0,17,0.5614812493941475,0.0,1.3859901514335284,0.0007001669330495702,0.036420924712628526,0.707362684654373,2,0.9168654953127966,0.6352610867822288,0.61
+0,18,0.61065735045157,0.0,1.3862943611198846,0.000700172219552652,0.03642657541933399,0.7072997068701548,2,0.9539818806753011,0.6892123073840489,0.6
+0,19,0.618211338314943,0.0,1.3859404134351756,0.0007001649075662695,0.03657157295005922,0.7073729811880406,2,1.0,0.727371127716477,0.59
+0,20,0.5497019325916245,0.0,1.384834410980642,0.000700078984793271,0.0366736645826458,0.707601902801735,2,1.0,0.6656731086387484,0.57
+0,21,0.515688841480005,0.0,1.3849697356653312,0.0006994236758976382,0.03672059187514187,0.7075741743255712,2,1.0,0.6189628049333504,0.5499999999999999
+0,22,0.6086499244412507,0.0,1.3844129338867788,0.0006988590059684814,0.036707541199957214,0.707689604134797,2,1.0,0.6621664148041688,0.5449999999999999
+0,23,0.5978060113640302,0.0,1.3850574327337424,0.0006996908051489229,0.03672638433404007,0.7075559177860165,2,1.0,0.6926867045467677,0.5399999999999999
+0,24,0.6049522902299075,0.0,1.3848089778173809,0.0007004223467964991,0.036664818101715305,0.7076070228495939,2,1.0,0.7165076340996918,0.5349999999999999
+0,25,0.6554183243198926,0.0,1.3838393005601173,0.0007010664124991646,0.036479142596665,0.7078073416165468,2,1.0,0.784727747732975,0.5249999999999999
+0,26,0.7232234742842345,0.0,1.3832186172154493,0.0006991473318907712,0.036383781875259494,0.7079364859596672,2,1.0,0.8440782476141153,0.4949999999999999
+0,27,0.718789031861772,0.0,1.3862943611198844,0.0007001722195526521,0.036468552805060776,0.7072997068701548,2,1.0,0.89596343953924,0.46499999999999986
+0,28,0.6845155935089143,0.0,1.3858022739427727,0.0007001586763459572,0.03659868148430097,0.7074015773324983,2,1.0,0.915051978363048,0.45999999999999985
+0,29,0.6752590909461527,0.0,1.3856220899152532,0.0006997044726487729,0.03669279288084525,0.7074390592672349,2,1.0,0.950863636487176,0.45499999999999985
+0,30,0.6893264133034838,0.0,1.384521531866316,0.0006992247596009823,0.036721061940640704,0.7076669871738802,2,1.0,0.9977547110116127,0.44999999999999984
+0,31,0.72,0.0,1.382427697629277,0.0006985858792598098,0.03665239167187593,0.708100223604947,2,1.0,1.0,0.43999999999999984
+0,32,0.6380943592546084,0.0,1.3833655340471835,0.0006982213272311039,0.03664104935290306,0.7079064911015255,2,1.0,0.9603145308486947,0.4199999999999998
+0,33,0.7030707001123784,0.0,1.384664778923618,0.0007001092800577697,0.03664263456562924,0.7076369861488877,2,1.0,0.976902333707928,0.4149999999999998
+0,34,0.69,0.0,1.382360144720474,0.0006998367172250827,0.03638603090801907,0.708113669141771,2,1.0,1.0,0.4099999999999998
+0,35,0.72,0.0,1.3790487648679464,0.0006992992952930888,0.03658995765532179,0.7087978438260476,2,1.0,1.0,0.3999999999999998
+0,36,0.7,0.0,1.3798453314829184,0.0006973661274648974,0.03630938481301997,0.7086342006686436,2,1.0,1.0,0.3899999999999998
+0,37,0.77,0.0,1.3790800656101054,0.0006956124630179913,0.03636948312083781,0.7087929051697586,1,1.0,1.0,0.35999999999999976
+0,38,0.71,0.0,1.3862943611198846,0.0007001722195526527,0.03673877305621829,0.7072997068701548,1,1.0,1.0,0.35999999999999976
+0,39,0.71,0.0,1.3858143689857303,0.000700158366313769,0.03677203678792786,0.7073990739671068,1,1.0,1.0,0.3699999999999998
+0,40,0.7,0.0,1.385597533264313,0.0007011262075030005,0.03677643481048453,0.7074435532031963,1,1.0,1.0,0.41999999999999976
+0,41,0.71,0.0,1.3857722902342249,0.0007001415996859184,0.03672065686002509,0.7074077905285189,1,1.0,1.0,0.42999999999999977
+0,42,0.7,0.0,1.3849141794379216,0.0007005074161984951,0.036586959480146015,0.7075852210268954,1,1.0,1.0,0.47999999999999976
+0,43,0.71,0.0,1.3843452667556928,0.0006991157458409565,0.03642926577629992,0.7077034956830321,1,1.0,1.0,0.48999999999999977
+0,44,0.69,0.0,1.3828679441835352,0.0006989925618275822,0.03642390129578186,0.7080090506682017,1,1.0,1.0,0.4999999999999998
+0,45,0.73,0.0,1.380427156533881,0.0006986442446680477,0.03649360531340791,0.7085135277208732,1,1.0,1.0,0.4999999999999998
+0,46,0.6309040882811691,0.0,1.3811518230477922,0.0007023798244852109,0.036537850692003125,0.70836230202518,1,1.0,0.9363469609372302,0.5599999999999998
+0,47,0.6911754023397291,0.0,1.3836801987861223,0.0007010927164786345,0.036730784984696355,0.7078402344589398,2,1.0,0.9705846744657637,0.6099999999999999
+0,48,0.6273236738205413,0.0,1.3807972532828885,0.0006963373283377593,0.036555544392324536,0.7084380416664634,2,1.0,0.9244122460684713,0.5899999999999999
+0,49,0.7566187679254133,0.0,1.382855735109917,0.0006984579482305538,0.03667168182174876,0.7080117957134217,2,1.0,0.9553958930847113,0.5599999999999998
+1,0,0.21442742876779128,0.0,1.3862591060039886,0.0007001538256561704,0.036364398039709804,0.7073070131877004,1,0.15196268151479325,0.27080163412537883,0.0
+1,1,0.1306707746473354,0.0,1.386288154915602,0.0007001805074274824,0.03651537636580168,0.707300988287694,1,0.18279743507586335,0.2223055745692774,0.06
+1,2,0.24517428337864172,0.0,1.386284116663937,0.0007001657905270086,0.03665402067243049,0.7073018304048567,1,0.2426821044589975,0.267451822726642,0.06
+1,3,0.15974587107655885,0.0,1.3860778360927881,0.0007000341905444307,0.03673706702268809,0.7073445884945966,1,0.27162138192451996,0.21559462467658963,0.12
+1,4,0.25614880142831,0.0,1.3860998773564135,0.0007000372193339767,0.036775734093244895,0.7073400244969789,1,0.32675190326332304,0.2726187842871563,0.13
+1,5,0.19927168804646805,0.0,1.3862373645526378,0.0007001686627870381,0.03677771780301588,0.7073115080221163,1,0.3543903569647936,0.2507835436959677,0.19
+1,6,0.29061363685790176,0.0,1.3862158677144667,0.0007001195011091596,0.03672518335166779,0.707315978674306,1,0.40525654959467905,0.29591281499921374,0.2
+1,7,0.3560256494009723,0.0,1.3859394973172687,0.0006999557723042591,0.03661576723540226,0.7073732574016279,1,0.474431429429122,0.36658216366926555,0.2
+1,8,0.2788467816671416,0.0,1.3856677136360038,0.0006997460689423678,0.036449096845169573,0.7074295992617189,1,0.5135979773173679,0.33029163202020967,0.26
+1,9,0.2523924424685867,0.0,1.385863250242037,0.0006998944269908218,0.03642626704546305,0.7073890654126852,1,0.542076047733285,0.27555275253979006,0.32
+1,10,0.36040027372667865,0.0,1.3858488771591158,0.0007000233512235716,0.03655047818733974,0.7073919871133441,1,0.5727264513671879,0.3331533858272097,0.33
+1,11,0.29708963264224264,0.0,1.3862189676638272,0.0007001199145507188,0.03667477340642177,0.7073153367509318,1,0.5922978499573429,0.29928461719057553,0.39
+1,12,0.2756201186955851,0.0,1.3862943611198844,0.0007001722195526523,0.03675692642443548,0.7072997068701548,1,0.6179291667013701,0.26448303450035193,0.45
+1,13,0.3745359138360811,0.0,1.3862943611198844,0.0007001722195526527,0.036787569296499095,0.7072997068701548,1,0.6718189664497531,0.2979975852622251,0.5
+1,14,0.4093077268294283,0.0,1.3861622211751827,0.0007001714625471721,0.03676716924340876,0.7073270629482643,1,0.7023763166898978,0.3449200532932136,0.51
+1,15,0.4212812374115,0.0,1.3860828144661594,0.0007000306767538968,0.036702287058260834,0.7073435593840847,1,0.7418702760587843,0.3720888026364183,0.56
+1,16,0.36353499165771724,0.0,1.3857288742439553,0.0006998505696804712,0.036567474074826474,0.7074168972502277,2,0.7590437836180454,0.3262322246380047,0.6200000000000001
+1,17,0.5266399466336564,0.0,1.3862943611198844,0.0007001722195526525,0.03643786636773582,0.7072997068701548,2,0.8343179068504605,0.3820955974533177,0.5900000000000001
+1,18,0.502177535972852,0.0,1.3862943611198846,0.000700172219552652,0.03642657541933399,0.7072997068701548,2,0.8781837283643202,0.4160441034844666,0.5800000000000001
+1,19,0.42556989348545116,0.0,1.3862943611198846,0.0007001722195526527,0.036587573128233755,0.7072997068701548,2,0.9062451219494705,0.36128033601045495,0.56
+1,20,0.5061301925915707,0.0,1.3860558305769937,0.000700164561057307,0.03669920559890398,0.707349089821456,2,0.9433186607218771,0.3865622044630459,0.555
+1,21,0.6078997517993014,0.0,1.3859466822666784,0.0006999299478269734,0.03675390314680262,0.7073717808324136,2,1.0,0.4596658393310048,0.525
+1,22,0.5723132343158022,0.0,1.3860808789221646,0.0007001647540909008,0.036781392724590266,0.707343904547975,2,1.0,0.5077107810526738,0.515
+1,23,0.6356296399845747,0.0,1.385910614747267,0.000699920827140844,0.03675248676923814,0.7073792504187393,2,1.0,0.5520987999485821,0.485
+1,24,0.6003976048054019,0.0,1.385935738260831,0.0007003856140419375,0.03667283440187734,0.7073738575608357,2,1.0,0.60132534935134,0.475
+1,25,0.5974317239867739,0.0,1.3849391219112708,0.0006994292592021564,0.03650060401152144,0.7075805063573669,2,1.0,0.6581057466225799,0.46499999999999997
+1,26,0.6194389188053058,0.0,1.3838794513142592,0.0006984916927699938,0.03635976604468033,0.7078001027281906,2,1.0,0.6981297293510195,0.45999999999999996
+1,27,0.6914245157842227,0.0,1.3828983743040566,0.0006980607981530833,0.03645007159910919,0.7080031449974616,2,1.0,0.7380817192807425,0.42999999999999994
+1,28,0.690037704658822,0.0,1.3844891194877016,0.0006989581499250735,0.03654065589032844,0.7076738027288006,2,1.0,0.8001256821960734,0.3999999999999999
+1,29,0.6714926557317626,0.0,1.3839369012181846,0.000698638878888763,0.036649949407959403,0.707788159964664,2,1.0,0.8383088524392087,0.3899999999999999
+1,30,0.7271736453279127,0.0,1.3830155143770482,0.0006979508944064011,0.036636944969412055,0.707978972934592,2,1.0,0.8572454844263758,0.3599999999999999
+1,31,0.6911366277395193,0.0,1.3838179190640107,0.0006993657828163547,0.03670841401832133,0.7078124670632018,2,1.0,0.9037887591317312,0.34999999999999987
+1,32,0.6954186296304987,0.0,1.382358131201739,0.0006996740176178154,0.03663853024213576,0.7081141525694479,2,1.0,0.9513954321016624,0.34499999999999986
+1,33,0.77,0.0,1.3811240423618376,0.000697445278861033,0.0365056512143143,0.7083700798490759,2,1.0,1.0,0.31499999999999984
+1,34,0.72,0.0,1.3862943611198846,0.0007001722195526526,0.036527640309121215,0.7072997068701548,2,1.0,1.0,0.3049999999999998
+1,35,0.71,0.0,1.3858006016290236,0.0007001493548203538,0.03631695854028956,0.7074019273343682,2,1.0,1.0,0.2999999999999998
+1,36,0.69,0.0,1.3855958636332315,0.0006996909887035695,0.03648975366566254,0.7074444928474879,2,1.0,1.0,0.2949999999999998
+1,37,0.77,0.0,1.3844259978259774,0.0006992006510678969,0.036584678552461315,0.7076867603056788,2,1.0,1.0,0.2649999999999998
+1,38,0.6318024859341098,0.0,1.384937542837288,0.0006992383256938017,0.03668427707170571,0.7075809120961576,2,1.0,0.9393416197803662,0.2449999999999998
+1,39,0.703105853340144,0.0,1.3858484205816066,0.0007001006160817342,0.036776325130033385,0.707392049633779,2,1.0,0.9770195111338131,0.2399999999999998
+1,40,0.77,0.0,1.3844532634119848,0.0006999452356943389,0.03673805895963178,0.7076808118829268,2,1.0,1.0,0.2099999999999998
+1,41,0.75,0.0,1.38429766519452,0.0006988738678123732,0.036659444266478686,0.707713442476724,2,1.0,1.0,0.1799999999999998
+1,42,0.632073251508201,0.0,1.3828755724610393,0.0006978719546649789,0.03648843759764862,0.7080079369873435,2,1.0,0.9402441716940034,0.1599999999999998
+1,43,0.7648401697054084,0.0,1.3838998097080097,0.0006986584994550518,0.03649942874693719,0.7077958232071417,2,1.0,0.9828005656846949,0.1299999999999998
+1,44,0.75,0.0,1.3817085935383688,0.0006969543363643393,0.03623824812087313,0.7082495103326794,2,1.0,1.0,0.09999999999999981
+1,45,0.75,0.0,1.3783334641003846,0.0006950242194093951,0.03652883624712917,0.7089472265766116,2,1.0,1.0,0.06999999999999981
+1,46,0.6317883667709127,0.0,1.3736818327331592,0.000692663004977581,0.03625767983944043,0.7099070879240591,2,1.0,0.9392945559030423,0.04999999999999981
+1,47,0.7689852719150465,0.0,1.3750707238974924,0.0006923686886334181,0.03635167217569159,0.709621098973544,2,1.0,0.9966175730501553,0.01999999999999981
+1,48,0.75,0.0,1.3695544805941533,0.0006890488400240673,0.03617160481135368,0.7107578198077563,2,1.0,1.0,0.0
+1,49,0.75,0.0,1.3627996500513606,0.0006852097344951426,0.03599463394869695,0.7121460801651333,2,1.0,1.0,0.0
+2,0,0.18777164177774086,0.0,1.3862092494765377,0.0007001616872702244,0.03637946049653846,0.7073173313138869,1,0.1530129217655356,0.24739039719934466,0.01
+2,1,0.13239426782402713,0.0,1.386205134880434,0.0007002680560786426,0.036508783822022585,0.7073181390741207,1,0.1950455113067006,0.2137611295556065,0.06999999999999999
+2,2,0.23897319402479839,0.0,1.3862068049606808,0.0007001883650252972,0.03665747370437903,0.7073178263305185,1,0.21732275974547324,0.2763674270462759,0.06999999999999999
+2,3,0.2555668007809232,0.0,1.38621494364905,0.0007001908051850799,0.03673801490494717,0.707316140451629,1,0.27585230467700994,0.3300616471465657,0.06999999999999999
+2,4,0.29171784721725047,0.0,1.386119039004643,0.0007002832426432036,0.03678251393657196,0.707335955966784,1,0.3299734787282933,0.3874237655411595,0.07999999999999999
+2,5,0.3057058842337306,0.0,1.3859863774975423,0.0007004989461954158,0.03678152465280711,0.7073633284074945,1,0.382271016837686,0.4063700944684682,0.13
+2,6,0.3494118109209401,0.0,1.3862943611198844,0.0007001722195526527,0.03672626550780782,0.7072997068701548,1,0.43403914147499123,0.45832703801564395,0.14
+2,7,0.4072170268663257,0.0,1.3861231368673348,0.0007001691813609048,0.036628997635197454,0.7073351548842667,1,0.48483920544686926,0.5250776831997384,0.14
+2,8,0.3204615853561269,0.0,1.3856314389868705,0.0007001387945419657,0.03644446718933294,0.7074369445120383,1,0.5092712436953375,0.4740555002091961,0.2
+2,9,0.39647092593192806,0.0,1.3857008878100938,0.0006998736301450601,0.036445886101149585,0.7074226802532501,1,0.5588450997637568,0.5029171367153773,0.25
+2,10,0.39883356941878,0.0,1.385862550254675,0.000699876679964809,0.036542318986901856,0.7073892176497947,1,0.5995207918238511,0.5300043076014405,0.3
+2,11,0.363981937192724,0.0,1.385639390264374,0.0006998698809498923,0.03664847056425008,0.7074354101485033,0,0.6144230666934938,0.49644621283333734,0.36
+2,12,0.4222161350470982,0.0,1.3862943611198844,0.0007001722195526523,0.03675692642443548,0.7072997068701548,0,0.6980091473699876,0.49304311155867525,0.42
+2,13,0.4380296284701124,0.0,1.3861261793992323,0.0007001664793803441,0.03678179227195148,0.7073345261615368,0,0.7872835193286984,0.47493465568355986,0.5
+2,14,0.44809929082700417,0.0,1.3860380139093889,0.0007005208175260613,0.03676662372387489,0.707352630477611,0,0.7968911311809066,0.4972913163789562,0.5
+2,15,0.48632900751749497,0.0,1.3860919290973288,0.0007001369505662215,0.03670388536572218,0.7073416285736753,0,0.8796723941989869,0.4948122318261653,0.56
+2,16,0.4885999081588633,0.0,1.3862943611198844,0.0007001722195526525,0.03659596830027643,0.7072997068701548,0,0.8977596275546856,0.5146134617157444,0.56
+2,17,0.510796759889938,0.0,1.3860686503917377,0.0007001695517828176,0.03642415847188096,0.7073464339650456,2,1.0,0.4693225329664599,0.64
+2,18,0.6246117302634415,0.0,1.3851027268784755,0.000700936759394652,0.03644336869949688,0.7075460297719611,2,1.0,0.515372434211472,0.61
+2,19,0.4894624629825507,0.0,1.3845695352039187,0.0007022992194840576,0.03654949984452855,0.707655784330933,2,1.0,0.46487487660850235,0.59
+2,20,0.5769971293236779,0.0,1.3847771968282454,0.0007009920746458528,0.03669834937341012,0.7076133625218205,2,1.0,0.5233237644122595,0.58
+2,21,0.577992573734493,0.0,1.3838796413525127,0.0007018250463045342,0.03672653093088889,0.7077986846201549,2,1.0,0.5933085791149768,0.57
+2,22,0.6605365941799288,0.0,1.3823021775712563,0.0007025577416182927,0.03672338965725515,0.7081245253678602,2,1.0,0.6351219805997627,0.5399999999999999
+2,23,0.6075925452973598,0.0,1.384718440257398,0.000699947232490518,0.03671852422333388,0.7076259512516843,2,1.0,0.6586418176578663,0.5349999999999999
+2,24,0.6336862473288388,0.0,1.3837492930477209,0.0006986092654101328,0.03658427024212734,0.7078269725879756,2,1.0,0.7122874910961295,0.5249999999999999
+2,25,0.5527883832077558,0.0,1.3830625741873734,0.000698987968322453,0.03647450359008083,0.7079688146430488,2,1.0,0.6759612773591862,0.5049999999999999
+2,26,0.6906162487284154,0.0,1.3848726441445256,0.0006993442789550027,0.03645939472416982,0.7075942962700437,2,1.0,0.735387495761385,0.47499999999999987
+2,27,0.5591035122910908,0.0,1.3848745750244111,0.000700221205230122,0.03645422450534113,0.7075935338813397,2,1.0,0.6970117076369695,0.45499999999999985
+2,28,0.5215039902192601,0.0,1.3859879452088866,0.0007001705579990378,0.0366046113242466,0.707363139843514,2,1.0,0.6383466340642006,0.43499999999999983
+2,29,0.6250423357499861,0.0,1.3862942233964308,0.0007001722737198643,0.03672141690752699,0.7072997353601761,2,1.0,0.6834744524999536,0.4249999999999998
+2,30,0.6210279740930071,0.0,1.3859237283945773,0.0007001529017020257,0.036767531800578984,0.707376439890515,2,1.0,0.7034265803100237,0.4199999999999998
+2,31,0.6085866362744524,0.0,1.3857542611336258,0.0006997911680727378,0.03676504824265843,0.707411667278989,2,1.0,0.7286221209148416,0.4149999999999998
+2,32,0.705180389921361,0.0,1.3848494190901282,0.0006994384354877478,0.03669053569827457,0.7075990626551876,2,1.0,0.7839346330712035,0.3849999999999998
+2,33,0.6552678974189341,0.0,1.3852378390147293,0.0006994545316402298,0.03662146489481926,0.707518684410012,2,1.0,0.8175596580631139,0.3799999999999998
+2,34,0.6820184998010823,0.0,1.3814571222712204,0.0006985331268064825,0.03638514635341715,0.7083008172680154,2,1.0,0.8733949993369413,0.3699999999999998
+2,35,0.672992366441223,0.0,1.3796881466923303,0.0006989729646277243,0.03645595279363453,0.7086659903363326,2,1.0,0.9099745548040769,0.35999999999999976
+2,36,0.7614450155349183,0.0,1.3769899494977085,0.0006991810274917865,0.03646688749527617,0.7092226564766616,2,1.0,0.9714833851163944,0.32999999999999974
+2,37,0.71,0.0,1.3616381447091523,0.000684474123494078,0.03574811802538488,0.7123844245988145,2,1.0,1.0,0.32499999999999973
+2,38,0.77,0.0,1.3638538068116035,0.0006844076635006147,0.036167047234801956,0.7119302649803908,2,1.0,1.0,0.2949999999999997
+2,39,0.72,0.0,1.356078513387641,0.0006793797523230062,0.035773608265955145,0.7135242895979699,2,1.0,1.0,0.2849999999999997
+2,40,0.71,0.0,1.3632522359272208,0.0006890859611465602,0.036014340413763835,0.7120517043359827,2,1.0,1.0,0.2799999999999997
+2,41,0.69,0.0,1.3646030949841506,0.000687198353138958,0.03620388908196469,0.711775427370003,2,1.0,1.0,0.2749999999999997
+2,42,0.77,0.0,1.3639455676301306,0.0006855575099836044,0.035802255070746296,0.7119109741429208,2,1.0,1.0,0.2449999999999997
+2,43,0.6382335011465172,0.0,1.3570953052847736,0.0006816438284433785,0.0362035351006647,0.7133154787262103,2,1.0,0.9607783371550577,0.2249999999999997
+2,44,0.72,0.0,1.3620729469030972,0.0006830557265096759,0.035666632514738054,0.7122959098550317,2,1.0,1.0,0.2149999999999997
+2,45,0.77,0.0,1.3687005085153747,0.0006901616711231136,0.03640915689633837,0.710932891370183,2,1.0,1.0,0.1849999999999997
+2,46,0.6390727153607996,0.0,1.3617211627873997,0.0006867934674478196,0.0359244503722509,0.7123664640192733,2,1.0,0.9635757178693319,0.1649999999999997
+2,47,0.77,0.0,1.3656538111269567,0.0006865499409756805,0.036160865062338024,0.7115600899336216,2,1.0,1.0,0.1349999999999997
+2,48,0.72,0.0,1.3579316301604845,0.0006820139288538822,0.03582242178724583,0.7131442712816937,2,1.0,1.0,0.12499999999999971
+2,49,0.77,0.0,1.3641984077662446,0.0006922621822395552,0.036118958222546065,0.7118563649606302,2,1.0,1.0,0.09499999999999971
+3,0,0.09541721232802945,0.0,1.3860727965188737,0.0007002414933774338,0.03638909287167881,0.7073455459001307,1,0.13562982582325522,0.1598225776329671,0.06
+3,1,0.19494131076254503,0.0,1.3862943611198844,0.0007001722195526525,0.036517885004265345,0.7072997068701548,1,0.18989087348460093,0.22826501680978245,0.06999999999999999
+3,2,0.1297320665580238,0.0,1.3860720070665173,0.000700208425256211,0.03665847193109707,0.7073457230136337,1,0.21639288133068213,0.17998186030761693,0.13
+3,3,0.2065820813897286,0.0,1.3862943611198846,0.0007001722195526523,0.036742895298349926,0.7072997068701548,1,0.2681173936041454,0.2091366454275924,0.18
+3,4,0.2417268036040114,0.0,1.3861584799305358,0.0007003400504445125,0.03678594990798234,0.707327767642745,1,0.30514375514071784,0.24975496434920055,0.19
+3,5,0.2619442303097921,0.0,1.3859696278031075,0.0007004425342783503,0.03677969100368678,0.7073668189441595,1,0.3566100248158129,0.29043573874752515,0.24
+3,6,0.32774422685953464,0.0,1.386045041786517,0.0007001942220346994,0.03671471484386103,0.7073513108846838,1,0.4085883233142133,0.3491277123318666,0.24
+3,7,0.23751861063625412,0.0,1.3861531351455387,0.0007001231745313208,0.03661761840968174,0.7073289638862492,1,0.43513858985326015,0.2840670139587103,0.3
+3,8,0.36040251294080256,0.0,1.385980063216404,0.0007001206673611259,0.03647918171230141,0.7073647920721636,1,0.4932375010964378,0.3592312918568312,0.3
+3,9,0.28262450121644406,0.0,1.3857981880774917,0.0006998385036032699,0.036422067826039815,0.7074025555843169,1,0.5372463839590659,0.31529422276923674,0.36
+3,10,0.365866516178875,0.0,1.3862230316231816,0.0007001707288807903,0.03655602661374589,0.7073144743886935,1,0.5482521666585225,0.3799275261613069,0.37
+3,11,0.3860793892899542,0.0,1.3861473025406568,0.0007000773242080786,0.0366745670466319,0.7073301903030789,1,0.6158897573541162,0.4350599140533786,0.38
+3,12,0.4155812702536696,0.0,1.3858385130752853,0.0007003728853406132,0.03675293880182569,0.7073939876570303,1,0.6588344778069054,0.4832973434041758,0.39
+3,13,0.49744008950537877,0.0,1.386181233885045,0.0007001943708770791,0.0367857809893329,0.7073231175224877,1,0.7153844925660475,0.5568517236908739,0.39
+3,14,0.5140988161562664,0.0,1.386057082154981,0.0007000182609713115,0.0367623711988755,0.7073488913069145,0,0.7674790444693688,0.6182705019732913,0.39
+3,15,0.5016617048402429,0.0,1.3862943611198846,0.0007001722195526527,0.03670703823465997,0.7072997068701548,0,0.7907167239096191,0.6497028382395872,0.4
+3,16,0.4994094968388402,0.0,1.386056322821427,0.0007001668370769771,0.03659889702873971,0.7073489869814182,0,0.8185812776287893,0.6763534988958797,0.41000000000000003
+3,17,0.5275525641096734,0.0,1.3862943611198844,0.0007001722195526525,0.03643786636773582,0.7072997068701548,0,0.8421938151152231,0.7092824293978177,0.41000000000000003
+3,18,0.5124524192269484,0.0,1.3860309001932933,0.000700164683993774,0.036429426277592006,0.707354250491739,0,0.8452922156854538,0.7220004791234652,0.41000000000000003
+3,19,0.5714670157692069,0.0,1.3852548082484462,0.0007001111953455744,0.03654264483936161,0.7075149010756687,0,0.9282755681361067,0.7219018897385655,0.47000000000000003
+3,20,0.5883652913844335,0.0,1.385297663162885,0.0006995549844724867,0.03666584256093197,0.707506262911015,0,0.9654860576361655,0.7348172373725855,0.48000000000000004
+3,21,0.5902336159929055,0.0,1.385600688644742,0.0007004213540029501,0.03675527404004968,0.7074431919059723,0,0.9869151941328337,0.7493776601547123,0.48000000000000004
+3,22,0.6079098384523376,0.0,1.3846040307230638,0.0007007207393839802,0.03675027381737967,0.7076493009966487,0,1.0,0.7596994615077918,0.49000000000000005
+3,23,0.5837695201384446,0.0,1.3842908973149881,0.0007023471997478528,0.03676085637701803,0.7077134054942656,0,1.0,0.7125650671281487,0.5700000000000001
+3,24,0.5874869068759253,0.0,1.3854540139207892,0.0007012461041038872,0.03666730628027419,0.7074732064851476,0,1.0,0.7249563562530844,0.5700000000000001
+3,25,0.5757044411372599,0.0,1.384335829747566,0.0007018622417423103,0.036582164435635375,0.7077043115386538,0,1.0,0.7523481371241999,0.5700000000000001
+3,26,0.6065743631442756,0.0,1.3825476007795738,0.0007023200633749869,0.03628069080472359,0.7080738959406689,2,1.0,0.7552478771475852,0.6300000000000001
+3,27,0.7159221421996699,0.0,1.3838853104073374,0.0006985703405182624,0.03636571429041357,0.7077988584224606,2,1.0,0.8197404739988998,0.6000000000000001
+3,28,0.7099287210513613,0.0,1.3772996122667696,0.0007043474998058325,0.03639576125068392,0.7091566606611244,2,1.0,0.8664290701712045,0.5700000000000001
+3,29,0.7243184870435272,0.0,1.3760679295638254,0.0007082194975129114,0.03665919822345509,0.709409037653954,2,1.0,0.9143949568117574,0.54
+3,30,0.7358872667672224,0.0,1.3737269854025784,0.0007114751013483605,0.03664121510987863,0.7098900406424529,2,1.0,0.9529575558907415,0.51
+3,31,0.72,0.0,1.3702529877943461,0.0007142558925086592,0.03660221637195856,0.7106038314125417,2,1.0,1.0,0.5
+3,32,0.6374180585815122,0.0,1.3680518660008243,0.0007199652889828879,0.03670253819433973,0.7110539273871238,2,1.0,0.9580601952717075,0.48
+3,33,0.7067906925394257,0.0,1.3742845492803317,0.000714775708809023,0.036549698242230505,0.7097738392452639,2,1.0,0.9893023084647525,0.475
+3,34,0.69,0.0,1.3757868489320195,0.0007094091397736061,0.03651129698642087,0.7094664879855466,2,1.0,1.0,0.47
+3,35,0.6362445992037633,0.0,1.3757768377252566,0.000704705970879596,0.036503455501420916,0.7094704903871507,2,1.0,0.9541486640125443,0.44999999999999996
+3,36,0.72,0.0,1.380613616691575,0.000702962120027688,0.03647026579683865,0.7084732344634503,2,1.0,1.0,0.43999999999999995
+3,37,0.77,0.0,1.3790492864109911,0.000705309864616541,0.03649541304686151,0.7087952549663636,2,1.0,1.0,0.4099999999999999
+3,38,0.71,0.0,1.376998607714175,0.000708329472120403,0.03667353748335977,0.7092170976049132,2,1.0,1.0,0.4049999999999999
+3,39,0.69,0.0,1.3769527185646304,0.0007038207458069441,0.03661861905634833,0.7092284207649039,2,1.0,1.0,0.3999999999999999
+3,40,0.6382056924722563,0.0,1.3757493935216862,0.000699770971779306,0.03649191352464755,0.709478181609172,2,1.0,0.9606856415741879,0.3799999999999999
+3,41,0.7070317644720472,0.0,1.3805783001646723,0.0006993503619269481,0.036587548931866706,0.7084820205596857,2,1.0,0.990105881573491,0.3749999999999999
+3,42,0.69,0.0,1.3787159345207778,0.0006964664281900433,0.03645222358955001,0.7088677056502709,2,1.0,1.0,0.3699999999999999
+3,43,0.6339231180598865,0.0,1.3758821673702952,0.0006934518368290272,0.03615474129032111,0.709453418773721,2,1.0,0.9464103935329553,0.34999999999999987
+3,44,0.77,0.0,1.380166590899996,0.0006958512761704923,0.03655803522533141,0.7085684908539708,2,1.0,1.0,0.31999999999999984
+3,45,0.71,0.0,1.3660023998075348,0.0006929489483084698,0.036454605426256406,0.7114859124164212,2,1.0,1.0,0.31499999999999984
+3,46,0.6362761832774624,0.0,1.3677342878679668,0.000690619589477323,0.036115792608493756,0.7111312281706565,2,1.0,0.9542539442582082,0.2949999999999998
+3,47,0.7667037381865265,0.0,1.371065174472108,0.0006903098740610099,0.036241608123759164,0.7104466319611031,2,1.0,0.9890124606217553,0.2649999999999998
+3,48,0.75,0.0,1.3644760509364988,0.0006866532845896875,0.03604839082833394,0.7118017135343829,2,1.0,1.0,0.2349999999999998
+3,49,0.71,0.0,1.3566377081213092,0.0006823683428976952,0.03577470533268533,0.7134087503489209,2,1.0,1.0,0.2299999999999998
+4,0,0.18517353903558675,0.0,1.3860610770567856,0.0007001446648525318,0.03638375882815211,0.7073480120029159,1,0.1343441062862736,0.2605103394513033,0.01
+4,1,0.11820278262654654,0.0,1.3860430088173537,0.0007002955937835296,0.03650247877450616,0.7073516897511981,1,0.15069531027894909,0.2181980800963812,0.06999999999999999
+4,2,0.19446293039136545,0.0,1.386015597570055,0.0007001733659843218,0.036656124934161746,0.7073574145948008,1,0.19347071389128367,0.2558272684313872,0.12
+4,3,0.1416741020213506,0.0,1.3862089448602495,0.0007001662488943779,0.03673788109523242,0.7073173924867115,1,0.23130053555236954,0.20239638192673767,0.18
+4,4,0.21553507953282083,0.0,1.3859787107829953,0.0007004668194543853,0.03678495785916765,0.7073649287187902,1,0.2739140440084699,0.23221721376618795,0.22999999999999998
+4,5,0.215429363945608,0.0,1.3859596513033101,0.0007002097682217634,0.036771760670405905,0.7073689804296677,1,0.30725528321104056,0.25963338273914593,0.27999999999999997
+4,6,0.29236942306848196,0.0,1.3858470285471318,0.0006999798650820787,0.036706068438615756,0.7073923877569905,1,0.34303695306244275,0.30768829832209005,0.27999999999999997
+4,7,0.22175993642730374,0.0,1.3856894756397604,0.0007001146559020841,0.036625142059877124,0.7074249425185545,1,0.38860773261915904,0.28582410003532693,0.33999999999999997
+4,8,0.3231107128414904,0.0,1.3862943611198844,0.0007001722195526524,0.036479165647275234,0.7072997068701548,1,0.4475415688536004,0.35490387914243415,0.35
+4,9,0.3302605853929427,0.0,1.3857236507019284,0.0006999612455172787,0.03644647214679861,0.7074179325936626,1,0.47056217054899435,0.3852127523359823,0.39999999999999997
+4,10,0.2794651830079689,0.0,1.3858546427366445,0.0006998691749583903,0.03653281826310796,0.7073908575289015,1,0.4973628744194461,0.351293923203876,0.45999999999999996
+4,11,0.3787982711976568,0.0,1.3858424456134726,0.0006998839988165056,0.03666119231508821,0.7073933760565153,1,0.5476858282587624,0.42369410435696664,0.47
+4,12,0.3218466183917309,0.0,1.3862943611198844,0.0007001722195526523,0.03675692642443548,0.7072997068701548,1,0.5829090452662592,0.3927615084951341,0.53
+4,13,0.39906510176206145,0.0,1.385487902273041,0.0006996064242610173,0.03675363628379256,0.7074668717648849,2,0.624423276083491,0.43505651710946536,0.5800000000000001
+4,14,0.34009797381689694,0.0,1.3862943611198846,0.0007001722195526527,0.03677093273821602,0.7072997068701548,2,0.6389615879291561,0.388204726805641,0.56
+4,15,0.4387687996703872,0.0,1.3860318204439193,0.000700161954045012,0.03669380869022011,0.7073540611261665,2,0.6832302957714905,0.43212732050121855,0.55
+4,16,0.5283465417664129,0.0,1.3861493538181135,0.0007001715644269268,0.03658785217191308,0.7073297266411923,2,0.7642852905480965,0.4694889669152639,0.52
+4,17,0.5143584315287879,0.0,1.385990077281204,0.0006999819316170919,0.036428032923447436,0.7073627765948072,2,0.8287849783529447,0.514278963684191,0.51
+4,18,0.613771031670937,0.0,1.3815570461675177,0.0007053939178796661,0.03647040619800145,0.7082773363324352,2,0.9224240721979627,0.569742021338834,0.48
+4,19,0.6377717619905954,0.0,1.3800153051090203,0.0007075903092411661,0.03649873999379695,0.7085948823413926,1,0.9988711598580928,0.6272228534675433,0.44999999999999996
+4,20,0.6143717365264447,0.0,1.3862943611198844,0.0007001722195526523,0.036701549680017806,0.7072997068701548,1,1.0,0.681239121754816,0.44999999999999996
+4,21,0.537313278915603,0.0,1.3859360523987834,0.0007001641214182758,0.03675846556933735,0.7073738842317203,1,1.0,0.6243775963853432,0.51
+4,22,0.5048780444071232,0.0,1.38584009109747,0.0006998489861243759,0.036770141436908294,0.7073938779072053,1,1.0,0.582926814690411,0.5700000000000001
+4,23,0.49387207694054713,0.0,1.3859013105407731,0.0006998921366525717,0.036744625306413106,0.7073811882059771,2,1.0,0.5462402564684907,0.6300000000000001
+4,24,0.6492931891091672,0.0,1.3787863839266903,0.0007087156144601859,0.03661179943236596,0.7088481104821219,2,1.0,0.5976439636972242,0.6000000000000001
+4,25,0.5950707766530894,0.0,1.3758420697885017,0.0007104925029617104,0.036567341838302035,0.7094546588972539,2,1.0,0.6169025888436312,0.5950000000000001
+4,26,0.5843898156519471,0.0,1.383326724291427,0.000698214582121097,0.03648791534620871,0.7079145187091822,2,1.0,0.6479660521731575,0.5900000000000001
+4,27,0.5259220054337309,0.0,1.3817332193403915,0.0006969725751720506,0.03629060191115463,0.7082444142868521,2,1.0,0.5864066847791031,0.5700000000000001
+4,28,0.5953758310992724,0.0,1.379622511362518,0.0007064888861893514,0.036517583255123366,0.7086764377461969,2,1.0,0.6179194369975747,0.5650000000000001
+4,29,0.6245060072403503,0.0,1.383099957726682,0.0006982815710319934,0.03659249045299159,0.7079613776729158,2,1.0,0.6816866908011677,0.555
+4,30,0.6251521952534976,0.0,1.3839928617114783,0.0006985520711961996,0.036689237326732536,0.7077766217611862,2,1.0,0.7171739841783256,0.55
+4,31,0.6469277872522423,0.0,1.3820726548885667,0.0006973275596252591,0.03662331985540339,0.7081741235900533,2,1.0,0.7564259575074745,0.54
+4,32,0.6448870231483084,0.0,1.382164593929471,0.0006973481941855799,0.03659295689195881,0.7081551142501246,2,1.0,0.7829567438276949,0.535
+4,33,0.7193817935300477,0.0,1.3797236945633637,0.0006955803075132045,0.03647467871436992,0.7086600520262298,2,1.0,0.831272645100159,0.505
+4,34,0.5858133292637895,0.0,1.3792906718802744,0.0006956452757951078,0.036303895644033676,0.7087494194143548,2,1.0,0.7860444308792983,0.485
+4,35,0.6552443398736425,0.0,1.3799489723057299,0.0006961803943569078,0.03654669700295358,0.7086132909635415,2,1.0,0.8174811329121418,0.48
+4,36,0.5783371144819116,0.0,1.3815819368468991,0.0006969013289463317,0.03632833928717162,0.7082757028906654,2,1.0,0.7611237149397055,0.45999999999999996
+4,37,0.7125331022250696,0.0,1.3760818913808737,0.0006929228395398335,0.036444176753510485,0.7094124661898356,2,1.0,0.8084436740835654,0.42999999999999994
+4,38,0.6746932791692619,0.0,1.3831553945997153,0.0006983034843070033,0.03660561348040851,0.7079499067913411,2,1.0,0.848977597230873,0.41999999999999993
+4,39,0.741316189059616,0.0,1.3843265904295337,0.0006988187662203936,0.03672349804283017,0.7077074819040142,2,1.0,0.9043872968653871,0.3899999999999999
+4,40,0.6090692065219998,0.0,1.383236182953726,0.0006985957388909199,0.03666008825735397,0.7079330821109032,2,1.0,0.8635640217399994,0.3699999999999999
+4,41,0.7454910477229638,0.0,1.384744133586489,0.0006990865745975971,0.03667685624439272,0.7076209916220629,2,1.0,0.9183034924098795,0.33999999999999986
+4,42,0.7394453315279212,0.0,1.3829409955884295,0.0006982418182357897,0.036498311892555924,0.707994258773669,2,1.0,0.9648177717597379,0.30999999999999983
+4,43,0.72,0.0,1.356795150737982,0.0006822878986527249,0.036269293423782316,0.7133765919656374,2,1.0,1.0,0.2999999999999998
+4,44,0.77,0.0,1.3628904587691624,0.0006930943807165759,0.0356703923010101,0.7121242318141937,2,1.0,1.0,0.2699999999999998
+4,45,0.71,0.0,1.3541924581451537,0.0006896231353711185,0.03629725935156472,0.7139054736052587,2,1.0,1.0,0.2649999999999998
+4,46,0.69,0.0,1.3573122795672532,0.0006867115230588791,0.03583090977332238,0.7132690333418511,2,1.0,1.0,0.2599999999999998
+4,47,0.77,0.0,1.357983472417824,0.0006842011483323795,0.035946424354078396,0.7131327709213403,2,1.0,1.0,0.2299999999999998
+4,48,0.6292476078696305,0.0,1.3496191482976534,0.0006799303665906687,0.03568119034860344,0.7148425838738398,2,1.0,0.930825359565435,0.2099999999999998
+4,49,0.7621747754851247,0.0,1.3559689667028554,0.0006802699931932864,0.03565863906507939,0.7135463172980504,2,1.0,0.973915918283749,0.1799999999999998
+5,0,0.1919527586682656,0.0,1.3861418451190988,0.0007000694174318417,0.036344979019425246,0.7073313233391382,1,0.15754385721368455,0.25604136214492,0.01
+5,1,0.21342273978136075,0.0,1.3861140526102784,0.0007001132738465053,0.036508909583553274,0.7073370585791396,1,0.21281141486534882,0.3297958152616289,0.02
+5,2,0.30231429299302176,0.0,1.385898390056925,0.0007001075229722323,0.036647687508423135,0.7073817035586097,1,0.29019743597959835,0.4024839680005412,0.02
+5,3,0.33027180158912284,0.0,1.3861498404129833,0.0007001670372589544,0.0367352833393993,0.7073296277834229,1,0.3740333582719395,0.4645337539798135,0.02
+5,4,0.36659042487854043,0.0,1.3861132770901963,0.0007004213051959017,0.03678615425989129,0.7073370915886258,1,0.4166492184592599,0.5358773280593317,0.03
+5,5,0.38686204196649193,0.0,1.385657841609698,0.0007001549353213791,0.03675855402624268,0.7074314732521477,1,0.46213721701069943,0.6170467200424905,0.04
+5,6,0.46530121674114333,0.0,1.3862943611198844,0.0007001722195526527,0.03672626550780782,0.7072997068701548,1,0.5222258302867846,0.6750739204692292,0.04
+5,7,0.38787589895419805,0.0,1.3860898177155456,0.0007001681250977035,0.03662881606423643,0.7073420527426295,1,0.5575385542920889,0.6424580165065565,0.1
+5,8,0.45563786604941003,0.0,1.3860439069863757,0.0006999941514854776,0.036468241697998414,0.70735162862576,1,0.5739327716776396,0.6825379865407873,0.15000000000000002
+5,9,0.5221905769849504,0.0,1.3860916647850154,0.0007001756257994717,0.036385389066045486,0.7073416672765427,1,0.6217695375587465,0.7485707961312971,0.15000000000000002
+5,10,0.5449571260634634,0.0,1.3862943611198846,0.0007001722195526525,0.03655402168724227,0.7072997068701548,1,0.6713388005359332,0.8332951529196228,0.15000000000000002
+5,11,0.5709291023192229,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,1,0.7040087734920887,0.8817534386566396,0.16000000000000003
+5,12,0.628197433715716,0.0,1.3859853627509524,0.0007001661701481276,0.0367476483755813,0.7073636762299571,1,0.7622502062350536,0.9380328717781576,0.16000000000000003
+5,13,0.5425384947980277,0.0,1.385793413319647,0.0007008453043598998,0.03678846185415482,0.7074031270996685,1,0.7862840671558905,0.891130237644887,0.22000000000000003
+5,14,0.6435777067871786,0.0,1.3859331888259059,0.0007001919906905174,0.03676322045951385,0.7073744654420601,1,0.8433636223905647,0.9613347965016036,0.23000000000000004
+5,15,0.653514565737782,0.0,1.3862943611198846,0.0007001722195526527,0.03670703823465997,0.7072997068701548,1,0.8957559021079486,1.0,0.24000000000000005
+5,16,0.6757555826657218,0.0,1.385888435868174,0.0007001597606594205,0.03659739451334176,0.7073837423744821,1,0.9307302361877767,1.0,0.29000000000000004
+5,17,0.6224037055924965,0.0,1.385689241240762,0.0006997488338175463,0.03641702345984212,0.7074251424651958,1,0.9617488648756768,0.9526386762866987,0.35000000000000003
+5,18,0.71,0.0,1.3835186517945586,0.0006991852412490735,0.0364590360507522,0.7078744305361688,1,1.0,1.0,0.36000000000000004
+5,19,0.6377279805946796,0.0,1.3813378453346687,0.0006989788811744675,0.03639977179030125,0.7083252763691724,1,1.0,0.9590932686489322,0.42000000000000004
+5,20,0.6980077669600101,0.0,1.383314462031998,0.0006986465893293876,0.03661438490803434,0.7079168755364186,1,1.0,0.9933592232000339,0.47000000000000003
+5,21,0.73,0.0,1.382700183304566,0.0006976818373535088,0.03661379679509681,0.7080442729392293,1,1.0,1.0,0.47000000000000003
+5,22,0.6367737955984127,0.0,1.3840472623915265,0.0006994328173511389,0.03673646758422995,0.7077650056666871,1,1.0,0.9559126519947094,0.53
+5,23,0.6963018583156846,0.0,1.3853830288467088,0.0006995893754096387,0.0367259643012076,0.7074885826909335,1,1.0,0.987672861052282,0.5800000000000001
+5,24,0.73,0.0,1.3844753608426301,0.00069900253806087,0.03662787121374461,0.707676630628289,1,1.0,1.0,0.5800000000000001
+5,25,0.71,0.0,1.3851341521101692,0.000699507152420726,0.03653203843354672,0.7075401187238203,1,1.0,1.0,0.5800000000000001
+5,26,0.71,0.0,1.3845669911794625,0.0006999222025172322,0.036449072671094734,0.7076572941442156,1,1.0,1.0,0.5800000000000001
+5,27,0.71,0.0,1.3830066947577375,0.000700199232437922,0.036468077768199096,0.7079798666795957,1,1.0,1.0,0.5900000000000001
+5,28,0.73,0.0,1.382840264343073,0.0007026841053886995,0.036548679126520336,0.7080132466436645,1,1.0,1.0,0.5900000000000001
+5,29,0.71,0.0,1.3806047773071777,0.0007039026119923889,0.03666714574876642,0.708474671641817,1,1.0,1.0,0.5900000000000001
+5,30,0.7,0.0,1.3773294467247812,0.0007047441184521767,0.036636993532077895,0.7091503435515706,2,1.0,1.0,0.6400000000000001
+5,31,0.77,0.0,1.37960173250862,0.0006969822918833114,0.03655505548382278,0.7086846529100674,2,1.0,1.0,0.6100000000000001
+5,32,0.75,0.0,1.3751236978240524,0.0006953562057408274,0.03645458078177545,0.7096089518598406,2,1.0,1.0,0.5800000000000001
+5,33,0.72,0.0,1.3694494280908307,0.0006931445901490248,0.0360763821780555,0.7107777321968127,2,1.0,1.0,0.5700000000000001
+5,34,0.77,0.0,1.372551025740194,0.0007011641148186149,0.036555170159292286,0.7101364101431327,2,1.0,1.0,0.54
+5,35,0.71,0.0,1.3660341628717045,0.0006999526950343423,0.035909625537052486,0.7114765168333561,2,1.0,1.0,0.535
+5,36,0.72,0.0,1.3680199825013342,0.000695980684638581,0.036453717556516066,0.7110703333477768,2,1.0,1.0,0.525
+5,37,0.77,0.0,1.3702680533868214,0.0007043675298579206,0.03630635339598785,0.7106048002373251,2,1.0,1.0,0.495
+5,38,0.71,0.0,1.3638364837157848,0.0007039214107921405,0.03629075626525455,0.7119258137010804,2,1.0,1.0,0.49
+5,39,0.6385483703680364,0.0,1.3650752552556278,0.0006987527392404969,0.03633933748723427,0.7116738116910724,2,1.0,0.9618279012267879,0.47
+5,40,0.72,0.0,1.3712095176136019,0.0006966789412335199,0.036302050365188285,0.7104143173557355,2,1.0,1.0,0.45999999999999996
+5,41,0.6343232015785156,0.0,1.3731187792497568,0.0007039978667139439,0.03654339085073285,0.7100183613984975,2,1.0,0.9477440052617186,0.43999999999999995
+5,42,0.7180485615146277,0.0,1.3773791124792276,0.0007014452318118312,0.03639340272601671,0.7091414604362701,2,1.0,0.993495205048759,0.42999999999999994
+5,43,0.7,0.0,1.377791021666214,0.00070699119077956,0.03656976716361091,0.7090542045740501,2,1.0,1.0,0.41999999999999993
+5,44,0.7,0.0,1.376705351587732,0.0007117853110282745,0.036297675163844835,0.7092761463689657,2,1.0,1.0,0.4099999999999999
+5,45,0.71,0.0,1.3744756014984354,0.0007158420281848902,0.036630034501791954,0.7097340425303255,2,1.0,1.0,0.4049999999999999
+5,46,0.6344106753269725,0.0,1.376620110582521,0.0007106261198344642,0.03656178671671509,0.7092942010898222,2,1.0,0.9480355844232418,0.3849999999999999
+5,47,0.7678961170737872,0.0,1.3805423318166183,0.0007074542898857425,0.03676885187325773,0.7084861017809984,2,1.0,0.9929870569126242,0.35499999999999987
+5,48,0.71,0.0,1.3780205897129596,0.000710005418836486,0.03675268965087015,0.7090055994842049,2,1.0,1.0,0.34999999999999987
+5,49,0.77,0.0,1.3794125731175868,0.0007057771368855371,0.036673118076450996,0.7087200723293844,2,1.0,1.0,0.31999999999999984
+6,0,0.21674604329719105,0.0,1.3859542090455754,0.0007001555334863236,0.036393149357085236,0.7073701294183634,1,0.16787540817102703,0.259965501457772,0.0
+6,1,0.21617663914585816,0.0,1.3859253871017516,0.00070037752838323,0.0364998141346428,0.7073760035530073,1,0.2212582033223061,0.29578755994350336,0.05
+6,2,0.1650971723538418,0.0,1.3857243658818503,0.0007001536367472832,0.0366463273852201,0.7074177049258153,1,0.261672225304173,0.24503964499127084,0.11
+6,3,0.23953600984793788,0.0,1.3859828371082052,0.0007001243255904214,0.03673461335348014,0.7073642163621583,1,0.30835335952101195,0.27204111338527903,0.16
+6,4,0.24046980617827304,0.0,1.3858781769934936,0.000699919940731323,0.036768714134593414,0.7073859651559546,1,0.3559659971261436,0.2862723572804093,0.21000000000000002
+6,5,0.3287320682007527,0.0,1.3856647215466635,0.0006997250570269537,0.036754772994628544,0.7074302272407117,1,0.41878673445835723,0.34052237046775885,0.21000000000000002
+6,6,0.32548165931066436,0.0,1.3856236459517026,0.0006997756096064297,0.03671344865481126,0.707438707769451,1,0.4667845835722467,0.3736901835345934,0.26
+6,7,0.3932559726980725,0.0,1.3857495524224568,0.0007001282483454286,0.03660179527676633,0.7074125023511932,1,0.5285306472657831,0.42756748718349463,0.26
+6,8,0.4091616438343679,0.0,1.3860973650254065,0.0007001473627811826,0.03648030813551899,0.707340498973067,1,0.5772300887657624,0.4904370425545038,0.26
+6,9,0.4412420280207052,0.0,1.3858138956782278,0.0006998344333232716,0.036439752593416606,0.707399306033846,1,0.6272844068513467,0.5389749520757796,0.27
+6,10,0.3733327598928835,0.0,1.3861679988745215,0.0007001692005888381,0.03655590617652861,0.7073258678101009,1,0.6469127307738558,0.48971101374011333,0.33
+6,11,0.46599869511236314,0.0,1.3857734940203281,0.00070014812579372,0.036655514440893454,0.7074075386648162,1,0.6830788262606509,0.5564036864037845,0.34
+6,12,0.5234758670671942,0.0,1.3855862378705897,0.0006998591040412196,0.036726868312639216,0.7074464154683238,1,0.7476670587515583,0.6059746550138294,0.34
+6,13,0.5323989851207798,0.0,1.3862943611198844,0.0007001722195526527,0.036787569296499095,0.7072997068701548,1,0.7821126793157359,0.6621984912009072,0.35000000000000003
+6,14,0.5443666035408545,0.0,1.3860259967417727,0.0007001627415555447,0.03676505570315683,0.7073552663300229,1,0.8280065269775936,0.6818810636623229,0.4
+6,15,0.5021793063836709,0.0,1.385229231135002,0.0006995633513193233,0.0366749860229478,0.7075204206497332,1,0.869570607227648,0.6594319795133139,0.46
+6,16,0.5723178539487547,0.0,1.3841109143237578,0.0006992305322918156,0.03650884908549189,0.7077519238087142,1,0.9009286071068552,0.6899761382045179,0.51
+6,17,0.6151463100367902,0.0,1.3846541328027235,0.0007009184758478887,0.03647069898918556,0.7076388538641559,1,0.9456182670953464,0.7472663885113967,0.52
+6,18,0.5473661004150324,0.0,1.3855124040707785,0.0007001795414391613,0.03638555931252496,0.7074615636841121,1,0.9597795348137211,0.7048108774341002,0.5800000000000001
+6,19,0.6566878387779618,0.0,1.3842589160005492,0.0007001132523155062,0.03656649333294021,0.7077209451435186,1,1.0,0.7556261292598726,0.5800000000000001
+6,20,0.6373905530419353,0.0,1.3846200555906139,0.0006992852498651453,0.03665138034573169,0.707646579689507,2,1.0,0.7913018434731178,0.6300000000000001
+6,21,0.6713686782345474,0.0,1.375006469097127,0.0006930411983678327,0.03641834954805332,0.7096340619288131,2,1.0,0.8378955941151578,0.6200000000000001
+6,22,0.7317878673353835,0.0,1.3812999203443503,0.0007039126673945031,0.0367310803690591,0.7083310730140755,2,1.0,0.8726262244512784,0.5900000000000001
+6,23,0.5959763991595115,0.0,1.379309137399187,0.0007058419325329182,0.03671148482956684,0.7087413979661097,2,1.0,0.819921330531705,0.5700000000000001
+6,24,0.6640351296327023,0.0,1.3824809652191472,0.0007037841049649298,0.03661757299080452,0.7080870644363596,2,1.0,0.8467837654423408,0.5650000000000001
+6,25,0.6867272692359088,0.0,1.382744877478169,0.000701248465394728,0.03654659011696896,0.7080335591828438,2,1.0,0.8890908974530292,0.555
+6,26,0.6015005507184935,0.0,1.3819506191585067,0.0007033404252114351,0.036446336056377066,0.7081968581245563,2,1.0,0.8383351690616452,0.535
+6,27,0.6726958872388727,0.0,1.3843551203390503,0.0007020972575506657,0.03649482176353201,0.7077002238607438,2,1.0,0.8756529574629093,0.53
+6,28,0.6974125007328649,0.0,1.3842060255701645,0.0007002631244656574,0.03655129878644683,0.7077318235137472,2,1.0,0.9247083357762161,0.52
+6,29,0.693228597144471,0.0,1.3831547690914647,0.0007011805673557567,0.03669397256860139,0.7079488464051393,2,1.0,0.9774286571482369,0.51
+6,30,0.77,0.0,1.3811606943170494,0.0007019095025881095,0.03665687018424799,0.7083606636730132,2,1.0,1.0,0.48
+6,31,0.633684599374702,0.0,1.3805197819489619,0.000705386227241323,0.03672692625163972,0.7084916133030684,2,1.0,0.945615331249007,0.45999999999999996
+6,32,0.7083316141493823,0.0,1.3833772723729794,0.0007034238246904351,0.036750492566857564,0.7079019123977204,2,1.0,0.9944387138312742,0.45499999999999996
+6,33,0.631338587876022,0.0,1.3836603660457187,0.0007010777487486679,0.03659694258754662,0.707844342091755,2,1.0,0.9377952929200738,0.43499999999999994
+6,34,0.5972500684111055,0.0,1.3854405506005305,0.0007005397174207848,0.036531266591522595,0.7074762851556468,2,1.0,0.8908335613703517,0.4149999999999999
+6,35,0.7481515947823829,0.0,1.386073619462394,0.0007001880940294102,0.036329388033318935,0.7073453976525264,2,1.0,0.9271719826079431,0.3849999999999999
+6,36,0.7437438357393258,0.0,1.3857003291518621,0.0007008479746024465,0.03652768455304119,0.7074223925504103,2,1.0,0.9791461191310863,0.35499999999999987
+6,37,0.71,0.0,1.384270357509537,0.000701352491183827,0.036589955938630465,0.7077180657579745,2,1.0,1.0,0.34999999999999987
+6,38,0.6330428656808491,0.0,1.3847695992817959,0.000699989504183253,0.03670180963160337,0.7076153492821089,2,1.0,0.9434762189361641,0.32999999999999985
+6,39,0.70525748070278,0.0,1.360908057827935,0.0006832621574334129,0.03597520454408384,0.7125344874789723,2,1.0,0.9841916023426005,0.32499999999999984
+6,40,0.6343973844516931,0.0,1.360410704799985,0.0006823513610848689,0.03572199854474093,0.7126367221147034,2,1.0,0.9479912815056439,0.3049999999999998
+6,41,0.7001721621360849,0.0,1.3641914372470498,0.0006847505545807105,0.036165988331151526,0.7118608762340307,2,1.0,0.9672405404536165,0.2999999999999998
+6,42,0.69,0.0,1.362543372664603,0.0006851111438013551,0.03573388269288093,0.7121986530624032,2,1.0,1.0,0.2949999999999998
+6,43,0.69,0.0,1.3596468179110022,0.0006850683410540815,0.036195140732526596,0.7127920173186921,2,1.0,1.0,0.2899999999999998
+6,44,0.69,0.0,1.3558174537320138,0.0006845714026487671,0.03590247735435097,0.7135755269515819,2,1.0,1.0,0.2849999999999998
+6,45,0.6367847775855404,0.0,1.351080883209627,0.0006836387405245378,0.03584946507699871,0.7145430135840644,2,1.0,0.9559492586184682,0.2649999999999998
+6,46,0.6023048875544007,0.0,1.355146185119036,0.0006916217649038342,0.03597639186898004,0.7137098236812485,2,1.0,0.9076829585146692,0.2449999999999998
+6,47,0.6945745955638611,0.0,1.3571796150220394,0.0006989129166167429,0.03598818933733518,0.7132911741269233,2,1.0,0.9485819852128706,0.2399999999999998
+6,48,0.72,0.0,1.352361801649222,0.0006997277449820899,0.03603608030287064,0.714275104164792,2,1.0,1.0,0.2299999999999998
+6,49,0.77,0.0,1.3630010481249928,0.0006969661712031864,0.036060591102747175,0.712099972561524,2,1.0,1.0,0.1999999999999998
+7,0,0.22174699303788414,0.0,1.3861925767185181,0.0007002639536587664,0.03636352232467492,0.7073207405464003,1,0.17907026190964917,0.26357467123168987,0.0
+7,1,0.1497921426849093,0.0,1.3861060189681953,0.0007003914916527948,0.03650417567504321,0.7073386064433019,1,0.2378152667235905,0.22185599777217554,0.06
+7,2,0.22700160032246489,0.0,1.3854144621118425,0.0006996092396355531,0.03662060858430265,0.707482069359963,1,0.280107246519283,0.2632135468023862,0.11
+7,3,0.22817200373502508,0.0,1.3851491142012309,0.000699381417008743,0.03671218901579723,0.7075370746885546,1,0.3110245954262284,0.29771131778615045,0.16
+7,4,0.1952340806794132,0.0,1.3847889141755834,0.0006991361370631181,0.0367234396893023,0.7076117062133597,1,0.3300978088464053,0.26566615861057113,0.22
+7,5,0.29081808969028244,0.0,1.3851997288075784,0.0006995529033449214,0.036740193981124734,0.7075265300086505,1,0.3638329775194948,0.3449218251948642,0.23
+7,6,0.30086811577805067,0.0,1.3855609648542213,0.0006996609269372604,0.036695645661581656,0.7074517281265917,1,0.39859932204989573,0.37119451020195726,0.28
+7,7,0.3683319523356855,0.0,1.3850673013489505,0.0006994060613938462,0.036586312054232586,0.7075539936017686,2,0.45490427003085626,0.4303848594162862,0.28
+7,8,0.3908084063570828,0.0,1.3862943611198844,0.0007001722195526524,0.036479165647275234,0.7072997068701548,2,0.5040375057431921,0.4813175978232186,0.27
+7,9,0.31013876270532614,0.0,1.3861504152201456,0.000700169089925881,0.03639416159962207,0.7073295079401707,2,0.5284481527208676,0.4172730308434082,0.25
+7,10,0.474116934540448,0.0,1.3861242058736059,0.0007000512740690662,0.036545911092829154,0.707334982403448,2,0.6222616317857798,0.45441787805141715,0.22
+7,11,0.4358775706881096,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,2,0.664536016915131,0.4776332158927127,0.215
+7,12,0.4758268061571843,0.0,1.3861150403734654,0.0007001665418227931,0.036753810093429075,0.7073368320467525,2,0.7040537673232159,0.5313599586468625,0.205
+7,13,0.49139373419446963,0.0,1.3860082045144004,0.0006999719358165442,0.036775906553176085,0.7073590283694308,2,0.7656982464625773,0.577997826441892,0.19499999999999998
+7,14,0.4441762125063283,0.0,1.3854295466851412,0.0006997671369890359,0.03674050076297598,0.7074788822252803,2,0.802905193529998,0.5438646492360967,0.175
+7,15,0.42629665864025756,0.0,1.3862943611198846,0.0007001722195526527,0.03670703823465997,0.7072997068701548,2,0.827396854249288,0.5223591988433561,0.155
+7,16,0.5328843252547117,0.0,1.386122887287271,0.0007001709468379921,0.036586804933464834,0.7073352058194152,2,0.8697306814082002,0.561595289206139,0.15
+7,17,0.46559719826432233,0.0,1.3859667403588702,0.0007005934141119502,0.03645686603283539,0.707367354177999,2,0.8904533560231834,0.5131284121873605,0.13
+7,18,0.6325342625199308,0.0,1.3855364268185864,0.0007010593875099061,0.036392643289870776,0.7074562277295443,2,0.9798269407964795,0.5653161108038769,0.1
+7,19,0.5055479939714451,0.0,1.3857339362366279,0.0007001565226307286,0.036581983008128455,0.7074157228753575,2,1.0,0.5184933132381506,0.08
+7,20,0.5954477812196204,0.0,1.3850352440145355,0.000700325324780026,0.036669938225097454,0.7075602464787126,2,1.0,0.5848259373987348,0.07
+7,21,0.5910712275815486,0.0,1.3857640464273628,0.0006999701450895132,0.036752067418066636,0.7074095678210884,2,1.0,0.6369040919384954,0.060000000000000005
+7,22,0.5229597183017112,0.0,1.3862943611198846,0.0007001722195526523,0.03678791147773396,0.7072997068701548,2,1.0,0.5765323943390371,0.04000000000000001
+7,23,0.5916579867509839,0.0,1.3856889414168485,0.0006997541679086555,0.03674512960339989,0.707425202313145,2,1.0,0.6055266225032796,0.03500000000000001
+7,24,0.5842615987734123,0.0,1.3858769077271487,0.0007001597674763276,0.03668392686829346,0.7073861285987308,2,1.0,0.6475386625780413,0.03000000000000001
+7,25,0.5952819202439578,0.0,1.3857562342980525,0.0007009137759886126,0.03654192587819014,0.7074107941561907,2,1.0,0.6842730674798595,0.02500000000000001
+7,26,0.5427659517004177,0.0,1.384927556016179,0.0007015610862936884,0.03645200415829758,0.7075820172641775,2,1.0,0.6425531723347258,0.005000000000000008
+7,27,0.6308429978586556,0.0,1.3843320904336431,0.0007028758716042867,0.036420406851945364,0.7077046656922087,2,1.0,0.7028099928621853,0.0
+7,28,0.6277505330744239,0.0,1.3850131928309992,0.0007012822224071792,0.03662855599786946,0.7075644132643888,2,1.0,0.7258351102480797,0.0
+7,29,0.6531386035694016,0.0,1.3839572363802954,0.000702214120565299,0.036686734198111345,0.7077824752388456,2,1.0,0.777128678564672,0.0
+7,30,0.5664388418386289,0.0,1.383918432042569,0.0007002632146995841,0.0367210964884237,0.7077913079214527,2,1.0,0.721462806128763,0.0
+7,31,0.5340686409188331,0.0,1.3834579558129563,0.000701530561357864,0.03673764273503853,0.7078860116462564,2,1.0,0.6802288030627772,0.0
+7,32,0.6849293770411093,0.0,1.3824551304624124,0.0007025463158523777,0.036674029481562044,0.7080929161417139,2,1.0,0.7164312568036979,0.0
+7,33,0.5518059393612547,0.0,1.3848254683191898,0.0007013648817539572,0.03666601506353344,0.7076032209417211,2,1.0,0.6726864645375157,0.0
+7,34,0.6836814970922571,0.0,1.3834754321321723,0.000701877653747595,0.036458388252684076,0.7078822542733555,2,1.0,0.7122716569741905,0.0
+7,35,0.6783937571031438,0.0,1.3847317775776642,0.0007005252257999361,0.03649615532443275,0.7076229527011761,2,1.0,0.7613125236771459,0.0
+7,36,0.6654074061069798,0.0,1.3846661963978917,0.0006993631848758038,0.03644347709348821,0.7076370016066664,2,1.0,0.818024687023266,0.0
+7,37,0.6622083831653054,0.0,1.363478754533501,0.0006993689148559364,0.036268160273183477,0.7120010409371113,1,1.0,0.8740279438843513,0.0
+7,38,0.7079887227504574,0.0,1.385715518008928,0.0007004173244315535,0.036719192927320995,0.707419427081918,1,1.0,0.9266290758348581,0.0
+7,39,0.6892732699682379,0.0,1.3862517297037051,0.0007001676622195921,0.03678251059961155,0.7073085345261183,1,1.0,0.9642442332274599,0.05
+7,40,0.73,0.0,1.3858412193058014,0.0007003799749464694,0.03677663850697653,0.7073934245652679,1,1.0,1.0,0.05
+7,41,0.71,0.0,1.385571365721238,0.000699669405166907,0.03670277001166337,0.7074495720098007,1,1.0,1.0,0.05
+7,42,0.7,0.0,1.384287173652912,0.0006989737005150913,0.036553685436447776,0.7077155713995196,1,1.0,1.0,0.1
+7,43,0.73,0.0,1.3835447791602287,0.0006982907811188401,0.03646375830883268,0.7078693976068746,1,1.0,1.0,0.1
+7,44,0.71,0.0,1.3815954741269805,0.0006970246778543054,0.03633724483284307,0.7082728548199998,1,1.0,1.0,0.1
+7,45,0.6352803820231689,0.0,1.378604592121058,0.0006955748481481148,0.03649901315227723,0.7088910513047564,1,1.0,0.9509346067438968,0.16
+7,46,0.73,0.0,1.3802142872618806,0.000695915465070984,0.03646647135862234,0.7085586149857136,1,1.0,1.0,0.16
+7,47,0.6429851857884421,0.0,1.3764626241559963,0.0006935987316328888,0.036389916583969555,0.709333694524357,1,1.0,0.9766172859614739,0.22
+7,48,0.71,0.0,1.3771507352869439,0.0006936770667805837,0.0364268536096164,0.7091917674361551,1,1.0,1.0,0.23
+7,49,0.69,0.0,1.380821817589789,0.0006971347256348703,0.03660376065771027,0.7084326383808658,1,1.0,1.0,0.24000000000000002
+8,0,0.010914840935706313,0.0,1.3861198795461984,0.0007002006035854536,0.036355849557522094,0.7073358161792633,1,0.1326709196166535,0.1482667302329253,0.06
+8,1,0.21502187689382882,0.0,1.3862256261980361,0.0007001728388055842,0.03651232235805671,0.7073139363840822,1,0.19570981969152348,0.2217448000059853,0.06
+8,2,0.12448207680251322,0.0,1.3861282727708244,0.0007002631315461321,0.03665988571862393,0.7073340527910547,1,0.21302422352562034,0.16641199522848701,0.12
+8,3,0.1078872615675077,0.0,1.3862098798491433,0.0007001717754926135,0.03674383650709084,0.7073171966375139,1,0.258819661747311,0.12433459985316289,0.18
+8,4,0.21980347869902275,0.0,1.3862179509285313,0.000700243512189975,0.03678362677404037,0.7073154960613509,1,0.30272495330566673,0.17949915014013137,0.19
+8,5,0.2738236023874949,0.0,1.3862287951274985,0.000700149487680934,0.0367764101746461,0.7073132900172769,1,0.3561247887699115,0.23059975439341968,0.19
+8,6,0.29311507982736823,0.0,1.3850132136215583,0.0006992976892324899,0.03667421741718188,0.7075652302291576,1,0.41081149201587375,0.29777019207270816,0.2
+8,7,0.34542860951944065,0.0,1.385456547258995,0.0006996724476496931,0.0365917892137086,0.7074733335501852,1,0.46623652271916743,0.3408194218924402,0.2
+8,8,0.2609219885393771,0.0,1.3849406329034653,0.0006992138998409353,0.036427487055196266,0.7075802828375726,1,0.49907733665192794,0.28748306903734105,0.26
+8,9,0.33011058085674716,0.0,1.3847449935298897,0.0006991699544671907,0.03648231804932979,0.707620779203787,1,0.5331775771601545,0.31166142950231024,0.31
+8,10,0.40398691357980154,0.0,1.3848484481082293,0.0006995487587275353,0.036521018247089525,0.7075992179015346,1,0.5953649034589402,0.385363991230575,0.31
+8,11,0.40367174898298586,0.0,1.384152594123058,0.0006987596384040529,0.0365947319391995,0.7077434975222064,1,0.6466723153802487,0.4244547953329961,0.36
+8,12,0.47698947471856323,0.0,1.3848497998288605,0.000699679746002271,0.03670179581226859,0.707598884023751,1,0.7057896082625532,0.49987703942223205,0.36
+8,13,0.46774647949855996,0.0,1.3835071193440418,0.0006994017152024065,0.03671890922763315,0.7078767257772732,1,0.7413763966968737,0.5275491355155139,0.41
+8,14,0.5320889869700943,0.0,1.3840019889040054,0.0006988965515162392,0.036706864915278935,0.7077745914931245,1,0.803439321597476,0.5696174147032593,0.41
+8,15,0.5549443671000975,0.0,1.3858635444542549,0.0007002895658080625,0.03670481838746933,0.7073888409343235,1,0.8746309652021308,0.6294117642645061,0.41
+8,16,0.6017993602068792,0.0,1.384779584303016,0.0007017806438414349,0.036555211517728406,0.7076125422557983,1,0.9335718539716163,0.7168307043893781,0.41
+8,17,0.6430848646472656,0.0,1.3847158348992905,0.000700301747956669,0.03643267995519924,0.707626343585436,1,0.9858154402256601,0.7934982018942817,0.41
+8,18,0.6452895692099845,0.0,1.38383156168574,0.0006988188957025225,0.036509137384541854,0.7078098717793561,1,1.0,0.8176318973666152,0.45999999999999996
+8,19,0.6709829089618851,0.0,1.3774357699327444,0.0006991193394602186,0.03637455852551848,0.7091307336381781,1,1.0,0.8699430298729505,0.47
+8,20,0.6664967018728012,0.0,1.3776359057730647,0.0007029915053824724,0.03654431588757499,0.7090878535084254,1,1.0,0.8883223395760044,0.52
+8,21,0.5986170569987228,0.0,1.3765638673991223,0.0006992447584391981,0.036529330756210274,0.7093104915173298,1,1.0,0.8287235233290763,0.5800000000000001
+8,22,0.6925811360289117,0.0,1.3808856970456307,0.0006989677886827475,0.03661510395664629,0.7084186862503482,1,1.0,0.8752704534297058,0.5800000000000001
+8,23,0.6014584952272779,0.0,1.3787075261473383,0.0006993665027597594,0.03659125863226983,0.7088682439203937,2,1.0,0.8381949840909264,0.6400000000000001
+8,24,0.6720469519253831,0.0,1.3851502088756682,0.0006999050606063216,0.03664052196484783,0.7075366314557442,2,1.0,0.8734898397512774,0.6350000000000001
+8,25,0.6612307193099094,0.0,1.3846128286524566,0.0006990323440872507,0.036521288626763675,0.7076481794606079,2,1.0,0.904102397699698,0.6300000000000001
+8,26,0.6726708746822114,0.0,1.3832559910774496,0.0006981502989028545,0.036505270525199265,0.7079291706936837,2,1.0,0.9422362489407049,0.6250000000000001
+8,27,0.77,0.0,1.3809780598284047,0.00069708247244297,0.0362532073244508,0.7084003861716127,2,1.0,1.0,0.5950000000000001
+8,28,0.6336039928255299,0.0,1.379911354794558,0.0006957875316680059,0.036437684909477554,0.7086212204193002,2,1.0,0.9453466427517667,0.5750000000000001
+8,29,0.7005288545318387,0.0,1.3818806596264688,0.0006978924203548808,0.03653977398084862,0.7082135669699176,2,1.0,0.9684295151061292,0.5700000000000001
+8,30,0.72,0.0,1.3794303895454805,0.0006973076206259977,0.036586422517133385,0.7087198912034199,2,1.0,1.0,0.56
+8,31,0.71,0.0,1.3819729451090321,0.0006974411567505612,0.03661421006736409,0.7081946825869385,2,1.0,1.0,0.555
+8,32,0.69,0.0,1.3789063268513257,0.0006960880523669876,0.036521654481174406,0.7088285681938529,2,1.0,1.0,0.55
+8,33,0.69,0.0,1.3748876008247441,0.0006943784646624929,0.036442987398281314,0.7096580034793574,2,1.0,1.0,0.545
+8,34,0.69,0.0,1.3698024467568597,0.0006921817089578323,0.03597603273113399,0.710705551723145,2,1.0,1.0,0.54
+8,35,0.69,0.0,1.363615209498359,0.0006894808307229036,0.03642618732507204,0.7119771147094818,2,1.0,1.0,0.535
+8,36,0.72,0.0,1.3562957051076365,0.0006860933068001746,0.035509500007033803,0.7134771470866675,2,1.0,1.0,0.525
+8,37,0.7,0.0,1.360535936016017,0.0006847479720436659,0.03625094942365701,0.7126100942428205,2,1.0,1.0,0.515
+8,38,0.6386988338006292,0.0,1.3622149587496815,0.0006839143521105331,0.035913002412338725,0.7122664544881008,2,1.0,0.9623294460020975,0.495
+8,39,0.704411502107376,0.0,1.3678542018040991,0.0006914792874890725,0.03617627199028058,0.7111062411714887,2,1.0,0.9813716736912533,0.49
+8,40,0.69,0.0,1.3612852605190606,0.000688604627144825,0.036091253780733024,0.7124550302585344,2,1.0,1.0,0.485
+8,41,0.639866777861271,0.0,1.3537086250432573,0.0006849878167138113,0.035633600326572853,0.7140061766825007,2,1.0,0.9662225928709035,0.46499999999999997
+8,42,0.77,0.0,1.3586866952948156,0.0006966868338764607,0.036358221954115144,0.7129837778865235,2,1.0,1.0,0.43499999999999994
+8,43,0.71,0.0,1.364386890551473,0.000693442060384573,0.03582355468975481,0.7118172183511974,2,1.0,1.0,0.42999999999999994
+8,44,0.69,0.0,1.356811507636364,0.0006903745987357161,0.036369199427173475,0.7133699404353362,2,1.0,1.0,0.42499999999999993
+8,45,0.77,0.0,1.3482892944894194,0.0006865384738936972,0.03538452880284014,0.7151108948528112,2,1.0,1.0,0.3949999999999999
+8,46,0.72,0.0,1.3530108988040768,0.0006838447351769825,0.03615802263932051,0.7141490987479381,2,1.0,1.0,0.3849999999999999
+8,47,0.7,0.0,1.357916621713326,0.0006828176478297632,0.03581002352891114,0.713147012711879,2,1.0,1.0,0.3749999999999999
+8,48,0.7,0.0,1.36013529073209,0.0006822494839981837,0.03585575677439453,0.7126931613744307,2,1.0,1.0,0.3649999999999999
+8,49,0.6361291877863944,0.0,1.36019910191198,0.0006818728581450073,0.035976663704158016,0.712680249357787,2,1.0,0.9537639592879812,0.34499999999999986
+9,0,0.16694037840872983,0.0,1.3861246486501804,0.0007002244172885498,0.036357195358683744,0.707334819057747,1,0.13527160089961332,0.23198439364621726,0.05
+9,1,0.23188885461440562,0.0,1.386245812763627,0.0007001960895376498,0.03651182600859976,0.707309747698118,1,0.1747437726927871,0.30242844723976714,0.05
+9,2,0.22695960893039685,0.0,1.3861218397313366,0.0007002344040711759,0.036659134315383576,0.707335396403314,1,0.2293847246797067,0.32224985097499836,0.1
+9,3,0.2700869200602988,0.0,1.3851804707572564,0.0006994017383268874,0.036708420560124334,0.7075305776753099,1,0.2581197438338575,0.39915003239482877,0.11
+9,4,0.2880114397975333,0.0,1.3851820338610148,0.000699522445878123,0.03675144590624003,0.7075302042641706,1,0.3022248314663295,0.44077582928105985,0.16
+9,5,0.2879383864517082,0.0,1.3857338193312696,0.0007006775507876542,0.03677940911385864,0.7074155313887622,1,0.3456645366134586,0.45651932878999246,0.21000000000000002
+9,6,0.3771043492692018,0.0,1.385884277013667,0.0007003063878208347,0.03671058433147707,0.7073845425220898,1,0.4029813518716091,0.5202029203804619,0.21000000000000002
+9,7,0.4012863420302894,0.0,1.386101047845449,0.0007001605000963077,0.03662955246473085,0.7073397311530943,1,0.45960176069469205,0.6014190859571573,0.22000000000000003
+9,8,0.3433154194076994,0.0,1.3857443202661834,0.0006997806741680059,0.03645566703834717,0.7074137291835161,1,0.48571358561163325,0.5777188814787592,0.28
+9,9,0.4638442754751305,0.0,1.3860493924994515,0.0007004668997004759,0.036398867823398316,0.7073502973709191,1,0.5485322207211771,0.6395266607423952,0.28
+9,10,0.48468146517261723,0.0,1.3856242703074733,0.0006998276255246261,0.036537863997565305,0.7074385570156405,1,0.61130042025542,0.7024210602774011,0.28
+9,11,0.41883375027864456,0.0,1.3860130733731775,0.0007001628733668894,0.036676620603181595,0.7073579414546078,1,0.639887550502828,0.6495770253421826,0.34
+9,12,0.4020621807770181,0.0,1.3858505871584792,0.0006998709082072842,0.0367386829617002,0.7073916962708692,1,0.6849168053668466,0.6078043296620728,0.4
+9,13,0.49898639336974476,0.0,1.3859943545620166,0.000700186213445726,0.036778563294338845,0.7073618066208783,1,0.7188395164187457,0.6579752087439461,0.45
+9,14,0.5712779529708638,0.0,1.385455070094147,0.0007003458623978247,0.03674665242158055,0.7074733605237131,1,0.7872890140921143,0.7190893267954129,0.45
+9,15,0.568602427866072,0.0,1.3859345223907837,0.0007000212218431979,0.036700205869032304,0.7073742600965266,1,0.8404016683009546,0.7482061465357928,0.5
+9,16,0.5264802983204566,0.0,1.382481400180541,0.0006996104602869908,0.036470948163789096,0.7080886999100655,1,0.8846980667336737,0.7227865832122363,0.56
+9,17,0.5051863159140965,0.0,1.3823103810800286,0.0007012453717655034,0.03640407204739558,0.7081233723232007,2,0.922150401705725,0.6747789177236423,0.6200000000000001
+9,18,0.6041417095835122,0.0,1.3757588801674832,0.0006969983802594317,0.036160937251259816,0.7094773691985671,2,0.964388498642079,0.6886857835292819,0.6150000000000001
+9,19,0.6930892342509095,0.0,1.3733567137497562,0.0006936867825596978,0.036454316061170916,0.7099736164233764,2,1.0,0.7436307808363651,0.5850000000000001
+9,20,0.5598429225214179,0.0,1.3722393319770778,0.0006954339212443151,0.036245047378581946,0.7102029245450915,2,1.0,0.6994764084047265,0.5650000000000001
+9,21,0.5247395271175708,0.0,1.3776245241928238,0.0006960559476598455,0.03650553625523449,0.7090930626642982,2,1.0,0.6491317570585695,0.545
+9,22,0.6134640776130889,0.0,1.3812110094115926,0.0006970287007306194,0.03659379524982041,0.708352285825506,2,1.0,0.6782135920436294,0.54
+9,23,0.5352084981244112,0.0,1.3789974271412972,0.0006950612599173266,0.036500619227407646,0.7088101894466236,2,1.0,0.6173616604147041,0.52
+9,24,0.5017902049916798,0.0,1.3817273975966455,0.0006972574271757184,0.036512179906541306,0.7082454995370308,2,1.0,0.572634016638933,0.5
+9,25,0.6538886753643375,0.0,1.3814178255131189,0.0007029433095020435,0.036560534925859214,0.7083071139789922,2,1.0,0.6129622512144582,0.47
+9,26,0.647348502866998,0.0,1.3822459161703091,0.0006978651238947996,0.036537353274902776,0.7081380933038213,2,1.0,0.6578283428899933,0.43999999999999995
+9,27,0.6304469222736142,0.0,1.3814752831234896,0.0006968356563182675,0.036366178479777266,0.7082977664623371,2,1.0,0.7014897409120473,0.42999999999999994
+9,28,0.6213454038312977,0.0,1.3827243762078527,0.0006979654893492859,0.0365052038192603,0.7080391545427225,2,1.0,0.7378180127709925,0.41999999999999993
+9,29,0.6423530007836172,0.0,1.3828117058683767,0.0006990151725879572,0.03663022589496997,0.7080206674562443,2,1.0,0.8078433359453908,0.4099999999999999
+9,30,0.6577505891481765,0.0,1.3516739094095875,0.0006764901594547418,0.03571102981647728,0.7144249548174298,2,1.0,0.8591686304939217,0.3999999999999999
+9,31,0.6793068037330436,0.0,1.349760968918411,0.0006773019960833794,0.03567219067395878,0.7148147455120388,2,1.0,0.8976893457768121,0.3949999999999999
+9,32,0.6649348612083461,0.0,1.3436185712317332,0.0006719014367416547,0.03505220871197593,0.7160674437814215,2,1.0,0.9164495373611536,0.3899999999999999
+9,33,0.7114443768851233,0.0,1.3365587845339668,0.0006659937188409508,0.03566042805990438,0.7175030061374724,2,1.0,0.9714812562837444,0.3799999999999999
+9,34,0.7032351467948597,0.0,1.3342532596370007,0.0006671283085269453,0.034968940455174916,0.7179696246982908,2,1.0,0.9774504893161987,0.3749999999999999
+9,35,0.69,0.0,1.3265508295930137,0.000660704142149267,0.035421227900259096,0.7195292550130296,2,1.0,1.0,0.3699999999999999
+9,36,0.69,0.0,1.3178395305266004,0.0006537064870109038,0.03449761636575886,0.7212867022119837,2,1.0,1.0,0.3649999999999999
+9,37,0.72,0.0,1.307966288872617,0.0006457864374901097,0.03482323451975914,0.72327036895951,2,1.0,1.0,0.35499999999999987
+9,38,0.71,0.0,1.3063482783186866,0.0006486346251706433,0.03424047525999828,0.7235929579981941,2,1.0,1.0,0.34999999999999987
+9,39,0.69,0.0,1.2961316734481043,0.000640586347034951,0.03415666205827474,0.7256348719805861,2,1.0,1.0,0.34499999999999986
+9,40,0.72,0.0,1.2850323597116964,0.0006317973951693103,0.03410791190747806,0.7278425613465216,2,1.0,1.0,0.33499999999999985
+9,41,0.7,0.0,1.283340522988519,0.0006360616150995488,0.03386653584304308,0.7281758762112273,2,1.0,1.0,0.32499999999999984
+9,42,0.71,0.0,1.3634973925545468,0.0006993802480887849,0.03622301112901098,0.7119972144442711,2,1.0,1.0,0.31999999999999984
+9,43,0.69,0.0,1.35751561345286,0.0006988285497334701,0.03607776230323984,0.7132224897258488,2,1.0,1.0,0.31499999999999984
+9,44,0.69,0.0,1.3505427140733457,0.0006974473960921078,0.03622454210366326,0.7146471400933754,2,1.0,1.0,0.30999999999999983
+9,45,0.72,0.0,1.342396656718761,0.000695167567976847,0.03557470528710176,0.7163063557567908,2,1.0,1.0,0.2999999999999998
+9,46,0.71,0.0,1.3527574360021133,0.0006913846337804893,0.036214827231957104,0.7141977598091525,2,1.0,1.0,0.2949999999999998
+9,47,0.77,0.0,1.3437723272722006,0.000687770945249333,0.035475790206164495,0.7160297283683228,2,1.0,1.0,0.2649999999999998
+9,48,0.72,0.0,1.3457593463687614,0.0006835269017375913,0.0356973176742743,0.7156272594774872,2,1.0,1.0,0.2549999999999998
+9,49,0.77,0.0,1.3544006883179236,0.0006825506693833703,0.03585674385814645,0.7138658311266489,2,1.0,1.0,0.22499999999999978
+10,0,0.09690102687976129,0.0,1.3861831466488508,0.0007001083993110262,0.03638308848685377,0.7073227571426667,1,0.1398575779242374,0.15983624868759402,0.06
+10,1,0.21812572631737476,0.0,1.386175315327352,0.0007003296730904471,0.03650683896327504,0.7073242867441656,1,0.19589598991870108,0.23187376615276467,0.06
+10,2,0.2320222470772482,0.0,1.3861897591509855,0.0007001079896933103,0.03665149428840663,0.7073213884082177,1,0.2437899659505578,0.2889858633151766,0.06
+10,3,0.26445776040662905,0.0,1.3850237832281134,0.0006993579238547668,0.036697865197458636,0.7075630182693076,1,0.2812839661582719,0.35336124083744636,0.06999999999999999
+10,4,0.2025975692173948,0.0,1.3848548789958066,0.0006994428165390251,0.03674676018688636,0.7075979311721611,1,0.30576665198636066,0.3185974700738952,0.13
+10,5,0.2981187769983236,0.0,1.385453999253823,0.0006996352353016188,0.03674459785849864,0.7074738762743804,1,0.35476951069479246,0.3798314941838209,0.14
+10,6,0.23539789370080605,0.0,1.3851535730000148,0.0006996015180357754,0.03668354016231426,0.7075360609453021,1,0.38984509934651274,0.329840363098422,0.2
+10,7,0.3522246535282546,0.0,1.3856276067779412,0.0006997453470742787,0.03660220207232504,0.7074379005266521,1,0.4476332166441454,0.3851767590093459,0.2
+10,8,0.3709523453034471,0.0,1.384037105889147,0.0006990203851104707,0.036409630767310096,0.7077672769782706,1,0.5073706140185812,0.4445754346564791,0.2
+10,9,0.3999618127198946,0.0,1.3856336036346462,0.0007007665645672109,0.03642071788798853,0.7074362366355557,1,0.5534591405775986,0.4875037117257839,0.2
+10,10,0.4201349154190477,0.0,1.3849214067191349,0.0007010145015357715,0.03651273801585178,0.7075835157985519,1,0.5952411881121611,0.5393349985993043,0.25
+10,11,0.43029551086310597,0.0,1.3851212585067723,0.0007001928043784418,0.036658980624014695,0.7075425029941255,1,0.6454554289038772,0.5812870358224966,0.3
+10,12,0.5182747831633042,0.0,1.3857224810611415,0.0006997879694888216,0.03674409666390573,0.7074182464118249,1,0.7062234389382529,0.636988598449719,0.3
+10,13,0.5058763321179965,0.0,1.3859651461638671,0.0006999483449544144,0.03678051445442343,0.7073679512311212,1,0.731139117225697,0.666592136963342,0.35
+10,14,0.5492866393969931,0.0,1.3844855731319057,0.0006997337237252852,0.036721164420082886,0.7076742154805248,1,0.7800623165923612,0.7208827619655556,0.36
+10,15,0.6118334266624414,0.0,1.3847246549670746,0.0006992080502093873,0.036667797201352055,0.7076249713413443,1,0.8453321967191869,0.7865571927024203,0.36
+10,16,0.6327958487493796,0.0,1.3804209152276703,0.0007036875466388405,0.03644916641317017,0.7085127335812402,1,0.9028331079161643,0.856014203262407,0.37
+10,17,0.6930788013397489,0.0,1.3840269050389065,0.0006988589984623541,0.03634360802338475,0.7077694536035981,1,0.9590441896636879,0.9247111165248606,0.37
+10,18,0.6884307716338128,0.0,1.3816555030976283,0.0006979568462160033,0.036556290224755816,0.7082600661103248,1,1.0,0.961435905446043,0.42
+10,19,0.6227499383973816,0.0,1.3812932834168579,0.0006968110803612152,0.03641258009422624,0.7083353785221024,1,1.0,0.9091664613246052,0.48
+10,20,0.6975866406776376,0.0,1.3824939849069768,0.0006976020740866895,0.03655455550035542,0.7080869289185803,1,1.0,0.9586221355921258,0.49
+10,21,0.6996798211732649,0.0,1.3845531539174525,0.0006991933975503469,0.0367183908700442,0.7076604583135387,1,1.0,0.9989327372442163,0.54
+10,22,0.6413229862138109,0.0,1.3837874490269342,0.0006984371449039128,0.03668084234392227,0.707819152758483,2,1.0,0.9710766207127032,0.6000000000000001
+10,23,0.6075509221971204,0.0,1.2846198229115169,0.0006336769839297216,0.033814488900735476,0.72792352765101,2,1.0,0.9251697406570681,0.5800000000000001
+10,24,0.7075350806675633,0.0,1.3013819733811443,0.0006452803248286499,0.034682335812099514,0.7245864847039691,2,1.0,0.958450268891878,0.5700000000000001
+10,25,0.77,0.0,1.2990763244709693,0.0006465487594364448,0.03417916540324857,0.7250458580278271,2,1.0,1.0,0.54
+10,26,0.71,0.0,1.3121460384825459,0.0006523433378385535,0.035050189062704344,0.7224303807947227,2,1.0,1.0,0.535
+10,27,0.72,0.0,1.3023874094785144,0.000644581186773752,0.03401894595876771,0.7243860728270877,2,1.0,1.0,0.525
+10,28,0.71,0.0,1.299536056618376,0.0006471068238733012,0.03454217092245233,0.7249539763862274,2,1.0,1.0,0.52
+10,29,0.72,0.0,1.2897291777028599,0.0006395200284074965,0.03385541576067218,0.7269081180994631,2,1.0,1.0,0.51
+10,30,0.77,0.0,1.2859652800213435,0.000642040638656909,0.0340754374177155,0.7276536621032679,2,1.0,1.0,0.48
+10,31,0.75,0.0,1.298826920358809,0.0006508265935679041,0.03444677986540564,0.7250938696130937,2,1.0,1.0,0.44999999999999996
+10,32,0.75,0.0,1.3079351245736432,0.0006607882811301769,0.03437539633531363,0.7232706012562775,2,1.0,1.0,0.41999999999999993
+10,33,0.72,0.0,1.3137983579875157,0.0006710584618018173,0.035317910831635636,0.7220914168695136,2,1.0,1.0,0.4099999999999999
+10,34,0.635609302199889,0.0,1.310360424942977,0.0006754731815696192,0.03444375490741147,0.7227790292739965,2,1.0,0.9520310073329636,0.3899999999999999
+10,35,0.6002217737585,0.0,1.3271952553990258,0.0006747869267508468,0.03559259206285993,0.7193935013890871,2,1.0,0.9007392458616671,0.3699999999999999
+10,36,0.7014000485881503,0.0,1.3409022291884407,0.0006760893350351886,0.035360644924436385,0.7166176912711475,2,1.0,0.9380001619605012,0.3599999999999999
+10,37,0.7019172867325902,0.0,1.3368515038317195,0.0006769031499107437,0.03559890522052033,0.717439247268231,2,1.0,0.9730576224419674,0.35499999999999987
+10,38,0.6340247782915607,0.0,1.331476742928829,0.0006709961805604636,0.03506230215339341,0.7185299345483074,2,1.0,0.9467492609718693,0.33499999999999985
+10,39,0.7664225139526533,0.0,1.3438986098285566,0.0006741645292994913,0.0353781255027661,0.7160095839755648,2,1.0,0.9880750465088443,0.3049999999999998
+10,40,0.75,0.0,1.3537151273186014,0.0006835651457614193,0.03586869302241715,0.7140054299311478,2,1.0,1.0,0.2749999999999998
+10,41,0.72,0.0,1.3546134593661505,0.0006812916369947327,0.03573016122336985,0.7138228826255146,2,1.0,1.0,0.2649999999999998
+10,42,0.71,0.0,1.360492970639714,0.0006823299608758955,0.036194699628020535,0.7126198837238705,2,1.0,1.0,0.2599999999999998
+10,43,0.69,0.0,1.3531427181435927,0.0006776733780446183,0.03540464364245079,0.7141247081461,2,1.0,1.0,0.2549999999999998
+10,44,0.69,0.0,1.3448157189460708,0.0006723040085471743,0.035980553973019386,0.7158238191338049,2,1.0,1.0,0.24999999999999978
+10,45,0.6346840802460476,0.0,1.3352977679939155,0.0006660942283072263,0.034677218349171667,0.717758493818235,2,1.0,0.9489469341534921,0.2299999999999998
+10,46,0.72,0.0,1.3443279571887083,0.0006801193466693799,0.03600248558763873,0.7159198502885857,2,1.0,1.0,0.21999999999999978
+10,47,0.71,0.0,1.3507306308987594,0.0006789421292459209,0.035578170804669594,0.714616365288807,2,1.0,1.0,0.21499999999999977
+10,48,0.69,0.0,1.3412099971576454,0.0006732879432541005,0.035557496900781985,0.7165563245232275,2,1.0,1.0,0.20999999999999977
+10,49,0.77,0.0,1.3307486824460544,0.0006669115011686717,0.035428148194509415,0.7186788091490688,2,1.0,1.0,0.17999999999999977
+11,0,0.18953607459076616,0.0,1.3858932717431116,0.0007000354349212079,0.0364332110549028,0.7073827928550963,0,0.14096737173796464,0.26732498160826174,0.01
+11,1,0.1591374824627997,0.0,1.3862943611198844,0.0007001722195526525,0.036517885004265345,0.7072997068701548,0,0.1720898167913726,0.29635348861939764,0.02
+11,2,0.16617595578349928,0.0,1.3862706725800535,0.0007001716339548655,0.03665488568293456,0.7073046112518835,0,0.1738969024070649,0.3177067998034218,0.03
+11,3,0.20303557014716572,0.0,1.386194930088752,0.0007001686742295399,0.036737087015095884,0.7073202928050751,0,0.28109989876315383,0.282168685266873,0.11
+11,4,0.2370932590758103,0.0,1.3862943611198846,0.0007001722195526524,0.03678462527586455,0.7072997068701548,0,0.3450949450046698,0.28770009441391964,0.16999999999999998
+11,5,0.24894400106557094,0.0,1.3862416459039812,0.0007001703354106572,0.03677628880118323,0.7073106209951336,0,0.3663373617207072,0.3024197482110781,0.18
+11,6,0.24590812170163778,0.0,1.3862133539287658,0.0007001140735450159,0.03672193244147538,0.7073165013253914,0,0.3673852868918995,0.32441090429824326,0.18
+11,7,0.26735898080012555,0.0,1.3862304700339045,0.0007001908571835696,0.03662992059884309,0.7073129261472825,0,0.39515178978458404,0.33018618125173715,0.19
+11,8,0.3065241784025062,0.0,1.3861119856704527,0.0007002610972984041,0.03646740835498848,0.7073374252567336,0,0.48879601669081835,0.3514852418690658,0.25
+11,9,0.30580615842075876,0.0,1.3862943611198846,0.0007001722195526525,0.036382021848143,0.7072997068701548,0,0.56090660640386,0.3316294872646927,0.31
+11,10,0.33417234828571246,0.0,1.3862064651589001,0.0007001711491431233,0.03655768395735663,0.7073179038040861,0,0.6400177309019928,0.33388714156671684,0.37
+11,11,0.35162226084236614,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,0,0.6573879562475253,0.3384549205191076,0.37
+11,12,0.37566419247155947,0.0,1.3861779836406258,0.0007001681258530625,0.036750857088309226,0.7073238012446134,0,0.7588611998907672,0.3002092416993032,0.45
+11,13,0.38161929160530106,0.0,1.3861126845147016,0.0007000503710491236,0.03678420151444643,0.7073373678335334,0,0.84427207235571,0.28708022093600866,0.53
+11,14,0.4090699388979896,0.0,1.3862943611198846,0.0007001722195526527,0.03677093273821602,0.7072997068701548,2,0.9465039623693571,0.25931184022904874,0.61
+11,15,0.37382546393960014,0.0,1.3859813237229472,0.0007001916952791692,0.03669434144132403,0.7073645017418868,2,0.9630638868707687,0.1891770117827706,0.59
+11,16,0.4719107237096471,0.0,1.3862943611198844,0.0007001722195526525,0.03659596830027643,0.7072997068701548,2,1.0,0.20636907903215712,0.585
+11,17,0.39567356251341834,0.0,1.3862433618422245,0.0007001709819950318,0.036431867801063354,0.7073102654897996,2,1.0,0.15224520837806127,0.565
+11,18,0.5292303252646068,0.0,1.3860215496052584,0.0007001680447170539,0.036410736466535726,0.7073561847077577,2,1.0,0.1974344175486893,0.5349999999999999
+11,19,0.39635031502157475,0.0,1.3859061297392343,0.0006998972615441572,0.036571593619988366,0.7073801885427888,2,1.0,0.15450105007191595,0.5149999999999999
+11,20,0.48639074388816445,0.0,1.3860326019403084,0.0007001008881798947,0.036690802263420634,0.7073539246348326,2,1.0,0.22130247962721494,0.5049999999999999
+11,21,0.48030125835728144,0.0,1.386236670710497,0.0007001535575303144,0.036767031117327834,0.7073116579168779,2,1.0,0.26767086119093836,0.4949999999999999
+11,22,0.4176144799518107,0.0,1.3861504340421755,0.0007001395972923446,0.0367834626355767,0.7073295162545421,2,1.0,0.22538159983936917,0.47499999999999987
+11,23,0.5065653945404353,0.0,1.3859350887783621,0.0006999328461201808,0.03675125822547796,0.7073741794434317,2,1.0,0.2885513151347843,0.46499999999999986
+11,24,0.4232116711169649,0.0,1.3854810430278224,0.0006997058706736991,0.03664761928789935,0.7074682501728413,2,1.0,0.2440389037232163,0.44499999999999984
+11,25,0.5081439684270268,0.0,1.3850369586105402,0.0006992857785278893,0.036517506940117996,0.7075603218998648,2,1.0,0.29381322809008925,0.43499999999999983
+11,26,0.5740970427042613,0.0,1.3842234693988145,0.0006988749555560617,0.03641118971221962,0.7077287895708476,2,1.0,0.34699014234753783,0.4049999999999998
+11,27,0.5353732602971104,0.0,1.3848090745604904,0.0007000746476120798,0.036449097438236364,0.7076071467109469,2,1.0,0.38457753432370134,0.3949999999999998
+11,28,0.5210297326894581,0.0,1.383653788561308,0.0007002202707608641,0.03653424669012585,0.7078460569715201,2,1.0,0.4034324422981937,0.3849999999999998
+11,29,0.5367771935567156,0.0,1.3754292391131222,0.0007036387865566457,0.03654110285184823,0.7095425728069629,2,1.0,0.4225906451890522,0.3799999999999998
+11,30,0.5270174984342365,0.0,1.376258249614784,0.0007005094520445959,0.036551379044320244,0.7093729810818621,2,1.0,0.45672499478078854,0.3749999999999998
+11,31,0.5372568752716381,0.0,1.375970672374138,0.0006977646873688122,0.03643953876003976,0.7094333968855544,2,1.0,0.4908562509054605,0.3699999999999998
+11,32,0.48293961414212505,0.0,1.374804074182106,0.0006951669352605334,0.03646191799327174,0.7096748883943185,2,1.0,0.44313204714041693,0.34999999999999976
+11,33,0.5516468328871118,0.0,1.3784286349802828,0.0006956449998930018,0.03633017860642802,0.7089273323309466,2,1.0,0.4721561096237062,0.34499999999999975
+11,34,0.5431128026629057,0.0,1.3768082757177038,0.0006939026414384766,0.03633837238931932,0.7092622977969811,2,1.0,0.5103760088763527,0.33999999999999975
+11,35,0.632555593473704,0.0,1.3747039430681942,0.0006922512741916122,0.03642806064059623,0.7096967200324722,2,1.0,0.5418519782456802,0.3099999999999997
+11,36,0.5815544710179714,0.0,1.3859737701061876,0.0007001916241896924,0.036489297874592194,0.7073660653672614,2,1.0,0.5718482367265717,0.3049999999999997
+11,37,0.5092497044531485,0.0,1.3855817009361797,0.000700635143165921,0.036652129862684714,0.7074470332316358,2,1.0,0.5308323481771617,0.2849999999999997
+11,38,0.4714315579996121,0.0,1.3851491053814071,0.0007013847653268037,0.03671714272669896,0.7075362474137654,2,1.0,0.4714385266653738,0.2649999999999997
+11,39,0.5728973012304776,0.0,1.3843044170764216,0.0007019792380000658,0.036770824923147996,0.7077107610846424,2,1.0,0.5096576707682586,0.25499999999999967
+11,40,0.6403795248493035,0.0,1.3844299283607508,0.0007004356586489979,0.03673956353789791,0.7076854362464141,2,1.0,0.5679317494976786,0.22499999999999967
+11,41,0.6015577066823333,0.0,1.385759553185617,0.0007001460997588185,0.03671652708023958,0.7074104249985982,2,1.0,0.6051923556077777,0.21499999999999966
+11,42,0.6645902418510939,0.0,1.3848023440353185,0.0006999690156991496,0.03657300633191356,0.7076085829599714,2,1.0,0.6486341395036466,0.18499999999999966
+11,43,0.6257589861892938,0.0,1.384526744756182,0.0007012422277498558,0.03649596280079832,0.7076650740315098,2,1.0,0.6858632872976463,0.17499999999999966
+11,44,0.6890664171757773,0.0,1.3834035698668345,0.0007022064501130633,0.03640264945738179,0.7078969781113763,2,1.0,0.7302213905859245,0.14499999999999966
+11,45,0.6523733166088128,0.0,1.3823853852619443,0.0007043117425344036,0.03657882812410648,0.7081066022824316,2,1.0,0.7745777220293764,0.13499999999999965
+11,46,0.651168596735395,0.0,1.3807236998520294,0.0007061318565790407,0.0365956583090527,0.7084491880759537,2,1.0,0.8038953224513166,0.12999999999999964
+11,47,0.6756897838675221,0.0,1.3279062201023542,0.0006673284212649119,0.035030168946050516,0.7192529712290271,2,1.0,0.8522992795584071,0.11999999999999965
+11,48,0.7339890494073786,0.0,1.3331361381933804,0.0006665632528235521,0.0353018953443537,0.7181960034065867,2,1.0,0.8799634980245955,0.08999999999999965
+11,49,0.6988314427607503,0.0,1.3398745219341812,0.0006673489157181856,0.035563732694895225,0.7168298966352517,2,1.0,0.9294381425358341,0.07999999999999965
+12,0,0.10169458644197882,0.0,1.3859301492967946,0.0007001117639947599,0.03642639237490301,0.7073751278246582,1,0.14429691201330502,0.17063555745774017,0.06
+12,1,0.17363147447358515,0.0,1.3859149159725885,0.0007004746277322813,0.03649624971925912,0.7073781308236803,1,0.17916800986578255,0.20307557006853755,0.11
+12,2,0.1784167327655695,0.0,1.3859609311072107,0.000700096083312073,0.03665113185025818,0.7073687625777586,1,0.23466610552179704,0.2209453194431351,0.16
+12,3,0.21386812466664976,0.0,1.3857804988594262,0.000700055563334008,0.036722944647215164,0.7074061271039694,1,0.28890026427275667,0.2758434405706164,0.21000000000000002
+12,4,0.22789690906583993,0.0,1.3856194703489184,0.0006998065661483162,0.03676853042373067,0.7074395591757188,1,0.32475792201599313,0.2807721212008077,0.26
+12,5,0.24632372422730717,0.0,1.3853583725432455,0.0006995324647123894,0.036739813147536535,0.7074937088044757,1,0.3678397437959191,0.2919327129957849,0.31
+12,6,0.21590910984497869,0.0,1.3849627017056887,0.0006992334653984685,0.03667644371033949,0.707575708454671,1,0.4039785566163123,0.24838871676423122,0.37
+12,7,0.29216638448334964,0.0,1.3854916984527377,0.0006996581921854953,0.03659015677946037,0.707466064688863,1,0.4512798098646767,0.280728170102376,0.42
+12,8,0.24853868590772188,0.0,1.385284170687072,0.0006997050853943536,0.036465713852612165,0.7075089929278993,1,0.4935447571907753,0.2526600696365017,0.48
+12,9,0.22525262820068634,0.0,1.385286347104798,0.0006999917971910763,0.036445005976585294,0.7075084238753628,1,0.5293976042316396,0.19987822239870826,0.54
+12,10,0.345559066049042,0.0,1.3862943611198846,0.0007001722195526525,0.03655402168724227,0.7072997068701548,1,0.5875828314116803,0.2663502501831797,0.55
+12,11,0.36233827117328643,0.0,1.3852326276348337,0.0007001279090383442,0.03664419230481588,0.7075194841394132,1,0.6459863033098926,0.3208102167160802,0.56
+12,12,0.31756432805120294,0.0,1.3858904623288206,0.000700225907103412,0.036750910487280984,0.7073832955296063,2,0.6660974931882618,0.28143401811770447,0.6200000000000001
+12,13,0.42128637547230646,0.0,1.385977754048711,0.0007006056559544706,0.036788364833808464,0.7073650692843111,2,0.7253907526875383,0.32466537343889357,0.6100000000000001
+12,14,0.44587197516418126,0.0,1.3855619605205485,0.0007009799893896843,0.036772518340509736,0.7074509760628539,2,0.786731547626438,0.3683864449830932,0.6050000000000001
+12,15,0.48141488264078847,0.0,1.3857836165492714,0.0007003398892844518,0.03669294284102103,0.707405364094424,2,0.8228420532515305,0.4114005466758427,0.5950000000000001
+12,16,0.4991024675290352,0.0,1.3738511151750468,0.0006917599989420411,0.03624119572710923,0.709872596780723,2,0.8700520229177322,0.4486141983594297,0.5900000000000001
+12,17,0.431840975260009,0.0,1.37149792184595,0.0006900789412538624,0.036370896606782,0.7103576974623959,2,0.8841544853857191,0.4079563512500246,0.5700000000000001
+12,18,0.4028141758828913,0.0,1.374841214584317,0.0006928912831152021,0.036295529039979554,0.7096681738066809,2,0.896832993262347,0.3630754274702331,0.55
+12,19,0.5099849322948445,0.0,1.3809855094620307,0.0007002532663580043,0.03645058001890837,0.7083975373207515,2,0.9496417898584604,0.39203435281461146,0.545
+12,20,0.5134795302431434,0.0,1.382713786020052,0.0006993540595190776,0.036609701986093326,0.7080407696510039,2,1.0,0.4115984341438114,0.54
+12,21,0.559019154642669,0.0,1.3762463797221263,0.000694583189927992,0.03649992452223254,0.7093778717411318,2,1.0,0.46339718214223036,0.53
+12,22,0.47354306217015785,0.0,1.3792656579934346,0.0006954464108020774,0.03649885844389449,0.7087546649459859,2,1.0,0.4118102072338596,0.51
+12,23,0.5390504048153878,0.0,1.381081966413641,0.000697575672756633,0.03659535887357128,0.708378718029506,2,1.0,0.43016801605129273,0.505
+12,24,0.5286544913930796,0.0,1.378910092919964,0.0006970173564293623,0.036435414180369344,0.7088274073119137,2,1.0,0.46218163797693224,0.5
+12,25,0.4737854848212955,0.0,1.3761623206167723,0.0006962775636442245,0.03627248116197304,0.7093945025343619,2,1.0,0.41261828273765183,0.48
+12,26,0.5372643337289068,0.0,1.377661944343178,0.0007001671674493967,0.03651965860895469,0.7090836474168333,2,1.0,0.4242144457630229,0.475
+12,27,0.5621413071090571,0.0,1.3745382881960413,0.000699911762815379,0.03620730946052665,0.7097276919403414,2,1.0,0.4738043570301902,0.46499999999999997
+12,28,0.6248192060793256,0.0,1.3779823707900563,0.0006984588740449726,0.03652558965239099,0.7090182490116993,2,1.0,0.5160640202644188,0.43499999999999994
+12,29,0.6185861799680342,0.0,1.3781449837547732,0.0006964245088341195,0.0364133297152701,0.7089855384493507,2,1.0,0.5619539332267809,0.4049999999999999
+12,30,0.5964083034940004,0.0,1.3771155624698783,0.0006945077251006182,0.03649103379286878,0.7091986787594864,2,1.0,0.588027678313335,0.3949999999999999
+12,31,0.6642673238319434,0.0,1.3797450065319672,0.0006956148563294206,0.03650916652555685,0.7086556376505898,2,1.0,0.647557746106478,0.3649999999999999
+12,32,0.5312225682562607,0.0,1.3762293302860322,0.0007013138607535453,0.036511631440598914,0.7093786114653802,2,1.0,0.604075227520869,0.34499999999999986
+12,33,0.4959613376292431,0.0,1.379770784363695,0.000700009219844475,0.03650180270437175,0.7086485008897491,2,1.0,0.5532044587641437,0.32499999999999984
+12,34,0.48509815613308604,0.0,1.3852175098898791,0.0006994233805991476,0.03649880794565992,0.70752290411239,2,1.0,0.5169938537769535,0.3049999999999998
+12,35,0.57360099994938,0.0,1.3845763073867288,0.0006991257418153904,0.036448001099146726,0.7076556963602589,2,1.0,0.5453366664979334,0.2999999999999998
+12,36,0.5636662215978478,0.0,1.38494169731859,0.0007001582720861748,0.036450901936866856,0.7075796717976833,2,1.0,0.5788874053261596,0.2949999999999998
+12,37,0.6094763648168099,0.0,1.3845319114892936,0.0007010689464644166,0.036643344529672495,0.7076640768566848,2,1.0,0.6315878827226996,0.2849999999999998
+12,38,0.5263667663443494,0.0,1.3843963222278095,0.0007003081420685718,0.03670496327701558,0.7076924409468599,2,1.0,0.5878892211478316,0.2649999999999998
+12,39,0.6579795108978315,0.0,1.383734805536445,0.0006990783187520743,0.03669511512762108,0.7078297747046652,2,1.0,0.6265983696594385,0.2349999999999998
+12,40,0.5262550934023533,0.0,1.385500400653426,0.0007001664266125202,0.036765380371252904,0.7074640533300292,2,1.0,0.5875169780078445,0.2149999999999998
+12,41,0.486307904511013,0.0,1.3856798317171901,0.0006997442444589093,0.03670947898225744,0.7074270918955066,2,1.0,0.5210263483700435,0.1949999999999998
+12,42,0.6370877447583203,0.0,1.3855086323304968,0.0006998318565290042,0.03661118039178489,0.70746248819502,2,1.0,0.5569591491944013,0.1649999999999998
+12,43,0.600395197250584,0.0,1.3861473274141738,0.0007000856770083495,0.03648646865688984,0.7073301816956115,2,1.0,0.6013173241686133,0.1549999999999998
+12,44,0.6661255193743868,0.0,1.386012608524572,0.0007000779117801797,0.036353062168392035,0.7073580728540526,2,1.0,0.653751731247956,0.1249999999999998
+12,45,0.6205020218250901,0.0,1.3858607693879965,0.0007006744612880291,0.03656101100455581,0.7073892560058216,2,1.0,0.7016734060836336,0.1199999999999998
+12,46,0.7011699741377406,0.0,1.3857322331450677,0.0006999178047956106,0.036653152096117074,0.7074161741978839,2,1.0,0.7705665804591356,0.0899999999999998
+12,47,0.5667325870444778,0.0,1.3849210531176264,0.000700079309793458,0.036720029898064346,0.7075839759610373,2,0.9996805836629261,0.7228146092081791,0.0699999999999998
+12,48,0.6490164541718171,0.0,1.3857377321887396,0.0006999017089132242,0.03676631640614131,0.7074150426756256,2,1.0,0.7633881805727237,0.0599999999999998
+12,49,0.6398126786453185,0.0,1.3858265288797391,0.0007007499796790234,0.036766875647677076,0.70739631212529,2,1.0,0.7993755954843952,0.049999999999999795
+13,0,0.18982700241680486,0.0,1.385901806395493,0.0006999193376671284,0.03641458565392804,0.7073810743066452,1,0.15404610648268158,0.25303621715955443,0.01
+13,1,0.1953939708039972,0.0,1.3860081817870946,0.0007000864435757901,0.03650081626059942,0.7073589856673081,1,0.18231918034255964,0.3052741922803377,0.02
+13,2,0.28027072093264876,0.0,1.386004816194795,0.0007002477133935782,0.03665464198186388,0.7073596155856622,1,0.25234008255408835,0.3731723067957262,0.02
+13,3,0.20302656111228876,0.0,1.3851584293348917,0.0006993998158305776,0.036702455590114,0.7075351395049665,1,0.2836335963912913,0.34584934125112266,0.08
+13,4,0.3159658838272331,0.0,1.385536957243461,0.0006998270623332116,0.036765414229602,0.70745662804039,1,0.33376318209567857,0.39716256697915214,0.08
+13,5,0.33046463942746485,0.0,1.385706966790799,0.0006997644048607753,0.03675443789997812,0.7074214672636762,1,0.37505421813534534,0.4639855436003134,0.08
+13,6,0.2672384312496838,0.0,1.3857085119561132,0.0007008185609012556,0.03671152069219359,0.7074207110797421,1,0.3934979037851102,0.4317138830829842,0.14
+13,7,0.24731340064083493,0.0,1.386026808806788,0.0007005400838369096,0.03663885404151917,0.7073549420068114,1,0.41482508700394977,0.40708206729817503,0.2
+13,8,0.3584676195652272,0.0,1.3849565481140633,0.0006996368275205149,0.03641614531668338,0.7075768147862059,1,0.45826503673661223,0.4602495223580432,0.21000000000000002
+13,9,0.3712931156735737,0.0,1.3850444726534819,0.0007002881366454347,0.03638653281218531,0.7075583522865775,1,0.489905919763421,0.5327534791879214,0.22000000000000003
+13,10,0.4464940391810386,0.0,1.3847990854140102,0.000700894204871317,0.03650571104960752,0.7076088743234914,1,0.5467372562153818,0.5837866650188499,0.22000000000000003
+13,11,0.3707789736691095,0.0,1.3841694047649353,0.0007015243346314487,0.036671879286063455,0.7077388766290991,1,0.5914411914403295,0.545915188883314,0.28
+13,12,0.49016658979957406,0.0,1.385273809640869,0.0007009766926377931,0.03673575902063209,0.7075106107475096,1,0.6479676398138321,0.6112597195491094,0.28
+13,13,0.5065797214686065,0.0,1.3859623607366933,0.0007002050634953225,0.036779574982678254,0.7073684215295151,1,0.6953945338983948,0.6773054486805613,0.29000000000000004
+13,14,0.43556296636005226,0.0,1.386264850599828,0.0007001546463946969,0.036770141192600594,0.7073058235783852,1,0.7146173737507109,0.6181562851576783,0.35000000000000003
+13,15,0.5351018266019018,0.0,1.3848731865463635,0.0006993196014491588,0.036651606901580806,0.7075941942563729,1,0.7831918149639904,0.6699489712150172,0.36000000000000004
+13,16,0.5605600133369857,0.0,1.3846953162844304,0.0006997889928277363,0.03655883802636123,0.707630800857582,1,0.8467326287890427,0.7473453108694027,0.37000000000000005
+13,17,0.5256859537083551,0.0,1.3842947822365725,0.0007017638403441729,0.036466863455379306,0.707712843219729,1,0.8892298815296922,0.7148516505765432,0.43000000000000005
+13,18,0.6113918303608423,0.0,1.382859002967564,0.000702299330618042,0.036327746703821585,0.7080095318741244,1,0.9190417653504869,0.7657573749605733,0.44000000000000006
+13,19,0.6268524886254475,0.0,1.3843301726418336,0.0007009210781702377,0.036585994353230566,0.7077058711351459,1,0.9732343136925962,0.8207349294434629,0.45000000000000007
+13,20,0.6891794778009095,0.0,1.3803835573867245,0.0007021010664100304,0.03658765249804818,0.7085211040304972,1,1.0,0.8639315926696981,0.45000000000000007
+13,21,0.6871341598317232,0.0,1.380038068858649,0.0006991470852080371,0.03658120617010811,0.7085936687466308,1,1.0,0.9237805327724109,0.4600000000000001
+13,22,0.73,0.0,1.3831084488157712,0.0006989334245917137,0.036695589125939336,0.7079593525744445,1,1.0,1.0,0.4600000000000001
+13,23,0.636969341244775,0.0,1.3818945049230225,0.0006972732116895938,0.03657245898474763,0.7082109617879149,1,1.0,0.9565644708159168,0.52
+13,24,0.6089867890349776,0.0,1.3800743669815965,0.0006966289334262007,0.03652855482404317,0.7085872134926751,1,1.0,0.9299559634499256,0.5800000000000001
+13,25,0.5976746535417881,0.0,1.3775480861136569,0.0006957740657656123,0.03625353518587941,0.7091089463557373,2,1.0,0.8922488451392936,0.6400000000000001
+13,26,0.6878634972305264,0.0,1.3423977971796572,0.0006728616297889359,0.03578359352010271,0.7163151895678989,2,1.0,0.926211657435088,0.6350000000000001
+13,27,0.617367306745696,0.0,1.3362755236707082,0.0006679247258711102,0.035172828333939525,0.717559634730905,2,1.0,0.8912243558189868,0.6150000000000001
+13,28,0.6892166166840067,0.0,1.3466225881968652,0.0006743081852815234,0.0357502914440279,0.715455306342974,2,1.0,0.9307220556133557,0.6100000000000001
+13,29,0.7645083187226446,0.0,1.3398303319281517,0.0006701247146898071,0.03530396733959397,0.716837739578923,2,1.0,0.9816943957421487,0.5800000000000001
+13,30,0.72,0.0,1.3478849611641854,0.0006737716043870912,0.035577265553087795,0.7151984624117818,2,1.0,1.0,0.5700000000000001
+13,31,0.6354433756221619,0.0,1.3452564859258713,0.0006736878599882361,0.03553590834335607,0.7157335866375145,2,1.0,0.9514779187405398,0.55
+13,32,0.6979522081214088,0.0,1.3545261054572668,0.000679139958753328,0.03544086195844217,0.7138416059840871,2,1.0,0.9598406937380294,0.545
+13,33,0.72,0.0,1.3484364663560813,0.0006753024052568291,0.035904194487315896,0.7150854894318196,2,1.0,1.0,0.535
+13,34,0.6354128715699037,0.0,1.3453628797785289,0.0006736625907509312,0.03546486781965648,0.7157119496346982,2,1.0,0.9513762385663456,0.515
+13,35,0.6013358966291829,0.0,1.3533508667861476,0.0006801246882466145,0.035958854958883374,0.7140812116168146,2,1.0,0.904452988763943,0.495
+13,36,0.6912919731045788,0.0,1.358750515130128,0.0006868326931884519,0.03606761916033759,0.7129747509054959,2,1.0,0.937639910348596,0.49
+13,37,0.7665024047952873,0.0,1.353377747882362,0.0006851969899761724,0.03591111501724992,0.714073652048123,2,1.0,0.9883413493176243,0.45999999999999996
+13,38,0.75,0.0,1.36195957239718,0.0006857698043520464,0.03597753654837521,0.7123180308418414,2,1.0,1.0,0.42999999999999994
+13,39,0.71,0.0,1.3675701038550847,0.0006873592319490328,0.03603638884750043,0.7111662936872885,2,1.0,1.0,0.42499999999999993
+13,40,0.6346943747026035,0.0,1.3620427834003275,0.0006839396185221343,0.03603199548972698,0.7123017289672776,2,1.0,0.9489812490086785,0.4049999999999999
+13,41,0.5998645109392066,0.0,1.3675806551164156,0.0006907460333634817,0.03602554089401081,0.7111627349947743,1,1.0,0.8995483697973553,0.3849999999999999
+13,42,0.6965029540815421,0.0,1.3557684873780054,0.0006876012417702271,0.03624327307011629,0.7135842963733539,1,1.0,0.9550098469384737,0.3949999999999999
+13,43,0.73,0.0,1.361586534137808,0.000686337866275779,0.03558909442858167,0.7123942354012491,1,1.0,1.0,0.3949999999999999
+13,44,0.7,0.0,1.3626817729381584,0.0006849256519659001,0.036325007269664256,0.7121703601311942,1,1.0,1.0,0.4449999999999999
+13,45,0.71,0.0,1.3681642797711955,0.0006928933922946036,0.0360226560674838,0.7110419553095306,1,1.0,1.0,0.4549999999999999
+13,46,0.73,0.0,1.372303781002668,0.0006921246193601024,0.03639292826384697,0.710191022047724,1,1.0,1.0,0.4549999999999999
+13,47,0.71,0.0,1.3723606484261055,0.0006908116549549018,0.03628332739804674,0.7101798579504344,1,1.0,1.0,0.4649999999999999
+13,48,0.73,0.0,1.3747691130644186,0.000692055198649303,0.03635114206485333,0.7096833738475846,1,1.0,1.0,0.4649999999999999
+13,49,0.71,0.0,1.3736942162683365,0.0006921845272614528,0.03638126823238412,0.7099047347398438,1,1.0,1.0,0.4749999999999999
+14,0,0.21343799634500002,0.0,1.3855708906814417,0.0007004351455881297,0.03642990209625561,0.707449353363775,1,0.14487497102129798,0.2757725216251525,0.0
+14,1,0.14132848834001158,0.0,1.3852251620512612,0.0007005019362601454,0.0364740254756693,0.7075208742338241,1,0.19260617871807456,0.2463877526289516,0.06
+14,2,0.20514725361130837,0.0,1.3855350954386725,0.0007003195618944812,0.03665121804660056,0.7074568095055899,1,0.2160085137824817,0.26514757929146593,0.11
+14,3,0.24507883920649712,0.0,1.3856987147196043,0.0006997582529601589,0.036725601987821974,0.707423177790791,1,0.26279548773519257,0.31033472833059916,0.12
+14,4,0.27133102079177507,0.0,1.3856912369212477,0.0006998132271893331,0.03676803951248041,0.7074247027538003,1,0.3297225477210125,0.3864270969647358,0.13
+14,5,0.23274766121310952,0.0,1.3855174857920516,0.0006998549061541206,0.03675159970032892,0.7074606463446025,1,0.3628036997245625,0.3525545543650423,0.19
+14,6,0.34866619237882984,0.0,1.385916072731134,0.0006999466229930275,0.03670971744660403,0.7073781099691961,1,0.4174744748709396,0.40850042058000346,0.19
+14,7,0.26118797675642563,0.0,1.3847084823478553,0.0007012410048395253,0.03663790242021422,0.7076274761149264,1,0.44237146163425434,0.35452655061478877,0.25
+14,8,0.32825726242955927,0.0,1.3833798846209993,0.0006982986620725667,0.03637396929575715,0.7079034917723376,1,0.4759513880442749,0.37224758871354346,0.3
+14,9,0.3348300093539627,0.0,1.3830488880203555,0.0006984522135839313,0.03651109596044688,0.7079718657681309,1,0.5137216047649715,0.41675815895407553,0.35
+14,10,0.4208475524862882,0.0,1.3861175998868198,0.0007001675460457402,0.036555567372727235,0.7073363017821592,1,0.5844528556055218,0.4542968434145186,0.35
+14,11,0.43112092249690176,0.0,1.3860454631821468,0.0006999948774925729,0.03666902082383503,0.7073513061843055,1,0.6218729572327013,0.511551291551521,0.36
+14,12,0.4844748136140714,0.0,1.3827480838203265,0.0006983968369133723,0.036631667938408954,0.7080340753498935,1,0.6764082890590661,0.5591063748113277,0.36
+14,13,0.4756250241569562,0.0,1.3807163338795936,0.0006977032726200466,0.03661437580555287,0.708454191314557,1,0.708786963985799,0.5918319558730887,0.41
+14,14,0.5452843255215173,0.0,1.3808889949965906,0.0006968621023649701,0.036616062090495026,0.7084188749282019,1,0.7739582292048393,0.6479964843327451,0.41
+14,15,0.5471216493503156,0.0,1.3834774798463838,0.0007003227321359809,0.03664004790838689,0.7078824739056211,1,0.8201682734141947,0.7002091788511584,0.45999999999999996
+14,16,0.6092246379162218,0.0,1.3841987894709322,0.0006989370142882494,0.03653326820966379,0.7077338688836278,1,0.8704149600939766,0.7485980062777666,0.45999999999999996
+14,17,0.6273967629546311,0.0,1.3852231851413477,0.0006994455640633797,0.03644985920583307,0.7075217205260749,1,0.9341681031919795,0.8014597561247946,0.45999999999999996
+14,18,0.6641668196686443,0.0,1.3728840213623585,0.0006911953337873497,0.036136452553024,0.7100719651912086,1,0.9961712848475202,0.8516895665733744,0.45999999999999996
+14,19,0.5940416717448734,0.0,1.370586963945909,0.0006906812401825253,0.03628416608991812,0.7105448430483728,1,1.0,0.8134722391495783,0.52
+14,20,0.5609727436995708,0.0,1.3676669645155233,0.000687998760560554,0.0361455547360609,0.711146134508245,1,1.0,0.7699091456652364,0.5800000000000001
+14,21,0.6377273277544662,0.0,1.3839303874570308,0.0007005611830076652,0.036700403762169445,0.7077887120094556,2,1.0,0.7924244258482205,0.6300000000000001
+14,22,0.6781039691465223,0.0,1.3797357467344884,0.0007000213239152797,0.036658560907304516,0.7086557299110355,2,1.0,0.8603465638217409,0.6200000000000001
+14,23,0.6716747830910563,0.0,1.3621022666065379,0.0006839454624703314,0.035792075173681104,0.7122895366450572,2,1.0,0.9055826103035212,0.6100000000000001
+14,24,0.6061944592747734,0.0,1.3607603438568285,0.000682818924961012,0.036111717792694786,0.7125649242099741,2,1.0,0.8539815309159113,0.5900000000000001
+14,25,0.7449593176260492,0.0,1.3665900675533167,0.0006883562489141447,0.036001130669378024,0.7113671506734474,2,1.0,0.9165310587534972,0.56
+14,26,0.7436094435514811,0.0,1.3712881620780708,0.0006898062801162269,0.03644825403516651,0.7104009657444821,2,1.0,0.9786981451716039,0.53
+14,27,0.6239206546488922,0.0,1.373698871507799,0.0006915631410372134,0.03603080616523237,0.7099040319758757,2,1.0,0.9130688488296408,0.51
+14,28,0.6922332454083704,0.0,1.378206919008122,0.0006945833506534512,0.03647546475925433,0.7089735192632034,2,1.0,0.9407774846945683,0.505
+14,29,0.715368511339991,0.0,1.374382974431367,0.0006923648215249626,0.036331672831213954,0.7097627970969778,2,1.0,0.9845617044666369,0.495
+14,30,0.77,0.0,1.3738612288834005,0.0006915102041796741,0.036263961774386864,0.7098706167153717,2,1.0,1.0,0.46499999999999997
+14,31,0.72,0.0,1.3758230443525077,0.0006933067944228093,0.03641170255595303,0.7094656654005089,2,1.0,1.0,0.45499999999999996
+14,32,0.71,0.0,1.3744538794376084,0.0006937811775117792,0.036309439195984027,0.7097476069238637,2,1.0,1.0,0.44999999999999996
+14,33,0.69,0.0,1.3711632664208897,0.000690395832325224,0.036378037423793565,0.7104264174657009,2,1.0,1.0,0.44499999999999995
+14,34,0.77,0.0,1.36696548733799,0.0006867252902098889,0.03579287030090246,0.7112907317480677,2,1.0,1.0,0.4149999999999999
+14,35,0.72,0.0,1.3687218976905813,0.000689376890456541,0.0364449854959102,0.710928818277517,2,1.0,1.0,0.4049999999999999
+14,36,0.77,0.0,1.3675343851630908,0.0006908746667208048,0.03597946843904023,0.7111721863826719,2,1.0,1.0,0.3749999999999999
+14,37,0.72,0.0,1.367907540027564,0.0006946232055880428,0.03636228010416645,0.7110939917881248,2,1.0,1.0,0.3649999999999999
+14,38,0.635013115540535,0.0,1.3660519413231544,0.0006969413110639171,0.03621308329033092,0.7114741036478861,2,1.0,0.95004371846845,0.34499999999999986
+14,39,0.77,0.0,1.373272680218575,0.000696552267894933,0.03635385374338411,0.709989739523114,2,1.0,1.0,0.31499999999999984
+14,40,0.72,0.0,1.336952079680196,0.0006669350341008373,0.03549683594441996,0.717422899704458,2,1.0,1.0,0.3049999999999998
+14,41,0.71,0.0,1.3415201241294588,0.0006678333935783657,0.03506497472615223,0.7164955484307777,2,1.0,1.0,0.2999999999999998
+14,42,0.69,0.0,1.3314158209641604,0.0006607088482041881,0.03557960803817914,0.7185464165134918,2,1.0,1.0,0.2949999999999998
+14,43,0.6292273802696222,0.0,1.320387711476629,0.0006529113432647033,0.03415526074623616,0.7207744671189473,2,1.0,0.9307579342320744,0.2749999999999998
+14,44,0.5937676654879038,0.0,1.3317606113311506,0.000668964682640262,0.03578205564404878,0.7184733419368166,2,1.0,0.8792255516263461,0.2549999999999998
+14,45,0.7429566196827152,0.0,1.3396573119569624,0.0006851261136541217,0.035202214791454425,0.7168667685039362,2,1.0,0.9098553989423841,0.22499999999999978
+14,46,0.7362827222832822,0.0,1.3464037664606243,0.0006821247756259078,0.036057330671784696,0.7154966694572146,2,1.0,0.9542757409442739,0.19499999999999978
+14,47,0.6214613883927063,0.0,1.3499532637359453,0.0006799725454696372,0.03549083468208323,0.7147744548059964,2,1.0,0.904871294642354,0.1749999999999998
+14,48,0.7590172815349217,0.0,1.3559970721072427,0.0006915462505944496,0.036008908868218344,0.7135359628101743,2,1.0,0.9633909384497389,0.1449999999999998
+14,49,0.72,0.0,1.357355876396913,0.0006877842035845971,0.03589464395925141,0.7132596782261035,2,1.0,1.0,0.1349999999999998
+15,0,0.09132772227820453,0.0,1.3855553360280077,0.0006999346031960978,0.036441686867112966,0.7074527798064897,1,0.12128755403815863,0.1629235945494967,0.06
+15,1,0.2220850120324931,0.0,1.3860102451395633,0.0007001919542172763,0.03649989223125955,0.7073585148665997,1,0.2035289116169785,0.23616630988850212,0.06
+15,2,0.23890581322465962,0.0,1.3859389034857765,0.0007001443842118864,0.03665012247568991,0.7073733022386205,1,0.2566456446577085,0.2969327919815389,0.06
+15,3,0.28306651246903347,0.0,1.3858246199932125,0.0007002960721475503,0.03673048079141842,0.7073968951449127,1,0.31542311383812177,0.37556140875230304,0.06
+15,4,0.22020716510701882,0.0,1.3855526593350356,0.0007004518880050002,0.036772072185978576,0.7074531196657148,1,0.3382817357465587,0.33936185865241103,0.12
+15,5,0.3303244460914442,0.0,1.385925673443185,0.0007003052169066,0.03677370558877274,0.7073759742179624,1,0.38015431178913683,0.39090145655082104,0.12
+15,6,0.34962540193051506,0.0,1.3854788048222444,0.0007003878396391898,0.03670077941842019,0.7074684311085526,1,0.4233648017220528,0.4714924044259888,0.13
+15,7,0.36861401051032516,0.0,1.3852627144404632,0.0007007918931202287,0.036635106409519606,0.7075129832599684,1,0.4840880617548843,0.5306106296537191,0.14
+15,8,0.3931697901533078,0.0,1.3851091662759516,0.0007016474698546661,0.0364399191270177,0.7075444031722472,1,0.5137292107741982,0.5445485546077947,0.19
+15,9,0.4575611344221212,0.0,1.3853956450325273,0.000700809430293031,0.036398646831332995,0.7074854668035925,1,0.5684361348376807,0.5953616240964432,0.19
+15,10,0.47346318923779207,0.0,1.3846142967386126,0.0007012064245885262,0.03650878544998608,0.7076469761809515,1,0.6079857772248967,0.6688938906969276,0.2
+15,11,0.4159645874984526,0.0,1.3860827665018491,0.0007002822275093515,0.03666762535531391,0.7073434651667391,1,0.6325610487745813,0.6485607347578306,0.26
+15,12,0.5360477429079907,0.0,1.3855538679407333,0.0007003573915512096,0.03675107691134494,0.7074529086433412,1,0.6925044850705833,0.7122372437776219,0.26
+15,13,0.5564759541560598,0.0,1.3856394600919884,0.0006998330101273655,0.03677264128071079,0.7074354109585923,1,0.7456232186984856,0.785026092038633,0.26
+15,14,0.5856168322428663,0.0,1.3850437826495083,0.0006993121649751117,0.036720308479900335,0.7075588989567753,1,0.7893282826518275,0.8311731110490893,0.27
+15,15,0.6345629713552243,0.0,1.3854578955894938,0.0007005752187825552,0.036679473369650176,0.7074726808406008,1,0.8390828286726303,0.8696132710660126,0.27
+15,16,0.5550302853744947,0.0,1.3819252798731079,0.0006989104493725592,0.03650115171613671,0.7082039254857084,1,0.870103835605004,0.8349798097091445,0.33
+15,17,0.6716121098767776,0.0,1.3819386783330438,0.0006977585465757737,0.03634852826977788,0.7082016327576064,1,0.9252527586261192,0.8925788145254526,0.33
+15,18,0.6861553359310206,0.0,1.3790443887485375,0.0006966802925198958,0.036542439954601144,0.7087998282107237,1,0.9831898990193976,0.9401295709141048,0.33
+15,19,0.620263451342612,0.0,1.3750426288420248,0.0006952285060524731,0.03616432517095709,0.7096257096086028,1,1.0,0.9008781711420402,0.39
+15,20,0.702445170538196,0.0,1.3693483901472638,0.0006895044328955441,0.03620897615933864,0.7107999989703452,1,1.0,0.9748172351273202,0.4
+15,21,0.7,0.0,1.3717220155553793,0.0006931713772739777,0.03620525655351911,0.7103103154323444,1,1.0,1.0,0.45
+15,22,0.71,0.0,1.3774017996547527,0.0006945949214085589,0.036495055729091425,0.7091396068673625,1,1.0,1.0,0.46
+15,23,0.7,0.0,1.3784108761372125,0.0006970044915901301,0.036502854937288255,0.708930435786761,1,1.0,1.0,0.51
+15,24,0.6799999999999999,0.0,1.3823719516590542,0.0006978622951641978,0.03656216951117157,0.7081120449597812,1,1.0,1.0,0.56
+15,25,0.6371061378351529,0.0,1.3845472876452325,0.0006989547176342337,0.03648575252625934,0.7076617706642284,2,1.0,0.9570204594505097,0.6200000000000001
+15,26,0.7088085636798733,0.0,1.3722922901861125,0.000693204844159414,0.03643780073227058,0.7101929424176052,2,1.0,0.9960285455995781,0.6150000000000001
+15,27,0.6357588958084109,0.0,1.369110705847859,0.0006896311666962165,0.03603044101391242,0.7108488036070795,2,1.0,0.9525296526947032,0.5950000000000001
+15,28,0.6015559821028539,0.0,1.3747047286837402,0.0006921972614228877,0.03637423236632349,0.7096965804304222,2,1.0,0.905186607009513,0.5750000000000001
+15,29,0.5849123930851884,0.0,1.378263236446767,0.0006949991754815451,0.036483548391833376,0.708961727547093,2,1.0,0.849707976950628,0.555
+15,30,0.68706797501331,0.0,1.380262519260126,0.0006977498786560058,0.03656248116625732,0.7085478971777679,2,1.0,0.8902265833776998,0.545
+15,31,0.602202012513916,0.0,1.3788270775012712,0.0006956127506357584,0.03654880272646867,0.7088451204354871,2,1.0,0.8406733750463868,0.525
+15,32,0.7367428503508184,0.0,1.3799881516668038,0.0006978389334188731,0.03650707373757101,0.7086045161999576,2,1.0,0.8891428345027284,0.495
+15,33,0.607301790516479,0.0,1.3831999771726833,0.0006983854168161367,0.036587269613301644,0.707940655073303,2,1.0,0.8576726350549301,0.475
+15,34,0.6914081151439462,0.0,1.383638549358579,0.000699697547411896,0.036453211385626634,0.7078494246258935,2,1.0,0.9046937171464873,0.46499999999999997
+15,35,0.6902603218221195,0.0,1.3823797453038276,0.0006978692597416334,0.03629536262221881,0.70811043121457,2,1.0,0.9675344060737316,0.45499999999999996
+15,36,0.77,0.0,1.3802481334592187,0.0006959572467484573,0.03653932176852287,0.7085516083284418,2,1.0,1.0,0.42499999999999993
+15,37,0.72,0.0,1.3831159620939026,0.0006984361760415029,0.03652434820323945,0.7079580047956848,2,1.0,1.0,0.4149999999999999
+15,38,0.7,0.0,1.3803384742532718,0.0006973820065110773,0.036562977506792466,0.7085323635744155,2,1.0,1.0,0.4049999999999999
+15,39,0.7,0.0,1.3766432984419288,0.00069605323952488,0.036457387253700076,0.7092954295833155,2,1.0,1.0,0.3949999999999999
+15,40,0.77,0.0,1.3719236445574388,0.0006943455843337863,0.03637116753920145,0.7102683412863935,2,1.0,1.0,0.3649999999999999
+15,41,0.72,0.0,1.3747107614302678,0.0007017095233434532,0.03651752689834176,0.7096914179204304,2,1.0,1.0,0.35499999999999987
+15,42,0.6342510502032213,0.0,1.36936673011999,0.0007008450633399189,0.03620284572454652,0.7107915664347968,2,1.0,0.9475035006774042,0.33499999999999985
+15,43,0.7053910672279984,0.0,1.3725532715849718,0.000697987971394198,0.0365548035958501,0.710137255423482,2,1.0,0.9846368907599949,0.32999999999999985
+15,44,0.6882409422952978,0.0,1.3525096800652088,0.0006885887051297321,0.03616135167061919,0.7142494701821323,2,1.0,0.9941364743176595,0.32499999999999984
+15,45,0.72,0.0,1.3446891459352708,0.0006855849091724583,0.03547008100455767,0.7158441629828269,2,1.0,1.0,0.31499999999999984
+15,46,0.6368998811012938,0.0,1.353803641433274,0.0006840459029561564,0.03614841304065074,0.7139871585078819,2,1.0,0.9563329370043129,0.2949999999999998
+15,47,0.72,0.0,1.358943504780231,0.0006949539187933888,0.03593972125411775,0.7129319313730496,2,1.0,1.0,0.2849999999999998
+15,48,0.7,0.0,1.3653096608475825,0.0006924791188443542,0.036198267679163024,0.7116282855069634,2,1.0,1.0,0.2749999999999998
+15,49,0.77,0.0,1.3689231783110163,0.000690931213973749,0.03621282460919541,0.710886812625893,2,1.0,1.0,0.2449999999999998
+16,0,0.2153101816160931,0.0,1.3855680049545305,0.0006999337691800187,0.03644169379002425,0.707450158141422,1,0.157040703805775,0.2678197842802395,0.0
+16,1,0.20402113207951025,0.0,1.385222921417808,0.0006998803054448781,0.036471371164121975,0.7075215951734343,1,0.19051448437355206,0.29113687516255676,0.05
+16,2,0.15695574603894785,0.0,1.385120281170025,0.0006995736685137467,0.036616221816292205,0.7075429614611568,1,0.22394753156256242,0.26191369997350333,0.11
+16,3,0.2323791109319665,0.0,1.3854839518134843,0.0007008638109080251,0.036728698291048814,0.7074671688908319,1,0.25780757843860075,0.3071548615948543,0.16
+16,4,0.29744423168202727,0.0,1.385555598265726,0.0007004256805152552,0.036771375799487714,0.7074525222628197,1,0.3132746276741948,0.3593270399868637,0.16
+16,5,0.2149647498237861,0.0,1.3850913522805453,0.0007005518959251933,0.036760192681127214,0.707548542725746,1,0.3495005643102545,0.3087985077173234,0.22
+16,6,0.316360094506139,0.0,1.385537710607237,0.0007003246567918793,0.03670209820234483,0.7074562661567377,1,0.4089282935472015,0.3774506392153949,0.23
+16,7,0.3269691955292443,0.0,1.3828420472933205,0.0006985122319334763,0.036518028116362636,0.7080146029585174,1,0.4458478991863323,0.4364081027134268,0.24000000000000002
+16,8,0.3552693819045523,0.0,1.384469376751371,0.0007019633243949225,0.03642355973165758,0.7076766435615358,1,0.4757436571014773,0.46253033973011765,0.29000000000000004
+16,9,0.35589004145937886,0.0,1.38457729692511,0.0007009223105820846,0.03640187979061987,0.707654748299434,1,0.5101913549847612,0.49107689071570826,0.34
+16,10,0.33072266179794635,0.0,1.3859834973818663,0.0007002970671345708,0.036535579050025024,0.7073640081703855,1,0.5464626166033453,0.4648691532892517,0.4
+16,11,0.4233930768159541,0.0,1.3858400922933456,0.0006999435021894303,0.0366649037601168,0.7073938385323313,1,0.5987824332925394,0.5127307505452178,0.41000000000000003
+16,12,0.48109520549754947,0.0,1.3854411100419666,0.0007000004978663244,0.03673618340463312,0.7074763925640674,1,0.6585765805072069,0.5686446744000903,0.41000000000000003
+16,13,0.4047014091776704,0.0,1.3785903774211126,0.000695818391229574,0.03651282517257793,0.708893884189181,1,0.6926736266367063,0.540885466182744,0.47000000000000003
+16,14,0.4988609390309654,0.0,1.379759156726748,0.000695790912709439,0.03655728483809591,0.7086526434541474,1,0.7435319822291167,0.595415817502582,0.48000000000000004
+16,15,0.5174994916040463,0.0,1.381859600283871,0.0006984399448245334,0.03654504236629079,0.7082176925163665,1,0.8132685125975836,0.642851707316307,0.49000000000000005
+16,16,0.5511048261831711,0.0,1.3856278595695635,0.0006997868578773983,0.03657695510028105,0.7074378310235454,1,0.8587971111181196,0.7017527909727644,0.5
+16,17,0.633162659410136,0.0,1.3858682953646562,0.0007005501009953987,0.03641364968020521,0.7073877496865221,1,0.9287347374599336,0.7603516709971979,0.5
+16,18,0.647046775643696,0.0,1.3848088066513737,0.0007008584765569705,0.03647823092706566,0.7076068777937986,1,0.9710692657369261,0.8239084421192396,0.51
+16,19,0.6957878848578857,0.0,1.36909030402482,0.000692698739178149,0.03645142538067052,0.7108517360109602,1,1.0,0.8859596161929523,0.51
+16,20,0.6749808602945055,0.0,1.3698909590878825,0.000690736687540448,0.03620426913415429,0.7106879471916362,2,1.0,0.9166028676483519,0.56
+16,21,0.711193643623861,0.0,1.368807051103172,0.0007002835029940714,0.03636780252218251,0.7109068351712112,2,1.0,0.9706454787462032,0.55
+16,22,0.7,0.0,1.3624901032456869,0.0006989029833024255,0.036194331466031605,0.7122039178842956,2,1.0,1.0,0.54
+16,23,0.77,0.0,1.3551704059873948,0.0006967399234078635,0.03618646192410967,0.7137027830577978,2,1.0,1.0,0.51
+16,24,0.71,0.0,1.3580899723948883,0.0007101583744589435,0.03610301755574312,0.7131003622868778,2,1.0,1.0,0.505
+16,25,0.6321243242941128,0.0,1.3645058216273096,0.0007047334065870967,0.03652900751180435,0.7117881882713001,2,0.9986364968292818,0.9420051680128807,0.485
+16,26,0.5964299259401987,0.0,1.367826457749029,0.0007005701491195114,0.03599075371439261,0.7111082055970775,2,1.0,0.8880997531339959,0.46499999999999997
+16,27,0.5758477852421683,0.0,1.3692062523722308,0.0006970772678508252,0.03647606117041538,0.7108261031953793,2,1.0,0.8194926174738945,0.44499999999999995
+16,28,0.7279757141758125,0.0,1.3691483199926777,0.0006940237430621459,0.036115950858949045,0.7108392664730752,2,1.0,0.8599190472527085,0.4149999999999999
+16,29,0.6910992007874506,0.0,1.3714719818584997,0.0007009207346187038,0.03635520260773716,0.7103585732145239,2,1.0,0.9036640026248356,0.4049999999999999
+16,30,0.7585858251046442,0.0,1.3668050098071793,0.0007007465396040266,0.03639080822056075,0.7113179273454887,2,1.0,0.9619527503488142,0.3749999999999999
+16,31,0.75,0.0,1.3678119621308524,0.0007091041932828724,0.03643734135160286,0.7111076771256929,2,1.0,1.0,0.34499999999999986
+16,32,0.6371554889534432,0.0,1.3669899505667993,0.0007165117985346383,0.03661698835268543,0.7112734740753778,2,0.9968691163907635,0.9608376607222535,0.32499999999999984
+16,33,0.599356640305037,0.0,1.3656057874343013,0.0006922444377589176,0.03638964477137398,0.7115676088662851,2,1.0,0.8978554676834567,0.3049999999999998
+16,34,0.5842970033612129,0.0,1.3687462996705833,0.0007004719696335351,0.03601726494150662,0.7109192430780894,2,1.0,0.8476566778707102,0.2849999999999998
+16,35,0.7412759255882361,0.0,1.370035167862041,0.0007081214890405554,0.036599893671100316,0.7106511459544823,2,1.0,0.9042530852941204,0.2549999999999998
+16,36,0.6037006178051187,0.0,1.3745754922896776,0.0007038831168967724,0.03623289477577951,0.7097183909657216,2,1.0,0.8456687260170623,0.2349999999999998
+16,37,0.6711677655532281,0.0,1.37482628389757,0.0007097921085664623,0.0366080212386299,0.7096642856318655,2,1.0,0.8705592185107605,0.2299999999999998
+16,38,0.5971171526525741,0.0,1.3702660952279488,0.0007105415681769908,0.036495953093979426,0.7106026635915887,2,1.0,0.8237238421752473,0.2099999999999998
+16,39,0.7340390179070538,0.0,1.36972324659942,0.000717440866764018,0.036715232074744746,0.7107114487651209,2,1.0,0.8801300596901795,0.1799999999999998
+16,40,0.7047925814138661,0.0,1.3734894674755775,0.0007114218452220437,0.03667590839477903,0.7099389760449313,2,1.0,0.9493086047128871,0.1699999999999998
+16,41,0.7030435115533192,0.0,1.377706641132397,0.0007071622483559995,0.03660899784736299,0.7090715410876139,2,1.0,0.976811705177731,0.16499999999999979
+16,42,0.72,0.0,1.3734728735474,0.0007078933190060547,0.036535846971152995,0.7099438463637442,2,1.0,1.0,0.15499999999999978
+16,43,0.7,0.0,1.376312833524047,0.0007037361515703353,0.036232342636529184,0.709360397289216,2,1.0,1.0,0.14499999999999977
+16,44,0.6312687928902898,0.0,1.377184795901243,0.0007001881529317795,0.03652643577468938,0.7091820570428977,1,1.0,0.9375626429676327,0.12499999999999976
+16,45,0.728558542753682,0.0,1.3733993910814346,0.0006916779723773864,0.03639353878787331,0.7099656558958328,1,1.0,0.9951951425122735,0.12499999999999976
+16,46,0.71,0.0,1.3691182244418783,0.000689487336746006,0.035973099362095785,0.7108473173384983,1,1.0,1.0,0.12499999999999976
+16,47,0.71,0.0,1.3637531293828289,0.0006867917992298639,0.0361069371278386,0.7119499341640833,1,1.0,1.0,0.12499999999999976
+16,48,0.7,0.0,1.3571682760612507,0.0006835091450162075,0.03568620571998713,0.713299793299265,1,1.0,1.0,0.17499999999999977
+16,49,0.73,0.0,1.3628056645586548,0.0006842664477818404,0.036017655305432494,0.712145233962549,1,1.0,1.0,0.17499999999999977
+17,0,0.10183402857973285,0.0,1.3855578457017954,0.0006996742833037331,0.036456150991278136,0.707452368149191,1,0.14661634123037032,0.16839436383034415,0.06
+17,1,0.17340481137927277,0.0,1.3853344108893146,0.0007002334014592535,0.0364754637662727,0.7074983774470837,1,0.18438353572957072,0.19623524624641,0.11
+17,2,0.24101664051837246,0.0,1.3853461089375547,0.0006999423294952929,0.03663383517320068,0.7074960770673697,1,0.24054163727696729,0.25609022490477973,0.11
+17,3,0.2600149496566625,0.0,1.3855677772332853,0.0007006467594615961,0.036728324254863345,0.7074499101443014,1,0.30352917974646215,0.31259912248466926,0.12
+17,4,0.3165931994411364,0.0,1.3854646750414885,0.0007011404013469169,0.036783954025213915,0.7074710438610259,1,0.34832777225346884,0.3822615971747411,0.12
+17,5,0.2336155004349513,0.0,1.3849612190675944,0.0007014601378334765,0.03677389350225398,0.7075750937784454,1,0.3776238898331064,0.3381571299778803,0.18
+17,6,0.29732284454721414,0.0,1.3853804964137189,0.0007009726783681701,0.036708031313097446,0.707488534229198,1,0.3977984087731742,0.3603113382553439,0.22999999999999998
+17,7,0.35448782616626806,0.0,1.3856577182484477,0.0007004993293700888,0.036635106586665946,0.7074313562245046,1,0.4695823625752098,0.43377999754981555,0.24
+17,8,0.3800234664061547,0.0,1.384529351985605,0.0007005794376281904,0.03642556442898623,0.707664808889987,1,0.5344500001837624,0.4765532211394595,0.29
+17,9,0.42182877485639625,0.0,1.384170380040863,0.0006996027242711925,0.03635340892160845,0.707739469847522,1,0.5715977530568784,0.5392318709549626,0.3
+17,10,0.3585941519516952,0.0,1.3839265667495833,0.0007003050810251769,0.03647463096632832,0.7077896081580739,1,0.6037125261433283,0.4909825593384345,0.36
+17,11,0.43372594582691115,0.0,1.3829143486718254,0.000701600704155436,0.0366446915722837,0.7079983788758596,1,0.6402013913746725,0.5321848628192526,0.41
+17,12,0.4364067653124809,0.0,1.38335097870798,0.0007002623743004567,0.03667891671417491,0.7079086567009163,1,0.6743490374052966,0.567948674068757,0.45999999999999996
+17,13,0.4122659306529296,0.0,1.3831551663114432,0.0006990737956844564,0.036677009737759794,0.7079496354571413,1,0.7189314908562486,0.5354663628441421,0.52
+17,14,0.5353482079552975,0.0,1.3843936444919913,0.0006991330550796737,0.036724884688508666,0.7076934810385516,1,0.7797199953428802,0.6081540319509646,0.52
+17,15,0.5533651063809367,0.0,1.38245376537738,0.000698239707933358,0.036592544540847226,0.7080949786256615,1,0.8409629080691157,0.6634269618558207,0.52
+17,16,0.5713511456097331,0.0,1.3820495827531376,0.0007048126256922676,0.0366260189933894,0.7081757979758648,1,0.8792276712091097,0.7120715356218157,0.5700000000000001
+17,17,0.5713848794879296,0.0,1.3830156563104974,0.0007025108147766836,0.03637003675084701,0.7079770581077438,2,0.9128154430083558,0.7396649147833504,0.6200000000000001
+17,18,0.6414623138482476,0.0,1.35368922890128,0.0006933650157756007,0.03635357250315331,0.7140067161298737,2,0.9606867552170084,0.7840731650743153,0.6100000000000001
+17,19,0.7237705620095766,0.0,1.3454083172896136,0.0006900781758905491,0.03540271215092498,0.7156960241660006,2,1.0,0.8459018733652554,0.5800000000000001
+17,20,0.7124613632223082,0.0,1.3635632066297856,0.0007257690462286992,0.03666716000718458,0.7119728957590412,2,1.0,0.8748712107410276,0.55
+17,21,0.7306945467959692,0.0,1.3607917871339577,0.000732675384472349,0.036675702382569245,0.7125380605535377,2,1.0,0.9356484893198976,0.52
+17,22,0.7140648250439653,0.0,1.3569634081725432,0.0007384242648952003,0.036738414367950986,0.7133192284084289,2,1.0,0.9802160834798843,0.51
+17,23,0.6300103855131713,0.0,1.352779474259413,0.000743756180776619,0.036779346903068486,0.7141718805832281,2,1.0,0.9333679517105711,0.49
+17,24,0.701439472948953,0.0,1.3572416689102913,0.0007346732416730942,0.03647338403417785,0.7132638564372498,2,1.0,0.9714649098298433,0.485
+17,25,0.72,0.0,1.3655771854256273,0.0007266860161151338,0.036649981694947695,0.7115593415273717,2,1.0,1.0,0.475
+17,26,0.77,0.0,1.3612688716322983,0.0007302482115489854,0.03625577698537156,0.7124413250903529,2,1.0,1.0,0.44499999999999995
+17,27,0.75,0.0,1.3578247820331653,0.0007375996824202731,0.03661180718747949,0.713143386849147,2,1.0,1.0,0.4149999999999999
+17,28,0.71,0.0,1.3534851325063881,0.000743312573699552,0.03643505698169987,0.7140279936738242,2,1.0,1.0,0.4099999999999999
+17,29,0.72,0.0,1.3613275490062122,0.00073389340870199,0.0367856342269547,0.7124278101711342,2,1.0,1.0,0.3999999999999999
+17,30,0.71,0.0,1.3574331714504657,0.0007393906565882032,0.036735647247614876,0.7132227592612235,2,1.0,1.0,0.3949999999999999
+17,31,0.69,0.0,1.3634020099130009,0.0007305499707086713,0.03674661801063231,0.7120039901414943,2,1.0,1.0,0.3899999999999999
+17,32,0.69,0.0,1.3671002813246784,0.0007230322554402433,0.03672588808538606,0.7112481373743426,2,1.0,1.0,0.3849999999999999
+17,33,0.77,0.0,1.3689864688444089,0.0007164130246003124,0.036447459039142725,0.7108633297747698,2,1.0,1.0,0.35499999999999987
+17,34,0.71,0.0,1.365885237971957,0.0007207575969587254,0.03650428235625082,0.7114985457276162,2,1.0,1.0,0.34999999999999987
+17,35,0.69,0.0,1.3667956094767284,0.0007139574013601136,0.0364838897626006,0.7113144320794933,2,1.0,1.0,0.34499999999999986
+17,36,0.69,0.0,1.36633951992058,0.0007079358409540263,0.03622380615928138,0.7114105518406275,2,1.0,1.0,0.33999999999999986
+17,37,0.77,0.0,1.364847167641119,0.0007023707906724246,0.03637259984116731,0.7117191270211516,2,1.0,1.0,0.30999999999999983
+17,38,0.72,0.0,1.3754383426245667,0.0006956922472508358,0.0364128325656031,0.7095439720798389,1,1.0,1.0,0.2999999999999998
+17,39,0.73,0.0,1.3633941872495352,0.0006846226832550311,0.0359172819960507,0.7120244289567192,1,1.0,1.0,0.2999999999999998
+17,40,0.7,0.0,1.3561271414694653,0.0006800905858079206,0.03577016214631914,0.7135140589507307,1,1.0,1.0,0.3499999999999998
+17,41,0.6334983601755477,0.0,1.3742346333775453,0.0007126090428700481,0.036594159777045006,0.7097850141857324,1,1.0,0.9449945339184924,0.4099999999999998
+17,42,0.71,0.0,1.3708883957657059,0.0007146208609981463,0.036623850462750226,0.710472994655389,1,1.0,1.0,0.4199999999999998
+17,43,0.69,0.0,1.3762897795508302,0.000709806831649904,0.036316084267298314,0.7093626471181296,1,1.0,1.0,0.4299999999999998
+17,44,0.7,0.0,1.3794301832408056,0.0007059792120266431,0.03657294936618953,0.7087163535220732,1,1.0,1.0,0.4799999999999998
+17,45,0.73,0.0,1.3783880984826782,0.0007102433071592361,0.03644755990862873,0.7089296723031284,1,1.0,1.0,0.4799999999999998
+17,46,0.6414802882877787,0.0,1.3810288956005654,0.0007063964328111302,0.036695793313668,0.7083860368989331,1,1.0,0.9716009609592625,0.5399999999999998
+17,47,0.71,0.0,1.3785151151452804,0.0007078370877012147,0.03667256930842352,0.7089044550142527,1,1.0,1.0,0.5499999999999998
+17,48,0.7,0.0,1.3812088664333744,0.0007045349413431481,0.03675387290992984,0.7083496271164378,1,1.0,1.0,0.5999999999999999
+17,49,0.73,0.0,1.3802271937839843,0.0007080572717193201,0.03678082975338814,0.7085509350403056,1,1.0,1.0,0.5999999999999999
+18,0,0.21490063822925431,0.0,1.3855749574387408,0.000699680977015826,0.03645597812760182,0.707448823860666,1,0.1480722262329758,0.276917863492376,0.0
+18,1,0.20476493910331306,0.0,1.3852432218049808,0.0006994987542317389,0.03647312786197108,0.7075175522131746,1,0.18909763120432557,0.29526922727266364,0.05
+18,2,0.2745671773798603,0.0,1.385121060833667,0.0006993534809261824,0.03660767135766044,0.707542891253574,1,0.25000635061319987,0.3568831822174679,0.05
+18,3,0.29069745979856687,0.0,1.3856082459675485,0.0007008761795869884,0.03673129682696121,0.7074414395159643,1,0.2988076198739869,0.420382642808905,0.060000000000000005
+18,4,0.35570963903626196,0.0,1.3861176143583238,0.0007002147068449565,0.036780838221332074,0.7073362792607183,1,0.36678914309921,0.4911114631717949,0.060000000000000005
+18,5,0.37138963586224594,0.0,1.385875850775963,0.0007003606817956923,0.03677387015149229,0.7073862642031794,1,0.4201179971547022,0.5478277895270006,0.060000000000000005
+18,6,0.37861959476111595,0.0,1.3852312663089135,0.0007001946866139262,0.036688279060593874,0.7075197382089076,0,0.45324373593589673,0.5666142906118403,0.11000000000000001
+18,7,0.3684624754927313,0.0,1.3862943611198846,0.0007001722195526524,0.0366262511295184,0.7072997068701548,0,0.5454195240864153,0.5252188068749534,0.19
+18,8,0.40651322718856364,0.0,1.3861664985298296,0.0007001693480406423,0.03648196367435287,0.707326178344288,0,0.5885429437544867,0.5684106562483112,0.2
+18,9,0.4018443264160322,0.0,1.3860873380386383,0.0007000327467868516,0.036391243332711695,0.7073426221075506,0,0.6089366506229913,0.5957216623266176,0.21000000000000002
+18,10,0.42537926917707136,0.0,1.3862943611198846,0.0007001722195526525,0.03655402168724227,0.7072997068701548,0,0.6229129690128249,0.6245324334086089,0.21000000000000002
+18,11,0.46152332557439035,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,0,0.6971185223385847,0.625106142519619,0.27
+18,12,0.4642998732509199,0.0,1.3860931518529194,0.000700165695847795,0.03675334360859734,0.7073413635505539,0,0.7134353420105372,0.6486583451574399,0.27
+18,13,0.4903875286027321,0.0,1.3860012559420916,0.0006999684374181358,0.03677525948553993,0.7073604681856932,0,0.7463581315707921,0.6638739418431829,0.28
+18,14,0.4736996570820039,0.0,1.3860574521443285,0.0007002364087216011,0.03676999027266105,0.7073487244007326,0,0.751100234097786,0.6693819171592625,0.29000000000000004
+18,15,0.5210529509727855,0.0,1.3856517974773126,0.0007004573430214186,0.036690654705394565,0.707432599038193,0,0.8371547719073865,0.6601626026840004,0.35000000000000003
+18,16,0.5382198866155439,0.0,1.3835342295462665,0.0007000754597184076,0.036556013650803756,0.7078708410542648,0,0.8737438650843786,0.6746984461200379,0.36000000000000004
+18,17,0.5397424961406141,0.0,1.3836385332183805,0.0007020082411699771,0.036380324126796836,0.707848472266207,0,0.9158489662142931,0.6973178598853716,0.37000000000000005
+18,18,0.5872039014207912,0.0,1.3829877148386576,0.0007037056374394719,0.03646935642123725,0.7079823408059251,0,1.0,0.6906796714026372,0.43000000000000005
+18,19,0.5657530852442134,0.0,1.3831044087085222,0.0007014794609838493,0.036492522154694854,0.7079591350774639,0,1.0,0.6525102841473779,0.51
+18,20,0.5833543941566804,0.0,1.3850838165361847,0.0007008733544948372,0.036696003286131186,0.7075499690123449,0,0.9998854992463705,0.677981564734836,0.52
+18,21,0.5654569567335402,0.0,1.3842743795462018,0.000701709255972123,0.036733408915274504,0.7077170861899557,2,1.0,0.6515231891118008,0.6
+18,22,0.6338567974379595,0.0,1.3493938005818382,0.0007424312829914268,0.0366729814393819,0.714863038204987,2,1.0,0.7128559914598651,0.59
+18,23,0.6320020776830485,0.0,1.3431208245204038,0.0007446023699600522,0.036576402381861724,0.7161390752700759,2,1.0,0.7400069256101618,0.585
+18,24,0.5583164970840204,0.0,1.3492617121601225,0.0007341530206703404,0.03632610731401943,0.7148933361126549,2,1.0,0.6943883236134016,0.565
+18,25,0.5252019775106596,0.0,1.3580522925326306,0.0007259633670286499,0.03658736471271881,0.7131016041107214,2,1.0,0.6506732583688655,0.5449999999999999
+18,26,0.6816591475935887,0.0,1.3642564449606283,0.0007193299420887925,0.036073758186438085,0.7118333558966514,2,1.0,0.705530491978629,0.5149999999999999
+18,27,0.6765127628543226,0.0,1.3627320017029638,0.0007280211555780146,0.03663255381399032,0.7121423954869762,2,1.0,0.755042542847742,0.4849999999999999
+18,28,0.6611146883922746,0.0,1.3599249926798676,0.0007353180773973507,0.03647022456235472,0.7127144890493632,2,1.0,0.8037156279742487,0.47499999999999987
+18,29,0.7303740493505739,0.0,1.3668375747884873,0.0006952161186270037,0.03622127004686189,0.7113135115636562,2,1.0,0.8679134978352465,0.44499999999999984
+18,30,0.6969259975466702,0.0,1.3663652154099033,0.000699158351296831,0.036202717159097605,0.711408880545634,2,1.0,0.9230866584889006,0.43499999999999983
+18,31,0.6952433068526761,0.0,1.3643830128852783,0.0007018745824148684,0.03625616009548284,0.7118145541980324,2,1.0,0.9508110228422538,0.4299999999999998
+18,32,0.6798692422423548,0.0,1.3619970251701954,0.0006965521927133361,0.03605318331766018,0.7123059367518163,2,1.0,0.9662308074745161,0.4249999999999998
+18,33,0.72,0.0,1.358820299478327,0.0006912712490519646,0.03625121081841269,0.7129586532165736,2,1.0,1.0,0.4149999999999998
+18,34,0.71,0.0,1.3564305850065563,0.0006937530220990596,0.035722401399524956,0.7134464412275815,2,1.0,1.0,0.4099999999999998
+18,35,0.6367753704549484,0.0,1.3526901907115283,0.0006879130446813102,0.036193003095988566,0.7142129028682842,2,1.0,0.9559179015164947,0.3899999999999998
+18,36,0.6049374201705575,0.0,1.3626812856199113,0.0006886771762044786,0.0358697566300133,0.7121689220184442,2,1.0,0.9164580672351917,0.3699999999999998
+18,37,0.7126446342146111,0.0,1.370076042453111,0.0006903602640368359,0.0363174270747585,0.7106500454133765,2,1.0,0.9754821140487039,0.35999999999999976
+18,38,0.71,0.0,1.3676950999674835,0.0006905200996935215,0.036180439570737986,0.7111393190982427,2,1.0,1.0,0.35499999999999976
+18,39,0.69,0.0,1.3641432452100537,0.0006867109858731087,0.03589921704595828,0.7118699568294318,2,1.0,1.0,0.34999999999999976
+18,40,0.69,0.0,1.3597173922756698,0.0006826558018166403,0.03596009745312315,0.7127785569656079,2,1.0,1.0,0.34499999999999975
+18,41,0.77,0.0,1.3542925241802921,0.0006780912287730251,0.03542992586771413,0.7138897460698719,2,1.0,1.0,0.3149999999999997
+18,42,0.6356426231414418,0.0,1.3753307935745374,0.0006974379740397948,0.03647820669091815,0.7095654169800217,2,1.0,0.9521420771381395,0.2949999999999997
+18,43,0.5992773783321191,0.0,1.3768543196383487,0.0007029255605353885,0.03624039008429801,0.7092490817160246,2,1.0,0.897591261107064,0.2749999999999997
+18,44,0.752754520401927,0.0,1.3769224715144546,0.0007076838889243088,0.03655757551122901,0.7092330650530606,2,1.0,0.9425150680064234,0.2449999999999997
+18,45,0.72,0.0,1.3806324975813913,0.0007043645622997955,0.03642105733668894,0.7084687554869914,2,1.0,1.0,0.23499999999999968
+18,46,0.71,0.0,1.3818388622086677,0.0007015554515299152,0.03660854211281481,0.7082206903247896,2,1.0,1.0,0.22999999999999968
+18,47,0.69,0.0,1.3787407975604842,0.0007017855529915603,0.036609594476223646,0.7088603790428695,2,1.0,1.0,0.22499999999999967
+18,48,0.69,0.0,1.3747032019904535,0.0007015681084319113,0.036516935790189296,0.7096930336567384,2,1.0,1.0,0.21999999999999967
+18,49,0.6347264975666873,0.0,1.3696111735810903,0.0007008641911560575,0.03643708987135801,0.7107413064925072,2,1.0,0.9490883252222911,0.19999999999999968
+19,0,0.2166314806418814,0.0,1.3841775221427253,0.0006988625545525315,0.03651427905171441,0.7077382987427874,1,0.16012319205628173,0.2686278780739426,0.0
+19,1,0.1320235851081055,0.0,1.3835905582130108,0.0006985912083372443,0.036413195533411005,0.7078598065988541,1,0.18926279403358526,0.21927202398783557,0.06
+19,2,0.212889735116018,0.0,1.3839129259471878,0.0006986122258435877,0.036573990553642834,0.7077931296282146,1,0.25898853695991264,0.2408124906001619,0.11
+19,3,0.2537020101109057,0.0,1.3856358984881056,0.0007007645411464175,0.03673098604659613,0.7074357625066088,1,0.31205176140460716,0.2816129787309774,0.12
+19,4,0.2623866389208414,0.0,1.385473705779857,0.0007011818019976536,0.03678573269690137,0.7074691577578766,1,0.34388965208240896,0.340084202306661,0.13
+19,5,0.2876408668093736,0.0,1.3851788912942218,0.0007015611013154209,0.03678127960848015,0.7075300108364052,1,0.37491712415946915,0.3547329111785314,0.18
+19,6,0.3396889631752162,0.0,1.385348636413417,0.000700904071312528,0.036701933973800185,0.7074951559610235,1,0.4308857723306737,0.429596476198268,0.19
+19,7,0.28416107368182314,0.0,1.3851984420732057,0.0007001173391396624,0.036615007715151165,0.7075265626756277,1,0.46826665714581295,0.40089247893596214,0.25
+19,8,0.3963566179573058,0.0,1.3858343377837856,0.0007001148491403928,0.036457288390884086,0.707394958710868,1,0.5157711407863097,0.45278906227365806,0.25
+19,9,0.38664674306891805,0.0,1.3855461976049794,0.0007003407737503535,0.03639216582447154,0.7074545029972711,1,0.5419048576794228,0.48993347627040035,0.3
+19,10,0.3814972208930165,0.0,1.3852782849253327,0.0006997240909360444,0.03651843822000491,0.707510203060056,1,0.5679267191604871,0.5090762306228204,0.35
+19,11,0.4034632919221651,0.0,1.3851324063026063,0.0007010272197079945,0.03668117127545299,0.7075398508924143,1,0.6030096721690449,0.5413663555433313,0.39999999999999997
+19,12,0.4995534760287361,0.0,1.383182565334728,0.0006987202097765545,0.03665309284336003,0.7079441167007334,1,0.6736098365616665,0.6126334441071761,0.39999999999999997
+19,13,0.4958550372800057,0.0,1.3822173177290746,0.0007002198414784828,0.036679421032636536,0.7081430306240271,1,0.7271726864989183,0.637815323351281,0.44999999999999996
+19,14,0.44352611487018134,0.0,1.3813109467228872,0.000698474503012888,0.03663147858529607,0.7083310420140667,1,0.7632017518318086,0.5880183390968279,0.51
+19,15,0.5194023037192234,0.0,1.3818849704014116,0.0006983332909985614,0.036537050759815094,0.7082124939502821,1,0.799752037849139,0.6316303015734159,0.56
+19,16,0.45918303253991827,0.0,1.3840073262027648,0.0006989502696817516,0.03652364814518521,0.707773465358821,2,0.8193388049701166,0.5747148360012583,0.6200000000000001
+19,17,0.6175207942965983,0.0,1.3768949261506453,0.0006942383793079527,0.0363806801479582,0.7092442908790955,2,0.8872915035037524,0.62322922690095,0.5900000000000001
+19,18,0.5854245748614728,0.0,1.3180415516277502,0.0007426781758786288,0.036427321161304906,0.7212103106964477,2,0.9403952787043891,0.6542874243831222,0.5850000000000001
+19,19,0.6783208063977179,0.0,1.3279831446297488,0.0007316024607786835,0.03566824125665668,0.7192114786597852,2,1.0,0.694402687992393,0.555
+19,20,0.6259643080189452,0.0,1.3279700487588189,0.0007503959304846962,0.03644955521600911,0.7192065327518927,2,1.0,0.7198810267298175,0.55
+19,21,0.5494464264905645,0.0,1.3356428043096895,0.0007386844663467312,0.03615926542134063,0.7176591744932348,2,1.0,0.6648214216352153,0.53
+19,22,0.6180987631537774,0.0,1.3463310816927734,0.0007291805835989399,0.036428704856117294,0.7154923077624762,2,1.0,0.6936625438459247,0.525
+19,23,0.6953358980212032,0.0,1.3513996098541807,0.0007205335377857469,0.036299240066333074,0.714462944796651,2,1.0,0.7511196600706774,0.495
+19,24,0.6436043439408287,0.0,1.3507295003648983,0.0007327549353967149,0.036335101653213464,0.7145946462057496,2,1.0,0.778681146469429,0.49
+19,25,0.6683141597882495,0.0,1.3541010193600704,0.0007237795276548851,0.036405372600759565,0.7139101969391113,2,1.0,0.8277138659608316,0.48
+19,26,0.6696982782995171,0.0,1.3468923475408858,0.0006742043810308597,0.03592534159279484,0.7154004280804552,2,1.0,0.8656609276650571,0.475
+19,27,0.7464231574510161,0.0,1.3399892032588685,0.0006697885232258329,0.03521804224410866,0.716805627034356,2,1.0,0.9214105248367203,0.44499999999999995
+19,28,0.6969047373276901,0.0,1.3475362914620241,0.0006729429711184946,0.03588586946903136,0.7152698149995449,2,1.0,0.9563491244256338,0.43999999999999995
+19,29,0.72,0.0,1.3399208198616999,0.0006673287080370365,0.03521135246707482,0.7168205069694098,2,1.0,1.0,0.42999999999999994
+19,30,0.77,0.0,1.3387981468405374,0.000667930546188528,0.03534274747197665,0.717048097397763,2,1.0,1.0,0.3999999999999999
+19,31,0.75,0.0,1.3450006081087356,0.0006729906718891308,0.035584707640079524,0.715785928080383,2,1.0,1.0,0.3699999999999999
+19,32,0.75,0.0,1.3483385701736048,0.0006782669404905072,0.0353789081643648,0.7151042262780014,2,1.0,1.0,0.33999999999999986
+19,33,0.6343151493294499,0.0,1.3493557751524934,0.0006832175631436954,0.036052225776233224,0.7148949275274546,2,1.0,0.9477171644314994,0.31999999999999984
+19,34,0.7163723566561384,0.0,1.3646726286412802,0.0006892417801931723,0.03574037080115564,0.7117603238006339,2,1.0,0.9879078555204612,0.30999999999999983
+19,35,0.77,0.0,1.3652924020280948,0.0006873550227589819,0.036365051586964965,0.7116339302833813,2,1.0,1.0,0.2799999999999998
+19,36,0.72,0.0,1.3693352155852199,0.000688267286421648,0.035935277252743626,0.7108032157909525,2,1.0,1.0,0.2699999999999998
+19,37,0.6359354283108518,0.0,1.368658819564013,0.0006879481946643622,0.0362901666268497,0.7109423684336774,2,1.0,0.953118094369506,0.2499999999999998
+19,38,0.7079704178966706,0.0,1.3739257182299562,0.0006920218965315366,0.03632537629768568,0.7098571238995655,2,1.0,0.9932347263222353,0.2449999999999998
+19,39,0.77,0.0,1.3692549736420405,0.000689560614228825,0.036141252050424434,0.7108191785061847,2,1.0,1.0,0.2149999999999998
+19,40,0.71,0.0,1.3725077575161353,0.0006904209842398515,0.036319850503569416,0.7101497391991263,2,1.0,1.0,0.2099999999999998
+19,41,0.72,0.0,1.3673196948852404,0.0006869556341059165,0.03599927907697795,0.7112178929599594,2,1.0,1.0,0.1999999999999998
+19,42,0.71,0.0,1.3671797193947497,0.0006867204571730564,0.03631497538528547,0.7112467378551103,2,1.0,1.0,0.19499999999999978
+19,43,0.6366261756424902,0.0,1.3615473170686523,0.0006827765045692072,0.03565225959967662,0.7124037298071378,2,1.0,0.9554205854749678,0.1749999999999998
+19,44,0.7094493477916949,0.0,1.3678197312751421,0.0006892563043072764,0.036433205802099286,0.7111142358831363,2,1.0,0.998164492638983,0.1699999999999998
+19,45,0.77,0.0,1.361557138565922,0.0006860442100217683,0.035729611373753606,0.7124003785159971,2,1.0,1.0,0.1399999999999998
+19,46,0.6401215404726326,0.0,1.3657838128581914,0.0006861891538629688,0.03630494208983285,0.7115335554474929,2,1.0,0.9670718015754421,0.11999999999999979
+19,47,0.72,0.0,1.3709462793402283,0.0006930187876242852,0.036288448688556754,0.7104699750713472,2,1.0,1.0,0.10999999999999979
+19,48,0.6365494858022274,0.0,1.37181758518709,0.0006913364717743955,0.03623601162916665,0.7102914048801611,2,1.0,0.9551649526740912,0.08999999999999979
+19,49,0.72,0.0,1.3752592123291445,0.0006968335244970281,0.03648747351819389,0.7095804175142048,2,1.0,1.0,0.0799999999999998
+20,0,0.09954854361770768,0.0,1.3837212104254257,0.0006983748498878892,0.03651360091465749,0.7078328772204578,1,0.13504441786091276,0.1742766578879607,0.06
+20,1,0.22442233967699504,0.0,1.3840575868093294,0.0006997966560886624,0.036433599801343156,0.7077627197156523,1,0.18889429871870445,0.2610311170848283,0.06
+20,2,0.22031646561486593,0.0,1.3837727381102234,0.0006984072570175761,0.03655406318729505,0.7078222074937396,1,0.24272990917125742,0.2845366580164195,0.11
+20,3,0.26345158253511747,0.0,1.3851214964914862,0.000701096585984255,0.03671766168286268,0.7075420797166719,1,0.2774352458167938,0.3544974883307988,0.12
+20,4,0.26762720623372627,0.0,1.3846744180800827,0.0007013691853443843,0.036776415098900436,0.7076344706117582,1,0.29747997763988215,0.37836404686589165,0.16999999999999998
+20,5,0.331943086680572,0.0,1.3847094416577639,0.0007006188287902598,0.0367470267607717,0.7076275350875385,1,0.3547263032261391,0.42596293517141104,0.16999999999999998
+20,6,0.34184498851908496,0.0,1.3849436789286618,0.0007005543221989426,0.036695137473179304,0.7075790978870696,1,0.40529767318445437,0.4666360096817533,0.18
+20,7,0.3635855902037377,0.0,1.3851276013097367,0.0006995308086891869,0.03660114034437544,0.7075414644698882,1,0.46135707835637213,0.5403687092633583,0.19
+20,8,0.3270402779293474,0.0,1.385051420940526,0.0006998629182751869,0.036453117907009586,0.7075570905206592,1,0.5029313499437729,0.5033810181634231,0.25
+20,9,0.42924921497585466,0.0,1.3858024991714428,0.000699961771155765,0.036373613913726746,0.7074016122263125,1,0.5542081552141818,0.5842545355029702,0.26
+20,10,0.366352907594895,0.0,1.3854715112326135,0.0007001205083559368,0.03651605998594347,0.7074700512163379,1,0.5786353269147833,0.5461018105824029,0.32
+20,11,0.34827167027044004,0.0,1.386004864175124,0.0007000864006821355,0.03667893670662563,0.7073596724377399,1,0.6207461539010894,0.5033683880168626,0.38
+20,12,0.44903574660266554,0.0,1.3816609460847304,0.0006974343249733887,0.036602166423316644,0.7082591573721142,1,0.6828397576029963,0.5334727714720562,0.43
+20,13,0.398126533125729,0.0,1.3808784501918197,0.0006965171664922256,0.03656051342028158,0.7084211955752165,1,0.711329804897758,0.4972036713717123,0.49
+20,14,0.381845010508868,0.0,1.3821814290625263,0.0006973640382671345,0.03665033895053059,0.7081516283475147,1,0.754170310713116,0.45961800586425805,0.55
+20,15,0.5140139050588246,0.0,1.3827830151436107,0.0006981393512569732,0.036574701077297225,0.7080269606879174,1,0.7935906781804147,0.5208572256522647,0.55
+20,16,0.42994270351491015,0.0,1.381330653645107,0.0006967578781078287,0.03648357753299172,0.7083276798916164,2,0.8348338446930135,0.45916952624118496,0.6100000000000001
+20,17,0.401150988829349,0.0,1.3671295453574566,0.0006904559200569648,0.03605361518553858,0.7112555079196563,2,0.8603103633204151,0.4001412055573459,0.5900000000000001
+20,18,0.5787385721500046,0.0,1.370874736862576,0.0006906933656209999,0.03644609833910962,0.7104856479683389,2,0.9276648096407526,0.44685296258580415,0.56
+20,19,0.5474134564119104,0.0,1.366396463125172,0.0006883967902393497,0.03592992044744275,0.7114068840214337,2,0.9821015362985754,0.4789263956913634,0.555
+20,20,0.540429255594231,0.0,1.3657448957406975,0.0006869039201755515,0.03615607148659693,0.7115412498465361,2,1.0,0.5014308519807703,0.55
+20,21,0.5516219539535999,0.0,1.3640799340587442,0.0006854240694456042,0.03610045209270175,0.7118834703837754,2,1.0,0.5387398465119999,0.545
+20,22,0.4921611207719645,0.0,1.3616046072741441,0.0006837909065014374,0.035741408572559384,0.7123915760992093,2,1.0,0.473870402573215,0.525
+20,23,0.6320797515511724,0.0,1.3657809588118819,0.0006869334576412817,0.03609803435327067,0.71153383570857,2,1.0,0.5402658385039081,0.495
+20,24,0.5975032515655867,0.0,1.3619080576810874,0.0006838419859223624,0.03573214761955035,0.7123293772595237,2,1.0,0.5916775052186224,0.485
+20,25,0.5930622467670066,0.0,1.3679930766003905,0.0006881409351099684,0.03631573402689401,0.7110790824103671,2,1.0,0.6435408225566885,0.475
+20,26,0.5295346759837446,0.0,1.303328731882873,0.0007165314803238136,0.03513229019835346,0.7241693543390291,2,1.0,0.5984489199458154,0.45499999999999996
+20,27,0.4970885060676744,0.0,1.3746253563774342,0.000698446910469663,0.03636866615562592,0.7097103579054926,2,1.0,0.556961686892248,0.43499999999999994
+20,28,0.5847680634520658,0.0,1.378687228614159,0.000697993109315923,0.03641266687958642,0.7088729996473189,2,1.0,0.5825602115068861,0.42999999999999994
+20,29,0.5691145029850938,0.0,1.3774648267478313,0.0006956642711424453,0.036392962863304776,0.7091261655470902,2,1.0,0.5970483432836461,0.42499999999999993
+20,30,0.5801481571351644,0.0,1.375597856836668,0.0006934720998080133,0.03642881059638749,0.7095120116524747,2,1.0,0.6338271904505484,0.41999999999999993
+20,31,0.5925157114201779,0.0,1.30740460947135,0.0007138688433044615,0.03545849525414395,0.7233555277585192,2,1.0,0.675052371400593,0.4149999999999999
+20,32,0.6900565929537319,0.0,1.3138568532418176,0.0007056806234868641,0.03556095890951334,0.722065781951118,2,1.0,0.7335219765124399,0.3849999999999999
+20,33,0.6403134251559579,0.0,1.3175143879035667,0.0007282285941107981,0.03564083548402428,0.7213221022821524,2,1.0,0.7677114171865264,0.3799999999999999
+20,34,0.6583850321769635,0.0,1.3218601483196097,0.0007182903611658726,0.03594380448877909,0.7204516961326555,2,1.0,0.7946167739232118,0.3699999999999999
+20,35,0.659225780155448,0.0,1.3123172489367125,0.0007160038690196522,0.035452233053011366,0.7223705138693904,2,1.0,0.8640859338514932,0.3599999999999999
+20,36,0.6670956996446843,0.0,1.3389808633699958,0.0006828482501100956,0.03508973813749814,0.7170049707195281,2,1.0,0.8903189988156145,0.34999999999999987
+20,37,0.6830552342590741,0.0,1.337928344218849,0.0006877150354628867,0.03589935223848563,0.7172165132457674,2,1.0,0.9101841141969139,0.34499999999999986
+20,38,0.754461986240909,0.0,1.3327398274546804,0.0006801053637759205,0.03507091842368509,0.7182707253267201,2,1.0,0.9482066208030302,0.31499999999999984
+20,39,0.7198700834240586,0.0,1.3716216993556516,0.0007021971003965512,0.03651231700350201,0.7103272427225243,2,1.0,0.9995669447468617,0.3049999999999998
+20,40,0.6288173764584537,0.0,1.3744818112318589,0.0006989297638595306,0.03652641496500435,0.7097397314663919,2,1.0,0.9293912548615125,0.2849999999999998
+20,41,0.5965464134505849,0.0,1.375772159421135,0.0007048952053296721,0.036513483373349434,0.7094713766774767,2,1.0,0.8884880448352831,0.2649999999999998
+20,42,0.580006656929677,0.0,1.3756420217963072,0.0007101350102001698,0.03662556044003864,0.7094960401778146,2,1.0,0.8333555230989236,0.2449999999999998
+20,43,0.685576112137873,0.0,1.3744938059539373,0.0007146250301935323,0.03634472169097698,0.709730793621486,2,1.0,0.8852537071262432,0.2349999999999998
+20,44,0.6870889729876686,0.0,1.3765856419418507,0.0007095935571254838,0.03649104583488756,0.7093017341463663,2,1.0,0.9236299099588955,0.2299999999999998
+20,45,0.679487189851463,0.0,1.3732877624488138,0.0007114409032533978,0.03634302877413086,0.7099805026715443,2,1.0,0.9649572995048764,0.22499999999999978
+20,46,0.687849694852358,0.0,1.369040141002254,0.0007128334340079003,0.03653143956198324,0.7108537695593155,2,1.0,0.9928323161745272,0.21999999999999978
+20,47,0.72,0.0,1.3637006238834788,0.000713637889411653,0.036467544784212436,0.7119496908027725,2,1.0,1.0,0.20999999999999977
+20,48,0.6341400462640092,0.0,1.36596533201541,0.0007071909399737189,0.036373119919260906,0.7114876744434898,2,1.0,0.9471334875466974,0.18999999999999978
+20,49,0.718314053079618,0.0,1.3659140613417973,0.0007147838206602316,0.03658401750429215,0.7114950816438359,2,1.0,0.9943801769320602,0.17999999999999977
+21,0,0.16861770392413372,0.0,1.3832369465773549,0.0006981873387767197,0.036488557969759236,0.7079330931059006,1,0.15342790228517877,0.21639312708107045,0.05
+21,1,0.17128660532677534,0.0,1.3829049389236425,0.0006980611737859353,0.03641747786433935,0.7080017877056894,1,0.19394531448932012,0.24468581751837767,0.1
+21,2,0.13850593455936533,0.0,1.3825336484263495,0.0006979579727112201,0.03649303478590881,0.7080785832773824,1,0.21627330545987397,0.20936759216136477,0.16
+21,3,0.2585459238713934,0.0,1.3847050373047598,0.000700671396629502,0.03669796936431382,0.7076284245552851,1,0.2759239419194179,0.27324181399865727,0.16
+21,4,0.27651278138824353,0.0,1.384554237216384,0.0007012797803104393,0.036770290861786445,0.7076593709528018,1,0.32264198834000796,0.34529361823080257,0.17
+21,5,0.3399150744524959,0.0,1.3840736100385291,0.000701635767916712,0.03675150388994307,0.7077586447558215,1,0.3876347334366617,0.41414305916554783,0.17
+21,6,0.36551848530951003,0.0,1.3847765954166371,0.0007019453753037096,0.03670573738683489,0.7076130924823149,1,0.44672748508138155,0.49721288510342176,0.18000000000000002
+21,7,0.4279615019991747,0.0,1.3861419535130535,0.0007000641983332138,0.03661914608252876,0.7073313030609518,1,0.5319081637129413,0.5393121489988176,0.18000000000000002
+21,8,0.3470283377802103,0.0,1.386225249252301,0.0007002615508449158,0.03647029156572844,0.7073139776892398,1,0.5686511207937319,0.4933348183413472,0.24000000000000002
+21,9,0.4678758323922474,0.0,1.386177393847659,0.0007000992644995133,0.03638120022887957,0.7073239518525876,1,0.6301815584307477,0.5577076231382858,0.24000000000000002
+21,10,0.3793374600080599,0.0,1.385902553202405,0.000700027556479111,0.036532760888052095,0.7073808749216426,1,0.6574600371989288,0.49742148996144964,0.30000000000000004
+21,11,0.36098768040182516,0.0,1.3855227451245458,0.0006996288989708885,0.036647702395897916,0.7074596514206649,1,0.7004143152357544,0.45280890023103737,0.36000000000000004
+21,12,0.49304926975226004,0.0,1.3813654428932907,0.0006979654807898741,0.036588885917267985,0.7083199934076466,1,0.7467820430214123,0.5055851823158857,0.36000000000000004
+21,13,0.5053709411653802,0.0,1.3798522817948968,0.0006962358063674837,0.03657403422422582,0.7086332323832739,1,0.7977424541451039,0.553870274048646,0.37000000000000005
+21,14,0.5662951072449185,0.0,1.3826545692952785,0.0006976193458444252,0.03663796900973892,0.7080537279030805,1,0.862866449259361,0.6143061666804741,0.37000000000000005
+21,15,0.5909325253932437,0.0,1.3819412933436768,0.0006982893481421537,0.036577047069458725,0.7082008729771423,1,0.9356411601849768,0.6781937310950062,0.37000000000000005
+21,16,0.6289290511990814,0.0,1.3818265188170455,0.0006996826714721677,0.03649391769500969,0.7082240150013133,1,0.9965140828528819,0.7338304073352424,0.37000000000000005
+21,17,0.6483617083264265,0.0,1.3808670785837753,0.0007009843655757476,0.03649079503420055,0.7084216990065082,1,1.0,0.794539027754755,0.38000000000000006
+21,18,0.6859186553387199,0.0,1.3798645862963592,0.0007029654633929061,0.0363904706264485,0.7086279128436721,0,1.0,0.8530621844623996,0.38000000000000006
+21,19,0.6454267890175545,0.0,1.3862943611198846,0.0007001722195526527,0.036587573128233755,0.7072997068701548,0,1.0,0.8847559633918483,0.39000000000000007
+21,20,0.6274508328778341,0.0,1.3858985250181877,0.0007001572943489423,0.03669630237620082,0.7073816550179576,0,1.0,0.8581694429261137,0.4700000000000001
+21,21,0.6360083320011248,0.0,1.3857410725126884,0.000699780441903199,0.03674739718236254,0.7074144014977518,0,1.0,0.8866944400037494,0.4700000000000001
+21,22,0.6259843011527152,0.0,1.3858709617327303,0.0007001605300968031,0.03677501694786527,0.7073873590487958,0,1.0,0.9199476705090508,0.4700000000000001
+21,23,0.640318058492243,0.0,1.3851955244106033,0.0007004702084556999,0.03674239421724019,0.7075270203948739,0,1.0,0.9010601949741432,0.55
+21,24,0.6481600886682368,0.0,1.3847262914813498,0.0006993180411798054,0.036638030692328745,0.70762458724722,0,1.0,0.9272002955607893,0.55
+21,25,0.6575915081974301,0.0,1.383522864504089,0.0006992141960751506,0.03648449918108161,0.7078735474216411,2,1.0,0.9253050273247669,0.6100000000000001
+21,26,0.6799035741439812,0.0,1.3295934535369849,0.0006708363746033108,0.035663211236182726,0.7189107275688649,2,1.0,0.9663452471466039,0.6050000000000001
+21,27,0.72,0.0,1.3225806812441152,0.0006631139549858144,0.03448739349244925,0.7203287886884692,2,1.0,1.0,0.5950000000000001
+21,28,0.6370840726808426,0.0,1.3203661688489259,0.0006671014924935032,0.03531554505258094,0.7207730909765895,2,1.0,0.956946908936142,0.5750000000000001
+21,29,0.77,0.0,1.3352442671287896,0.0006698495928115484,0.03514638826528155,0.717767810463657,2,1.0,1.0,0.545
+21,30,0.71,0.0,1.3397647438955829,0.0006769641976910497,0.03552899029690404,0.716848276035053,2,1.0,1.0,0.54
+21,31,0.6353116567214034,0.0,1.3332441249479885,0.0006696757074216267,0.03535997592408298,0.7181728874743395,2,1.0,0.9510388557380116,0.52
+21,32,0.7167292894392181,0.0,1.346249381311944,0.0006737016777676682,0.03520677699452769,0.7155315242264481,2,1.0,0.9890976314640603,0.51
+21,33,0.77,0.0,1.3442957821156103,0.0006753742824555665,0.03586647468662151,0.7159283240234673,2,1.0,1.0,0.48
+21,34,0.72,0.0,1.3479029273460306,0.0006816967269070877,0.0352757797020234,0.7151915743064539,2,1.0,1.0,0.47
+21,35,0.7,0.0,1.3451880713991806,0.000684049307938176,0.03601198601480189,0.7157432898301231,2,1.0,1.0,0.45999999999999996
+21,36,0.7,0.0,1.3415519093073727,0.0006856568216531973,0.03554752285831521,0.7164818507834814,1,1.0,1.0,0.44999999999999996
+21,37,0.73,0.0,1.3773946150666638,0.0007108554422963106,0.03668871954710192,0.7091343809269027,1,1.0,1.0,0.44999999999999996
+21,38,0.71,0.0,1.38099133902263,0.0007071414546976377,0.03670244639510596,0.7083934872965952,1,1.0,1.0,0.45999999999999996
+21,39,0.73,0.0,1.3824970967838437,0.0007040029090910943,0.036763407833127794,0.7080836395802539,1,1.0,1.0,0.45999999999999996
+21,40,0.71,0.0,1.3846264960235843,0.0007021757917943202,0.0367804559167294,0.7076440512602716,1,1.0,1.0,0.47
+21,41,0.73,0.0,1.3850888797437135,0.0007006114197391878,0.03670427588067239,0.7075490297179724,1,1.0,1.0,0.47
+21,42,0.71,0.0,1.3860774071480126,0.0007002120227491661,0.03663732640603291,0.7073446036642346,1,1.0,1.0,0.48
+21,43,0.73,0.0,1.3857716588146092,0.0006998249197659302,0.03647344482501194,0.7074080523150422,1,1.0,1.0,0.48
+21,44,0.6384004903268459,0.0,1.3858787618107864,0.0007005141433391099,0.036371212591823736,0.7073855981146104,1,1.0,0.9613349677561532,0.54
+21,45,0.6069089867206008,0.0,1.3855422284770433,0.0006997327182509006,0.03652747080200016,0.7074555761467995,2,1.0,0.923029955735336,0.6000000000000001
+21,46,0.7178085378425746,0.0,1.3492843573787217,0.0006773634803460532,0.03598049326671303,0.7149118699678997,2,1.0,0.9926951261419154,0.5900000000000001
+21,47,0.77,0.0,1.348625554677805,0.0006806120315967135,0.03557171818834632,0.7150447996159833,2,1.0,1.0,0.56
+21,48,0.72,0.0,1.3496520032796315,0.0006860998453069147,0.035742280086257475,0.7148333713313784,2,1.0,1.0,0.55
+21,49,0.7,0.0,1.348083234817444,0.0006899975300363356,0.03587383348372976,0.715151463687663,2,1.0,1.0,0.54
+22,0,0.10030452975293949,0.0,1.3830252012292694,0.0006989219057870182,0.03647733333031753,0.7079765687199632,1,0.14743151541693736,0.1623449978567047,0.06
+22,1,0.1742711197411631,0.0,1.382723487747058,0.0006996137922490972,0.03639271114802251,0.7080386567314355,1,0.1922993673529834,0.18988780389206303,0.11
+22,2,0.11885438386103735,0.0,1.3828018830681053,0.0006990409906075955,0.0365584747656087,0.7080226874195337,1,0.21602193457583307,0.14415568919831928,0.16999999999999998
+22,3,0.0949216639402626,0.0,1.386190199904591,0.0007001785186599732,0.03673963172872539,0.707321267962834,2,0.24228214194533815,0.10040971419798085,0.22999999999999998
+22,4,0.26880419113950477,0.0,1.3862943611198846,0.0007001722195526524,0.03678462527586455,0.7072997068701548,2,0.30570796563276526,0.1393546772267898,0.19999999999999998
+22,5,0.14178771278468524,0.0,1.3862265313770936,0.000700170130432018,0.036777466454913345,0.7073137501144156,2,0.330999362245974,0.08645978666198119,0.18
+22,6,0.11197038590614695,0.0,1.386228895438398,0.000700134718690878,0.036724775876336394,0.7073132753657821,2,0.33561313815589916,0.04835262517194091,0.16
+22,7,0.2157660736243319,0.0,1.3861975381982967,0.0007001034585828873,0.03662167392016884,0.7073197798800814,2,0.37755433107752817,0.07874019249065689,0.155
+22,8,0.14895517015600035,0.0,1.3862269110970775,0.0007001696348787762,0.0364816014851316,0.7073136717095752,2,0.3952942611417439,0.03534059585463334,0.135
+22,9,0.1250027759764412,0.0,1.3861731279223755,0.0007002004614609261,0.03637233211637274,0.7073247930710524,2,0.4142936456469748,0.0,0.115
+22,10,0.3079864814752714,0.0,1.3862943611198846,0.0007001722195526525,0.03655402168724227,0.7072997068701548,2,0.49145740348967715,0.053254634179614686,0.085
+22,11,0.2873197049027413,0.0,1.3862052017947057,0.0007001699379746276,0.03667941230377308,0.7073181658462423,2,0.5301640882115145,0.10587424676237071,0.07500000000000001
+22,12,0.3793391413368738,0.0,1.3861719366222403,0.0007003409435372993,0.03675319436044936,0.7073249815255223,2,0.6171442258371331,0.1444622076462574,0.04500000000000001
+22,13,0.35584628161212545,0.0,1.3862943611198844,0.0007001722195526527,0.036787569296499095,0.7072997068701548,2,0.6758603082905361,0.19765057903479283,0.040000000000000015
+22,14,0.28034909720251394,0.0,1.3861751520234684,0.0007001717306786776,0.03676751420370715,0.7073243859441918,2,0.6898411753371498,0.12968228611503835,0.020000000000000014
+22,15,0.24187435053020465,0.0,1.3861524714581142,0.000700365792798445,0.03671354244230783,0.7073290008282055,2,0.6971520076578311,0.059570492833212474,1.3877787807814457e-17
+22,16,0.23245797953102784,0.0,1.3860044481180083,0.0007005157003603781,0.03658200989018269,0.7073595808306176,2,0.714535914265379,0.007901365127150707,0.0
+22,17,0.3610037470700877,0.0,1.3857572259799247,0.0007006480012868384,0.0364572713305716,0.7074106989176124,2,0.7801287962201728,0.05986222797675739,0.0
+22,18,0.3709431576553782,0.0,1.3858997469897578,0.0007002195884461976,0.03640183402571466,0.7073813762896376,2,0.8263591159366024,0.10572489025855808,0.0
+22,19,0.48835681220123195,0.0,1.3862943611198846,0.0007001722195526527,0.036587573128233755,0.7072997068701548,2,0.9052455793359846,0.1717361981121245,0.0
+22,20,0.4627642376048252,0.0,1.3860688778658,0.0007001677790066084,0.03670222212606753,0.7073463876101722,2,0.9448972334684846,0.2068340196361853,0.0
+22,21,0.477913776520967,0.0,1.3862943611198846,0.0007001722195526525,0.03676835788889028,0.7072997068701548,2,1.0,0.2263792550698901,0.0
+22,22,0.5030040080680412,0.0,1.3860784902277112,0.0007001689243194249,0.03678422815019926,0.7073443973012545,2,1.0,0.27668002689347093,0.0
+22,23,0.5671228162558763,0.0,1.3859643359019722,0.0006999437567836471,0.036746727175922415,0.707368120853605,2,1.0,0.32374272085292116,0.0
+22,24,0.5123770000325548,0.0,1.3860043476804984,0.0007002843781486417,0.03667117272653301,0.7073596973896925,2,1.0,0.34125666677518296,0.0
+22,25,0.4997061415521725,0.0,1.3856647486116427,0.0006997584319600981,0.036546893893509125,0.7074302078235994,2,1.0,0.36568713850724194,0.0
+22,26,0.5939853969329177,0.0,1.3848394955835683,0.0006992054187749979,0.036504600755397326,0.7076012122736902,2,1.0,0.41328465644305923,0.0
+22,27,0.5642397067894821,0.0,1.3853522858302636,0.0007000028763018433,0.03645567446953021,0.7074947737265065,2,1.0,0.48079902263160695,0.0
+22,28,0.4791779789913517,0.0,1.3840073817851986,0.0006998301212604763,0.036536498111072346,0.707773089902821,2,1.0,0.430593263304506,0.0
+22,29,0.6128883524484681,0.0,1.3839797398534919,0.000698983481334837,0.03664194789870075,0.7077791572777112,2,1.0,0.47629450816156027,0.0
+22,30,0.5784833701533341,0.0,1.3845314260437174,0.0007006147869382025,0.036746651097197755,0.7076643651925386,2,1.0,0.5282779005111138,0.0
+22,31,0.5742221471676439,0.0,1.3830371221836206,0.0007008901455405748,0.03670482209942415,0.7079732902521447,2,1.0,0.5474071572254795,0.0
+22,32,0.6461179214021877,0.0,1.3844880080415092,0.0007000754395281331,0.03670885973907647,0.7076735703844323,2,1.0,0.5870597380072924,0.0
+22,33,0.5920923903213873,0.0,1.3846026518125436,0.0007019853327295639,0.036626061677373055,0.7076490630254241,2,1.0,0.6069746344046242,0.0
+22,34,0.6713464496616361,0.0,1.38575986974385,0.0007008645047112878,0.036548187626606735,0.7074100620847236,2,1.0,0.6711548322054539,0.0
+22,35,0.5436819511878823,0.0,1.3847597019444409,0.0007015395615722695,0.03630657573372407,0.7076167555973808,2,1.0,0.6456065039596076,0.0
+22,36,0.6115472305259471,0.0,1.3853321049875649,0.0007005300537170813,0.036512689281230123,0.7074987318594047,2,1.0,0.6718241017531571,0.0
+22,37,0.541807440321243,0.0,1.3858594211290212,0.0007000467208227713,0.036625703845780615,0.7073897949528634,2,1.0,0.6393581344041435,0.0
+22,38,0.6784927946002958,0.0,1.3859066352510567,0.0006999082438701025,0.036729065365594074,0.7073800793585978,2,1.0,0.694975982000986,0.0
+22,39,0.6755371638902196,0.0,1.3849024258600977,0.0006994133524716576,0.03673430099366867,0.7075881056741447,2,1.0,0.7517905463007322,0.0
+22,40,0.5627574915586114,0.0,1.3829801525132805,0.0006987581803467771,0.036671338248196,0.7079859499609384,2,1.0,0.7091916385287049,0.0
+22,41,0.52296810453037,0.0,1.3828656984723833,0.0006979466774782073,0.03659462438818582,0.7080099473642959,2,1.0,0.6432270151012336,0.0
+22,42,0.6766031695312391,0.0,1.3820262229983595,0.0006972232243143634,0.036512696701737506,0.7081837623996061,2,1.0,0.6886772317707973,0.0
+22,43,0.6276101782440511,0.0,1.379858416309305,0.0006958975406380076,0.0364811329654625,0.7086321054603836,2,1.0,0.7253672608135038,0.0
+22,44,0.6989508726667282,0.0,1.3814140470175782,0.0006968006053423462,0.03626596137390795,0.7083104329012845,2,1.0,0.7631695755557609,0.0
+22,45,0.6877780714413613,0.0,1.3785711652714905,0.0006947830130840988,0.03652963228415749,0.7088982761813133,2,1.0,0.7925935714712046,0.0
+22,46,0.6632696245399521,0.0,1.3747226969832063,0.0006924633627658785,0.036237568051888894,0.709692768806311,2,1.0,0.8442320817998404,0.0
+22,47,0.6539782429935858,0.0,1.359558638592844,0.0007283950239040842,0.03658345694764346,0.7127923297109027,2,1.0,0.879927476645286,0.0
+22,48,0.5975734037765822,0.0,1.3536975434625025,0.0007299101224683115,0.03654132962004443,0.7139900928936945,2,1.0,0.825244679255274,0.0
+22,49,0.7351540642819459,0.0,1.3520164948407718,0.0007396456044596842,0.03669689650582158,0.7143292800632255,2,1.0,0.8838468809398194,0.0
+23,0,0.19201786198928528,0.0,1.3830523161499535,0.0006990091131018796,0.03647839623201231,0.7079709267339315,1,0.15486700981467483,0.25938136184716365,0.01
+23,1,0.13709179400151617,0.0,1.384073964759089,0.0006991195058150732,0.03646397284056463,0.707759612294692,1,0.19184066558374202,0.23315853682402163,0.06999999999999999
+23,2,0.2152688510620503,0.0,1.3842174499085043,0.000699542414874146,0.036570953718799704,0.7077297585676996,1,0.23795475862498713,0.2732822851443494,0.12
+23,3,0.25686893439646097,0.0,1.384073074315276,0.0007016382050474964,0.03669561027195916,0.7077587545546749,1,0.27711184593677657,0.3329326277286307,0.13
+23,4,0.275775367540086,0.0,1.3834935394678887,0.0007019607502047936,0.0367631268862925,0.7078784755679616,1,0.3283885034511804,0.3694646377739096,0.18
+23,5,0.22419033323561258,0.0,1.3834995545488953,0.0007009092915102133,0.03671954159589613,0.7078776665845277,1,0.3607010829065388,0.3264831807277467,0.24
+23,6,0.2024066256115785,0.0,1.3845461216077604,0.0007005952949476143,0.03667776939207781,0.7076613330958139,1,0.3988435282673108,0.27603796906006567,0.3
+23,7,0.29550291305676313,0.0,1.3851987943891668,0.0007003795988398144,0.036616170279403656,0.7075263812296633,1,0.43541432060317353,0.3103596694855079,0.35
+23,8,0.2942949543965735,0.0,1.3848900966143,0.0006995315841790619,0.03645124528876208,0.7075906077513453,1,0.46879126538371985,0.33406003837423853,0.39999999999999997
+23,9,0.2572064096201634,0.0,1.3846440314704915,0.0006997213891476424,0.03646814654448531,0.7076414390039559,1,0.4818143803187003,0.29523792169539426,0.45999999999999996
+23,10,0.33390213310403727,0.0,1.3845371191970997,0.0007001035831080539,0.03652545171029112,0.7076633989286913,1,0.5167447054807125,0.34347162061929304,0.51
+23,11,0.39568184384973615,0.0,1.3841361737755848,0.0007004836890086592,0.036622003485968564,0.7077461807286295,1,0.5693733715161993,0.388003879396888,0.51
+23,12,0.40828073044391155,0.0,1.3853632335496524,0.0007002885166021628,0.036741060875666566,0.7074923899107716,1,0.6169592792296293,0.44114994237847105,0.52
+23,13,0.41925913228804323,0.0,1.3799666989400174,0.0006959000354368381,0.036577173037534653,0.7086097465239265,1,0.6589847947459297,0.4620481804232262,0.5700000000000001
+23,14,0.4921643715388715,0.0,1.3802868641846184,0.0006959418908658964,0.03656730939134097,0.7085436164701534,1,0.7299797422657839,0.5222382058194905,0.5700000000000001
+23,15,0.4923404778926532,0.0,1.3779964842560095,0.000694349322724873,0.036381554246844625,0.7090170329360214,2,0.7871088259026557,0.5561746294224126,0.6200000000000001
+23,16,0.4327773763724061,0.0,1.385904296858069,0.0007004744796617332,0.03660784290879426,0.7073803289764308,2,0.8016382977716592,0.5073465738410847,0.6000000000000001
+23,17,0.6001863740161859,0.0,1.365768035949474,0.0006859673484915117,0.03634374328895043,0.7115368847553513,2,0.88441402665532,0.5688048822894132,0.5700000000000001
+23,18,0.5745025957707167,0.0,1.3641449790952418,0.0006851674979070485,0.035951761197513435,0.711870234363312,2,0.9178933819133395,0.610799707003493,0.56
+23,19,0.667434043586861,0.0,1.2425347365079258,0.0006803390606757867,0.033677044029269756,0.7361599917986749,2,1.0,0.6581134786228701,0.53
+23,20,0.6302490065502349,0.0,1.251782644503826,0.0007191530680266799,0.03500164736713805,0.7343447226714465,2,1.0,0.7008300218341161,0.52
+23,21,0.6945309886037745,0.0,1.2373938615143998,0.0007100740606217544,0.03399546982079402,0.7371457601890723,2,1.0,0.7484366286792483,0.49
+23,22,0.685977866512905,0.05,1.2443380377300757,0.0007509403686086204,0.035081524888718976,0.7209462322677314,2,1.0,0.7865928883763501,0.45999999999999996
+23,23,0.7041879733956297,0.0,1.2536215283985988,0.0007854585557655427,0.03590591414480391,0.7339599407747314,2,1.0,0.847293244652099,0.42999999999999994
+23,24,0.7166327359592957,0.0,1.341314201232041,0.0006697541239915191,0.03564475461204857,0.7165365953718908,2,1.0,0.8887757865309857,0.3999999999999999
+23,25,0.7016958502064287,0.0,1.3385477397985976,0.0006702636026349999,0.0352846510935051,0.7170979531457488,2,1.0,0.9389861673547624,0.3899999999999999
+23,26,0.7656470427754183,0.0,1.344259028595021,0.0006763826707400682,0.03590615888995733,0.7159353885543649,2,1.0,0.9854901425847279,0.3599999999999999
+23,27,0.6314593988942985,0.0,1.3405203677215176,0.0006774898441718691,0.0353318568522164,0.7166946633237141,2,1.0,0.9381979963143281,0.33999999999999986
+23,28,0.7141233064860067,0.0,1.351461606302698,0.0006796579357272892,0.03598149340269617,0.7144669748612408,2,1.0,0.9804110216200226,0.32999999999999985
+23,29,0.71,0.0,1.3397317024373634,0.0007526294398273073,0.03647094660298657,0.71682426548823,2,1.0,1.0,0.32499999999999984
+23,30,0.69,0.0,1.3323816810195908,0.0007551878505081448,0.03647944456246478,0.718312810105907,2,1.0,1.0,0.31999999999999984
+23,31,0.6335991022260585,0.0,1.3241085054072481,0.0007564481409863655,0.03640016461714537,0.719983264771523,2,1.0,0.9453303407535285,0.2999999999999998
+23,32,0.72,0.0,1.3218608582493139,0.0007715216896376975,0.0363627929494099,0.7204301109512494,2,1.0,1.0,0.2899999999999998
+23,33,0.7,0.0,1.3299083547486679,0.0007569976911410586,0.03652428997701494,0.7188122598028001,2,1.0,1.0,0.2799999999999998
+23,34,0.77,0.0,1.3349237451409393,0.000744328776428284,0.036239029010639814,0.7178025640397219,2,1.0,1.0,0.2499999999999998
+23,35,0.6344753122782959,0.0,1.3490141394329884,0.0007332334299868629,0.03651509010641713,0.7149441687361294,2,1.0,0.9482510409276531,0.22999999999999982
+23,36,0.77,0.0,1.346861514538789,0.0007426983855856346,0.036340189977702275,0.7153788141449235,2,1.0,1.0,0.19999999999999982
+23,37,0.72,0.0,1.3580238073300204,0.0007324423936392866,0.03662764812200869,0.7131047807640895,2,1.0,1.0,0.1899999999999998
+23,38,0.71,0.0,1.361577305089701,0.0007236417487734748,0.03649841171009592,0.7123808398556658,2,1.0,1.0,0.1849999999999998
+23,39,0.77,0.0,1.356382095466648,0.0007261515281138233,0.03649200301192982,0.7134431073063192,2,1.0,1.0,0.1549999999999998
+23,40,0.6332868892050387,0.0,1.3656364373368914,0.0007184978897995215,0.036664511280898794,0.7115505415339661,2,1.0,0.9442896306834627,0.13499999999999981
+23,41,0.7015280336721408,0.0,1.3640899393671968,0.0007256496435489252,0.03656318290317658,0.7118649169209168,2,1.0,0.9717601122404692,0.1299999999999998
+23,42,0.6256591077770933,0.0,1.3589566490811045,0.0007281887928311432,0.036600311619895055,0.7129156372861659,2,1.0,0.9188636925903112,0.1099999999999998
+23,43,0.6961010474146413,0.0,1.3567746275889032,0.00073610892444623,0.03624445371417848,0.7133587783950528,2,1.0,0.9536701580488044,0.1049999999999998
+23,44,0.7696544433276318,0.0,1.3512382796202687,0.000739191359371201,0.03664790794009768,0.7144882438003646,2,1.0,0.9988481444254393,0.0749999999999998
+23,45,0.6375063150605628,0.0,1.360099344211743,0.0007292710165417301,0.03628881297204732,0.7126812652848719,2,1.0,0.9583543835352094,0.0549999999999998
+23,46,0.77,0.0,1.3577059388513641,0.0007370500421462479,0.03674169606693458,0.7131679228389822,2,1.0,1.0,0.0249999999999998
+23,47,0.637388204206844,0.0,1.3640944845390035,0.0007277747211350562,0.036644175353400664,0.7118631128793922,2,1.0,0.9579606806894797,0.0049999999999998
+23,48,0.72,0.0,1.3612583384975083,0.0007334911524154974,0.036771698440343406,0.712442154245045,2,1.0,1.0,0.0
+23,49,0.6353225320278304,0.0,1.367668027907207,0.0007255278845644365,0.03679711299449793,0.7111304975544738,2,1.0,0.9510751067594347,0.0
+24,0,0.1910345335134366,0.0,1.383387141465962,0.000699627801018062,0.036436518401545444,0.7079014415572988,1,0.1431822535626296,0.2697358158883875,0.01
+24,1,0.20758910995853955,0.0,1.3842923466017922,0.0006995513594506985,0.03648064492523061,0.7077142623689806,1,0.19652215926991018,0.3293545140469033,0.02
+24,2,0.2354456670322415,0.0,1.384908141476891,0.000699530748366961,0.036592102452157355,0.7075868744903736,1,0.23791624508603923,0.34058327084042594,0.07
+24,3,0.28424621520411786,0.0,1.3851867519594832,0.0007005010380217835,0.03670838102809337,0.7075288229378904,1,0.2921396656411989,0.4066577740989943,0.08
+24,4,0.3024506268249801,0.0,1.3838242096476074,0.0007032468753659748,0.03678258935395026,0.7078095607457109,1,0.34484367576857544,0.43918446768659564,0.13
+24,5,0.3038462222465627,0.0,1.3846399375960516,0.0007022937119228758,0.03678381043981123,0.7076412216150928,1,0.37844793481105155,0.4712981502089823,0.18
+24,6,0.3949152624835235,0.0,1.3850459444648364,0.0007014567961567367,0.03670168997577472,0.7075575641024854,1,0.44192770613311755,0.5341352177897745,0.18
+24,7,0.4043396729796405,0.0,1.3861588681274482,0.0007001078124692378,0.036623462053442864,0.7073277834336646,1,0.4848719312310621,0.5821149901625626,0.19
+24,8,0.34267547755784067,0.0,1.3859954344633387,0.0007002295364905795,0.03645981654291254,0.7073615651442444,1,0.5101139853193396,0.547118608986906,0.25
+24,9,0.3154376076543779,0.0,1.3858265437154564,0.0006999006601844692,0.03637164004060088,0.7073966606501683,1,0.5332211699823117,0.49603399386856273,0.31
+24,10,0.41395360251262814,0.0,1.3854793314098983,0.0006995974352707069,0.03652325509359952,0.7074686492867794,1,0.5794212890284866,0.5371871711755263,0.36
+24,11,0.4863517693371649,0.0,1.3860881760647914,0.0007004326086669798,0.036687065169126974,0.707342283078403,1,0.6465243257137836,0.6002275177911356,0.36
+24,12,0.48489207520574773,0.0,1.3858669041666372,0.0006999614953322301,0.03674309705701301,0.7073882813221145,1,0.6896357382486823,0.6450652227290299,0.41
+24,13,0.49228046819350724,0.0,1.385039124031285,0.0006997436811708028,0.03674492085015326,0.7075596843361331,0,0.7357853514082277,0.6825186506687587,0.45999999999999996
+24,14,0.5071601980257501,0.0,1.385426821557763,0.0007001269143252906,0.036750645466843965,0.70747929728342,0,0.8405215844158749,0.6432588116006462,0.5399999999999999
+24,15,0.5243751150978787,0.0,1.3855793651444088,0.0006997247966348257,0.03667448985536451,0.7074478934808052,0,0.860687616485368,0.6437814977599999,0.5499999999999999
+24,16,0.5285917258081781,0.0,1.384903884516325,0.000699624060394754,0.03657680313654167,0.7075877166735849,0,0.9145239324424441,0.6616944981777425,0.5599999999999999
+24,17,0.5511204984383828,0.0,1.3836741438608842,0.0006994259935267832,0.03635127906102202,0.7078421759931823,0,0.9480812512552906,0.6976402016634373,0.57
+24,18,0.5793321809276833,0.0,1.3817716172740375,0.0006991139547754949,0.03654052480534131,0.7082355949149156,0,0.9719644748699956,0.730482049077283,0.57
+24,19,0.575595548273711,0.0,1.382427581608665,0.0007019785446789775,0.03650159701781266,0.7080988450946455,2,1.0,0.6853184942457031,0.6499999999999999
+24,20,0.5178044209720369,0.0,1.2377607212071382,0.0008798376683145409,0.036635401351183275,0.7370088664014981,2,1.0,0.6260147365734565,0.6299999999999999
+24,21,0.6246066186827726,0.0,1.25893507338261,0.0008577236419259938,0.03644724342146673,0.7328928220007253,2,1.0,0.6820220622759084,0.6199999999999999
+24,22,0.6227978055009838,0.0,1.2506838269079,0.0008608259582840975,0.036532276071522464,0.7345037765891705,2,1.0,0.709326018336613,0.6149999999999999
+24,23,0.6507482090755081,0.0,1.265289604461243,0.000838758771435527,0.03640938266352204,0.7316544606016144,2,1.0,0.7691606969183606,0.6049999999999999
+24,24,0.6443561140888054,0.0,1.2561859927161316,0.0008404490646120866,0.03601622534562401,0.7334373945817293,2,1.0,0.7811870469626849,0.5999999999999999
+24,25,0.6279328588089085,0.0,1.2686786843838704,0.0008196073775272933,0.03630812435007185,0.7309960712748784,2,1.0,0.7931095293630284,0.5949999999999999
+24,26,0.6715950159879703,0.0,1.2777256710892166,0.0008010871793359911,0.036126483622497874,0.7292206650136149,2,1.0,0.8386500532932345,0.5849999999999999
+24,27,0.7337412346130857,0.0,1.3453582835348936,0.0006742190996324606,0.035527560113312276,0.7157126583604033,2,1.0,0.8791374487102859,0.5549999999999998
+24,28,0.7008137787973566,0.0,1.3406367445890286,0.0006725142247028793,0.03561715895415991,0.7166730538014703,2,1.0,0.9360459293245221,0.5449999999999998
+24,29,0.7014717380015183,0.0,1.3475271583503543,0.000679413103688854,0.0354382366538353,0.7152690396381958,2,1.0,0.9715724600050609,0.5399999999999998
+24,30,0.69,0.0,1.3430593117837573,0.0006749775749621603,0.03552986835576512,0.7161798852478498,2,1.0,1.0,0.5349999999999998
+24,31,0.6338455410309574,0.0,1.3377754611212742,0.0006703465758478076,0.03518940754861264,0.7172545642213117,2,1.0,0.9461518034365248,0.5149999999999998
+24,32,0.72,0.0,1.3481645466881398,0.0006752954652904705,0.03559122026487628,0.7151408894515182,2,1.0,1.0,0.5049999999999998
+24,33,0.71,0.0,1.354366541939222,0.0006799443162551875,0.03594907197906788,0.7138738706010184,2,1.0,1.0,0.4999999999999998
+24,34,0.77,0.0,1.3487952915800985,0.0006751880125162791,0.03544597869542501,0.7150124239926731,2,1.0,1.0,0.46999999999999975
+24,35,0.75,0.0,1.3454562029136488,0.0006751293914015565,0.03586244809678875,0.7156923640282467,2,1.0,1.0,0.4399999999999997
+24,36,0.72,0.0,1.34102809050683,0.0006744766239367476,0.03545280406317519,0.7165927861071709,2,1.0,1.0,0.4299999999999997
+24,37,0.6381006282016595,0.0,1.3466944364987132,0.0006817682695739002,0.03587587924968653,0.7154376417733568,2,1.0,0.9603354273388652,0.4099999999999997
+24,38,0.72,0.0,1.3565059961194352,0.0006832608627745762,0.035583312542688914,0.7134353140509386,2,1.0,1.0,0.3999999999999997
+24,39,0.6334083275789721,0.0,1.3601061627413948,0.0006890705965568921,0.03605072498067208,0.7126963322544194,2,1.0,0.9446944252632408,0.37999999999999967
+24,40,0.6997031011530099,0.0,1.3677440716578229,0.0006900557533159851,0.03604519779836756,0.7111294499965423,2,1.0,0.9656770038433667,0.37499999999999967
+24,41,0.72,0.0,1.3643427608436278,0.0006865000486749091,0.03603147103087709,0.7118291187627285,1,1.0,1.0,0.36499999999999966
+24,42,0.7,0.0,1.3629940954738047,0.0006897523321477202,0.03635977274294672,0.7121043557999608,1,1.0,1.0,0.41499999999999965
+24,43,0.6799999999999999,0.0,1.3670485257190905,0.0006995934505683494,0.03594897582332957,0.7112683936723686,1,1.0,1.0,0.46499999999999964
+24,44,0.71,0.0,1.368740940050463,0.000708805752983908,0.03662089864020446,0.7109169191416967,1,1.0,1.0,0.47499999999999964
+24,45,0.69,0.0,1.3721544019003233,0.0007040320048204867,0.036191622522855675,0.7102168649829556,1,1.0,1.0,0.48499999999999965
+24,46,0.6399546745094047,0.0,1.373424957772903,0.0006999518867386632,0.03643572347922021,0.709956983832011,1,1.0,0.966515581698016,0.5449999999999997
+24,47,0.73,0.0,1.3688507448260987,0.000699314216332762,0.03624568293816378,0.7108982536479896,1,1.0,1.0,0.5449999999999997
+24,48,0.6429036528446763,0.0,1.3738636828649335,0.0006971327253131926,0.03648565229949617,0.7098677953340706,2,1.0,0.9763455094822546,0.6049999999999998
+24,49,0.6065555632914086,0.0,1.3531451379584722,0.0006792112614980405,0.03554155184876309,0.7141235862184092,2,1.0,0.9218518776380289,0.5849999999999997
+25,0,0.08908088881585333,0.0,1.3839259290972732,0.0006993084142640125,0.03634496179625975,0.7077901523074189,1,0.11497148681931987,0.16280289476363793,0.06
+25,1,-0.019650905192851675,0.0,1.3831317876788605,0.0006989529580889574,0.036400617398891735,0.7079545190959258,1,0.12567134821153425,0.12121374311037116,0.12
+25,2,0.199162449798516,0.0,1.3834172373934661,0.0006988985701119692,0.0365722216945165,0.7078955199530691,1,0.18541546397576542,0.18089012468999374,0.12
+25,3,0.11795600822886833,0.0,1.3827379462511453,0.0006987052591849296,0.03663936686072313,0.7080360434875534,1,0.222311704311044,0.13382303906667647,0.18
+25,4,0.21442790693302602,0.0,1.3862178658327475,0.0007001628588465415,0.036782358581714615,0.707315547071658,2,0.2837733715900025,0.1836907562550839,0.19
+25,5,0.15238959551211295,0.0,1.386126018714955,0.0007002141387956182,0.03677361977428049,0.7073345396929942,2,0.3076252440067643,0.14906920036581817,0.17
+25,6,0.3169401106167606,0.0,1.3860036953235129,0.000700241768482286,0.03672868111544664,0.7073598500694098,2,0.39284647898699093,0.19814614323771257,0.14
+25,7,0.3055305801189541,0.0,1.3859153442425416,0.0006999614648392497,0.03660778859082589,0.7073782546178199,2,0.453969862787771,0.2554704271441143,0.13
+25,8,0.39527412432652953,0.0,1.3862943611198844,0.0007001722195526524,0.036479165647275234,0.7072997068701548,2,0.5234492316372047,0.30688964417835973,0.1
+25,9,0.4262166978787785,0.0,1.3861470853174735,0.000700169198946979,0.03639655995123407,0.7073301972326109,2,0.6254962529021904,0.35764336454337314,0.07
+25,10,0.4087390782300566,0.0,1.3862943611198846,0.0007001722195526525,0.03655402168724227,0.7072997068701548,2,0.6658963959093651,0.3855844655392629,0.065
+25,11,0.45368930257197193,0.0,1.3861368105169114,0.0007001711732089619,0.03667189576543698,0.7073323234401915,2,0.726354049307052,0.43155128438167906,0.055
+25,12,0.46857382858463426,0.0,1.3856549169042838,0.0006997368966370227,0.03673598954754443,0.7074322516289664,2,0.7842984114160305,0.48023128196341214,0.045
+25,13,0.5832308651514776,0.0,1.3847947408630075,0.0006993148787968724,0.0367322373976557,0.7076104267229655,2,0.8626146732794713,0.5377190983455423,0.015
+25,14,0.5452443009739945,0.0,1.38529705820593,0.0007007480211016538,0.036760575843849515,0.7075058943246212,2,0.912443310589019,0.5529638075594597,0.009999999999999998
+25,15,0.6514597893998841,0.0,1.3850996888433742,0.0006997642732702112,0.03667238239031078,0.7075471436476045,2,0.9850626627273179,0.6222928581510764,0.0
+25,16,0.6076687924047872,0.0,1.3729005807133765,0.0006933685595593457,0.0363708766523971,0.7100676612995539,2,1.0,0.6588959746826241,0.0
+25,17,0.5991109729686122,0.0,1.3703305739586398,0.0006932342341912286,0.03625760067851545,0.7105965221124484,2,1.0,0.6970365765620409,0.0
+25,18,0.6453042695911372,0.0,1.3670225696659781,0.0006927918729239099,0.036239131417875624,0.7112765177076433,2,1.0,0.7510142319704572,0.0
+25,19,0.5607817733009317,0.0,1.3729956108776835,0.0006930273439722815,0.03636372379231113,0.7100482373979279,2,1.0,0.702605911003106,0.0
+25,20,0.6287874272301904,0.0,1.3752063106976704,0.0006972680095162242,0.03630016637365029,0.7095911400825389,2,1.0,0.729291424100635,0.0
+25,21,0.5566680240135435,0.0,1.3716578726634974,0.0006968991678519445,0.03645191518205025,0.7103219798169012,2,1.0,0.6888934133784788,0.0
+25,22,0.6948498221925138,0.0,1.3729619564107496,0.0007021745236321803,0.0364498738846297,0.7100513997226557,2,1.0,0.7494994073083795,0.0
+25,23,0.5592645790462649,0.0,1.3719557884923073,0.0006977219558119464,0.03638156306500691,0.7102603367815499,2,1.0,0.6975485968208832,0.0
+25,24,0.6380361762704152,0.0,1.3724546372669868,0.0007019787675225462,0.036377016286494694,0.7101559152366456,2,1.0,0.7601205875680509,0.0
+25,25,0.6258250575366084,0.0,1.369311359284975,0.000703077714798833,0.036376764834198674,0.710802030815723,2,1.0,0.7860835251220283,0.0
+25,26,0.5677733271735778,0.0,1.365346905064012,0.0007037188363393874,0.036367339245311776,0.711616029254382,2,1.0,0.7259110905785927,0.0
+25,27,0.6356151194818207,0.0,1.3655687997941637,0.0007102996055519976,0.03636585902585303,0.7115677889234894,2,1.0,0.7520503982727357,0.0
+25,28,0.714864398373456,0.0,1.3611086288503351,0.0007115891200245297,0.03640058173825916,0.712481797446384,2,1.0,0.8162146612448532,0.0
+25,29,0.6637110507005539,0.0,1.3714810877480936,0.0007048217871447001,0.03643396109171305,0.7103550943945838,2,1.0,0.8457035023351797,0.0
+25,30,0.6558901559311123,0.0,1.3659825033297275,0.000704162687486307,0.03639476302983017,0.7114853928682734,2,1.0,0.8863005197703745,0.0
+25,31,0.6713156399697284,0.0,1.359577140122958,0.0007029022324577298,0.03624207044571165,0.7127989797815218,2,1.0,0.9377187998990948,0.0
+25,32,0.6127820871197365,0.0,1.3519849312236658,0.0007009033980373005,0.035977963781493295,0.7143515322068642,2,1.0,0.8759402903991219,0.0
+25,33,0.7532558212845288,0.0,1.3542510177905966,0.0007138901944949437,0.036470185604732926,0.7138835997975077,2,1.0,0.9441860709484297,0.0
+25,34,0.72,0.0,1.3600976089513996,0.0007070358077403496,0.035963968450157605,0.7126907265751355,2,1.0,1.0,0.0
+25,35,0.71,0.0,1.3658714056127683,0.0007021450538978607,0.036563985743060703,0.7115090260927687,2,1.0,1.0,0.0
+25,36,0.632648829464272,0.0,1.3587893621481284,0.00070049589448302,0.03582440775530785,0.7129612088696939,2,1.0,0.9421627648809068,0.0
+25,37,0.7693573408889565,0.0,1.3607715339418351,0.0007116778016897987,0.036498133336885494,0.712550810564866,2,1.0,0.9978578029631883,0.0
+25,38,0.71,0.0,1.3656464636797727,0.0007055761816691699,0.03628381952421177,0.7115537879199727,2,1.0,1.0,0.0
+25,39,0.72,0.0,1.3588005703312656,0.0007045405562382878,0.036308643442223176,0.7129572596665188,2,1.0,1.0,0.0
+25,40,0.71,0.0,1.3645813117896803,0.000699917247032425,0.03632147702521268,0.7117746776253339,2,1.0,1.0,0.0
+25,41,0.633944553667805,0.0,1.3572407293845636,0.0006977545994443395,0.035985627007941876,0.7132791494364753,2,1.0,0.9464818455593501,0.0
+25,42,0.6036424004622614,0.0,1.359738252951116,0.0007094503003897864,0.036486232539470254,0.7127633149936708,2,1.0,0.9121413348742046,0.0
+25,43,0.7571728012554063,0.0,1.3602818711993447,0.0007198074281485251,0.0361028983730298,0.7126477643292832,2,1.0,0.9572426708513545,0.0
+25,44,0.6244829609976914,0.0,1.3656095233921313,0.0007126072088571702,0.03660668158515874,0.7115584835401139,2,1.0,0.9149432033256382,0.0
+25,45,0.5882458108835169,0.0,1.3651128626943072,0.0007207643887845666,0.036261929842152714,0.7116570612479262,2,1.0,0.8608193696117235,0.0
+25,46,0.677972389258263,0.0,1.3634935756223368,0.0007275467475881563,0.036713339241605476,0.7119864455277639,2,1.0,0.8932412975275434,0.0
+25,47,0.7534026047172863,0.0,1.3585188309775469,0.0007300894958072241,0.03655374101223147,0.7130044579426235,2,1.0,0.944675349057621,0.0
+25,48,0.75,0.0,1.3629573603265133,0.0007213786028329593,0.0366217577453264,0.7120989193922241,2,1.0,1.0,0.0
+25,49,0.75,0.0,1.3650199870561477,0.0007137755734666165,0.036472656928798745,0.7116789871804521,2,1.0,1.0,0.0
+26,0,0.2170905715711239,0.0,1.3839279310136177,0.0006993121180713097,0.036345034373869704,0.7077897367323286,1,0.17452861541430714,0.253351853920388,0.0
+26,1,0.23431155223368177,0.0,1.38381863021392,0.0006988473557707056,0.03647460900928613,0.7078125344233749,1,0.22665426222590573,0.31660853484871593,0.01
+26,2,0.2564303426242829,0.0,1.385365989112305,0.0007004646034217835,0.03665060459390188,0.7074917467739399,1,0.2916043940976342,0.3478960156337031,0.060000000000000005
+26,3,0.32435625798930484,0.0,1.3853187513994687,0.0007000086759923582,0.03670573562195726,0.7075017110914011,1,0.3444715484340095,0.4126373867913384,0.060000000000000005
+26,4,0.2496915863649546,0.0,1.3841807542299835,0.0007026537865224235,0.03678064683122356,0.7077360618040904,1,0.38635242483858223,0.3815607922381694,0.12
+26,5,0.23367449834511542,0.0,1.3853329386082005,0.0007000794474724609,0.03675228844040019,0.7074987458471517,1,0.4249877010515394,0.34976267659025545,0.18
+26,6,0.3580438829842977,0.0,1.3843999964769944,0.0006989752911280789,0.03665560829268653,0.707692232314838,1,0.4906412445361682,0.4210648246554627,0.19
+26,7,0.3782415642517725,0.0,1.385654096519127,0.0006997360034155949,0.03659884824072005,0.7074324217953233,1,0.5451219351231897,0.4914962898621872,0.2
+26,8,0.3410180252967585,0.0,1.3853910013546293,0.0006995797761242643,0.036437266494867074,0.7074869367628724,1,0.5799151799223307,0.46015904107980915,0.26
+26,9,0.41316906643382656,0.0,1.3849311157253874,0.0006992306070163003,0.03638731266380841,0.7075822451233039,1,0.6174120126104197,0.49024954006726545,0.31
+26,10,0.4578828018519219,0.0,1.3839511364680257,0.0006987669836186078,0.036495070052111875,0.7077851627728929,1,0.667397732927621,0.5476453177575153,0.32
+26,11,0.5168781805425049,0.0,1.3839211347137523,0.0006984998040838045,0.036578501788234304,0.7077914783744212,1,0.7330414221291209,0.6010456093243753,0.32
+26,12,0.5338367346017924,0.0,1.3855441512364841,0.0007000715843581824,0.03672940940239984,0.707455037943077,1,0.7927408982532634,0.6545914007105007,0.33
+26,13,0.5459902940259517,0.0,1.3853387919105935,0.0007007778395839671,0.03677743424771965,0.707497245481009,1,0.8374551214629048,0.67627000504645,0.38
+26,14,0.5470786501991551,0.0,1.379894980952812,0.0007029001993123305,0.03667327007056172,0.7086216640366696,1,0.8782684191510906,0.6989490116542448,0.43
+26,15,0.606573636023094,0.0,1.3791657025730224,0.0007002058905481239,0.03651397242006919,0.7087733326225466,1,0.9155556393263733,0.7537638741962113,0.44
+26,16,0.6188861442202289,0.0,1.3777639024771193,0.0007015458948430382,0.03642825592527772,0.7090620457904229,1,0.9671712951343796,0.8012539697439873,0.45
+26,17,0.646113456236983,0.0,1.3264447955062693,0.0006765374359657442,0.03579470575572163,0.7195442626429274,1,1.0,0.8537115207899437,0.46
+26,18,0.6005534540698114,0.0,1.3318777414974496,0.0006738589981133574,0.034855418865447706,0.7184476694361712,1,1.0,0.8351781802327047,0.52
+26,19,0.5723212193615317,0.0,1.3222526157393697,0.0006684280232729428,0.03558874642334287,0.7203927336319738,1,1.0,0.8077373978717727,0.5800000000000001
+26,20,0.557909280737905,0.0,1.3122852932773772,0.0006624584075539961,0.03443899553970215,0.7223983989875623,2,1.0,0.7596976024596835,0.6400000000000001
+26,21,0.5437656396517109,0.0,1.2237323488504261,0.0007883813272907718,0.03468214914240843,0.7397541015604396,2,1.0,0.7125521321723698,0.6200000000000001
+26,22,0.5298982026256293,0.0,1.2476052805014017,0.0007706860223808802,0.03535383349666282,0.7351387878727561,2,1.0,0.6663273420854309,0.6000000000000001
+26,23,0.5113930934821527,0.0,1.2687303766520042,0.0007547506189003321,0.035543647451580285,0.7310114131603886,2,1.0,0.6046436449405093,0.5800000000000001
+26,24,0.4989427031731978,0.0,1.2866302053546206,0.0007408700730046297,0.03522833120768806,0.7274826869415355,2,1.0,0.5631423439106595,0.56
+26,25,0.5996402829848207,0.0,1.3692822695963789,0.0006927568823422281,0.03607748294679192,0.7108122536100957,2,1.0,0.598800943282736,0.55
+26,26,0.513112123077477,0.0,1.3688535314351469,0.0006953492017746088,0.0364747144462115,0.7108993107324447,2,1.0,0.5437070769249234,0.53
+26,27,0.48004692620459577,0.0,1.3750098660308383,0.0006956332844020745,0.036135108900229265,0.709632293758237,2,1.0,0.5001564206819861,0.51
+26,28,0.47046387377459653,0.0,1.3793374101743052,0.0006964508271834439,0.03648369995549507,0.7087394388532141,2,1.0,0.4682129125819886,0.49
+26,29,0.6232074265391946,0.0,1.3822813113023928,0.0006975211885868043,0.03659004002136963,0.7081309200060794,2,1.0,0.5106914217973154,0.45999999999999996
+26,30,0.4851274980585396,0.0,1.3818789766988857,0.0006980186759602807,0.036626310370840985,0.7082138625612396,2,1.0,0.4504249935284654,0.43999999999999995
+26,31,0.44736763432310256,0.0,1.384013990396244,0.0006986973930247416,0.036691450721242136,0.7077721916058597,2,1.0,0.39122544774367546,0.41999999999999993
+26,32,0.5355637343708431,0.0,1.3833871610073611,0.0006984092456708065,0.03663767847396837,0.7079019414547509,2,1.0,0.41854578123614405,0.4149999999999999
+26,33,0.5223135713750521,0.0,1.3831990358736697,0.0006983902502600778,0.03653951322688733,0.7079408476981612,2,1.0,0.4410452379168405,0.4099999999999999
+26,34,0.5710339897637254,0.0,1.3817905292881338,0.000697048718292084,0.03636769019091911,0.7082325404783492,2,1.0,0.5034466325457516,0.3999999999999999
+26,35,0.5749774343885365,0.0,1.3818911567893097,0.000697736544713048,0.03654062550366946,0.708211462179586,2,1.0,0.5499247812951218,0.3949999999999999
+26,36,0.6469119491573916,0.0,1.3800024371004997,0.0006959091102608669,0.036298681140837195,0.7086023634353695,2,1.0,0.5897064971913054,0.3649999999999999
+26,37,0.6170674012794881,0.0,1.3796259609355537,0.000696519443766897,0.03644659988248304,0.7086798420212431,2,1.0,0.6568913375982938,0.35499999999999987
+26,38,0.6114888036537569,0.0,1.2842363924884344,0.0007427622627075957,0.0357763163317801,0.7279562562775662,2,1.0,0.7049626788458564,0.34499999999999986
+26,39,0.6296479180913497,0.0,1.2720989512071457,0.0007370274384519765,0.03511998162280292,0.7303555033038095,2,1.0,0.7321597269711655,0.33999999999999986
+26,40,0.5563010633156859,0.0,1.284396873275551,0.0007254049844844567,0.03527683229266148,0.7279313493291687,2,1.0,0.6876702110522863,0.31999999999999984
+26,41,0.5222877195350155,0.0,1.354590836916519,0.0006892248965292993,0.036027010703143694,0.7138242627234952,2,1.0,0.6409590651167186,0.2999999999999998
+26,42,0.631143865293432,0.0,1.3558023210228005,0.0006943893268520481,0.03573426289638817,0.713574606574367,2,1.0,0.7038128843114402,0.2899999999999998
+26,43,0.6304651157551329,0.0,1.3653854828078278,0.0006937148706965817,0.03638846901537736,0.7116122183674339,2,1.0,0.7348837191837762,0.2849999999999998
+26,44,0.556173241118631,0.0,1.362634930014545,0.0006947149501840538,0.03605049908787637,0.7121759488425713,2,1.0,0.6872441370621033,0.2649999999999998
+26,45,0.5241087452807537,0.0,1.3633503642362683,0.0006996742427089114,0.03635815850587619,0.7120272421530762,2,1.0,0.6470291509358457,0.2449999999999998
+26,46,0.6818537810070521,0.0,1.3630667283700626,0.0007039287227469586,0.03624621727423246,0.7120836521068379,2,1.0,0.7061792700235069,0.2149999999999998
+26,47,0.6464591882627175,0.0,1.3607558330171978,0.0006980926627615039,0.03613578017454981,0.712559591456844,2,1.0,0.7548639608757252,0.2049999999999998
+26,48,0.6436773496359035,0.0,1.369567069824715,0.0006969997767153826,0.03631880104048878,0.710751962538917,2,1.0,0.7789244987863451,0.1999999999999998
+26,49,0.5736682752897049,0.0,1.3673292254413236,0.0006986337163473481,0.036229173859032286,0.7112111384081086,2,0.9980450937153034,0.7478416416311625,0.1799999999999998
+27,0,0.17217351750124704,0.0,1.3845133492669002,0.0006989776268252962,0.03634140390226501,0.7076687821920744,1,0.1600487989233088,0.22052145959362984,0.05
+27,1,0.11924912769607529,0.0,1.384105497574352,0.0006987455230495107,0.03649457553789211,0.7077532448405273,1,0.18353690089077726,0.18337070794767757,0.11
+27,2,0.09037495613348077,0.0,1.382942739556957,0.0006986254966584323,0.036559275362225634,0.7079937395860376,1,0.2071841639378559,0.12620166251743742,0.16999999999999998
+27,3,0.21276823351464247,0.0,1.3862093277401097,0.0007002792772660938,0.03673945016533896,0.7073172664249452,1,0.25662453121458345,0.2098321586317941,0.18
+27,4,0.22553384711774993,0.0,1.385378553822144,0.0007000820611645038,0.03677030984942813,0.7074893048688342,1,0.2917592012897985,0.2447270888877349,0.22999999999999998
+27,5,0.16844732651575928,0.0,1.385212675993199,0.0006997024124570875,0.03673996524228838,0.707523788927868,1,0.31661469714040685,0.19210727505538963,0.29
+27,6,0.26516401280645885,0.0,1.3854864131965827,0.0007005953762142573,0.03670173292562933,0.7074667705983694,1,0.37739172658237,0.2435896950087646,0.3
+27,7,0.3202631595441079,0.0,1.3848966617526204,0.0006996654312441662,0.03659044518098812,0.7075891939943553,1,0.43369656590377115,0.29489787159262676,0.3
+27,8,0.3124887560848011,0.0,1.3854802782806959,0.0006996734682901338,0.03643930452199494,0.707468421854321,1,0.481962579334384,0.31267284439255555,0.35
+27,9,0.3598217937537584,0.0,1.3843004667091572,0.0006988117860456999,0.036505486306304194,0.7077128886526165,1,0.5398247283920943,0.3696104627217513,0.36
+27,10,0.375949860959068,0.0,1.3834193820065435,0.0006981425694999467,0.03643459956238113,0.7078953891419192,1,0.5898742392075368,0.4316462574547671,0.37
+27,11,0.45438502282935467,0.0,1.385190796704947,0.0007007684829172114,0.03667695434119093,0.7075278752648797,1,0.6447157468037604,0.4957817048267952,0.37
+27,12,0.46936400058022926,0.0,1.3780235038404234,0.0006943341004910747,0.036450731699640235,0.7090114647244101,1,0.6938503529033083,0.5550545902135712,0.38
+27,13,0.41225294662753387,0.0,1.3806580020087706,0.0006970755077854589,0.03659858582164793,0.7084664987515583,1,0.7251813963192784,0.5281315263859548,0.44
+27,14,0.5286173520414823,0.0,1.3812676897399105,0.0006968165385595048,0.036597103705245215,0.7083406637993984,1,0.7790259413711667,0.5865275752052468,0.44
+27,15,0.5410603631015823,0.0,1.3787910834747918,0.0006954748243987106,0.036429492097752945,0.7088526058911708,1,0.8330074150745633,0.631692559418284,0.44
+27,16,0.5837448633583345,0.0,1.3633967638604234,0.0007041459367133723,0.036375301956977635,0.7120158942425079,1,0.896356380982174,0.7000671000485789,0.44
+27,17,0.6215481968161296,0.0,1.364072124544318,0.0007123423767209254,0.03627525328648358,0.711874029885159,1,0.9447467707105269,0.7696227568914841,0.45
+27,18,0.5594123552565782,0.0,1.3588150682093656,0.0007129917191025191,0.03650149307506302,0.7129508335967811,1,0.9674007435837869,0.7360736500075094,0.51
+27,19,0.6306995930047543,0.0,1.3662244175928409,0.0007081105288813311,0.03614034342069954,0.7114341106902436,1,1.0,0.7689986433491812,0.56
+27,20,0.6755915636988313,0.0,1.367722391907901,0.0007029319125454318,0.03639915343593013,0.7111286133910566,1,1.0,0.818638545662771,0.56
+27,21,0.6732539206246867,0.0,1.294404697127129,0.0006508869270164142,0.034703634375343566,0.725974461511744,1,1.0,0.8775130687489557,0.56
+27,22,0.6007205800109744,0.0,1.3062963149741271,0.0006503064887047074,0.034705457076529875,0.7236026821168927,2,1.0,0.835735266703248,0.6200000000000001
+27,23,0.7298262785380603,0.0,1.3184075001285707,0.0006659212411720849,0.034715976989788844,0.721167595308028,2,1.0,0.8660875951268674,0.5900000000000001
+27,24,0.6941259749980586,0.0,1.313115841728874,0.0006665065422153976,0.03492628657996574,0.7222301866900795,2,1.0,0.9137532499935286,0.5800000000000001
+27,25,0.6930542285967205,0.0,1.3200638073540825,0.0006767833222139324,0.03502927335117633,0.7208300433478475,2,1.0,0.9435140953224018,0.5750000000000001
+27,26,0.7666914073346108,0.0,1.3149893871718799,0.0006702568823740984,0.03525558500253951,0.7218526652822529,2,1.0,0.9889713577820362,0.545
+27,27,0.72,0.0,1.309459255228577,0.000671609594258019,0.03464854238695632,0.7229611076126095,2,1.0,1.0,0.535
+27,28,0.77,0.0,1.3155211283497168,0.0006831496946589468,0.03544283323317724,0.7217407104285052,2,1.0,1.0,0.505
+27,29,0.6358795087074258,0.0,1.309709778322516,0.0006845434248537082,0.034763139008663915,0.7229057463545802,2,1.0,0.9529316956914197,0.485
+27,30,0.6005685581841446,0.0,1.3260448093213124,0.0006816208821164929,0.03529778236853963,0.7196229215668264,2,1.0,0.9018951939471487,0.46499999999999997
+27,31,0.7026911129151544,0.0,1.339313055417775,0.0006806791927702533,0.035242760421632345,0.716938441524708,2,1.0,0.9423037097171815,0.45499999999999996
+27,32,0.7048276847391617,0.0,1.343872745841693,0.0006901507237422998,0.03573027531295924,0.7160083418923162,2,1.0,0.9827589491305393,0.44999999999999996
+27,33,0.77,0.0,1.3401588112274,0.0006839721487391093,0.03572909809252381,0.7167654372663929,2,1.0,1.0,0.41999999999999993
+27,34,0.75,0.0,1.3349774769198013,0.0006844642907424157,0.03548368555452597,0.7178159323737093,2,1.0,1.0,0.3899999999999999
+27,35,0.75,0.0,1.3287449344403406,0.0006842248126443652,0.03558657778455881,0.7190767537945263,2,1.0,1.0,0.3599999999999999
+27,36,0.72,0.0,1.3213007027911674,0.0006830066424313448,0.03531980334712964,0.7205785637807796,2,1.0,1.0,0.34999999999999987
+27,37,0.7,0.0,1.3267896222886897,0.0006973899467212919,0.03564803086003044,0.7194662537835377,2,1.0,1.0,0.33999999999999986
+27,38,0.71,0.0,1.329664048823046,0.000710812113778212,0.03544070633507308,0.7188803043631731,2,1.0,1.0,0.33499999999999985
+27,39,0.69,0.0,1.3275805038013684,0.0007019929137955955,0.03561044232202433,0.7193047401310646,2,1.0,1.0,0.32999999999999985
+27,40,0.77,0.0,1.355749406705739,0.0007342748693100102,0.036681154984316726,0.7135691173985504,2,1.0,1.0,0.2999999999999998
+27,41,0.71,0.0,1.3614013645343608,0.0007248839144998647,0.03651612523105674,0.7124163787516204,2,1.0,1.0,0.2949999999999998
+27,42,0.77,0.0,1.3554461442396428,0.0007266061491261667,0.036512912659193375,0.713634231039093,2,1.0,1.0,0.2649999999999998
+27,43,0.72,0.0,1.3592805442787599,0.0007178367868797104,0.036259117499448115,0.7128535800709755,2,1.0,1.0,0.2549999999999998
+27,44,0.77,0.0,1.3675792983334085,0.0007117896804210719,0.03658271717550961,0.7111543684563374,2,1.0,1.0,0.22499999999999978
+27,45,0.75,0.0,1.3693272190013581,0.0007056779439325499,0.03625104286709112,0.7107977016142719,2,1.0,1.0,0.19499999999999978
+27,46,0.6351049726931712,0.0,1.3690943220900225,0.0007003397385160722,0.036379520933049254,0.7108477690298607,2,1.0,0.9503499089772375,0.1749999999999998
+27,47,0.7015098301813848,0.0,1.3694572661235997,0.0007059777802626699,0.03635120645086648,0.7107708445539362,2,1.0,0.9716994339379494,0.1699999999999998
+27,48,0.77,0.0,1.365427293152348,0.0007072598756591027,0.036444160412523616,0.7115980784120008,2,1.0,1.0,0.1399999999999998
+27,49,0.75,0.0,1.3645820282502554,0.0007009572113282608,0.036186641922818605,0.7117741039416013,2,1.0,1.0,0.10999999999999979
+28,0,0.2093234304746152,0.0,1.3841975406548768,0.0006988573612098775,0.03632739304594228,0.7077341601488905,1,0.15277203973593995,0.25284405522345416,0.0
+28,1,0.22438762469083218,0.0,1.3840606509051083,0.0006986254208915863,0.036479012542280094,0.7077625704584943,1,0.20260475538724695,0.31158653435098593,0.01
+28,2,0.23976983131638588,0.0,1.38491291640714,0.0006997312625651845,0.0366228616066394,0.7075858035435784,1,0.24112060377927774,0.3845920666454622,0.02
+28,3,0.2732891665401521,0.0,1.384563312700661,0.0006997952189407931,0.036679173315318184,0.7076581076818679,1,0.275744304510478,0.42259553320494947,0.07
+28,4,0.34442014700304835,0.0,1.385262612252438,0.0007013676547122044,0.036782753161891446,0.7075127661122224,1,0.33367421762798866,0.4921139027775076,0.07
+28,5,0.3700024492156121,0.0,1.384627164552371,0.0007017421608656644,0.03677036965846221,0.7076440923749521,1,0.4034945519717031,0.5625978534183868,0.08
+28,6,0.3853485423444998,0.0,1.385187373890682,0.0006994499286618501,0.03668419967921071,0.7075291292563393,1,0.4520744105405823,0.5904083288509867,0.13
+28,7,0.456155156247029,0.0,1.385549016717434,0.0007000499217185096,0.03659447983168237,0.707454039937133,1,0.5243102599501381,0.6421552175482689,0.13
+28,8,0.3770043174307017,0.0,1.3850290717032694,0.0006992756936682761,0.03643057242497207,0.7075619580193723,1,0.5516439518073254,0.6130964476604593,0.19
+28,9,0.4899984846070353,0.0,1.3846955649295931,0.0006991746883257785,0.03647099291131663,0.7076310036017215,1,0.6061317635437422,0.6595078912224186,0.19
+28,10,0.4807771665331373,0.0,1.3861757132436698,0.0007001151806449302,0.03654773161109927,0.7073242931758772,1,0.6491046577672565,0.6786351210486584,0.24
+28,11,0.5469913233111835,0.0,1.385767981820645,0.0006998549389097054,0.036660699404400185,0.7074088009588382,1,0.7066406947146469,0.7322236005368571,0.24
+28,12,0.5714733233268163,0.0,1.3855800645549783,0.0006997374156247417,0.03672913291210945,0.7074477435036263,1,0.7727123957994765,0.8034132826566652,0.24
+28,13,0.6143347882473897,0.0,1.3843285661529854,0.0007020497673830972,0.03677988666852898,0.7077057364932351,1,0.8391648386349191,0.8687569824172268,0.24
+28,14,0.5484123123887672,0.0,1.3612401361931739,0.0006820972346506227,0.036047308992958806,0.7124669406559532,1,0.8710191582471515,0.8118520233408807,0.3
+28,15,0.6696282402392368,0.0,1.3621961638913895,0.0006835916701131968,0.03583344049791781,0.7122704386082089,1,0.9267428564177732,0.8842274683100543,0.3
+28,16,0.6917209462800598,0.0,1.3561852717229503,0.0006784990481354719,0.036146483415562355,0.7135028269703039,1,0.9760426774507451,0.9670200305743298,0.3
+28,17,0.71,0.0,1.3488119743519182,0.0006726576346778947,0.03511868985379925,0.7150100557725059,1,1.0,1.0,0.3
+28,18,0.7,0.0,1.3399856682429723,0.0006658063362317275,0.035836460741455585,0.7168079613508666,1,1.0,1.0,0.35
+28,19,0.71,0.0,1.2274636133180419,0.000591684349066054,0.033022385404481144,0.7391109874362377,1,1.0,1.0,0.36
+28,20,0.7,0.0,1.241639188763096,0.0005976421780196031,0.03242441476860887,0.7363660051961283,1,1.0,1.0,0.41
+28,21,0.634187620019963,0.0,1.2598851206616364,0.0006296919893245815,0.0338724753950847,0.7327961081123813,1,1.0,0.9472920667332101,0.47
+28,22,0.73,0.0,1.2441966252369516,0.0006180167717272804,0.03323293625813125,0.7358613068627752,1,1.0,1.0,0.47
+28,23,0.7,0.0,1.2613266348446928,0.0006190008155555106,0.033394215802082336,0.732517945903891,1,1.0,1.0,0.52
+28,24,0.71,0.0,1.2765857018116225,0.0006510582857537821,0.03460584963246235,0.7295049158388983,1,1.0,1.0,0.53
+28,25,0.73,0.0,1.2880556398610339,0.0006495159993200729,0.03367568161958326,0.7272362447815934,1,1.0,1.0,0.53
+28,26,0.7,0.0,1.300987792690066,0.0006486558074744166,0.035049863420174646,0.724663793805206,1,1.0,1.0,0.5800000000000001
+28,27,0.71,0.0,1.3124562057709073,0.0006732008919211774,0.034367975197576485,0.7223598141512045,1,1.0,1.0,0.5900000000000001
+28,28,0.73,0.0,1.32051379627635,0.0006701023027905548,0.03555459309188191,0.7207421706621215,1,1.0,1.0,0.5900000000000001
+28,29,0.71,0.0,1.330025115727183,0.0006683220405523343,0.034883262242044404,0.7188245062288539,2,1.0,1.0,0.6000000000000001
+28,30,0.7,0.0,1.3301190097602893,0.0007152255937831048,0.035743868247552574,0.7187865672980333,2,1.0,1.0,0.5900000000000001
+28,31,0.6422149847065989,0.0,1.3305935470993289,0.0007279207428500754,0.035744138160296174,0.7186855046540532,2,1.0,0.9740499490219964,0.5700000000000001
+28,32,0.7073302499958778,0.0,1.3450271087006556,0.0007197512352892293,0.03623082775652835,0.7157615106576574,2,1.0,0.9911008333195926,0.5650000000000001
+28,33,0.635941827229521,0.0,1.344478811125662,0.0007111214274535191,0.03609319479002572,0.7158765575130397,2,1.0,0.9531394240984031,0.545
+28,34,0.6021100466741275,0.0,1.3563356332630947,0.0007062288059030701,0.03616153158224887,0.7134607518928784,2,1.0,0.9070334889137585,0.525
+28,35,0.6938958035754937,0.0,1.3653968091333382,0.000702920662476808,0.03634141362233737,0.7116061155073296,2,1.0,0.946319345251646,0.52
+28,36,0.7665722657765874,0.0,1.364000415259541,0.0006976408447838557,0.03614420688359425,0.7118947685335612,2,1.0,0.9885742192552915,0.49
+28,37,0.6319059218539348,0.0,1.359357369092255,0.0006980931603429521,0.036141125072944695,0.7128459372597833,2,1.0,0.9396864061797828,0.47
+28,38,0.77,0.0,1.367435882854629,0.0006963579374633197,0.03615219933543064,0.7111901664489829,2,1.0,1.0,0.43999999999999995
+28,39,0.635153241770839,0.0,1.3619823149575483,0.0006955991140450458,0.03623041673300319,0.7123093418691833,2,1.0,0.9505108059027969,0.41999999999999993
+28,40,0.77,0.0,1.3686117750234623,0.0006941367806588838,0.036170871615138656,0.7109494926408166,2,1.0,1.0,0.3899999999999999
+28,41,0.6366777726338106,0.0,1.3624223793236199,0.0006921456881842416,0.03621157049640071,0.7122205690142583,2,1.0,0.9555925754460354,0.3699999999999999
+28,42,0.6027634418273,0.0,1.3676564685129096,0.0006910968407290842,0.03597397813307135,0.7111470177694764,2,1.0,0.9092114727576667,0.34999999999999987
+28,43,0.7580346219825608,0.0,1.3707003868366152,0.000690560144981248,0.03649096327599681,0.7105215645206865,2,1.0,0.960115406608536,0.31999999999999984
+28,44,0.7053491739371986,0.0,1.361332197393399,0.0007214848002708541,0.03661123984084673,0.7124319422308227,2,1.0,0.9844972464573288,0.31499999999999984
+28,45,0.6311517379066431,0.0,1.3549418123773642,0.0007223651473818896,0.036033833453036464,0.7137390184114527,2,0.9938893617092369,0.9443015376947008,0.2949999999999998
+28,46,0.591211238922464,0.0,1.3539925924615663,0.0007328597227531469,0.03662247326973599,0.7139286328339134,2,1.0,0.8707041297415468,0.2749999999999998
+28,47,0.7005650401015823,0.0,1.3518951963981698,0.0007413980482971322,0.03657460564259798,0.7143533167578057,2,1.0,0.9352168003386077,0.2649999999999998
+28,48,0.6977703312944104,0.0,1.3602575556319718,0.0007318787037039603,0.036728701811176996,0.7126477997597126,2,1.0,0.9925677709813681,0.2549999999999998
+28,49,0.71,0.0,1.365992613994583,0.0007238282656679738,0.03673466257942032,0.711475243645274,2,1.0,1.0,0.24999999999999978
+29,0,0.16816305319392777,0.0,1.3844161603738718,0.0006989133998859964,0.03632530362214535,0.7076889141825766,1,0.14201225634632775,0.2281958782423769,0.05
+29,1,0.1168202922083032,0.0,1.3840566973609203,0.0006986057883002556,0.03649386929398521,0.7077633963093948,1,0.17916113618408494,0.18037964847957827,0.11
+29,2,0.21860401671603769,0.0,1.383066715176478,0.0006985797735517849,0.03656188589916893,0.7079681272850311,1,0.24372260938621637,0.24433701143620656,0.12
+29,3,0.1531597364121696,0.0,1.3846061484846508,0.0006999108561458135,0.03668205618606379,0.7076491979705292,1,0.27357750433994804,0.19135869964395932,0.18
+29,4,0.2708371258810393,0.0,1.3837258444328038,0.0007007811486949142,0.03674326043847337,0.7078309236067996,0,0.32945368477376524,0.25176112070073825,0.18
+29,5,0.23432310681805424,0.0,1.3860584449803206,0.0007000623225283317,0.03677050732584659,0.707348590951154,0,0.35589772054852215,0.2658630154202384,0.19
+29,6,0.2696836103740579,0.0,1.3858863948687294,0.0007000620279731045,0.03670879694243745,0.7073842053045557,0,0.445220956106142,0.27952091912302746,0.25
+29,7,0.2819419106395445,0.0,1.3859418861573325,0.000700164906714501,0.03661121993106897,0.7073726763400469,0,0.4636690777198832,0.29885911145861793,0.26
+29,8,0.29844752160442856,0.0,1.3859681382357938,0.000699990920679142,0.03647722918106906,0.7073673142499907,0,0.5667926621269296,0.266900299533344,0.34
+29,9,0.3055853555465541,0.0,1.3862943611198846,0.0007001722195526525,0.036382021848143,0.7072997068701548,0,0.6720945246931689,0.23450757301314995,0.42000000000000004
+29,10,0.33693129316237735,0.0,1.385814226332514,0.0006999362465180676,0.03654193250572951,0.707399195445466,0,0.7829617142247572,0.20964897727904108,0.5
+29,11,0.39776383648802305,0.0,1.385294889662844,0.0006997972965372627,0.03663854714689579,0.7075067365734053,0,0.8683491441721408,0.2128054534259128,0.56
+29,12,0.40514022208624945,0.0,1.3860821194226767,0.0007001685863865994,0.036755891178853736,0.7073436461671158,0,0.9016477041538086,0.23187841877472168,0.56
+29,13,0.4246238098715531,0.0,1.3860291644395497,0.0006999906790591426,0.036782111587402674,0.7073546818394031,2,0.9848710769433919,0.19972977647121992,0.64
+29,14,0.3735440205697753,0.0,1.3862823751042013,0.0007001800707893773,0.03677177673689214,0.7073021850400215,2,0.9895340719313221,0.15735698464604214,0.62
+29,15,0.5254139275770052,0.0,1.3862202128648857,0.0007001532272423918,0.03670624346725405,0.7073150651760873,2,1.0,0.18471309192335067,0.59
+29,16,0.4765138002194645,0.0,1.3860035486229036,0.0007000340668424617,0.03658935741160896,0.707359966425965,2,1.0,0.22171266739821505,0.585
+29,17,0.5537295433621926,0.0,1.3806582806978949,0.0006966873512945584,0.036462121601445366,0.7084666015316347,2,1.0,0.27909847787397535,0.5549999999999999
+29,18,0.5221171680349515,0.0,1.3824461293922683,0.0006974996559108314,0.03637168212486582,0.7080968628856259,2,1.0,0.3403905601165047,0.5449999999999999
+29,19,0.5164095756204614,0.0,1.3813690672913543,0.0006969597784354877,0.036397632062809326,0.7083196601586228,2,1.0,0.38803191873487153,0.5349999999999999
+29,20,0.5372908521059527,0.0,1.37982417839687,0.0006963562445884879,0.036508835278100435,0.7086389851852466,2,1.0,0.45763617368650916,0.5249999999999999
+29,21,0.6220955513018588,0.0,1.3745411465061643,0.0007006808268240246,0.03642731641995885,0.7097267862104012,2,1.0,0.506985171006196,0.4949999999999999
+29,22,0.48390036168129813,0.0,1.3744327519217068,0.0007049089205303942,0.036604328120084004,0.7097473745552592,2,1.0,0.4463345389376604,0.47499999999999987
+29,23,0.5673725827265113,0.0,1.3789310360093898,0.0007031739787714446,0.03662778290341821,0.708820543452403,2,1.0,0.49124194242170416,0.46499999999999986
+29,24,0.5655025532967928,0.0,1.3766232295088532,0.0007040706942404522,0.03648719559769894,0.7092962613798256,2,1.0,0.5183418443226425,0.45999999999999985
+29,25,0.638335452205399,0.0,1.3762565782801066,0.0007006588694796608,0.036344556943339046,0.7093732640403965,2,1.0,0.5611181740179966,0.4299999999999998
+29,26,0.6308608723400292,0.0,1.3759903753727127,0.0007044094799585985,0.03648784085138083,0.7094265958248039,2,1.0,0.6028695744667643,0.3999999999999998
+29,27,0.5185984207342054,0.0,1.2834358480082002,0.0007260156062502481,0.035694197985395,0.7281213943339824,2,1.0,0.5619947357806848,0.3799999999999998
+29,28,0.6552612022349619,0.0,1.3676247957866505,0.0007139979528725559,0.036356815301143236,0.7111441153226126,2,1.0,0.6175373407832064,0.34999999999999976
+29,29,0.6557870411240898,0.0,1.2856767619273182,0.0007245441570946188,0.03562680686647579,0.7276781380718165,2,1.0,0.6859568037469662,0.31999999999999973
+29,30,0.6370774590271718,0.0,1.366591213537049,0.0006945218921151966,0.03624748772145426,0.7113643834595269,2,1.0,0.7235915300905729,0.3099999999999997
+29,31,0.6365984829279429,0.0,1.373357515678911,0.0006946374157030961,0.03630975298860414,0.7099730598051666,2,1.0,0.7553282764264763,0.3049999999999997
+29,32,0.6612650387456082,0.0,1.3703419100660326,0.0006944321208978435,0.03632807978837685,0.7105936981552858,2,1.0,0.8042167958186939,0.2949999999999997
+29,33,0.5853062216511983,0.0,1.3767514808015624,0.0007057460519141617,0.03657084227981501,0.7092691249465064,2,1.0,0.7843540721706611,0.2749999999999997
+29,34,0.6660148682651723,0.0,1.3810360450908243,0.0006968584521980272,0.036348205116450996,0.7083885006066465,2,1.0,0.8200495608839078,0.2649999999999997
+29,35,0.733891296838256,0.0,1.3836922034688581,0.0007028719282639454,0.03640170998293475,0.7078370159602186,2,1.0,0.8796376561275203,0.23499999999999968
+29,36,0.6832731597770483,0.0,1.3853128329412459,0.0007014743766701982,0.036475001318945655,0.7075023292416464,2,1.0,0.9109105325901609,0.22999999999999968
+29,37,0.6083496834376353,0.0,1.3843134116655125,0.0007025549888558895,0.03666990791948068,0.707708662298028,2,1.0,0.8611656114587843,0.2099999999999997
+29,38,0.6743739129898865,0.0,1.3834095878780723,0.0007041167662205429,0.03671536164239261,0.7078949436838707,2,1.0,0.8812463766329552,0.20499999999999968
+29,39,0.6641529406894238,0.0,1.3818758310837354,0.0007058331836895442,0.03678549361952615,0.7082112828974679,2,1.0,0.9138431356314126,0.19999999999999968
+29,40,0.7574653586598614,0.0,1.3795498686036558,0.0007072725620394988,0.036759351277987865,0.7086911113409239,2,1.0,0.9582178621995381,0.16999999999999968
+29,41,0.7024593850769357,0.0,1.3814220450375294,0.0007038117220371377,0.03665167584856147,0.7083058833471405,2,1.0,0.9748646169231192,0.16499999999999967
+29,42,0.6292857532941453,0.0,1.3784771772906899,0.0007046113487007555,0.03656335100353622,0.708913615064427,1,1.0,0.9309525109804843,0.14499999999999968
+29,43,0.726217133112618,0.0,1.3416463707454152,0.0006734188181415949,0.03586846693125264,0.7164676340349944,1,1.0,0.9873904437087269,0.14499999999999968
+29,44,0.71,0.0,1.3341439496952738,0.0006662478529246412,0.034880010795359906,0.7179921148066776,1,1.0,1.0,0.1549999999999997
+29,45,0.7,0.0,1.3469784734922539,0.0006728281149235997,0.03590135168049417,0.7153834527260655,1,1.0,1.0,0.20499999999999968
+29,46,0.6799999999999999,0.0,1.3447380780460712,0.0006730504325072822,0.03539528769850149,0.7158393089220064,1,1.0,1.0,0.25499999999999967
+29,47,0.73,0.0,1.3411608453953765,0.000672712387632187,0.035422034705568185,0.7165665410944753,1,1.0,1.0,0.25499999999999967
+29,48,0.71,0.0,1.3345832944285974,0.0006673094335261673,0.03518820064587082,0.7179027180337686,1,1.0,1.0,0.25499999999999967
+29,49,0.71,0.0,1.326931597937499,0.000661440746934234,0.03474482740101946,0.7194521095550038,1,1.0,1.0,0.2649999999999997
+30,0,0.09686316987825522,0.0,1.3841528700867376,0.0006986824969177376,0.03631085143043135,0.7077434723534471,1,0.1385577820972428,0.16122648714740082,0.06
+30,1,0.17407472255921758,0.0,1.3840134996061628,0.0007008007144880502,0.03643977298076671,0.7077714230527602,1,0.187155036448427,0.19523486600756046,0.11
+30,2,0.11471410167740695,0.0,1.3841833487568846,0.000700253717189834,0.03661949890344732,0.707736518025254,1,0.20591665687442723,0.14214423923785807,0.16999999999999998
+30,3,0.09384471062015523,0.0,1.3838305284486916,0.0007016025542820761,0.03668895202628665,0.7078089340624351,1,0.23213482720092812,0.10865840366610133,0.22999999999999998
+30,4,0.09605451816490128,0.0,1.384173364493014,0.0007011445767845107,0.0367561424259098,0.7077382146821392,1,0.26581110501772814,0.07673543802898815,0.29
+30,5,0.18098242557327332,0.0,1.3843780564872163,0.0007007268983335645,0.036756366222927384,0.7076960462041653,1,0.2926696165940584,0.09516019921784308,0.33999999999999997
+30,6,0.2396554796829357,0.0,1.3862943611198844,0.0007001722195526527,0.03672626550780782,0.7072997068701548,1,0.3266220248182588,0.15112590332181708,0.33999999999999997
+30,7,0.16294107132148922,0.0,1.3862404948102798,0.0007001719393118678,0.03662884663323798,0.7073108586330634,1,0.36658796454727677,0.11545094576647452,0.39999999999999997
+30,8,0.2504845396786255,0.0,1.386236419941879,0.000700131783773131,0.03647514646691623,0.7073117188467523,1,0.3972175652323987,0.1715279728242865,0.41
+30,9,0.26606195770601904,0.0,1.3862389723861355,0.0007002042885567517,0.03638869882944109,0.7073111604145558,1,0.44008665300907174,0.24010543050947986,0.42
+30,10,0.35246626643214174,0.0,1.382472306131601,0.0006975470247880369,0.036395176598995,0.7080914326547066,1,0.49855346990302885,0.32657517322027224,0.42
+30,11,0.3499248565854903,0.0,1.3837115281927193,0.0006989895936096952,0.03661976377959801,0.7078346252915565,1,0.5517093331108165,0.35608863332234836,0.47
+30,12,0.3928313280362113,0.0,1.3836256686979627,0.000698490336741165,0.036650426903459654,0.7078525876176288,1,0.5871878329589146,0.4243852883353041,0.48
+30,13,0.45549719517742293,0.0,1.382478063431912,0.0007009898391443693,0.03671829897189113,0.7080888193802487,1,0.6617428599847036,0.4796239806092556,0.48
+30,14,0.4480577436015449,0.0,1.3733890443493781,0.0006928819132085202,0.03635687763925076,0.7099672906169088,1,0.6947885880212099,0.516272459313738,0.53
+30,15,0.4485285720384936,0.0,1.3744191267285082,0.0006923177024431474,0.03624904477296932,0.7097553690961892,1,0.7351640205813215,0.5374038827834372,0.5800000000000001
+30,16,0.4762417524748829,0.0,1.3744576039662106,0.0006918893181361547,0.03645200506298112,0.7097476191173859,2,0.7853101862941301,0.5712772909064581,0.6300000000000001
+30,17,0.5125548472397965,0.0,1.3834346185140864,0.0006984280005578109,0.036539534957001386,0.7078921204910698,2,0.8415790955522429,0.5933405459883719,0.6250000000000001
+30,18,0.5718994333016788,0.0,1.3488370880689977,0.0007168921761944858,0.036445115674633155,0.714986910363335,2,0.8803201271449995,0.6459579626697634,0.6150000000000001
+30,19,0.6606728330215992,0.0,1.2836877084805802,0.0007131198219151537,0.03460642048246521,0.7280766392836266,2,0.964030501379744,0.6775405251289627,0.5850000000000001
+30,20,0.6237702852935966,0.0,1.2880272783900426,0.0007431008894895291,0.03585718225976871,0.7272047418427178,2,1.0,0.7125676176453221,0.5800000000000001
+30,21,0.6483708256307811,0.0,1.2969846276377863,0.0007312644066371169,0.03511697668927654,0.7254289042245623,2,1.0,0.7612360854359371,0.5700000000000001
+30,22,0.5645103203621847,0.0,1.2854680553317384,0.0007268752881687266,0.035369208448726056,0.727718570162327,2,1.0,0.7150344012072826,0.55
+30,23,0.5341386063974397,0.0,1.3028917511683922,0.0007157387145884991,0.035577303675731045,0.7242569485005756,2,1.0,0.680462021324799,0.53
+30,24,0.6913993526040253,0.0,1.3167827117455904,0.0007068021965700582,0.03528885544745375,0.7214777687102095,2,1.0,0.7379978420134179,0.5
+30,25,0.6849672739605053,0.0,1.320174805268353,0.0007303056386331023,0.036257561430368374,0.7207861636412233,2,1.0,0.7832242465350178,0.47
+30,26,0.5705559333403694,0.0,1.3208217920954461,0.0007513284823099783,0.03575440892498065,0.7206474723633294,2,1.0,0.7351864444678978,0.44999999999999996
+30,27,0.5347391590048256,0.0,1.332504252371855,0.0007396153826190828,0.03654646600206472,0.7182943105597295,2,1.0,0.682463863349419,0.42999999999999994
+30,28,0.6208183430870947,0.0,1.3410503694479738,0.0007299021950349468,0.035996674688701366,0.7165657482631196,2,1.0,0.7027278102903158,0.42499999999999993
+30,29,0.5470626160001295,0.0,1.3493381098268915,0.0007211435035621844,0.03641793845887402,0.7148830677855769,2,1.0,0.6568753866670984,0.4049999999999999
+30,30,0.6124574803966227,0.0,1.3556225365993408,0.0007142443663148823,0.03634020218586718,0.7136032349370781,2,1.0,0.6748582679887424,0.3999999999999999
+30,31,0.536265784661633,0.0,1.3614266807477253,0.0007082221743691086,0.036356503226990876,0.712418019271923,2,1.0,0.6208859488721101,0.3799999999999999
+30,32,0.6242666939262416,0.0,1.3657422114561864,0.0007037742263537734,0.0363865938263686,0.7115348754840637,2,1.0,0.6808889797541385,0.3699999999999999
+30,33,0.6238618087997118,0.0,1.3596470295936693,0.0007026051053667119,0.0360374711926102,0.7127847936916176,2,1.0,0.7462060293323726,0.3599999999999999
+30,34,0.55605248098623,0.0,1.3526607720822412,0.0007006887477124402,0.03640698168821134,0.7142136922175156,2,1.0,0.6868416032874332,0.33999999999999986
+30,35,0.6919875907589654,0.0,1.356528176906889,0.0006963003564325128,0.03569735932036038,0.713425447461961,2,1.0,0.7399586358632183,0.30999999999999983
+30,36,0.6586314985167039,0.0,1.3728620190133611,0.0006991237563412664,0.036453191727666104,0.7100732303630441,2,1.0,0.7954383283890128,0.2999999999999998
+30,37,0.7262092592217748,0.0,1.3685243760190762,0.0006987850618097892,0.03608968620994527,0.7109655424525586,2,1.0,0.854030864072583,0.2699999999999998
+30,38,0.5869261987986597,0.0,1.3744339702788535,0.0006934420603716567,0.03629136901963459,0.7097518480308328,2,1.0,0.7897539959955325,0.2499999999999998
+30,39,0.7240103075063973,0.0,1.365673911300744,0.000722012546131301,0.03664033224572201,0.7115414073120859,2,1.0,0.8467010250213244,0.2199999999999998
+30,40,0.5858042478847333,0.0,1.368820601948948,0.0006877535423320271,0.0361206082622583,0.7109092004911902,2,1.0,0.7860141596157777,0.19999999999999982
+30,41,0.6704656231386208,0.0,1.343525028876702,0.000734475175043405,0.03645235121646602,0.7160610179466815,2,1.0,0.8348854104620697,0.1899999999999998
+30,42,0.7351191298194377,0.0,1.3639021705631422,0.0006844773078455842,0.036262167080004036,0.711920317604839,2,1.0,0.8837304327314593,0.1599999999999998
+30,43,0.5988453188177639,0.0,1.362805601206011,0.000685365676445678,0.03582895193490526,0.7121447962778479,2,1.0,0.8294843960592131,0.13999999999999982
+30,44,0.7346747064369471,0.0,1.369691827618142,0.0006886437188020884,0.03640902361322418,0.7107297496126549,2,1.0,0.8822490214564905,0.10999999999999982
+30,45,0.5977024679581564,0.0,1.367541854976842,0.000688066484505527,0.0360050356490413,0.7111718056723414,2,1.0,0.8256748931938548,0.08999999999999982
+30,46,0.6636323526385379,0.0,1.3727392000795555,0.0006909429048661687,0.03632562010463442,0.7101018825368793,2,1.0,0.8454411754617934,0.08499999999999981
+30,47,0.7380043569385262,0.0,1.3691850365841283,0.0006887200819928993,0.036048085629808456,0.710833899766678,2,1.0,0.893347856461754,0.05499999999999981
+30,48,0.6056831306301711,0.0,1.3665977731528112,0.0006869225437110435,0.036153811000429595,0.7113661572764453,2,1.0,0.8522771021005702,0.03499999999999981
+30,49,0.6912231098731156,0.0,1.3710417322013655,0.0006904863669799603,0.036142910121309685,0.7104513816859664,2,1.0,0.9040770329103858,0.024999999999999807
+31,0,0.16427588280401498,0.0,1.3841943454507422,0.000698709812923666,0.03631186354125949,0.7077348821049175,1,0.14945532478376394,0.2065550637656587,0.05
+31,1,0.16419533840275172,0.0,1.3837964109428813,0.0006984169849306512,0.03650332501706594,0.7078173076690895,1,0.19357555307686336,0.2214796494194985,0.1
+31,2,0.22788204141559598,0.0,1.3833458143445805,0.0006981221274022674,0.0365319549852368,0.7079106096478931,1,0.24311739641572977,0.2759698422336352,0.11
+31,3,0.24336965800507085,0.0,1.3843867228940963,0.0006999255063795879,0.03667577613889811,0.7076945850043571,1,0.29298448996777554,0.3360836217211648,0.12
+31,4,0.3231932923002609,0.0,1.3838939666256398,0.0007000098435364833,0.03674221120611367,0.7077964727058611,1,0.3554930223094818,0.3959024483064742,0.12
+31,5,0.24230580921973327,0.0,1.383923019434293,0.0007009950362903737,0.03673321191338132,0.7077900564280643,1,0.38241055584156053,0.3615403822506237,0.18
+31,6,0.3595333638635459,0.0,1.3848951036272432,0.0007006791993790942,0.036687622065393305,0.7075890968700747,1,0.43735310645499326,0.4215325886809942,0.18
+31,7,0.285874814072936,0.0,1.385747609486844,0.0007000353305633958,0.03660109261901679,0.7074129429641715,1,0.4741551299930818,0.3997350619178581,0.24
+31,8,0.26239271295487465,0.0,1.3851708097916497,0.0006993839267452431,0.036432072279305894,0.7075325841966581,1,0.5018354414968151,0.3558343614366313,0.3
+31,9,0.3606342589593041,0.0,1.385547950100987,0.0006997153715511837,0.03641292587777041,0.7074543991658457,1,0.5539162938955627,0.3892118536528571,0.35
+31,10,0.4323487351860976,0.0,1.382442625965537,0.000697953766988149,0.03638902664607653,0.7080973993029517,1,0.6143100515231915,0.45780072384326864,0.35
+31,11,0.4259952053743662,0.0,1.3744217833123438,0.000691861121019207,0.03636608606368208,0.7097550099466531,1,0.661403915352717,0.4816794500030507,0.39999999999999997
+31,12,0.3725985721290879,0.0,1.3736706012986544,0.000691416659562317,0.03633075271863495,0.7099099142487626,0,0.6799277877605051,0.44874615470970386,0.45999999999999996
+31,13,0.40075092685043445,0.0,1.3858267987158583,0.0007003157624177839,0.03677684757159795,0.7073964360272244,0,0.78826596754747,0.41619279402939996,0.5399999999999999
+31,14,0.42410052225518025,0.0,1.3856315075502232,0.0007007940878993428,0.036760886068666156,0.7074366590693858,2,0.8830149608039225,0.3834842865793579,0.6199999999999999
+31,15,0.5837988571415678,0.0,1.371425140595845,0.0006935240245586838,0.03629057000015917,0.7103712543411335,2,0.9616895438031294,0.4240250560349084,0.5899999999999999
+31,16,0.5587001122651802,0.0,1.3463100513031918,0.0007442081131465762,0.036573367349666916,0.7154904706695141,2,0.9932623680461098,0.4701942781634726,0.5799999999999998
+31,17,0.630821043168867,0.0,1.3434461986933077,0.0007518760132088086,0.03633797141285509,0.71606996963352,2,1.0,0.5360701438962234,0.5499999999999998
+31,18,0.6257319271468729,0.0,1.3381807152539742,0.0007557747906229357,0.03658951968407413,0.7171377141155092,2,1.0,0.5857730904895763,0.5199999999999998
+31,19,0.6095049371305068,0.0,1.3320348900299346,0.0007587555601113815,0.03616755927214217,0.7183815307535825,2,1.0,0.631683123768356,0.5099999999999998
+31,20,0.6737563535493083,0.0,1.3544360058502642,0.0006906344866857065,0.03615217120456495,0.7138553145782518,2,1.0,0.6791878451643611,0.47999999999999976
+31,21,0.6268977252451422,0.0,1.358322096195334,0.000702903418541992,0.03618834093663499,0.7130558389808359,2,1.0,0.7229924174838076,0.47499999999999976
+31,22,0.6172068229383658,0.0,1.3642111352487913,0.0006989750078982087,0.036270264897939594,0.7118510004816706,2,1.0,0.7573560764612196,0.46999999999999975
+31,23,0.6632200963348875,0.0,1.3677371071724436,0.0006958695864707511,0.03627965791216832,0.7111284920646627,2,1.0,0.8107336544496252,0.45999999999999974
+31,24,0.6544374265236673,0.0,1.379877274332938,0.000695714599267189,0.036445974087379596,0.7086282873244195,2,1.0,0.8481247550788912,0.44999999999999973
+31,25,0.6641300164231316,0.0,1.3822961135397933,0.0006984448543459437,0.0365308634508235,0.7081274788359411,2,1.0,0.8804333880771054,0.4399999999999997
+31,26,0.677305706371379,0.0,1.3833113355171678,0.0007011270174012862,0.03628565749292033,0.7079164962484696,2,1.0,0.9243523545712636,0.4299999999999997
+31,27,0.6905084051855288,0.0,1.383154143311994,0.0007036467900090736,0.03650833052626327,0.7079479559698396,2,1.0,0.9683613506184297,0.4199999999999997
+31,28,0.7,0.0,1.3820254400739524,0.0007058653017278719,0.036564214050044445,0.7081803522515157,2,1.0,1.0,0.4099999999999997
+31,29,0.7,0.0,1.3801023583276841,0.0007077314818724093,0.036746500656281586,0.7085768482516505,2,1.0,1.0,0.3999999999999997
+31,30,0.634772459042887,0.0,1.3772895298599255,0.0007093219873217898,0.036703995763553356,0.7091566881819008,2,1.0,0.9492415301429569,0.37999999999999967
+31,31,0.77,0.0,1.379822601000992,0.0007059351290115844,0.036717748754242954,0.7086353553563015,2,1.0,1.0,0.34999999999999964
+31,32,0.71,0.0,1.378634914923759,0.0007100843853874018,0.03676658558721917,0.7088788050944407,1,1.0,1.0,0.34499999999999964
+31,33,0.71,0.0,1.3361134782089341,0.0006669095077422457,0.03551018728938736,0.71759288644603,1,1.0,1.0,0.35499999999999965
+31,34,0.73,0.0,1.3331563069770183,0.0006661872473965455,0.03519925151823214,0.718192073619506,1,1.0,1.0,0.35499999999999965
+31,35,0.71,0.0,1.3414976244038528,0.000671560064063083,0.03577653390003587,0.7164986047880806,1,1.0,1.0,0.36499999999999966
+31,36,0.73,0.0,1.3377158818537287,0.0006715557667406047,0.035240533014390334,0.7172661563309541,1,1.0,1.0,0.36499999999999966
+31,37,0.6383640551294394,0.0,1.3437313839773526,0.0006788898669876386,0.035870363824268746,0.7160416648642571,1,1.0,0.9612135170981316,0.42499999999999966
+31,38,0.6081468130536121,0.0,1.338736776730755,0.0006735146945365855,0.03492293760748257,0.717058282738832,1,1.0,0.9271560435120406,0.48499999999999965
+31,39,0.595067506629622,0.0,1.3331432640778185,0.000667953699464717,0.0353308041904109,0.7181939983645157,2,1.0,0.8835583554320738,0.5449999999999997
+31,40,0.7496034644838836,0.0,1.3696334487884263,0.0007180713304928363,0.03664929707679756,0.7107296516694552,2,1.0,0.9320115482796122,0.5149999999999997
+31,41,0.7472370928228071,0.0,1.3667057429712703,0.0007226172832233964,0.036700392916265326,0.7113293290496338,2,1.0,0.9907903094093574,0.48499999999999965
+31,42,0.72,0.0,1.3628769032975712,0.0007263388755665869,0.03643713633808464,0.7121133801459116,2,1.0,1.0,0.47499999999999964
+31,43,0.77,0.0,1.3598741537288528,0.0007323842863715875,0.0365583406339763,0.7127260997163374,2,1.0,1.0,0.4449999999999996
+31,44,0.75,0.0,1.3553984359948879,0.0007369028706600039,0.03633088913661974,0.7136397721991291,2,1.0,1.0,0.4149999999999996
+31,45,0.72,0.0,1.3498988097690905,0.0007404894478347475,0.036599953659095505,0.7147608808516147,2,1.0,1.0,0.4049999999999996
+31,46,0.71,0.0,1.3466642272184521,0.0007494438067584954,0.03643607141281423,0.7154162358257529,2,1.0,1.0,0.3999999999999996
+31,47,0.77,0.0,1.3563187306115236,0.0007390856516288697,0.03677356060980368,0.7134507731280154,2,1.0,1.0,0.36999999999999955
+31,48,0.71,0.0,1.3506630968643942,0.0007429407860239703,0.036664885009345206,0.7146040342587804,2,1.0,1.0,0.36499999999999955
+31,49,0.63584407085032,0.0,1.3585392751260683,0.0007332220184727185,0.036657145149143144,0.712998992433206,2,1.0,0.9528135695010668,0.34499999999999953
+32,0,0.1683169369295937,0.0,1.3834913133266982,0.0006982387417645737,0.03625862555442844,0.7078804752224647,1,0.14391147568504453,0.22649306813276038,0.05
+32,1,0.2328473326439915,0.0,1.3830278209122977,0.0006978709042787711,0.0365171338150725,0.707976461691811,1,0.1933333532663069,0.2839355300026137,0.05
+32,2,0.22616693871001214,0.0,1.3830254990962274,0.0006979627159747704,0.0365284465348944,0.707976903753952,1,0.24905045062210937,0.2966642699742462,0.1
+32,3,0.2674061406419995,0.0,1.3847644520127267,0.0007013058632501612,0.0367113813894218,0.7076158695320325,1,0.30129935613845704,0.339837886645132,0.11
+32,4,0.2837367918120927,0.0,1.3842945751161044,0.0007016368844471813,0.03677299125081674,0.7077129385867212,1,0.3451951985975109,0.3763949076765463,0.16
+32,5,0.32888503353496823,0.0,1.3842950133434997,0.0007007430357166832,0.03673810684528934,0.7077132177317257,1,0.3904337827201678,0.4407773652763651,0.17
+32,6,0.34819728475442696,0.0,1.383896562882685,0.0007034087253779439,0.03670197146352345,0.7077945298248216,1,0.4453767982940048,0.4743846845050844,0.22000000000000003
+32,7,0.3050556259792949,0.0,1.3857233801517097,0.0007000345512812443,0.036600236143528746,0.7074179582462196,1,0.48887292153648315,0.446500344805086,0.28
+32,8,0.42317256722613256,0.0,1.3852713564916201,0.0007000220103659783,0.036465034310865084,0.7075115135224453,1,0.5396036329194595,0.5143709856810726,0.28
+32,9,0.4420062449447223,0.0,1.3856965977249538,0.0006998569290255491,0.03635620715996945,0.7074235751098437,1,0.602147480518465,0.5708487558775319,0.28
+32,10,0.47998407914974606,0.0,1.3841325287907902,0.0006988780134532687,0.0364723340336049,0.7077475989015799,1,0.6700303917341963,0.6182448068092579,0.28
+32,11,0.5215708611777221,0.0,1.3848835338283159,0.0006996219162340007,0.0366370580292252,0.7075919282497951,1,0.735254759503246,0.68077231783862,0.28
+32,12,0.5646232862963007,0.0,1.3836251781819962,0.0006994057336921994,0.03667377910945583,0.707852310451691,1,0.806147383667966,0.7415723400417087,0.29000000000000004
+32,13,0.5839336115403455,0.0,1.3862943611198844,0.0007001722195526527,0.036787569296499095,0.7072997068701548,1,0.852391181689637,0.7853223264965755,0.34
+32,14,0.6314546501350351,0.0,1.3644558144947536,0.0007242065838193494,0.03668408912033912,0.711790457337749,1,0.9076228751404785,0.8459554794528922,0.35000000000000003
+32,15,0.5661065646960259,0.0,1.2845345908621613,0.0006259824551683622,0.03411452713981776,0.7279434552912836,1,0.9255982858898408,0.8071572154486056,0.41000000000000003
+32,16,0.5505959336564792,0.0,1.273994999042579,0.0006172519615699636,0.03304455130327163,0.7300291544126166,1,0.9737893858032609,0.7658988287511262,0.47000000000000003
+32,17,0.655387387127359,0.0,1.3359616201628703,0.0007348361854118237,0.035916136806903295,0.717596129838698,1,1.0,0.817957957091197,0.48000000000000004
+32,18,0.6956981299871781,0.0,1.3070250864190924,0.0006448439010724072,0.033921434298670776,0.7234590884993376,2,1.0,0.8856604332905935,0.48000000000000004
+32,19,0.701114105551189,0.0,1.3163855648215592,0.0007747383903484461,0.0362762522388185,0.7215302681624658,2,1.0,0.9370470185039634,0.47000000000000003
+32,20,0.6161563265933758,0.0,1.3122637531881733,0.0007855064232951566,0.03649359322569934,0.7223533645253322,2,1.0,0.8871877553112526,0.45
+32,21,0.581619027914837,0.0,1.327534748665427,0.0007710801717473775,0.036547368433635714,0.7192860797781296,2,1.0,0.8387300930494568,0.43
+32,22,0.6694897956701586,0.0,1.339817378236051,0.0007587957015462647,0.036677262532729626,0.7168043706268693,2,1.0,0.8649659855671958,0.425
+32,23,0.6922885251594764,0.0,1.3451648341023996,0.0007474886086562859,0.036643191220454036,0.7157222030343237,2,1.0,0.9076284171982547,0.415
+32,24,0.693494709258067,0.0,1.3412549247920564,0.0007542459144203578,0.0363946104739377,0.7165143120164179,2,1.0,0.9449823641935565,0.41
+32,25,0.7179002531822198,0.0,1.3450512948195643,0.0007434815750902961,0.03646439943601091,0.7157469341082259,2,1.0,0.993000843940733,0.39999999999999997
+32,26,0.7,0.0,1.340830715423358,0.0007487301353374876,0.03642311040100585,0.7166027104975726,2,1.0,1.0,0.38999999999999996
+32,27,0.636375327965488,0.0,1.3357396067884042,0.0007530326275906529,0.03644245849514198,0.7176337446688219,2,1.0,0.9545844265516266,0.36999999999999994
+32,28,0.72,0.0,1.3480608287019014,0.0007422645127844393,0.03626285741703645,0.7151347331402411,2,1.0,1.0,0.35999999999999993
+32,29,0.71,0.0,1.3420962240521108,0.0007453486067302824,0.036602223472572755,0.7163470106538739,2,1.0,1.0,0.3549999999999999
+32,30,0.69,0.0,1.3462688802492004,0.0007345944066798354,0.0363053354051284,0.7155027654543773,2,1.0,1.0,0.3499999999999999
+32,31,0.6401569237109548,0.0,1.3482059599997473,0.0007251259397326006,0.03630314378584947,0.7151121497212858,2,1.0,0.9671897457031827,0.3299999999999999
+32,32,0.77,0.0,1.3524307318112108,0.000688330819907333,0.035951249982188994,0.7142656882880792,2,1.0,1.0,0.29999999999999993
+32,33,0.71,0.0,1.3481350476044123,0.0006824073175785079,0.03542939851216698,0.715144001255955,2,1.0,1.0,0.29499999999999993
+32,34,0.6340457025756852,0.0,1.3438744747602014,0.0006827139701964654,0.035859378148253504,0.716011014710578,2,1.0,0.9468190085856175,0.2749999999999999
+32,35,0.6020885993210746,0.0,1.3473038130189554,0.0006905165359407711,0.03573310487875971,0.7153100015718694,2,1.0,0.9069619977369155,0.2549999999999999
+32,36,0.5880268873853931,0.0,1.3489555612454887,0.0006975522238562133,0.03617013432872035,0.7149706497613307,2,1.0,0.8600896246179772,0.2349999999999999
+32,37,0.6916042871472174,0.0,1.3492845051730984,0.0007038083411280132,0.03587150065731326,0.7149010601153832,2,1.0,0.9053476238240584,0.2249999999999999
+32,38,0.600809313475285,0.0,1.360714284135982,0.0007006672807000414,0.036169725572120094,0.7125670467170109,2,0.9926690238362618,0.844583850441978,0.2049999999999999
+32,39,0.5643889467976849,0.0,1.3602036267538429,0.0007053701874266752,0.036254182533927606,0.7126696997429053,2,1.0,0.7812964893256165,0.18499999999999991
+32,40,0.6518140908109044,0.0,1.3322353999672378,0.0007692368150550745,0.03664978615892485,0.7183367226049865,2,1.0,0.8060469693696813,0.1799999999999999
+32,41,0.5769666931900961,0.0,1.3602414980610702,0.0006957124954346978,0.036143364758210055,0.7126659000018406,2,1.0,0.7565556439669868,0.15999999999999992
+32,42,0.5446237010349793,0.0,1.3436675991068732,0.000734834303719085,0.036360529107938966,0.7160318839681468,2,1.0,0.7154123367832645,0.13999999999999993
+32,43,0.703781931139214,0.0,1.3548943953332335,0.0007273351954693411,0.036334289307812906,0.7137466754764238,2,1.0,0.77927310379738,0.10999999999999993
+32,44,0.5638831069341282,0.0,1.3512326177917795,0.0007320591368088364,0.03644367777989301,0.714492308639058,2,1.0,0.7129436897804277,0.08999999999999993
+32,45,0.5274215074894092,0.0,1.3611227851600778,0.000724902725543696,0.0364585332498827,0.7124734428091596,2,1.0,0.658071691631364,0.06999999999999992
+32,46,0.6795102490650536,0.0,1.3685257337112875,0.0007192585264117343,0.03650878556698028,0.7109568490485643,2,1.0,0.6983674968835123,0.039999999999999925
+32,47,0.6730814997237391,0.0,1.364581682235121,0.0007220990458332789,0.03663567572657256,0.7117655002829923,2,1.0,0.7436049990791305,0.009999999999999926
+32,48,0.6567111168326718,0.0,1.3596618120597983,0.0007243027100218665,0.03658288216845103,0.7127728832573631,2,1.0,0.7890370561089061,0.0
+32,49,0.7140397191248592,0.0,1.357674781856425,0.0007326104857239669,0.036588635648817355,0.7131761125327417,2,1.0,0.8134657304161974,0.0
+33,0,0.19323856357914737,0.0,1.3820748121207505,0.0006972212412143636,0.036223871282188944,0.7081737217129404,1,0.15851850161086067,0.2591902933844871,0.01
+33,1,0.20893817466809878,0.0,1.3821373010964684,0.0006973667787650164,0.03652140822208989,0.7081607471856903,1,0.19544547810314047,0.3017741911066654,0.060000000000000005
+33,2,0.15777460533298046,0.0,1.3814525869857848,0.0006967820561716758,0.036470722771844856,0.7083024778841518,1,0.22581653605582214,0.2624627257114758,0.12
+33,3,0.2543984444735264,0.0,1.3843855095246094,0.0007006957094094748,0.03668992712161982,0.7076945173525993,1,0.26917172332681993,0.3339611376971314,0.13
+33,4,0.1984382542961359,0.0,1.3839027401680506,0.0007009330559141441,0.03675519248401196,0.7077942762727575,1,0.3061041972569264,0.30433928418737227,0.19
+33,5,0.2746303326413219,0.0,1.3847668376935494,0.0007006351711363526,0.03674989364473683,0.7076156534715622,1,0.3636504969054268,0.3245088624147418,0.24
+33,6,0.21619264894495877,0.0,1.3846565286026526,0.0006999637898152753,0.036672964072963034,0.707638753228979,1,0.3783893322841038,0.2791879421517414,0.3
+33,7,0.3307458178616397,0.0,1.3853120362955027,0.0006999346726703011,0.03660522744260315,0.7075031313623513,1,0.42515621083089045,0.3398038135694268,0.3
+33,8,0.35226343263315796,0.0,1.3849090121069256,0.0006995495454513262,0.0364542020044762,0.7075866865717666,1,0.4938428063862852,0.3980615013265272,0.3
+33,9,0.39394717210897656,0.0,1.3845644721297592,0.0006990346217564212,0.036432745663395175,0.7076581825231777,1,0.5543295101254836,0.4664394785501912,0.3
+33,10,0.4391185614706514,0.0,1.3857203585386957,0.0006998134812770701,0.03653547831913825,0.7074186751656523,1,0.6328317126219177,0.5254248735099342,0.3
+33,11,0.4737485485214902,0.0,1.3835717103635818,0.0006992266905290841,0.03660917415709243,0.7078634413852273,1,0.6818802745652425,0.5836348414121844,0.31
+33,12,0.4129027386525641,0.0,1.3834145325609473,0.0007001825197009107,0.03667754723144906,0.7078955482680698,1,0.7218653592709925,0.5341662096923891,0.37
+33,13,0.529683117956742,0.0,1.3735608405899233,0.0006913678298856753,0.03626952148905593,0.7099325377207344,1,0.7802311877064657,0.5886740075315964,0.37
+33,14,0.5302119079270253,0.0,1.3704105566686808,0.0006891431324989562,0.0362747565577675,0.7105817561792566,1,0.8228386933311855,0.6407278842037014,0.42
+33,15,0.4802722749975644,0.0,1.2894201762356567,0.0007216596323907706,0.03510392118401755,0.7269368463633062,1,0.84567770468889,0.6142835945215096,0.48
+33,16,0.5984979836512567,0.0,1.3038520022874915,0.0007118362813847089,0.03584407415291307,0.7240666959601684,1,0.8989142165133983,0.679593359571891,0.48
+33,17,0.6061042639888485,0.0,1.3072135027770322,0.0007371192103061103,0.03518268536574815,0.7233844642563629,1,0.9323908749295448,0.7325581925450262,0.49
+33,18,0.6645258086686721,0.0,1.2961842279301867,0.0007330791367114885,0.03603976122409107,0.725587577855353,1,0.9895507817538549,0.7939434501827428,0.49
+33,19,0.6687584771093185,0.0,1.2980001771008405,0.0007604831656344096,0.035514330444084086,0.725214933771355,1,1.0,0.8625282570310614,0.49
+33,20,0.6649926853210442,0.0,1.3218354444065623,0.0006686345447273283,0.03468278353299385,0.7204766723109136,1,1.0,0.8833089510701474,0.54
+33,21,0.7122008428858517,0.0,1.3377101377505107,0.0006710893819893984,0.03552977081960315,0.7172675103681796,1,1.0,0.9406694762861723,0.54
+33,22,0.71,0.0,1.3368902422296547,0.0006752238994135994,0.03543424778763688,0.7174320749942006,1,1.0,1.0,0.55
+33,23,0.69,0.0,1.3386547393825219,0.0006819510569012105,0.035268220902352265,0.7170715035222041,1,1.0,1.0,0.56
+33,24,0.7,0.0,1.3384770893047946,0.0006878269655659769,0.035901814848488735,0.717105159742931,2,1.0,1.0,0.6100000000000001
+33,25,0.69,0.0,1.3377528070669782,0.0007316946602083632,0.036078482428982775,0.7172342751940977,2,1.0,1.0,0.6050000000000001
+33,26,0.6339488523039846,0.0,1.337795979837201,0.0007220327750585952,0.03627032013661051,0.717229438370782,2,1.0,0.9464961743466153,0.5850000000000001
+33,27,0.72,0.0,1.35095104094498,0.0007152880355878431,0.036135054893028026,0.7145565863897748,2,1.0,1.0,0.5750000000000001
+33,28,0.6364305159746294,0.0,1.3458501841236385,0.0007172859678209495,0.03614987488742709,0.715595032180549,2,1.0,0.9547683865820981,0.555
+33,29,0.72,0.0,1.3572378281631594,0.0007113938384387743,0.03635843069124801,0.713274163968949,2,1.0,1.0,0.545
+33,30,0.7,0.0,1.3514303248556163,0.0007121303572849196,0.03601628488258337,0.71446010734702,2,1.0,1.0,0.535
+33,31,0.7,0.0,1.3447775598701235,0.0007120121132115271,0.03609113491954071,0.7158154265297404,2,1.0,1.0,0.525
+33,32,0.71,0.0,1.3370963684949746,0.0007110510182545681,0.03590557286420422,0.717375759014934,2,1.0,1.0,0.52
+33,33,0.6356127132243942,0.0,1.3386477865489248,0.0007033834399116041,0.03582282484235906,0.7170642176539098,2,1.0,0.9520423774146474,0.5
+33,34,0.7664221578180352,0.0,1.3502624331390731,0.0006985845206799732,0.03617416195683122,0.7147038296696824,2,1.0,0.988073859393451,0.47
+33,35,0.6334951793126578,0.0,1.3526668618199056,0.0007112295387193778,0.036119788833265096,0.7142081461794089,2,1.0,0.9449839310421925,0.44999999999999996
+33,36,0.5944078035807342,0.0,1.3617829320314434,0.0007062737236390175,0.03647984053955214,0.7123458240018258,2,1.0,0.8813593452691141,0.42999999999999994
+33,37,0.6844809870892569,0.0,1.3682010998373555,0.0007026581149776349,0.03617840244971013,0.7110303775283457,2,1.0,0.9149366236308563,0.42499999999999993
+33,38,0.6761103508620789,0.0,1.3692179939093356,0.0006984576801225737,0.03637865513105923,0.7108231221916864,2,1.0,0.9537011695402634,0.41999999999999993
+33,39,0.72,0.0,1.3686915583988404,0.0006947340282793767,0.036166851451715984,0.7109328513789145,2,1.0,1.0,0.4099999999999999
+33,40,0.77,0.0,1.3637884109443048,0.0006937301736064934,0.03623472430955531,0.7119398528091792,2,1.0,1.0,0.3799999999999999
+33,41,0.6363190346205146,0.0,1.3663359142296208,0.000702198634511292,0.03624896922678646,0.7114136478602019,2,1.0,0.9543967820683822,0.3599999999999999
+33,42,0.5981718218123409,0.0,1.3725938802522348,0.0006998627299127276,0.03628370978162373,0.7101281245461887,2,1.0,0.8939060727078031,0.33999999999999986
+33,43,0.7539320200028035,0.0,1.3766634592857085,0.000698400051093987,0.03653756996807219,0.709290304679333,2,1.0,0.9464400666760118,0.30999999999999983
+33,44,0.719356510148713,0.0,1.3571750468783106,0.0006873433490997678,0.03593208313589351,0.7132968404224325,2,1.0,0.9978550338290436,0.2999999999999998
+33,45,0.71,0.0,1.3656661863086286,0.0006884718064548993,0.03616861283495669,0.7115567611148083,2,1.0,1.0,0.2949999999999998
+33,46,0.77,0.0,1.3615576483813756,0.0006873348918600765,0.03610883751265254,0.7123997451760091,2,1.0,1.0,0.2649999999999998
+33,47,0.72,0.0,1.358032886965726,0.0006833841956975478,0.03576176775597477,0.713122996124452,2,1.0,1.0,0.2549999999999998
+33,48,0.77,0.0,1.3652399735645488,0.0006861812814526198,0.036115778247071094,0.7116451707841184,2,1.0,1.0,0.22499999999999978
+33,49,0.6358154465278469,0.0,1.3611580154447749,0.0006835503807846266,0.03571417704508702,0.7124831680819718,2,1.0,0.952718155092823,0.2049999999999998
+34,0,0.1900449027141704,0.0,1.382876843167061,0.0006978241637845008,0.03622429988625526,0.7080076940506751,1,0.16301489526918064,0.24329896456652395,0.01
+34,1,0.1320262422451145,0.0,1.3828728540478366,0.0006977653545653601,0.036514163104602815,0.7080085430473226,1,0.20259979254612245,0.2037210495132388,0.06999999999999999
+34,2,0.1125453966496734,0.0,1.3853300046224886,0.0006999865131684559,0.03663763080076422,0.70749939148271,1,0.23537109635770176,0.16721837641492604,0.13
+34,3,0.2057615625951415,0.0,1.3845990754703035,0.000700545192352446,0.03669537780883555,0.7076503987818504,1,0.27070555621345765,0.20338205973477108,0.18
+34,4,0.21080078055790286,0.0,1.3849023424662366,0.0007000335933061649,0.03676076909423935,0.7075878662643137,1,0.3139725453233862,0.23636796564905888,0.22999999999999998
+34,5,0.27663132583877637,0.0,1.3847096548849436,0.0006995817473601282,0.036723738455370296,0.7076279200978739,1,0.3616661579200249,0.3001605685558922,0.24
+34,6,0.2173038341677227,0.0,1.3842480789667806,0.0006996007394069655,0.036658802488327494,0.7077233988283281,1,0.40018514008568434,0.2574634504591107,0.3
+34,7,0.31635881562429596,0.0,1.3833134882590659,0.0006981490650780754,0.03654592424229276,0.707917282630588,1,0.45634207920341424,0.32213029301033663,0.31
+34,8,0.32628861044962804,0.0,1.3841345171871167,0.000699067149650074,0.0363877529351487,0.707747109377368,1,0.4913653238446888,0.38103582367995675,0.32
+34,9,0.40232336238597893,0.0,1.3845091560341205,0.0006999681391100462,0.03644071438190295,0.7076692398395107,1,0.5460497762312402,0.43735313568348294,0.32
+34,10,0.3996176163356313,0.0,1.3857165982058492,0.0006997818729255678,0.03653257539116615,0.7074194665537256,1,0.5947509760386549,0.4715159157403403,0.37
+34,11,0.4714398230787331,0.0,1.3776469907469964,0.0007006195140703027,0.03651582517511325,0.7090865454726133,1,0.6446585892466251,0.5526977228080477,0.37
+34,12,0.4709747763699144,0.0,1.3659290752669786,0.0006872491571392179,0.03611733921070962,0.7115033037397295,1,0.6866021076671386,0.6022134622880532,0.42
+34,13,0.4166513146181116,0.0,1.3845049194706396,0.0006996213417819084,0.036729136906081136,0.7076702597574709,1,0.7011755374992052,0.5707995883112993,0.48
+34,14,0.4931912222560877,0.0,1.365853295693654,0.0006872787993311893,0.03616526856262811,0.7115188463183277,1,0.7456011255637629,0.6074360943625691,0.53
+34,15,0.5606019789937672,0.0,1.3847655433994444,0.0007019649061156905,0.03672244118836699,0.707615371022413,1,0.8052768369198133,0.6625169535727751,0.53
+34,16,0.5494499691317649,0.0,1.290248767224827,0.0008200059509167123,0.036703022222927935,0.7267332805573721,1,0.8372231866996016,0.6880728459563481,0.5800000000000001
+34,17,0.49317516322133603,0.0,1.3026169912769245,0.0008023354350532213,0.036109932862586534,0.7242772317546621,2,0.859548626169587,0.641110480206602,0.6400000000000001
+34,18,0.6653906323863772,0.0,1.3246091327551712,0.0006764099390809295,0.03577847585233023,0.7199146020503991,2,0.9534073204667435,0.7056602340767235,0.6100000000000001
+34,19,0.6777650984368517,0.0,1.3314904454183425,0.0006968964721783501,0.03525537813853561,0.7185166867114955,2,1.0,0.759216994789506,0.5800000000000001
+34,20,0.644384797756708,0.0,1.3353703904075196,0.0007164746219938533,0.03623050211713286,0.7177233683085695,2,1.0,0.7812826591890267,0.5750000000000001
+34,21,0.6395334094366699,0.0,1.3422406800845663,0.0007086936798408171,0.03583748703655973,0.7163325539567931,2,1.0,0.8317780314555666,0.5700000000000001
+34,22,0.7329775445311408,0.0,1.3701589076059424,0.0006890957766470735,0.03627025763500612,0.7106335258820231,2,1.0,0.8765918151038031,0.54
+34,23,0.6978019914010525,0.0,1.3747581194945633,0.0006945963563303218,0.03637488589145525,0.7096845917588789,2,1.0,0.9260066380035081,0.53
+34,24,0.6962692589851032,0.0,1.3701047036445173,0.0006927001924571473,0.0361734590263177,0.7106431895602231,2,1.0,0.9875641966170109,0.52
+34,25,0.77,0.0,1.3645010197231289,0.0006903793128517767,0.036380789073422674,0.7117950626758418,2,1.0,1.0,0.49
+34,26,0.6387509027005092,0.0,1.3683673927158504,0.0006997113342773237,0.03602617622257337,0.7109974197779058,2,1.0,0.9625030090016973,0.47
+34,27,0.77,0.0,1.3722773800548203,0.0006972446021058752,0.03655431232142846,0.7101943482855188,2,1.0,1.0,0.43999999999999995
+34,28,0.6365009137857602,0.0,1.3742199286971144,0.0007047048647973596,0.036342079747065145,0.7097912995334644,2,1.0,0.9550030459525343,0.41999999999999993
+34,29,0.72,0.0,1.376698857202971,0.0007016713970776468,0.03655059041412831,0.709281656551784,2,1.0,1.0,0.4099999999999999
+34,30,0.77,0.0,1.3720825618271557,0.0007011173587720861,0.03648047161782327,0.7102328497662309,2,1.0,1.0,0.3799999999999999
+34,31,0.6349582221601429,0.0,1.3730952914718295,0.0007087525608649383,0.036602634954003996,0.7100212394326691,2,1.0,0.9498607405338096,0.3599999999999999
+34,32,0.72,0.0,1.3750393792974986,0.0007047015003060583,0.036603401053149937,0.709622475234832,2,1.0,1.0,0.34999999999999987
+34,33,0.71,0.0,1.3704993490734023,0.0007048511223615929,0.036288707413431834,0.7105570340592314,2,1.0,1.0,0.34499999999999986
+34,34,0.72,0.0,1.3749464129395812,0.0007016147326478541,0.03658205750170659,0.7096429034198259,2,1.0,1.0,0.33499999999999985
+34,35,0.77,0.0,1.3698992136529335,0.0007007922047236905,0.0359243933233065,0.7106821148891801,2,1.0,1.0,0.3049999999999998
+34,36,0.72,0.0,1.3398272384860073,0.000678269144664267,0.03550780954000845,0.7168350611469498,2,1.0,1.0,0.2949999999999998
+34,37,0.71,0.0,1.3448632255933983,0.0006872495672231915,0.03589056660372741,0.715808074611399,2,1.0,1.0,0.2899999999999998
+34,38,0.72,0.0,1.3407504532972545,0.0006812940147944367,0.035138054284403024,0.7166463986514693,2,1.0,1.0,0.2799999999999998
+34,39,0.6325186859221577,0.0,1.3441091719441036,0.0006894510294102924,0.035765961391829006,0.7159605490411031,2,1.0,0.9417289530738587,0.2599999999999998
+34,40,0.72,0.0,1.35545254236541,0.0006887764518297134,0.035802833437318264,0.7136483850913192,2,1.0,1.0,0.24999999999999978
+34,41,0.77,0.0,1.3570364642063684,0.0006949825573674543,0.03597169456393234,0.7133220560291241,2,1.0,1.0,0.21999999999999978
+34,42,0.72,0.0,1.3533918020285112,0.0006969717054212917,0.0361308782386547,0.7140659743710578,2,1.0,1.0,0.20999999999999977
+34,43,0.7,0.0,1.3539217173166573,0.000704223284639142,0.03595123876146431,0.7139548043685529,2,1.0,1.0,0.19999999999999976
+34,44,0.77,0.0,1.3530398335026987,0.0007104490121954792,0.036392933128949374,0.7141323297159364,2,1.0,1.0,0.16999999999999976
+34,45,0.75,0.0,1.3493998801269396,0.000714185189331706,0.03591765212717163,0.7148733138978833,2,1.0,1.0,0.13999999999999976
+34,46,0.71,0.0,1.3446774671454627,0.0007171584645424533,0.03621029011439394,0.7158336936285928,2,1.0,1.0,0.13499999999999976
+34,47,0.634199325514938,0.0,1.343269095097747,0.0007085411309684376,0.035731270666682205,0.7161235953326793,2,1.0,0.9473310850497932,0.11499999999999976
+34,48,0.7105997958746951,0.0,1.3554928048001929,0.0007041072692913163,0.03612416154466739,0.7136338912282938,2,1.0,0.9686659862489839,0.10499999999999976
+34,49,0.77,0.0,1.3551417201037752,0.0007114227281045556,0.03607237968224841,0.7137026441686486,2,1.0,1.0,0.07499999999999976
+35,0,0.19243824371737178,0.0,1.3838961654739612,0.0006986171447784653,0.036303302443766436,0.707796594016318,1,0.15050472529400244,0.26587196621490305,0.01
+35,1,0.2455577629521561,0.0,1.3837974473910446,0.0006984379290195459,0.03648869715662088,0.7078170846561802,1,0.19367269743191096,0.3259077295032909,0.01
+35,2,0.2504689546541502,0.0,1.3840695050584206,0.0006986327593633436,0.036572163995381886,0.707760736073142,1,0.2208090256791376,0.3772859855548402,0.02
+35,3,0.3093799076220047,0.0,1.3843546491400087,0.0006996076046504897,0.03666885594907102,0.7077013513542619,1,0.280532495651819,0.4373117804795601,0.02
+35,4,0.3086960904500766,0.0,1.3849039006320865,0.0007018065416564727,0.036784737176691326,0.7075868101955068,1,0.336229008752395,0.4700531246224613,0.07
+35,5,0.36273907183469534,0.0,1.3850311568607734,0.0007010084212524374,0.03676495672566951,0.7075608094961897,1,0.400696210033475,0.5416513277432636,0.08
+35,6,0.3747414805618477,0.0,1.3859477468614032,0.0007000714015496801,0.036723419847446905,0.7073715019035037,1,0.4446334247887216,0.5637326062859838,0.13
+35,7,0.44946763877489726,0.0,1.3859880377978828,0.0007004839077963084,0.036611676491150186,0.7073629909503736,1,0.5199020329163023,0.6250064241806382,0.13
+35,8,0.3645025084837201,0.0,1.38361290655318,0.0006982860767090259,0.03638136278697717,0.7078553112681263,1,0.5366547253664703,0.588911182018185,0.19
+35,9,0.4651268059937837,0.0,1.386011202928796,0.0007003751392652263,0.03636378469273337,0.707358240762304,1,0.5949588821067526,0.6563039908547343,0.2
+35,10,0.4843229842904193,0.0,1.38236366684468,0.0006977418571658636,0.03640573523105008,0.7081138071262836,1,0.6567428535352036,0.7148766185103268,0.21000000000000002
+35,11,0.5174680194526515,0.0,1.3839508371443383,0.0007004355444725011,0.03663771835470061,0.7077845344789301,1,0.6901152852807336,0.7864255653479827,0.22000000000000003
+35,12,0.5896275272553044,0.0,1.3838987212254235,0.0007021206805117566,0.03671756160192308,0.7077946162238461,1,0.7324651488509746,0.844215750524878,0.22000000000000003
+35,13,0.58349414302479,0.0,1.379783724844222,0.0007033747276950818,0.036707563306676655,0.7086444393818127,1,0.7815848645068316,0.8664648014913297,0.27
+35,14,0.588387070060637,0.0,1.3817138523110333,0.0007012986400490235,0.03670386911527419,0.7082466283473046,1,0.8228743989814779,0.9012701013903992,0.32
+35,15,0.6742389838468064,0.0,1.3296280945324073,0.0006629242849761617,0.03472768337484299,0.7189069250868675,0,0.8841297818454708,0.9493118673363053,0.32
+35,16,0.6339550268848742,0.0,1.3862943611198844,0.0007001722195526525,0.03659596830027643,0.7072997068701548,0,0.9161380830224763,0.9443556594233584,0.33
+35,17,0.6583345095316819,0.0,1.3859126123620726,0.0007001556620111881,0.036413767776265905,0.7073787397057594,0,0.9942301130836205,0.9345132331747159,0.39
+35,18,0.6400179093031322,0.0,1.3644458589844972,0.0006956808073696984,0.03585510448833605,0.7118042032933846,0,1.0,0.9000596976771071,0.47000000000000003
+35,19,0.6485921971467579,0.0,1.3669781040760816,0.0007050490279660955,0.03651978988266137,0.7112806149297471,0,1.0,0.9286406571558596,0.47000000000000003
+35,20,0.6617371092141872,0.0,1.3687245560002164,0.0007004058493916972,0.03618791767740617,0.710923738843007,0,1.0,0.939123697380624,0.48000000000000004
+35,21,0.6480878945025932,0.0,1.373911935839661,0.0006981598402491988,0.036502858749790895,0.7098574341787776,0,1.0,0.9602929816753109,0.49000000000000005
+35,22,0.6529969866877784,0.0,1.3768456236592375,0.0006965691618055918,0.03651206288583915,0.7092534965032927,0,1.0,0.9433232889592613,0.5700000000000001
+35,23,0.620045542894893,0.0,1.3787466195202294,0.000701719787744786,0.036587057195939014,0.7088592046658097,2,1.0,0.9001518096496433,0.65
+35,24,0.7546386902755554,0.0,1.362741507802161,0.0006859310465161176,0.03583829247676633,0.7121577031105879,2,1.0,0.9487956342518514,0.62
+35,25,0.6989090181587532,0.0,1.367887744667076,0.0006949757846252459,0.03647760945526978,0.7110979136506494,2,1.0,0.9630300605291772,0.615
+35,26,0.6219457477275651,0.0,1.3706023201722495,0.0006930138109627329,0.03589834986722509,0.7105407252188787,2,1.0,0.9064858257585503,0.595
+35,27,0.7555619297630602,0.0,1.37265234232024,0.0006920346989801198,0.03651262105481311,0.7101193130144611,2,1.0,0.9518730992102011,0.565
+35,28,0.7004508904595246,0.0,1.3761787530042813,0.0006981406576459481,0.03630487708235522,0.7093903467470069,2,1.0,0.9681696348650822,0.5599999999999999
+35,29,0.77,0.0,1.3778309043914856,0.0006965121682270631,0.0365020575321061,0.7090503004663589,2,1.0,1.0,0.5299999999999999
+35,30,0.75,0.0,1.3797500203513051,0.0007014079405490457,0.036629330722599,0.7086522103583495,2,1.0,1.0,0.4999999999999999
+35,31,0.72,0.0,1.3799421528435245,0.0007058218861183803,0.03672565324402874,0.7086107174828014,2,1.0,1.0,0.4899999999999999
+35,32,0.6294420709511979,0.0,1.3766258359805428,0.0007067271316459601,0.036652647502998924,0.7092946284468736,2,1.0,0.9314735698373264,0.46999999999999986
+35,33,0.715120292652418,0.0,1.3792391343448913,0.0007037875706345036,0.03651559855277888,0.7087566964035816,2,1.0,0.9837343088413938,0.45999999999999985
+35,34,0.7,0.0,1.3754112521880406,0.0007039325055995881,0.036590059474488804,0.7095461586874,2,1.0,1.0,0.44999999999999984
+35,35,0.7,0.0,1.3707333414180929,0.0007035948608819514,0.0359608120630657,0.7105094242711886,2,1.0,1.0,0.43999999999999984
+35,36,0.7,0.0,1.3650968978145344,0.0007027659025174864,0.03654384237291713,0.7116677237696987,2,1.0,1.0,0.4299999999999998
+35,37,0.7,0.0,1.3584768567553422,0.0007012752924688483,0.03600211882479413,0.7130248391065989,1,1.0,1.0,0.4199999999999998
+35,38,0.6351145520377881,0.0,1.3729743316046508,0.0006913018224338648,0.03626386868856572,0.7100533288424802,1,1.0,0.9503818401259605,0.4799999999999998
+35,39,0.73,0.0,1.3690611784797018,0.000687929281076746,0.03614224933285041,0.7108596830993037,1,1.0,1.0,0.4799999999999998
+35,40,0.71,0.0,1.3692668785631237,0.0006892798397412962,0.03617302209452964,0.7108168468106473,1,1.0,1.0,0.4899999999999998
+35,41,0.7,0.0,1.3695007610740308,0.0006916230893222468,0.03619371700423356,0.7107678049915825,0,1.0,1.0,0.5399999999999998
+35,42,0.6614568943660498,0.0,1.3264511739952378,0.0007187481344607,0.03622484012212621,0.7195259388319158,2,1.0,0.9715229812201661,0.6199999999999998
+35,43,0.77,0.0,1.3827834878496197,0.0007030512133981361,0.036507803987256025,0.7080248321560341,2,1.0,1.0,0.5899999999999997
+35,44,0.6348167103633108,0.0,1.3819215476960562,0.0007059762161312666,0.03628831697318615,0.708201776442338,2,1.0,0.9493890345443693,0.5699999999999997
+35,45,0.5986591315725007,0.0,1.3829468247171344,0.0007035345428683475,0.03657035564706386,0.7079908652386886,2,0.9968928338698002,0.8991554657269021,0.5499999999999997
+35,46,0.7517879262549636,0.0,1.3830324946445245,0.000701475205054713,0.03658536938233586,0.7079740050632396,2,1.0,0.9392930875165453,0.5199999999999997
+35,47,0.6184293645686667,0.0,1.3818491482485564,0.0007031042586526657,0.03671183719504276,0.7082179246633286,2,1.0,0.8947645485622222,0.49999999999999967
+35,48,0.5808144683782266,0.0,1.3814985843494025,0.0007007304558936929,0.03667115293042743,0.7082913426819294,2,1.0,0.836048227927422,0.47999999999999965
+35,49,0.6726383556618174,0.0,1.3805900889673146,0.0006986794936311063,0.03661265330964293,0.708479862867618,2,1.0,0.8754611855393916,0.47499999999999964
+36,0,0.09493561344305858,0.0,1.3837309822843822,0.0006986586916429231,0.036370358715425814,0.7078307389416636,1,0.13167254062969413,0.16283408074221878,0.06
+36,1,0.16442453838817034,0.0,1.3845749375041412,0.0007000501135657509,0.03645016006011896,0.7076555972939287,1,0.16471713347153177,0.18924513891044747,0.11
+36,2,0.12029243254845096,0.0,1.3846131343701085,0.0006996852617438398,0.03661297867754047,0.7076478460588194,1,0.21039915011389182,0.15550910002862942,0.16999999999999998
+36,3,0.2144801095862553,0.0,1.3850947306704497,0.0006996739446330182,0.03669313500859582,0.7075482069947117,1,0.2554306264076453,0.21693130114526485,0.18
+36,4,0.23394442777580995,0.0,1.3843426607463472,0.0006995833918448911,0.036744064786321876,0.707703841286261,1,0.31258696057546964,0.28179663858131876,0.19
+36,5,0.19380907664752892,0.0,1.3838432656091058,0.0006995614453948514,0.03670121031242572,0.7078071440833855,1,0.34595462213153083,0.2424165296716438,0.25
+36,6,0.17762855047177653,0.0,1.3845794044182123,0.0006995071711359682,0.03666661596503969,0.7076548978289784,1,0.3896584694234623,0.20416028724521576,0.31
+36,7,0.27808929490816303,0.0,1.3850199225067485,0.0006995030166289952,0.03658526091168528,0.7075637570754385,1,0.4513624338176447,0.23370814357329123,0.36
+36,8,0.23187961675263366,0.0,1.3837350831226911,0.0007010907148105247,0.036407780509043045,0.7078288849428335,1,0.48883828788457534,0.20262071997677433,0.42
+36,9,0.29454019128687836,0.0,1.3845620026512138,0.0007006252131727362,0.03649091562562246,0.7076580352871401,1,0.4997669374976792,0.23207254387563547,0.47
+36,10,0.34153575839693173,0.0,1.3846232843322166,0.0006999456062519336,0.03648183444024174,0.7076456384843124,2,0.5486998795052263,0.2983026685670085,0.48
+36,11,0.35880046182124214,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,2,0.5962766222070823,0.3336788134958779,0.47
+36,12,0.471407933559376,0.0,1.386173152861133,0.000700171759485042,0.03675291036248641,0.707324799791881,2,0.6737734417793638,0.3852907631219956,0.43999999999999995
+36,13,0.3469563387063084,0.0,1.383925678685155,0.0007006080741008246,0.03673930261767403,0.707789666498481,2,0.7022785123469373,0.3371961979496011,0.41999999999999993
+36,14,0.4265881061520436,0.0,1.384631120683294,0.0007000456636405712,0.036730730504538366,0.7076439758710514,2,0.7437916394274201,0.35420344117482205,0.4149999999999999
+36,15,0.36452421413937697,0.0,1.384828717054388,0.0006994915151469708,0.03666333378155839,0.7076033239779494,2,0.7815725844214034,0.3032460319729525,0.3949999999999999
+36,16,0.47261411548094967,0.0,1.3851931876218093,0.0006994331779926507,0.036562763525051827,0.7075279331423561,2,0.8373387530627331,0.36515183969664367,0.3849999999999999
+36,17,0.4972469344448681,0.0,1.37476169364503,0.0007073139395953055,0.03637117349552631,0.7096786148641328,2,0.8953973091227774,0.4461929208396534,0.3749999999999999
+36,18,0.4379603713706764,0.0,1.3199888785887837,0.0007855584151332619,0.0366206781544016,0.7208013421518936,2,0.9123450944542273,0.3954652943723228,0.35499999999999987
+36,19,0.5996772850532921,0.0,1.360076191196939,0.000708762285117515,0.03599049164017178,0.7126944050811614,2,0.9943083709223799,0.43889785076819693,0.32499999999999984
+36,20,0.5513450206451441,0.0,1.3841954419790212,0.0007011055517394748,0.03667855421999351,0.7077336641916692,2,1.0,0.4711500688171471,0.31999999999999984
+36,21,0.47793808048469566,0.0,1.3837585955818952,0.0006995731021727167,0.036701952616264785,0.7078246500863288,2,1.0,0.42646026828231887,0.2999999999999998
+36,22,0.6125180539726036,0.0,1.3852242462465059,0.0006997102494522927,0.0367501243896728,0.7075213914012489,2,1.0,0.47506017990867877,0.2699999999999998
+36,23,0.4805756465650193,0.0,1.3841982676987226,0.0006997103274841952,0.03671051745689903,0.7077336568959389,2,1.0,0.43525215521673094,0.2499999999999998
+36,24,0.5659969657755128,0.0,1.3851919755006943,0.0006996273309877441,0.03664082809069395,0.7075281036161677,2,1.0,0.48665655258504287,0.2399999999999998
+36,25,0.4780917901590062,0.0,1.3855021505697056,0.000700683644305343,0.03657756763069423,0.7074634770839883,2,0.9965557928944065,0.4309908754865464,0.2199999999999998
+36,26,0.5655454992881304,0.0,1.3859822884686523,0.0007002629659378129,0.03637187464798876,0.7073642725334609,2,1.0,0.4851516642937677,0.2099999999999998
+36,27,0.5587707257129177,0.0,1.3857440757764135,0.0007008938880618877,0.036492607959670624,0.7074133189627185,2,1.0,0.5292357523763924,0.1999999999999998
+36,28,0.643291285509136,0.0,1.3849031119203843,0.0007014106085599625,0.036578966985731834,0.7075871372291621,2,1.0,0.5776376183637866,0.1699999999999998
+36,29,0.5911695936535798,0.0,1.3842404203374508,0.0007029849607840782,0.03674259046426904,0.7077235829642683,2,1.0,0.6038986455119327,0.16499999999999979
+36,30,0.6136325876390278,0.0,1.366116721849241,0.000723389798036693,0.03664826558929517,0.7114499463621058,2,1.0,0.6454419587967594,0.15499999999999978
+36,31,0.5243346224243506,0.0,1.3627228598196852,0.0007265606350829496,0.036663644813077365,0.7121448683270949,2,1.0,0.5811154080811687,0.1349999999999998
+36,32,0.48363730992421017,0.0,1.3838673535161032,0.000698654147960657,0.0366696116150103,0.7078025375804917,2,1.0,0.5121243664140341,0.11499999999999978
+36,33,0.5923996468107788,0.0,1.385218028764418,0.0006994403781770066,0.03662752914173143,0.7075227897047045,2,1.0,0.5746654893692626,0.10499999999999979
+36,34,0.5086347802246806,0.0,1.3849519724721489,0.0006993701462897923,0.036480254075202244,0.7075778718987135,2,1.0,0.5287826007489352,0.08499999999999978
+36,35,0.4739301988756493,0.0,1.3857576062495314,0.000699813191844662,0.036414237921594886,0.7074109657880885,2,1.0,0.47976732958549784,0.06499999999999978
+36,36,0.5624234676086276,0.0,1.38588530901028,0.0007002226170735229,0.03648878721551744,0.707384363587065,2,1.0,0.5080782253620921,0.05999999999999978
+36,37,0.48318981898980723,0.0,1.3852452012775325,0.0007004765507749519,0.03663954957753782,0.7075167379039349,2,1.0,0.4439660632993575,0.039999999999999786
+36,38,0.5688543676065443,0.0,1.3850304534147697,0.000701425850778483,0.036714539787301215,0.7075607823043967,2,1.0,0.4961812253551476,0.029999999999999784
+36,39,0.4892784318659925,0.0,1.3849205777388147,0.0007001514754015391,0.036746864407720986,0.7075840444577239,2,1.0,0.46426143955330856,0.009999999999999783
+36,40,0.6239445636644327,0.0,1.384436329976469,0.0007007498662762823,0.03674890341735327,0.7076839819645638,2,1.0,0.5131485455481094,0.0
+36,41,0.6196330091664264,0.0,1.385828125359952,0.0007003778756575808,0.03671937599129611,0.7073961357161954,2,1.0,0.565443363888088,0.0
+36,42,0.5022094150565024,0.0,1.3861777628307734,0.0007001191256674969,0.03663486821424731,0.7073238672436944,2,1.0,0.5073647168550083,0.0
+36,43,0.5797355743657218,0.0,1.385664190639189,0.0007000303732472449,0.0364557603801266,0.7074302107398198,2,1.0,0.5657852478857393,0.0
+36,44,0.6023221488275794,0.0,1.3856738742141554,0.000700922918727371,0.03639690285173107,0.7074278370333327,2,1.0,0.6077404960919313,0.0
+36,45,0.6709433059923244,0.0,1.3608237530387393,0.0007282102583936622,0.036558071924613016,0.7125333421936217,2,1.0,0.6698110199744147,0.0
+36,46,0.5388817538884171,0.0,1.3577731906608137,0.0007344063821023604,0.03646889324585416,0.7131552472505188,2,1.0,0.6296058462947236,0.0
+36,47,0.501469071035876,0.0,1.365127141386885,0.000727398881883165,0.03677077894418181,0.711651408395789,2,1.0,0.5715635701195869,0.0
+36,48,0.6542285460559254,0.0,1.3843696425833159,0.000698993618693961,0.036726900951772376,0.7076985038186618,2,1.0,0.6140951535197513,0.0
+36,49,0.519796368361322,0.0,1.3642170720023423,0.0007283089215386316,0.03669072995405509,0.7118377486633651,2,1.0,0.5659878945377403,0.0
+37,0,0.19327993376273944,0.0,1.3835294829028066,0.0006985907248948095,0.03636611509243586,0.7078724366645237,1,0.15749937174014872,0.2605171788456247,0.01
+37,1,0.1344413983221171,0.0,1.3832144417921137,0.0006985905283325288,0.0364619193415643,0.7079375795311885,1,0.19488922260483596,0.22076723470141504,0.06999999999999999
+37,2,0.2298030556419517,0.0,1.3840284798782123,0.0006988078431091121,0.036584780376414446,0.7077691490376844,1,0.24265902106118395,0.2829079942351244,0.07999999999999999
+37,3,0.24262971550964432,0.0,1.3850302176946943,0.0006995435864306037,0.036689600578286866,0.7075616100292714,1,0.28638061694387207,0.3413216652642971,0.08999999999999998
+37,4,0.27671152831177304,0.0,1.384496153407938,0.0006993991850735048,0.03674055163289119,0.7076721651325474,1,0.3213711862138333,0.38077204378977125,0.13999999999999999
+37,5,0.27777554111780756,0.0,1.384379797623283,0.0006990016978417153,0.03670597947928307,0.7076963997866013,1,0.3579047925743353,0.4083628790559674,0.19
+37,6,0.36333111650643896,0.0,1.383958797124027,0.0007018594517393499,0.03667934873067185,0.7077822991455236,1,0.41879546312385285,0.4558423480436348,0.19
+37,7,0.39083679008946237,0.0,1.3861361807824395,0.0007003045421260367,0.036615991951288965,0.7073323985853206,1,0.4984719961275441,0.5212386381494064,0.19
+37,8,0.40474036726704155,0.0,1.3860511414987586,0.0007000242579905537,0.036472825901773503,0.7073501185766422,1,0.5468681572850013,0.5444550407243036,0.24
+37,9,0.44841209841263574,0.0,1.3859356204733224,0.0007001758579517989,0.036394121929677364,0.7073739687797543,1,0.590534676949072,0.6057498716015352,0.25
+37,10,0.4684184825215518,0.0,1.383998488017955,0.00069859479541238,0.036454384922588665,0.7077754404039395,1,0.6443967255916471,0.6762654285482514,0.26
+37,11,0.5037038771978414,0.0,1.3823636828741226,0.0007028402745099115,0.036655359805368576,0.7081116962387659,2,0.700302180370069,0.7286603802277244,0.27
+37,12,0.5493318450519301,0.0,1.3862943611198844,0.0007001722195526523,0.03675692642443548,0.7072997068701548,2,0.7586507430274052,0.7793469499744612,0.26
+37,13,0.4869041201940917,0.0,1.3860084996920654,0.0007001616136505942,0.036779234100093275,0.7073588887395048,2,0.7671803419663416,0.7279700016862407,0.24000000000000002
+37,14,0.45636218240970605,0.0,1.3859268987470288,0.0006999101947616647,0.036756279175662133,0.7073758841213135,2,0.7952139414585558,0.6601243429973719,0.22000000000000003
+37,15,0.57712161295245,0.0,1.3854205393075023,0.0006996836286144859,0.03667638104830011,0.7074807808856441,2,0.8427330443684381,0.7072168247449889,0.21000000000000002
+37,16,0.5927736282998781,0.0,1.3565435874549718,0.0007355230952069075,0.03660817487978192,0.7134062582527225,2,0.8990847708688243,0.7603131949859653,0.2
+37,17,0.7063799557930587,0.0,1.3528926961256995,0.0007393891683600582,0.03635485779658244,0.7141505509604729,2,0.989612288021973,0.8000521832845606,0.17
+37,18,0.6586524000461138,0.0,1.3603791537645817,0.0006908612817026013,0.03595686788991198,0.7126396978851798,2,1.0,0.8288413334870463,0.165
+37,19,0.732206764917997,0.0,1.3569615454472164,0.0006862406454693798,0.03614447362473354,0.7133409514027691,2,1.0,0.8740225497266566,0.135
+37,20,0.6003542186591992,0.0,1.3586423965542078,0.0006917434674741688,0.03591699534888484,0.7129948661606059,2,1.0,0.8345140621973307,0.115
+37,21,0.5668202661026457,0.0,1.3672880024440937,0.0006920529938379708,0.03611976246530492,0.7112223082925101,2,1.0,0.7894008870088192,0.095
+37,22,0.7209187053136167,0.0,1.3312812118536015,0.0007595842057400245,0.03648415073655621,0.7185336467393225,2,1.0,0.8363956843787224,0.065
+37,23,0.6853962389965937,0.0,1.3613192842780857,0.0006917252366038598,0.03591292371426007,0.7124467813894267,2,1.0,0.8846541299886457,0.055
+37,24,0.6876422375998237,0.0,1.3586996055812257,0.0006934437031228995,0.03618091707791336,0.7129824632856926,2,1.0,0.9254741253327458,0.05
+37,25,0.7159905017061718,0.0,1.3553200766419777,0.0006882569709210127,0.03564416929780127,0.713675666578646,2,1.0,0.9866350056872398,0.04
+37,26,0.7,0.0,1.3519787215385564,0.0006896709459069846,0.036153319718882825,0.7143573833189468,2,1.0,1.0,0.03
+37,27,0.6334455445496391,0.0,1.3479589990191758,0.0006904251909636194,0.035783376838735684,0.7151765968385154,2,1.0,0.9448184818321305,0.009999999999999998
+37,28,0.77,0.0,1.3583240212266734,0.000689641933663871,0.036051228054590004,0.7130608718699979,2,1.0,1.0,0.0
+37,29,0.71,0.0,1.3607914436536976,0.0006970685019405628,0.03616844850004031,0.7125527172275005,2,1.0,1.0,0.0
+37,30,0.6365432065833916,0.0,1.3579069793616647,0.0006915446506958146,0.0358796017135359,0.7131454146920265,2,1.0,0.9551440219446385,0.0
+37,31,0.77,0.0,1.3664211350916002,0.0006916267565871179,0.03619261509126499,0.7114004923785262,2,1.0,1.0,0.0
+37,32,0.72,0.0,1.367740163250261,0.0006966361015285285,0.03618982596188743,0.7111275493473542,2,1.0,1.0,0.0
+37,33,0.71,0.0,1.364829857252908,0.0006979331045611056,0.036307883168294024,0.7117244996550569,2,1.0,1.0,0.0
+37,34,0.6394554575113818,0.0,1.3621702165148353,0.0006927645356416727,0.03590527597371633,0.7122719964965081,2,1.0,0.9648515250379391,0.0
+37,35,0.72,0.0,1.3698567100929828,0.0006929951929732522,0.0363938310236135,0.7106940603640884,2,1.0,1.0,0.0
+37,36,0.7,0.0,1.3667539482050681,0.0006931971011577659,0.03621130839371496,0.7113315128614809,2,1.0,1.0,0.0
+37,37,0.7,0.0,1.3627735578407336,0.0006929599844194722,0.03608116719490628,0.7121482513978445,2,1.0,1.0,0.0
+37,38,0.77,0.0,1.3577753198970606,0.0006921785639728176,0.03603928613232216,0.7131720880418753,2,1.0,1.0,0.0
+37,39,0.72,0.0,1.3605512304656158,0.0007015292890734306,0.036061773389320366,0.7126000883572733,2,1.0,1.0,0.0
+37,40,0.7,0.0,1.3549530734825577,0.0007016185937085114,0.03616460639741557,0.7137451952421658,2,1.0,1.0,0.0
+37,41,0.7,0.0,1.3484450759984736,0.0007009246430631876,0.03594173192325701,0.715073294702637,2,1.0,1.0,0.0
+37,42,0.7,0.0,1.3408518816562258,0.0006993495121685154,0.03569263247937203,0.7166184684814615,2,1.0,1.0,0.0
+37,43,0.7,0.0,1.332154293578452,0.0006968908233436418,0.03595019121876482,0.7183824059285134,2,1.0,1.0,0.0
+37,44,0.7,0.0,1.3223391469790584,0.0006933805038037051,0.035263893617009726,0.720365250865152,2,1.0,1.0,0.0
+37,45,0.6323713781132502,0.0,1.3113996345722798,0.0006885869606217629,0.03558814622616147,0.7225654974900118,2,1.0,0.9412379270441674,0.0
+37,46,0.599081483991933,0.0,1.3250331095953611,0.0006832900885714397,0.03482899675015417,0.7198263293021709,2,1.0,0.8969382799731103,0.0
+37,47,0.6862286887536662,0.0,1.3351311993876744,0.0006799954637037012,0.03576806172890572,0.7177866043843216,2,1.0,0.9207622958455539,0.0
+37,48,0.7075742449095745,0.0,1.3387620645311076,0.0006772290997935587,0.03539083625699951,0.7170516449591356,2,1.0,0.9585808163652485,0.0
+37,49,0.7,0.0,1.3287233078578942,0.0006716970061672013,0.0351561043302837,0.7190861837525164,1,1.0,1.0,0.0
+38,0,0.19213998165810725,0.0,1.3833531618396673,0.0006987036644769273,0.036451277052347866,0.7079088498873285,1,0.14640226590518662,0.2696639619709731,0.01
+38,1,0.13465703510995747,0.0,1.382901277566582,0.0006986233184973498,0.036403436618213346,0.708002312206741,1,0.1949483593452649,0.2214170311303825,0.06999999999999999
+38,2,0.11542446642542782,0.0,1.383685658946784,0.0006987190288300768,0.036580190842142105,0.7078400870531675,1,0.23300872759699914,0.1795713725549271,0.13
+38,3,0.2302036641738281,0.0,1.3831566412241723,0.0006992382383404982,0.036629455115985955,0.7079492625092215,1,0.28084707314697616,0.2396906285746214,0.14
+38,4,0.2841331832030859,0.0,1.384424425572873,0.0006990910083458346,0.03673630464588194,0.7076871309143297,1,0.33964976168676264,0.28418588870906314,0.14
+38,5,0.20617185293614793,0.0,1.3848795497460604,0.0006998598238558117,0.036737139253757684,0.7075926541293269,1,0.37870105890802624,0.24542160772779575,0.2
+38,6,0.3256973521171825,0.0,1.3853228253789394,0.000699777997775181,0.0366889339926602,0.7075009634836475,1,0.439023784279664,0.30679675873100043,0.2
+38,7,0.31698302302540415,0.0,1.382966950951582,0.0007000490347782519,0.03658857316363627,0.7079881455240538,1,0.4780522886297679,0.33221574001661797,0.25
+38,8,0.39175143105441235,0.0,1.3827635603557207,0.0006990360993952729,0.03639895825478291,0.7080306117011906,1,0.5512545011223133,0.39604118553867573,0.25
+38,9,0.4097549703270454,0.0,1.3814908844399785,0.0006989031333845296,0.03650126770832174,0.7082936886944287,1,0.6161325956596474,0.4470285394872294,0.25
+38,10,0.3468414207064532,0.0,1.3812160525088053,0.000697031634328734,0.03650828038094871,0.7083512427622596,1,0.643193926667289,0.40574515457634014,0.31
+38,11,0.47180444126248045,0.0,1.3799786044805364,0.0006958642187908585,0.03644484960399165,0.708607303029374,1,0.716128002274983,0.47053213488745477,0.31
+38,12,0.48950780420123596,0.0,1.3795924490651958,0.0006962581946151852,0.03650522591788554,0.7086868684594425,2,0.7641777380438953,0.5401519862862421,0.31
+38,13,0.5215705444734232,0.0,1.3852931467750773,0.0007013574001854773,0.03678422207581272,0.7075064515495061,2,0.7937553134556966,0.5791872825464315,0.3
+38,14,0.5339498651777679,0.0,1.3842056753021659,0.0007018784361839505,0.036757821698983756,0.7077312277190996,2,0.8444282174592795,0.6279999635567334,0.29
+38,15,0.4730573455108896,0.0,1.2929377294445752,0.0007585510553067044,0.03548741605513141,0.7262233866421514,2,0.8638383884952014,0.5690463651252305,0.26999999999999996
+38,16,0.4525950899053004,0.0,1.3842982762009033,0.0007027930543004463,0.03662962712848066,0.707711694676226,2,0.8890191928721305,0.5381279080001825,0.24999999999999997
+38,17,0.561175909020347,0.0,1.384782794264983,0.0007015263710341735,0.036390275697847765,0.7076119833404585,2,0.9452519640070093,0.5677924053929793,0.24499999999999997
+38,18,0.497100267069123,0.0,1.3857838970103975,0.0007007858342247225,0.03644902135455296,0.7074051214376192,2,0.9865727309832192,0.5059993707499876,0.22499999999999998
+38,19,0.6334919033464727,0.0,1.385890228079249,0.0007001816361336911,0.0365675087382945,0.7073833623449166,2,1.0,0.544973011154909,0.19499999999999998
+38,20,0.4984409744901669,0.0,1.3850576322765493,0.0007003772933178679,0.03669603229099016,0.707555592399398,2,1.0,0.49480324830055644,0.175
+38,21,0.6312651223156601,0.0,1.384817320383945,0.0006994895038086525,0.0367083838964634,0.7076056827855762,2,1.0,0.5375504077188672,0.145
+38,22,0.5961618686866325,0.0,1.383466102160781,0.000699322601591717,0.03670824848653433,0.7078852402549894,2,1.0,0.5872062289554417,0.13499999999999998
+38,23,0.587043672007598,0.0,1.3837848255628975,0.0007012395261200182,0.036723480865102895,0.7078185361922029,2,1.0,0.6234789066919936,0.12499999999999999
+38,24,0.6129743573810666,0.0,1.2926964063256996,0.0007588316676556235,0.03547224218738384,0.7262712530319417,2,1.0,0.6765811912702223,0.11999999999999998
+38,25,0.6431049961100537,0.0,1.3027847127922771,0.0007454473067589808,0.03617029000276324,0.7242664587710762,2,1.0,0.7436833203668456,0.10999999999999999
+38,26,0.5533740763043582,0.0,1.3030245644317864,0.0007675603858150481,0.03582375436724598,0.7242097235266123,2,1.0,0.6779135876811941,0.08999999999999998
+38,27,0.5134890516612056,0.0,1.318569697436072,0.0007536994210274672,0.036472593454530175,0.7210996730742367,2,1.0,0.6116301722040187,0.06999999999999998
+38,28,0.6693036046523672,0.0,1.3307679265661532,0.0007420909187195496,0.03599774530158294,0.7186445176233445,2,1.0,0.664345348841224,0.03999999999999998
+38,29,0.6602969509422423,0.0,1.3212518068018013,0.0007408563311835258,0.03624646219568924,0.7205651130479046,2,1.0,0.7009898364741411,0.009999999999999981
+38,30,0.5462020012904143,0.0,1.3107959193815972,0.000738331098227758,0.035804150355821775,0.7226665657922099,2,1.0,0.6540066709680479,0.0
+38,31,0.6784847923546986,0.0,1.3224149159023626,0.0007276611790093975,0.035908728197179954,0.7203361761719178,2,1.0,0.6949493078489954,0.0
+38,32,0.6260775139793381,0.0,1.3111638945106183,0.0007239461585116338,0.03593820520671517,0.7225985772771092,2,1.0,0.720258379931127,0.0
+38,33,0.6993210090603089,0.0,1.3220691252772356,0.0007142251303728853,0.03537246167564436,0.7204112436465533,2,1.0,0.7644033635343631,0.0
+38,34,0.6607615794700485,0.0,1.3100317704378548,0.0007094007549707157,0.03593310239275761,0.7228312824758569,2,1.0,0.802538598233495,0.0
+38,35,0.5760610177565942,0.0,1.3753930006871542,0.0006936031692677007,0.036317834907568264,0.7095541776355349,2,1.0,0.7535367258553142,0.0
+38,36,0.6413196854063737,0.0,1.3133272568593988,0.0007698303456183047,0.036585271213901385,0.7221463097676039,2,1.0,0.7710656180212458,0.0
+38,37,0.717144826677094,0.0,1.3234759845085369,0.0007557055970736858,0.03605991328244037,0.7201110672177562,2,1.0,0.8238160889236469,0.0
+38,38,0.6649031955331898,0.0,1.3710946189382494,0.0006928656931682619,0.036309810350985884,0.7104395232966361,2,1.0,0.849677318443966,0.0
+38,39,0.5961023760840221,0.0,1.3686503654488216,0.0006898370754757864,0.036066524679854536,0.7109433294389002,2,1.0,0.8203412536134072,0.0
+38,40,0.6640302526483401,0.0,1.3735351542779233,0.0006916826363819278,0.03640551030441196,0.7099376975777643,2,1.0,0.8467675088278007,0.0
+38,41,0.585998247135833,0.0,1.3707464465122925,0.000689595945483124,0.03607003606277741,0.7105124874857629,2,1.0,0.7866608237861102,0.0
+38,42,0.6548103842300841,0.0,1.2811458099724515,0.0007461129701126518,0.03499476322426823,0.7285665460751051,2,1.0,0.8160346141002806,0.0
+38,43,0.645895518816527,0.0,1.3673218275179995,0.0006876702837762449,0.03606811797317455,0.7112171613848549,2,1.0,0.8529850627217568,0.0
+38,44,0.69016182722624,0.0,1.3635800181333537,0.0006847732819002226,0.03626455145856483,0.7119862618786035,2,1.0,0.9005394240874667,0.0
+38,45,0.6031691748046963,0.0,1.3607407294964617,0.0006836266309495321,0.03594825472184243,0.7125686106712369,2,1.0,0.8438972493489877,0.0
+38,46,0.565110358898055,0.0,1.3666817815172416,0.0006870709136252884,0.036078195940424294,0.711348847077473,2,1.0,0.7837011963268502,0.0
+38,47,0.6502335055697865,0.0,1.30160017357509,0.0007207768312120298,0.03547585419837357,0.7245128020627253,2,1.0,0.8007783518992887,0.0
+38,48,0.6366231559405982,0.0,1.3627798828713225,0.0006846488093948183,0.03579244200355046,0.7121503622728711,2,1.0,0.8220771864686607,0.0
+38,49,0.6461726896582018,0.0,1.3589169002850048,0.00068186871644973,0.0358936727819906,0.7129427321622994,2,1.0,0.8539089655273395,0.0
+39,0,0.09231632966262728,0.0,1.3835105584967269,0.0006987053373536743,0.03647974075228279,0.7078763026082532,1,0.1282373290916193,0.1581108816018684,0.06
+39,1,0.16624601871274916,0.0,1.3849128916427562,0.0006996080021830798,0.03645940257396711,0.707585859674679,1,0.1599558853907524,0.20087152941995273,0.11
+39,2,0.11844954483593015,0.0,1.3832137080612432,0.000698642331659528,0.03657143814409555,0.7079377098168914,1,0.1971164962794566,0.16486257046040115,0.16999999999999998
+39,3,0.19840310013903334,0.0,1.3845226289942354,0.000698963063167902,0.036694036584814196,0.7076668684827584,1,0.24959892948615653,0.20347824939626194,0.21999999999999997
+39,4,0.20754745624712673,0.0,1.3854038453338509,0.000699948249599141,0.03676781134736935,0.7074841261935392,1,0.29356899916143336,0.24932768846875017,0.26999999999999996
+39,5,0.2776653426544335,0.0,1.3853326945023352,0.0006996753619218781,0.03674426012298363,0.7074989636097934,1,0.35815663312890583,0.3077017368643882,0.27999999999999997
+39,6,0.21803258900231104,0.0,1.3848434173296682,0.0006995417636163569,0.036673787354194014,0.7076002616760412,2,0.385788557485039,0.276688646275158,0.33999999999999997
+39,7,0.3093485700053696,0.0,1.3862943611198846,0.0007001722195526524,0.0366262511295184,0.7072997068701548,2,0.44265089793188334,0.3147358524307014,0.33499999999999996
+39,8,0.2390597624355582,0.0,1.3859178285735998,0.0007005699791719834,0.036457088083256414,0.7073774884570166,2,0.4641486431630326,0.2553591244283226,0.31499999999999995
+39,9,0.20980979705456443,0.0,1.3857108097080637,0.0007001492633199534,0.03644998180074796,0.7074205125566453,2,0.4765039472199274,0.21011138509196617,0.29499999999999993
+39,10,0.3184707591204161,0.0,1.385781082327656,0.0006999699119930017,0.036530053085726405,0.7074060417928248,2,0.5369071911393231,0.2351774740721769,0.2899999999999999
+39,11,0.3308494837652139,0.0,1.3859043662822779,0.0006999024695929145,0.03666343584526246,0.7073805514106453,2,0.6007498438834552,0.2686234613533487,0.2849999999999999
+39,12,0.28158949339114014,0.0,1.3859945518001404,0.0006999768416931411,0.03674414779108741,0.7073618524727295,2,0.6270073815661902,0.20712303280991207,0.2649999999999999
+39,13,0.38934361031125536,0.0,1.3860920110567498,0.0007000527895436445,0.03677878593574166,0.7073416464515542,2,0.6901871522087349,0.2592603567939938,0.2549999999999999
+39,14,0.3087099360993357,0.0,1.385724823796781,0.0006997910107471577,0.03674819293238933,0.7074177602586764,2,0.7030088419042074,0.20885613810954393,0.2349999999999999
+39,15,0.4613452425279063,0.0,1.3856865516621806,0.00069977231185874,0.0366867290111544,0.7074256894211864,2,0.7639714437197401,0.24651745741999098,0.2049999999999999
+39,16,0.3256117642476403,0.0,1.3861005535100785,0.0007001337236262537,0.03659902242918187,0.7073398445715697,2,0.7844587231738703,0.17017070378928575,0.18499999999999991
+39,17,0.4269624166987164,0.0,1.3857723073571409,0.0006999003293095015,0.03642440146634135,0.7074078868616283,2,0.8321440210250183,0.21904003113319992,0.1749999999999999
+39,18,0.3484285333413896,0.0,1.384165577405192,0.0006989537078652006,0.036415726841103016,0.7077407317345019,2,0.8568204968232347,0.16180453151085838,0.15499999999999992
+39,19,0.440351833595766,0.0,1.386011328808724,0.0007005613832744724,0.03657303602686217,0.7073581375988528,2,0.8952739470763007,0.1900198403968692,0.1449999999999999
+39,20,0.5271568227741343,0.0,1.385573080347879,0.0007009205079415058,0.0367098242563769,0.7074486992737332,2,0.9643328865028596,0.23213437499377804,0.11499999999999991
+39,21,0.48689224430725536,0.0,1.3848852348971854,0.0006992282935040305,0.036730405528597077,0.7075917391745863,2,1.0,0.25630748102418466,0.1099999999999999
+39,22,0.5130935870653733,0.0,1.3840437310804974,0.0006986414814170553,0.0366959469132621,0.70776606340958,2,1.0,0.3103119568845777,0.09999999999999991
+39,23,0.42547325353302834,0.0,1.3846190372009204,0.0006991030382944148,0.03670049248480824,0.7076468657697513,2,1.0,0.25157751177676124,0.0799999999999999
+39,24,0.49575559470003994,0.0,1.3855589875420786,0.0006996781607366779,0.03665639654090401,0.7074521302248814,2,1.0,0.2858519823334666,0.0749999999999999
+39,25,0.48660272741801935,0.0,1.3846120924383358,0.0006992801709271589,0.03650556879392164,0.7076482292282867,2,1.0,0.3220090913933979,0.0699999999999999
+39,26,0.5000713140564264,0.0,1.3831912115953586,0.0006987836637615421,0.03654617963624445,0.707942302763714,2,1.0,0.366904380188088,0.06499999999999989
+39,27,0.44495684538544616,0.0,1.38120456339522,0.0006981423508680977,0.03626863839352628,0.7083531573664509,2,1.0,0.3165228179514873,0.04499999999999989
+39,28,0.41257351509278545,0.0,1.3822451504453142,0.0007007649651714072,0.03657673329064551,0.7081370528917622,2,1.0,0.275245050309285,0.024999999999999887
+39,29,0.518442636508155,0.0,1.3824680898035582,0.0007030350016832826,0.03665412285043897,0.7080900354519183,2,1.0,0.32814212169385026,0.014999999999999887
+39,30,0.5109259862642813,0.0,1.3836839637211318,0.0007014340396821127,0.03673871915350862,0.707839314687414,2,1.0,0.3697532875476046,0.0049999999999998865
+39,31,0.5393406462409528,0.0,1.3839540974036058,0.0007000662783974855,0.03673173876797227,0.7077840129209649,2,1.0,0.43113548746984287,0.0
+39,32,0.5341969048473858,0.0,1.3786285105912213,0.0007061461105717265,0.03669970754827526,0.7088817522262297,2,1.0,0.480656349491286,0.0
+39,33,0.5424100422503516,0.0,1.3813262604957592,0.0007038417164996495,0.03656701647502152,0.7083256604742628,2,1.0,0.5080334741678388,0.0
+39,34,0.5514091719639019,0.0,1.3827551289225406,0.0007018860844417615,0.036515571038158716,0.7080311763578363,1,1.0,0.5380305732130066,0.0
+39,35,0.5879665813205178,0.0,1.3862943611198846,0.0007001722195526524,0.03634753996308647,0.7072997068701548,0,1.0,0.5932219377350594,0.01
+39,36,0.5426365171465672,0.0,1.3862943611198846,0.0007001722195526523,0.036507951022397754,0.7072997068701548,0,1.0,0.6087883904885574,0.02
+39,37,0.5596062034193952,0.0,1.3862943611198844,0.0007001722195526526,0.03664691093095758,0.7072997068701548,0,1.0,0.598687344731317,0.08
+39,38,0.539573418805769,0.0,1.3860154849237258,0.0007001625837240865,0.0367343568294166,0.7073574423768355,0,1.0,0.5652447293525634,0.16
+39,39,0.5461609423049718,0.0,1.3858941048919502,0.0006998885780546914,0.03676769927673486,0.7073826811961289,0,1.0,0.5538698076832396,0.22
+39,40,0.5410518322417532,0.0,1.3859839639319167,0.0007002402279497936,0.03677787288103415,0.7073639351258829,0,1.0,0.5701727741391776,0.22
+39,41,0.532108100930588,0.0,1.3862912507242184,0.000700171747492569,0.036730170367693174,0.7073003510005571,0,1.0,0.5403603364352934,0.3
+39,42,0.5400652222670601,0.0,1.3860118755885598,0.0007001960366903489,0.036636978263845044,0.7073581756693899,0,1.0,0.5668840742235336,0.3
+39,43,0.5309376824359374,0.0,1.38586580987256,0.0006998694647457194,0.03647163277007982,0.7073885459289264,0,1.0,0.5364589414531247,0.38
+39,44,0.5531155672176588,0.0,1.3858814998811209,0.0006998954104718802,0.03641414461292317,0.7073852875025464,0,1.0,0.5770518907255293,0.39
+39,45,0.5415088217200945,0.0,1.3859665501667793,0.000700087609968806,0.03654391847750404,0.7073676029491495,0,1.0,0.5716960724003151,0.47000000000000003
+39,46,0.5502796600326066,0.0,1.3854102538256474,0.0006995501870970536,0.036638529341848455,0.7074829647109855,0,1.0,0.6009322001086888,0.47000000000000003
+39,47,0.5586919684587623,0.0,1.3758649859846395,0.0006928337279496996,0.036324926485083675,0.7094572151661374,0,1.0,0.595639894862541,0.53
+39,48,0.5411038477876954,0.0,1.3844857302524722,0.0006996201582551802,0.03672358741934921,0.7076742299636699,2,1.0,0.570346159292318,0.61
+39,49,0.6068414202412666,0.0,1.320655649922681,0.0007848677380785669,0.036613644769018364,0.7206674148979479,2,1.0,0.6228047341375553,0.6
+40,0,0.21989269916064497,0.0,1.3829894967343426,0.0006986333644633357,0.03647121610887483,0.707984069725215,1,0.17786685587475787,0.25879766534826576,0.0
+40,1,0.1345655854739442,0.0,1.3833354655340286,0.0006994906999869386,0.03641696564650049,0.7079121835336463,1,0.20193255233861335,0.21296397385143184,0.06
+40,2,0.2574468465851364,0.0,1.3841134591044453,0.0006995911927431374,0.03660876211721812,0.7077512482506177,1,0.2669101003393952,0.28009437155449346,0.06
+40,3,0.27546217946981516,0.0,1.3842940143604385,0.0007004213301379616,0.0366802758418215,0.7077135574694259,1,0.3146780558958834,0.35108286635418673,0.06999999999999999
+40,4,0.21092404009358556,0.0,1.3836585800221117,0.0007005620002346327,0.036746304642702565,0.7078449247567362,1,0.34015988993326934,0.3062269287231377,0.13
+40,5,0.2871092972951534,0.0,1.3845152222563584,0.000700262901296688,0.036737471889079366,0.7076678629400988,1,0.3811225808861791,0.34572131328330236,0.18
+40,6,0.36039854064288357,0.0,1.3844200938693294,0.0006996022385482667,0.03666363100198676,0.7076878154839344,1,0.4443112610686786,0.4162986642294869,0.18
+40,7,0.3767566314451755,0.0,1.38606649969277,0.0007001703863142696,0.036616682272167314,0.7073468788300614,1,0.49781679391038175,0.47506917858847314,0.19
+40,8,0.3965014660234716,0.0,1.3862597577124152,0.0007001501814552203,0.03647956186031458,0.7073068797773988,1,0.5641559910842716,0.5301562304799221,0.2
+40,9,0.4321619417639727,0.0,1.3861284024275866,0.000700132229829406,0.036391408459455446,0.7073340801470785,1,0.6165585936141603,0.5878881133300555,0.21000000000000002
+40,10,0.4687733912970532,0.0,1.3789604674335192,0.0006964601526437485,0.03647152484001567,0.7088172403591821,1,0.6683640604874714,0.6494865670881274,0.22000000000000003
+40,11,0.42289034184149676,0.0,1.3822602776416244,0.0007036631297948237,0.03667128975759998,0.7081327284202769,1,0.6974284731540257,0.5959679207919593,0.28
+40,12,0.4982423037518792,0.0,1.3791346450947308,0.0006981975431667175,0.03652598829689698,0.7087805723592122,1,0.73661046976264,0.6347621311165175,0.33
+40,13,0.541442724763131,0.0,1.3836890034067104,0.0007024730465137726,0.036766954354253936,0.7078378427249666,1,0.7902073816723482,0.6829004705926974,0.34
+40,14,0.4799611283282984,0.0,1.3834363520921724,0.0006981860056291829,0.0366798320446237,0.7078918621000663,1,0.824493393747537,0.637961468388868,0.4
+40,15,0.5518410072084279,0.0,1.33189032731892,0.0007670865522672414,0.0364686808165861,0.7184074055638012,1,0.8614181570046626,0.6678155075226533,0.45
+40,16,0.6171789032893035,0.0,1.3414369443622303,0.0007549306267597136,0.03666369307319545,0.716477060280011,1,0.9121669914400076,0.7264015209510029,0.45
+40,17,0.6420015323007578,0.0,1.3378388132616168,0.0007641398918313044,0.0361545589036689,0.7172036709499681,1,0.979068698438833,0.7977582928238878,0.45
+40,18,0.5837532523943549,0.0,1.3332869563914251,0.0007718359037334485,0.0366754364120283,0.7181228610993529,1,1.0,0.7791775079811831,0.51
+40,19,0.680192425960289,0.0,1.3422914888112008,0.0007596219007993671,0.03639594920924178,0.7163015313355194,1,1.0,0.8339747532009633,0.51
+40,20,0.6804494734744603,0.0,1.3603299735345324,0.0006906046332057585,0.03590513896816607,0.7126498742347221,1,1.0,0.9014982449148677,0.52
+40,21,0.7176715803005824,0.0,1.3588769297568313,0.0006935960311668897,0.036064941642817476,0.7129461122181562,1,1.0,0.958905267668608,0.52
+40,22,0.6315515921136425,0.0,1.358272011265721,0.0006983080213726106,0.03599476477168262,0.7130679670681337,1,1.0,0.9385053070454751,0.5800000000000001
+40,23,0.73,0.0,1.3552726321745476,0.0006928681166976598,0.03587274995095813,0.7136834769378388,1,1.0,1.0,0.5800000000000001
+40,24,0.6373736326634514,0.0,1.3537306663730628,0.0006970737046254395,0.036210070343610457,0.7139967398103225,2,1.0,0.9579121088781712,0.6400000000000001
+40,25,0.77,0.0,1.334076209023352,0.0007095228558139995,0.0354214151315141,0.7179883062877155,2,1.0,1.0,0.6100000000000001
+40,26,0.71,0.0,1.3311097461616213,0.0007145760424297214,0.036154762899231294,0.7185865266370435,2,1.0,1.0,0.6050000000000001
+40,27,0.77,0.0,1.3458130997953233,0.0007087009613345938,0.03578119361587659,0.715606073828855,2,1.0,1.0,0.5750000000000001
+40,28,0.6361540113476682,0.0,1.3420213516765032,0.0007121643800590969,0.03616262434721064,0.7163757090617869,2,1.0,0.9538467044922279,0.555
+40,29,0.7687404400469311,0.0,1.3399781547291698,0.0007049394839873404,0.03572585463739565,0.7167935987185985,2,1.0,0.9958014668231036,0.525
+40,30,0.71,0.0,1.3356137465069982,0.0007078179112864005,0.035733546497631594,0.7176775705915267,2,1.0,1.0,0.52
+40,31,0.6346557233737695,0.0,1.3495372839374153,0.0007029074760960584,0.03601620363151111,0.7148499038362232,2,1.0,0.9488524112458987,0.5
+40,32,0.6000293659051803,0.0,1.3472563619716418,0.0006967695344146823,0.03557339531384328,0.7153171177844074,2,1.0,0.9000978863506012,0.48
+40,33,0.6968685208461078,0.0,1.3445183430142291,0.0006913517887394058,0.03598863281150546,0.7158765590159142,2,1.0,0.9228950694870263,0.47
+40,34,0.7583299533693872,0.0,1.345573584199296,0.0006984622066789775,0.03555962688960059,0.7156589831049508,2,1.0,0.9610998445646242,0.43999999999999995
+40,35,0.72,0.0,1.3419433179400357,0.0007012069674098296,0.03614180126248282,0.7163960163265487,2,1.0,1.0,0.42999999999999994
+40,36,0.7,0.0,1.3421011255337736,0.0007092573073739093,0.03570404896885719,0.7163606815722192,2,1.0,1.0,0.41999999999999993
+40,37,0.71,0.0,1.3409918300593913,0.00071613355456392,0.036218108708764525,0.7165832300465457,2,1.0,1.0,0.4149999999999999
+40,38,0.72,0.0,1.3539749515141406,0.0007105917943142952,0.0361736891399206,0.7139413313160307,2,1.0,1.0,0.4049999999999999
+40,39,0.7,0.0,1.3520274183239964,0.0007157129590896452,0.03612604871813409,0.7143368184581164,2,1.0,1.0,0.3949999999999999
+40,40,0.6362541238698894,0.0,1.3494117245184596,0.0007198480454347096,0.03609975364781899,0.7148685911246636,2,1.0,0.9541804128996315,0.3749999999999999
+40,41,0.7172242762254702,0.0,1.3483134267640846,0.0007128242483341114,0.03606340364080696,0.715095267931883,2,1.0,0.9907475874182342,0.3649999999999999
+40,42,0.6337711550909295,0.0,1.3451493594483266,0.000716496872884225,0.036248809668392466,0.7157379627057157,2,1.0,0.9459038503030984,0.34499999999999986
+40,43,0.7010020779334754,0.0,1.343555337330573,0.0007093240985592507,0.03571616138582269,0.7160650830007669,2,1.0,0.9700069264449181,0.33999999999999986
+40,44,0.72,0.0,1.3559867082181536,0.0007049458204574619,0.036379396975875486,0.7135326033938314,2,1.0,1.0,0.32999999999999985
+40,45,0.6390060785420384,0.0,1.3697843111708816,0.0006977534597404541,0.03650629153466967,0.7107069893157505,2,1.0,0.9633535951401283,0.30999999999999983
+40,46,0.6008390010330212,0.0,1.373269896986993,0.0006957753940579636,0.03624646996863935,0.7099906325250188,2,1.0,0.9027966701100709,0.2899999999999998
+40,47,0.7072040610306205,0.0,1.3748748098455934,0.0006943607771196305,0.03638835815921827,0.7096606462594462,2,1.0,0.9573468701020685,0.2799999999999998
+40,48,0.7,0.0,1.3698288356165178,0.0006922083094443238,0.03630306423267742,0.7107001151213558,2,1.0,1.0,0.2699999999999998
+40,49,0.77,0.0,1.3637887662735466,0.0006894596676565808,0.03602397141717829,0.7119415315383348,2,1.0,1.0,0.2399999999999998
+41,0,0.09852925363140264,0.0,1.3844228159846854,0.0006994818208414615,0.03646531945701252,0.7076873021917809,1,0.13886785568919957,0.16641834713394263,0.06
+41,1,0.17960779380439146,0.0,1.3831038183321596,0.0006981105688518129,0.03647178850683277,0.7079606501943352,1,0.1979540725989313,0.20107956131588503,0.11
+41,2,0.2528950355221776,0.0,1.38423280015486,0.0006994637945926154,0.0366073833822166,0.7077266159096409,1,0.26498434618673833,0.26716838118939734,0.11
+41,3,0.27065689605559096,0.0,1.3845569346439603,0.0007001128331995801,0.03668318582139222,0.7076592957458935,1,0.3148190819381449,0.3349007245908009,0.11
+41,4,0.3039965556659239,0.0,1.384552988305726,0.0007008180024527892,0.03676483729075673,0.7076598203871973,1,0.36238599121827586,0.3905381957984245,0.12
+41,5,0.3210227832540644,0.0,1.3839603935045983,0.0007010813364386086,0.03673677310364827,0.7077822908414452,1,0.4139034508775813,0.4538552514897033,0.13
+41,6,0.27645805507980903,0.0,1.3860142673283176,0.0007001216116775824,0.0367131186551332,0.707357711385197,1,0.44000098711352836,0.408192365300247,0.19
+41,7,0.37191087963613173,0.0,1.3861092806941977,0.0007000548193620164,0.03662037527561592,0.7073380706203586,1,0.4888840905853694,0.46933815977084153,0.2
+41,8,0.38719380859089425,0.0,1.3857018626171462,0.0006999265333137637,0.03645281804631254,0.7074224565923447,1,0.5241346678478445,0.5124889161471623,0.25
+41,9,0.4332363735156065,0.0,1.3857234189757774,0.000699771188578612,0.03644041785077089,0.7074180592309502,1,0.5716226237083512,0.5772281840589455,0.26
+41,10,0.37135985649130654,0.0,1.3850458825683667,0.0006994253647542607,0.03649637639706598,0.7075584175963564,1,0.622432031714056,0.5116954846379566,0.32
+41,11,0.4576525093445764,0.0,1.3825993361701918,0.0006985434762276402,0.03656991615475147,0.7080647631604713,1,0.6397101054220127,0.5791799081562401,0.33
+41,12,0.3962362578006208,0.0,1.3823279588999644,0.0006994061773452858,0.03664178880819525,0.7081204995156737,1,0.6686366845463356,0.5407113940313445,0.39
+41,13,0.4670426197727042,0.0,1.365680254397001,0.0006871900981776658,0.035932158945803136,0.7115543998472262,1,0.7206393997652886,0.5493960995161774,0.44
+41,14,0.5124976821644213,0.0,1.3632436349849582,0.0006863539392046139,0.03609931357058653,0.7120545881288017,1,0.7737965374027549,0.6055629802448569,0.45
+41,15,0.5674832646452811,0.0,1.3812916483536506,0.0006991800356842047,0.03659548994565429,0.7083347374846704,1,0.8248051859864456,0.6626714985000839,0.45
+41,16,0.4903558063352692,0.0,1.3170787515687439,0.0007757854315128472,0.03662598536283179,0.7213905478055771,1,0.8664338599059327,0.6236798512273094,0.51
+41,17,0.5669930814254162,0.0,1.3264040456240238,0.0007627992213500902,0.03603208111990107,0.7195176699015517,1,0.9077249279050937,0.664297855528778,0.56
+41,18,0.5175192013782823,0.0,1.337818739093783,0.0007503905171505846,0.036670499227576876,0.7172133197113709,2,0.9368750634341259,0.6320430972544613,0.6200000000000001
+41,19,0.6174166606267832,0.0,1.3450460314135828,0.0006842021140280028,0.035743533803761905,0.7157721254915902,2,0.9807178062507478,0.6805514281300719,0.6100000000000001
+41,20,0.6246949291733773,0.0,1.33952850658688,0.0006829042254982337,0.035651005712883446,0.7168938131423522,2,1.0,0.7156497639112579,0.6050000000000001
+41,21,0.6124449655884079,0.0,1.3366248077324911,0.0006783143383477079,0.035233562915955675,0.7174846287788111,2,1.0,0.7414832186280266,0.6000000000000001
+41,22,0.6590910492239705,0.0,1.3328999731374722,0.0006739163935673778,0.035278998753680305,0.7182408223936783,2,1.0,0.796970164079902,0.5900000000000001
+41,23,0.7182286535903154,0.0,1.3273957916053272,0.0006727728834862066,0.03493422958362545,0.7193538312742338,2,1.0,0.8274288453010514,0.56
+41,24,0.713522271504097,0.0,1.3608798563152154,0.0006942793319248007,0.03627453667474033,0.7125357506918626,2,1.0,0.8784075716803234,0.53
+41,25,0.6998056605376337,0.0,1.3585371608132473,0.0006966134908209757,0.0357972001710387,0.713014407351383,2,1.0,0.9326855351254457,0.52
+41,26,0.6142328592855562,0.0,1.3583605100053138,0.0007017255039068066,0.03639046460624652,0.7130484612013456,2,1.0,0.8807761976185208,0.5
+41,27,0.6963205254803972,0.0,1.356168058215401,0.0006968994012925834,0.035776653265326266,0.7134988230061036,2,1.0,0.9210684182679908,0.49
+41,28,0.6108240701925252,0.0,1.3552171251839242,0.000701431112875194,0.03629439350368905,0.7136913196225878,2,1.0,0.8694135673084171,0.47
+41,29,0.6832647609166915,0.0,1.352784098016165,0.0006962596961604698,0.03579952113814121,0.7141903273301816,2,1.0,0.910882536388972,0.46499999999999997
+41,30,0.6710872484821822,0.0,1.3633356624978694,0.0006950449433745005,0.036110995673791585,0.7120321550622191,2,1.0,0.9369574949406074,0.45999999999999996
+41,31,0.6824969257518284,0.0,1.3714054009723688,0.000694987263545748,0.03632404228996553,0.7103747135316194,2,1.0,0.9749897525060949,0.45499999999999996
+41,32,0.6269040182849162,0.0,1.3773898199240047,0.0006957297392059194,0.03644192876720931,0.7091416096735889,2,1.0,0.9230133942830541,0.43499999999999994
+41,33,0.7624720576486035,0.0,1.374964136708473,0.0006930801442412218,0.03641765909740106,0.7096427685412059,2,1.0,0.9749068588286786,0.4049999999999999
+41,34,0.6256178825628689,0.0,1.3741817760231465,0.0006943405999918926,0.036134071372305995,0.7098034281820754,2,1.0,0.9187262752095631,0.3849999999999999
+41,35,0.6953691248320513,0.0,1.3715160580835206,0.0006913089824334491,0.03647896750237337,0.7103534597586431,2,1.0,0.9512304161068379,0.3799999999999999
+41,36,0.72,0.0,1.3770393649072399,0.0006937069150160414,0.03618271941017999,0.7092147234838245,2,1.0,1.0,0.3699999999999999
+41,37,0.7,0.0,1.37759947675072,0.0006949942588005498,0.03646317231739147,0.7090986674316453,2,1.0,1.0,0.3599999999999999
+41,38,0.77,0.0,1.3769245889390112,0.0006960808149470603,0.0364324807048379,0.7092374139825596,2,1.0,1.0,0.32999999999999985
+41,39,0.72,0.0,1.339807687015725,0.0006668806282666384,0.03529657479749547,0.716843653015847,2,1.0,1.0,0.31999999999999984
+41,40,0.71,0.0,1.3309661040602236,0.0006593300068768969,0.03505436990943145,0.7186379147768088,2,1.0,1.0,0.31499999999999984
+41,41,0.6409851673278315,0.0,1.334002292628526,0.0006636668800435528,0.03552271750442318,0.7180218416863274,2,1.0,0.9699505577594387,0.2949999999999998
+41,42,0.6065222794188992,0.0,1.3357935057030994,0.0006680555664871919,0.03478900212842427,0.7176572609860052,2,1.0,0.921740931396331,0.2749999999999998
+41,43,0.7603529926277233,0.0,1.335707792100549,0.0006719464766191766,0.03577856413380158,0.717673051670219,2,1.0,0.9678433087590776,0.2449999999999998
+41,44,0.6278617539619424,0.0,1.3495346143692337,0.0006759345029923281,0.03528020135673959,0.7148614441750563,2,1.0,0.9262058465398083,0.2249999999999998
+41,45,0.6006162044063585,0.0,1.3482576383249056,0.0006777067881384984,0.03598201238829764,0.7151209424822674,2,1.0,0.9020540146878617,0.20499999999999982
+41,46,0.690967897729456,0.0,1.3459441442479638,0.0006789629706064016,0.03543703773921184,0.7155915084167659,2,1.0,0.936559659098187,0.19999999999999982
+41,47,0.620563638756704,0.0,1.3489474591131316,0.0006853636647074471,0.035853439932724475,0.7149772685842988,2,1.0,0.90187879585568,0.17999999999999983
+41,48,0.7595349586847024,0.0,1.3462228191138057,0.0006872103766269678,0.03569595946450726,0.7155314315723115,2,1.0,0.9651165289490082,0.14999999999999983
+41,49,0.6256713388014551,0.0,1.3580010925933985,0.0006873555803773208,0.03571103801076859,0.7131278756269169,2,1.0,0.918904462671517,0.12999999999999984
+42,0,0.08929557391099621,0.0,1.384408255105268,0.000700525724860927,0.03642220941590846,0.7076898824392872,1,0.12014725461159752,0.1574801159897903,0.06
+42,1,0.18891004179188908,0.0,1.3813867598373781,0.0006973804931753819,0.03650492665487868,0.7083158309703952,1,0.17402336002020838,0.2266728859493872,0.06999999999999999
+42,2,0.24752394827797697,0.0,1.3843072882672993,0.0007005339192100419,0.03663135042202968,0.707710765107314,1,0.2404000486483327,0.27794643750353515,0.06999999999999999
+42,3,0.16368992282383915,0.0,1.383690943712884,0.0007011721920236027,0.036674598552395146,0.7078379795053176,1,0.2644335023213531,0.23712732337121858,0.13
+42,4,0.14159387126997083,0.0,1.3844897828053686,0.0007008318207235896,0.036765441145631295,0.7076728902878627,1,0.2901984801997733,0.20008134400016725,0.19
+42,5,0.2577683031258821,0.0,1.3849939880658788,0.0007005566717734821,0.03675747707387493,0.7075686872962659,1,0.34587108050728654,0.2557114164944395,0.2
+42,6,0.26631439619434666,0.0,1.384400541147597,0.0007006038306299463,0.036673120955806465,0.7076914458693274,1,0.3730444509299485,0.31916279456288243,0.21000000000000002
+42,7,0.3092813083621758,0.0,1.3836502671799251,0.0007006437113853925,0.0365905501006205,0.7078466100578847,1,0.4290518842774708,0.39704382955020345,0.22000000000000003
+42,8,0.2673152482729533,0.0,1.3805803625636024,0.000698775535462968,0.0363250056870824,0.7084818320454287,1,0.4612561002552743,0.3529187106120243,0.28
+42,9,0.3382759054969032,0.0,1.382026569755825,0.0006985242129739333,0.036536733718809306,0.7081831530151136,1,0.4990976147905638,0.37863913440068625,0.33
+42,10,0.40951718267233317,0.0,1.3817753892642055,0.0006976846087513265,0.03641698922257283,0.7082354061928404,1,0.5619180528595417,0.44281954723831196,0.33
+42,11,0.4160017750050704,0.0,1.3851090224232694,0.0006994330181360845,0.03664872439437587,0.7075453493903758,1,0.603607752494832,0.4824635387729307,0.34
+42,12,0.47808736856068146,0.0,1.3668295731236557,0.0006875424734527186,0.03614598400059149,0.7113183061685554,1,0.6704619795181548,0.544752252431091,0.34
+42,13,0.46927846379362936,0.0,1.3644826416330669,0.0006857397913353632,0.03586590331041267,0.7118007363057527,1,0.705789693271809,0.5741735704949873,0.39
+42,14,0.4178750070595323,0.0,1.3619531797755122,0.000684479202013633,0.036049383072255664,0.7123198697642887,1,0.7343358139275648,0.5361915739496157,0.45
+42,15,0.5317571486308827,0.0,1.3656703916567543,0.0006882193783413187,0.03595224284272165,0.7115560016114282,1,0.7825256028483557,0.5929106254465276,0.45
+42,16,0.5387936103082334,0.0,1.363014948398612,0.0006855868740894288,0.03615253265892152,0.7121017886343243,1,0.8199158315769454,0.6394102308543418,0.46
+42,17,0.555263372465602,0.0,1.3518123620120814,0.000726057301179397,0.03625200466643883,0.7143764794110077,1,0.852420960463044,0.6897201210117886,0.51
+42,18,0.5046243132800898,0.0,1.360829629654881,0.0007190978669515257,0.03656992902128683,0.7125358714567726,1,0.8852611763520865,0.649276338522865,0.5700000000000001
+42,19,0.5820107759673193,0.0,1.362873350261797,0.0007130880031121221,0.03620567577762461,0.7121195415745243,2,0.9332946165427223,0.6845255339245552,0.6200000000000001
+42,20,0.5273904272387145,0.0,1.3393936577930523,0.0007207899065393912,0.03594540424238734,0.7169058031713901,2,0.9593519214927534,0.638724182387503,0.6000000000000001
+42,21,0.6099431174104306,0.0,1.351549135572092,0.0007149297184661514,0.03611185888550401,0.7144347262905995,2,1.0,0.6664770580347688,0.5950000000000001
+42,22,0.6340909982123472,0.0,1.3500742524718659,0.0007081941579627324,0.036039698553755904,0.7147382800306025,2,1.0,0.7136366607078239,0.5850000000000001
+42,23,0.7052983168593614,0.0,1.347111341589089,0.0007111748413264399,0.035883427292756835,0.7153407819797535,2,1.0,0.7843277228645383,0.555
+42,24,0.5692055722101073,0.0,1.3457822751279183,0.0007184101112843947,0.03624873945496955,0.7156083951788613,2,1.0,0.7306852407003576,0.535
+42,25,0.6343121046231889,0.0,1.3570918847746185,0.0007130830852421108,0.03612494448482088,0.7133033196180064,2,1.0,0.7477070154106298,0.53
+42,26,0.5592486695768369,0.0,1.3556910190654536,0.000706677768295047,0.03640254352364164,0.7135923316273534,2,1.0,0.6974955652561231,0.51
+42,27,0.6442435943892415,0.0,1.3648905431954201,0.0007037312986269651,0.03608353872803765,0.7117096690645365,2,1.0,0.7474786479641382,0.5
+42,28,0.7114159555956905,0.0,1.3623988729881642,0.0007060561613887165,0.03635125752486336,0.7122196846803028,2,1.0,0.8047198519856349,0.47
+42,29,0.674517824660966,0.0,1.3728769506623038,0.0006910043777295333,0.03615040688817823,0.7100734994563559,2,1.0,0.8483927488698868,0.45999999999999996
+42,30,0.5864620412841868,0.0,1.370495355756523,0.0006896444941454981,0.03630979992450131,0.71056411026117,2,1.0,0.7882068042806226,0.43999999999999995
+42,31,0.7190252582052842,0.0,1.3345865536191996,0.0007285188938608181,0.035908705365343255,0.7178772652060633,2,1.0,0.8300841940176141,0.4099999999999999
+42,32,0.68472796356592,0.0,1.3739375516897931,0.0006980645289754136,0.03645476971780988,0.7098521975745915,2,1.0,0.8824265452197334,0.3999999999999999
+42,33,0.602099979319078,0.0,1.3690312558766249,0.0006967695791166801,0.036153328340713865,0.7108621992928181,2,1.0,0.8403332643969266,0.3799999999999999
+42,34,0.6876899102570582,0.0,1.3703732530436645,0.000694282246409639,0.03649253543313976,0.7105873140644413,2,1.0,0.8922997008568607,0.3699999999999999
+42,35,0.6763233056858019,0.0,1.3650388035388898,0.0006923009699164539,0.03584962888347654,0.7116839389972867,2,1.0,0.9210776856193398,0.3599999999999999
+42,36,0.6959856339163892,0.0,1.3589027875476327,0.000689899588650479,0.03633444551603154,0.7129423332873347,2,1.0,0.9532854463879643,0.35499999999999987
+42,37,0.72,0.0,1.3637126256041885,0.0006884419862345421,0.03592737922092941,0.7119575636749192,2,1.0,1.0,0.34499999999999986
+42,38,0.71,0.0,1.356729971039159,0.0006849179949642363,0.03608866599219366,0.7133888435761899,2,1.0,1.0,0.33999999999999986
+42,39,0.69,0.0,1.3600451033796386,0.0006838257376737941,0.03584823427140391,0.7127109824403222,2,1.0,1.0,0.33499999999999985
+42,40,0.77,0.0,1.3611731279448778,0.0006831481285119119,0.0359763177901149,0.7124802370672468,2,1.0,1.0,0.3049999999999998
+42,41,0.71,0.0,1.357788778828287,0.0006803137151882148,0.03602991272956824,0.7131741890012138,2,1.0,1.0,0.2999999999999998
+42,42,0.72,0.0,1.357095314916227,0.0006799079909386899,0.03565686593700518,0.7133161867015,2,1.0,1.0,0.2899999999999998
+42,43,0.71,0.0,1.35047764153545,0.0006752762752982427,0.036019556242893866,0.7146694521538859,2,1.0,1.0,0.2849999999999998
+42,44,0.77,0.0,1.3487911511669948,0.0006749494163275,0.035505293601567525,0.7150133649196263,2,1.0,1.0,0.2549999999999998
+42,45,0.6341787042707195,0.0,1.3578091217750385,0.000682045521695517,0.03612585562991105,0.713169319183645,2,1.0,0.9472623475690652,0.2349999999999998
+42,46,0.597508259999673,0.0,1.3630957998520847,0.0006840980214390042,0.03571391894104353,0.7120858232530362,2,1.0,0.8916941999989102,0.2149999999999998
+42,47,0.749944722085069,0.0,1.366208223548477,0.000686448783165809,0.03618771389660766,0.7114463292257053,2,1.0,0.933149073616897,0.1849999999999998
+42,48,0.6949978991504684,0.0,1.3728021336162368,0.0006909131512369022,0.03625999995963562,0.71008893929432,2,1.0,0.9499929971682282,0.1799999999999998
+42,49,0.6213624767804945,0.0,1.371533545521553,0.0006899999934071718,0.036283314683655296,0.710350400336539,2,1.0,0.9045415892683151,0.1599999999999998
+43,0,0.1747876463863778,0.0,1.3839837336599836,0.0007015722347010676,0.0363700000551566,0.7077772603913594,1,0.15487130772925556,0.23527562893712792,0.05
+43,1,0.13033132814694867,0.0,1.3839146181540027,0.000700961811292206,0.03643418162219523,0.7077918077488402,1,0.18595698709435013,0.21748794221308712,0.11
+43,2,0.11596897041882807,0.0,1.384676876550668,0.0007007723905221209,0.03664131779298357,0.7076342089230943,1,0.22416626598879497,0.19170259107583282,0.16999999999999998
+43,3,0.2357625230620234,0.0,1.3801629118885272,0.00069854335229907,0.03653801263160993,0.7085681387436631,1,0.2823291863037004,0.2564910261857609,0.18
+43,4,0.25140763934116034,0.0,1.3839654903110432,0.0007006434035372962,0.03675003971446983,0.7077814178382169,1,0.33718909970110256,0.27797151481924814,0.22999999999999998
+43,5,0.31533797169491085,0.0,1.3840996177557678,0.0006999607888669144,0.03672064099741396,0.7077539582856627,1,0.39404398395458445,0.32474192436935423,0.22999999999999998
+43,6,0.32987280361731414,0.0,1.3842805166960805,0.0007010562118140889,0.03667701753188872,0.7077160868664183,1,0.4518871180131133,0.3723743743757483,0.22999999999999998
+43,7,0.36688276015570553,0.0,1.3791929343760199,0.0006967975926761353,0.03648701737363848,0.7087691186262107,1,0.49416682048280486,0.4464145766224128,0.24
+43,8,0.4307657582827479,0.0,1.3835903271617411,0.0006988364348373189,0.036383397207919194,0.7078597529560516,1,0.5663149201184202,0.5085184541376694,0.24
+43,9,0.348121643923676,0.0,1.3843361471200177,0.0007003976986878287,0.03651121622431529,0.7077048517946245,1,0.5871598543446755,0.47538564967679864,0.3
+43,10,0.4224550624876237,0.0,1.3847911517052514,0.0006998563629812265,0.03649207081675514,0.7076109452480438,1,0.6321065883438443,0.5040591885575942,0.35
+43,11,0.3751789333844212,0.0,1.3727965317463995,0.0006916156935251965,0.03614773896730154,0.7100898032548414,1,0.6774664924459536,0.4602188700944584,0.41
+43,12,0.4491229058931428,0.0,1.3758274252479121,0.0006930092256780639,0.036415159548924735,0.7094648850638144,1,0.719181688891811,0.4913643826033633,0.45999999999999996
+43,13,0.49922530477583466,0.0,1.3741148694738756,0.0006918951440351912,0.03626918891568342,0.7098182169813938,2,0.776322685236454,0.5583745498102527,0.47
+43,14,0.42519164466456694,0.0,1.3831395381542992,0.0007042743768038715,0.03675237907340636,0.707950716173486,2,0.7891867137017132,0.49658764956322465,0.44999999999999996
+43,15,0.3995882215568224,0.0,1.3822712111827853,0.0007056587922425238,0.03673969295653452,0.7081296437279255,2,0.8151581702475593,0.4476095399005887,0.42999999999999994
+43,16,0.5267606821878952,0.0,1.3299419029144761,0.0007676891400329146,0.03663101328300826,0.7188011569371373,2,0.8783123926927668,0.4978378158180894,0.41999999999999993
+43,17,0.450024713147143,0.0,1.3264617944292008,0.000775805971810665,0.03628434748995466,0.7195007653528338,2,0.8950961544076634,0.45580353034820287,0.3999999999999999
+43,18,0.5305915807734776,0.0,1.3374805296417434,0.0007638530978421294,0.03663492257244516,0.7172764496159285,2,0.9570436440764873,0.4520876844890232,0.3949999999999999
+43,19,0.5717780046525666,0.0,1.3436420603673778,0.0007529115204163023,0.03630885045451494,0.7160297254717665,2,1.0,0.5059266821752219,0.3849999999999999
+43,20,0.5730105113847599,0.0,1.3399720980752488,0.0007591040576650249,0.03671715708223138,0.7167728368873452,2,1.0,0.5433683712825329,0.3799999999999999
+43,21,0.5643014108839718,0.0,1.3447141494172394,0.0007485932775273653,0.0365480741840387,0.7158134427629026,2,1.0,0.5810047029465729,0.3749999999999999
+43,22,0.5092278665652299,0.0,1.3476318038423316,0.0007393237161876086,0.036505921468692346,0.715223322708199,2,1.0,0.530759555217433,0.35499999999999987
+43,23,0.5987558926776411,0.0,1.357431507858239,0.0007315995009749995,0.036632862851513195,0.7132262866573084,2,1.0,0.595852975592137,0.34499999999999986
+43,24,0.5972360535532375,0.0,1.3541566923847355,0.0007357298349720713,0.03641298329134331,0.7138939443492075,2,1.0,0.6241201785107917,0.33999999999999986
+43,25,0.6703037652965664,0.0,1.2616692063334318,0.0007034258991533474,0.035070196152343344,0.7324177283795414,2,1.0,0.6676792176552218,0.30999999999999983
+43,26,0.6607701296369135,0.0,1.3072989362659078,0.0006982847289668977,0.03529968190815121,0.7233829105767813,2,1.0,0.7025670987897117,0.2799999999999998
+43,27,0.6450592468100197,0.0,1.2982667017619283,0.0006961120564793099,0.03514523779577076,0.7251874758775431,2,1.0,0.7501974893667325,0.2699999999999998
+43,28,0.6434019706370027,0.0,1.3034462007590935,0.0007160112189880405,0.03550078493733877,0.7241460973895822,2,1.0,0.778006568790009,0.2649999999999998
+43,29,0.7105829616749102,0.0,1.3032470127642404,0.0007065601655897934,0.03499368759404185,0.7241896606173269,2,1.0,0.8019432055830339,0.2349999999999998
+43,30,0.5747945467728826,0.0,1.3472228540251028,0.0006857754389480553,0.03551665441391812,0.7153284188017089,2,1.0,0.7493151559096084,0.2149999999999998
+43,31,0.7088715627620501,0.0,1.2632990801732786,0.0006946752937452214,0.0344181735688091,0.7321016139742218,2,1.0,0.796238542540167,0.1849999999999998
+43,32,0.6760773616597489,0.05,1.2497395494493677,0.0006877324542703905,0.034322760767522484,0.719883738017693,2,1.0,0.853591205532496,0.1749999999999998
+43,33,0.7416596104625728,0.0,1.3465469798265977,0.0006865196065248646,0.035798540346404416,0.7154657265271774,2,1.0,0.9055320348752425,0.1449999999999998
+43,34,0.6057431793473724,0.0,1.3482385964421746,0.0006954824233676085,0.0357828535661875,0.715117579128655,2,1.0,0.8524772644912414,0.12499999999999979
+43,35,0.7418831121063215,0.0,1.3586544500389799,0.0006936302862109245,0.036192019611484605,0.7129916273952218,2,1.0,0.9062770403544053,0.09499999999999979
+43,36,0.7376453640845748,0.0,1.3602901054287284,0.0007011872781076404,0.036140887307562215,0.7126537041827299,2,1.0,0.9588178802819163,0.0649999999999998
+43,37,0.7051560946482631,0.0,1.3601867967912735,0.0007079536752084296,0.03631845482804176,0.7126720879854777,2,1.0,0.9838536488275437,0.0599999999999998
+43,38,0.6310744970373818,0.0,1.358308493466343,0.0007015188081167051,0.036107171250886715,0.713059188788122,2,1.0,0.9369149901246062,0.0399999999999998
+43,39,0.711797757593897,0.0,1.367298170092302,0.000699543446764264,0.03623680256656974,0.7112171431258654,2,1.0,0.9726591919796569,0.029999999999999798
+43,40,0.71,0.0,1.3643297267666665,0.0007011675274289475,0.03630938399442821,0.7118257749772389,2,1.0,1.0,0.024999999999999797
+43,41,0.72,0.0,1.3620490775121725,0.0006956652452467752,0.03597191256499039,0.7122956332712822,2,1.0,1.0,0.014999999999999796
+43,42,0.77,0.0,1.3585779731211762,0.0006968500632437882,0.036203125325802527,0.7130059592470008,2,1.0,1.0,0.0
+43,43,0.71,0.0,1.359277515624521,0.0007041771118314476,0.03604077688361893,0.7128597920656256,2,1.0,1.0,0.0
+43,44,0.6352241599330155,0.0,1.3569389199739335,0.0006979297651304702,0.03632903273922884,0.7133407974729002,2,1.0,0.9507471997767184,0.0
+43,45,0.7681262296607816,0.0,1.366083494570588,0.0006965262179008834,0.036066551953040246,0.711467796816759,2,1.0,0.9937540988692719,0.0
+43,46,0.72,0.0,1.3659585224244446,0.0007014264653875985,0.036350323184764985,0.7114914388353714,2,1.0,1.0,0.0
+43,47,0.6352184188276603,0.0,1.36334347776146,0.0007037661607089743,0.03632602470554065,0.7120269761362928,2,1.0,0.9507280627588677,0.0
+43,48,0.71,0.0,1.3712802937888902,0.0007015447945287163,0.036375645489444025,0.7103977545255523,2,1.0,1.0,0.0
+43,49,0.77,0.0,1.3693848861115758,0.0006968978807286988,0.036298861683855085,0.7107894569793543,2,1.0,1.0,0.0
+44,0,0.19201849761811823,0.0,1.3845693000807788,0.0007008106480612456,0.03636050525206295,0.7076564488811061,1,0.15480101314133507,0.2594604767288366,0.01
+44,1,0.21063792142826435,0.0,1.3843236070745406,0.0007010568854380957,0.036447309293457714,0.7077071730896296,1,0.2087632287525666,0.3252359712162202,0.02
+44,2,0.2846062724556653,0.0,1.3842755701108997,0.0007012560510088394,0.03664811229456424,0.7077170274115112,1,0.25143171054456265,0.38868391255022794,0.02
+44,3,0.30558214053471916,0.0,1.3841065849730438,0.000702155674753793,0.036705485551305754,0.7077516092198937,1,0.30582076978771444,0.46181623703006375,0.03
+44,4,0.3113923461870754,0.0,1.383235641910377,0.0007035646327262923,0.03677719649727325,0.7079311392002299,1,0.33988396490917544,0.5081098615628801,0.04
+44,5,0.34700229947138833,0.0,1.3825795413363338,0.0007043125101929739,0.0367671374123205,0.708066469905816,1,0.3735864630887819,0.5541567913010489,0.09
+44,6,0.356425096038105,0.0,1.3828823634808813,0.0007027311831887354,0.03666176416403642,0.7080045239269205,1,0.4320334352942244,0.5840446456170882,0.14
+44,7,0.38634133043136454,0.0,1.3850459116709979,0.0006993739744580459,0.03658026927859803,0.7075584328417633,1,0.4943365364688571,0.6110784755575487,0.19
+44,8,0.3595807378637481,0.0,1.3844795934539558,0.0006995075073749318,0.03646743690683594,0.7076755460986126,1,0.5391472036576723,0.569597388611876,0.25
+44,9,0.4862081311016248,0.0,1.3850718799472443,0.00069944842947242,0.03648651231555763,0.7075530286574224,1,0.6090233281398028,0.6434998875089795,0.25
+44,10,0.5014448645506522,0.0,1.3829571594178893,0.0007046221532888475,0.036499739473762005,0.7079882789332707,1,0.6482612048793057,0.7151781428096508,0.26
+44,11,0.5111505295556424,0.0,1.3817854822873636,0.0007061170174574885,0.03671772792374096,0.7082298356468895,1,0.6696636887041927,0.7558941283639166,0.31
+44,12,0.5111557203298016,0.0,1.382784273497854,0.0007038061132717396,0.03671194788717965,0.7080243576277873,1,0.706138748930335,0.7800238606806146,0.36
+44,13,0.47676722132246835,0.0,1.3742499417889227,0.0006917482315019644,0.036403236853498125,0.7097904550195375,1,0.7358524771102909,0.7307295144462219,0.42
+44,14,0.5996774311158609,0.0,1.3731744604674898,0.0006913896663435597,0.03623496270671955,0.7100120888874951,1,0.8014860570690281,0.7971910371390037,0.42
+44,15,0.6237404371029742,0.0,1.3771684341418649,0.0007027543122871168,0.03649719271508263,0.7091843730294957,1,0.8741535814206719,0.8592889453524637,0.42
+44,16,0.6360205313060839,0.0,1.3118261773153894,0.0006478744861350471,0.03395168688063936,0.722496308275862,1,0.9085447959885352,0.8934328423669888,0.47
+44,17,0.6768264163199399,0.0,1.327562220706915,0.0006563425466802981,0.035520415836181984,0.7193268651694842,1,0.9412103034659322,0.9580093670228788,0.48
+44,18,0.6261105603881416,0.0,1.3309732576635667,0.0006606105414419319,0.03437637110840219,0.7186359504905164,1,0.9860928022917517,0.9365935986200952,0.54
+44,19,0.5992668301801567,0.0,1.322645363282324,0.0006532505801319966,0.03535776442638218,0.7203197321210115,2,1.0,0.8975561006005224,0.6000000000000001
+44,20,0.686024753703975,0.0,1.3496018951681539,0.0006742429119832834,0.03591459091824885,0.7148484194536285,2,1.0,0.9200825123465833,0.5950000000000001
+44,21,0.6113395606192275,0.0,1.348536554203774,0.0006754905777371055,0.0352681355602443,0.7150650205925241,2,1.0,0.8711318687307583,0.5750000000000001
+44,22,0.6932918297235138,0.0,1.351659229499589,0.0006798478321152102,0.03572209300441042,0.7144265797605815,2,1.0,0.9109727657450462,0.5650000000000001
+44,23,0.6904542944650319,0.0,1.3459105189580953,0.0006740763260625122,0.035714824322875,0.7156003408259991,2,1.0,0.9348476482167732,0.56
+44,24,0.6769551742996527,0.0,1.3444368275184653,0.0006761742009976104,0.03534075624391979,0.7158993126601256,2,1.0,0.9565172476655093,0.555
+44,25,0.72,0.0,1.3417797663358555,0.0006777686228654138,0.0358200154126863,0.7164387676776641,2,1.0,1.0,0.545
+44,26,0.6309949199240517,0.0,1.3361553275009934,0.0006717527377304161,0.03513000576277638,0.7175824424368539,2,1.0,0.9366497330801724,0.525
+44,27,0.7141718093189998,0.0,1.3398969284285307,0.0006780125166044147,0.035888658178770974,0.7168210192756886,2,1.0,0.9805726977299994,0.515
+44,28,0.6237257682620332,0.0,1.3338693247931408,0.0006711203984201181,0.034727482256432594,0.7180457444249646,2,1.0,0.9124192275401106,0.495
+44,29,0.6968195525408465,0.0,1.3364159298643088,0.000677260346521228,0.03572981055107094,0.7175273937405403,2,1.0,0.956065175136155,0.49
+44,30,0.72,0.0,1.3345567961043001,0.000681078215148197,0.035219993031596765,0.7179025075687063,2,1.0,1.0,0.48
+44,31,0.7,0.0,1.3287541106439267,0.0006735409604820851,0.03519850729833566,0.7190792165366385,2,1.0,1.0,0.47
+44,32,0.7,0.0,1.3221528518412335,0.0006658186149056114,0.03522331163738125,0.7204138795005119,2,1.0,1.0,0.45999999999999996
+44,33,0.7,0.0,1.3145685910311684,0.0006576045148357021,0.034350940681115306,0.7219422251732546,2,1.0,1.0,0.44999999999999996
+44,34,0.7,0.0,1.3059885523501524,0.0006487257636612534,0.03495645140911591,0.7236648631804331,2,1.0,1.0,0.43999999999999995
+44,35,0.7,0.0,1.2964049410645035,0.0006391879288112204,0.03342498267306878,0.7255810209632216,2,1.0,1.0,0.42999999999999994
+44,36,0.71,0.0,1.2858151098770614,0.0006290670993757831,0.03438543678243366,0.7276885625249703,2,1.0,1.0,0.42499999999999993
+44,37,0.69,0.0,1.2870085081944427,0.000636611203298288,0.033577216023395653,0.727449025469083,2,1.0,1.0,0.41999999999999993
+44,38,0.6346538350978064,0.0,1.285936793513251,0.000642837949247302,0.03430700298862188,0.7276589913383327,2,1.0,0.9488461169926883,0.3999999999999999
+44,39,0.72,0.0,1.2934686621387788,0.0006524067500765204,0.03415421846914517,0.7261600283094406,2,1.0,1.0,0.3899999999999999
+44,40,0.6308633020314007,0.0,1.284312856175641,0.0006422734841841208,0.034035921508583054,0.7279809137995695,2,1.0,0.9362110067713356,0.3699999999999999
+44,41,0.7037006457831014,0.0,1.2901485742706393,0.0006520924992945118,0.03453555153553625,0.7268198620605586,2,1.0,0.9790021526103384,0.3649999999999999
+44,42,0.77,0.0,1.289201377026305,0.0006595153584161289,0.03377809710800907,0.7270049438664552,2,1.0,1.0,0.33499999999999985
+44,43,0.71,0.0,1.3097875678945097,0.0006603111904938211,0.035146455010309996,0.7228998721159419,2,1.0,1.0,0.32999999999999985
+44,44,0.6388688612431208,0.0,1.3521166194044496,0.0006787466303840828,0.035822130059857994,0.7143337027776633,2,1.0,0.9628962041437359,0.30999999999999983
+44,45,0.72,0.0,1.3572601675364129,0.0006839878506986268,0.03607565332896926,0.7132808050289806,2,1.0,1.0,0.2999999999999998
+44,46,0.7,0.0,1.3530654516016745,0.0006798807904528738,0.03552635787385298,0.7141395806365315,2,1.0,1.0,0.2899999999999998
+44,47,0.7,0.0,1.3479759115314163,0.0006755150697508371,0.03578372974385057,0.7151792261233588,2,1.0,1.0,0.2799999999999998
+44,48,0.7,0.0,1.3418509431146928,0.000670581130289101,0.03523174486594359,0.7164272280094434,2,1.0,1.0,0.2699999999999998
+44,49,0.71,0.0,1.3346654722393665,0.0006650039843954528,0.035095832065401046,0.7178870090408238,2,1.0,1.0,0.2649999999999998
+45,0,0.09281891730514251,0.0,1.3834967728811047,0.0007016027382880549,0.036449680392162995,0.7078779550054504,1,0.12014005992341119,0.16923298777316198,0.06
+45,1,-0.0077709191219825224,0.0,1.3825822031917845,0.0006976022038647938,0.03651945062786847,0.7080686938257241,1,0.14264034728184966,0.14101653109790033,0.12
+45,2,0.1606062329916491,0.0,1.383118577776531,0.0006980954634518073,0.03652016846224514,0.7079576048810878,1,0.1696184825748382,0.1707992136348525,0.16999999999999998
+45,3,0.11141665496927658,0.0,1.3825899026589246,0.0006978519132369685,0.03663540052968123,0.7080669990522961,1,0.20742440021736372,0.1293937163106643,0.22999999999999998
+45,4,0.20620913588952114,0.0,1.3755737763741778,0.0006973656397095331,0.03651778533826473,0.7095153697840384,1,0.26158739692354716,0.18217848988759883,0.24
+45,5,0.2649031639937989,0.0,1.3741423386021547,0.0006969473423581319,0.0364476544629878,0.7098104776641444,1,0.3361719989881352,0.22414321449317187,0.24
+45,6,0.1836258888694196,0.0,1.3845385587615002,0.000701781929553652,0.036692014087439835,0.7076624066975982,1,0.3594315039707743,0.19274954159882868,0.3
+45,7,0.3077948597472143,0.0,1.3760443753956564,0.0007034702513009725,0.03651968777765619,0.7094158513418739,1,0.4282054475683934,0.2597431769942554,0.3
+45,8,0.31584850211157295,0.0,1.38066380192638,0.0007001926985372576,0.036330439555219536,0.7084640131604981,1,0.46060782982610465,0.3154525389081212,0.31
+45,9,0.2530555549380651,0.0,1.3809401354034831,0.0007022644142153508,0.036501919649906456,0.7084060793000754,1,0.4800900060846613,0.2834135093614455,0.37
+45,10,0.3680331674956977,0.0,1.3846097682718537,0.0006999453221535066,0.0364813510894372,0.707648434841034,1,0.5331824340568758,0.33806438525263716,0.37
+45,11,0.3563981832522758,0.0,1.3847136188981854,0.0007009536137099527,0.036680988902603975,0.7076265323260447,1,0.567594822551461,0.3591333178642149,0.42
+45,12,0.30984820242547717,0.0,1.3845744946675258,0.00070005089220336,0.0366970306298323,0.7076556885854165,1,0.6110870460892515,0.3198924543141306,0.48
+45,13,0.43069365114863245,0.0,1.3858240005179099,0.0007005645678042807,0.036780801989635806,0.7073969122179868,1,0.6778678216134446,0.3781330452797563,0.48
+45,14,0.4507618721490356,0.0,1.3861927315775258,0.0007002931939504306,0.03676872099401289,0.7073206963812393,1,0.726378223566793,0.4550983130021936,0.49
+45,15,0.4594006368003274,0.0,1.3744164674883854,0.0006920711727875232,0.036205401639360806,0.7097560184779075,1,0.7624885792459578,0.47509878021414065,0.54
+45,16,0.5069603778535938,0.0,1.372304308919776,0.0006907796349393689,0.036192068959404036,0.7101914670404349,1,0.8137846850019633,0.5404524603430221,0.55
+45,17,0.44308797519373433,0.0,1.385250942723637,0.0006994567489523559,0.036408616739643726,0.7075159718559009,2,0.8350731402847635,0.5027079203135572,0.6100000000000001
+45,18,0.6027851103785359,0.0,1.3538340203081278,0.0007034680806144325,0.035798049761562936,0.7139730222575448,2,0.9231563784275467,0.5322679264296486,0.5800000000000001
+45,19,0.5639340533729006,0.0,1.3523928862903203,0.0007077001941715153,0.03632520435905207,0.7142655059890238,2,0.962322905891542,0.5570701210362029,0.5750000000000001
+45,20,0.6021408739610277,0.0,1.3504537296391113,0.0007022274070097695,0.03582638184718478,0.7146633365680404,2,1.0,0.6071362465367591,0.5650000000000001
+45,21,0.5985611636387357,0.0,1.2805815674365515,0.0007138030901587249,0.034988097981708266,0.7286908903292334,2,1.0,0.6285372121291192,0.56
+45,22,0.5195662096433358,0.0,1.2874174086601629,0.0007054017893623084,0.034768983788286995,0.7273406627601042,2,1.0,0.5652206988111192,0.54
+45,23,0.6502575995083781,0.0,1.3335210702724787,0.0007172234547525067,0.03561260504201415,0.7180975800808297,2,1.0,0.6008586650279271,0.51
+45,24,0.5159453097519444,0.0,1.282976531058493,0.0007078060471109393,0.03469052884612679,0.7282195194592564,2,1.0,0.5531510325064815,0.49
+45,25,0.6005565878168349,0.0,1.3257503730833409,0.0007523505167864412,0.03613787019325816,0.7196537860460281,2,1.0,0.6018552927227828,0.48
+45,26,0.6675252217125764,0.0,1.2790562708525126,0.0007098009186077452,0.03478386796942378,0.7289939183366922,2,1.0,0.6584174057085881,0.44999999999999996
+45,27,0.535133573991837,0.0,1.2665457308486472,0.000703722152858896,0.03496029656360085,0.731460818445614,2,1.0,0.6171119133061236,0.42999999999999994
+45,28,0.6094501418966594,0.0,1.2860351257432836,0.0006940976206837621,0.03460944276347246,0.7276191864842496,2,1.0,0.6648338063221981,0.42499999999999993
+45,29,0.5392408204577472,0.0,1.2911161171898942,0.0006879428808832008,0.03492457582317001,0.7266134687366227,2,1.0,0.6308027348591577,0.4049999999999999
+45,30,0.6174439348143643,0.0,1.307592729192897,0.0006816027036116023,0.03495355289578361,0.7233307957075308,2,1.0,0.6914797827145477,0.3999999999999999
+45,31,0.694291603558615,0.0,1.3100497125701434,0.000677319921679458,0.034723636152581956,0.722840542289452,2,1.0,0.7476386785287167,0.3699999999999999
+45,32,0.6456067685432646,0.0,1.2987871091302599,0.0006717730659094128,0.03501444866231957,0.7250934546586978,2,1.0,0.7853558951442156,0.3649999999999999
+45,33,0.7192516699437309,0.0,1.299949098931313,0.0006682428875789935,0.03448462306581927,0.7248631793425003,2,1.0,0.8308388998124364,0.33499999999999985
+45,34,0.6692019573757177,0.0,1.3084000090603434,0.0006459762960825282,0.03501851964559075,0.7231834752944177,2,1.0,0.8640065245857259,0.32999999999999985
+45,35,0.6971296702231466,0.0,1.3241939912540865,0.0006619222636842904,0.034346641053905794,0.7200041439454031,2,1.0,0.9237655674104889,0.31999999999999984
+45,36,0.6869382363741507,0.0,1.3124687935200476,0.0006543018088842209,0.03527829150354241,0.7223648702260896,2,1.0,0.9564607879138357,0.30999999999999983
+45,37,0.7083834524298613,0.0,1.2998562170958607,0.0006457654531882539,0.03401034730507125,0.7248906681672924,2,1.0,0.9946115080995377,0.3049999999999998
+45,38,0.69,0.0,1.308968279272779,0.0006468213594499662,0.03493905218353087,0.7230693609134484,2,1.0,1.0,0.2999999999999998
+45,39,0.72,0.0,1.3144891185859866,0.0006487757376503177,0.0346221256666201,0.7219617227891714,2,1.0,1.0,0.2899999999999998
+45,40,0.77,0.0,1.3021011195089236,0.0006397910914306631,0.034432476823940905,0.7244451396461802,2,1.0,1.0,0.2599999999999998
+45,41,0.71,0.0,1.3161682545869025,0.0006600628420791383,0.035211957517837254,0.7216200044149635,2,1.0,1.0,0.2549999999999998
+45,42,0.69,0.0,1.3202312112085823,0.0006595572085871175,0.034555444754357234,0.7208032881623796,2,1.0,1.0,0.24999999999999978
+45,43,0.72,0.0,1.3214518522678336,0.0006593782149878604,0.03532875917859678,0.7205576450313836,2,1.0,1.0,0.23999999999999977
+45,44,0.77,0.0,1.3107476847157908,0.0006525441945633692,0.03434693023952952,0.7227106175623303,2,1.0,1.0,0.20999999999999977
+45,45,0.72,0.0,1.3229134571559695,0.0006703051689923632,0.0355203708677874,0.7202588464779384,2,1.0,1.0,0.19999999999999976
+45,46,0.7,0.0,1.3117741671095988,0.0006640611599010244,0.03440601001887551,0.7225002453582702,2,1.0,1.0,0.18999999999999975
+45,47,0.7,0.0,1.2998542794227026,0.0006570222870642538,0.03489651504433375,0.7248865647973036,2,1.0,1.0,0.17999999999999974
+45,48,0.7,0.0,1.2868401910023892,0.0006487684566627603,0.03415729431302537,0.7274775755058147,2,1.0,1.0,0.16999999999999973
+45,49,0.7,0.0,1.272744499139335,0.000639216251601605,0.03385660498330398,0.7302668874271993,2,1.0,1.0,0.15999999999999973
+46,0,0.17075467093969307,0.0,1.3833300994445201,0.0007016714648456371,0.03644821148524343,0.7079123912489664,1,0.14959697290838303,0.22798576807253002,0.05
+46,1,0.24473983697963192,0.0,1.3832744114973137,0.0007009340745461625,0.036418097535667354,0.7079242107850561,1,0.21891420638271267,0.29373288248560836,0.05
+46,2,0.16588276576373334,0.0,1.384334336254284,0.0007018936524370875,0.036660746441439566,0.7077046074858069,1,0.2565428143227544,0.2536426025025644,0.11
+46,3,0.14136096276250057,0.0,1.385000122011962,0.0007015054498865896,0.03672127536948477,0.707567025453267,1,0.28290939479022453,0.20780891528640666,0.16999999999999998
+46,4,0.2548672671552931,0.0,1.3854188372016192,0.0007012009940386901,0.036786449394503914,0.7074805050965317,1,0.33279614561985915,0.2612953872944747,0.18
+46,5,0.3146554273495191,0.0,1.3850458193756148,0.0007014772752249297,0.03677683358306362,0.7075575815108772,1,0.3976567328674437,0.31825190281971294,0.18
+46,6,0.30695795961845396,0.0,1.3847390264060628,0.0007021852787126722,0.03670423975564985,0.7076207660609396,1,0.42799351718822165,0.3572007620085879,0.22999999999999998
+46,7,0.3085298637313104,0.0,1.3819863998479274,0.0007017645495722316,0.03660494696776651,0.7081901151759402,1,0.46728673064159265,0.3832650266891768,0.27999999999999997
+46,8,0.3751067602594946,0.0,1.3820106921493607,0.0007004058876003299,0.03639164692383544,0.708185656538467,1,0.5202011198807138,0.44345456100414915,0.29
+46,9,0.43323059435597977,0.0,1.3853285743361785,0.0006998157765197922,0.03647046916762116,0.7074997581375998,1,0.5787514961939066,0.5022252356270416,0.29
+46,10,0.35440266410281973,0.0,1.3855359671138596,0.0007006543200157617,0.036521505477105316,0.7074564905379325,1,0.6198924857163032,0.45813431367371227,0.35
+46,11,0.42815630741323085,0.0,1.3721795460133257,0.0006907612130156016,0.03608526858429425,0.7102171525947171,1,0.660338096026703,0.49012657934628273,0.39999999999999997
+46,12,0.5055431868991568,0.0,1.369792450541576,0.000689408939862615,0.036236737966427034,0.7107087471464698,1,0.7389075556176513,0.556418474776596,0.39999999999999997
+46,13,0.5205730793540319,0.0,1.3679346649599728,0.0006878942060109196,0.03600971622460445,0.7110911840544596,1,0.8005966554917132,0.601214166439774,0.41
+46,14,0.535686634181022,0.0,1.3513919261076108,0.0006971057193025556,0.03609953641635426,0.7144740710086416,1,0.8487964664175043,0.662026236449652,0.42
+46,15,0.569595177132841,0.0,1.3541335549576738,0.0007094285733243964,0.03607722743224649,0.7139094139365327,1,0.8900105054604764,0.7269716674055811,0.43
+46,16,0.6113818252464813,0.0,1.3550645807865536,0.0007212060285594387,0.03655639222027264,0.7137144079249632,1,0.9462608837661506,0.800635053094429,0.44
+46,17,0.6522720157409914,0.05,1.229083359302878,0.0005736058165264357,0.03270189430744425,0.7240757073657759,1,0.9893371654426167,0.8533466927869183,0.49
+46,18,0.5913021538319054,0.05,1.2573755688631492,0.0006047681199298321,0.03285974465877617,0.7183749143857501,1,1.0,0.8043405127730184,0.55
+46,19,0.5573407947226494,0.0,1.2435888044571843,0.0005939150935985844,0.03304142779624775,0.7359887981779016,2,1.0,0.7578026490754982,0.6100000000000001
+46,20,0.6445663745271305,0.0,1.1949400757396793,0.0005986121410960293,0.03216299131372149,0.745330800265091,2,1.0,0.7818879150904351,0.6050000000000001
+46,21,0.5707701790855659,0.05,1.2036456931527015,0.0006057592737257519,0.032127289062790436,0.7291161247894905,2,1.0,0.7359005969518865,0.5850000000000001
+46,22,0.5373135663343864,0.0,1.2341228337461627,0.0006088422201083778,0.032662657104621774,0.7378182358414016,2,1.0,0.6910452211146215,0.5650000000000001
+46,23,0.643551786273612,0.0,1.245864599463018,0.0006044852570693236,0.033182324337087545,0.7355422404500623,2,1.0,0.74517262091204,0.555
+46,24,0.6406181449471903,0.0,1.2635965381676688,0.0006311902270223263,0.033350001703847595,0.7320681750645722,2,1.0,0.7687271498239676,0.55
+46,25,0.7250132641396312,0.0,1.2686490277687403,0.000633460101877887,0.03410802358958597,0.7310751039406785,2,1.0,0.8500442137987706,0.52
+46,26,0.5893272220495823,0.0,1.2994991597080363,0.0006353571938627885,0.033485282858080036,0.7249660189597893,2,1.0,0.7977574068319411,0.5
+46,27,0.7291424165546991,0.0,1.1564328980837455,0.0005466350159385751,0.030955472088313896,0.752590022455045,2,1.0,0.8638080551823308,0.47
+46,28,0.7220765268093297,0.0,1.2910147144563635,0.0006260879587799417,0.03338779837876242,0.7266581842440445,2,1.0,0.9069217560310991,0.43999999999999995
+46,29,0.6919262833870397,0.0,1.307316459347055,0.0006440967571852585,0.034926512702530985,0.7234010898724278,2,1.0,0.9397542779567991,0.43499999999999994
+46,30,0.6166813667325626,0.0,1.313180069400601,0.000646591465057442,0.03457335085203034,0.7222252921862273,2,1.0,0.8889378891085419,0.4149999999999999
+46,31,0.7019631738876211,0.0,1.3197449368441294,0.0006496731262336638,0.03480834294760811,0.720905115770647,2,1.0,0.9398772462920701,0.4049999999999999
+46,32,0.6176196015073134,0.0,1.3089822066887924,0.0006411886930470762,0.03481058542827266,0.7230688278574301,2,1.0,0.8920653383577116,0.3849999999999999
+46,33,0.7570131132797094,0.0,1.3138853080505088,0.0006452616729683404,0.034138525398783745,0.7220843216368742,2,1.0,0.9567103775990315,0.35499999999999987
+46,34,0.6201318669943503,0.0,1.3284134031318826,0.0006587200938518893,0.035573034717497176,0.7191540226052301,2,1.0,0.9004395566478344,0.33499999999999985
+46,35,0.7529585981389848,0.0,1.3310707439704974,0.00066010560751574,0.034599950268459335,0.718616442705037,2,1.0,0.9431953271299495,0.3049999999999998
+46,36,0.7045352780113981,0.0,1.3573742498538193,0.0006859954094213534,0.03614787449174138,0.7132566521609318,2,1.0,0.9817842600379939,0.2999999999999998
+46,37,0.72,0.0,1.3547365906689532,0.0006824691933923221,0.035803442630410576,0.7137972476009856,2,1.0,1.0,0.2899999999999998
+46,38,0.634665166589335,0.0,1.3491983754378443,0.0006803477056545784,0.035766852698241765,0.7149281774680103,2,1.0,0.9488838886311166,0.2699999999999998
+46,39,0.7004430856256578,0.0,1.3571929135882113,0.0006818283254383966,0.035588704620230414,0.7132954422924195,2,1.0,0.9681436187521929,0.2649999999999998
+46,40,0.72,0.0,1.3542934542687055,0.0006795887532544335,0.03582691190349568,0.7138889443552717,2,1.0,1.0,0.2549999999999998
+46,41,0.6337403072407846,0.0,1.348830449721792,0.0006765487815544374,0.035639857245486704,0.7150047052004335,2,1.0,0.9458010241359485,0.2349999999999998
+46,42,0.5998750244691293,0.0,1.3556362061510856,0.0006795089125995099,0.03568283291173319,0.7136146391283288,2,1.0,0.8995834148970981,0.2149999999999998
+46,43,0.6991101236650572,0.0,1.3600529450150862,0.0006829053657553066,0.03620812675798018,0.7127097537319652,2,1.0,0.9303670788835241,0.2049999999999998
+46,44,0.6169644526973441,0.0,1.3546860983574451,0.0006784645687903247,0.03556591788430207,0.713809198778452,2,1.0,0.889881508991147,0.1849999999999998
+46,45,0.6976783516144414,0.0,1.3579581248251462,0.000681811608306135,0.03620504547311813,0.713138934028426,2,1.0,0.925594505381471,0.1749999999999998
+46,46,0.7663101076102542,0.0,1.3521271820068512,0.0006765113145872741,0.035336979021211246,0.714332459641996,2,1.0,0.9877003587008475,0.1449999999999998
+46,47,0.71,0.0,1.3618406533378986,0.0006828667957093606,0.03612043571531533,0.7123435889591169,2,1.0,1.0,0.1399999999999998
+46,48,0.69,0.0,1.3609814755338288,0.0006827083517947288,0.03576874073064569,0.7125196760403546,2,1.0,1.0,0.1349999999999998
+46,49,0.77,0.0,1.358777499460281,0.0006822948539432039,0.03588406344740423,0.7129710860336034,2,1.0,1.0,0.10499999999999979
+47,0,0.09538999665082006,0.0,1.3829444482603312,0.0007021377537856954,0.0363847770294092,0.7079919340895344,1,0.13109677081404952,0.16502042288634242,0.06
+47,1,0.21580334637238935,0.0,1.3833717760553905,0.0006988580917456647,0.03651314291050933,0.7079049370747048,1,0.18841377179319013,0.2328617541492426,0.06
+47,2,0.13046138004654292,0.0,1.3828294951977618,0.0007021683509000332,0.03663186719308239,0.7080156861927104,1,0.22170813022847136,0.17621178155525985,0.12
+47,3,0.20722835767992184,0.0,1.3762753944922697,0.0007077655952705216,0.03659306077803357,0.7093664545041457,1,0.2715838928885895,0.20724665056305175,0.16999999999999998
+47,4,0.2660098935465042,0.0,1.3848008175068929,0.0007020520548258083,0.03678696632392771,0.7076080368403068,1,0.343474673472989,0.2859791927698603,0.18
+47,5,0.3206080692864495,0.0,1.3843586425214358,0.0007024825681925255,0.03677897635933467,0.7076993358479363,1,0.39650809745547944,0.3394341172567724,0.18
+47,6,0.3390454719260792,0.0,1.3838980221902597,0.0007033151795510923,0.03669888577383519,0.7077942667032316,1,0.45287296125136184,0.4017997849603421,0.18
+47,7,0.35526452617720017,0.0,1.3859633277299248,0.0007001242922348592,0.03662349356834838,0.7073682548025291,1,0.5027650410812293,0.4309892059958996,0.22999999999999998
+47,8,0.4093564956906238,0.0,1.386113476874095,0.0007000576540549708,0.036472669078980786,0.7073372007908961,2,0.5668093884880107,0.5032440323994004,0.24
+47,9,0.431674970674254,0.0,1.3861334647259451,0.000700235766401108,0.03639177296857347,0.7073329893197013,2,0.6127131065440221,0.5574179446128211,0.22999999999999998
+47,10,0.5446190722415561,0.0,1.3661364832132827,0.0007009600653823428,0.03602164999364077,0.71145509869687,2,0.7035963631253949,0.5945344838255598,0.19999999999999998
+47,11,0.5668745171298297,0.0,1.3675509974074163,0.0007094297284829271,0.036511377113853875,0.7111611513442648,2,0.7811545107946911,0.6449014611722927,0.16999999999999998
+47,12,0.6053647281876289,0.0,1.3771251646121492,0.000696405855679382,0.0364978231990441,0.7091959155197801,2,0.8484213732343477,0.6947241585186905,0.13999999999999999
+47,13,0.5845664918398612,0.0,1.2645777342506292,0.0007530677491316865,0.03494883908490125,0.7318278395164445,2,0.876462692752069,0.7260151645887901,0.13499999999999998
+47,14,0.5183397898805693,0.0,1.2687646571201787,0.000740726721048502,0.03514400698595354,0.7310101876050071,2,0.9064748396971282,0.670245319955248,0.11499999999999998
+47,15,0.6216918484969882,0.0,1.289738236159823,0.0007282594137882304,0.03517345915587522,0.7268710865223077,2,0.9626038100648492,0.7159350499143033,0.10499999999999998
+47,16,0.6957731103784444,0.0,1.2920860001263879,0.0007493578919255074,0.0357533599324654,0.7263963515696303,2,1.0,0.7525770345948145,0.07499999999999998
+47,17,0.560990117109828,0.0,1.2820522109164436,0.0007480057376573576,0.03551372863657979,0.7283865125821338,2,1.0,0.7033003903660936,0.05499999999999998
+47,18,0.6466208391191842,0.0,1.3018062780969009,0.0007349692087344443,0.035878496721640736,0.7244659969457191,2,1.0,0.7554027970639474,0.04499999999999998
+47,19,0.7129750604971978,0.0,1.3029120541593069,0.0007555370019787487,0.03586217199943905,0.7242369972291322,2,1.0,0.8099168683239931,0.014999999999999979
+47,20,0.6744000038903755,0.0,1.321800507378136,0.0006772723578623637,0.03543356690378285,0.7204802291274967,2,1.0,0.8480000129679184,0.004999999999999978
+47,21,0.7388001568949327,0.0,1.3160505936991753,0.0006698130430819495,0.034625705433092895,0.7216397229133078,2,1.0,0.896000522983109,0.0
+47,22,0.7001538522107986,0.0,1.3326499585644394,0.0006713102437152439,0.03531814775267371,0.7182924700196047,2,1.0,0.9338461740359956,0.0
+47,23,0.692723748213304,0.0,1.3259155012693595,0.0006643660895062976,0.03518605689853106,0.7196559731697026,2,1.0,0.9757458273776802,0.0
+47,24,0.6218735403786446,0.0,1.3182155694167468,0.0006568828653430311,0.03444394405851044,0.7212098226752433,2,1.0,0.9062451345954821,0.0
+47,25,0.7473199659924792,0.0,1.3235798791115736,0.0006638504696489634,0.03543065176340166,0.7201271538689962,2,1.0,0.9243998866415972,0.0
+47,26,0.7419240879549731,0.0,1.3390018688421823,0.0006685854616001452,0.034989203781558245,0.7170064966128066,2,1.0,0.9730802931832436,0.0
+47,27,0.7094079249264262,0.0,1.3510794198665146,0.000675107089346332,0.036059334341113955,0.7145467924729183,2,1.0,0.9980264164214208,0.0
+47,28,0.77,0.0,1.349780471306491,0.0006755914607255224,0.03530896700518123,0.7148114672497915,2,1.0,1.0,0.0
+47,29,0.72,0.0,1.3592929692329272,0.00068195477206245,0.03609645230091905,0.7128657262319076,2,1.0,1.0,0.0
+47,30,0.77,0.0,1.3530046660590076,0.0006779932985391243,0.035464123455534055,0.7141527601139365,2,1.0,1.0,0.0
+47,31,0.75,0.0,1.3604153006975734,0.0006869185255460209,0.03601972843648095,0.7126339103534851,2,1.0,1.0,0.0
+47,32,0.71,0.0,1.3649307871777236,0.0006959584289419499,0.03613149831899387,0.7117046014768563,2,1.0,1.0,0.0
+47,33,0.6331273737561582,0.0,1.364160629061466,0.000691976961592136,0.03609777653429338,0.711864230953939,2,1.0,0.9437579125205277,0.0
+47,34,0.7633671688617436,0.0,1.3701565592984049,0.0006918340180526732,0.03636200524807465,0.7106328826239136,2,1.0,0.9778905628724786,0.0
+47,35,0.75,0.0,1.373190619340324,0.0006980208223274352,0.03629275018651147,0.7100060311775009,2,1.0,1.0,0.0
+47,36,0.72,0.0,1.3742151038874186,0.0007038373758981983,0.03646500008737966,0.7097926507665571,2,1.0,1.0,0.0
+47,37,0.7,0.0,1.3702326180350393,0.0007044930269670922,0.03622547869342844,0.7106120356926688,2,1.0,1.0,0.0
+47,38,0.6340124332947881,0.0,1.3653857154471667,0.0007045805608735652,0.03640583886217482,0.7116077108844535,2,1.0,0.9467081109826272,0.0
+47,39,0.72,0.0,1.371402793126424,0.0007014559626314113,0.03640725007459933,0.7103725882993096,2,1.0,1.0,0.0
+47,40,0.7,0.0,1.3658289235130323,0.0007006106538335879,0.03636539810794906,0.7115183759594934,2,1.0,1.0,0.0
+47,41,0.7,0.0,1.3593936195789613,0.0006990850250707657,0.036254226901114864,0.7128381107817731,2,1.0,1.0,0.0
+47,42,0.77,0.0,1.3519195632580918,0.000696759368101006,0.035772948600414245,0.7143665617335102,2,1.0,1.0,0.0
+47,43,0.75,0.0,1.3549472329869343,0.0007109944624769088,0.036495168343029225,0.7137425573004265,2,1.0,1.0,0.0
+47,44,0.72,0.0,1.3554991790986972,0.0007237503306602471,0.03607554094387892,0.7136245599479939,2,1.0,1.0,0.0
+47,45,0.6332955309780421,0.0,1.3482804232451948,0.0007239756750717133,0.03653001189447212,0.7150974480165079,2,1.0,0.9443184365934738,0.0
+47,46,0.77,0.0,1.3562193529441084,0.0007164665087402446,0.03617301694048251,0.7134803373225894,2,1.0,1.0,0.0
+47,47,0.637928300804456,0.0,1.3558945718194348,0.0007289473003810661,0.03662131563334779,0.7135416243526339,2,1.0,0.95976100268152,0.0
+47,48,0.7031091642636604,0.0,1.3617976665282367,0.000721312021299684,0.03660200945535065,0.7123366417071306,2,1.0,0.977030547545535,0.0
+47,49,0.6874330537384341,0.0,1.3675079356359,0.0007146504425615845,0.036560498012993804,0.7111678518744212,2,1.0,0.9914435124614475,0.0
+48,0,0.19837311882732067,0.0,1.3830812135276833,0.0007020847649980795,0.0363862084264106,0.707963680433024,1,0.1564287899270807,0.27874347450947473,0.01
+48,1,0.14439634153796532,0.0,1.382690106606371,0.0007024452603793968,0.036413969311424446,0.708044386603321,1,0.18575871277302133,0.26460264022469293,0.06999999999999999
+48,2,0.21409346742589025,0.0,1.38377300565243,0.0007019512374031686,0.036650634174848325,0.7078206863003577,1,0.22055874465289943,0.2896596893245849,0.12
+48,3,0.2933958529048404,0.0,1.3835446538851963,0.0007037589471902022,0.036719831590590384,0.7078671619799609,1,0.289169823229386,0.37395471591518425,0.12
+48,4,0.21096241709395036,0.0,1.3828766513536024,0.0007043920768931111,0.036780190605604265,0.7080050180914795,1,0.3284067398331762,0.32006686050779565,0.18
+48,5,0.32352790301633244,0.0,1.3837078413691377,0.0007034074268670916,0.036780546564868066,0.707833560485146,1,0.3805315266327878,0.36780622898285587,0.18
+48,6,0.3157400595365393,0.0,1.3828533705806096,0.000703976272287391,0.03668645645936151,0.7080100029135895,1,0.4271676558532337,0.387437933293025,0.22999999999999998
+48,7,0.32167070359071137,0.0,1.3819029184871265,0.0007028713214468657,0.036618661637397666,0.7082069094449727,1,0.4728115314682148,0.4206222252561208,0.27999999999999997
+48,8,0.35202936851989,0.0,1.3862502624558881,0.0007001658802149892,0.036482537097909364,0.7073088390181543,1,0.52709777203616,0.4584838276907799,0.32999999999999996
+48,9,0.3265051760169402,0.0,1.3860590812946212,0.0007001873234620347,0.03636391526514877,0.7073484074778577,1,0.5704497411760728,0.4228258886843822,0.38999999999999996
+48,10,0.30529514045812084,0.0,1.370891410785056,0.0006994323765106296,0.03613786946298952,0.7104786230066179,1,0.603587318536496,0.3801319299011576,0.44999999999999996
+48,11,0.3044993593008294,0.0,1.384952846965813,0.0006996567098225459,0.036652072798369364,0.7075775723693524,1,0.6346412008452583,0.34124979668329675,0.51
+48,12,0.307765418919845,0.0,1.3850871622145218,0.0006994335050223347,0.03671988955059288,0.707549872590477,1,0.6672284698899608,0.31411818152786264,0.5700000000000001
+48,13,0.4291141154766536,0.0,1.3849298294571741,0.0006992146653318398,0.03672889569018929,0.7075825178614611,1,0.7406475444309918,0.36629158308602183,0.5800000000000001
+48,14,0.4525935663710137,0.0,1.384019008656241,0.0006986858687045453,0.0366930575154836,0.7077711584416438,1,0.8029828862540161,0.4384985206070271,0.5900000000000001
+48,15,0.488092094481966,0.0,1.3783760612626927,0.0006983794326400628,0.036525746738160135,0.7089370522918308,2,0.8450842732839634,0.4743753294419295,0.6400000000000001
+48,16,0.5350687386156414,0.0,1.3013434089655367,0.0007716215737525267,0.03606736520472892,0.7245437530497219,2,0.8822137455682268,0.5209797588892067,0.6300000000000001
+48,17,0.5544098293765969,0.0,1.2947479420688448,0.0007726613764711754,0.036006120544166124,0.72585771188288,2,0.937815180415976,0.5872483874366845,0.6200000000000001
+48,18,0.5023488388557001,0.0,1.287186202448908,0.0007727913281752721,0.03610533902323279,0.7273597854058278,1,0.9586014341550411,0.5561277896714527,0.6000000000000001
+48,19,0.5768425251347726,0.0,1.375662901172932,0.0007130905614338105,0.0366368587827741,0.709490518323426,2,1.0,0.5894750837825754,0.6500000000000001
+48,20,0.6144942699777861,0.0,1.2816060352710323,0.0007771704050724699,0.035947173828498546,0.7284632371442818,2,1.0,0.6483142332592872,0.6400000000000001
+48,21,0.6853425857870559,0.05,1.0245071076556664,0.0004337292877589239,0.027105159242371325,0.7630773044466593,2,1.0,0.7178086192901862,0.6100000000000001
+48,22,0.6340051458811914,0.1,1.0174754117287497,0.00042725988159180155,0.026694198946257637,0.7505728953266652,2,1.0,0.7466838196039713,0.6050000000000001
+48,23,0.6248560273153829,0.05,1.0566798636908952,0.0004652226130200822,0.027732148829423146,0.7572000608414621,2,1.0,0.7828534243846099,0.6000000000000001
+48,24,0.5696736456123612,0.05,1.0614044273088217,0.00048069532782847536,0.028361403607676604,0.7563247003832727,2,1.0,0.7322454853745375,0.5800000000000001
+48,25,0.7055280905891703,0.0,1.0914435373907034,0.0004836452778086911,0.028537377355650345,0.7645140536381055,2,1.0,0.7850936352972343,0.55
+48,26,0.6555847099174023,0.05,1.0555424917473504,0.0004537984488513936,0.027742450550383407,0.7574133015105345,2,1.0,0.8186156997246742,0.545
+48,27,0.6460272162130354,0.0,1.3201527410523894,0.0006519683490025868,0.034895355114787356,0.7208221340243792,2,1.0,0.8534240540434516,0.54
+48,28,0.7434178703163834,0.0,1.3221525503108107,0.0006549470684333646,0.034329115109588464,0.7204183196567522,2,1.0,0.9113929010546115,0.51
+48,29,0.6087221732550341,0.0,1.3368342481300992,0.0006634794650795732,0.03558857173739122,0.7174481877647657,2,1.0,0.862407244183447,0.49
+48,30,0.6794651012973589,0.0,1.33790284433096,0.0006657894090637262,0.03526104451633273,0.7172305786232338,2,1.0,0.8982170043245297,0.485
+48,31,0.7514146989469406,0.0,1.3414293879373334,0.00067003937597412,0.03534632580410933,0.7165130831155241,2,1.0,0.938048996489802,0.45499999999999996
+48,32,0.7492153461575017,0.0,1.3533518377655698,0.0006762096103057368,0.03592622378427835,0.7140826120475675,2,1.0,0.9973844871916726,0.42499999999999993
+48,33,0.75,0.0,1.3621693046406562,0.0006836285291277279,0.0357810088209805,0.712275928037843,2,1.0,1.0,0.3949999999999999
+48,34,0.71,0.0,1.3681659632823588,0.0006915345806721656,0.03647274274762403,0.7110421677794897,2,1.0,1.0,0.3899999999999999
+48,35,0.6363342602533927,0.0,1.3705827251458138,0.0006905093978682632,0.03580309849491832,0.7105457855310792,2,1.0,0.9544475341779757,0.3699999999999999
+48,36,0.7023333324885382,0.0,1.3719449798744028,0.0006902543675895715,0.03648041098663647,0.7102656345835211,2,1.0,0.974444441628461,0.3649999999999999
+48,37,0.77,0.0,1.3729544168037053,0.0006906977976123006,0.036156015890628154,0.7100576775449493,2,1.0,1.0,0.33499999999999985
+48,38,0.72,0.0,1.3777322752790557,0.0006948529900615401,0.036451225334716175,0.7090713315741658,2,1.0,1.0,0.32499999999999984
+48,39,0.7,0.0,1.3306027369497242,0.0007483566208287093,0.03631348680941766,0.7186753832553802,2,1.0,1.0,0.31499999999999984
+48,40,0.7,0.0,1.323146333124305,0.0007498686285922337,0.03602574376662132,0.7201798565491002,2,1.0,1.0,0.3049999999999998
+48,41,0.6292740331623702,0.0,1.3146392211179072,0.0007501111594756816,0.036210636389910573,0.7218909039888922,2,1.0,0.9309134438745673,0.2849999999999998
+48,42,0.7674180486714423,0.0,1.3194519537967002,0.0007384552124638413,0.03584349644497077,0.7209283375635074,2,1.0,0.9913934955714744,0.2549999999999998
+48,43,0.71,0.0,1.3187536993581832,0.0007557886924228305,0.03628740757023782,0.7210618255977568,2,1.0,1.0,0.24999999999999978
+48,44,0.69,0.0,1.3347626547004567,0.0007431543875205725,0.03620080521406733,0.71783566944316,2,1.0,1.0,0.24499999999999977
+48,45,0.77,0.0,1.347484298704435,0.0007326662980067466,0.03651240223484823,0.715256077213313,2,1.0,1.0,0.21499999999999977
+48,46,0.634430824533053,0.0,1.3454063546336186,0.0007447020533591003,0.03636674301232909,0.7156741938011824,2,1.0,0.94810274844351,0.19499999999999978
+48,47,0.7009087308456217,0.0,1.3493670722365003,0.0007349506624900401,0.03646941575535225,0.7148715358787907,2,1.0,0.9696957694854057,0.18999999999999978
+48,48,0.77,0.0,1.359780267460267,0.0007264410703525558,0.03663626388105669,0.7127477559363246,2,1.0,1.0,0.15999999999999978
+48,49,0.75,0.0,1.3571157605684097,0.0007346267072661356,0.0366161719887763,0.7132896253677478,2,1.0,1.0,0.12999999999999978
+49,0,0.16016857811914026,0.0,1.3836365586079324,0.000700576974228219,0.03638637587287532,0.7078494725818728,1,0.1157658516679023,0.23216843345124813,0.05
+49,1,0.23485101520517393,0.0,1.3834638362078127,0.000700042288732359,0.03645520153006431,0.7078854111779814,1,0.18538714289716898,0.29988505063721604,0.05
+49,2,0.249028714043745,0.0,1.3833003807059812,0.0007005661084223799,0.03660581236653125,0.7079189933356309,1,0.2238220936146771,0.3689699375953601,0.060000000000000005
+49,3,0.25574021348746057,0.0,1.3829822103376506,0.0007038008362044385,0.03670759536765435,0.7079834394602442,1,0.26390418671865484,0.41124582711977137,0.07
+49,4,0.2114618411854864,0.0,1.3823998302975515,0.000699989945619844,0.0366991472035328,0.7081054031714563,1,0.28435095973226265,0.37313001759731484,0.13
+49,5,0.28234211760251715,0.0,1.3831346180332384,0.0007027957058326834,0.036755139670337535,0.7079523448874947,1,0.33524671529447747,0.38335255749816693,0.18
+49,6,0.3489213684464523,0.0,1.3837352862954604,0.0007017489233444958,0.036671125704510296,0.7078285706806839,1,0.38594511575061585,0.4461352597791223,0.18
+49,7,0.36640864159974373,0.0,1.3852004408708842,0.0006999341160414073,0.036606744587490615,0.7075262248885718,1,0.4409787537924012,0.5068869259080112,0.19
+49,8,0.4167280579516218,0.0,1.3860690127577917,0.0007002475781224501,0.036488427828175234,0.7073463266484907,1,0.47611522487366903,0.5669590974861254,0.19
+49,9,0.43300329308108565,0.0,1.3861657689792262,0.0007000907998155705,0.036373522313286014,0.7073263618942529,1,0.535775166165416,0.6182732830773001,0.19
+49,10,0.4723985453509161,0.0,1.382402745289756,0.0006974390877469848,0.03650664189010464,0.7081058551498216,1,0.5887946124044501,0.6877347700311953,0.19
+49,11,0.5075072163731971,0.0,1.3819502138189512,0.000697416618748434,0.03653605106025713,0.7081993902405754,1,0.6366085863987443,0.7489807037787884,0.2
+49,12,0.5573847891051851,0.0,1.3828082537436492,0.0007009445459194585,0.03666118486562003,0.7080205833963407,1,0.6824975988094649,0.7950354317395747,0.2
+49,13,0.5480214896165433,0.0,1.381993976020002,0.0007022748513277706,0.03671042901691939,0.7081883385899748,1,0.7137775347933483,0.8273311747962382,0.25
+49,14,0.619251376642317,0.0,1.3814597289079165,0.0006973509013375628,0.03664396025786533,0.708300767229827,1,0.7761494047883972,0.8919969498879265,0.25
+49,15,0.5386752366712906,0.0,1.3792793759067659,0.0006966698820327432,0.03642285890546443,0.7087513281611099,1,0.8200502137111819,0.8388588729079229,0.31
+49,16,0.6589679257450389,0.0,1.3362297239472487,0.0006678348299026108,0.03558784887795495,0.7175689532051638,1,0.8920063520593827,0.889219008414183,0.31
+49,17,0.6857481016931711,0.0,1.329111042002713,0.0006626117959846611,0.034921331373679684,0.7190115253764436,1,0.9664568547224611,0.9582940084676993,0.32
+49,18,0.69,0.0,1.340786987600942,0.0006713882291933697,0.03574771758142947,0.7166430028485657,1,1.0,1.0,0.33
+49,19,0.641175644925557,0.0,1.3493180772262814,0.0006812106609174083,0.03566657450943046,0.7149034291432881,1,1.0,0.9705854830851899,0.39
+49,20,0.73,0.0,1.2065911162409901,0.0005633331088309424,0.031444723925174424,0.7431264384214816,1,1.0,1.0,0.39
+49,21,0.6403165369374357,0.05,1.222843434483,0.0005724845632869244,0.03232414911730302,0.7253210844835862,1,1.0,0.9677217897914527,0.45
+49,22,0.73,0.0,1.2146552794006058,0.000566075842206417,0.03233258700210874,0.7415830071965737,1,1.0,1.0,0.45
+49,23,0.71,0.05,1.219049819282684,0.0005705002585362878,0.03174783287304904,0.7260770309053151,1,1.0,1.0,0.46
+49,24,0.73,0.05,1.2427274645372428,0.0005855152302775966,0.033077579356129594,0.7213366456138935,1,1.0,1.0,0.46
+49,25,0.71,0.0,1.2509612052300416,0.0005963522941611942,0.03234157947050772,0.7345528316583633,1,1.0,1.0,0.47000000000000003
+49,26,0.7,0.0,1.2568789480229263,0.0006013179866650428,0.03350592554235335,0.7333954184679936,1,1.0,1.0,0.52
+49,27,0.71,0.0,1.2786510908653757,0.0006161998572052772,0.03282694367730403,0.72911093452706,1,1.0,1.0,0.53
+49,28,0.69,0.0,1.286967925293788,0.0006236777271358769,0.03432277215418211,0.7274622000790255,1,1.0,1.0,0.54
+49,29,0.7,0.0,1.2916766616957251,0.0006312926976885406,0.03365072858962194,0.726524616323272,1,1.0,1.0,0.5900000000000001
+49,30,0.73,0.0,1.3099926891968274,0.0006427367383765594,0.03478919533048623,0.7228658226951035,1,1.0,1.0,0.5900000000000001
+49,31,0.6360381047749295,0.0,1.3164121988171718,0.0006482990859873113,0.034866331937445656,0.72157572393366,2,1.0,0.9534603492497649,0.6500000000000001
+49,32,0.5939470184959255,0.0,1.3841881985147164,0.0006988088762412522,0.03665911404295148,0.7077361125921254,2,0.9938880169794343,0.8869540418437447,0.6300000000000001
+49,33,0.5794750487129545,0.0,1.3840741996730408,0.0006993045662902402,0.036604306635057135,0.7077594871517113,2,1.0,0.8315834957098487,0.6100000000000001
+49,34,0.5616486663232308,0.0,1.3834053059589677,0.0006996920141639968,0.03646212429617936,0.7078976589881116,2,1.0,0.7721622210774364,0.5900000000000001
+49,35,0.5461488873338591,0.0,1.0919219818898813,0.0005312593443117643,0.02946983222100613,0.7644107583541803,2,1.0,0.7204962911128641,0.5700000000000001
+49,36,0.7040156165060484,0.0,1.119732559741303,0.000533235508379017,0.029531604201599095,0.7593649404564113,2,1.0,0.7800520550201615,0.54
+49,37,0.6967695928311469,0.05,1.1014903450455935,0.000517081160619282,0.02922743080253041,0.748847586328217,2,1.0,0.8225653094371566,0.51
+49,38,0.6628896088234835,0.0,1.3832910465192263,0.000698216044791857,0.0364386536635194,0.7079218951979526,2,1.0,0.8429653627449449,0.505
+49,39,0.736555060541221,0.0,1.3819955643924688,0.0006971932782273027,0.036600767761527896,0.7081901106291062,2,1.0,0.888516868470737,0.475
+49,40,0.7021954698549615,0.0,1.383315738967975,0.000698494999695018,0.036696939664326717,0.7079166741921453,2,1.0,0.9406515661832053,0.46499999999999997
+49,41,0.617677692492488,0.0,1.3819141580542125,0.0006983425492455742,0.03657863001219485,0.7082064585300358,2,1.0,0.8922589749749604,0.44499999999999995
+49,42,0.7045068236113734,0.0,1.3837880209642455,0.0006986197411616431,0.03654285219266642,0.7078189589495014,2,1.0,0.948356078704578,0.43499999999999994
+49,43,0.7687571348259814,0.0,1.3818960208937798,0.0006979413101358629,0.03651172572713769,0.708210372392267,2,1.0,0.9958571160866047,0.4049999999999999
+49,44,0.6333653152720198,0.0,1.3830117951897776,0.0007007262877076292,0.036385609434549375,0.7079785942609077,2,1.0,0.9445510509067329,0.3849999999999999
+49,45,0.7676002964532702,0.0,1.3845397753654864,0.000700043062773632,0.03652173135066617,0.7076628744715547,2,1.0,0.9920009881775673,0.35499999999999987
+49,46,0.72,0.0,1.3846129651803558,0.0007019664588926709,0.03663679829844099,0.7076469371814131,2,1.0,1.0,0.34499999999999986
+49,47,0.77,0.0,1.3829264823561127,0.0007027230323243326,0.03674225597977535,0.7079954063366456,2,1.0,1.0,0.31499999999999984
+49,48,0.71,0.0,1.348903547377373,0.0006786293866581327,0.03568742097566703,0.7149889616698637,2,1.0,1.0,0.30999999999999983
+49,49,0.6405013116526606,0.0,1.3549445758683831,0.0006789430401376673,0.03559879570424822,0.713756197108874,2,1.0,0.9683377055088689,0.2899999999999998
+50,0,0.16956953756486334,0.0,1.3823678953233383,0.0007013477167316549,0.03641540568075269,0.7081114425616938,1,0.13870463554507478,0.23674305041362395,0.05
+50,1,0.11461526924458232,0.0,1.3821971230806156,0.0007005710054140612,0.036451949133110235,0.7081470592118649,1,0.16291454660220195,0.19198392644603884,0.11
+50,2,0.22756989708104353,0.0,1.3830471951701155,0.0006980107139981964,0.03651206852239705,0.7079723983187949,1,0.21151188793422324,0.2451357876802179,0.11
+50,3,0.22044853449080698,0.0,1.3844425615327067,0.0007015265358016335,0.036713969128601656,0.7076823715211956,1,0.2440110112386779,0.2834822685242324,0.16
+50,4,0.2210349595286293,0.0,1.3845779737888173,0.0007008448763909648,0.0367530998251062,0.7076546403092876,1,0.2903298327601833,0.29806506020855045,0.21000000000000002
+50,5,0.19320467655400136,0.0,1.384531123160493,0.0007002293230567555,0.036741877139375656,0.7076645873376863,1,0.33638153855271546,0.2515704602018366,0.27
+50,6,0.17887306006762227,0.0,1.3851839774232195,0.0007001211663893509,0.03668516438153831,0.7075295542921348,1,0.38345856327855,0.21554187640043262,0.33
+50,7,0.3140316358657934,0.0,1.385579233403677,0.0007000403877515133,0.036623183441044,0.7074477901136985,1,0.4507865390070744,0.2541878240443913,0.33
+50,8,0.23715259158473073,0.0,1.3816151297478814,0.0007006583518512971,0.036471857398498744,0.7082672918998757,1,0.4908498486812725,0.21785048182095113,0.39
+50,9,0.21576344997577382,0.0,1.385014804119038,0.000700017087762085,0.03640969791024484,0.7075646034172094,1,0.5247777480600473,0.17363746051585763,0.45
+50,10,0.2154868063853018,0.0,1.3860975502377855,0.000700164617882211,0.036540257028073335,0.7073404534883114,1,0.5595551341180874,0.13214169814657062,0.51
+50,11,0.21253235612399332,0.0,1.3861107774528625,0.000700067501469989,0.03667452789062429,0.7073377555241944,1,0.5743702887780682,0.10500918350556487,0.5700000000000001
+50,12,0.30332444845409523,0.0,1.386015403704794,0.0006999815247688706,0.03675133900455025,0.7073575341488353,2,0.6066179246472971,0.13669391609180415,0.6200000000000001
+50,13,0.31532859002912983,0.0,1.3862943611198844,0.0007001722195526527,0.036787569296499095,0.7072997068701548,2,0.6555524778391554,0.15295074261808506,0.6150000000000001
+50,14,0.44104953669283786,0.0,1.3862008763240883,0.0007001721940894027,0.03676820450264,0.7073190603666951,2,0.7331018479086105,0.2148796330827474,0.5850000000000001
+50,15,0.4613175251548663,0.0,1.3827450260285548,0.000698397696910662,0.03658849124357927,0.7080347071062223,2,0.803551571671239,0.26691491689977553,0.555
+50,16,0.3514770860562616,0.0,1.3605577563494342,0.0007164838139314402,0.03649552766558745,0.7125926263812749,2,0.8141373539196941,0.22176337394789553,0.535
+50,17,0.45712184344900586,0.0,1.366143923262289,0.000711951046335193,0.03609241515082259,0.7114490587105523,2,0.8637666025940597,0.28267844180361656,0.525
+50,18,0.5438744754721799,0.0,1.3620106345531002,0.0007120430054390931,0.03659163840065112,0.7122967987998935,2,0.9392830146529011,0.31708473447888197,0.495
+50,19,0.5072484628853742,0.0,1.3619731402335076,0.0007209488402628068,0.036252647989203926,0.7123008323498546,2,0.9845714045020856,0.3421615710321475,0.49
+50,20,0.5005574943159037,0.0,1.3650200953549738,0.0007148280286914802,0.036543650595386265,0.7116785330473875,2,1.0,0.3685249810530124,0.485
+50,21,0.5908402545535305,0.0,1.36650951368469,0.000709500245070455,0.0363736571253145,0.7113750075099176,2,1.0,0.40280084851176856,0.45499999999999996
+50,22,0.5875398663471759,0.05,1.2054772747156335,0.0007428506013051409,0.03438788841282123,0.7287000235397793,2,1.0,0.4584662211572531,0.42499999999999993
+50,23,0.602128895016976,0.05,1.2184866034655313,0.0007830801733644572,0.035322252379667705,0.726104487889912,2,1.0,0.5070963167232533,0.3949999999999999
+50,24,0.5869679042737088,0.05,1.2207816740691846,0.0008182153276428924,0.035203857861243845,0.7256338250539551,2,1.0,0.5565596809123627,0.3849999999999999
+50,25,0.5856654555579438,0.05,1.2093052768452188,0.0008122828173552697,0.03558799086546556,0.7279150776097204,2,1.0,0.5855515185264795,0.3799999999999999
+50,26,0.5111928287140827,0.05,1.223233430265962,0.0007946868715296342,0.034862962194745904,0.7251548153005385,2,1.0,0.5373094290469425,0.3599999999999999
+50,27,0.47702622089072577,0.0,1.2469604766675815,0.0007770180970400841,0.03540498603664864,0.7352618533363499,2,1.0,0.49008740296908604,0.33999999999999986
+50,28,0.56897464687856,0.0,1.2624557295797287,0.0007623214601975164,0.03494942792825696,0.7322404617958391,2,1.0,0.5299154895952002,0.33499999999999985
+50,29,0.4953937267399889,0.0,1.2726888298399448,0.0007490231858454661,0.03564236322909563,0.7302345928724104,2,1.0,0.48464575579996305,0.31499999999999984
+50,30,0.5857797449614824,0.0,1.3817566591634591,0.0007033684097884196,0.03672001038061024,0.7082369275626235,2,1.0,0.5525991498716081,0.3049999999999998
+50,31,0.5770246732887419,0.0,1.3790907120754246,0.0007037746467046348,0.03666565477571228,0.7087873382095887,2,1.0,0.5900822442958062,0.2949999999999998
+50,32,0.5961283832150734,0.0,1.3757348844942294,0.0007039078625570919,0.03659150361309482,0.7094794668094664,2,1.0,0.6537612773835785,0.2849999999999998
+50,33,0.6757232326535261,0.0,1.2520373724215532,0.0007392404839013285,0.03451961417794734,0.7342871883150752,2,1.0,0.6857441088450869,0.2549999999999998
+50,34,0.5362881124954829,0.05,1.237661237519946,0.0007310077925415139,0.034991536714282644,0.7222955021411628,2,1.0,0.620960374984943,0.2349999999999998
+50,35,0.5053485917326158,0.0,1.2655635359474418,0.0007187226580316029,0.03499658193411984,0.7316478127507796,2,1.0,0.5844953057753863,0.2149999999999998
+50,36,0.664177337779934,0.0,1.3438515808908877,0.000696398002966835,0.03626107233121366,0.7160101049300315,2,1.0,0.6472577925997802,0.1849999999999998
+50,37,0.6085336191559744,0.0,1.2555627251373191,0.0007201219988101095,0.03434434551191705,0.7336062632421959,2,1.0,0.6617787305199145,0.1799999999999998
+50,38,0.6364055478898166,0.0,1.265688258657727,0.0007108936372121245,0.03486015148495115,0.7316263985300807,2,1.0,0.7213518262993889,0.1699999999999998
+50,39,0.6396404072818136,0.0,1.2711435087175607,0.0007420462619304943,0.03524932041316919,0.7305416473231563,2,1.0,0.7654680242727119,0.16499999999999979
+50,40,0.5652522756507884,0.0,1.278464575073685,0.0007303190321273679,0.03485830968346718,0.7291026939017757,2,1.0,0.717507585502628,0.1449999999999998
+50,41,0.6542408341133922,0.0,1.2980012151470484,0.0007185921393239299,0.035583004331049634,0.7252314225435138,2,1.0,0.7808027803779739,0.1349999999999998
+50,42,0.5679628034323869,0.0,1.301053051609997,0.0007424110521010436,0.035517158413420305,0.7246133568266797,2,1.0,0.7265426781079565,0.11499999999999978
+50,43,0.5279419877145592,0.0,1.3176910874451315,0.0007305742740287097,0.03620603493984241,0.7212856382493377,2,1.0,0.6598066257151975,0.09499999999999978
+50,44,0.6334892865131124,0.0,1.3309357307935676,0.00072100218613032,0.035612783259382844,0.7186191158758647,2,1.0,0.7116309550437081,0.08499999999999978
+50,45,0.543139014364626,0.0,1.3318637346105153,0.0007383534176215395,0.03644148848320843,0.7184244102319193,2,1.0,0.6437967145487532,0.06499999999999978
+50,46,0.6284876469358353,0.0,1.3426369965850036,0.0007287796633342297,0.036129828797607,0.7162438510270096,2,1.0,0.6949588231194508,0.05499999999999978
+50,47,0.6292910241327575,0.0,1.3419651815119338,0.0007424407655841705,0.03650838278269845,0.7163748185961536,2,1.0,0.7309700804425252,0.04999999999999978
+50,48,0.703716022263229,0.0,1.3480660037974403,0.0007323599705739078,0.03647379379189652,0.7151377143238504,2,1.0,0.7790534075440969,0.019999999999999782
+50,49,0.5638268296374763,0.0,1.3404779892717684,0.0007330947485571049,0.03620651518448216,0.7166806873605251,2,1.0,0.712756098791588,0.0
+51,0,0.1865455330677668,0.0,1.3819924691622238,0.0007006120324140317,0.036389846367139,0.7081893372609895,1,0.14705452144279071,0.2502548352093002,0.01
+51,1,0.20833594638510314,0.0,1.3815631109112618,0.0007008415216204348,0.036443561288082515,0.7082779644685908,1,0.20432663250811386,0.32273875002421093,0.02
+51,2,0.24176346548199815,0.0,1.385722442617869,0.0007000448933077955,0.03664397717221021,0.7074181480137269,1,0.2573508477868728,0.3723022291886423,0.03
+51,3,0.3214928872829815,0.0,1.385777715375231,0.0007004078704095373,0.03673136357538089,0.7074065573939154,1,0.3194085433129042,0.4323329904115501,0.03
+51,4,0.3355210032949043,0.0,1.3839174916745915,0.0007002520215760852,0.036746527113496893,0.7077915070409105,1,0.36968482930619895,0.4871043767924491,0.04
+51,5,0.40126527352513464,0.0,1.3829862109095536,0.0007003208834111351,0.03669679831960063,0.7079840512810627,0,0.42948367198808973,0.5698199610976774,0.04
+51,6,0.37107548316131556,0.0,1.385749534658373,0.0006999031361409788,0.03670111179338083,0.7074125992154673,0,0.5354308622785183,0.5455822712127805,0.12
+51,7,0.39320436515892904,0.0,1.385520880561078,0.0006996250588159768,0.03659791564847561,0.7074600389010097,0,0.5618512511171206,0.5551880908931227,0.13
+51,8,0.3885767184839374,0.0,1.3849753832704832,0.0006993580386221133,0.03642027382630896,0.7075730329239595,0,0.5814279308418088,0.5835898089643478,0.14
+51,9,0.4330275236001978,0.0,1.3841307178112527,0.00069903904542551,0.03650679912064382,0.7077479068701783,0,0.6464790905419243,0.5891994730350811,0.2
+51,10,0.43965217115844457,0.0,1.3861236295446897,0.0007001710006007541,0.036544244805488166,0.7073350521408562,0,0.7179377653571711,0.5945798442781157,0.26
+51,11,0.4756794493492328,0.0,1.3860380690097907,0.0006999963380319163,0.03666786937897425,0.7073528362111525,0,0.7556539276964607,0.6040019155182385,0.27
+51,12,0.495622582245104,0.0,1.3852109755844912,0.0006994829499389379,0.03670989722805429,0.7075242316282974,0,0.8609018995120837,0.5810230580529158,0.35000000000000003
+51,13,0.5061589708640505,0.0,1.3764040188045008,0.0006941141531197969,0.03648425038526944,0.7093455650591587,0,0.8841584441021277,0.5890117180943525,0.35000000000000003
+51,14,0.5361212237536164,0.0,1.3760251573759246,0.0006931767954665654,0.0363452490553604,0.709424056861105,0,0.9334526047721194,0.5980427069445818,0.36000000000000004
+51,15,0.5388213126094571,0.0,1.3777361789733966,0.0006941942332185477,0.03640104775261791,0.709070798072795,0,1.0,0.5627377086981904,0.44000000000000006
+51,16,0.5486053277887953,0.0,1.3748807994845444,0.000692119496547239,0.0361592063340598,0.7096603357373997,0,1.0,0.5620177592959845,0.5
+51,17,0.5275229302859508,0.0,1.3785032344773536,0.0006955988978379748,0.03655950624192295,0.7089119575586724,0,1.0,0.5250764342865027,0.58
+51,18,0.5394779599782693,0.0,1.3753866668602677,0.0006941527214197919,0.036049278125572654,0.7095552564428684,0,1.0,0.5649265332608976,0.58
+51,19,0.5524023881101043,0.0,1.3753200367978073,0.00069303551303717,0.03644175499567385,0.709569448284067,2,1.0,0.5746746270336811,0.6399999999999999
+51,20,0.5746623177444098,0.0,1.272779814217415,0.0007489679871474282,0.03561719009753798,0.7302166910478619,2,1.0,0.6155410591480327,0.6349999999999999
+51,21,0.5189648872642401,0.0,1.0040822286532893,0.00042996857637086133,0.02638976794864096,0.7798955568910999,2,1.0,0.5632162908808005,0.6149999999999999
+51,22,0.605964281168023,0.0,1.2855183696696986,0.0007065240201532322,0.03485845814178284,0.727716665634847,2,1.0,0.6198809372267436,0.6049999999999999
+51,23,0.6036597385054056,0.05,0.994098855016833,0.0004286030905546104,0.025977068029055556,0.7685325998754083,2,1.0,0.6455324616846854,0.5999999999999999
+51,24,0.6766609624445015,0.05,1.024883166918686,0.0004740070604989706,0.027521697141370177,0.7629947429876269,2,1.0,0.6888698748150048,0.5699999999999998
+51,25,0.6395719737560932,0.1,1.0057373992658403,0.00045647722041276806,0.026621657030071754,0.7527530615138339,2,1.0,0.7319065791869774,0.5599999999999998
+51,26,0.7067971683640946,0.05,1.0522436737094294,0.00048663356689476126,0.027676769095647737,0.7580068603798698,2,1.0,0.7893238945469822,0.5299999999999998
+51,27,0.6687513924704416,0.1,1.0178301129502056,0.0004592708811738504,0.02716390119543524,0.7504944965780105,2,1.0,0.8291713082348051,0.5199999999999998
+51,28,0.5831322312458811,0.0,1.3818600495993982,0.0006979703857852169,0.036564598414629154,0.7082177937317966,2,1.0,0.7771074374862703,0.4999999999999998
+51,29,0.667303569963408,0.0,1.0634377225542124,0.0005120730643616329,0.028769276572998277,0.7695085208166912,2,1.0,0.8243452332113601,0.48999999999999977
+51,30,0.727855663712389,0.0,1.3774829402962698,0.0006988880398852429,0.036502562358105506,0.7091210993980559,2,1.0,0.8595188790412964,0.45999999999999974
+51,31,0.592387957579972,0.0,1.3782941170998353,0.000703406463383415,0.03665260918696972,0.7089518862541331,2,1.0,0.8079598585999066,0.4399999999999997
+51,32,0.6757728076185274,0.0,1.3813345840333071,0.0007018121597849671,0.03666265481619887,0.7083247794416696,2,1.0,0.8525760253950916,0.4299999999999997
+51,33,0.7437166763320964,0.0,1.3785159561280382,0.0007019664651985833,0.036493567609798265,0.7089067043755702,2,1.0,0.912388921106988,0.3999999999999997
+51,34,0.6109773195217885,0.0,1.3786489011784553,0.0007066770560296612,0.03652463993547293,0.7088773250925086,2,1.0,0.8699243984059619,0.37999999999999967
+51,35,0.6939013865912473,0.0,1.3812203056104995,0.0007041925287931867,0.03622106011482739,0.7083474053652195,2,1.0,0.9130046219708244,0.36999999999999966
+51,36,0.6876075479095629,0.0,1.378291628600664,0.0007047896988897206,0.03658159581171536,0.7089518288976677,2,1.0,0.95869182636521,0.35999999999999965
+51,37,0.7,0.0,1.3745660157060318,0.000705041187107474,0.03640878737580302,0.7097198661451056,2,1.0,1.0,0.34999999999999964
+51,38,0.71,0.0,1.3698851636546094,0.0007048008650396671,0.036478302291337084,0.7106833552848422,2,1.0,1.0,0.34499999999999964
+51,39,0.69,0.0,1.37258585046913,0.0007009530062344531,0.03643758320965691,0.7101293285864041,2,1.0,1.0,0.33999999999999964
+51,40,0.72,0.0,1.3734683926909586,0.0006977438347048137,0.036485990863914276,0.7099489490875166,2,1.0,1.0,0.3299999999999996
+51,41,0.6290780256318704,0.0,1.3251969162348332,0.0006870310922359602,0.03554856416181344,0.7197917831263931,2,1.0,0.9302600854395682,0.3099999999999996
+51,42,0.7153818921327304,0.0,1.3367345180032506,0.0006831815913288792,0.03526938237373078,0.7174604166415227,2,1.0,0.9846063071091014,0.2999999999999996
+51,43,0.6284247731097219,0.0,1.3264781446276845,0.0006781377083056187,0.03574761282030212,0.7195368868495482,2,1.0,0.9280825770324066,0.2799999999999996
+51,44,0.7152415391556398,0.0,1.3359924014651248,0.0006758074014563139,0.034941018998503943,0.7176138162059847,2,1.0,0.9841384638521328,0.2699999999999996
+51,45,0.77,0.0,1.3252990322400018,0.0006696401758353456,0.035657818158597795,0.7197782021903284,2,1.0,1.0,0.23999999999999957
+51,46,0.6362475225519872,0.0,1.3336344917547196,0.0006897778226126129,0.03521533182293214,0.7180857314558904,2,1.0,0.9541584085066243,0.21999999999999958
+51,47,0.7184576514094063,0.0,1.3415917454745747,0.0006859224474457427,0.03591534264751728,0.716473650651653,2,1.0,0.9948588380313542,0.20999999999999958
+51,48,0.77,0.0,1.3312893960592487,0.000680785627604158,0.035463364224645105,0.7185638634827696,2,1.0,1.0,0.17999999999999958
+51,49,0.75,0.0,1.337660746134957,0.0007006731581565961,0.03570077694536097,0.7172655278545416,2,1.0,1.0,0.14999999999999958
+52,0,0.15867857942397037,0.0,1.3804958700092715,0.0007012726747411899,0.03645419278460382,0.7084982509755737,1,0.1196966249146026,0.22261586901286493,0.05
+52,1,0.16465138968408619,0.0,1.3802978414015905,0.0007003291624615278,0.03643535943432383,0.7085395375260508,1,0.15862950768568104,0.2637702066469927,0.1
+52,2,0.13003571715718104,0.0,1.380008427476173,0.0006994293823070756,0.03652361413489061,0.7085996727378844,1,0.19071108555960528,0.21095612403773067,0.16
+52,3,0.22935453270779832,0.0,1.3816211706190056,0.000699317286071262,0.03658148145754661,0.7082665979007174,1,0.24713773581629078,0.2761877505736552,0.17
+52,4,0.2940570544691582,0.0,1.3859459740143336,0.0007003187127378871,0.03678025383229316,0.7073717664921874,1,0.31242795542297475,0.34902423357039014,0.17
+52,5,0.2836644761133573,0.0,1.3856576589665677,0.0007004453832724971,0.03677052736645587,0.707431390824895,1,0.3643928679717753,0.3537565744107866,0.22000000000000003
+52,6,0.3355711010952584,0.0,1.3855898779041913,0.0007000301763055844,0.036696698717690684,0.7074455912922251,1,0.4360772868421476,0.4098135023350226,0.23000000000000004
+52,7,0.344772248087697,0.0,1.3861720620674824,0.0007001059773217046,0.03662221060295287,0.7073250528399984,1,0.47456955726774497,0.42890967681328745,0.28
+52,8,0.3475011293470513,0.0,1.385872829370077,0.0007000332375630617,0.03647599504224906,0.7073870251622133,1,0.5104011845389479,0.4628690491947318,0.33
+52,9,0.4378261030720615,0.0,1.3853445527194852,0.0006999361761258042,0.03633283705014194,0.7074964016662235,1,0.5759713547061421,0.5207870964163723,0.33
+52,10,0.43556303153068376,0.0,1.385250439286348,0.0006995123828018146,0.036532903717575504,0.7075160530103404,1,0.6300873040071204,0.5501082504273055,0.38
+52,11,0.49912636184529574,0.0,1.3742826712975535,0.0006939954796764027,0.036252046663460526,0.7097827872626247,1,0.6815514718146469,0.6019444890338979,0.38
+52,12,0.5161952824026904,0.0,1.359210747575002,0.0006814560418615464,0.03567867265941664,0.7128827599002424,1,0.7421844047314152,0.6547691358223169,0.38
+52,13,0.5579159412670707,0.0,1.3539731123565177,0.0006781308283637468,0.03580872140221471,0.713954965678966,1,0.7959787724713804,0.7310779030069584,0.38
+52,14,0.5939697897912778,0.0,1.3475608456789354,0.0006740029698892487,0.0357110667949976,0.7152643825269972,2,0.8574959751558829,0.7794873282890626,0.39
+52,15,0.6268585051637333,0.05,1.1174124080379437,0.0006108441790212901,0.03125510149648453,0.7458056484919927,2,0.9056653546456787,0.8329187701258193,0.385
+52,16,0.6259593836968196,0.05,1.3821176971373261,0.0006987211683987095,0.036421638402704556,0.6924258287876378,2,0.9386217901444375,0.8581391904875548,0.38
+52,17,0.5671255157779086,0.0,1.380975466161937,0.0006970926637079052,0.03643507498160019,0.7084009177327354,2,0.9474181786544768,0.7850971774961392,0.36
+52,18,0.6546727568462223,0.0,1.1445954441728177,0.0006282708141818172,0.03156100775835126,0.754757319627665,2,1.0,0.8155758561540744,0.355
+52,19,0.6805235244435155,0.0,1.3738340089308014,0.0006959276579542772,0.0364187701419444,0.7098744031802908,2,1.0,0.8684117481450515,0.345
+52,20,0.6742474047914364,0.0,1.3716808858041034,0.0006965601106370357,0.03633876597415636,0.7103173840361379,2,1.0,0.914158015971455,0.33499999999999996
+52,21,0.688356212226708,0.0,1.368839027994686,0.0006969488676323513,0.03618599385768153,0.7109016339640738,2,1.0,0.9278540407556932,0.32999999999999996
+52,22,0.6760519096570476,0.0,1.300442612234333,0.0006343303485950398,0.03438350907780713,0.7247782734252264,2,1.0,0.9535063655234924,0.32499999999999996
+52,23,0.6828404073243186,0.0,1.3058463818909134,0.0006390801181453516,0.03467398511892192,0.7236971501711,2,1.0,0.976134691081062,0.31999999999999995
+52,24,0.77,0.0,1.308346949130444,0.0006437451190797704,0.03410691247078394,0.7231949904829184,2,1.0,1.0,0.2899999999999999
+52,25,0.72,0.0,1.3243030590394589,0.0006556820879390172,0.035374864903235735,0.7199846716810823,2,1.0,1.0,0.2799999999999999
+52,26,0.71,0.0,1.313606201962307,0.0006478366577507651,0.03415456135442879,0.7221392954096217,2,1.0,1.0,0.2749999999999999
+52,27,0.6377011269045725,0.0,1.3149122097676353,0.0006501905503162799,0.03513905388804267,0.7218762183484063,2,1.0,0.959003756348575,0.2549999999999999
+52,28,0.7072459003563358,0.0,1.3230981879571002,0.0006546835928939682,0.03422833796264215,0.7202279198138041,2,1.0,0.990819667854453,0.2499999999999999
+52,29,0.6316293109517731,0.0,1.32257076499334,0.0006576906210053998,0.03526057144641949,0.7203329714677972,2,1.0,0.9387643698392438,0.2299999999999999
+52,30,0.7638174074462765,0.0,1.328454989244629,0.0006637548399997582,0.0349365198423736,0.719143589526348,2,1.0,0.9793913581542548,0.1999999999999999
+52,31,0.75,0.0,1.3427434455620502,0.000669704480949719,0.03540020726182554,0.7162462291946144,2,1.0,1.0,0.1699999999999999
+52,32,0.6361645190840864,0.0,1.353608925348299,0.0006773376244793531,0.035868717140554826,0.7140296592767494,2,1.0,0.9538817302802882,0.1499999999999999
+52,33,0.77,0.0,1.3575182327044795,0.0006795380529532554,0.03568244737727372,0.7132298451464064,2,1.0,1.0,0.11999999999999991
+52,34,0.72,0.0,1.3656958576451472,0.0006863595824514122,0.03637116334255202,0.7115515382722027,2,1.0,1.0,0.10999999999999992
+52,35,0.77,0.0,1.3593739698261098,0.0006825433779964873,0.03551134745742028,0.7128489051121024,2,1.0,1.0,0.07999999999999992
+52,36,0.75,0.0,1.3655442596470198,0.0006919066777326584,0.03645310814582735,0.7115803752520031,2,1.0,1.0,0.04999999999999992
+52,37,0.72,0.0,1.368983444588879,0.000701004088175876,0.03618834632170756,0.7108702855230367,2,1.0,1.0,0.03999999999999992
+52,38,0.71,0.0,1.3628277225933934,0.0006996144966070046,0.03630567954731423,0.7121344195398205,2,1.0,1.0,0.03499999999999992
+52,39,0.77,0.0,1.3648946953389745,0.0006955710001075753,0.03612566361873087,0.7117121657694169,2,1.0,1.0,0.004999999999999921
+52,40,0.75,0.0,1.3673618474479907,0.0007049768626409035,0.036468167329021826,0.7112018324540411,2,1.0,1.0,0.0
+52,41,0.72,0.0,1.3677223270336587,0.0007133781622357104,0.03653647791800972,0.7111243348634178,2,1.0,1.0,0.0
+52,42,0.77,0.0,1.362456182546313,0.0007142505547629289,0.03625582472328812,0.7122045790245275,2,1.0,1.0,0.0
+52,43,0.72,0.0,1.3616498918112592,0.0007238691960143661,0.036559627413019095,0.71236587380696,2,1.0,1.0,0.0
+52,44,0.6386898927696312,0.0,1.356040782533472,0.0007256149378562243,0.03618434838528756,0.7135131003060814,2,1.0,0.9622996425654375,0.0
+52,45,0.72,0.0,1.3636287822492374,0.0007186343184825228,0.036599113960724496,0.7119623744182787,2,1.0,1.0,0.0
+52,46,0.6355670232138003,0.0,1.3574343181399557,0.0007192138226496732,0.036227759122904504,0.7132307784348686,2,1.0,0.9518900773793345,0.0
+52,47,0.7014273262862909,0.0,1.3634438076889206,0.0007129310205404892,0.036503972376984925,0.7120026450088742,2,1.0,0.971424420954303,0.0
+52,48,0.69,0.0,1.3678607325322805,0.0007074005268467574,0.03647164481112296,0.7110983579402979,2,1.0,1.0,0.0
+52,49,0.634662961702763,0.0,1.3700951479744414,0.0007026967666002983,0.03644568450755661,0.7106410433026351,2,1.0,0.9488765390092102,0.0
+53,0,0.17421059291872296,0.0,1.3806198225156003,0.0006994596282559206,0.03646044570863575,0.708473399520959,1,0.1487760818830903,0.2404632141988045,0.05
+53,1,0.12620482654819312,0.0,1.3803078820609094,0.0006986165834069655,0.03642613230809562,0.7085381713486673,1,0.18076999942382332,0.20978442249951654,0.11
+53,2,0.19788848628758,0.0,1.3817394929726154,0.0006985878793862743,0.03654490748122279,0.7082424503811939,1,0.21786614461018086,0.2387844522467223,0.16
+53,3,0.24036597476745872,0.0,1.385590607775782,0.0007002409152224032,0.03672498585493903,0.707445353001607,1,0.26272736360030235,0.29470465835784304,0.17
+53,4,0.3045489734335465,0.0,1.3854812889775385,0.0007005228368233175,0.036774957523342436,0.707467861118088,1,0.3311367999731277,0.36217031147650586,0.17
+53,5,0.31619821924426705,0.0,1.3851710006222273,0.0007008047710855716,0.03676574132477593,0.7075319566763663,1,0.369655596321476,0.4227292017725017,0.18000000000000002
+53,6,0.3685606009788148,0.0,1.383061963330746,0.0007007442565402292,0.03664340993305189,0.7079682147150991,1,0.4121703651031128,0.4810032439757511,0.18000000000000002
+53,7,0.3851629331501961,0.0,1.383810788076217,0.0006990141769620075,0.03654912401905076,0.7078140872825317,1,0.4676932069941183,0.5382343690075158,0.19000000000000003
+53,8,0.4035198159208088,0.0,1.3843949321430482,0.0006989339196623519,0.03650864687286895,0.707693297058285,1,0.5132611745973383,0.6129280160391348,0.20000000000000004
+53,9,0.439880843569619,0.0,1.3821262203181583,0.0006986335356713367,0.03629067512153041,0.7081625136380371,1,0.5551657985387953,0.6852427136034689,0.21000000000000005
+53,10,0.47584383403279173,0.0,1.3816390638815235,0.000699367537550892,0.03647828783743434,0.7082628799245573,1,0.605174545234757,0.7134424773354228,0.26000000000000006
+53,11,0.5469524210973661,0.0,1.3816314103348584,0.0007006055428364394,0.03659614841925935,0.7082639497399427,1,0.6692587669642902,0.7757061755328819,0.26000000000000006
+53,12,0.47197634712350356,0.0,1.3804429620501797,0.0007015657507135845,0.03662153953296773,0.7085090568009569,1,0.7223442090001064,0.7305195799115544,0.32000000000000006
+53,13,0.5461405176378151,0.0,1.3831523228827332,0.000700876243867438,0.03671244882743656,0.7079494780183868,1,0.7529901278136549,0.7753132430101195,0.37000000000000005
+53,14,0.5452335797358363,0.0,1.3580742006535944,0.0007358883927687921,0.036740217865709676,0.7130930608259776,1,0.7942082196704964,0.7908690095038756,0.42000000000000004
+53,15,0.6383550344186157,0.0,1.3650431673297405,0.0007285434682569607,0.036608441901982106,0.7116681701449773,1,0.8512028900998364,0.8681134096122435,0.42000000000000004
+53,16,0.6565734147745317,0.05,1.2222927651564726,0.0005674521084211445,0.03149168101557704,0.7254327856789113,1,0.9125024865324698,0.9239918149605577,0.43000000000000005
+53,17,0.6711914890944533,0.05,1.2408122232618901,0.0005849052702018555,0.0329763547227639,0.7217217101942172,1,0.9505695130737508,0.9616405317288015,0.48000000000000004
+53,18,0.7053300322595564,0.0,1.2622081242811425,0.000605571569995758,0.0328645573600017,0.7323504601715618,1,0.9866572350273042,1.0,0.49000000000000005
+53,19,0.7,0.0,1.2633449630336329,0.0006081036420454388,0.03371910029824026,0.732126572680147,1,1.0,1.0,0.54
+53,20,0.73,0.0,1.2821378744783405,0.0006290375175881356,0.033460756240786524,0.7284166371398865,1,1.0,1.0,0.54
+53,21,0.6387348525713911,0.0,1.2949912597061544,0.000632117311807766,0.03442123721173551,0.7258652277045329,2,1.0,0.9624495085713036,0.6000000000000001
+53,22,0.71,0.0,1.369893632895196,0.0007050910765166753,0.03653894476848572,0.7106814945571343,2,1.0,1.0,0.5950000000000001
+53,23,0.630137859069535,0.0,1.3698074805543248,0.0007003825503943043,0.03631424805369792,0.7107011445005215,2,1.0,0.9337928635651167,0.5750000000000001
+53,24,0.7676406100553441,0.0,1.3753141297039304,0.0006989094632248136,0.03639274212848123,0.7095682446054152,2,1.0,0.9921353668511471,0.545
+53,25,0.71,0.0,1.3760308078878274,0.0007040839623323727,0.03642062550217224,0.7094183951822952,2,1.0,1.0,0.54
+53,26,0.69,0.0,1.3754649859085946,0.0007002066134343286,0.036460142829753656,0.7095366203318062,1,1.0,1.0,0.535
+53,27,0.71,0.0,1.1845809718152267,0.000542722250362022,0.030563821581834055,0.7473131974491826,1,1.0,1.0,0.545
+53,28,0.69,0.0,1.1994068047016126,0.0005558705835007727,0.031838691160267135,0.7444982902347583,1,1.0,1.0,0.555
+53,29,0.6447915010840598,0.0,1.2094981047989692,0.0005694644211600463,0.031590360904439466,0.7425687885264594,2,1.0,0.9826383369468661,0.615
+53,30,0.77,0.0,1.3731413406103745,0.0007130201427154098,0.03666435416325742,0.7100100008829496,2,1.0,1.0,0.585
+53,31,0.6332908644841448,0.0,1.3714767619866848,0.0007189630576013489,0.0367447324356389,0.7103501652447702,2,1.0,0.944302881613816,0.565
+53,32,0.7054145068253564,0.0,1.3753232689916912,0.0007140833060415558,0.036763626974460104,0.7095601070171552,1,1.0,0.9847150227511883,0.5599999999999999
+53,33,0.6799999999999999,0.05,1.0900466117507295,0.0004674700802208477,0.028394719090999453,0.7510122842833667,2,1.0,1.0,0.61
+53,34,0.72,0.0,1.3665241858915795,0.000722691219295794,0.03669988113542601,0.7113665781727089,2,1.0,1.0,0.6
+53,35,0.637837474642899,0.0,1.3614130920466692,0.0007266800463939526,0.036307209177309514,0.712413240036679,2,1.0,0.9594582488096636,0.58
+53,36,0.598649386338971,0.0,1.3638185743775377,0.0007197219059618591,0.03644466884168196,0.7119230057069259,2,1.0,0.8954979544632371,0.5599999999999999
+53,37,0.583795671389145,0.0,1.364725164899605,0.0007138013458290878,0.03636664730642926,0.7117394679794719,2,0.9936775733501383,0.8533617357219887,0.5399999999999999
+53,38,0.6940470535745457,0.0,1.3645595774068715,0.000708531209034012,0.036336246472860906,0.7117756021311719,2,1.0,0.913490178581819,0.5299999999999999
+53,39,0.691304726470609,0.0,1.360971735994544,0.0007103223569034851,0.0363539278828186,0.7125103583017188,2,1.0,0.9710157549020303,0.5199999999999999
+53,40,0.628489643486166,0.0,1.3565431098158705,0.0007116673324336666,0.036139811815984205,0.7134161108004892,2,1.0,0.9282988116205536,0.4999999999999999
+53,41,0.7619640721110379,0.0,1.3561680771382834,0.0007055214488742102,0.03623047091861102,0.7134952941171144,2,1.0,0.9732135737034597,0.46999999999999986
+53,42,0.6246412351574198,0.0,1.356099818193274,0.0007137998601506291,0.03629450657975418,0.7135058629358842,2,1.0,0.9154707838580661,0.44999999999999984
+53,43,0.5868680761510991,0.0,1.3551752665684287,0.0007075611017267513,0.036033776781765295,0.7136973676521752,2,1.0,0.8562269205036641,0.4299999999999998
+53,44,0.6920078116773158,0.0,1.353572004551383,0.0007021640273160698,0.036321535414311185,0.7140270595041822,2,1.0,0.9066927055910531,0.4199999999999998
+53,45,0.6080358231581219,0.0,1.3501850655380248,0.0007041648068512602,0.03588181318989129,0.7147173292409292,2,1.0,0.8601194105270731,0.3999999999999998
+53,46,0.6946740015318296,0.0,1.3481304279214317,0.000698402859921213,0.03609350246930119,0.7151384253111569,2,1.0,0.9155800051060986,0.3899999999999998
+53,47,0.6145202855153639,0.0,1.3443238655676042,0.000700057699544517,0.03555504189918802,0.7159125723112824,2,1.0,0.881734285051213,0.3699999999999998
+53,48,0.6962087635269345,0.0,1.3418555803281627,0.0006942023020156804,0.03572670600409462,0.7164166880789689,2,1.0,0.920695878423115,0.35999999999999976
+53,49,0.6917011163362432,0.0,1.3376544660965877,0.0006954638275221744,0.03558804359237864,0.7172689142665774,2,1.0,0.9390037211208108,0.35499999999999976
+54,0,0.013080052559293245,0.0,1.3811648708912014,0.0006976279295459318,0.03642020375923542,0.7083615698758052,1,0.14249385130855277,0.14402401533766596,0.06
+54,1,0.07689392651668682,0.0,1.3812740297687283,0.0006967821800538957,0.03639294205635504,0.708339368181262,1,0.1786401867645933,0.11456620383026392,0.12
+54,2,0.18756463015696662,0.0,1.381958618579803,0.0006971606101170004,0.036473233363452,0.7081977591786446,1,0.2210270285932702,0.16735056716440688,0.13
+54,3,0.20091734076371812,0.0,1.377963499066996,0.0007038629919266439,0.03655810850083334,0.7090199125980194,1,0.2688697569469799,0.22270975277425056,0.14
+54,4,0.22998125328483607,0.0,1.3852214511522865,0.0007005457177433035,0.036765323951800474,0.7075216240286116,1,0.29966224248121986,0.25033156138803037,0.19
+54,5,0.28081585791465014,0.0,1.3851187562005214,0.0007000632602716301,0.03675056287774065,0.7075430743984112,1,0.35729468849766144,0.3192090564682289,0.2
+54,6,0.21866687680014305,0.0,1.3850285453124647,0.000700515300140367,0.03668555929489685,0.7075615539450913,1,0.38729594056675026,0.2770443253392682,0.26
+54,7,0.33144377724648577,0.0,1.3856300171366855,0.0007003991426164661,0.03663129394065855,0.7074371310237768,1,0.43683815805000303,0.3285014064299492,0.26
+54,8,0.3434343209288341,0.0,1.3826077213085595,0.0007004910766130979,0.03646062753475615,0.7080622246966951,1,0.4763909302299074,0.3889916511612217,0.27
+54,9,0.3598196710166677,0.0,1.382332724950161,0.0007015215260806432,0.036351230615203664,0.7081186400116841,1,0.5251985261154436,0.4200006229208748,0.32
+54,10,0.3136293144490191,0.0,1.384334521135826,0.0006989462917694816,0.036502695266214594,0.7077057886149912,1,0.5658388434541057,0.38528573080027373,0.38
+54,11,0.2919807220020557,0.0,1.3851307720492345,0.000700023545021832,0.03666812597972853,0.7075406044385417,1,0.6050297562094329,0.33406769109584733,0.44
+54,12,0.38273905415191123,0.0,1.382283744704124,0.0006979345240378467,0.036635429582987225,0.7081302462088547,1,0.65269243652401,0.3476556712283593,0.49
+54,13,0.3255816387462408,0.0,1.3829095062047225,0.0006978573456934971,0.03665692284549128,0.7080009277638266,1,0.6804082126194599,0.2914625477647662,0.55
+54,14,0.39537391716754156,0.0,1.382857231072085,0.0006977515740814243,0.036645013900405796,0.7080117785105271,2,0.717878698935873,0.31372124179995364,0.6000000000000001
+54,15,0.41291547617105023,0.0,1.3839063231882833,0.0007019622535717558,0.03666262139469174,0.7077931095051453,2,0.7601375609767688,0.35622443276393734,0.5950000000000001
+54,16,0.44296727102357025,0.0,1.3844252952880582,0.0007008321163512728,0.03658460922185043,0.707686230646675,2,0.8219194891032436,0.3843181661247835,0.5900000000000001
+54,17,0.5671906987694311,0.0,1.3568554241612123,0.0007330220982511117,0.03638641229504607,0.713343519404331,2,0.896726963432645,0.4444542052266842,0.56
+54,18,0.5563000066636357,0.05,1.215001056388352,0.0006757781937066279,0.03361869243838339,0.7268397459705722,2,0.9557740195757845,0.505930332707037,0.55
+54,19,0.6347691646877641,0.05,1.2102472763946963,0.0006705939056303699,0.033434662811394414,0.7277846148908804,2,1.0,0.549230548959214,0.52
+54,20,0.5820645137062731,0.1,1.222186813350819,0.0007072272283264124,0.0338473632651389,0.7102088791431501,2,1.0,0.5735483790209105,0.515
+54,21,0.5671728549234909,0.05,1.2339498970513314,0.0007015815113260802,0.03416876380262034,0.72305111104735,2,1.0,0.5905761830783031,0.51
+54,22,0.6146480395597795,0.05,1.2304095473955126,0.0006939494937898767,0.03389679958981634,0.7237625513143395,2,1.0,0.6488267985325985,0.5
+54,23,0.6099609117374816,0.1,1.1554136197334512,0.0006393079689853241,0.03168138341570932,0.7237835856304436,2,1.0,0.6665363724582719,0.495
+54,24,0.6843831116204658,0.1,1.1598233008654262,0.000639523022400096,0.0313943513360012,0.7229010426319123,2,1.0,0.7146103720682195,0.46499999999999997
+54,25,0.6332962425007869,0.15000000000000002,1.1502583122571783,0.0006364921690925833,0.03215504857771197,0.7096054721751982,2,1.0,0.7443208083359565,0.45999999999999996
+54,26,0.6199311733184607,0.10000000000000002,1.1541484885838773,0.0006365611402066684,0.03180292115879535,0.7240375378498866,2,1.0,0.766437244394869,0.45499999999999996
+54,27,0.566702739578696,0.10000000000000002,1.141526280491871,0.0006334150513879598,0.03178717131302122,0.7265536507254331,2,1.0,0.72234246526232,0.43499999999999994
+54,28,0.5317057313576862,0.05000000000000002,1.1671838919843947,0.0006284149181811878,0.031804999366588184,0.736248296598149,2,1.0,0.6723524378589539,0.4149999999999999
+54,29,0.692585774184601,1.3877787807814457e-17,1.1840704836452123,0.0006242283434906453,0.032405535403217875,0.7473788078485039,2,1.0,0.7419525806153369,0.3849999999999999
+54,30,0.5488333363958188,0.05000000000000002,1.1670012761273947,0.0006205236492069727,0.03108938577113556,0.7362868211303318,2,1.0,0.6627777879860627,0.3649999999999999
+54,31,0.6351199871100891,1.3877787807814457e-17,1.1992546779068283,0.00062037058483286,0.0323869496732561,0.7445026894018343,2,1.0,0.7170666237002971,0.35499999999999987
+54,32,0.6372762706454889,0.05000000000000002,1.2128303572016264,0.000630249265538149,0.032256396382131104,0.7272885731844552,2,1.0,0.7909209021516298,0.34499999999999986
+54,33,0.7224168075764688,0.05000000000000002,1.2369502001403565,0.0006462669857050748,0.03310733616133412,0.7224720862126712,2,1.0,0.841389358588229,0.31499999999999984
+54,34,0.6866051534028118,0.05000000000000002,1.325794502270294,0.0007265979686958923,0.03587830680129961,0.7042777836148412,2,1.0,0.8886838446760394,0.3049999999999998
+54,35,0.6040625905399539,0.0,1.3193372938262178,0.0007276964720942627,0.0354670936598298,0.7209557343718235,2,1.0,0.8468753017998466,0.2849999999999998
+54,36,0.6922930914461124,0.0,1.3323308301726182,0.0007197456381426016,0.03610223360856476,0.7183374413073401,2,1.0,0.9076436381537081,0.2749999999999998
+54,37,0.7568838222724972,0.0,1.324778591139467,0.0007195202423329535,0.035711322504608456,0.7198630446618911,2,1.0,0.956279407574991,0.2449999999999998
+54,38,0.6189127345963532,0.0,1.3258052611553977,0.0007363761253618366,0.03609141633545289,0.7196491579703173,2,1.0,0.896375781987844,0.2249999999999998
+54,39,0.6872385117999416,0.0,1.3400952263495598,0.0007267091994861048,0.03602143905154154,0.7167609934539236,2,1.0,0.9241283726664717,0.2199999999999998
+54,40,0.6722282425979214,0.0,1.3418259467893878,0.0007176787500415914,0.036114846976297264,0.7164131693990458,2,1.0,0.9407608086597381,0.2149999999999998
+54,41,0.7188546923702168,0.0,1.3417136239624041,0.000709538594556268,0.03571293025483021,0.716439296372121,2,1.0,0.9961823079007227,0.2049999999999998
+54,42,0.77,0.0,1.3353894689009298,0.0007101152607915284,0.03591099921908532,0.7177220798392169,2,1.0,1.0,0.1749999999999998
+54,43,0.72,0.0,1.3364229030071682,0.0007236961682812453,0.0360548097543428,0.7175071565767106,2,1.0,1.0,0.16499999999999979
+54,44,0.71,0.0,1.3297859094473774,0.0007249649092373857,0.03605682702358161,0.7188499560632003,2,1.0,1.0,0.15999999999999978
+54,45,0.638407815123486,0.0,1.3300303738000256,0.0007152362007111512,0.035841527148695804,0.7188044788654886,2,1.0,0.9613593837449534,0.1399999999999998
+54,46,0.5974503307122464,0.0,1.3441849810109454,0.0007086184225036987,0.035949901220866526,0.7159373360561099,2,1.0,0.8915011023741549,0.11999999999999979
+54,47,0.6873186901752886,0.0,1.355262085563591,0.0007039463164943501,0.036229481259823025,0.7136811045950382,2,1.0,0.9243956339176288,0.11499999999999978
+54,48,0.7082044153968601,0.0,1.354306354009697,0.000697893567008035,0.03580526038015554,0.7138788318844432,2,1.0,0.9606813846562002,0.10499999999999979
+54,49,0.707480366748426,0.0,1.3487976173105003,0.000697726553682078,0.03590894431977517,0.7150027646393082,2,1.0,0.9916012224947535,0.09999999999999978
+55,0,0.16955883609248484,0.0,1.380445515756627,0.0006975114642911332,0.036405191503896484,0.7085102040127074,1,0.15090964163416304,0.222468205068426,0.05
+55,1,0.21719673038507953,0.0,1.3800241467471628,0.0006969148852241185,0.03645184273015759,0.7085974653385746,1,0.19767383148010398,0.29336963122347726,0.060000000000000005
+55,2,0.24160985171594587,0.0,1.3794316385709466,0.0006968386693218504,0.03646411833038987,0.7087198269764552,1,0.26717744420148054,0.3603258208180923,0.07
+55,3,0.3196340477563874,0.0,1.3857145208345538,0.0007003126284681451,0.0367270424248042,0.7074196768135474,1,0.3347564815688253,0.40823093069099503,0.07
+55,4,0.24343317535311965,0.0,1.382660133790754,0.0007035898842958387,0.0367680749838894,0.7080501092492041,1,0.37210709208927234,0.37731897707291445,0.13
+55,5,0.3198912982544144,0.0,1.3857968116486978,0.0007001708647514576,0.036766582848594714,0.7074027028962809,1,0.4264236662632176,0.4021433835409609,0.18
+55,6,0.39088933873200665,0.0,1.3841706408671717,0.0006987696033125423,0.036645983620053876,0.7077397605496628,1,0.4962765742749062,0.45730845911929835,0.18
+55,7,0.31969146365386636,0.0,1.3839696537793946,0.0006985606173401087,0.03655892084328295,0.7077814182733896,1,0.5494891832542851,0.42456749838288876,0.24
+55,8,0.39553476094714946,0.0,1.3848213053034273,0.0006992554759379246,0.03646354075519425,0.7076049551463572,1,0.5968000519466207,0.45551580921944085,0.29
+55,9,0.34385817385800566,0.0,1.383913330640238,0.0006988981768648802,0.03633779701767696,0.7077929276468085,1,0.6241995739800921,0.41796107654991155,0.35
+55,10,0.43981741610730574,0.0,1.373328888183036,0.000694183876399453,0.03643829137139826,0.7099791412704968,1,0.6728200580779378,0.4811013192667586,0.36
+55,11,0.3787509513509119,0.0,1.37395589509272,0.0006966033266637826,0.03630535623886,0.7098490214238096,1,0.710163569340901,0.43397900693865527,0.42
+55,12,0.4703921539745596,0.0,1.3779537431656328,0.0006968083200897508,0.036491903806650156,0.7090248362282984,1,0.7572645731825949,0.4844985112021714,0.43
+55,13,0.534035590649309,0.0,1.378048826376739,0.0006986215405406467,0.03653020611772049,0.709004471156254,1,0.8209919887044398,0.5556279820091838,0.43
+55,14,0.44084345830036265,0.0,1.3534236217318112,0.000719957069906623,0.03637812466781696,0.7140500911860524,1,0.8419611657852701,0.4871901675850604,0.49
+55,15,0.5555676239118724,0.0,1.3531599455642547,0.0007294510209564913,0.03652119188089398,0.7141000496452684,1,0.9030396542594539,0.5316791497368787,0.49
+55,16,0.5748939623750601,0.0,1.3575628010393515,0.0007215469712770857,0.03620218279648817,0.7132035443056347,1,0.9617433191016665,0.5942793356315894,0.5
+55,17,0.587967221709878,0.0,1.364981252117758,0.0007152282495297827,0.03661060150120787,0.7116863390693853,1,0.9967891242746285,0.6303034273791936,0.55
+55,18,0.6251350964617064,0.0,1.3444914110371198,0.0007569958737370936,0.0366500505521586,0.7158553327687002,1,1.0,0.7171169882056883,0.56
+55,19,0.6621105390747872,0.0,1.339895370334654,0.0007620036193954817,0.03638214764782154,0.716787235851687,1,1.0,0.7737017969159574,0.56
+55,20,0.567077249977994,0.0,1.3352344987490725,0.0007693706462722529,0.036816599802903874,0.7177294663452716,2,1.0,0.7235908332599801,0.6200000000000001
+55,21,0.7012975575965165,0.0,1.2137292887217457,0.0006388577310745514,0.03254628085937681,0.7417325381745538,2,1.0,0.770991858655055,0.5900000000000001
+55,22,0.6510630222187699,0.05,1.202280247741983,0.0006335078478017775,0.032912048631357736,0.7293747695067366,2,1.0,0.8035434073958999,0.5850000000000001
+55,23,0.6718997641836808,0.0,1.2658195209836487,0.0007239330299324113,0.03440695786765342,0.7315955036010455,1,1.0,0.8396658806122697,0.5750000000000001
+55,24,0.6602140234703524,0.0,1.153652875790639,0.0005611438169527324,0.03117379094337932,0.7531018987847525,2,1.0,0.8673800782345082,0.6250000000000001
+55,25,0.7489291954824808,0.0,1.2753544818402907,0.0007032135042354711,0.03390437118159084,0.7297272285522879,2,1.0,0.929763984941603,0.5950000000000001
+55,26,0.7474745426474236,0.0,1.274817699187588,0.0007134634618909468,0.03525906918278955,0.7298290405443298,2,1.0,0.9915818088247457,0.5650000000000001
+55,27,0.6314602233127558,0.0,1.2728717100241411,0.0007220398681390778,0.03418883233001188,0.7302091971767335,2,1.0,0.9382007443758529,0.545
+55,28,0.5926809605662835,0.0,1.2693478261147773,0.0007121378291551927,0.03506702822687496,0.7309067471284297,2,1.0,0.8756032018876121,0.525
+55,29,0.696767806875519,0.0,1.2654407700231496,0.0007026822938801602,0.034134979510680556,0.7316782141421849,2,1.0,0.92255935625173,0.515
+55,30,0.6913929099762184,0.0,1.2653014255442123,0.0007129724404881953,0.034793290131528674,0.7317015299037418,2,1.0,0.971309699920728,0.505
+55,31,0.7,0.0,1.2638392915173688,0.0007216568991877633,0.034799962345635406,0.7319850631375617,2,1.0,1.0,0.495
+55,32,0.6349393145664347,0.0,1.2613419781357254,0.0007289405171315116,0.03451174503187304,0.732471854929416,2,1.0,0.9497977152214492,0.475
+55,33,0.72,0.0,1.2580654435930736,0.0007186577758932868,0.034912073454204676,0.7331174487989641,2,1.0,1.0,0.46499999999999997
+55,34,0.71,0.0,1.2549414679760187,0.0007253123303939074,0.034003308999555004,0.7337256286462736,1,1.0,1.0,0.45999999999999996
+55,35,0.71,0.0,1.2015855898285535,0.0007042241133675231,0.03420469244651506,0.744027115720733,1,1.0,1.0,0.47
+55,36,0.7,0.0,1.218105929037271,0.0006959671902246401,0.033456294970228076,0.7408713115300979,1,1.0,1.0,0.52
+55,37,0.6799999999999999,0.0,1.2269898822652117,0.0007398589900970884,0.03496444889616166,0.7391451897914139,1,1.0,1.0,0.5700000000000001
+55,38,0.73,0.0,1.2319774945814808,0.000779607166526011,0.03466317946098619,0.7381670194771477,1,1.0,1.0,0.5700000000000001
+55,39,0.7,0.0,1.2563703868488825,0.0007612643597868992,0.03543031135649901,0.7334323065357271,2,1.0,1.0,0.6200000000000001
+55,40,0.77,0.0,1.2461991863647213,0.0007293181800007687,0.034572987330725044,0.7354285760526829,2,1.0,1.0,0.5900000000000001
+55,41,0.71,0.05,1.2469031381170865,0.0007421606929027343,0.03442903772935265,0.720433422557093,2,1.0,1.0,0.5850000000000001
+55,42,0.6376162576656025,0.0,1.2733566911069423,0.0007298821029029053,0.03520000368289465,0.7301105528302064,2,1.0,0.9587208588853418,0.5650000000000001
+55,43,0.7165204340955504,0.0,1.2666829955291599,0.000721232820990202,0.03400595260734207,0.7314269756620356,2,1.0,0.9884014469851681,0.555
+55,44,0.7,0.0,1.2635917187821795,0.0007276286656492375,0.03523808079192022,0.7320312870380434,2,1.0,1.0,0.545
+55,45,0.6318224752544155,0.0,1.2599564409800401,0.0007324804546085266,0.034190331729251365,0.7327418864825767,2,1.0,0.9394082508480515,0.525
+55,46,0.6924432457202242,0.0,1.2569797470726403,0.0007218976619277834,0.034933585433884994,0.7333285511758293,2,1.0,0.9414774857340809,0.52
+55,47,0.7695439003022408,0.0,1.2791945086359924,0.0007124323261651309,0.0344822309205617,0.7289655671706406,2,1.0,0.9984796676741363,0.49
+55,48,0.75,0.0,1.2801614205730123,0.0007245765761878035,0.03513565129357546,0.7287696865339809,2,1.0,1.0,0.45999999999999996
+55,49,0.72,0.0,1.279607244129493,0.0007349232550746452,0.035311327294778996,0.7288751242936921,2,1.0,1.0,0.44999999999999996
+56,0,0.1923049121365441,0.0,1.3782992819538156,0.0006967401374455488,0.03642468648458789,0.7089535715873989,1,0.14576352072102802,0.2709589329472811,0.01
+56,1,0.20309528677505365,0.0,1.377570152707321,0.0006966429033168289,0.03637062934273615,0.7091040361426874,1,0.19130202337255134,0.32046526198220227,0.02
+56,2,0.24101618925824322,0.0,1.3767176875314728,0.0006964851566449307,0.03641341023098201,0.7092799125304644,1,0.255862290223004,0.37154795893397274,0.03
+56,3,0.28495065943659836,0.0,1.3856263341877262,0.0006998623996663075,0.03671904667218344,0.7074381154613516,1,0.316541211799809,0.447204117688884,0.04
+56,4,0.3754941495834638,0.0,1.3848438981599014,0.0007019315931152098,0.03678648098847738,0.7075991732684186,1,0.387465011784875,0.5329379848625251,0.04
+56,5,0.295730929247383,0.0,1.3843577768864275,0.0007027936653832621,0.036785088782716496,0.7076993862063018,1,0.4127775414697523,0.5041959657765658,0.1
+56,6,0.3917247278186678,0.0,1.3845595103050787,0.0007003152606687517,0.03669234133150722,0.7076586791434528,1,0.4612246573755702,0.5676536591240608,0.11
+56,7,0.4441617267131156,0.0,1.3852843004502262,0.0006999894796715793,0.03659186239343516,0.7075088483695752,1,0.5069514898696109,0.6224290175291727,0.11
+56,8,0.4410423326143997,0.0,1.3843600753437697,0.000699510820804189,0.03646788914103312,0.7077002689292107,1,0.5540064624060737,0.657133569240913,0.16
+56,9,0.4875935033285924,0.0,1.3855329412978703,0.0006997542558593463,0.036370025487913134,0.7074574893230738,1,0.6078287824990197,0.7161780981797848,0.17
+56,10,0.5404211540584861,0.0,1.3815263619674196,0.0006976468922269109,0.036501109333791804,0.7082868776164236,1,0.6581422519303519,0.7669045529428766,0.17
+56,11,0.5639733693515477,0.0,1.3803406155612858,0.0006978240948447316,0.03648523020219206,0.7085317387683113,1,0.7257898971784605,0.8331563511302887,0.17
+56,12,0.5927528713322177,0.0,1.3825456719287177,0.0006975664513536614,0.03661784493486475,0.7080762598318086,1,0.7563912080398958,0.8933864950608472,0.17
+56,13,0.6191120362918425,0.0,1.3803682494806535,0.0006960397904272548,0.03657182461716761,0.7085267689074637,1,0.7865894042954347,0.9460191492948016,0.17
+56,14,0.6307360330042586,0.0,1.3772694234585827,0.0006941908067716162,0.036475888883919554,0.7091670768049814,1,0.8251025776820506,0.97316710271847,0.22000000000000003
+56,15,0.6674379339400067,0.0,1.3671081022714313,0.0006885484287076863,0.036026239555300786,0.7112606951695971,1,0.8783940969714479,1.0,0.23000000000000004
+56,16,0.6066038701326715,0.0,1.3740382491232594,0.0006915726344752546,0.03645620696832703,0.7098341315595827,1,0.8993089672272989,0.9728191053437228,0.29000000000000004
+56,17,0.7115526854504299,0.0,1.3736753970148172,0.0006922724584910761,0.036067438388978114,0.7099085741448172,1,0.9472933870012283,1.0,0.29000000000000004
+56,18,0.6266131495279994,0.0,1.3694880125607694,0.0006884846493457244,0.03643894650554404,0.7107717161578733,1,0.9790602644118985,0.9464735232794499,0.35000000000000003
+56,19,0.73,0.0,1.247155081681212,0.0008719840081121556,0.03671310662581772,0.7351869957546805,1,1.0,1.0,0.35000000000000003
+56,20,0.7,0.0,1.2688431084588765,0.0008483238226251432,0.0363614153273729,0.7309524429047238,1,1.0,1.0,0.4
+56,21,0.71,0.0,1.2627877571213026,0.0008609652526017736,0.036788958563773795,0.7321366692035295,1,1.0,1.0,0.41000000000000003
+56,22,0.69,0.0,1.2776747084347195,0.0008388103736979738,0.03664800072771811,0.7292158304800632,1,1.0,1.0,0.42000000000000004
+56,23,0.6403288391689781,0.0,1.2891523703379506,0.0008190499528992972,0.03644351334383585,0.7269513416122738,1,1.0,0.9677627972299269,0.48000000000000004
+56,24,0.73,0.0,1.283039936630257,0.0008243188905256305,0.03654457304194835,0.7281608470456262,1,1.0,1.0,0.48000000000000004
+56,25,0.7,0.0,1.3022682269360177,0.0008046229613325508,0.03618804930250178,0.7243459609541656,1,1.0,1.0,0.53
+56,26,0.73,0.0,1.2968942525665212,0.0008151324161573774,0.036628107081752896,0.7254134950623088,1,1.0,1.0,0.53
+56,27,0.7,0.0,1.3133119928229666,0.0007968065177137899,0.03614821238464595,0.7221385468525868,1,1.0,1.0,0.5800000000000001
+56,28,0.73,0.0,1.3075741274459602,0.0008043961689059669,0.03678242895387904,0.7232853683682436,1,1.0,1.0,0.5800000000000001
+56,29,0.6375351760773574,0.0,1.3215049020795606,0.0007872541462464992,0.03658056365863098,0.7204954622439532,2,1.0,0.9584505869245249,0.6400000000000001
+56,30,0.7096573119073488,0.0,1.246944459571773,0.0006406935364225694,0.0335311615141005,0.7353180389364468,2,1.0,0.9988577063578297,0.6350000000000001
+56,31,0.69,0.0,1.268575712945662,0.0006419631005409011,0.03367771612410682,0.7310861743536967,2,1.0,1.0,0.6300000000000001
+56,32,0.72,0.0,1.287259018004871,0.0006458650394921508,0.03418666763063605,0.7273956849322734,2,1.0,1.0,0.6200000000000001
+56,33,0.6359809531807937,0.0,1.299772096470417,0.0006542818869084714,0.03464183743527653,0.7249040468870596,2,1.0,0.9532698439359792,0.6000000000000001
+56,34,0.72,0.0,1.293763195586303,0.0006492843981176775,0.03409016359977249,0.7261026978820092,2,1.0,1.0,0.5900000000000001
+56,35,0.6357041264002994,0.0,1.3040023939180783,0.0006584800339493168,0.034932239467024145,0.7240579690404614,2,1.0,0.952347088000998,0.5700000000000001
+56,36,0.7079600380016551,0.0,1.297710994870077,0.0006521969916894396,0.03403501814246973,0.7253157081697242,2,1.0,0.9932001266721838,0.5650000000000001
+56,37,0.77,0.0,1.3148712870592614,0.0006566527260340425,0.03496288119316783,0.7218818395700316,2,1.0,1.0,0.535
+56,38,0.75,0.0,1.3104477979366704,0.0006576479816942359,0.03453359254110141,0.7227686655240805,2,1.0,1.0,0.505
+56,39,0.71,0.0,1.3051106616765844,0.0006576744892867879,0.034567373875796815,0.7238368064060714,2,1.0,1.0,0.5
+56,40,0.69,0.0,1.319857821681808,0.0006612671641791474,0.03487072103164312,0.7208777369509694,2,1.0,1.0,0.495
+56,41,0.72,0.0,1.3315276148443034,0.0006665373528206336,0.03502406010481686,0.7185214494451435,2,1.0,1.0,0.485
+56,42,0.7,0.0,1.3406707532139681,0.0006722300490428401,0.035647469966364795,0.7166662636114902,2,1.0,1.0,0.475
+56,43,0.7,0.0,1.3471368098902894,0.0006784021588302418,0.035556988198026204,0.7153489427356005,2,1.0,1.0,0.46499999999999997
+56,44,0.77,0.0,1.3513969807061477,0.0006848007502043274,0.036064448035344324,0.7144780602982695,2,1.0,1.0,0.43499999999999994
+56,45,0.72,0.0,1.3472625233628661,0.0006852354798011684,0.035752044516108125,0.7153205606312241,2,1.0,1.0,0.42499999999999993
+56,46,0.71,0.0,1.3502722634766218,0.0006929605891015623,0.035998213434979734,0.7147041187062774,2,1.0,1.0,0.41999999999999993
+56,47,0.77,0.0,1.360638528899642,0.0006919049921041354,0.03606612529304593,0.712586151466573,2,1.0,1.0,0.3899999999999999
+56,48,0.75,0.0,1.3564044790576237,0.000692091990143093,0.03575447277553093,0.7134524574708861,2,1.0,1.0,0.3599999999999999
+56,49,0.71,0.0,1.351257892580908,0.0006917410183917538,0.03592280066579784,0.7145036018554968,2,1.0,1.0,0.35499999999999987
+57,0,0.17171195522979402,0.0,1.375371979745096,0.0006962850846907699,0.0364536569748786,0.7095574043527564,1,0.1504735540371288,0.23015403772266313,0.05
+57,1,0.23669062591007542,0.0,1.3748989267502714,0.0006952467029550264,0.03631690812388062,0.709655312048655,1,0.20106274423556827,0.28772888475875513,0.05
+57,2,0.24412746147438494,0.0,1.3856731547478147,0.0006997824883582564,0.036631721334185144,0.7074284580217203,1,0.24340320829514178,0.3297877952369511,0.060000000000000005
+57,3,0.2629803079323758,0.0,1.385595079991071,0.0006998838432066559,0.0367175164328022,0.7074445752064256,1,0.29172582953343174,0.40292089198558234,0.07
+57,4,0.3346194359982118,0.0,1.3852345683038536,0.0007010940608495929,0.0367759172098263,0.7075186826826049,1,0.33663885558690826,0.4559861218093131,0.07
+57,5,0.2533629763821339,0.0,1.3847850948996214,0.0007015310945665627,0.0367710468099473,0.7076115053906443,1,0.3721367411904421,0.4103837232182639,0.13
+57,6,0.36404570941406733,0.0,1.3848271879704652,0.0007008285982835233,0.036694670730881215,0.7076030870593703,1,0.42051817960423693,0.4562144885086147,0.13
+57,7,0.3843139789236936,0.0,1.3852304780603006,0.0007000947978437636,0.036589689809215016,0.7075199426666092,1,0.4825184352002691,0.5181084220119982,0.13
+57,8,0.42222515467279786,0.0,1.3852929163741288,0.0006996585136468138,0.03645314277235699,0.7075072023671652,1,0.5344826612852474,0.5838540774098712,0.13
+57,9,0.45784564469166966,0.0,1.3849406914666014,0.0006992250624022727,0.036426837740665144,0.7075802661009482,1,0.5769118785603221,0.6530882906518566,0.14
+57,10,0.46609494691117603,0.0,1.3844877147465806,0.0006997314340589076,0.03648571180821513,0.7076737733887922,1,0.5993463902840681,0.6877457010391741,0.19
+57,11,0.536080439476228,0.0,1.385344608959346,0.0006996654231037932,0.03665160436341438,0.7074965020897417,1,0.6575180966431347,0.7531636855037696,0.19
+57,12,0.45524276815384246,0.0,1.3792551495033758,0.00069784318072146,0.03654925581052927,0.7087558446331175,2,0.7048378651583749,0.6951650511613708,0.25
+57,13,0.6215360396153282,0.0,1.3726014421893513,0.00071649163984577,0.03675911339510521,0.7101197218834298,2,0.7921701977356401,0.7475882346928473,0.22
+57,14,0.6456973315391537,0.0,1.3688240111658005,0.0007186019737468302,0.0366987668921822,0.710895819881154,2,0.8716283407408703,0.8020913742661637,0.19
+57,15,0.6366182532485523,0.0,1.3220331479539755,0.0007440420760220863,0.035934716693374696,0.7204064787421826,2,0.9291050985223888,0.8381048958857205,0.185
+57,16,0.6482815680193778,0.0,1.3327493712618164,0.0007329316052406504,0.03645230598924786,0.7182474138623559,2,0.9847102006881838,0.8787766592617116,0.18
+57,17,0.7523780949985486,0.0,1.3405493365267847,0.0007233728815081004,0.03573858243077259,0.7166701482590813,2,1.0,0.9412603166618287,0.15
+57,18,0.72,0.0,1.3405349450556774,0.0007394794812384787,0.03661115378162349,0.7166665294710436,2,1.0,1.0,0.13999999999999999
+57,19,0.7,0.0,1.3322300632268531,0.0007396211230994708,0.03586689919558892,0.718349786429713,2,1.0,1.0,0.12999999999999998
+57,20,0.7,0.0,1.3231393940772218,0.0007384998485524649,0.036293647186213196,0.7201858369645524,2,1.0,1.0,0.11999999999999998
+57,21,0.7,0.0,1.313014021887059,0.000736129300956165,0.035698947308369575,0.7222226785227123,2,1.0,1.0,0.10999999999999999
+57,22,0.71,0.0,1.3018518378722994,0.0007324842828200459,0.035697892072020315,0.724457894513647,2,1.0,1.0,0.10499999999999998
+57,23,0.72,0.0,1.3118242263641156,0.0007215550381160559,0.035774288930826084,0.7224671532669739,2,1.0,1.0,0.09499999999999999
+57,24,0.7,0.0,1.3000427924835343,0.0007168501586481327,0.03514044261604082,0.7248251036562793,2,1.0,1.0,0.08499999999999999
+57,25,0.6369535768407834,0.0,1.2875811357829319,0.0007109779646396573,0.03555269044293889,0.7273059799446608,2,1.0,0.9565119228026113,0.06499999999999999
+57,26,0.69827482112343,0.0,1.303154808378777,0.0007016965670779091,0.03468067516978616,0.7242100198640138,2,1.0,0.9609160704114336,0.05999999999999999
+57,27,0.6269999782793466,0.0,1.312113854244545,0.0006944129382881274,0.03575684563073337,0.7224199624196427,2,1.0,0.9233332609311555,0.039999999999999994
+57,28,0.6941941109332287,0.0,1.3242776503164664,0.0006883935626485835,0.03492857855013375,0.719976604472159,2,1.0,0.9473137031107625,0.034999999999999996
+57,29,0.7679627415441257,0.0,1.3301048664007724,0.0006838363364636189,0.035785771145235366,0.7188021154423149,2,1.0,0.993209138480419,0.0049999999999999975
+57,30,0.72,0.0,1.3359977164919559,0.000703199728096116,0.035611750834190097,0.7176016371934861,2,1.0,1.0,0.0
+57,31,0.6359896740788142,0.0,1.3259644324104443,0.0006994417067767702,0.035554578972778125,0.7196319475227422,2,1.0,0.9532989135960477,0.0
+57,32,0.77,0.0,1.3365929618873074,0.0006937001129975233,0.0358935033435593,0.7174848465390046,2,1.0,1.0,0.0
+57,33,0.72,0.0,1.3407881836921665,0.0007125044893537295,0.03584431728762668,0.7166260610438421,2,1.0,1.0,0.0
+57,34,0.7,0.0,1.3311725627065505,0.000709610646663421,0.03621451708956175,0.7185758319600446,2,1.0,1.0,0.0
+57,35,0.77,0.0,1.3208146684008075,0.0007056451805033687,0.03500986061874748,0.7206672994765879,2,1.0,1.0,0.0
+57,36,0.71,0.0,1.3241872922235656,0.0007288837764412408,0.036349689794877536,0.7199784951021153,2,1.0,1.0,0.0
+57,37,0.72,0.0,1.3320966507990954,0.0007190892619653375,0.03559176093869074,0.7183850856876252,2,1.0,1.0,0.0
+57,38,0.77,0.0,1.3220996379194847,0.0007161989857137394,0.035983420325991236,0.7204043026280154,2,1.0,1.0,0.0
+57,39,0.72,0.0,1.3241550825385175,0.0007379436404413519,0.03595537045492083,0.7199813357619663,2,1.0,1.0,0.0
+57,40,0.6402638609391857,0.0,1.314072307744471,0.0007359203873723922,0.03590411724992602,0.7220104022436498,2,1.0,0.9675462031306195,0.0
+57,41,0.7082726061438973,0.0,1.327039802799832,0.0007252094948994955,0.03616647282482197,0.719404524673967,1,1.0,0.994242020479658,0.0
+57,42,0.71,0.0,1.3327468150448905,0.0006802225267318988,0.035735723690883764,0.7182692639127048,1,1.0,1.0,0.01
+57,43,0.7,0.0,1.344273493230198,0.000678729291857901,0.03535865677645531,0.7159314923641651,1,1.0,1.0,0.060000000000000005
+57,44,0.6799999999999999,0.0,1.3507745494716121,0.0006917011205410625,0.036187527227292696,0.7146022041994576,1,1.0,1.0,0.11000000000000001
+57,45,0.71,0.0,1.3544073512627282,0.0007041110514142205,0.03602607082274622,0.7138556621279986,1,1.0,1.0,0.12000000000000001
+57,46,0.73,0.0,1.3632717395522291,0.0006998316221940008,0.036333564760050084,0.7120432989018689,1,1.0,1.0,0.12000000000000001
+57,47,0.6399169755507514,0.0,1.363998287553483,0.0006950773059785568,0.03617637021574436,0.7118962564918082,1,1.0,0.9663899185025048,0.18
+57,48,0.73,0.0,1.3582039769054017,0.0006936270438063457,0.03592073705384154,0.713083802251132,1,1.0,1.0,0.18
+57,49,0.71,0.0,1.3575850349886152,0.0006891221052649726,0.03605792771985441,0.7132122610397019,1,1.0,1.0,0.18
+58,0,0.09733749848412993,0.0,1.3759042139503084,0.0006976048575737175,0.03641931791177484,0.7094471621703732,1,0.1310338956044696,0.17158545007521855,0.06
+58,1,0.17250883260847255,0.0,1.3828878884596147,0.0006979928596564193,0.03640702996984725,0.7080053408709163,1,0.1844856106334754,0.19312956295585382,0.11
+58,2,0.24412175595002789,0.0,1.382536725395316,0.0006976436937147835,0.03649952309034617,0.7080780771824888,1,0.23924294245246192,0.2679557536388874,0.11
+58,3,0.2650918623467363,0.0,1.3856705891411574,0.0006998050079543391,0.03672212226055453,0.7074289797119535,1,0.29577902851675264,0.33856400788624297,0.12
+58,4,0.2799314854073024,0.0,1.3855607295251924,0.0006999062619254892,0.036768272890790724,0.7074516752802611,1,0.3483523502391225,0.39336054274536525,0.13
+58,5,0.312639910960369,0.0,1.3853044856617895,0.0006999853808161431,0.03674901739840146,0.7075046729192758,1,0.39501770170740036,0.41461238454259636,0.18
+58,6,0.37773988971632255,0.0,1.3830628301529484,0.0007015400926649763,0.03666660366156214,0.7079677064230248,1,0.4423754209233237,0.47636164131053094,0.18
+58,7,0.3861650730507268,0.0,1.3849120822099747,0.0006992222726694411,0.03658837491376215,0.7075861867739093,1,0.48236704558295024,0.5244553569889807,0.19
+58,8,0.44363767541399507,0.0,1.3853691244677295,0.0006996196274375097,0.03643655789974939,0.7074914476516881,1,0.5349960749751727,0.5879634972422823,0.19
+58,9,0.4631639530334419,0.0,1.3847716830954448,0.0006995334744412122,0.036444799684741756,0.7076151068509563,1,0.6013981539963522,0.6422486637823954,0.19
+58,10,0.4027643896266489,0.0,1.3813451159021062,0.0006979812228370046,0.036422374095120266,0.7083241864981117,1,0.6240933477472496,0.6144390597170386,0.25
+58,11,0.475886208877443,0.0,1.3830756017291668,0.0006982478440078457,0.036556820395329426,0.707966427246323,1,0.6569256762861646,0.653207407257618,0.3
+58,12,0.5441287020315125,0.0,1.382195826450601,0.0006973384432720439,0.03661818583285609,0.7081486633683042,1,0.7114509561376315,0.7170695579444717,0.3
+58,13,0.5608943153619569,0.0,1.380681893833051,0.0006966033811853323,0.036557713612376724,0.7084617590981096,1,0.7645367557008106,0.7776881695555772,0.3
+58,14,0.5842898051603658,0.0,1.3784678010992328,0.0006956903298317632,0.03655969775446638,0.7089192316529358,1,0.793720811282106,0.8216250707054289,0.31
+58,15,0.5179702112376857,0.0,1.3757684600273372,0.0006932351929647938,0.03627345688155973,0.7094769459355798,1,0.8028534845233511,0.7899049721817093,0.37
+58,16,0.49471692506658016,0.0,1.3561474584579563,0.0007160511140353595,0.03620998575093369,0.71349520403954,1,0.8238510610767906,0.7545635122990116,0.43
+58,17,0.6409914167649085,0.0,1.3552981467276437,0.0007107987153132283,0.03642374006922268,0.7136709352911008,1,0.8902038167545833,0.8314002696693479,0.43
+58,18,0.6535764867247964,0.0,1.2725348731324952,0.0008075469538128995,0.03544372092118735,0.7302418636233297,1,0.9372586146851142,0.8851199052833547,0.44
+58,19,0.7102379510583086,0.0,1.2882173205073988,0.0007891890345095918,0.03647966029052167,0.7271487523282518,1,0.9948890977813889,0.9400892227827415,0.44
+58,20,0.6935450221313085,0.0,1.3044690768201872,0.0007719933662869422,0.03601605148380123,0.7239193456972198,1,1.0,0.978483407104362,0.49
+58,21,0.6305924173428008,0.0,1.3022620814587784,0.0007918241119389133,0.03652080069256894,0.7243522990337449,1,1.0,0.9353080578093363,0.55
+58,22,0.71,0.0,1.2937315892635355,0.0007922469675677471,0.03632076206535362,0.7260521166655917,1,1.0,1.0,0.56
+58,23,0.73,0.0,1.3076641623839487,0.0007751531420683358,0.03626641794489554,0.7232790540150841,1,1.0,1.0,0.56
+58,24,0.71,0.0,1.3218224318468863,0.0007596944692869644,0.036506336420334476,0.7204426145179045,1,1.0,1.0,0.56
+58,25,0.71,0.0,1.3323976752499271,0.0007464529062862943,0.035928751495518024,0.7183131086897594,1,1.0,1.0,0.5700000000000001
+58,26,0.73,0.0,1.3430075689774563,0.0007350923492070728,0.03661898615314244,0.7161659639979914,1,1.0,1.0,0.5700000000000001
+58,27,0.6380989871009617,0.0,1.350702586453375,0.0007253151268273799,0.03597314772793484,0.7146031698834395,2,1.0,0.9603299570032059,0.6300000000000001
+58,28,0.7066975545793819,0.0,1.272163338080545,0.0007205112576191125,0.03509015397132652,0.7303493284163617,2,1.0,0.9889918485979396,0.6250000000000001
+58,29,0.6300071984092251,0.0,1.2940297327509829,0.0007106357493632547,0.034891212552387155,0.7260252799906444,2,1.0,0.9333573280307506,0.6050000000000001
+58,30,0.7639701960564068,0.0,1.2912618255564141,0.0007017758438036504,0.03487539380269867,0.7265790272156406,2,1.0,0.9799006535213562,0.5750000000000001
+58,31,0.71,0.0,1.2846864479957731,0.0007034110427751017,0.03489234204300004,0.7278827087967223,2,1.0,1.0,0.5700000000000001
+58,32,0.72,0.0,1.305105771913016,0.0006958532764555253,0.034835473372692174,0.723822519970556,2,1.0,1.0,0.56
+58,33,0.77,0.0,1.3088138478717717,0.0007103359189376017,0.03559017231463761,0.7230748479145125,2,1.0,1.0,0.53
+58,34,0.6341237969285555,0.0,1.3018637945609033,0.0007115305470487413,0.03515829577160758,0.7244638732084178,2,1.0,0.947079323095185,0.51
+58,35,0.7196981701434586,0.0,1.2997551107747423,0.0007028957235888072,0.03541404077252662,0.7248880448899614,2,1.0,0.9989939004781957,0.5
+58,36,0.7,0.0,1.3026909894341783,0.0007173389179444584,0.03516294660771922,0.7242964014923026,2,1.0,1.0,0.49
+58,37,0.77,0.0,1.3036287362517602,0.0007300876838325569,0.03576822341197962,0.724104008593184,2,1.0,1.0,0.45999999999999996
+58,38,0.638729935933668,0.0,1.2976881729893406,0.0007332228640873632,0.035367474798732465,0.7252879681394785,2,1.0,0.9624331197788935,0.43999999999999995
+58,39,0.6999744523851292,0.0,1.2961626989291026,0.0007229025018736905,0.03523416524809326,0.7255959169657432,2,1.0,0.9665815079504309,0.43499999999999994
+58,40,0.6217743439827066,0.0,1.3155707439636877,0.0007139007652930509,0.03554765888734823,0.7217183939823922,2,1.0,0.9059144799423554,0.4149999999999999
+58,41,0.687180983589934,0.0,1.3132033204479368,0.0007056843939412466,0.0348884782721985,0.7221969167996416,2,1.0,0.9239366119664466,0.4099999999999999
+58,42,0.7101085011804948,0.0,1.3300337353395177,0.0006999099035838968,0.03588419188852711,0.7188099950260772,2,1.0,0.967028337268316,0.3999999999999999
+58,43,0.7666502536382995,0.0,1.331146554177417,0.0007096105503246105,0.03547698137807172,0.7185810915336569,2,1.0,0.9888341787943318,0.3699999999999999
+58,44,0.71,0.0,1.3263166967422797,0.000712347569030528,0.035981961841554756,0.7195556598803612,2,1.0,1.0,0.3649999999999999
+58,45,0.77,0.0,1.3416252170398686,0.0007061659374364899,0.03588853035066557,0.716458626534466,2,1.0,1.0,0.33499999999999985
+58,46,0.72,0.0,1.3359193186423186,0.0007074783556382046,0.035864482197509776,0.7176157901418778,2,1.0,1.0,0.32499999999999984
+58,47,0.6319984761663687,0.0,1.2838728640426915,0.0007642328805517198,0.03586758491662183,0.7280197394288526,2,1.0,0.9399949205545625,0.3049999999999998
+58,48,0.7169821539572647,0.0,1.2935162289901279,0.0007506650754281396,0.03577372894162138,0.726111489225161,2,1.0,0.9899405131908823,0.2949999999999998
+58,49,0.6374937239751229,0.0,1.281987314055343,0.0007469318826615488,0.035123989956450385,0.7283997764502169,2,1.0,0.9583124132504098,0.2749999999999998
+59,0,0.101838668674607,0.0,1.3754224889921467,0.00069764747839923,0.036410208521275196,0.7095464334574196,1,0.13945289311277348,0.1767671869504543,0.06
+59,1,0.17414094969054786,0.0,1.379864146594175,0.000696527853137599,0.03632547210064667,0.7086306620266296,1,0.1848418562078303,0.19815433339269084,0.11
+59,2,0.12234569190650565,0.0,1.3794707231227348,0.0006959615219785374,0.03638878394844407,0.7087121206061936,1,0.2239689398567392,0.14652187652215642,0.16999999999999998
+59,3,0.10434715455891115,0.0,1.3734845848866144,0.0007042322490548568,0.03644814411056611,0.7099429425232696,1,0.26321350338708044,0.10740809457811001,0.22999999999999998
+59,4,0.19440340018112828,0.0,1.3756477008039076,0.0007028217618653516,0.03661886076458907,0.7094978843539381,1,0.30024074385767363,0.13106379943647506,0.27999999999999997
+59,5,0.27051605520790445,0.0,1.3762913387682152,0.000701107973869096,0.03654785753090095,0.7093659124874215,1,0.3726575056491647,0.200286427435656,0.27999999999999997
+59,6,0.1918541726088018,0.0,1.385353401243506,0.0007001189182694197,0.03669328168553053,0.7074944948673869,1,0.40195968020059336,0.1705609484619805,0.33999999999999997
+59,7,0.30746541562149854,0.0,1.3861093665403748,0.0007001165422411069,0.036614920487353576,0.7073380272946397,1,0.45187965697918026,0.2310251189292848,0.33999999999999997
+59,8,0.3183910251371144,0.0,1.3856726453799006,0.0007000022000555249,0.03645569294550751,0.7074284724983775,1,0.4878793112829297,0.29211088729363016,0.35
+59,9,0.3275148406433894,0.0,1.3852007294176882,0.0006999757725179427,0.0364572678937372,0.7075261479385604,1,0.5232018248567853,0.3146473398117153,0.39999999999999997
+59,10,0.32946927294261347,0.0,1.3849993605775586,0.0006994693538339151,0.03649383867457391,0.7075680256065877,1,0.5605347072306349,0.3442737513729708,0.44999999999999996
+59,11,0.35217684041459457,0.0,1.384567606122823,0.0006990096071448593,0.03663467071125236,0.7076575445182535,1,0.5917096606056119,0.38359486400876813,0.49999999999999994
+59,12,0.3720914271569776,0.0,1.3838923424678709,0.0006984976056592315,0.03665562139487856,0.7077974341382274,1,0.6241220354297914,0.41216238252183546,0.5499999999999999
+59,13,0.34059684293872006,0.0,1.3777634742030052,0.0006988725939908549,0.03652462855984258,0.7090632371057941,2,0.6481392228115851,0.37916038318221773,0.6099999999999999
+59,14,0.42359864442971124,0.0,1.3835638773518752,0.0006985099463079387,0.03666603761154251,0.7078653576269531,2,0.691678005303292,0.4050378085785302,0.6049999999999999
+59,15,0.43029510473794197,0.0,1.3720119285743215,0.0007103404399958419,0.036597891747634746,0.7102435898637395,2,0.7393332360861485,0.43842824035930006,0.5999999999999999
+59,16,0.38835943573731624,0.0,1.3715374699690612,0.0007154562507657959,0.03642885895692722,0.7103391173528574,2,0.7628984189005845,0.4044832970737055,0.5799999999999998
+59,17,0.5563045723245813,0.0,1.3688368904376964,0.0007163314464457223,0.03663234788535741,0.7108941061830981,2,0.8464431820787124,0.4668315286567734,0.5499999999999998
+59,18,0.4237266086332315,0.05,1.1398993719045074,0.0006343728418837119,0.031743386557669465,0.7415100466203489,2,0.8556654882679348,0.41414562579818137,0.5299999999999998
+59,19,0.5865900641435235,0.0,1.1762539251614037,0.000630898611115851,0.03240966789189475,0.7488492385592548,2,0.9439042073863706,0.45407863852764624,0.4999999999999998
+59,20,0.5645697053021606,0.05,1.1836435585474003,0.0006674101531328933,0.033021341679435885,0.7330243805106882,2,0.9900796937312527,0.4934727083207404,0.48999999999999977
+59,21,0.5600890124829441,0.05,1.1785924482605832,0.000660861069009925,0.03263630649288174,0.7340142739994552,2,1.0,0.5336300416098136,0.47999999999999976
+59,22,0.6454261738450604,0.05,1.1644675619308344,0.0006495149166507851,0.0321823946884755,0.7367672490405202,2,1.0,0.5847539128168682,0.44999999999999973
+59,23,0.6387827701952659,0.1,1.1794228003961715,0.0006968744701784652,0.033455792264489886,0.7189346887507619,2,1.0,0.6292759006508862,0.4199999999999997
+59,24,0.6064319705076486,0.1,1.1962498049002603,0.0006288824501785419,0.031925169567763236,0.7155496832210125,2,1.0,0.6547732350254954,0.4149999999999997
+59,25,0.6335042319070991,0.05,1.1904660558729683,0.0006253419915733739,0.03253905585444362,0.7317036168324019,2,1.0,0.711680773023664,0.4049999999999997
+59,26,0.7009992877076529,0.05,1.2019235839287932,0.0006344047964477532,0.032192603037868486,0.72944481058921,2,1.0,0.7699976256921763,0.37499999999999967
+59,27,0.5688672107620012,0.1,1.195220202032455,0.0006361425320370797,0.03277026074678374,0.7157562462496557,2,1.0,0.7295573692066707,0.35499999999999965
+59,28,0.660277585842348,0.05,1.2250057813828836,0.0006352472478985335,0.03279214040175486,0.7248650358591188,2,1.0,0.8009252861411602,0.34499999999999964
+59,29,0.6576551598690554,0.05,1.3356828923710233,0.0006963746557112841,0.035721137481304975,0.7022268109702323,2,1.0,0.8588505328968514,0.33499999999999963
+59,30,0.5895775347889102,0.0,1.3381232496745672,0.0007074237030710763,0.03580754269866744,0.7171689861846196,2,1.0,0.7985917826297007,0.3149999999999996
+59,31,0.677769662455659,0.0,1.3171400415252204,0.0007521698607517086,0.03594245440966317,0.7213877221686319,2,1.0,0.8592322081855299,0.3049999999999996
+59,32,0.6761115949821316,0.05,1.2179831038443298,0.0008114366594659393,0.03560386613295187,0.7261933343945312,2,1.0,0.9203719832737721,0.2949999999999996
+59,33,0.6105029220108624,0.05,1.211964139825594,0.0008010766721457676,0.03466428961535642,0.7273926024675756,2,1.0,0.8683430733695418,0.2749999999999996
+59,34,0.5761143241446717,0.0,1.2334093394435208,0.0007827285530450704,0.03549763733674004,0.7378889757908436,2,1.0,0.820381080482239,0.25499999999999956
+59,35,0.7350929087636044,0.0,1.2445890226038683,0.0007676901279158103,0.03452790153809306,0.7357268310156109,2,1.0,0.883643029212015,0.22499999999999956
+59,36,0.5982739830040988,0.05,1.2464167990022543,0.0008046715883702681,0.03611493969115624,0.7205061893599543,2,1.0,0.8275799433469965,0.20499999999999957
+59,37,0.5607704695938756,0.0,1.2674312280675681,0.0007846518007201388,0.03609353790896812,0.7312550406443213,2,1.0,0.7692348986462518,0.18499999999999958
+59,38,0.7195932645219352,0.0,1.283933251850895,0.000816764417507018,0.03653269544203161,0.7279869777604032,2,1.0,0.8319775484064509,0.15499999999999958
+59,39,0.7135759121314886,0.05,1.2370159204239637,0.0008145709402810259,0.035622844128923664,0.7223914097073066,2,1.0,0.8785863737716291,0.12499999999999958
+59,40,0.6976811164838146,0.05,1.242389679962036,0.0008419305115509952,0.03557561292514344,0.7213014582411323,2,1.0,0.9256037216127152,0.11499999999999959
+59,41,0.6108980715446137,0.05,1.2307807128883341,0.0008383966620230294,0.03618578011349437,0.723630565852014,2,1.0,0.8696602384820457,0.09499999999999958
+59,42,0.676984724434658,0.0,1.248764676381606,0.0008179863205056454,0.03579604420753375,0.7348945505471791,2,1.0,0.88994908144886,0.08999999999999958
+59,43,0.7038416312119842,0.0,1.2635964648172746,0.0008013375432995567,0.0363255255852558,0.7320014373095982,2,1.0,0.946138770706614,0.07999999999999959
+59,44,0.77,0.0,1.2511868530399202,0.0007968398419272956,0.03496894170721847,0.7344306316539853,2,1.0,1.0,0.049999999999999586
+59,45,0.6370071714378039,0.0,1.2503920585185853,0.000829474548071,0.03642493966830403,0.7345728955570859,2,1.0,0.9566905714593466,0.029999999999999586
+59,46,0.77,0.0,1.2670416019309547,0.0008095228090793578,0.0358006871032931,0.7313218297972701,2,1.0,1.0,0.0
+59,47,0.6352789299317274,0.0,1.2641450571813735,0.0008347296864807294,0.036415126439613935,0.7318806983563395,2,1.0,0.9509297664390912,0.0
+59,48,0.6045576117320858,0.0,1.2778152383878327,0.0008150049481932167,0.03637016307361827,0.7291974822738092,2,1.0,0.9151920391069527,0.0
+59,49,0.7092897040285913,0.0,1.288081316875131,0.0007976590624046603,0.036027179902918316,0.7271723743130297,2,1.0,0.9642990134286379,0.0
+60,0,0.10047937259604613,0.0,1.3754048155112004,0.0006976491218501274,0.03640987386338568,0.7095500750993897,1,0.13455371718208506,0.17795190527438787,0.06
+60,1,0.22221169236413338,0.0,1.3806364414306913,0.0006963512211681746,0.03633271088101512,0.7084712510784257,1,0.20049819904223393,0.24012440899783835,0.06
+60,2,0.1519451550283364,0.0,1.383930566941224,0.0007002621308202975,0.03661629704128396,0.7077887985900863,1,0.2513708872249374,0.2132178149986944,0.12
+60,3,0.2484060142932882,0.0,1.3847283492613611,0.0007001830695420191,0.03669216632985859,0.7076238035733691,1,0.2957751203064303,0.28294907395345875,0.13
+60,4,0.19183947307081617,0.0,1.3843256258194645,0.0007003376360624203,0.03675431252366497,0.707707053061209,1,0.3214025317151693,0.2644952899016898,0.19
+60,5,0.3120293803658405,0.0,1.3850508477746986,0.0007001915309980139,0.03674756938934216,0.7075570731270381,1,0.3937435977680811,0.3140637371567071,0.19
+60,6,0.307672331141807,0.0,1.38501882454758,0.000700845682208355,0.0366923709632357,0.7075634286206249,1,0.4320891472274922,0.35480376537394903,0.24
+60,7,0.2597377509170769,0.0,1.3812974566502323,0.0006988381637249671,0.03651374240776899,0.7083336787681928,1,0.4758494209532963,0.31063484527807733,0.3
+60,8,0.23874021208278032,0.0,1.3831155960435757,0.0006989968424786859,0.0365025387410368,0.7079578486383741,1,0.516206873146744,0.260226021604733,0.36
+60,9,0.33045229209905613,0.0,1.3804501713562618,0.0006967339981890367,0.03623720496762117,0.7085095636516194,1,0.5519344414128043,0.2909174586819154,0.41
+60,10,0.3807894668698602,0.0,1.3788691756172007,0.0006960658989053005,0.03651954092774188,0.7088362449453399,1,0.6051039046293596,0.36334366749861463,0.42
+60,11,0.3955300504381548,0.0,1.3830434343250126,0.0006981391573869347,0.036562553712777536,0.7079731227528262,1,0.6499748793965157,0.42679614216458117,0.43
+60,12,0.42366134055877863,0.0,1.3772137609221053,0.0006988994591126222,0.03649295140814757,0.7091766147517279,1,0.6796815321734169,0.4525760143269425,0.48
+60,13,0.4871760998396659,0.0,1.3760403538677288,0.0006968106801991507,0.036440222368441376,0.7094194260213579,1,0.7203904101068146,0.5167981876742695,0.48
+60,14,0.5010811787734208,0.0,1.3747569522551077,0.0006976907584510571,0.036493921390323945,0.7096835571528856,1,0.7741789404897724,0.5670618320066685,0.49
+60,15,0.4447938384542144,0.0,1.3746315128867672,0.000700150027209192,0.03636672946360004,0.7097083877702943,1,0.8071717529134643,0.540945749781673,0.55
+60,16,0.5206409470172348,0.0,1.339941975226353,0.0007126262694084304,0.03569770415979569,0.716797822314881,2,0.8619164356398026,0.5632339818110135,0.6000000000000001
+60,17,0.5369363518421886,0.05,1.1934527461548787,0.0008304535121830504,0.035095396460849804,0.7310362324719164,2,0.9239075941994166,0.578562312907976,0.5950000000000001
+60,18,0.4899025685125733,0.05,1.2122833850704526,0.0008097371307299919,0.03535194104625515,0.727325858779332,2,0.9516007754332981,0.5228076570363964,0.5750000000000001
+60,19,0.5743509715196103,0.0,1.2366247977657614,0.000792017756055079,0.03498546348466341,0.7372630034732348,2,0.9998260663288722,0.5480394943483505,0.5700000000000001
+60,20,0.5696519878824543,0.05,1.2393150168427824,0.000778527645121687,0.03528368494598062,0.7219445794506916,2,1.0,0.5988399596081811,0.5650000000000001
+60,21,0.5765573129917961,0.0,1.2502904303839326,0.0007625389455989693,0.034876940583364976,0.7346188096353325,2,1.0,0.621857709972654,0.56
+60,22,0.6178617375003055,0.0,1.2548708207835542,0.0006774615404755872,0.03401903148567307,0.7337581273299734,2,1.0,0.6595391250010184,0.55
+60,23,0.6065269162249293,0.0,1.2616892583892265,0.0006919640577155556,0.03404586262603308,0.732418291166383,2,1.0,0.6884230540830978,0.54
+60,24,0.5445425967888073,0.0,1.266225579037463,0.0007056331982170738,0.03475539156165262,0.731522949242733,2,1.0,0.6484753226293577,0.52
+60,25,0.6822639967736521,0.0,1.2866729804101882,0.0006981286916692746,0.03448931602348551,0.7274911537317019,2,1.0,0.7075466559121738,0.49
+60,26,0.5480818310621447,0.0,1.2816959468351394,0.0007007724131416612,0.03506732943636003,0.7284756757898803,2,1.0,0.6602727702071493,0.47
+60,27,0.5148470637068093,0.0,1.30093561313581,0.0006941669480504681,0.034729356212968576,0.7246560435966656,2,1.0,0.616156879022698,0.44999999999999996
+60,28,0.6191356900691778,0.0,1.3175920132831502,0.0006894958621430637,0.03553097467748593,0.7213220701364632,2,1.0,0.663785633563926,0.43999999999999995
+60,29,0.6840989748316169,0.0,1.3207176518730166,0.0007003895537715033,0.03499698129436344,0.7206889449443642,2,1.0,0.7136632494387231,0.4099999999999999
+60,30,0.6324698841820847,0.0,1.3155110877511653,0.0007020063396436653,0.03540087085845118,0.7217351528585266,2,1.0,0.7415662806069491,0.4049999999999999
+60,31,0.5586457861123422,0.0,1.3124855109658629,0.0006941601530186093,0.035071725455740846,0.7223455295731129,2,1.0,0.6954859537078072,0.3849999999999999
+60,32,0.7009941139479889,0.0,1.328091147012064,0.0006901523427531478,0.03537245925784038,0.7192064093456372,2,1.0,0.76998037982663,0.35499999999999987
+60,33,0.6665836424776121,0.0,1.3226053434625127,0.0006908072293853084,0.0354488809246646,0.7203126621616569,2,1.0,0.8219454749253737,0.34499999999999986
+60,34,0.5843180797113419,0.0,1.3191822887857976,0.0007561714990836545,0.03650354165072795,0.7209754605057362,2,1.0,0.7810602657044732,0.32499999999999984
+60,35,0.6541120297712752,0.0,1.229952474097797,0.0008620077372999879,0.03578331516373866,0.7385263967833762,2,1.0,0.8137067659042508,0.31999999999999984
+60,36,0.7310647608590417,0.0,1.3245719114621441,0.0007080792776703256,0.03591488354821955,0.7199093357743345,2,1.0,0.8702158695301391,0.2899999999999998
+60,37,0.7264813371859122,0.0,1.314879451536942,0.0007053530559929218,0.035220183496458245,0.7218606449246368,2,1.0,0.9216044572863744,0.2599999999999998
+60,38,0.6186011651206608,0.0,1.3041461640576197,0.0007014945678049553,0.03550573738320694,0.7240120532484328,2,1.0,0.8953372170688694,0.2399999999999998
+60,39,0.700827590665423,0.0,1.3069390101262455,0.0006948030594991563,0.03489253224870346,0.7234563191719018,2,1.0,0.9360919688847433,0.2299999999999998
+60,40,0.6164820510828046,0.0,1.3120095018563394,0.0007152450610749656,0.03546735642889024,0.7224325330575064,2,1.0,0.8882735036093488,0.2099999999999998
+60,41,0.7008672998268461,0.0,1.3131921058503637,0.0007070120247258464,0.035302208213126685,0.7221986340433771,2,1.0,0.9362243327561537,0.1999999999999998
+60,42,0.6182023394053259,0.0,1.3161618759904028,0.000724269701081933,0.03582257261210044,0.7215954887786049,2,1.0,0.8940077980177531,0.1799999999999998
+60,43,0.7542005270437862,0.0,1.3161766061747902,0.0007151283441233903,0.03553268256495732,0.7215962024650239,2,1.0,0.947335090145954,0.1499999999999998
+60,44,0.72,0.0,1.3081647185939698,0.0007151185685224976,0.03558243908733223,0.7232028944056216,2,1.0,1.0,0.1399999999999998
+60,45,0.77,0.0,1.3103522963828191,0.0007322604927480653,0.035776516816102985,0.7227579006024851,2,1.0,1.0,0.10999999999999979
+60,46,0.71,0.0,1.301801995735717,0.0007326638653399533,0.03556711315515285,0.7244677721280908,2,1.0,1.0,0.10499999999999979
+60,47,0.69,0.0,1.3205200602331488,0.0007217100751453021,0.03577744572214169,0.7207201348734982,2,1.0,1.0,0.09999999999999978
+60,48,0.77,0.0,1.3359857502406451,0.000713045708506855,0.035664669577140325,0.7176000715794723,2,1.0,1.0,0.06999999999999978
+60,49,0.71,0.0,1.3268909777147568,0.0007115426948878804,0.03576148447859688,0.7194400829831836,2,1.0,1.0,0.06499999999999978
+61,0,0.21239776314480308,0.0,1.3753823186343055,0.0006976512218360498,0.0364094478281055,0.7095547105655727,1,0.1470015772954656,0.26982403697130053,0.0
+61,1,0.13851297717269326,0.0,1.3758547002766868,0.0006996933779130482,0.036405910345733386,0.7094565074072978,1,0.17445445225478137,0.25817972961173263,0.06
+61,2,0.23207850544254754,0.0,1.3783265319616869,0.00069924877660281,0.03649368722286058,0.708946913562146,1,0.21852900454731836,0.3186445128366203,0.06999999999999999
+61,3,0.24648389289634146,0.0,1.3850140959959978,0.0007010457454515545,0.036713712691426904,0.7075643242463873,1,0.2523039505501849,0.36059170067925583,0.12
+61,4,0.1913493979306121,0.0,1.3849722294654128,0.0007004545446656556,0.0367665529598515,0.7075732317248973,1,0.2755422246037446,0.31636539773100497,0.18
+61,5,0.2678202938546715,0.0,1.3855421560542223,0.0007003354511642089,0.03676352155564498,0.7074553416496897,1,0.33377470326307507,0.33666382570865067,0.22999999999999998
+61,6,0.3129519311657036,0.0,1.3853893848431085,0.0006998984167189118,0.0366916372070543,0.7074871394137366,1,0.38637155628988673,0.3924062882141441,0.24
+61,7,0.3149326160084462,0.0,1.3850211955434428,0.0006999954960939323,0.036602040945105246,0.7075632898568914,1,0.4149131798742462,0.3990433435082001,0.29
+61,8,0.38349133431339555,0.0,1.384187259403857,0.0006991906513346446,0.03648733065017515,0.7077361489060956,1,0.4798355849650199,0.45182959858546196,0.29
+61,9,0.3739426945473532,0.0,1.3846351510077584,0.0006995153905777006,0.03645329968483604,0.7076433614711122,1,0.516529531450408,0.4771911951323681,0.33999999999999997
+61,10,0.44767978197820213,0.0,1.3720011697582246,0.0006983056777062498,0.03613683060307553,0.7102507574013246,1,0.5876839091976915,0.5399680458633669,0.33999999999999997
+61,11,0.46388202566203673,0.0,1.368196189690778,0.0006972299381519434,0.036419063014552694,0.7110336170001376,1,0.6459756439647971,0.5926351675811926,0.35
+61,12,0.4721761788850023,0.0,1.3777691337787108,0.0006997194826605662,0.03651843399128105,0.7090617201614166,1,0.7020287884357903,0.6215536764415858,0.36
+61,13,0.5481426594756567,0.0,1.308930093199793,0.0007342497122981207,0.035847449011680285,0.7230419931434044,1,0.7548045056478512,0.6798702749963624,0.36
+61,14,0.5653442170192267,0.0,1.2989974413867071,0.0007305587254998151,0.03576217809637902,0.7250280878519538,1,0.8097291567521265,0.7397967071866078,0.37
+61,15,0.5863000856663088,0.0,1.3132929430000555,0.000723552542597247,0.035526522006653447,0.722171765537398,1,0.8760981113195618,0.7988858223482073,0.38
+61,16,0.5437254710608074,0.0,1.3147633544711512,0.0007415207106017286,0.03603740034892675,0.7218694312309113,1,0.906524310439771,0.7548065413562917,0.44
+61,17,0.6153929132522713,0.0,1.317505098768904,0.0007311986752679778,0.03593975185794312,0.7213227754804441,1,0.9510595436587583,0.7750735765723529,0.49
+61,18,0.5660411790320425,0.0,1.3335431254279508,0.0007214266419221352,0.036163371977955716,0.7180914136074257,1,0.9959758028130495,0.7248321601582509,0.55
+61,19,0.5332159640863796,0.0,1.3345485758989155,0.0007131572302018613,0.035898955008353536,0.7178911789864262,2,1.0,0.6773865469545989,0.6100000000000001
+61,20,0.6856247032654816,0.0,1.324683171306666,0.0007360293706327784,0.03576802883741432,0.719875628406173,2,1.0,0.7187490108849387,0.5800000000000001
+61,21,0.5461587574967881,0.0,1.3209007148182024,0.0007407489806790199,0.03601414552304052,0.7206358435296653,2,1.0,0.6538625249892939,0.56
+61,22,0.6109657213874173,0.0,1.3358897540477135,0.0007316538661792825,0.035987285025938884,0.7176119831815825,2,1.0,0.6698857379580581,0.555
+61,23,0.6375232323296582,0.0,1.3353079608106757,0.0007231189131353666,0.03591820248719319,0.7177333240013212,2,1.0,0.7250774410988609,0.545
+61,24,0.6322114468537862,0.0,1.3335009234534154,0.0007298744567573346,0.0361953758803681,0.7180965364978051,2,1.0,0.7740381561792873,0.535
+61,25,0.7202587834322749,0.0,1.3310228843904692,0.0007354685994185295,0.035915170051926834,0.7185956419457027,2,1.0,0.8341959447742499,0.505
+61,26,0.7127730933633261,0.0,1.2819628136037864,0.0007983159036020939,0.03561723128699369,0.7283842922187972,2,1.0,0.8759103112110873,0.475
+61,27,0.7227433579141433,0.0,1.2711835145545387,0.0007963899786784571,0.03635179262248026,0.7305123759678855,2,1.0,0.909144526380478,0.44499999999999995
+61,28,0.6048691600812102,0.0,1.2592192877505084,0.0007926122477446817,0.035391166176375416,0.7328626753842657,2,1.0,0.8495638669373672,0.42499999999999993
+61,29,0.5724171726813501,0.0,1.2772479522331677,0.0007755700601292023,0.0360655306790999,0.7293250588271688,2,1.0,0.8080572422711673,0.4049999999999999
+61,30,0.7260931377945226,0.0,1.2917335108195467,0.0007608852683711599,0.035724201405430686,0.7264618200551741,2,1.0,0.8536437926484084,0.3749999999999999
+61,31,0.6880231665346548,0.0,1.2796727397668302,0.0007566117752624649,0.035610671344895116,0.7288536087551822,2,1.0,0.8934105551155159,0.3649999999999999
+61,32,0.7427997969836935,0.0,1.2804057213225049,0.0007844836850605902,0.03615878955819235,0.7286977079614274,2,1.0,0.9093326566123117,0.33499999999999985
+61,33,0.7116104551674678,0.0,1.268123837691188,0.0007805197149615406,0.03539005389247117,0.7311205310370501,2,1.0,0.9720348505582261,0.32499999999999984
+61,34,0.71,0.0,1.2598529114950112,0.0007510372474932698,0.03508001575426782,0.7327548925877259,2,1.0,1.0,0.31999999999999984
+61,35,0.72,0.0,1.2832094169356152,0.0007368418436943949,0.03545644899556032,0.7281619305403143,2,1.0,1.0,0.30999999999999983
+61,36,0.7,0.0,1.285115196459574,0.0007585778146271049,0.03571013364256044,0.7277759199925052,2,1.0,1.0,0.2999999999999998
+61,37,0.7,0.0,1.2847781083721161,0.0007771543750467397,0.035913479577665705,0.7278353384874987,2,1.0,1.0,0.2899999999999998
+61,38,0.6331602695879232,0.0,1.2827094095127833,0.0007929360967895984,0.03605631806670695,0.7282386894510537,2,1.0,0.9438675652930774,0.2699999999999998
+61,39,0.7188382870801104,0.0,1.2861781845751776,0.0007779830584470588,0.03573319601616959,0.7275575789398158,2,1.0,0.9961276236003682,0.2599999999999998
+61,40,0.7,0.0,1.283299339804616,0.0007905968074239165,0.035910704256940075,0.7281228485109821,2,1.0,1.0,0.24999999999999978
+61,41,0.6348349163308763,0.0,1.279486084738576,0.0008004738295874668,0.035929325497863256,0.7288731596369867,2,1.0,0.9494497211029211,0.2299999999999998
+61,42,0.77,0.0,1.2822214840170214,0.000785846891640468,0.036147602713492724,0.7283380479907909,2,1.0,1.0,0.1999999999999998
+61,43,0.71,0.0,1.2770146056184641,0.0007925510018201632,0.03560815677037492,0.7293644175706809,2,1.0,1.0,0.19499999999999978
+61,44,0.72,0.0,1.298432036715785,0.0007765518388821891,0.03628771655411124,0.7251224596146785,2,1.0,1.0,0.18499999999999978
+61,45,0.71,0.0,1.29460506177032,0.0007861055162863818,0.03601667083706094,0.7258807923321551,2,1.0,1.0,0.17999999999999977
+61,46,0.72,0.0,1.3138019859638963,0.0007710689935879846,0.03628157820618645,0.7220505476681218,2,1.0,1.0,0.16999999999999976
+61,47,0.7,0.0,1.309332230546883,0.0007781529490309743,0.03624514647025277,0.7229438700607754,2,1.0,1.0,0.15999999999999975
+61,48,0.6377013584962741,0.0,1.3042495412757527,0.0007836673476947348,0.03625973422436532,0.7239585540495677,2,1.0,0.9590045283209139,0.13999999999999976
+61,49,0.7079269078819733,0.0,1.3077374234155394,0.0007700366922413337,0.036025747081635105,0.7232664389798166,2,1.0,0.9930896929399111,0.13499999999999976
+62,0,0.0944812406482794,0.0,1.377107329367658,0.0006993508485786475,0.03646521132146443,0.7091983790687644,1,0.12338604009533345,0.17098708871637563,0.06
+62,1,0.07637405964905472,0.0,1.3773180991556855,0.0006946850599628934,0.03621132829139544,0.7091568334996161,1,0.16310654458591084,0.13095589681328645,0.12
+62,2,0.17391807385701774,0.0,1.3782976658438286,0.0006949040845319888,0.03643322574613582,0.7089546627482092,1,0.21984373929674964,0.15657588367718459,0.16999999999999998
+62,3,0.2252961890772005,0.0,1.3767325347769073,0.0007071767052337283,0.03658471059750989,0.7092724417076753,1,0.2827070068276793,0.2211624556250425,0.18
+62,4,0.24360891653831132,0.0,1.385084584651776,0.0007002387579313237,0.03676740256998902,0.7075500726968063,1,0.3389513888924144,0.28325310141988774,0.19
+62,5,0.32324993290059667,0.0,1.3846524362688717,0.0007003089115765972,0.03673997597741681,0.7076394570738309,1,0.3969678693131056,0.34770392880336576,0.19
+62,6,0.3444100427340214,0.0,1.3846339449223508,0.0007011570372279755,0.03668663869231987,0.7076429317293621,2,0.45037051104116466,0.4226012128987129,0.19
+62,7,0.36926924104149517,0.0,1.385181427026207,0.0007006490423263211,0.03662556611755953,0.7075298635811756,2,0.5066339702783117,0.43982450481362034,0.185
+62,8,0.29709678520712424,0.0,1.3856062544531593,0.0007002171578042683,0.036450199067473966,0.7074421244882474,2,0.521439461788445,0.38197657860389506,0.165
+62,9,0.38692503758780694,0.0,1.3857728583020466,0.0006998460072810744,0.03642073207238098,0.7074077953133195,2,0.580307306714424,0.4127249341258618,0.16
+62,10,0.48948523282767475,0.0,1.3857601060159106,0.0006999941195425198,0.03652683478238404,0.7074103734872838,2,0.6620745812073326,0.459197098017028,0.13
+62,11,0.355795899888295,0.0,1.3676054620603202,0.0007156461232510145,0.03659659926820114,0.7111474096817341,2,0.6765207750973191,0.3967120953474445,0.11
+62,12,0.32207302156409845,0.0,1.3859560654160445,0.0006999411168683161,0.036748982164812066,0.7073698339214527,2,0.6844914499515039,0.34167004693690706,0.09
+62,13,0.3119294118077188,0.0,1.3856138826936157,0.000699741188863913,0.03676217199050141,0.7074407427069113,2,0.7096577481952325,0.27849733313129166,0.06999999999999999
+62,14,0.49142037884246603,0.0,1.3850875809369056,0.000699518634622167,0.0367262007971819,0.7075497507165962,2,0.7898418546707551,0.31658576569233926,0.039999999999999994
+62,15,0.5149724767825558,0.0,1.385284389356019,0.0006994601081861788,0.03666735777703154,0.707509049067716,2,0.8661895621625118,0.3726871000855889,0.009999999999999995
+62,16,0.5731507708645389,0.0,1.377603522869634,0.000699534035756572,0.036311169517319566,0.7090959598899923,2,0.9701426883063561,0.44533609985771433,0.0
+62,17,0.5645864963177433,0.0,1.3467952980427242,0.0007428562780191233,0.03604594413628505,0.7153922321278643,2,1.0,0.481954987725811,0.0
+62,18,0.6303173523391936,0.0,1.3407282162281917,0.000744221527137776,0.036660385235972884,0.7166253570675785,2,1.0,0.534391174463979,0.0
+62,19,0.58058157795858,0.0,1.3384263569888946,0.0007567003466433611,0.036284535574700155,0.717087507193402,2,1.0,0.5686052598619336,0.0
+62,20,0.6008926809455425,0.0,1.346641919054394,0.0007454634408862663,0.036670521816146794,0.7154223984069984,2,1.0,0.6029756031518084,0.0
+62,21,0.5921163861304661,0.0,1.2698289661110016,0.0007894722520300464,0.03573829549071864,0.7307816765689251,2,1.0,0.6403879537682207,0.0
+62,22,0.5325765646365401,0.0,1.2681200051045707,0.0008058849161687322,0.03567165538285275,0.7311113116097236,2,1.0,0.6085885487884672,0.0
+62,23,0.667779220241071,0.0,1.2890019376509871,0.0007892125911958952,0.03612360154804851,0.7269930444923633,2,1.0,0.6592640674702366,0.0
+62,24,0.6649596036082129,0.0,1.2810688676973787,0.0007912102139996504,0.03591045187657806,0.7285639253449132,2,1.0,0.7165320120273765,0.0
+62,25,0.5480750494589315,0.0,1.2721661151543593,0.0007916401621226719,0.036078524035450615,0.7303207644102311,2,1.0,0.6602501648631051,0.0
+62,26,0.6170161859279363,0.0,1.2925000397337734,0.0007751882504823663,0.03590328100082505,0.7263037863443325,2,1.0,0.6900539530931211,0.0
+62,27,0.5475273046373081,0.0,1.298577228762537,0.0007609313692308183,0.03600825171812034,0.7250997463111849,2,1.0,0.6584243487910271,0.0
+62,28,0.5113842900532788,0.0,1.3161960978471412,0.0007478020952560889,0.03597318363080329,0.7215791583681801,2,1.0,0.6046143001775962,0.0
+62,29,0.49778497709968084,0.0,1.3307065930311797,0.000736798417981238,0.03615786176960638,0.7186590589325881,2,1.0,0.5592832569989362,0.0
+62,30,0.59534365683333,0.0,1.299854678489222,0.0007431354586355012,0.03563631972871911,0.7248521374602415,2,1.0,0.6178121894444335,0.0
+62,31,0.6193536338667222,0.0,1.320601521096847,0.0007445039659504829,0.03587661305483295,0.7206945614719411,2,1.0,0.6645121128890739,0.0
+62,32,0.682768554938036,0.0,1.3195625114743823,0.0007595460885675145,0.03637922449457745,0.7208976067783899,2,1.0,0.70922851646012,0.0
+62,33,0.6300307510021181,0.0,1.3114620506640366,0.0007607414305543297,0.0358911931068307,0.7225240545327397,2,1.0,0.7334358366737274,0.0
+62,34,0.7072391495471058,0.0,1.316474379772972,0.0007479779370734678,0.036170590055247656,0.7215231766743401,2,1.0,0.7907971651570191,0.0
+62,35,0.7050042169646433,0.0,1.3076920284834088,0.0007482559332388991,0.03589512365837197,0.7232842434462469,2,1.0,0.850014056548811,0.0
+62,36,0.5909280072325307,0.0,1.2417205020166122,0.0008187896449010309,0.03522904370947909,0.7362643439771028,2,1.0,0.8030933574417692,0.0
+62,37,0.6800988065748972,0.0,1.2437937847481544,0.0008030542621800625,0.03582433707339106,0.7358676754271065,2,1.0,0.8669960219163242,0.0
+62,38,0.6711968743860469,0.05,1.239086956337697,0.0008082482219874519,0.035059061133380046,0.7219784269342763,2,1.0,0.9039895812868232,0.0
+62,39,0.6884312605319516,0.05,1.2381522691710416,0.0008086568119246028,0.0351868827385155,0.7221658396630373,2,1.0,0.9614375351065055,0.0
+62,40,0.6212240877092712,0.05,1.2318410960895405,0.0008114298674824889,0.0357606048012497,0.723429241332433,2,1.0,0.9040802923642375,0.0
+62,41,0.6861011685278688,0.0,1.234315108826877,0.0007949352211916987,0.03473758304205462,0.7377090304291422,2,1.0,0.9203372284262298,0.0
+62,42,0.611296144586799,0.0,1.2540829895589867,0.0007822621141720147,0.03562713629359272,0.7338710734332843,2,1.0,0.8709871486226636,0.0
+62,43,0.6819538478025602,0.0,1.2547568286246742,0.0007680969969474753,0.03488244526747279,0.7337449837384337,2,1.0,0.9065128260085341,0.0
+62,44,0.7049725057374667,0.0,1.2778987391638208,0.0007540840105020466,0.0357651154791626,0.7292050533672029,2,1.0,0.9499083524582225,0.0
+62,45,0.7049892459221754,0.0,1.2714222214547066,0.0007564834962212989,0.03510412148204285,0.7304810943194532,2,1.0,0.9832974864072515,0.0
+62,46,0.69,0.0,1.2937480255912006,0.0007429835323933907,0.035720447712806455,0.7260684442077014,2,1.0,1.0,0.0
+62,47,0.69,0.0,1.3136158692594404,0.0007312876777641013,0.03539267962314071,0.7221038646526745,2,1.0,1.0,0.0
+62,48,0.6341880004320475,0.0,1.3307666286515119,0.0007215554637607623,0.03595275190642775,0.7186530842904553,2,1.0,0.9472933347734918,0.0
+62,49,0.7181425459079616,0.0,1.3304943809581284,0.000713022224911339,0.03564411518421484,0.7187115772618294,2,1.0,0.993808486359872,0.0
+63,0,0.19088024773289775,0.0,1.3771556745297993,0.0006993412038546324,0.03646600611101073,0.70918841243148,1,0.1440876263941982,0.2681652616497613,0.01
+63,1,0.25127199636250186,0.0,1.376277725520905,0.0006993633773504301,0.03634055640892166,0.7093694384150538,1,0.20293523282503806,0.3341488829124618,0.01
+63,2,0.23960496602905862,0.0,1.3845743822477095,0.0006999568574198278,0.03662504257498703,0.7076557507503902,1,0.2416224502951037,0.3501236947525744,0.060000000000000005
+63,3,0.28442745299650085,0.0,1.3844136274785797,0.0006994390780820329,0.03666776534680529,0.7076892206614934,1,0.2808723800034886,0.42040706665093286,0.07
+63,4,0.23076398198426196,0.0,1.380303225290523,0.0007019028417145077,0.0366832358334367,0.7085377757242475,1,0.31818999336937503,0.39799161434993574,0.13
+63,5,0.21447708207844793,0.0,1.3846755978520298,0.0006994664583350604,0.03672047164133508,0.7076350138333819,1,0.3499018275529846,0.373371474783011,0.19
+63,6,0.20958327569087237,0.0,1.3852404597108054,0.0006995589313499993,0.03668635547002519,0.7075180988852007,1,0.37011528411287015,0.33347642083789275,0.25
+63,7,0.34739245449047146,0.0,1.3855638103777301,0.0006996732026000689,0.03659707575100952,0.7074511341247001,1,0.4320275297559111,0.3872760635863421,0.25
+63,8,0.2615533129376719,0.0,1.382908658711215,0.0006996018826072677,0.03643885414685997,0.7080003816547971,1,0.4615982798303178,0.33331304999020245,0.31
+63,9,0.33713074193720777,0.0,1.384150304731793,0.0006995530635645052,0.03644680480312901,0.7077436428376083,1,0.50452076325587,0.3684949159921776,0.36
+63,10,0.39959657929169573,0.0,1.3788284142291491,0.0006956350958782064,0.03650045343127812,0.7088448353331502,1,0.5557640261712655,0.41693056710584264,0.36
+63,11,0.312701355064272,0.0,1.370597597478259,0.0007091625827881295,0.03653616087941464,0.7105350537948453,1,0.5716055411381129,0.3754647188864417,0.42
+63,12,0.43680743409034717,0.0,1.3800123450978776,0.0006958299289573752,0.03651209296284251,0.7086003502774134,1,0.6416225062792063,0.4407985229754168,0.42
+63,13,0.34734719971245726,0.0,1.3765421353268519,0.0007025578931461099,0.03657797987983609,0.7093136061596517,1,0.6630407374663556,0.38427647199744275,0.48
+63,14,0.4736992084716969,0.0,1.3785238773590853,0.0006947662893403494,0.03648256903199478,0.7089080413920715,1,0.7272117590062019,0.46391697606508747,0.48
+63,15,0.4607238143708204,0.0,1.3763292809610268,0.0007026309219525965,0.036475388487202685,0.7093574620680497,1,0.7526310610099669,0.49100981005777333,0.53
+63,16,0.5263275232263598,0.0,1.3754228683330967,0.0006999393136155009,0.036343627383637125,0.7095454106278898,1,0.8096086758297086,0.5432149556198727,0.53
+63,17,0.5410528870062821,0.0,1.2683120411555509,0.0006774418565067443,0.034935972700241756,0.7311240601354579,1,0.8679744013718319,0.5908728217538031,0.54
+63,18,0.5645113062899403,0.0,1.2826760632618206,0.0006717997574197472,0.03378265516766977,0.7282932329628033,1,0.9242099371085695,0.6701260943398035,0.55
+63,19,0.5989926050583264,0.0,1.3066865530473228,0.0006603385441259995,0.03498337385014795,0.7235206133966872,2,0.9768430199209498,0.6903251602866466,0.6000000000000001
+63,20,0.6013170577234203,0.0,1.3004111108141143,0.0007555678954234643,0.03573415189958647,0.7247361875134907,2,1.0,0.704390192411401,0.5950000000000001
+63,21,0.6981090860147356,0.0,1.3028657560680352,0.0007436349547424549,0.03571638029430716,0.7242509976611907,2,1.0,0.760363620049119,0.5650000000000001
+63,22,0.5659736985269046,0.0,1.294890698248522,0.000744060654273967,0.03523910960343805,0.7258406871631022,2,1.0,0.7199123284230154,0.545
+63,23,0.6484598566477191,0.0,1.3132177787179922,0.0007324822465166149,0.035792376679293976,0.7221832630241652,2,1.0,0.7615328554923969,0.535
+63,24,0.5636881896542717,0.0,1.3135854660316921,0.0007486053570236182,0.03591872206267112,0.7221030153907307,2,1.0,0.712293965514239,0.515
+63,25,0.649425054470988,0.0,1.329319154082842,0.0007374692802431173,0.036284683266459415,0.7189392264985968,2,1.0,0.7647501815699599,0.505
+63,26,0.645831292914441,0.0,1.3281664389262673,0.0007502820733262243,0.036250770793002124,0.719166916336129,2,1.0,0.8194376430481365,0.495
+63,27,0.5787038534227917,0.0,1.2670287457671818,0.0007594571279240096,0.035931471079615696,0.7313440301598545,2,1.0,0.7623461780759725,0.475
+63,28,0.6650158242264875,0.0,1.306276937691807,0.000789683682823637,0.03624640365796518,0.723550803209761,2,1.0,0.8167194140882919,0.46499999999999997
+63,29,0.7256909429555324,0.0,1.257111667110974,0.0007684075402209847,0.03572283523937343,0.7332845601386015,2,1.0,0.852303143185108,0.43499999999999994
+63,30,0.6670305826327763,0.05,1.2429887749244015,0.0007606916077462719,0.035004227046675565,0.7212136785071946,2,1.0,0.8567686087759208,0.42999999999999994
+63,31,0.6534650246932979,0.0,1.266824287968211,0.0007457072801693265,0.034610215707149686,0.7313896027086674,2,1.0,0.8782167489776599,0.42499999999999993
+63,32,0.7545367275918164,0.0,1.274926512233968,0.0007333788673776085,0.035550755552544486,0.7297997301535689,2,1.0,0.9484557586393882,0.3949999999999999
+63,33,0.7053437836689056,0.0,1.2605206079642466,0.0007255421725684734,0.034272771395834845,0.7326341086404032,2,1.0,0.9844792788963519,0.3899999999999999
+63,34,0.72,0.0,1.2726633300587238,0.0007151592280355258,0.03536756995176056,0.7302529575916746,2,1.0,1.0,0.3799999999999999
+63,35,0.71,0.0,1.2773510127461576,0.0007466864041683813,0.0351407056557321,0.7293161174026862,2,1.0,1.0,0.3749999999999999
+63,36,0.6367223250751437,0.0,1.2863065243049385,0.0007343353852894736,0.03568393957817974,0.7275494431467721,2,1.0,0.9557410835838126,0.35499999999999987
+63,37,0.7038000592008556,0.0,1.3044465942104977,0.0007224831755233492,0.035245100823147746,0.7239436286397366,1,1.0,0.9793335306695189,0.34999999999999987
+63,38,0.71,0.0,1.2893876413350989,0.0007060519455098274,0.0349150855968551,0.7269495005885019,1,1.0,1.0,0.3599999999999999
+63,39,0.73,0.0,1.303471413173145,0.0006971772572760982,0.03536129045901976,0.7241485854768414,1,1.0,1.0,0.3599999999999999
+63,40,0.71,0.0,1.3147777912735328,0.0006901413035118338,0.03546575371735154,0.7218871636430814,1,1.0,1.0,0.3699999999999999
+63,41,0.7,0.0,1.3252462097981903,0.000684752805041092,0.03517289937813478,0.719782759964037,1,1.0,1.0,0.4199999999999999
+63,42,0.71,0.0,1.3309334697983626,0.0007056519140704565,0.03613796257194628,0.718625780838381,1,1.0,1.0,0.4299999999999999
+63,43,0.6345064509121662,0.0,1.3383813815947287,0.0006988344713927,0.03534173728882091,0.7171201091987743,1,1.0,0.9483548363738874,0.4899999999999999
+63,44,0.6961912149562139,0.0,1.3294908612327823,0.0006953067339763911,0.036062743364050055,0.7189215692516223,1,1.0,0.9873040498540466,0.5399999999999999
+63,45,0.73,0.0,1.3336155855069676,0.0007150019955640789,0.03547241606826521,0.7180793460733426,1,1.0,1.0,0.5399999999999999
+63,46,0.6389318743791199,0.0,1.3435512244961034,0.000707126086872802,0.03626677990929271,0.7160668129835055,1,1.0,0.9631062479304,0.5999999999999999
+63,47,0.6085482153002051,0.0,1.3351099310771801,0.0007043347125388316,0.03566098602392816,0.7177810518971084,2,1.0,0.9284940510006838,0.6599999999999999
+63,48,0.7622790204373415,0.0,1.2895002188447398,0.0007396914960484143,0.035537843187425665,0.7269137986868532,2,1.0,0.974263401457805,0.6299999999999999
+63,49,0.72,0.0,1.2759508530297077,0.000733529031099002,0.03509568959981397,0.7295976314661841,2,1.0,1.0,0.6199999999999999
+64,0,0.17257309913444596,0.0,1.3767120295430264,0.0007020996135826889,0.036467384816079744,0.7092787637936155,1,0.14627620472769692,0.23792142493250684,0.05
+64,1,0.17670850180850117,0.0,1.3764964024784447,0.000700698361439188,0.036402868229341453,0.7093238024357186,1,0.19090897839242224,0.2663011979038446,0.1
+64,2,0.2034379385062439,0.0,1.3761417041684236,0.0006993764341697615,0.03644816564917092,0.7093974749987397,1,0.23686820010013138,0.30178022823732636,0.15000000000000002
+64,3,0.28563730205550264,0.0,1.385553397943311,0.0006996596124478315,0.03670977389451294,0.7074532947447237,1,0.29183334184712434,0.3449854413633637,0.15000000000000002
+64,4,0.3039452970215623,0.0,1.3858298073577584,0.0007000151087274773,0.03677698250866313,0.7073959377407034,1,0.34833853798640924,0.40675602908773034,0.16000000000000003
+64,5,0.31780477125505324,0.0,1.3804652326671505,0.0006993707698831395,0.036605039842362005,0.7085053640032106,2,0.3857032225080679,0.44269547792409836,0.21000000000000002
+64,6,0.26264304642838365,0.0,1.3862943611198844,0.0007001722195526527,0.03672626550780782,0.7072997068701548,2,0.40132263431134846,0.4072670813980391,0.19000000000000003
+64,7,0.4162576212215938,0.0,1.385553691268251,0.0007011245339533095,0.036644927001674744,0.7074526276673485,2,0.47568567861131744,0.4325587790254425,0.16000000000000003
+64,8,0.38622807831729167,0.0,1.3849196228660239,0.0007015840185591794,0.03643315373476345,0.707583649217456,2,0.5296292036362508,0.4695261901486796,0.15500000000000003
+64,9,0.4279241997886496,0.0,1.3854208648518247,0.000700828914443536,0.03643378802870186,0.7074802394756338,2,0.5747899155058058,0.5224924312053919,0.14500000000000002
+64,10,0.3475209830229301,0.0,1.385124594857715,0.0007016595722552899,0.0365220045694455,0.7075412055891764,2,0.5925413647076482,0.4671050179175109,0.12500000000000003
+64,11,0.4368715068322292,0.0,1.3856474813996518,0.0007010357149111604,0.03669375800302373,0.707433252930522,2,0.6480352612360964,0.5001972179986516,0.12000000000000002
+64,12,0.3725364526573235,0.0,1.3692639945761245,0.0007134886743907652,0.03657083400025064,0.7108074869874959,2,0.6791944537563194,0.44939464614203906,0.10000000000000002
+64,13,0.4732333702791025,0.0,1.371700904552527,0.0007094956709759977,0.036588711683918605,0.7103079413427577,2,0.7309956063036264,0.49128302690944414,0.09000000000000002
+64,14,0.49186370613957564,0.0,1.368090818307747,0.0007098289512782613,0.03655608216375314,0.7110500895251433,2,0.7903199452176067,0.517505751044711,0.08500000000000002
+64,15,0.5357600539729195,0.0,1.372311572470213,0.0007060031854314476,0.03644353024443768,0.710183705389714,2,0.8382581710257598,0.5745656470463452,0.07500000000000002
+64,16,0.5515211191469784,0.0,1.3229725831549088,0.00071262568130285,0.03591331843701052,0.7202298785123512,2,0.8931310838918329,0.5964174659494567,0.07000000000000002
+64,17,0.6563436216221727,0.0,1.3251946975591795,0.000705033891716218,0.035611677990979855,0.7197849685381109,2,0.9894316989438063,0.6334750899728018,0.04000000000000002
+64,18,0.5254613035412818,0.05,1.2173306447562515,0.0007063394992030329,0.03439110216779169,0.7263648279705524,2,1.0,0.5848710118042728,0.02000000000000002
+64,19,0.6133938508592851,0.0,1.3256034827636407,0.0007622781279015432,0.036272142120989635,0.7196794149430569,2,1.0,0.6446461695309502,0.010000000000000021
+64,20,0.5290593603232342,0.05,1.2068048311436854,0.0007119739380788971,0.03407127095690603,0.7284497065203848,2,1.0,0.5968645344107807,0.0
+64,21,0.6634808844137501,0.0,1.279609969343987,0.0007705241307644146,0.03582231875990267,0.7288605148820982,2,1.0,0.644936281379167,0.0
+64,22,0.6141250008393199,0.05,1.2013364847163275,0.0007148545078048949,0.03362077089308942,0.7295289150565482,2,1.0,0.6804166694643997,0.0
+64,23,0.6881049884159246,0.0,1.2211527007248661,0.0007089720809484808,0.0343201021294061,0.7402809593545778,2,1.0,0.7270166280530822,0.0
+64,24,0.6360816061506629,0.05,1.1976832472096397,0.0006954394213853589,0.033469366826310645,0.7302568031788317,2,1.0,0.7536053538355431,0.0
+64,25,0.6571499652422217,0.0,1.2153971418290566,0.0006924948264603133,0.033747898443840865,0.7413923393471354,2,1.0,0.7904998841407389,0.0
+64,26,0.6494564844960606,0.0,1.2183123790921373,0.0007286771943360592,0.034097381143797935,0.7408191142225933,2,1.0,0.7981882816535356,0.0
+64,27,0.6676682624413968,0.0,1.2253316911722605,0.0007191627788634679,0.034205610177486766,0.7394727525563114,1,1.0,0.825560874804656,0.0
+64,28,0.6565580275904752,0.0,1.3582409410973826,0.0006928590347694386,0.03619728415234987,0.7130765537587839,1,1.0,0.8885267586349174,0.01
+64,29,0.6727522009417681,0.0,1.3652757552700658,0.0006913221611955598,0.03609903721960683,0.7116357181777483,1,1.0,0.909174003139227,0.060000000000000005
+64,30,0.7030007405481544,0.0,1.3686513867312573,0.0006997353229591689,0.03632402118844449,0.7109390513062407,0,1.0,0.9766691351605148,0.07
+64,31,0.6665328338992156,0.0,1.384976149456389,0.0006994578618233921,0.03674212703329824,0.7075728330802378,0,1.0,0.988442779664052,0.07
+64,32,0.6499999999999999,0.0,1.3853388829269795,0.0006995382133196019,0.03671896911316942,0.7074977397140374,0,1.0,1.0,0.07
+64,33,0.6799999999999999,0.0,1.3846913251480313,0.0006995666892374173,0.03659334027611806,0.7076317185652888,0,1.0,1.0,0.08
+64,34,0.6776654105056512,0.0,1.3845816290792456,0.0007007709039726373,0.036520740692360734,0.7076539147106801,0,1.0,0.9922180350188375,0.14
+64,35,0.6799999999999999,0.0,1.3838110417041927,0.0006990790780425269,0.036509615767793,0.7078140079840715,0,1.0,1.0,0.15000000000000002
+64,36,0.6599999999999999,0.0,1.383021699455858,0.0006998121783340771,0.03646625311151272,0.7079769245764699,0,1.0,1.0,0.16000000000000003
+64,37,0.6684693335636044,0.0,1.3813860659775241,0.0007003291071433831,0.03648006105337694,0.7083147559298932,0,1.0,0.994897778545348,0.16000000000000003
+64,38,0.6644505207131862,0.0,1.3811059219265753,0.0007030316182718529,0.03668228266984974,0.7083715151277924,0,1.0,0.9815017357106208,0.24000000000000005
+64,39,0.6732582448749762,0.0,1.3840764012509448,0.0007017540699165467,0.036748998141711633,0.7077580184929453,0,1.0,0.9775274829165876,0.30000000000000004
+64,40,0.6645751927466834,0.0,1.3837265105678993,0.0006997910835995516,0.03671850904333722,0.7078311953491986,0,1.0,0.9819173091556113,0.30000000000000004
+64,41,0.6763189020731195,0.0,1.3831392153836812,0.0007010552295958154,0.0366812621564851,0.707952114065661,0,1.0,0.987729673577065,0.36000000000000004
+64,42,0.6596600476761506,0.0,1.1568375706661538,0.0006032401645492845,0.032128642166306245,0.7524935809397719,0,1.0,0.9655334922538354,0.44000000000000006
+64,43,0.6327466247930584,0.0,1.1351861134259167,0.0005840153722351851,0.03039573216551192,0.7565111011312626,0,1.0,0.9424887493101948,0.52
+64,44,0.6639375128927163,0.0,1.1137488659856702,0.0005647161140907523,0.030940115615101384,0.7604451729003865,0,1.0,0.9464583763090544,0.5800000000000001
+64,45,0.6521989090813003,0.05,1.1346218552858955,0.0006302650144109134,0.031161075596311233,0.7425218842153795,2,1.0,0.9406630302710008,0.66
+64,46,0.7632783213793175,0.05,1.2075727316988274,0.0005591320521874446,0.03211027769106203,0.728358265426377,2,1.0,0.9775944045977254,0.63
+64,47,0.72,0.1,1.1887146117620628,0.0005430909682428765,0.030658289287396667,0.7171156983851309,2,1.0,1.0,0.62
+64,48,0.71,0.05,1.2207998158646478,0.0005819651770687129,0.0316575461320168,0.7257242737315506,2,1.0,1.0,0.615
+64,49,0.69,0.05,1.2245516371069889,0.0005836581754395901,0.032054887808349884,0.7249761719242532,2,1.0,1.0,0.61
+65,0,0.193100278329094,0.0,1.3760208855950877,0.0006979432463189587,0.036349460110830865,0.7094229723242239,1,0.15802472370223036,0.25930541677771124,0.01
+65,1,0.21117517406930417,0.0,1.3747908494696433,0.0006979730716098113,0.03640542944581664,0.7096764568318127,1,0.2142865513558903,0.3205829369824752,0.02
+65,2,0.28910393984456934,0.0,1.3859324893387632,0.000700015914292996,0.03664610042067608,0.7073746831270955,1,0.2809048972539366,0.36929075268563843,0.02
+65,3,0.2083493166596309,0.0,1.3859474231132067,0.0007002696917503094,0.03673139811353793,0.7073714868274511,1,0.317287893009133,0.3243285136881146,0.08
+65,4,0.3280344699231035,0.0,1.3861736951256598,0.0007002223445101356,0.03678493208412517,0.7073246665903359,1,0.3656198419989805,0.4002250840782011,0.08
+65,5,0.24768398398827635,0.0,1.3802829642229937,0.0006994058862464994,0.0366006745910789,0.7085429911527937,1,0.3978426812783343,0.36146348513619797,0.14
+65,6,0.35005482774217384,0.0,1.3861763026814067,0.0007001874838004369,0.03671936477951523,0.7073241412165234,1,0.46509383854352626,0.42423994750646554,0.15000000000000002
+65,7,0.3641211930872083,0.0,1.3846953902048518,0.0006996887962700256,0.03660545995846751,0.7076308270234476,1,0.5042114601234715,0.4588239401466443,0.2
+65,8,0.4311487533637093,0.0,1.3843300451076408,0.0006990203921081589,0.03643122359546423,0.7077066838612507,1,0.5718464247334493,0.5033416823566736,0.2
+65,9,0.43210068096557364,0.0,1.3834284070327527,0.0006988014370034836,0.036473112204378974,0.7078932504662534,1,0.6295988729141933,0.53913691815202,0.25
+65,10,0.47654766673320403,0.0,1.3798559032528432,0.0006961775603280884,0.036511393657477034,0.708632508704821,1,0.6832365392196466,0.5913829266877592,0.26
+65,11,0.5345442778774806,0.0,1.37934679825845,0.0006967359225946229,0.036435767429659795,0.708737383183683,1,0.7432907154649969,0.6479750915491056,0.26
+65,12,0.5511207327517207,0.0,1.3798794478657281,0.0006979901443854456,0.03656890514829644,0.708626898861058,1,0.7873067927066677,0.71854451768129,0.27
+65,13,0.5668713133702799,0.0,1.3806737889012624,0.0007009422472219842,0.03664394749358977,0.7084616407898081,1,0.8493374228760481,0.7653440512122104,0.28
+65,14,0.6508645252364333,0.0,1.3835622428527325,0.0006999546880565353,0.03669988073498335,0.7078650981061695,1,0.9155487179843241,0.8347415798063995,0.28
+65,15,0.6429817892225973,0.0,1.3663547163409806,0.0007006958648685239,0.03634215882284321,0.7114104047456808,1,0.9396994840502362,0.8802898993500491,0.33
+65,16,0.5960615861739351,0.0,1.3675081572205539,0.0007088446350479753,0.03620083926976862,0.7111701914737284,1,0.9738354389027384,0.8507306085265892,0.39
+65,17,0.6803044769312074,0.0,1.2526112402416003,0.0006576313391615281,0.034438752558800224,0.7342070589768803,1,1.0,0.9010149231040248,0.4
+65,18,0.6078164097168265,0.0,1.2671583076638124,0.0006540468865761812,0.03322238674750581,0.7313599955418083,1,1.0,0.8593880323894217,0.46
+65,19,0.6697783631815335,0.0,1.253667299808386,0.0006446343581664791,0.03423259507790501,0.7340059962208288,1,1.0,0.8992612106051119,0.51
+65,20,0.6079038672812992,0.0,1.2653229826293715,0.0006810464630439096,0.034020412809134926,0.731709832914391,1,1.0,0.8596795576043308,0.5700000000000001
+65,21,0.6672665884043645,0.0,1.2520005233417657,0.0006719893535915737,0.03435542230398801,0.7343206192495402,2,1.0,0.8908886280145482,0.6200000000000001
+65,22,0.6621059177769215,0.05,1.122167101656344,0.0005507639738392066,0.030375629968667113,0.7449260351420167,2,1.0,0.9070197259230718,0.6150000000000001
+65,23,0.756628846970786,0.05,1.1610655636842397,0.0005607435062422464,0.03151289997184785,0.737460881173956,2,1.0,0.9554294899026203,0.5850000000000001
+65,24,0.6266482510909508,0.1,1.1397182007786213,0.0005426217218920831,0.03007617339593191,0.7269487663595972,2,1.0,0.9221608369698359,0.5650000000000001
+65,25,0.6979455259962817,0.05,1.1692883537164087,0.0005608671538551754,0.031162369169071596,0.7358656939047687,2,1.0,0.9598184199876059,0.56
+65,26,0.6248963846484732,0.1,1.182877420923885,0.0005552441774713218,0.03093850039025,0.7182934149397335,2,1.0,0.9163212821615775,0.54
+65,27,0.5925289205806015,0.05,1.2060792069509458,0.0005725863972943395,0.031528199490652484,0.728648341881125,2,1.0,0.8750964019353383,0.52
+65,28,0.6789554584110871,0.0,1.2072678699971995,0.0005754289546559801,0.03186224161822791,0.7429926124699999,2,1.0,0.8965181947036236,0.515
+65,29,0.6715409870087214,0.05,1.219087556432221,0.0005732207115593819,0.032342364937395736,0.7260684431735862,2,1.0,0.9384699566957382,0.51
+65,30,0.7174090554976171,0.05,1.2428143567678067,0.0005867568597048963,0.033049575370378365,0.721318679883396,2,1.0,0.9913635183253903,0.5
+65,31,0.71,0.05,1.2633273945358086,0.0006095082240447188,0.03252499474786098,0.7171672998091438,2,1.0,1.0,0.495
+65,32,0.6363091746741274,0.0,1.2752896781954366,0.0006143935785856418,0.034096207505531606,0.7297750419046656,2,1.0,0.9543639155804247,0.475
+65,33,0.72,0.0,1.2773237272311233,0.0006156934035716606,0.0331729179796883,0.7293732198957411,2,1.0,1.0,0.46499999999999997
+65,34,0.71,0.0,1.294846882053524,0.0006347228184311665,0.03469009451529203,0.7258929188937435,2,1.0,1.0,0.45999999999999996
+65,35,0.77,0.0,1.3039866854356559,0.0006380841924272802,0.03347955107264191,0.7240692575191117,2,1.0,1.0,0.42999999999999994
+65,36,0.75,0.0,1.2905729927837946,0.0006275823405314958,0.03453788993897509,0.7267453193701376,2,1.0,1.0,0.3999999999999999
+65,37,0.75,0.0,1.2764541062381447,0.0006164163947672428,0.0331171167936753,0.7295445530311079,2,1.0,1.0,0.3699999999999999
+65,38,0.75,0.0,1.2612609290708408,0.0006043939401341225,0.03357775374596059,0.7325365435889145,2,1.0,1.0,0.33999999999999986
+65,39,0.72,0.0,1.2450188814783407,0.000591278194617582,0.03280847916886165,0.7357118526066327,1,1.0,1.0,0.32999999999999985
+65,40,0.69,0.0,1.2698043663827976,0.0006700178765716758,0.03453703052478385,0.7308335160262764,1,1.0,1.0,0.33999999999999986
+65,41,0.6414619802258246,0.0,1.268867544725194,0.0007913963736861963,0.03574081244047205,0.7309700276963004,1,1.0,0.9715399340860822,0.39999999999999986
+65,42,0.71,0.0,1.2576048480607218,0.0007872850322837165,0.036020425354181665,0.7331807077231792,1,1.0,1.0,0.40999999999999986
+65,43,0.7,0.0,1.273186738209294,0.0007700446345769158,0.035217056842531985,0.7301282135530385,1,1.0,1.0,0.45999999999999985
+65,44,0.6799999999999999,0.0,1.2732042124808467,0.0007979855362176978,0.036386163349123514,0.7301137591543038,1,1.0,1.0,0.5099999999999999
+65,45,0.73,0.0,1.2710662048065886,0.0008212085831491703,0.03582819214696032,0.730525698049797,1,1.0,1.0,0.5099999999999999
+65,46,0.6409318302019651,0.0,1.2905228875066252,0.0008009555674592917,0.036530603314492927,0.7266864064570943,1,1.0,0.9697727673398837,0.5699999999999998
+65,47,0.71,0.0,1.2814592421880167,0.0008006767735910647,0.036034841045072284,0.7284829737007108,1,1.0,1.0,0.5799999999999998
+65,48,0.69,0.0,1.2949918810061152,0.0007827999680896923,0.03627866583746631,0.7258051328304552,1,1.0,1.0,0.5899999999999999
+65,49,0.73,0.0,1.304903580760587,0.0007671678016865857,0.03603222300226161,0.7238344264832555,1,1.0,1.0,0.5899999999999999
+66,0,0.17432166013298106,0.0,1.3737961827446317,0.0006980968795011537,0.03637219336705476,0.7098813000240894,1,0.15828205541249998,0.2297431357953536,0.05
+66,1,0.23992775434034383,0.0,1.3732633230153628,0.0006968404922411457,0.03638352093736492,0.7099915475149747,1,0.21271454928507905,0.28492554030188716,0.05
+66,2,0.1605468547795176,0.0,1.385974931770668,0.0007002247069185703,0.03665403242434957,0.7073658112072407,1,0.24441123254330974,0.25000974463119735,0.11
+66,3,0.2472472486598199,0.0,1.3860935891063442,0.0007001517641725507,0.03673304792213935,0.7073412788028881,1,0.2920008882968146,0.28348979251978274,0.12
+66,4,0.19015135677750467,0.0,1.3858324303515794,0.0007001396170648645,0.036776675400127565,0.7073953432717284,1,0.31623948558481413,0.26489178940939906,0.18
+66,5,0.30908981027520643,0.0,1.3858995828724547,0.000700011644141185,0.036771670409377136,0.7073814963467667,1,0.3752444165582959,0.32584754826600976,0.18
+66,6,0.3044728948310629,0.0,1.3860011558045118,0.000700372112153656,0.03671500595780132,0.707360321791653,1,0.41811956401936345,0.3604368247476189,0.22999999999999998
+66,7,0.3488407279554696,0.0,1.3838318642766891,0.0006989719224622125,0.03657620465503555,0.7078097459024995,1,0.4608254384555406,0.4251727483201015,0.24
+66,8,0.3657124637479344,0.0,1.383539815272889,0.0006990508571369994,0.03637821275482105,0.7078701097374679,1,0.5094117711094573,0.458061146198748,0.29
+66,9,0.31218385992424347,0.0,1.3830658810905772,0.0006982459394668454,0.03644652439300934,0.7079684377714741,1,0.5475396961152109,0.4018165542797323,0.35
+66,10,0.4336668045820139,0.0,1.3726693334222608,0.0007059106467110907,0.036242850288000596,0.7101101025874643,1,0.6150935750825026,0.4612801776771267,0.35
+66,11,0.4494833198983468,0.0,1.3742116191005151,0.0007021298408149503,0.03644391650972691,0.7097940720456595,1,0.6702739843410295,0.5162914179299549,0.35
+66,12,0.4834196286810014,0.0,1.3728960677244135,0.0007034684462984655,0.03645577348564971,0.7100644318258351,1,0.7263769798625059,0.5639589524304146,0.36
+66,13,0.4998543712700718,0.0,1.3720224177005795,0.0007062102474359363,0.03651278390408737,0.7102431311938738,1,0.7746513450419599,0.5957546683512864,0.41
+66,14,0.5071515426202206,0.0,1.3711529640326003,0.0007025545703269024,0.03646071633485663,0.710423534263223,1,0.8235683834702872,0.629675361352067,0.45999999999999996
+66,15,0.5200750450763832,0.0,1.357052469447424,0.0006829771062902447,0.03602735493676401,0.7133236931335907,1,0.8405317027104178,0.6529631637591236,0.51
+66,16,0.5477144771456888,0.0,1.3617824967110685,0.0006900074113365526,0.035949860024945955,0.712352579391447,1,0.8719879430474616,0.7083956569302573,0.56
+66,17,0.5766255049346908,0.0,1.364792192377978,0.0006970155397170644,0.0363576770509648,0.7117326039113082,2,0.917746628815803,0.7513806161638659,0.6100000000000001
+66,18,0.6217074846382014,0.0,1.2595551235118492,0.0007924482054092189,0.036100786038837165,0.7327969862459571,2,0.9858204703655159,0.7889010667009028,0.6050000000000001
+66,19,0.5708356865110374,0.0,1.2702788864384853,0.0007764389610111259,0.03549032877252696,0.7306982795038305,2,0.999930844373767,0.7361996366007302,0.5850000000000001
+66,20,0.5350309380666775,0.0,1.2901060629996537,0.000760807461992092,0.036033275019004316,0.7267851301027661,2,1.0,0.6834364602222585,0.5650000000000001
+66,21,0.6416521599012003,0.0,1.3067209566888214,0.0007473708338146875,0.035679041346173154,0.7234789097759983,2,1.0,0.7388405330040009,0.555
+66,22,0.5577496812151194,0.0,1.2969364258031593,0.0007447120527617306,0.03576860396812453,0.7254331480798357,2,1.0,0.6924989373837314,0.535
+66,23,0.6415126755574085,0.0,1.311706414070935,0.0007328945691827692,0.035963597496549565,0.7224862278719469,2,1.0,0.7383755851913619,0.525
+66,24,0.5583331443358874,0.0,1.3015215012913854,0.0007292115689620903,0.03532830576751843,0.724525137361369,2,1.0,0.6944438144529583,0.505
+66,25,0.5209723243290587,0.0,1.3141736886063917,0.0007192337871892607,0.036089813897598466,0.7219967521258709,2,1.0,0.6365744144301958,0.485
+66,26,0.6053590217261411,0.0,1.323554740027498,0.0007112224583243917,0.035146980639735016,0.7201131252029306,2,1.0,0.6511967390871373,0.48
+66,27,0.5298167792123221,0.0,1.3330005831113971,0.000703911714993849,0.03620476025065506,0.7182083203562298,2,0.9980650280057975,0.601646731367643,0.45999999999999996
+66,28,0.5999760771989262,0.0,1.3399585897933353,0.0006983344858828373,0.03550697547427622,0.7168002520000814,2,1.0,0.6332535906630874,0.45499999999999996
+66,29,0.6278012562643482,0.0,1.3467612415266805,0.0006937552211289813,0.03613336453020684,0.7154191600359456,2,1.0,0.6926708542144944,0.44499999999999995
+66,30,0.6320099303466037,0.0,1.3387672941728772,0.000690396739094562,0.03557765899857544,0.7170452407532797,2,1.0,0.7400331011553456,0.43999999999999995
+66,31,0.7071297420532134,0.0,1.3439919169723722,0.0006865103584836261,0.035660210074636,0.715985589504128,2,1.0,0.7904324735107116,0.4099999999999999
+66,32,0.5679403303033455,0.0,1.3488699420675014,0.0007016340273596215,0.0361194578696861,0.7149864339849507,2,1.0,0.7264677676778182,0.3899999999999999
+66,33,0.6531995924441327,0.0,1.3553352830189804,0.0006974393895870642,0.03589694837418641,0.7136688064965381,2,1.0,0.777331974813776,0.3799999999999999
+66,34,0.6479099694196063,0.0,1.3479637647509914,0.0006947650462242783,0.036286192258341975,0.7151738580070004,2,1.0,0.8263665647320213,0.3699999999999999
+66,35,0.659612310972208,0.0,1.1747336966563244,0.0005359829592628476,0.03008908913175241,0.7491707195606525,2,1.0,0.8320410365740267,0.3649999999999999
+66,36,0.6857121563429288,0.0,1.18658000188024,0.0005538395540190855,0.03140847063501575,0.7469313187793375,2,1.0,0.8857071878097629,0.35499999999999987
+66,37,0.688528225041291,0.0,1.213508610782422,0.0005655880333189783,0.03132345009588519,0.7418028780580916,2,1.0,0.9284274168043034,0.34999999999999987
+66,38,0.7633033138019552,0.0,1.2212693571977271,0.0005804374681440295,0.032249822981908746,0.7403079549101559,2,1.0,0.977677712673184,0.31999999999999984
+66,39,0.72,0.0,1.3369367810473787,0.000669523549299621,0.03516545616363075,0.7174249516248973,2,1.0,1.0,0.30999999999999983
+66,40,0.71,0.0,1.3434028094678143,0.0006757715073169261,0.03557469403697551,0.7161097357674393,2,1.0,1.0,0.3049999999999998
+66,41,0.77,0.0,1.3540259790930471,0.0006793502027861074,0.035435963129968315,0.7139436708780995,2,1.0,1.0,0.2749999999999998
+66,42,0.75,0.0,1.350263073982682,0.0006785554715492758,0.03590728522263329,0.7147118668691868,2,1.0,1.0,0.2449999999999998
+66,43,0.75,0.0,1.3457849073025585,0.000677314572424721,0.03563081085620719,0.7156245861737474,2,1.0,1.0,0.2149999999999998
+66,44,0.75,0.0,1.340388712250575,0.0006755926736610378,0.03557758118323262,0.7167221647099227,2,1.0,1.0,0.1849999999999998
+66,45,0.75,0.0,1.3338973135233005,0.0006732665229252943,0.03556620946971528,0.7180392088993227,2,1.0,1.0,0.1549999999999998
+66,46,0.6316571417306598,0.0,1.326285146738863,0.0006701197391753746,0.034986699422666766,0.7195790686831292,2,1.0,0.9388571391021993,0.13499999999999981
+66,47,0.7033440884720777,0.0,1.3234771739710283,0.0006670476938024174,0.035100817567055416,0.7201465643031045,2,1.0,0.9778136282402593,0.1299999999999998
+66,48,0.6296132308287146,0.0,1.3354715732750992,0.000669172826163736,0.034994981496989,0.7177220353681567,2,1.0,0.9320441027623819,0.1099999999999998
+66,49,0.5925026000124557,0.0,1.3320872850731273,0.0006671458225372216,0.03515979514032834,0.7184079970237488,2,1.0,0.8750086667081859,0.0899999999999998
+67,0,0.09127841457430534,0.0,1.3737360450844947,0.0006991535952760319,0.03632426603775426,0.7098932499591453,1,0.11800142618941953,0.16659305136002836,0.06
+67,1,0.21116017950483718,0.0,1.3780518066709129,0.0006945395328173552,0.03623128638394256,0.7090055406455963,1,0.18534462160015008,0.22096520648261542,0.06
+67,2,0.20089746562774852,0.0,1.3737726820474399,0.0006991184994788167,0.03638863286549516,0.7098857191640702,1,0.22206361172604022,0.2439173384121148,0.11
+67,3,0.20076179071646486,0.0,1.3859008048899975,0.0007004333449110896,0.03673015130923797,0.707381068819467,1,0.2570888554641321,0.2692689710133953,0.16
+67,4,0.16973527947607206,0.0,1.3860906463996212,0.0007002984549157098,0.03678387941595289,0.7073418272383286,1,0.2875444475406475,0.2303157427894848,0.22
+67,5,0.26599839772791567,0.0,1.386122563546558,0.000700178957561033,0.0367787666068782,0.7073352695210267,1,0.34366242427394766,0.28572183077344665,0.23
+67,6,0.32835024692171283,0.0,1.3858806148624632,0.000700187447362886,0.03670846274697784,0.7073853497955264,1,0.4170428534269687,0.3412841607409127,0.23
+67,7,0.3425118869573591,0.0,1.383922268516633,0.0007005042288885079,0.036603848196563024,0.7077904147560037,1,0.4543798483571067,0.41159646677457257,0.24000000000000002
+67,8,0.27299248194249726,0.0,1.38303251559877,0.0006982367555265338,0.03642336561600434,0.7079753398074635,1,0.47101438440784044,0.36045815799917713,0.30000000000000004
+67,9,0.3712818389897921,0.0,1.3828342794099242,0.0007017911544229777,0.03640413410279103,0.7080148531096055,1,0.5378126253641503,0.4101580670411318,0.31000000000000005
+67,10,0.3071536365035306,0.0,1.3832926967192665,0.0006983352039644376,0.03646406268915654,0.7079215047117129,1,0.5681774819999247,0.36097172601185656,0.37000000000000005
+67,11,0.40130840762562936,0.0,1.380258531847796,0.0006963718231718697,0.03646355810188452,0.7085492897657987,1,0.6270674103718589,0.406116046651596,0.38000000000000006
+67,12,0.45844772823535934,0.0,1.3605414378195946,0.00068587606012109,0.03607012599087984,0.7126085054296294,1,0.6934015300772911,0.4525239756943583,0.38000000000000006
+67,13,0.4500461942898609,0.0,1.3599077323108746,0.0006878403112166831,0.03583905624694965,0.7127374649924252,1,0.7215608399925425,0.4916663343082368,0.43000000000000005
+67,14,0.5015678331806991,0.0,1.3568082481859278,0.0006842153412417529,0.03582212740026084,0.7133731257022559,1,0.7770265826494669,0.5653617641779523,0.44000000000000006
+67,15,0.514112405177469,0.0,1.3572293028922646,0.000687500987450144,0.03614873007211728,0.7132856802203213,1,0.8160523491194892,0.5949802766188261,0.49000000000000005
+67,16,0.5623161927878935,0.0,1.3027572419997808,0.0006642433387211164,0.03418014652575017,0.7243043768033652,1,0.8652039635578984,0.6649826851420968,0.5
+67,17,0.5758607841814116,0.0,1.3442464378390604,0.0007347002470710363,0.03648270524594137,0.7159142283715103,1,0.8947778063635136,0.708961839847273,0.55
+67,18,0.617404212718846,0.0,1.3382929376230572,0.000735747085973861,0.03609900563451307,0.7171230747307751,1,0.9331229349163725,0.7693706183270523,0.56
+67,19,0.673847198307273,0.0,1.3497174656767723,0.000726413130094943,0.03651816183067495,0.7148035906543123,1,0.9827927209850076,0.8328991532084014,0.56
+67,20,0.6753842756944861,0.05,1.2460474193650466,0.0008154911537332545,0.035669383592212764,0.7205762109371551,2,1.0,0.8846142523149538,0.56
+67,21,0.7298561025735442,0.0,1.2617049470118462,0.0006188563678708675,0.033647243562519344,0.7324438712510256,2,1.0,0.9328536752451474,0.53
+67,22,0.6171486577880072,0.05,1.2436842576599854,0.0006024610221914386,0.03268015142996199,0.7211374643333985,2,1.0,0.8904955259600243,0.51
+67,23,0.6958560622332377,0.0,1.2584753054973494,0.0006176449479608447,0.033695473199334504,0.7330767823667804,2,1.0,0.9195202074441259,0.5
+67,24,0.7596443984277331,0.0,1.2757181552491281,0.0006210580259795837,0.03316482270740154,0.7296879074120529,2,1.0,0.9654813280924439,0.47
+67,25,0.75,0.0,1.262667450612325,0.0006084943411457869,0.03368079361444055,0.7322592704600746,2,1.0,1.0,0.43999999999999995
+67,26,0.75,0.0,1.248722927034737,0.0005952653297687787,0.03198295775771866,0.7349894565157653,2,1.0,1.0,0.4099999999999999
+67,27,0.6350137204776976,0.0,1.2337196316956123,0.0005813414654910623,0.032783720748868914,0.7379068622183291,2,1.0,0.9500457349256586,0.3899999999999999
+67,28,0.7160180916831312,0.0,1.2437139424146166,0.0005928388360220953,0.032106137423040665,0.7359649002707211,2,1.0,0.9867269722771042,0.3799999999999999
+67,29,0.7,0.0,1.2666426983947234,0.0006060283485459716,0.03362119924695113,0.7314801502535456,2,1.0,1.0,0.3699999999999999
+67,30,0.7,0.0,1.2861383853056876,0.000622696439248149,0.0338201319688942,0.7276270233817992,2,1.0,1.0,0.3599999999999999
+67,31,0.6346983077937394,0.0,1.3020555126357551,0.0006421631799943311,0.03449742189970183,0.7244532967616998,2,1.0,0.9489943593124648,0.33999999999999986
+67,32,0.6012581151693959,0.0,1.308645245496046,0.0006442162308355279,0.03485877444144405,0.7231350837056854,2,1.0,0.9041937172313196,0.31999999999999984
+67,33,0.7513130786471867,0.0,1.314451582871592,0.0006870688484925026,0.03474525235470287,0.7219538839959975,2,1.0,0.9377102621572888,0.2899999999999998
+67,34,0.7465928354618881,0.0,1.3014123234973205,0.0006800348200159422,0.03544164236147451,0.724566556282787,2,1.0,0.9886427848729606,0.2599999999999998
+67,35,0.6333402016298983,0.0,1.287314118288609,0.0006717010066544856,0.03394891121264837,0.7273745124267242,2,1.0,0.9444673387663279,0.2399999999999998
+67,36,0.5965829375129583,0.0,1.300175402911063,0.0006673582771630547,0.035276747072354966,0.724818396643825,2,1.0,0.8886097917098611,0.2199999999999998
+67,37,0.6861451821430311,0.0,1.3093617264031605,0.0006646953601886548,0.03428207876612708,0.7229834106268127,2,1.0,0.9204839404767706,0.2149999999999998
+67,38,0.614809467052258,0.0,1.3187471666976736,0.0006630515369768044,0.03533180810166649,0.72110044264119,2,1.0,0.8826982235075269,0.1949999999999998
+67,39,0.7023597530949373,0.0,1.3252862631362783,0.000662468959613825,0.03506274387806678,0.7197836704879454,2,1.0,0.9411991769831244,0.1849999999999998
+67,40,0.7695968193003937,0.0,1.334558952057696,0.0006799130884174155,0.03539704639522276,0.7179025428676925,2,1.0,0.9986560643346459,0.1549999999999998
+67,41,0.75,0.0,1.3230328231440498,0.0006736414032317496,0.035507757612045304,0.720233450783391,2,1.0,1.0,0.1249999999999998
+67,42,0.6340778802135245,0.0,1.3106567187084484,0.0006664531233932197,0.0344887828199537,0.7227232722723389,2,1.0,0.9469262673784152,0.1049999999999998
+67,43,0.72,0.0,1.317149852465172,0.0006645876255279491,0.03545518167774227,0.7214209549408163,2,1.0,1.0,0.0949999999999998
+67,44,0.7,0.0,1.3260268282745855,0.0006850327329229221,0.03492356564793892,0.7196251727316642,2,1.0,1.0,0.08499999999999981
+67,45,0.6405628399240916,0.0,1.331582315418724,0.0007048287327283215,0.03616760834478193,0.7184948968422721,2,1.0,0.9685427997469721,0.06499999999999981
+67,46,0.72,0.0,1.336154177630508,0.0006985806448158433,0.03534907179001255,0.7175718015720174,2,1.0,1.0,0.054999999999999806
+67,47,0.6357274918961093,0.0,1.3394755908386857,0.0007152714065659356,0.03612489346236465,0.7168914144649013,2,1.0,0.9524249729870311,0.03499999999999981
+67,48,0.77,0.0,1.3422185046489783,0.0007079977213168343,0.03574856862600408,0.7163373428237616,2,1.0,1.0,0.00499999999999981
+67,49,0.75,0.0,1.3334163610191518,0.0007062531911548474,0.03581359648797059,0.7181232175240885,2,1.0,1.0,0.0
+68,0,0.17249742949537417,0.0,1.373054078354433,0.0006974909028912432,0.03627149417213864,0.7100343620200377,1,0.1482192828897238,0.2354022682799028,0.05
+68,1,0.1192809477953843,0.0,1.372488707667182,0.0006964005106643692,0.03642279346654746,0.7101511987457668,1,0.1808451556835275,0.18661714435383225,0.11
+68,2,0.1909419998584606,0.0,1.374066402372771,0.000692343181536722,0.03639558192452681,0.7098280153882878,1,0.20943126993123035,0.2254701846084333,0.16
+68,3,0.2243426719329794,0.0,1.3858253094581054,0.0007000404950587007,0.03672353555082841,0.7073968582369954,1,0.25262405799276066,0.25308083878504406,0.17
+68,4,0.2813334321851165,0.0,1.3855070285122677,0.0007000020456162462,0.036764387162598694,0.7074627496756409,1,0.3114885915736622,0.3077080837811159,0.17
+68,5,0.3054214968538804,0.0,1.385636657226101,0.0007005536081582534,0.036776936599210955,0.7074356927840658,1,0.3868632019367166,0.3667312539200987,0.17
+68,6,0.31804447939484143,0.0,1.3855292820813527,0.000701081483720827,0.03671062391881392,0.7074576972697213,1,0.42065030046051116,0.4027229141122085,0.22000000000000003
+68,7,0.3631725838922588,0.0,1.3832946208901271,0.000698335817110008,0.03655436490434366,0.7079211065997878,1,0.46440949170324786,0.46876420598707363,0.23000000000000004
+68,8,0.37724222963523074,0.0,1.3838417456970802,0.0006992863320250157,0.03643945721765756,0.7078075722214153,1,0.5047232151610631,0.5352970144295289,0.24000000000000005
+68,9,0.33857816721840345,0.0,1.3839431341206412,0.0007002015950401637,0.03638234320968788,0.707786224431918,1,0.5350662685432204,0.5043499107609211,0.30000000000000004
+68,10,0.43875431938715015,0.0,1.3851122602449575,0.0007001083241031073,0.03651477967964015,0.707544399928175,1,0.593295574347922,0.5703362278845916,0.31000000000000005
+68,11,0.45375487117376834,0.0,1.384916247651315,0.0007008054147754361,0.03667573197574666,0.7075846697791128,1,0.6252368843918398,0.6164065387887481,0.36000000000000004
+68,12,0.4036406461376767,0.0,1.3000080274018952,0.0007830440030550012,0.036157020247540285,0.7248056320413855,1,0.652606668390726,0.5840943740030755,0.42000000000000004
+68,13,0.47989136707766145,0.0,1.3553263825076,0.0006850901267715201,0.035745625385682746,0.7136756722640072,1,0.6958984073803298,0.6210897483151533,0.47000000000000003
+68,14,0.5263534174101792,0.0,1.3104423282818294,0.0007696140090458759,0.03629466106056459,0.7227248891823216,1,0.7461664255060675,0.6839838949435186,0.48000000000000004
+68,15,0.5462120289508576,0.0,1.3083659193130563,0.0007853069278398145,0.03627582674966549,0.7231345120614262,1,0.8030150489637107,0.7505225393785296,0.49000000000000005
+68,16,0.6268033504343187,0.0,1.345554889085357,0.000684134368645496,0.03595574294470537,0.7156686184757777,1,0.8632737117489447,0.8155251710739603,0.49000000000000005
+68,17,0.5478060453723796,0.0,1.3010671472537811,0.0007704421707322287,0.03632425578386246,0.7245993566822904,1,0.9008328348157019,0.7750485106229467,0.55
+68,18,0.6634894411254537,0.0,1.2831580015435224,0.0006244383923345033,0.03426271561607777,0.7282166031246561,1,0.9559424708463794,0.8296985877640699,0.55
+68,19,0.6772382731462019,0.0,1.3361179667990588,0.0007538071117968212,0.03646033247731846,0.7175567552380521,1,0.9973086555324668,0.8939341456994615,0.56
+68,20,0.7145458880492633,0.0,1.3385962295048626,0.000743195426059533,0.03629006668613868,0.7170585233130976,1,1.0,0.9484862934975445,0.56
+68,21,0.71,0.0,1.351538533795602,0.0007337588040956501,0.036512999932048776,0.7144292062738394,1,1.0,1.0,0.56
+68,22,0.6336456323805262,0.0,1.361799545244595,0.0007260390986020166,0.0366385291619239,0.7123343194472481,2,1.0,0.9454854412684205,0.6200000000000001
+68,23,0.5992025361506715,0.0,1.3037220557845015,0.0006424644023169802,0.034733646048512146,0.724120375461231,2,1.0,0.8973417871689053,0.6000000000000001
+68,24,0.7537865476530854,0.0,1.3095449475942622,0.0006446786288614496,0.03424014391781775,0.7229547323022556,2,1.0,0.9459551588436179,0.5700000000000001
+68,25,0.75,0.0,1.2969878978420228,0.0006352969023365319,0.03472034800994042,0.7254664812233367,2,1.0,1.0,0.54
+68,26,0.6351584515424998,0.0,1.2834154678116907,0.0006249352669703313,0.032985754655505004,0.7281654464291436,2,1.0,0.9505281718083328,0.52
+68,27,0.5956765417513035,0.0,1.2890864707305303,0.0006291010461537071,0.034507423361849345,0.7270398203659707,2,1.0,0.8855884725043451,0.5
+68,28,0.7491889545552676,0.0,1.2919162072836123,0.0006330558016894832,0.03370381855281175,0.7264763185559069,2,1.0,0.9306298485175587,0.47
+68,29,0.748642596408571,0.0,1.2793345341909201,0.0006232066366397733,0.03406468910838549,0.7289731590771713,2,1.0,0.9954753213619034,0.43999999999999995
+68,30,0.72,0.0,1.2656926912789606,0.0006124531745443099,0.03313287178700776,0.7316641839184043,2,1.0,1.0,0.42999999999999994
+68,31,0.71,0.0,1.283441839960702,0.0006332505800486698,0.03408084676706616,0.728156934353559,2,1.0,1.0,0.42499999999999993
+68,32,0.77,0.0,1.2964904923231766,0.000635411787355067,0.03449926428772596,0.7255654900640689,2,1.0,1.0,0.3949999999999999
+68,33,0.75,0.0,1.2827107661132304,0.0006248937659319202,0.033424878187794174,0.7283049294499465,2,1.0,1.0,0.3649999999999999
+68,34,0.72,0.0,1.2682687679174867,0.0006138038003710148,0.033934063844826445,0.7311575856897705,2,1.0,1.0,0.35499999999999987
+68,35,0.77,0.0,1.2847201060748894,0.0006384094435986143,0.033410788972764435,0.7279017914045453,2,1.0,1.0,0.32499999999999984
+68,36,0.72,0.0,1.3666976144151726,0.0006871425801217512,0.03607737732512959,0.7113455666403031,2,1.0,1.0,0.31499999999999984
+68,37,0.6398545824586972,0.0,1.3634145389876766,0.0006856932009503434,0.0361076855988244,0.7120198168895457,2,1.0,0.9661819415289907,0.2949999999999998
+68,38,0.6042227843333796,0.0,1.3603940591254533,0.0006832598182470308,0.03572340828637359,0.7126397588220466,2,1.0,0.9140759477779324,0.2749999999999998
+68,39,0.7532623454307295,0.0,1.3570722489526414,0.0006808469851403427,0.03584951488279657,0.7133205195424221,2,1.0,0.9442078181024318,0.2449999999999998
+68,40,0.6266429957364605,0.0,1.3622069248190134,0.0006850581877727095,0.03582907406400741,0.7122676321420188,2,1.0,0.9221433191215354,0.2249999999999998
+68,41,0.7093561610937889,0.0,1.358471017249812,0.0006818342365935523,0.03587480688802101,0.7130339899754369,2,1.0,0.9645205369792965,0.2149999999999998
+68,42,0.71,0.0,1.3555838970431753,0.000681338958968821,0.03595503759487183,0.713624581365174,2,1.0,1.0,0.2099999999999998
+68,43,0.6313916781949995,0.0,1.3633043640305091,0.000684819830985207,0.036022439510683145,0.7120427656200268,2,1.0,0.9379722606499985,0.1899999999999998
+68,44,0.7160601473958565,0.0,1.359673961073716,0.0006824067094536363,0.0361627110257539,0.7127875503377817,2,1.0,0.9868671579861885,0.1799999999999998
+68,45,0.6320146598326397,0.0,1.356515543167407,0.0006807690980931043,0.03584466590821321,0.7134343810597945,2,1.0,0.9400488661087991,0.1599999999999998
+68,46,0.5979117028874789,0.0,1.3526900807534437,0.0006781268418685829,0.0358859205649492,0.714216920274348,2,1.0,0.8930390096249297,0.13999999999999982
+68,47,0.6905613870638517,0.0,1.348457679958678,0.0006753999764890636,0.03525036748854289,0.7150811276318618,2,1.0,0.9352046235461726,0.13499999999999981
+68,48,0.6730706893030753,0.0,1.3559948363328418,0.0006821536849032988,0.03591486521501592,0.7135402595143239,2,1.0,0.9435689643435845,0.1299999999999998
+68,49,0.7134196315235852,0.0,1.3610563135424432,0.0006890496886725483,0.03583846897514851,0.7125017483740442,2,1.0,0.9780654384119507,0.11999999999999982
+69,0,0.09517891791586708,0.0,1.3730835881629146,0.0006963993105464303,0.03624728771523765,0.710028735830319,1,0.14075119028432584,0.15305333772117682,0.06
+69,1,0.18838441548293,0.0,1.3728598474187494,0.000690952421905775,0.036166411465443415,0.710077041865533,1,0.17878111176984013,0.2193700878782866,0.06999999999999999
+69,2,0.19708516168966056,0.0,1.3734751392094342,0.0006963617312620452,0.03632682020498249,0.7099481290434986,1,0.2168930590922571,0.270575303357902,0.07999999999999999
+69,3,0.23531890879410902,0.0,1.3858014715602953,0.0007007829479823194,0.0367322206417576,0.7074014849840824,1,0.2806410732428469,0.3236484438637086,0.08999999999999998
+69,4,0.31401179772441234,0.0,1.3855177145422688,0.0007009670486767086,0.03678401182774119,0.7074601386639694,1,0.33716355146683313,0.38668184903673597,0.08999999999999998
+69,5,0.3037041719429499,0.0,1.3852929554926456,0.0007015389379356873,0.036784559789278436,0.7075064159984629,1,0.37986648409408474,0.4025030083667342,0.13999999999999999
+69,6,0.24893795650294165,0.0,1.3792826560428522,0.0006970021210407915,0.03653168069093835,0.7087505139018241,1,0.40119667864461434,0.36173039659108874,0.19999999999999998
+69,7,0.2313345770172295,0.0,1.3807404423746377,0.0007028325365612247,0.03656708736560777,0.7084470928633712,1,0.44485155395904163,0.3187884437718832,0.26
+69,8,0.229713416262341,0.0,1.3824168921574609,0.0007019876204156148,0.03638392373356414,0.7081010507926652,1,0.48537347263869524,0.2661090027959922,0.32
+69,9,0.32470464385281594,0.0,1.3835579372666342,0.0007012846247689405,0.03651239873693891,0.7078654384264345,1,0.5309727164944144,0.2962139769325698,0.37
+69,10,0.3879394801100092,0.0,1.379258822118675,0.0006984514914150999,0.03647982996544706,0.7087548353909743,1,0.5767110307525714,0.3536353978220308,0.37
+69,11,0.4031643343525817,0.0,1.3790552173904398,0.0006998217582773875,0.03653379200659915,0.7087962963243182,1,0.6173759369410345,0.4236091880773988,0.38
+69,12,0.4221275486358468,0.0,1.3515536283579024,0.0006807242388842188,0.03589913635619368,0.7144477665536557,1,0.6815104750322889,0.47866294124848563,0.39
+69,13,0.5006478062424768,0.0,1.3514951735299963,0.0006835179450991569,0.0356900414644626,0.7144585520267578,1,0.7369425266107585,0.5423930730957044,0.39
+69,14,0.4237472422121035,0.0,1.3514045121480058,0.000687128657456031,0.03568948294146916,0.7144755741016904,1,0.7962197934209528,0.48356771504923346,0.45
+69,15,0.5508360668496469,0.0,1.3606801339829055,0.0006878332840440604,0.03619603827767125,0.7125792982298707,1,0.8757627000004664,0.5477304061649455,0.45
+69,16,0.5359502520974574,0.0,1.3065959965112883,0.0006590431329097095,0.03444055498193153,0.7235392460698977,1,0.8944312263272539,0.5763310762763951,0.5
+69,17,0.6023896537942277,0.0,1.2983745363483534,0.0006546805675195813,0.034756374589026744,0.7251824992426985,1,0.9416855232101276,0.6426657355689438,0.5
+69,18,0.6236870388868795,0.05,1.1821899280128527,0.0005373149554026581,0.031250383753275254,0.733359640674188,1,1.0,0.7122901296229318,0.5
+69,19,0.6387661502122137,0.05,1.1748803771968948,0.0005308107601673034,0.030601872463430747,0.7347890689259902,1,1.0,0.7625538340407125,0.5
+69,20,0.5621192194032403,0.05,1.1569049417958623,0.0005153380302905712,0.02997268110644279,0.738283179602516,1,1.0,0.7070640646774679,0.56
+69,21,0.6392408757844485,0.0,1.1763500574842412,0.000527361609234169,0.03091311551127941,0.7488701032351698,1,1.0,0.7641362526148288,0.5700000000000001
+69,22,0.6355411821702849,0.05,1.1928937276379559,0.0005451606807757584,0.031231460800708745,0.7312582798244175,2,1.0,0.7851372739009498,0.6200000000000001
+69,23,0.6706018777652414,0.0,1.2953584606440989,0.0006672730552141613,0.035222749921230645,0.7257781607364507,1,1.0,0.8353395925508048,0.6100000000000001
+69,24,0.6613595530083813,0.0,1.3198083999488617,0.0007376365865496966,0.03618047356310687,0.720856947727937,2,1.0,0.8711985100279378,0.6600000000000001
+69,25,0.7463118619062794,0.0,1.3241140055722016,0.0006644582309497638,0.03552540790232847,0.7200192461713636,2,1.0,0.9210395396875981,0.6300000000000001
+69,26,0.6963638451056882,0.0,1.3127743805704206,0.0006572387134996575,0.03422046649180915,0.7223024012210885,2,1.0,0.9545461503522941,0.6250000000000001
+69,27,0.6211432397160458,0.0,1.3221219303491356,0.0006574886513471841,0.03548177679532337,0.7204234631410552,2,1.0,0.903810799053486,0.6050000000000001
+69,28,0.5845778162767146,0.0,1.3260039413051956,0.0006583259479366572,0.03441177695325538,0.7196405672354885,2,1.0,0.8485927209223818,0.5850000000000001
+69,29,0.7345943954250918,0.0,1.3276283228358818,0.000659147000148747,0.035370677951483825,0.7193123867901007,2,1.0,0.8819813180836392,0.555
+69,30,0.5994536941625153,0.0,1.3178421485356568,0.0006521753849729342,0.034598638262081524,0.7212867915094748,2,1.0,0.8315123138750508,0.535
+69,31,0.7341670684985677,0.0,1.3185270358090995,0.0006536127907854554,0.034873333047408375,0.7211485081745066,2,1.0,0.8805568949952259,0.505
+69,32,0.7325955136889755,0.0,1.3085657787586056,0.0006463747392124438,0.03472421244802844,0.7231501292341569,2,1.0,0.9419850456299184,0.475
+69,33,0.6207880430248094,0.0,1.2976062297311448,0.0006382493576829751,0.033815277137784386,0.7253421376882184,2,1.0,0.9026268100826979,0.45499999999999996
+69,34,0.6886710858633474,0.0,1.2982905345513118,0.0006409401630247278,0.034633781242516044,0.7252047163703317,2,1.0,0.9289036195444913,0.44999999999999996
+69,35,0.7634635433622701,0.0,1.3091860142781955,0.0006457335312371887,0.034087842021250495,0.7230261952209835,2,1.0,0.9782118112075671,0.41999999999999993
+69,36,0.75,0.0,1.298286428730479,0.0006368216268138931,0.034682528453165495,0.7252071760902632,2,1.0,1.0,0.3899999999999999
+69,37,0.75,0.0,1.2865258328556297,0.0006272451269802294,0.03345505693887718,0.7275484266602573,2,1.0,1.0,0.3599999999999999
+69,38,0.75,0.0,1.2736959547331792,0.0006168867676553853,0.03389669214629909,0.7300882319106535,2,1.0,1.0,0.32999999999999985
+69,39,0.75,0.0,1.3273955613411825,0.0007309094481886324,0.03590439790694717,0.7193304034920951,2,1.0,1.0,0.2999999999999998
+69,40,0.75,0.0,1.3319634383062882,0.0007206789805427472,0.03600816903351206,0.7184113916620568,2,1.0,1.0,0.2699999999999998
+69,41,0.6364445452177268,0.0,1.3338956476912949,0.0007115553129604254,0.03566965750213583,0.7180240421012363,2,1.0,0.9548151507257562,0.2499999999999998
+69,42,0.72,0.0,1.327127404931783,0.0007107843860029474,0.03595552469034688,0.7193926647624909,2,1.0,1.0,0.2399999999999998
+69,43,0.77,0.0,1.3412610053742564,0.000703760459772221,0.035756000165795596,0.7165335858909948,2,1.0,1.0,0.2099999999999998
+69,44,0.71,0.0,1.341901589546715,0.0006968147841506003,0.03598565274008095,0.7164062790314071,2,1.0,1.0,0.2049999999999998
+69,45,0.77,0.0,1.3446335325073608,0.0007093476807104424,0.03607857060618219,0.7158458081471014,2,1.0,1.0,0.1749999999999998
+69,46,0.75,0.0,1.3438643337426643,0.0007014712184163591,0.035775040738370685,0.716005448575228,2,1.0,1.0,0.1449999999999998
+69,47,0.71,0.0,1.3415647528264059,0.0006942755129255839,0.03578230114479822,0.7164757402414504,2,1.0,1.0,0.1399999999999998
+69,48,0.69,0.0,1.3434717933204403,0.0007037184866938186,0.035606786907461795,0.7160843478500863,2,1.0,1.0,0.1349999999999998
+69,49,0.6302461890415683,0.0,1.343729871158136,0.0007120429624370697,0.03601297959119696,0.7160284905028175,2,1.0,0.9341539634718942,0.11499999999999978
+70,0,0.19774832505447706,0.0,1.3723920147114204,0.0006966483656673661,0.03627982428441401,0.7101709992473079,1,0.15443686924221606,0.27898473606567153,0.01
+70,1,0.25198268110427835,0.0,1.371579959719054,0.0006967811262561688,0.036377351806010136,0.7103380598610701,1,0.2080103323708637,0.3305968825815869,0.01
+70,2,0.16441652392771355,0.0,1.3851432486459572,0.000701733258671219,0.036676813472614075,0.7075373151127565,1,0.22704481553235448,0.2831694616379649,0.06999999999999999
+70,3,0.2858102169152148,0.0,1.385355216214189,0.0007013098861835212,0.03672688805404981,0.7074936263334705,1,0.28984063139764016,0.34788665308680256,0.06999999999999999
+70,4,0.2046773359279137,0.0,1.385019680395914,0.0007017366361822203,0.036783666861623675,0.7075628828225936,1,0.3142523872556594,0.3156300012947764,0.13
+70,5,0.32597231775647345,0.0,1.385178781448272,0.000701200819263881,0.03677540901406863,0.7075301826742029,1,0.36636156655386115,0.39248589820874014,0.13
+70,6,0.24142655674986901,0.0,1.3846792313916838,0.0007015854845719504,0.036700544274575024,0.7076333852951213,1,0.39558414553190857,0.3432403527123367,0.19
+70,7,0.3423003412905888,0.0,1.384752814619331,0.000700888024524554,0.036618427211484186,0.707618450149459,1,0.4597153786579541,0.40466652920101626,0.2
+70,8,0.360137448458938,0.0,1.3837956590012443,0.0006987036647974639,0.03650859700281748,0.7078173446019627,1,0.5241661159553592,0.4555976929152078,0.21000000000000002
+70,9,0.3932238917564766,0.0,1.3835455631045503,0.0006989907483145015,0.036317042975965386,0.7078689460017058,1,0.5698258035647178,0.5126162016960847,0.22000000000000003
+70,10,0.46587897005381196,0.0,1.3829644287485725,0.0006992638364613657,0.03645098694819132,0.7079889916311953,1,0.6340193253608807,0.546574020591679,0.22000000000000003
+70,11,0.3804041142474522,0.0,1.3788282661875986,0.0006987801131739542,0.03648605897317322,0.7088435677234475,1,0.6610727087399276,0.4967622206282585,0.28
+70,12,0.4922265152825023,0.0,1.377772055818145,0.0006970484180876823,0.03647674987718215,0.709062219409208,1,0.7024670290132857,0.554543517092841,0.28
+70,13,0.510561905916485,0.0,1.3768127649016813,0.0006980615986481196,0.03654411179366979,0.7092596568472267,1,0.7633417458302816,0.6113076495862879,0.29000000000000004
+70,14,0.4442909683666106,0.0,1.380708361962683,0.0007015986663781124,0.03669660897153093,0.7084542287262615,1,0.7890926924585779,0.5603617533536944,0.35000000000000003
+70,15,0.555674410269504,0.0,1.360259067031402,0.0006892442666913482,0.036188749013048235,0.7126649513863573,1,0.8419884923646723,0.6032614598062292,0.35000000000000003
+70,16,0.5760387491216642,0.05,1.2236793485001407,0.000597450678098263,0.03250802723946,0.7251445617512674,1,0.899026619084766,0.6712647748066539,0.35000000000000003
+70,17,0.6216201346703877,0.05,1.2194961052653261,0.0005921422723647414,0.03200858422027457,0.725979649953094,1,0.963991719873955,0.7474101090483449,0.36000000000000004
+70,18,0.6319339909668767,0.1,1.2422528295755195,0.0006066276158494822,0.03284051459881493,0.7061034486217004,1,0.9980490703128865,0.7753893878578884,0.41000000000000003
+70,19,0.6228680771067339,0.1,1.2484393539941216,0.0006166535740435059,0.03316400587417788,0.7048138058401924,1,1.0,0.8095602570224463,0.46
+70,20,0.6713664316224452,0.05,1.3100078581439463,0.0007988482016912849,0.03670896222615494,0.7075251394325549,1,1.0,0.8712214387414841,0.47000000000000003
+70,21,0.6679149558200085,0.05,1.31512246992811,0.0007876678481686275,0.036391584117196396,0.7064702705542774,1,1.0,0.8930498527333618,0.52
+70,22,0.6979891529571085,0.0,1.3100598641459524,0.0007931953404157826,0.036638039485242205,0.7227920764413956,1,1.0,0.9599638431903615,0.53
+70,23,0.69,0.0,1.313936605489832,0.0007816312365596882,0.036314679616268795,0.7220192897678899,1,1.0,1.0,0.54
+70,24,0.7,0.0,1.3186774380912685,0.0007676174052195239,0.036326431982639025,0.7210724057731351,1,1.0,1.0,0.5900000000000001
+70,25,0.71,0.0,1.3132413148727544,0.000772347965550521,0.036301249743869626,0.7221625434968522,2,1.0,1.0,0.6000000000000001
+70,26,0.7,0.0,1.3095266115566668,0.0006459126246312872,0.03404795281639566,0.7229579105207968,2,1.0,1.0,0.5900000000000001
+70,27,0.77,0.0,1.3238733029695395,0.0006571722160647946,0.03541901570600326,0.7200707044849685,2,1.0,1.0,0.56
+70,28,0.72,0.0,1.31340284015295,0.000649798649659385,0.034197758950911164,0.7221793116607078,2,1.0,1.0,0.55
+70,29,0.7,0.0,1.325696369840594,0.0006647959465753037,0.035415865714246875,0.7197000076503275,2,1.0,1.0,0.54
+70,30,0.7,0.0,1.334567773387549,0.0006804474745674559,0.035187605290048676,0.717900539934903,2,1.0,1.0,0.53
+70,31,0.6315392274268065,0.0,1.340490968565636,0.0006961199369169382,0.03582662891553707,0.7166930671906362,2,1.0,0.9384640914226884,0.51
+70,32,0.7696816202922976,0.0,1.3420220922365944,0.0006912458802299883,0.03575728766194115,0.7163840590259302,2,1.0,0.9989387343076589,0.48
+70,33,0.72,0.0,1.333240868633451,0.0006880284405074819,0.03533111556957594,0.7181661172968684,2,1.0,1.0,0.47
+70,34,0.7,0.0,1.3380276424014945,0.0007039834270782697,0.036091567192613465,0.717189774109607,2,1.0,1.0,0.45999999999999996
+70,35,0.6358908004530381,0.0,1.3403153347427705,0.0007186183346350066,0.036000174369072775,0.7167195915193165,2,1.0,0.9529693348434604,0.43999999999999995
+70,36,0.6001717533808438,0.0,1.3418954363586382,0.0007110989009445654,0.03615060843902409,0.7164017249821238,2,1.0,0.9005725112694796,0.41999999999999993
+70,37,0.6881509191376967,0.0,1.3419172992092823,0.0007045568166822525,0.035876618872918424,0.7163999414113135,2,1.0,0.9271697304589889,0.4149999999999999
+70,38,0.6144109150049508,0.0,1.35357983519313,0.0007001779370561105,0.036134168546780324,0.7140262716350048,2,1.0,0.8813697166831695,0.3949999999999999
+70,39,0.7567612304735851,0.0,1.3526458725947736,0.000695214230922672,0.03569892657053923,0.7142189681944006,2,1.0,0.9558707682452837,0.3649999999999999
+70,40,0.7478650251390278,0.0,1.3467109502681451,0.0006945359474784872,0.035837960821355964,0.7154290810564197,2,1.0,0.9928834171300925,0.33499999999999985
+70,41,0.630611884510158,0.0,1.3398422117730984,0.0006931879126243411,0.03568600368075575,0.7168259652431677,2,1.0,0.9353729483671938,0.31499999999999984
+70,42,0.5973365566054073,0.0,1.3273063100190758,0.0006642820867332041,0.03502305153424175,0.7193753239738772,2,1.0,0.8911218553513578,0.2949999999999998
+70,43,0.7057826760186852,0.0,1.3362800728730369,0.0006691967639048573,0.03557950707302528,0.7175581971495214,2,1.0,0.9526089200622838,0.2849999999999998
+70,44,0.7,0.0,1.346077235832897,0.0006746403928439494,0.03563853662209252,0.7155661803624236,2,1.0,1.0,0.2749999999999998
+70,45,0.6324034884697747,0.0,1.3532153718510898,0.0006809115257588632,0.03582828694128427,0.7141085534340719,2,1.0,0.9413449615659155,0.2549999999999998
+70,46,0.5967908148891081,0.0,1.360368986330095,0.0006833397774635146,0.035973222816172296,0.7126448605619035,2,1.0,0.8893027162970275,0.2349999999999998
+70,47,0.680515149015184,0.0,1.3652863515807594,0.0006861259315745891,0.035959009811459684,0.7116356763453242,2,1.0,0.9017171633839468,0.2299999999999998
+70,48,0.7543833448861745,0.0,1.3623463050169076,0.0006848020341858077,0.03603055271505603,0.712239171377046,2,1.0,0.9479444829539153,0.1999999999999998
+70,49,0.7461129535432168,0.0,1.3583948427703803,0.0006818037245128302,0.035606197780634646,0.7130495887654714,2,1.0,0.9870431784773896,0.1699999999999998
+71,0,0.18509949012617805,0.0,1.3720495204367,0.0006995300655994632,0.036286066253875274,0.7102403030353318,1,0.13659963237868838,0.2576320626454571,0.01
+71,1,0.2090570436713111,0.0,1.3712947157448276,0.0006997996476395748,0.03640433661342165,0.7103955055190802,1,0.20461923032743723,0.32480104352236017,0.02
+71,2,0.2406975497785535,0.0,1.3846092313721676,0.0007013767335321073,0.03666213494934248,0.7076479536488883,1,0.24070242134747616,0.35483900768978943,0.07
+71,3,0.2921620072492642,0.0,1.3853439202385447,0.0007010133101387984,0.0367215311960769,0.7074960867395254,1,0.29666852490117845,0.4277600784461726,0.08
+71,4,0.34600955440510717,0.0,1.3783735465748503,0.0006957213033222326,0.03653748657116295,0.7089386681682512,1,0.33761567552478555,0.49281355990477416,0.08
+71,5,0.361154374247229,0.0,1.3772356224713131,0.0006955468403584982,0.03643258663963477,0.7091734888261311,1,0.3888332991473171,0.5502090651522268,0.08
+71,6,0.3738160818159008,0.0,1.3757792890737353,0.0006952895865794159,0.03643573055912151,0.7094738669485045,1,0.42435053103387854,0.5843113198468111,0.13
+71,7,0.3785767928043906,0.0,1.382904393663132,0.00069894150536997,0.036527669801982444,0.7080015364390461,1,0.4738100074334502,0.6091443006756101,0.18
+71,8,0.4028814347562334,0.0,1.3855662291313033,0.0007009241811197284,0.03644752940710435,0.7074501157135765,1,0.5132389159274381,0.6441593806054334,0.22999999999999998
+71,9,0.42868023916307374,0.0,1.3860057756157635,0.0007004857359366426,0.03639893818440991,0.707359318441244,1,0.5488716674628737,0.6885838518368933,0.27999999999999997
+71,10,0.501614141374793,0.0,1.3860025509560838,0.0007000822836212262,0.03653839387048664,0.7073601529828777,1,0.6023603509221881,0.7692933951734238,0.29
+71,11,0.5096326619823931,0.0,1.3846826413203313,0.0007000449142228979,0.03664681294973607,0.7076333172727114,1,0.6403850301053396,0.7849930048184142,0.33999999999999997
+71,12,0.5590541022732445,0.0,1.291583205077341,0.0008248597134553641,0.0366042307035064,0.7264662626755186,1,0.6837035082744529,0.8658595812572867,0.35
+71,13,0.5831172834648946,0.0,1.3862943611198844,0.0007001722195526527,0.036787569296499095,0.7072997068701548,1,0.7490979507369045,0.9364433356899265,0.36
+71,14,0.6168977879842124,0.0,1.3859719067819267,0.0007001602553350568,0.036763780695369966,0.7073664640606105,1,0.7853911903704787,0.9733695711818162,0.41
+71,15,0.6560052955440749,0.0,1.3858002323590042,0.0006998363059711371,0.03669639537908163,0.7074021333599559,1,0.8457294158402144,1.0,0.42
+71,16,0.6976751505236822,0.0,1.3123217150243236,0.0007110671179620151,0.035779108134687224,0.72237159833239,1,0.9076432872105206,1.0,0.42
+71,17,0.6144521409726711,0.0,1.3295324991083681,0.0007047741733742975,0.03527628140983502,0.7189093289501256,1,0.9289680336051303,0.9643777640362518,0.48
+71,18,0.6995388579889683,0.0,1.328876827027394,0.0007111681346525948,0.036106481172076176,0.7190392238637541,1,0.9701110228256238,1.0,0.49
+71,19,0.73,0.0,1.3258419668056673,0.0007031050724347753,0.035128744246354884,0.7196551775625087,1,1.0,1.0,0.49
+71,20,0.71,0.0,1.3416179303340776,0.0006986298489702994,0.03602162147519515,0.7164631686225379,1,1.0,1.0,0.5
+71,21,0.73,0.0,1.337771797797487,0.0006913429147566615,0.03535371904992698,0.7172467909461715,1,1.0,1.0,0.5
+71,22,0.6356311807152224,0.0,1.35158100265248,0.0006899180475028284,0.03579933464585415,0.7144384304757718,1,1.0,0.9521039357174079,0.56
+71,23,0.73,0.0,1.3510174983636472,0.0006942008687617216,0.0360231787280164,0.7145516334530916,1,1.0,1.0,0.56
+71,24,0.7,0.0,1.3622626995868852,0.0006932420993322733,0.03595822148702225,0.7122528468360938,2,1.0,1.0,0.6100000000000001
+71,25,0.69,0.0,1.3373829523183305,0.0007042782356890317,0.03611562761801788,0.7173203978289422,2,1.0,1.0,0.6050000000000001
+71,26,0.69,0.0,1.3477817904448803,0.000698729037632035,0.03561057835619111,0.7152093099519774,2,1.0,1.0,0.6000000000000001
+71,27,0.6321630427028709,0.0,1.355291831051794,0.0006947212955146556,0.03638713372186353,0.7136787964736269,2,1.0,0.9405434756762366,0.5800000000000001
+71,28,0.7684816561880436,0.0,1.3579828512826158,0.0006914090949278204,0.03570921623295935,0.7131299488584028,2,1.0,0.9949388539601457,0.55
+71,29,0.72,0.0,1.3501837997366697,0.0006881753882778118,0.036076993485784865,0.7147241076569308,2,1.0,1.0,0.54
+71,30,0.71,0.0,1.354528027699184,0.0007010231677021377,0.03598784143866228,0.7138322729896067,2,1.0,1.0,0.535
+71,31,0.69,0.0,1.361113228312826,0.0006971432160228835,0.03620256913568133,0.7124867737437682,2,1.0,1.0,0.53
+71,32,0.77,0.0,1.365176732925937,0.0006941784151363649,0.0362924219326267,0.7116548659412262,2,1.0,1.0,0.5
+71,33,0.75,0.0,1.3581568003508524,0.0006914263901993526,0.035801655898634835,0.7130943547229046,2,1.0,1.0,0.47
+71,34,0.71,0.0,1.350306291180528,0.000688097891781186,0.03623808350349283,0.7146991633875213,2,1.0,1.0,0.46499999999999997
+71,35,0.6328410896598116,0.0,1.3539054504393744,0.0006854563106582195,0.03550471292874968,0.7139657916263935,2,0.9951432908930599,0.9484697928241355,0.44499999999999995
+71,36,0.7048974103569956,0.0,1.3585749785551648,0.0006843332045882655,0.036297242549574484,0.7130116945972493,2,1.0,0.982991367856652,0.43999999999999995
+71,37,0.77,0.0,1.3603694842303815,0.0006833058176225842,0.03576275229511896,0.712644772509537,2,1.0,1.0,0.4099999999999999
+71,38,0.72,0.0,1.3532069036043342,0.0006791485318817644,0.03596702838468595,0.7141110021410434,2,1.0,1.0,0.3999999999999999
+71,39,0.6331180191366372,0.0,1.3596259759224893,0.0006893359323848964,0.036055991368683524,0.7127945367559408,2,1.0,0.9437267304554574,0.3799999999999999
+71,40,0.7024954165811348,0.0,1.3637500289486253,0.000688043660032319,0.0360183876957054,0.7119500565362319,2,1.0,0.9749847219371159,0.3749999999999999
+71,41,0.77,0.0,1.3652310226868862,0.0006868510672608072,0.036216709494967185,0.7116467326697193,2,1.0,1.0,0.34499999999999986
+71,42,0.6330505056415396,0.0,1.3587841546762176,0.0006833243380168108,0.035635125033668925,0.7129693027307622,2,1.0,0.9435016854717988,0.32499999999999984
+71,43,0.6975343270409351,0.0,1.347030605754154,0.0007144013035346368,0.035880223237993406,0.7153559078441161,2,1.0,0.9584477568031171,0.31999999999999984
+71,44,0.77,0.0,1.339159940783568,0.0007129657399430885,0.03633263511536433,0.7169564095971329,2,1.0,1.0,0.2899999999999998
+71,45,0.71,0.0,1.3496407681266316,0.0007058003977043076,0.035741572240497,0.7148276297624919,2,1.0,1.0,0.2849999999999998
+71,46,0.77,0.0,1.3411978033411194,0.0007033853986723464,0.03618700407388033,0.7165465752384292,2,1.0,1.0,0.2549999999999998
+71,47,0.71,0.0,1.3493950135113644,0.0006975969889472679,0.03588343949156296,0.7148810681219352,2,1.0,1.0,0.24999999999999978
+71,48,0.69,0.0,1.340624262625456,0.0006941590585172427,0.03579103430627494,0.7166667981695202,2,1.0,1.0,0.24499999999999977
+71,49,0.6354222072521457,0.0,1.3311708224663006,0.0006899981927319883,0.035722434044342465,0.7185841160467916,2,1.0,0.9514073575071524,0.22499999999999978
+72,0,0.09351300107457808,0.0,1.3698202877785166,0.0007002145772534324,0.03632231189639381,0.7106985803363434,1,0.1343893267142151,0.15492245574867597,0.06
+72,1,0.07650080452186679,0.0,1.3765533069396185,0.000694666242582829,0.036295934864223535,0.7093145570326769,1,0.16361422530743938,0.13078608554754337,0.12
+72,2,0.18937589296989724,0.0,1.377959877350737,0.0006949804165848568,0.036375656645466506,0.7090243249172743,1,0.20991137638256024,0.1863563707866705,0.13
+72,3,0.12384116394783548,0.0,1.3719947624024156,0.0007081899951535398,0.03648024393508757,0.7102480077142612,1,0.22700567315706674,0.14796392780954043,0.19
+72,4,0.1088239914027339,0.0,1.3745000147713045,0.0007062328168773599,0.03664815038979113,0.7097329723295838,1,0.274596750421418,0.10905042918412536,0.25
+72,5,0.2538904403622404,0.0,1.3763019264474474,0.0007045930318630871,0.03663747780561105,0.7093622926552036,1,0.34642270805162795,0.17547497514723537,0.25
+72,6,0.2719974666782412,0.0,1.376400715788203,0.0007076635066150958,0.03658194956857341,0.7093406589716496,1,0.39474668357458487,0.2461204247571217,0.26
+72,7,0.20570216857773183,0.0,1.385435828557812,0.0007006096143720897,0.03662774837261716,0.707477233467593,0,0.4099953691887904,0.20734596453885062,0.32
+72,8,0.23375267684493642,0.0,1.386062626577241,0.0007002199718451681,0.036487579393489816,0.7073476600633983,0,0.5069391229762747,0.1877466126774675,0.4
+72,9,0.2590405063805737,0.0,1.3862943611198846,0.0007001722195526525,0.036382021848143,0.7072997068701548,0,0.6048523760383607,0.15780724922382497,0.48000000000000004
+72,10,0.2796481231834098,0.0,1.3862943611198846,0.0007001722195526525,0.03655402168724227,0.7072997068701548,0,0.6991917089373537,0.11643675018445343,0.56
+72,11,0.32257718224225784,0.0,1.3862209226961395,0.0007001694426611415,0.036673230546123765,0.7073149115126213,0,0.7226641771303037,0.13214906748883845,0.5700000000000001
+72,12,0.32120641650357673,0.0,1.386168566031797,0.0007000899391185612,0.036754531762723225,0.7073257832162545,0,0.7505865004439856,0.1616704711606061,0.5800000000000001
+72,13,0.34415223712859805,0.0,1.385915389845283,0.0007000010404568427,0.036773099357653695,0.7073782287944622,0,0.7648027169516259,0.1882376206517633,0.5800000000000001
+72,14,0.36281159190010104,0.0,1.3860033602264443,0.0007003839382030726,0.036770018986145576,0.7073598605763345,0,0.787971019986978,0.1900724496821959,0.5900000000000001
+72,15,0.3720757411051254,0.0,1.3855720571161,0.0007005402680298914,0.03668470483198773,0.7074490684395348,0,0.8298268907482085,0.20545443114417486,0.5900000000000001
+72,16,0.40510363968277785,0.0,1.385584054095371,0.0006998083036559204,0.036564260827402564,0.7074468884631916,2,0.8861138229701228,0.2165460054774496,0.6500000000000001
+72,17,0.4745441439833063,0.0,1.3228301138876009,0.0007411669074325483,0.035763335689733146,0.7202470835296253,2,0.9388173099154911,0.2531936183762816,0.6400000000000001
+72,18,0.4892535163886138,0.0,1.322393638319227,0.0007562397145495684,0.0365289671057837,0.7203289481212669,2,0.987257982841187,0.31237740798066127,0.6300000000000001
+72,19,0.5820538458490461,0.0,1.320664167739694,0.0007695400248655055,0.03609476617915821,0.7206718713073876,2,1.0,0.37351281949682025,0.6000000000000001
+72,20,0.5342495610275877,0.0,1.313198876457904,0.0007708546017383389,0.036396694386788934,0.722171657678268,2,1.0,0.4141652034252925,0.5950000000000001
+72,21,0.4583086250630505,0.0,1.2456557624914066,0.0007133720113917106,0.03429155935434801,0.7355405021125335,2,1.0,0.3610287502101684,0.5750000000000001
+72,22,0.5986750436131318,0.0,1.3297435630469499,0.0007288425310090058,0.03574779608972779,0.7188569470455478,2,1.0,0.42891681204377313,0.545
+72,23,0.4692049673099997,0.05,1.2402522596506875,0.0007157830380926367,0.03421114323412732,0.7217815981897889,2,1.0,0.3973498910333324,0.525
+72,24,0.5379750605153908,0.0,1.2853169614085955,0.0007209310033147525,0.03510189651291072,0.7277508630080002,2,1.0,0.42658353505130253,0.52
+72,25,0.6084790998825064,0.05,1.2386792225051102,0.0007164366316482825,0.03399095446400538,0.7220971118295072,2,1.0,0.46159699960835476,0.49
+72,26,0.4704800596112881,0.1,1.247821583305717,0.0007329555075296681,0.034721114904361236,0.7048939339779122,2,1.0,0.40160019870429364,0.47
+72,27,0.5409009784234589,0.0,1.2733877338128436,0.0007216346969155016,0.03520647670884615,0.7301076861707178,2,1.0,0.43633659474486297,0.46499999999999997
+72,28,0.46963433537877547,0.0,1.2626468310577015,0.0007135446643887269,0.034839453113389325,0.7322221199901586,2,1.0,0.39878111792925164,0.44499999999999995
+72,29,0.603152165602476,0.0,1.2868900072387834,0.0006928833906993787,0.034609990561820334,0.7274502064605473,1,1.0,0.44384055200825334,0.4149999999999999
+72,30,0.5585440737786552,0.0,1.332633522575244,0.0006615798709214513,0.035256502261050274,0.7182997336094465,1,1.0,0.4951469125955174,0.4149999999999999
+72,31,0.48699086027999505,0.0,1.3375117037432669,0.0006656546611526456,0.03540389254233488,0.7173099540950223,1,1.0,0.45663620093331697,0.4749999999999999
+72,32,0.5649129855057526,0.0,1.3482300638858637,0.0006724527696134616,0.03531289470424279,0.7151287006942278,1,1.0,0.5163766183525087,0.48499999999999993
+72,33,0.5639194172687318,0.0,1.3483325598939506,0.0006735413654712862,0.0359479126285888,0.7151073762272533,1,1.0,0.5797313908957732,0.49499999999999994
+72,34,0.5844684146331643,0.0,1.3469975413326831,0.000674328686984706,0.035279403987656596,0.715378959239462,1,1.0,0.6482280487772145,0.5049999999999999
+72,35,0.6011210126865378,0.0,1.2099376071172827,0.0006234790262920863,0.03249520659175318,0.7424641082894515,1,1.0,0.670403375621793,0.5549999999999999
+72,36,0.6268990390640535,0.0,1.2032252912375072,0.000622142707651595,0.03254090451602807,0.7437459970916207,1,1.0,0.7229967968801786,0.565
+72,37,0.6264564370258056,0.0,1.2254420003948683,0.0006251893618943585,0.032453298918679555,0.7394877093814941,2,1.0,0.7548547900860186,0.615
+72,38,0.5542499318773405,0.0,1.296205763055149,0.0006679724658169047,0.035044919689107314,0.7256092162711824,2,1.0,0.6808331062578018,0.595
+72,39,0.5172182940371062,0.0,1.3058723988401884,0.0006650692573321771,0.03482233715546855,0.7236815540056437,2,1.0,0.6240609801236874,0.575
+72,40,0.6696228282444594,0.0,1.312409719652491,0.0006634105537635809,0.03480781362796697,0.7223730640561038,2,1.0,0.6654094274815315,0.5449999999999999
+72,41,0.5353958266831572,0.0,1.3212272398640525,0.0006846288885711319,0.03566843927844545,0.7205927016993832,2,1.0,0.6179860889438575,0.5249999999999999
+72,42,0.6659073829752893,0.0,1.3256960119559125,0.0006808271489656746,0.034844788914348425,0.719693611792489,2,1.0,0.6530246099176309,0.4949999999999999
+72,43,0.609805173388475,0.0,1.331761120092464,0.0006992400949486898,0.03606244615841978,0.7184609912863232,2,1.0,0.66601724462825,0.4899999999999999
+72,44,0.6320168255667916,0.0,1.3419855228736828,0.0006941683836626431,0.03541480805159369,0.7163903014957668,2,1.0,0.7067227518893056,0.47999999999999987
+72,45,0.5447370376606027,0.0,1.3337297425624348,0.0006906582807790474,0.03601121738461517,0.7180660921214664,2,1.0,0.6491234588686757,0.45999999999999985
+72,46,0.6281150279309363,0.0,1.3374812990032956,0.0006866336533118086,0.035388644601406276,0.7173076113640302,2,1.0,0.6937167597697879,0.44999999999999984
+72,47,0.5434761695331606,0.0,1.3291216050555699,0.0006828385969112429,0.03559059566047651,0.7190012181649247,2,1.0,0.6449205651105353,0.4299999999999998
+72,48,0.6293696165182143,0.0,1.3316234570908467,0.000679585856312237,0.03544398187290165,0.7184967867719914,2,1.0,0.6978987217273813,0.4199999999999998
+72,49,0.5415449670397794,0.0,1.323121091484165,0.0006752907023773497,0.03490306788600147,0.7202149999271339,2,0.9922916596037177,0.6474762872615943,0.3999999999999998
+73,0,0.08508274199915755,0.0,1.3701948298577014,0.0007001273874130771,0.03632908796726536,0.710621601979539,1,0.10369537378921567,0.1626312039097736,0.06
+73,1,0.18715862557839896,0.0,1.3791431420740747,0.0006965217540159303,0.03633083940345212,0.7087795102923814,1,0.1587193064899813,0.2386895610230184,0.06999999999999999
+73,2,0.19571442942419395,0.0,1.37047787136626,0.0007000342267203356,0.03634409540986715,0.7105634325865191,1,0.18859030372309235,0.2656927437370388,0.12
+73,3,0.26164443361050693,0.0,1.3699017534604492,0.0006983295899956389,0.036212773784965874,0.7106826053628058,1,0.2530754788058871,0.3102267200948215,0.12
+73,4,0.27375648366085426,0.0,1.3845805534991151,0.0007020248280803735,0.03677794911358963,0.707653618403183,1,0.291492918443997,0.372446540684851,0.13
+73,5,0.33587024220258005,0.0,1.3842785285014658,0.0007027667670680103,0.03678224339221725,0.7077157904619068,1,0.3617984092129133,0.4308026632602014,0.13
+73,6,0.32784407146256134,0.0,1.3797975423219946,0.0006960344994607364,0.036535815052014996,0.7086446175588327,1,0.39395103996352315,0.4665373582510941,0.18
+73,7,0.33687585518867436,0.0,1.3811582230808426,0.0006965970266976718,0.036436413673902907,0.7083633691525462,1,0.4461218059660842,0.5024440770018165,0.22999999999999998
+73,8,0.4040802720706148,0.0,1.3833538332765027,0.0006999199837743079,0.03645034113207031,0.7079082080451001,1,0.5092926045565351,0.5527595349194251,0.24
+73,9,0.42329222912179343,0.0,1.3823191264998722,0.0007000794611111001,0.03646823872646549,0.7081220467289865,1,0.5551719234435022,0.5966068530552256,0.29
+73,10,0.3712269753085893,0.0,1.381796877581004,0.0006986261551258899,0.03642333397297083,0.708230576747646,1,0.5784307567773579,0.5625873681217135,0.35
+73,11,0.49272195234212124,0.0,1.3633650155045136,0.0007052434201415427,0.036438386191114565,0.712021954105111,1,0.6389395618417174,0.6303103523250672,0.35
+73,12,0.4838126121054789,0.0,1.2997642644661573,0.0008122356182038218,0.03656499600937311,0.7248426067864916,1,0.6730382754440967,0.6608307190001502,0.39999999999999997
+73,13,0.5254378725233055,0.0,1.313367956863021,0.0007961543243617628,0.036759556393739574,0.7221275790158629,1,0.7220676704780582,0.7090472928532837,0.41
+73,14,0.5359916161724999,0.0,1.3089330543991062,0.0008037499204555729,0.036814696178522385,0.7230135641076101,1,0.7709369413000751,0.7538789557249123,0.42
+73,15,0.5655828367926783,0.0,1.3041041006070118,0.0008098280511603774,0.036524684446640185,0.7239771628537005,1,0.7983961628923237,0.8204805992678834,0.43
+73,16,0.5969876623424182,0.0,1.2965413383946895,0.0006561430278377248,0.03503948220352755,0.7255471091830363,2,0.8290060902676025,0.8894517691625246,0.44
+73,17,0.54465645744238,0.0,1.3481023946295805,0.0006843988323525667,0.03555859434787878,0.7151498416621772,2,0.8383980579122018,0.8373904572436981,0.42
+73,18,0.5152504699419411,0.0,1.3547396986717781,0.0006834839883190062,0.03621764896515954,0.7137961980372386,2,0.8474754392265021,0.7954468873755512,0.39999999999999997
+73,19,0.5095520717539375,0.0,1.2686314712077813,0.0007069789872731094,0.03421773895267496,0.7310496466168859,2,0.8716770308710631,0.7482170364968848,0.37999999999999995
+73,20,0.6107143849702108,0.0,1.2850786516610504,0.000697778802704992,0.035314264295285155,0.7278072498241874,2,0.9190319496468903,0.7635106753126643,0.37499999999999994
+73,21,0.5438792877918205,0.0,1.2947790057975699,0.0006910059670767078,0.034713548150787366,0.7258840267196791,2,0.9347945957165469,0.7223372643034305,0.3549999999999999
+73,22,0.6474026501199293,0.0,1.308393701671155,0.0006847929459323474,0.035238874825658614,0.7231691963946962,2,0.9925332761179401,0.766720011595501,0.3449999999999999
+73,23,0.5636483906826082,0.0,1.296997643228341,0.0006783906758396044,0.03511206730395099,0.7254473743402804,2,1.0,0.7121613022753607,0.3249999999999999
+73,24,0.523468678737938,0.0,1.2089102016743452,0.0006712715599748004,0.033480189356499726,0.7426422424815462,2,1.0,0.6448955957931268,0.3049999999999999
+73,25,0.6258746107715332,0.0,1.2334001933757242,0.0006619732952440113,0.03374972294855889,0.737937452097853,2,1.0,0.6862487025717772,0.2949999999999999
+73,26,0.5414205908078682,0.05,1.2452554441519965,0.0006931378225651936,0.034007088219954705,0.7207848950882201,2,1.0,0.6380686360262275,0.27499999999999986
+73,27,0.507076357093661,0.0,1.2726995716948206,0.0006852496669369765,0.03431258832855788,0.730257601943975,2,1.0,0.5902545236455368,0.25499999999999984
+73,28,0.6130570564180967,0.0,1.262077385256487,0.000851746176193399,0.03623076597570497,0.7322795738233716,2,1.0,0.6435235213936557,0.24499999999999983
+73,29,0.6089923678293175,0.0,1.2577025690339882,0.0006875559922123844,0.03426905111411896,0.7332006097513638,2,1.0,0.6966412260977252,0.23499999999999982
+73,30,0.544793479807529,0.0,1.2657433723372384,0.0007163590164977909,0.03463861596432618,0.7316134305583644,2,1.0,0.6493115993584302,0.21499999999999983
+73,31,0.6315789784155458,0.0,1.286197676134684,0.0007055355200064073,0.03469377764792198,0.727582435408224,2,1.0,0.7052632613851527,0.20499999999999982
+73,32,0.5494385057527527,0.0,1.291116677597377,0.0007308767827321212,0.03561807006170045,0.7265962997529054,2,1.0,0.6647950191758424,0.18499999999999983
+73,33,0.6197300999695222,0.0,1.3087273235798325,0.0007198038700992153,0.035220719646608736,0.7230883814482096,2,1.0,0.6991003332317408,0.17999999999999983
+73,34,0.6447835093548269,0.0,1.3129280528153888,0.0007110325060244724,0.03577709386402952,0.7222499942518574,2,1.0,0.7492783645160895,0.16999999999999982
+73,35,0.644382613701639,0.0,1.3157840365443345,0.0007303845801793252,0.035798542079560576,0.721668932146469,2,1.0,0.7812753790054633,0.1649999999999998
+73,36,0.6320514914372022,0.0,1.31816065564675,0.0007202650584514716,0.035807812379633194,0.7211953757142263,2,1.0,0.8068383047906742,0.1599999999999998
+73,37,0.725926843113228,0.0,1.2643405720293028,0.0006073412993169705,0.03364777642565879,0.731931570613401,2,1.0,0.8530894770440932,0.1299999999999998
+73,38,0.6916327639614506,0.0,1.2703217836082334,0.0006176534277552404,0.03314633186260348,0.7307523259422536,2,1.0,0.9054425465381685,0.11999999999999982
+73,39,0.6929837442653659,0.0,1.2769357123476257,0.0006279209655113533,0.03388941362668155,0.7294449762180545,2,1.0,0.9432791475512199,0.11499999999999981
+73,40,0.72,0.0,1.2656637827266333,0.0006162710519862146,0.0335448656840406,0.7316683604224327,2,1.0,1.0,0.10499999999999982
+73,41,0.7,0.0,1.2704371153619014,0.0006271656572002587,0.033230513041667464,0.7307258900858976,2,1.0,1.0,0.09499999999999982
+73,42,0.7,0.0,1.272277004208324,0.0006371121739909694,0.0341268420760846,0.7303597920689482,2,1.0,1.0,0.08499999999999983
+73,43,0.7,0.0,1.2717900834858777,0.0006457725517380029,0.03333515064171152,0.7304522624359449,2,1.0,1.0,0.07499999999999983
+73,44,0.71,0.0,1.2694593087508372,0.000652850208828403,0.034250395715278006,0.7309081421143276,2,1.0,1.0,0.06999999999999983
+73,45,0.72,0.0,1.2609573025070684,0.0006425784110351946,0.032946277769965074,0.7325810670844727,2,1.0,1.0,0.059999999999999824
+73,46,0.6357272304974073,0.0,1.2577922533180865,0.0006495341211350228,0.033755621831305496,0.733197941414495,2,1.0,0.9524241016580247,0.03999999999999983
+73,47,0.6000093008772098,0.0,1.2793653525335493,0.0006493136116067976,0.03384258725632026,0.7289567539679296,2,1.0,0.9000310029240327,0.019999999999999827
+73,48,0.7058412693451089,0.0,1.2981063668655026,0.0006514951184548807,0.034255496595285186,0.7252372097928351,2,1.0,0.9528042311503632,0.009999999999999827
+73,49,0.6991442374984391,0.0,1.293845314543029,0.000653833674685096,0.03441492730626273,0.7260845563911585,2,1.0,0.9971474583281308,0.0
+74,0,0.15939090632988356,0.0,1.370199643522675,0.0007014293365570471,0.03627629912692613,0.7106200766402707,1,0.12759300831877243,0.21577784472771075,0.05
+74,1,0.1998829578765121,0.0,1.3697165524568464,0.0006999729786352647,0.03641628724652796,0.7107200078298836,1,0.16694518423512625,0.2715071446473932,0.060000000000000005
+74,2,0.26458785756033004,0.0,1.3688839786324596,0.0007003210463227289,0.03630180404085892,0.7108910094669495,1,0.239678590067104,0.33566783678947887,0.060000000000000005
+74,3,0.25809186743648205,0.0,1.3845540832284529,0.0007024454672866576,0.036724672831934924,0.707658920500235,1,0.27993567193174296,0.3670479408679068,0.11000000000000001
+74,4,0.25370615638689825,0.0,1.3848190030479413,0.0007016814879642482,0.0367803971950492,0.7076044275984961,1,0.31408229002981475,0.37925784958821046,0.16000000000000003
+74,5,0.22198308512061551,0.0,1.3848716009355182,0.000701000690557367,0.036760820346628,0.7075938266761863,1,0.34573707228733247,0.33658369940016386,0.22000000000000003
+74,6,0.20108019412774814,0.0,1.3855071125987122,0.0007007628857766839,0.0367042556181464,0.7074624173473131,1,0.37902963551531565,0.2947327389912922,0.28
+74,7,0.31820651663927,0.0,1.3858856940573618,0.000700582554983522,0.03663866762280775,0.7073841348771144,1,0.4248455296775431,0.3650352708404331,0.29000000000000004
+74,8,0.3340322113579617,0.0,1.3836910388209325,0.0007007349063248855,0.03640394886220474,0.7078381407009422,1,0.4637663580154153,0.40571328684188784,0.34
+74,9,0.2796078329339763,0.0,1.3474040423391316,0.0007014484114094288,0.03636778124150676,0.7152851376895382,1,0.48714838643532704,0.36368632560537284,0.4
+74,10,0.39523558332517444,0.0,1.374474755753248,0.0007023919503798618,0.03637893397068061,0.7097397584753506,1,0.5491866192552244,0.4100675552861531,0.4
+74,11,0.40842801247019345,0.0,1.350301988823438,0.0006980132489103133,0.03623448489200752,0.7146959970786443,1,0.5974503772452998,0.46440126811446186,0.41000000000000003
+74,12,0.4638422661373869,0.0,1.3526922310638572,0.0007088944196366632,0.036049938069670294,0.7142039211857983,1,0.6458911119531687,0.5259345898459261,0.41000000000000003
+74,13,0.463362478179407,0.0,1.3418709385056267,0.0006960322764064242,0.035417600679440116,0.7164128242679436,1,0.6867484669605539,0.5766683824773773,0.46
+74,14,0.4050361289189994,0.0,1.3400500380540197,0.000691044518588141,0.03569134799772679,0.7167846476504283,1,0.7052030109314031,0.5273835836433611,0.52
+74,15,0.4802797522331952,0.0,1.3502991402705178,0.0006893563554985363,0.03578385913819435,0.7147001082754121,1,0.747076941200203,0.5626760760437473,0.5700000000000001
+74,16,0.5490133425476587,0.0,1.3479842783205203,0.0006853535871029577,0.03575693936481408,0.7151735136208517,1,0.8090322283317135,0.6195068754385299,0.5700000000000001
+74,17,0.5728862261504826,0.05,1.13878737179255,0.0005693675832983186,0.030491618052484563,0.7417480349790965,1,0.8738800244864057,0.690094058600802,0.5700000000000001
+74,18,0.6207199822515242,0.05,1.149023896618425,0.0005861048879433157,0.0312983333220821,0.7397758564856004,1,0.9441369831167941,0.7675734605354878,0.5800000000000001
+74,19,0.5526129542788775,0.1,1.174525721362101,0.0005875608836389826,0.030983036738961866,0.719967248512354,2,0.9571194182672552,0.725403859617794,0.6400000000000001
+74,20,0.6512958696996534,0.0,1.2888649384350337,0.0006898937402933863,0.03439746097022347,0.7270596546714546,2,1.0,0.7709862323321779,0.6300000000000001
+74,21,0.6515023022680684,0.0,1.2657380293152198,0.0006781601747071119,0.034101365632302996,0.7316294804686263,2,1.0,0.8050076742268947,0.6250000000000001
+74,22,0.6462394281098642,0.0,1.3398141204990621,0.0006860569332672638,0.03537632321352292,0.7168345622987307,2,1.0,0.854131427032881,0.6200000000000001
+74,23,0.5951641945860814,0.0,1.3393995240345742,0.0006821354679372345,0.03563739255678826,0.7169203023633914,2,1.0,0.8172139819536047,0.6000000000000001
+74,24,0.5616186345906014,0.0,1.3488061106848759,0.0006814518647622323,0.03544943165529952,0.7150076665974626,2,1.0,0.7720621153020049,0.5800000000000001
+74,25,0.6612020794019201,0.0,1.283416969560573,0.0006647763136057138,0.03449295246007408,0.7281493765588181,2,1.0,0.8040069313397338,0.5700000000000001
+74,26,0.7253202588615453,0.0,1.3333684367848782,0.0006830684174320053,0.035465253027023844,0.7181423042920901,2,1.0,0.8510675295384844,0.54
+74,27,0.5925559895326808,0.0,1.325594576620933,0.0006803766407052069,0.03552853976921909,0.7197142561232344,2,1.0,0.8085199651089362,0.52
+74,28,0.7231001085210786,0.0,1.3372030934858896,0.0006785375249703425,0.03539055344005595,0.7173673047605185,2,1.0,0.8436670284035955,0.49
+74,29,0.6744099468999727,0.0,1.3289244502580408,0.0006745970080421252,0.035419169755040794,0.7190443792342814,2,1.0,0.8813664896665758,0.485
+74,30,0.7543377116431642,0.0,1.3284680380996825,0.000671738873438329,0.03511340939247593,0.7191377287647273,2,1.0,0.9477923721438806,0.45499999999999996
+74,31,0.7164328533201689,0.0,1.3195759868850905,0.0006674440015474281,0.03474631074025589,0.7209319568351651,2,1.0,0.98810951106723,0.44499999999999995
+74,32,0.77,0.0,1.3280653978627024,0.0006829343760855209,0.035579261753970824,0.7192145245933366,2,1.0,1.0,0.4149999999999999
+74,33,0.71,0.0,1.31853096453169,0.0006789055959338832,0.03486334255064183,0.7211375455732141,2,1.0,1.0,0.4099999999999999
+74,34,0.631948170295487,0.0,1.3184312874546227,0.0006748171699936681,0.0353486497734294,0.7211592342853629,2,1.0,0.93982723431829,0.3899999999999999
+74,35,0.6008947531038196,0.0,1.331158856145259,0.0006734038923563166,0.035221751592747486,0.718593247229391,2,1.0,0.9029825103460654,0.3699999999999999
+74,36,0.7536093813704867,0.0,1.3408239718504635,0.0006733987458425485,0.03581071987271901,0.7166346760036533,2,1.0,0.9453646045682894,0.33999999999999986
+74,37,0.7182595197563909,0.0,1.3323315010336003,0.0006685380982047614,0.03497722108838443,0.7183580266318494,2,1.0,0.9941983991879698,0.32999999999999985
+74,38,0.6300135171297458,0.0,1.2757797959483452,0.0006198820586464367,0.033322480524858984,0.7296762129314353,2,1.0,0.9333783904324862,0.30999999999999983
+74,39,0.7132118255575167,0.0,1.2910919404689043,0.0006418048779036974,0.03448767518572112,0.7266366010336417,2,1.0,0.9773727518583891,0.2999999999999998
+74,40,0.71,0.0,1.3029300056598472,0.0006427702484411898,0.03465011204020375,0.7242784531145577,2,1.0,1.0,0.2949999999999998
+74,41,0.69,0.0,1.2900327939057312,0.0006332996499338196,0.033868634121015914,0.7268503122549613,2,1.0,1.0,0.2899999999999998
+74,42,0.6320603019890727,0.0,1.2766037558985635,0.0006233357305669857,0.034201214376135644,0.7295122940525193,1,1.0,0.9402010066302426,0.2699999999999998
+74,43,0.6033968063828131,0.0,1.3133016599412706,0.00065809948689715,0.034469777754552296,0.7221962808711054,1,1.0,0.9113226879427105,0.3299999999999998
+74,44,0.5912950871092346,0.0,1.3029318378364851,0.0006516429597442492,0.035001946299495566,0.7242745434669645,1,1.0,0.8709836236974486,0.3899999999999998
+74,45,0.5746577080140871,0.0,1.3365880013580287,0.0007038930536757984,0.03585386754818628,0.7174817198043808,1,1.0,0.8155256933802906,0.4499999999999998
+74,46,0.6540830000557765,0.0,1.3383654522189379,0.0007153971815594139,0.035896461605148686,0.7171166208157891,1,1.0,0.8469433335192551,0.4999999999999998
+74,47,0.6873035169306664,0.0,1.3321257248301837,0.0007156270479067024,0.035846648932175644,0.7183806046250832,1,1.0,0.9243450564355546,0.5099999999999998
+74,48,0.6116504336830031,0.0,1.3321478115564094,0.0007071865683574267,0.03538246243594032,0.7183795514455991,1,1.0,0.872168112276677,0.5699999999999998
+74,49,0.711387828125952,0.0,1.333531277374574,0.0007187602338119038,0.03592382942500287,0.718094891623236,1,1.0,0.9379594270865066,0.5699999999999998
+75,0,0.1735154833560215,0.0,1.368864444101772,0.000703120286680768,0.036239258924480044,0.7108938736649528,1,0.15455114173807122,0.23140861249232184,0.05
+75,1,0.17685136977484622,0.0,1.3683732011581706,0.0007014842444943455,0.03642837626497065,0.7109954976593702,1,0.18969158437248215,0.26819771748159155,0.1
+75,2,0.269703267026907,0.0,1.3678207655737653,0.000699953247791568,0.036252647030881345,0.7111096284216738,1,0.26305117732323907,0.3254511832125779,0.1
+75,3,0.18350668048033233,0.0,1.3859545065814551,0.0007004443903542005,0.03673499900842735,0.7073699482437349,1,0.3015966007825745,0.25982623402143756,0.16
+75,4,0.16135116352102427,0.0,1.3861378644024147,0.0007003288543499436,0.03678449626409829,0.707332039987598,1,0.34102945321896133,0.20663618298129266,0.22
+75,5,0.26278399608210373,0.0,1.3862086940335865,0.0007002402350827928,0.03677922500062193,0.7073174137795539,1,0.40825697742459355,0.23298017994498676,0.27
+75,6,0.3324269702230255,0.0,1.3836321315687796,0.0006997187740398296,0.03664478748434109,0.7078507430349245,1,0.4742693183207442,0.28810902936921673,0.27
+75,7,0.330634230426685,0.0,1.3837703895785882,0.0007008565900268716,0.03659646106457959,0.7078216801003466,1,0.5165709940177821,0.3327812750682043,0.32
+75,8,0.39973309906996124,0.0,1.3835134841588217,0.0006998241774056792,0.0364622450724314,0.7078752348927775,1,0.5819432353442665,0.38684322233156,0.32
+75,9,0.41185226894645655,0.0,1.3833777430347447,0.000700831639895333,0.03636202569247938,0.7079028870821609,1,0.627697149900828,0.4405275549372226,0.33
+75,10,0.426876751941065,0.0,1.3760444370800813,0.0007008794790171941,0.03648308707509834,0.7094169067743177,1,0.6654504327289769,0.4798970016197438,0.38
+75,11,0.42617479370265454,0.0,1.3030851768640646,0.0006707382457982998,0.03492515114836831,0.7242362931850147,1,0.7024648454103349,0.5010403260301247,0.43
+75,12,0.4921907945259045,0.0,1.303052580951899,0.0006678932604284259,0.034534536776835614,0.7242439395025788,1,0.7478089183222663,0.5681922437103709,0.44
+75,13,0.5048345933904345,0.0,1.3110881718082898,0.0006841404352217685,0.034863142931368364,0.7226297129109471,1,0.787203692494696,0.5977110033909697,0.49
+75,14,0.44641098835756715,0.0,1.3100095251187247,0.0006792622557491036,0.035045303165037504,0.7228478152061888,1,0.7919014075905995,0.5641516523361911,0.55
+75,15,0.5181826792022145,0.0,1.3241064862597913,0.0006765778809999527,0.03499529398592538,0.7200158755510422,2,0.8337675938123171,0.5878800712263452,0.6000000000000001
+75,16,0.5323527336815989,0.0,1.2589493845935629,0.0007151636767250781,0.034161971270956625,0.7329458324247738,2,0.8798344005908805,0.6147023115826359,0.5950000000000001
+75,17,0.5553148772551241,0.0,1.1994762217910702,0.0006104664842329526,0.03209146060667519,0.7444643136631975,1,0.9258699097414145,0.6375346961520969,0.5900000000000001
+75,18,0.5043932833339044,0.0,1.231926611007673,0.0006294344814735904,0.033066510389511465,0.7382348980890598,2,0.9453209886654849,0.5784364576699491,0.6500000000000001
+75,19,0.5911979947426377,0.0,1.190203427501451,0.0006047845382138306,0.031971519743145285,0.7462264937324784,2,1.0,0.6039933158087923,0.6450000000000001
+75,20,0.5131685404167701,0.05,1.1760167902053575,0.000599993175143799,0.03218573768055842,0.7345405734087824,2,1.0,0.5438951347225669,0.6250000000000001
+75,21,0.6468002433396313,0.0,1.0688468223598606,0.0004689919877299747,0.027602507382863066,0.7685630630435017,2,1.0,0.5893341444654375,0.5950000000000001
+75,22,0.5993683922398259,0.05,1.0806346483804852,0.0004805202767857289,0.028141504102685688,0.7527632353560627,2,1.0,0.6312279741327528,0.5900000000000001
+75,23,0.6231167905655207,0.0,1.163388623433645,0.0006121431776083331,0.032149870081973494,0.7512681226192013,2,1.0,0.6770559685517359,0.5800000000000001
+75,24,0.6315851929561844,0.0,1.1356867364188348,0.0005898798890436952,0.03085037758751476,0.7564167124322193,2,1.0,0.738617309853948,0.5750000000000001
+75,25,0.7002542693830062,0.0,1.1516207108936758,0.0005971807224565359,0.03152709022928557,0.7534661761660848,2,1.0,0.7675142312766873,0.545
+75,26,0.5667058318555175,0.05,1.1710040815854121,0.0006451685363925568,0.032267329526948114,0.7354992787624414,2,1.0,0.722352772851725,0.525
+75,27,0.6350590151800194,0.0,1.2058754412666286,0.0006418970533247661,0.03304255257156674,0.7432330447352018,2,1.0,0.7501967172667315,0.52
+75,28,0.626212174501784,0.05,1.2083054269388092,0.0006377392317539037,0.03278433603356888,0.7281821588086443,2,1.0,0.7873739150059469,0.515
+75,29,0.6379090402507809,0.05,1.2232953239916338,0.0006433493490872605,0.03292567024322947,0.7252028016940792,2,1.0,0.826363467502603,0.51
+75,30,0.649581073632846,0.0,1.32333255478922,0.0006571916565161507,0.03534853583965253,0.7201796816852578,2,1.0,0.8652702454428203,0.505
+75,31,0.6947072314241527,0.0,1.3193371140475787,0.000655865155070215,0.03461511390303287,0.720984671462019,2,1.0,0.9156907714138421,0.495
+75,32,0.6128279847747018,0.0,1.3311392789655008,0.0006665053234209318,0.035447087954804446,0.718599996034285,2,1.0,0.8760932825823395,0.475
+75,33,0.6951277225765742,0.0,1.3395811129760906,0.0006684821367230462,0.034953920786121695,0.7168889904085506,2,1.0,0.9170924085885807,0.46499999999999997
+75,34,0.7614606039295797,0.0,1.3485450155759506,0.0006780649576527114,0.03599937249120894,0.7150622475603386,2,1.0,0.9715353464319325,0.43499999999999994
+75,35,0.7085132473077995,0.0,1.3407195231231595,0.0006738698872044608,0.035272148836072104,0.7166556945257069,2,1.0,0.9950441576926652,0.42999999999999994
+75,36,0.72,0.0,1.340046641594633,0.0006721110781356414,0.03573737103999297,0.716793024215817,2,1.0,1.0,0.41999999999999993
+75,37,0.637760625305945,0.0,1.3477771227271496,0.0006825439999963215,0.035603050203118776,0.7152168539329679,2,1.0,0.9592020843531502,0.3999999999999999
+75,38,0.7085465891220271,0.0,1.355541578894261,0.0006825753991155711,0.03592145998819162,0.713632724255784,2,1.0,0.9951552970734239,0.3949999999999999
+75,39,0.77,0.0,1.3541657906121922,0.0006804519285029957,0.03583831469488097,0.7139146665484827,2,1.0,1.0,0.3649999999999999
+75,40,0.6343537972897009,0.0,1.347731250964489,0.0006770111514923292,0.03527588673526757,0.7152284509097648,2,1.0,0.9478459909656699,0.34499999999999986
+75,41,0.6008919660588226,0.0,1.3543491606702542,0.0006785739328534824,0.0359581536434649,0.7138779806694582,2,1.0,0.9029732201960752,0.32499999999999984
+75,42,0.6889894214500778,0.0,1.2211762901291594,0.000570039087374971,0.032323577591796646,0.7403298448701203,2,1.0,0.9299647381669264,0.31999999999999984
+75,43,0.766356294545949,0.05,1.2056604645420972,0.0005557354894434757,0.031022286148327676,0.7287377898691599,1,1.0,0.9878543151531635,0.2899999999999998
+75,44,0.7,0.1,1.1423466601944012,0.000527719868826963,0.03020438426645401,0.7264326440254067,1,1.0,1.0,0.3399999999999998
+75,45,0.6799999999999999,0.0,1.27525639421662,0.0007520780110494971,0.03494380216517634,0.7297272992792913,1,1.0,1.0,0.3899999999999998
+75,46,0.73,0.0,1.2609492359674552,0.0007582046279017983,0.03476772766190994,0.7325373413485878,1,1.0,1.0,0.3899999999999998
+75,47,0.6351693940262162,0.0,1.284417573585284,0.0007441348153051273,0.03552593812916983,0.7279198307511777,1,1.0,0.950564646754054,0.4499999999999998
+75,48,0.6932315520347978,0.0,1.2848073789729444,0.0007594700460151347,0.03535914015320287,0.7278365464564331,1,1.0,0.9774385067826595,0.4999999999999998
+75,49,0.71,0.0,1.2779314007073983,0.0007615304139244349,0.035401094910912076,0.7291956629429768,1,1.0,1.0,0.5099999999999998
+76,0,0.213522103685027,0.0,1.3675927960915524,0.0007023401249463695,0.03612928085526019,0.7111554779676535,1,0.16502282759041287,0.2525470467612751,0.0
+76,1,0.22855073648002547,0.0,1.3672392953972006,0.0007038964119980909,0.036455631120049334,0.7112274470447157,1,0.2180117426297066,0.30748875519876057,0.0
+76,2,0.27398680563609307,0.0,1.3861170920330679,0.0007002976602493342,0.036661015152488145,0.7073363530434897,1,0.29140719612081156,0.37331428997936345,0.0
+76,3,0.29283242838942897,0.0,1.3858907795367537,0.0007003903148514334,0.03673042202508018,0.7073831618077977,1,0.34455065610699603,0.4074656625066013,0.05
+76,4,0.3619634608985519,0.0,1.3821337788927084,0.000697639395018575,0.036634061793391196,0.7081613624332885,1,0.41242949331411227,0.4587104607953755,0.05
+76,5,0.2874113576602725,0.0,1.3820921140657698,0.0006986467238507762,0.03663107842077796,0.7081695568204288,1,0.44989099860463605,0.4331650271621662,0.11
+76,6,0.3582956295868047,0.0,1.3835163314403895,0.0006987871443117035,0.03663211377694446,0.7078750750011774,1,0.4814964921233242,0.46590619114547094,0.16
+76,7,0.4191487988886563,0.0,1.382900043046037,0.0006980267521537562,0.03649647335410123,0.7080028140874711,1,0.5229286045362771,0.5204126243365311,0.16
+76,8,0.4143874008236984,0.0,1.3833998592581893,0.0006989818202841956,0.03648564314500129,0.707899078952787,1,0.5673213892467912,0.5527497152910718,0.21000000000000002
+76,9,0.41734805029249106,0.0,1.3825764616830014,0.000697924433811049,0.03632720080411818,0.7080697474224257,1,0.611419407691949,0.5778375253343632,0.26
+76,10,0.438207541752914,0.0,1.3852204906383996,0.0006999768650315605,0.03650628544145089,0.7075220582229647,1,0.644247214229275,0.6090700559088926,0.31
+76,11,0.4029684738961501,0.0,1.3833985193906586,0.0006981710076725503,0.0365572712132328,0.7078996913238786,1,0.6641414036247224,0.5683966087583243,0.37
+76,12,0.3790248977534825,0.0,1.3104486443620769,0.000660899473936857,0.03478305729939653,0.7227671928901178,1,0.685938179748938,0.5298217828045142,0.43
+76,13,0.5183214735242712,0.0,1.3222883724224122,0.0006633885696082141,0.034841069178251124,0.7203875614042717,1,0.7388239829230746,0.5991102650039837,0.43
+76,14,0.4418905807990802,0.0,1.3179867108066385,0.0006620776509562687,0.034868959004789216,0.7212537472949027,1,0.78191704769712,0.5607320470169608,0.49
+76,15,0.5585582042712507,0.0,1.3287880150376499,0.0006653237551891119,0.03497720182348577,0.7190756875114719,1,0.8451464967277552,0.6091897680551214,0.49
+76,16,0.47502356966353104,0.05,1.2438549850399443,0.0006446049724033189,0.03317518130090408,0.7210861783220481,1,0.8821005411996851,0.5542946008121377,0.55
+76,17,0.5950903309753184,0.0,1.3228872012274038,0.0006712914844271318,0.03506830632321013,0.720263739197273,1,0.9548890517991081,0.6029305428187683,0.55
+76,18,0.6083592135870566,0.05,1.2241314757813364,0.0006211148492062492,0.03283284687611437,0.7250450040946074,1,1.0,0.6611973786235219,0.56
+76,19,0.648695670542517,0.0,1.2521941550244988,0.0006237715996412116,0.033231002969903875,0.734301656441976,2,1.0,0.7289855684750566,0.56
+76,20,0.5535160125620603,0.05,1.2173828322157358,0.0006404513499351099,0.0325334371269139,0.7263806466808006,2,1.0,0.678386708540201,0.54
+76,21,0.6233139174802886,0.0,1.2459582946863368,0.0006392732926776128,0.03353121334582544,0.7355104797204952,2,1.0,0.7110463916009621,0.535
+76,22,0.6501990306228681,0.05,1.235815180007833,0.0006361098627860803,0.03289462877649026,0.7227036783331328,2,1.0,0.7673301020762271,0.525
+76,23,0.7136292613084827,0.05,1.2337203136845716,0.000634734805258421,0.03297306863274326,0.7231238506742613,2,1.0,0.8120975376949425,0.495
+76,24,0.6783425726389181,0.05,1.3445332331467301,0.0006776648405138507,0.03557496911340718,0.7003807129300827,2,1.0,0.8611419087963939,0.485
+76,25,0.6733931153612183,0.0,1.3505258967971527,0.0006873254916337638,0.03594764181409402,0.7146546977745261,2,1.0,0.9113103845373941,0.475
+76,26,0.6904367369183693,0.0,1.3527444263431394,0.0006965651268892762,0.035996248829314244,0.7141983004541268,2,1.0,0.9347891230612312,0.47
+76,27,0.6852254726212184,0.0,1.3513913576431174,0.0006915239075762569,0.035962964423676934,0.7144764643588009,2,1.0,0.9840849087373947,0.46499999999999997
+76,28,0.69,0.0,1.3489982041859607,0.0006868040909523024,0.035956216804068665,0.7149663403112452,2,1.0,1.0,0.45999999999999996
+76,29,0.77,0.0,1.3458085510794329,0.0006821913382366276,0.03540166612101072,0.7156177895708767,2,1.0,1.0,0.42999999999999994
+76,30,0.75,0.0,1.340992737337403,0.00068175588214098,0.035513487414129304,0.7165970092235966,2,1.0,1.0,0.3999999999999999
+76,31,0.71,0.0,1.3353507998205802,0.0006808192853912317,0.03512577481822434,0.7177417842244039,1,1.0,1.0,0.3949999999999999
+76,32,0.6799999999999999,0.0,1.2269628536952926,0.0008611152941622649,0.03584980175576359,0.7391036402639293,1,1.0,1.0,0.4449999999999999
+76,33,0.6799999999999999,0.0,1.2156449722840281,0.0008577284480559184,0.0362373938123811,0.7412814470035816,1,1.0,1.0,0.4949999999999999
+76,34,0.73,0.0,1.2034183503940337,0.0008523300225837855,0.035038823182239345,0.7436214406918367,1,1.0,1.0,0.4949999999999999
+76,35,0.6405932483245983,0.05,1.2284244144772243,0.0008291481391236806,0.03617985825623461,0.7241052473838995,1,1.0,0.9686441610819944,0.5549999999999999
+76,36,0.73,0.0,1.2338029387361051,0.0008537212602122707,0.036269799533797976,0.7377853757793594,1,1.0,1.0,0.5549999999999999
+76,37,0.71,0.05,1.2490522051064818,0.00083540706467526,0.03641849089176175,0.7199627774679348,1,1.0,1.0,0.565
+76,38,0.7,0.0,1.2729901654598201,0.0008100592781171699,0.03650343780635818,0.7301511767781345,2,1.0,1.0,0.615
+76,39,0.636141416373337,0.0,1.3366513159390196,0.000699636394481683,0.035802014119903094,0.7174706113628135,2,1.0,0.9538047212444568,0.595
+76,40,0.605132337384066,0.0,1.3465745670179299,0.0006948999940522014,0.03569260354267524,0.7154566983249093,2,1.0,0.9171077912802205,0.575
+76,41,0.7557387150478587,0.0,1.3536579421084085,0.0006916272457117915,0.03615086301725566,0.7140138145845867,2,1.0,0.9524623834928624,0.5449999999999999
+76,42,0.7496981445205364,0.0,1.345310063391044,0.0006881608948362725,0.03543360759904045,0.7157167961811038,2,1.0,0.9989938150684547,0.5149999999999999
+76,43,0.71,0.0,1.3360112470404824,0.000683744931585668,0.03601760451753467,0.7176067802164584,2,1.0,1.0,0.5099999999999999
+76,44,0.6309550335656067,0.0,1.3402528867709655,0.0006805322183025199,0.035186948967107924,0.7167477350969018,2,1.0,0.9365167785520223,0.4899999999999999
+76,45,0.710945286261278,0.0,1.3472524814441722,0.0006791570290076022,0.036079936569204954,0.7153250811120291,2,1.0,0.9698176208709268,0.47999999999999987
+76,46,0.7,0.0,1.3533648133479816,0.0006918786130805988,0.03580731286146622,0.7140735645169614,2,1.0,1.0,0.46999999999999986
+76,47,0.6383839001479281,0.0,1.3569430642855327,0.0007039798318329067,0.03622504508134021,0.7133374757046135,2,1.0,0.9612796671597608,0.44999999999999984
+76,48,0.6029924973180596,0.0,1.3622317665320876,0.0006998528493734016,0.03622727593972055,0.7122564767830752,2,1.0,0.9099749910601989,0.4299999999999998
+76,49,0.6900777285445865,0.0,1.3653799499178225,0.0006966840104331621,0.03626721133819378,0.7116121351732912,2,1.0,0.9335924284819552,0.4249999999999998
+77,0,0.1967228379801021,0.0,1.3666647873290299,0.0007055805580812652,0.036087956890338425,0.7113447352728055,1,0.1571258927951671,0.2724292516726453,0.01
+77,1,0.25327163475186776,0.0,1.3660907015338903,0.0007064232065742525,0.0364574373802858,0.7114622539949985,1,0.21053292566632442,0.33195036922884735,0.01
+77,2,0.2453606287154822,0.0,1.385753053538783,0.0007004704261578457,0.03666222030014574,0.7074116360412313,1,0.2437442667135817,0.36683378455242865,0.060000000000000005
+77,3,0.19141827842910025,0.0,1.386017385546374,0.0007002908027645451,0.036734197422211665,0.7073569958588287,1,0.2736673307055755,0.31878237560716277,0.12
+77,4,0.30894294444957826,0.0,1.3860511153283088,0.0007001363120786677,0.03677774176762799,0.7073500776023577,1,0.34153985554176125,0.36467998336653945,0.12
+77,5,0.23217083329401117,0.0,1.3857136258563365,0.0007001293174989888,0.03676378578202197,0.7074199379357925,1,0.37602178392039165,0.33521069640624696,0.18
+77,6,0.3336999808253921,0.0,1.3856775711646376,0.0006998928715584369,0.03670919098760749,0.7074274982470576,2,0.45516393672902256,0.38130867656744744,0.19
+77,7,0.35366827547036284,0.0,1.3852720031615318,0.000699765525201458,0.03659478913081947,0.7075114858547905,2,0.491909700992182,0.40499960041033056,0.185
+77,8,0.35495506590898923,0.0,1.385890914972164,0.0007001243198150077,0.03645856673951151,0.7073832438915225,2,0.5344959159349956,0.42627165110580273,0.18
+77,9,0.3057334908168934,0.0,1.3856016539274516,0.0006997233033515988,0.03635891080019572,0.7074432810713348,2,0.5453716281530356,0.3828447365444365,0.16
+77,10,0.3957278111028944,0.0,1.384435533960939,0.0006996369756800634,0.03653100853614518,0.7076846070752929,2,0.608622531020016,0.4090330841529627,0.155
+77,11,0.49680582955952834,0.0,1.3508674464715682,0.0007022306857536229,0.03631152209647032,0.7145789627462256,2,0.6780451653304813,0.4649667389795332,0.125
+77,12,0.4724128212726618,0.0,1.35289663183925,0.0007144459840318306,0.03623671605066082,0.7141599312138323,2,0.7362941686979749,0.5156995407612354,0.12
+77,13,0.48130949373182574,0.0,1.3580521638250331,0.0007087062051760411,0.03631916095610644,0.7131086915967119,2,0.7817042421965313,0.5590433632101328,0.11499999999999999
+77,14,0.5438453824855989,0.0,1.3612944046879403,0.0007038450243675168,0.036236092906862145,0.7124469125068772,2,0.8390169262743793,0.6006315276318871,0.105
+77,15,0.5637785029911304,0.0,1.2987454595715286,0.0006686304309237807,0.03478083623508158,0.7251030095457747,2,0.9059276329403938,0.655679438206642,0.095
+77,16,0.5062286972525608,0.0,1.3035826965799986,0.0006786745066654435,0.03441920260323832,0.7241337476676389,2,0.921522096223558,0.612319878581052,0.075
+77,17,0.6127201476209525,0.0,1.3200398644488212,0.0006768341899202958,0.03550187504146758,0.7208348409787542,2,0.9810658559351545,0.6644903268121612,0.065
+77,18,0.6194337592141604,0.0,1.323071664243359,0.0006855136247979642,0.03488855985562936,0.7202208397963102,2,1.0,0.6981125307138683,0.060000000000000005
+77,19,0.6017984517837887,0.0,1.3182756013048795,0.0006781903599609469,0.03549609764961779,0.721189183387568,2,1.0,0.7059948392792958,0.05500000000000001
+77,20,0.5439142285203851,0.0,1.3128638432698472,0.0006707673596612319,0.034364673892391714,0.7222790288443889,2,1.0,0.6463807617346168,0.035
+77,21,0.6280603255835582,0.0,1.3286700451814337,0.0006714084218360228,0.03543264265521521,0.7190970593399265,2,1.0,0.6935344186118606,0.025
+77,22,0.626607023851689,0.0,1.331226727691876,0.0006784273432086129,0.03535015802465957,0.7185774905267621,2,1.0,0.7220234128389634,0.02
+77,23,0.6192007171034827,0.0,1.3255226823274837,0.0006711208244645322,0.03494538675084412,0.7197324929547547,2,1.0,0.7640023903449424,0.015
+77,24,0.5620046924984003,0.0,1.3190723497214796,0.0006635564039368283,0.035274843409022406,0.721034835785994,2,1.0,0.706682308328001,0.0
+77,25,0.69508734024555,0.0,1.3340044435791154,0.0006669383531555909,0.03483270600224592,0.7180200814603357,2,1.0,0.7502911341518332,0.0
+77,26,0.6957936364842177,0.0,1.3330720128490694,0.0006705910535550459,0.03570313147470775,0.7182073512512717,2,1.0,0.8193121216140589,0.0
+77,27,0.7138859026682249,0.0,1.1584000663894582,0.00052050416457334,0.030057411456238248,0.7522332977042739,2,1.0,0.8796196755607497,0.0
+77,28,0.6799168493125625,0.0,1.1799022728999247,0.00053177179425917,0.03108603591083281,0.7481998084395877,2,1.0,0.8997228310418748,0.0
+77,29,0.7570876482081537,0.0,1.1620848257745728,0.0005161521524700598,0.030125435968331272,0.7515475254299095,2,1.0,0.9569588273605125,0.0
+77,30,0.7480646559712967,0.05,1.1809894872074198,0.0005313239964529879,0.03086246524722445,0.7335966547004188,2,1.0,0.9935488532376556,0.0
+77,31,0.71,0.05,1.203607299904816,0.0005554585508553393,0.031860263212161934,0.7291435761735813,2,1.0,1.0,0.0
+77,32,0.6323612896241118,0.0,1.1871497728799258,0.0005403539183508367,0.030492918205619206,0.7468287023504474,2,1.0,0.9412042987470395,0.0
+77,33,0.72,0.0,1.2038773898526614,0.0005527071535520205,0.03181480096397959,0.7436481699087893,2,1.0,1.0,0.0
+77,34,0.71,0.05,1.219147599023047,0.0005646127952582501,0.031235788151069765,0.7260599251461677,2,1.0,1.0,0.0
+77,35,0.69,0.05,1.2109242831137563,0.0005572066881162152,0.031752878517882735,0.7276954083488156,2,1.0,1.0,0.0
+77,36,0.6332896382261308,0.05,1.1946389243269775,0.0005427522859642918,0.031374669946630344,0.7309161234249875,2,1.0,0.9442987940871029,0.0
+77,37,0.6008968167839126,0.0,1.2187104979308265,0.0005666202625480813,0.03156221112664967,0.7408049045586927,2,1.0,0.9029893892797086,0.0
+77,38,0.7066358669211414,0.0,1.2313696344844773,0.0005875749418320976,0.03229326035661181,0.7383586898561697,2,1.0,0.9554528897371383,0.0
+77,39,0.77,0.05,1.2447934588238367,0.0005941813636136785,0.03296825061542341,0.72091768291828,2,1.0,1.0,0.0
+77,40,0.6361169865419266,0.05,1.265007569487148,0.0006059497735970222,0.033793719184598454,0.7168278161849078,2,1.0,0.9537232884730887,0.0
+77,41,0.6028366377901866,0.0,1.281982393234691,0.0006282501710847599,0.033468669424734365,0.7284477057478383,2,1.0,0.9094554593006219,0.0
+77,42,0.5840416407107318,0.0,1.2902295344224604,0.0006483943956566255,0.0348046886882457,0.7268052554933404,2,1.0,0.8468054690357727,0.0
+77,43,0.672820075505009,0.0,1.3004466702984427,0.0006733868930997455,0.03419139496333175,0.7247618820540812,2,1.0,0.8760669183500301,0.0
+77,44,0.7542739386482105,0.0,1.2879188454630235,0.0006655652657014217,0.035090972686100175,0.727257012145564,2,1.0,0.9475797954940348,0.0
+77,45,0.6183302624342284,0.0,1.2990750565054174,0.0006623056543880369,0.03388197952877145,0.7250398283497751,2,1.0,0.894434208114095,0.0
+77,46,0.5798190711828204,0.0,1.307714289213823,0.0006866626832185309,0.035570081386225694,0.7233044426930717,2,1.0,0.8327302372760683,0.0
+77,47,0.7342662490135697,0.0,1.3131930822360942,0.000709311701383602,0.03527873152933851,0.7221975153939169,2,1.0,0.8808874967118993,0.0
+77,48,0.6939456115429277,0.0,1.3211968841701047,0.0007013090903701002,0.03560763930657089,0.7205920967341668,1,1.0,0.9131520384764258,0.0
+77,49,0.612237976238437,0.0,1.2038868528390338,0.0007175477974523316,0.03410395438082503,0.74358351160479,1,1.0,0.8741265874614568,0.06
+78,0,0.21138928998695367,0.0,1.3653151988516066,0.0007082826490480414,0.03609083366843012,0.7116206627795226,1,0.15430667779755622,0.25793984252602997,0.0
+78,1,0.12774421555946364,0.0,1.3647056345881967,0.000709408186311135,0.036460884024212534,0.7117452775657019,1,0.18103702703212537,0.21460418699406594,0.06
+78,2,0.2215583343265079,0.0,1.3693093903262497,0.0007075254186494182,0.036395271020056956,0.7108006069954502,1,0.22934182297719613,0.27096232094829753,0.06999999999999999
+78,3,0.1630422556786129,0.0,1.3847186752439422,0.0006991318853311203,0.03668432286204944,0.7076262400116259,1,0.2684293547896601,0.2303066050074396,0.13
+78,4,0.28033381637039084,0.0,1.3845344684474183,0.0006990789026393355,0.03672257868562544,0.7076643712674167,1,0.3307212837252927,0.2819378902217947,0.13
+78,5,0.28785342996836466,0.0,1.3840451154044102,0.0006986269972274295,0.036683510605536665,0.7077657830768938,1,0.36569367325532487,0.3328688144300032,0.14
+78,6,0.343876782796525,0.0,1.3848580752541326,0.0006992158023887063,0.03668533334123171,0.7075973637959477,1,0.41340562080231263,0.39728271838571855,0.14
+78,7,0.33679328838418054,0.0,1.383201261805258,0.0007009988795548994,0.03659062828851515,0.7079393087372834,1,0.4548128077343469,0.4253626855905304,0.19
+78,8,0.28938047164696257,0.0,1.3832723719870745,0.0006987929596017719,0.03649156024626294,0.7079255179138826,1,0.49480973975907777,0.3873235424376179,0.25
+78,9,0.3901871687009808,0.0,1.3821471384284318,0.0006985788987318344,0.03628856423617659,0.708158213091153,1,0.554718105281489,0.4534527728415322,0.26
+78,10,0.4424315888494293,0.0,1.3836006890113042,0.000698851636695351,0.036453158676825206,0.707857603892427,1,0.597975346514991,0.5104673918972749,0.26
+78,11,0.3657412280689269,0.0,1.3836352316889744,0.0006997006396927654,0.0366296769223393,0.7078501094359481,1,0.6320213617185891,0.481779171558069,0.32
+78,12,0.4859107682208905,0.0,1.3862216879669826,0.0007001258320666269,0.03675510425555488,0.7073147711424045,1,0.6878791004481138,0.5505102768801691,0.32
+78,13,0.5084174975277167,0.0,1.3859941659946229,0.0007001717680058285,0.03678409526089961,0.707361851634974,1,0.7483331700926856,0.6216696266509227,0.32
+78,14,0.5492209478414298,0.0,1.3840097665785844,0.0007014988012735613,0.036729165522606674,0.7077719063864603,1,0.8038670862262114,0.6928915588741862,0.33
+78,15,0.4978574005551437,0.0,1.3808052160863225,0.0006966416788344748,0.03647280477364544,0.7084362711883508,1,0.8411149483833726,0.6782238954032112,0.39
+78,16,0.5731066575411378,0.0,1.210082164851032,0.0006209083242458913,0.03205795997090251,0.7424374494307473,1,0.88055055876283,0.7163798732471576,0.44
+78,17,0.526150924213341,0.05,1.2043466666241418,0.0006210742639931263,0.032468317052972415,0.7289716046450986,1,0.9182713458016566,0.6825198439425373,0.5
+78,18,0.6476981490203984,0.0,1.2304893995269268,0.0006282752274948914,0.03318385632384237,0.738512983397789,1,0.9775547102501898,0.7518466681094399,0.5
+78,19,0.5545527392229271,0.05,1.2165570827262746,0.000622782748983306,0.03220837434001336,0.7265517558476258,1,0.9906722896008232,0.6927247928754634,0.56
+78,20,0.6128615492712597,0.0,1.2406583164029268,0.0006319490751909873,0.03338819957941435,0.736543064774478,2,1.0,0.709538497570866,0.6100000000000001
+78,21,0.5472612840390961,0.0,1.269571383167693,0.0006889563600730721,0.03445102483219562,0.7308718947965137,2,1.0,0.6575376134636538,0.5900000000000001
+78,22,0.5130162645286596,0.0,1.2895077668999997,0.000682486519593864,0.03458079611660235,0.7269350113414363,2,1.0,0.6100542150955319,0.5700000000000001
+78,23,0.602031361146622,0.0,1.3066678143414645,0.0006780816909703546,0.03474847996422147,0.7235172632212054,2,1.0,0.6401045371554068,0.5650000000000001
+78,24,0.5871516700951558,0.0,1.3037789635014465,0.0006729616207648872,0.03487507765653003,0.7240968215188336,2,1.0,0.6571722336505196,0.56
+78,25,0.5309658287881031,0.0,1.3001783438547738,0.0006681166042942972,0.03450563817833247,0.7248175075452035,2,1.0,0.6032194292936769,0.54
+78,26,0.4984233678654847,0.0,1.3152725779459242,0.0006675118020344498,0.03510403218858591,0.7217969047307625,2,1.0,0.5614112262182825,0.52
+78,27,0.5834454259411687,0.0,0.9227513860482022,0.0003313189008328385,0.023179775888130406,0.7935709165847635,2,1.0,0.5781514198038955,0.515
+78,28,0.6579055969920824,0.05,0.9032817025130595,0.00031500882630028284,0.022341929554773876,0.7843313348683715,2,1.0,0.6263519899736081,0.485
+78,29,0.6253587708525663,0.05,1.2960028655442732,0.0006701184940825725,0.03477031641471635,0.7104677564391285,2,1.0,0.684529236175221,0.475
+78,30,0.6850557509616195,0.0,1.2902910679405295,0.0006695859493265416,0.03429942567394334,0.7267846213867315,2,1.0,0.7168525032053986,0.44499999999999995
+78,31,0.5499251476896565,0.0,1.2945085745597755,0.0006835616575586018,0.03470694006403808,0.7259407949804326,2,1.0,0.6664171589655217,0.42499999999999993
+78,32,0.6313367794813436,0.0,1.3115672872387036,0.0006796530166143938,0.03480789901340481,0.7225354699434527,2,1.0,0.7044559316044785,0.4149999999999999
+78,33,0.6974486388917553,0.0,1.3054515761173882,0.0006788170774322674,0.03504706807579987,0.7237601993500169,2,1.0,0.7581621296391846,0.3849999999999999
+78,34,0.6375751516697016,0.0,1.3118625541576088,0.0006937653108571235,0.035126348845888646,0.722470612356056,2,1.0,0.7585838388990055,0.3799999999999999
+78,35,0.6607725252259566,0.0,1.3089975986408233,0.000686763200051278,0.03529940807664052,0.7230474935556269,2,1.0,0.8025750840865223,0.3699999999999999
+78,36,0.6649919864606653,0.0,1.2656530360625893,0.0007526973757664797,0.03516157366945719,0.7316168980901853,2,1.0,0.8499732882022177,0.3649999999999999
+78,37,0.6602967325651738,0.0,1.287701544788049,0.0007393042359225317,0.03546879303757295,0.7272708615619711,2,1.0,0.9009891085505798,0.3599999999999999
+78,38,0.7097824204885712,0.0,1.3074100673807574,0.0007277356157369109,0.03566689810369604,0.7233488856907513,2,1.0,0.9659414016285708,0.34999999999999987
+78,39,0.77,0.0,1.3084511160743697,0.0007443658619799481,0.03556414222595801,0.7231338484356645,2,1.0,1.0,0.31999999999999984
+78,40,0.75,0.0,1.2714113818488721,0.000730199274107827,0.03488010716069689,0.7304935778165855,2,1.0,1.0,0.2899999999999998
+78,41,0.72,0.0,1.2761298632166753,0.0007192509776407176,0.03490254213565326,0.7295679481185676,2,1.0,1.0,0.2799999999999998
+78,42,0.71,0.0,1.2972785593049503,0.000708132657630114,0.035328327285877675,0.7253795704764365,2,1.0,1.0,0.2749999999999998
+78,43,0.69,0.0,1.2865392293002824,0.0007040703879555883,0.03492513465600385,0.7275153130656852,2,1.0,1.0,0.2699999999999998
+78,44,0.72,0.0,1.2752095434909978,0.0006988212847129945,0.035042535114093554,0.7297575455200954,2,1.0,1.0,0.2599999999999998
+78,45,0.638342621903493,0.0,1.2951369586071413,0.0006895647252317281,0.03460582334543559,0.7258133704359654,2,1.0,0.9611420730116434,0.2399999999999998
+78,46,0.7035750989055476,0.0,1.3011022205199292,0.0007136325494875076,0.03569571867722983,0.7246150306582113,2,1.0,0.9785836630184919,0.2349999999999998
+78,47,0.72,0.0,1.28981266400575,0.0007088636252086109,0.034690335894519767,0.7268640116141287,2,1.0,1.0,0.22499999999999978
+78,48,0.77,0.0,1.3073629299710534,0.0006993079376342575,0.0353838042401564,0.7233696957483592,2,1.0,1.0,0.19499999999999978
+78,49,0.75,0.0,1.3131099253224467,0.0006923337376694009,0.035266544615737166,0.7222210109285001,2,1.0,1.0,0.16499999999999979
+79,0,0.16847306892715902,0.0,1.3684846452120545,0.0007089580388729335,0.036193481307459544,0.71096952589831,1,0.14411449712230248,0.22677664978117712,0.05
+79,1,0.20898406827323784,0.0,1.3682297383673203,0.0007072346426872851,0.03647148410329963,0.711022612573744,1,0.19423435174989265,0.2700068172025847,0.060000000000000005
+79,2,0.21817723088592147,0.0,1.367600544145353,0.0007081455513771632,0.03637744200118244,0.7111515013732551,1,0.23979373530935535,0.314164745092157,0.07
+79,3,0.30107149384531406,0.0,1.3851814597179604,0.0006993990220878455,0.03669664745150558,0.7075303741527307,1,0.301808755644675,0.38479476456559275,0.07
+79,4,0.3130066060256882,0.0,1.384686073291581,0.0006991089433800373,0.036728630193725215,0.7076329945205777,1,0.33225866053610364,0.455720249460173,0.08
+79,5,0.3247927672149326,0.0,1.3793670419797437,0.0006952695052128954,0.036505871635494416,0.7087338097068842,1,0.37840497569723186,0.507836752403005,0.09
+79,6,0.40348403963780466,0.0,1.3814685926070398,0.0006970149401810744,0.03656585682479281,0.7082990747174578,1,0.4370150294463982,0.5684292644385509,0.09
+79,7,0.4225427097765202,0.0,1.3831466665115804,0.0006996950799377554,0.03656143385111574,0.707951135937891,1,0.49736437966189345,0.6282172563161919,0.09
+79,8,0.4279101685101741,0.0,1.384853239644003,0.0007001728281765116,0.03643034896467231,0.707597968275788,1,0.5159739706440774,0.6577309292824901,0.14
+79,9,0.43517766672198605,0.0,1.3846781308477039,0.0006993979944223765,0.03644821071465643,0.7076345181161665,1,0.5523729359353287,0.7061571304820702,0.19
+79,10,0.4563845698384541,0.0,1.384075090411252,0.0006986770440130176,0.036457898989472555,0.7077595625033708,1,0.5933135847404759,0.7290827172642919,0.24
+79,11,0.4857370759420161,0.0,1.383071097823001,0.000697943264201075,0.03658369779512423,0.7079674843713705,1,0.6466561808889059,0.7646913754363301,0.29
+79,12,0.5761682772612604,0.0,1.3845200542520593,0.0007013006482081656,0.03673999152465045,0.7076664339576557,1,0.7069224852094615,0.8291513581264961,0.29
+79,13,0.5947470839804614,0.0,1.3758990698393943,0.0007001696274641242,0.036546426620058116,0.7094471651739483,1,0.7647715785756305,0.8902567715966359,0.3
+79,14,0.6031734821012028,0.0,1.3804960073075763,0.0006996436483383964,0.03659845213692452,0.7084988954998359,1,0.7888243066966671,0.9236165825245645,0.35
+79,15,0.5507509420222094,0.0,0.9021890540781456,0.00033219820349118616,0.023435449082858995,0.7969187444949364,1,0.8195579272485733,0.8796855582840292,0.41
+79,16,0.6225673014687393,0.0,1.1603405087633936,0.0007481019542751877,0.03302833016065149,0.7517865328746258,1,0.8659952425299628,0.8982298886108411,0.45999999999999996
+79,17,0.6935570540960414,0.05,1.1445810338395257,0.0007335952406801964,0.03382745101627962,0.7405735605443234,1,0.933960783975773,0.9555692656817361,0.45999999999999996
+79,18,0.6202314030693072,0.1,1.1813182355406107,0.000722864240927204,0.03343859139321108,0.7185410116125138,1,0.9784066453594097,0.9259635906450465,0.52
+79,19,0.7287019677109783,0.05,1.1973657213207367,0.0007733334823724149,0.03425863921123065,0.7302886613895235,1,1.0,0.9956732257032612,0.52
+79,20,0.6406169471750507,0.1,1.211408654983122,0.0007563286675700215,0.034691313663656936,0.7124020001185051,1,1.0,0.9687231572501689,0.5800000000000001
+79,21,0.71,0.05,1.2229199653037712,0.0007966405367229852,0.03461948275282977,0.7252165074797056,1,1.0,1.0,0.5900000000000001
+79,22,0.7,0.1,1.2384388269535556,0.0007791988389228977,0.035709396400655194,0.7068227962177988,2,1.0,1.0,0.6400000000000001
+79,23,0.77,0.05,1.3330190185592006,0.0007308707484191576,0.03601549691703726,0.7027691270330516,2,1.0,1.0,0.6100000000000001
+79,24,0.71,0.05,1.3264830526762375,0.000736414507652604,0.03625021590358499,0.7041302684905882,2,1.0,1.0,0.6050000000000001
+79,25,0.69,0.0,1.341539747908795,0.0007273382156026421,0.036134463749404655,0.7164673870230156,2,1.0,1.0,0.6000000000000001
+79,26,0.69,0.0,1.3523141090391855,0.0007211406373403195,0.03637174102182952,0.7142760974155431,2,1.0,1.0,0.5950000000000001
+79,27,0.72,0.0,1.3624539769677932,0.0007152330718535162,0.03641433266551354,0.7122046283287097,2,1.0,1.0,0.5850000000000001
+79,28,0.77,0.0,1.3609901786612073,0.000721637569762682,0.03636468858925822,0.7125019448428356,2,1.0,1.0,0.555
+79,29,0.75,0.0,1.3567329674864972,0.0007245222803043231,0.036514743986936826,0.7133720352157851,2,1.0,1.0,0.525
+79,30,0.72,0.0,1.3516561817740662,0.0007266778292227865,0.03631057745383988,0.7144080925738048,2,1.0,1.0,0.515
+79,31,0.6356061745167505,0.0,1.349945600377464,0.0007356380744989992,0.03654574275000415,0.7147533194010711,2,1.0,0.9520205817225017,0.495
+79,32,0.5994431131782756,0.0,1.3518542362160932,0.000727510865298792,0.03636647487078075,0.7143673420182247,2,1.0,0.8981437105942522,0.475
+79,33,0.5848064358601421,0.0,1.3524204841451415,0.0007204952491042272,0.03630646281960823,0.714254650718022,2,1.0,0.8493547862004741,0.45499999999999996
+79,34,0.7424640828262514,0.0,1.3520321845568473,0.000714277624431192,0.03601242361017474,0.7143364316497796,2,1.0,0.9082136094208383,0.42499999999999993
+79,35,0.7039861596887289,0.0,1.3480256964479578,0.0007168563642101233,0.036325835387460814,0.7151522420014701,2,1.0,0.9466205322957632,0.4149999999999999
+79,36,0.763951462740829,0.0,1.3469024429799883,0.0007245518011525902,0.03611098976971909,0.7153778703470668,2,1.0,0.979838209136097,0.3849999999999999
+79,37,0.72,0.0,1.342344841562187,0.0007276751790707286,0.03622395272994961,0.7163036733432003,2,1.0,1.0,0.3749999999999999
+79,38,0.6369159459250797,0.0,1.3405327447026931,0.0007361702181568678,0.0363393599375949,0.7166683201905509,2,1.0,0.9563864864169326,0.35499999999999987
+79,39,0.77,0.0,1.3409245291730265,0.0007277860279079834,0.03600786003875348,0.7165921651717817,2,1.0,1.0,0.32499999999999984
+79,40,0.641415283322416,0.05,1.2435169174614533,0.0007470785844163161,0.03516127410647545,0.7211129508197973,2,1.0,0.9713842777413871,0.3049999999999998
+79,41,0.7052691806633311,0.0,1.2531044536416647,0.0007805148426528216,0.03518177770353682,0.7340628241710395,2,1.0,0.9842306022111037,0.2999999999999998
+79,42,0.6293741808122733,0.05,1.2333104589530393,0.0007750498063572067,0.035538097725459065,0.7231497227540007,2,1.0,0.9312472693742444,0.2799999999999998
+79,43,0.5934442373613635,0.0,1.2418056696345032,0.0008067717401791461,0.03573370397806025,0.7362524732824557,2,1.0,0.8781474578712117,0.2599999999999998
+79,44,0.6976828041451741,0.0,1.2348029483233776,0.0008383500579145943,0.036329422553237956,0.7375978199644808,2,1.0,0.9256093471505805,0.24999999999999978
+79,45,0.6942397656096816,0.0,1.2510499618906534,0.0008173490409580797,0.03557305896745171,0.734449330473589,2,1.0,0.9474658853656054,0.24499999999999977
+79,46,0.7688501359006654,0.0,1.2397350022506268,0.0008138231055168443,0.03592201004243302,0.7366516327346151,2,1.0,0.9961671196688846,0.21499999999999977
+79,47,0.75,0.0,1.263044245193682,0.0007932235329721739,0.035732104962493016,0.7321129380077611,2,1.0,1.0,0.18499999999999978
+79,48,0.6340381080239953,0.0,1.2828578124000038,0.0007747824232501636,0.035864647736662286,0.7282165043801384,2,1.0,0.9467936934133178,0.16499999999999979
+79,49,0.5981246374070803,0.0,1.2820678880080933,0.0007982634183782866,0.036262755823577415,0.7283635245035862,2,1.0,0.8937487913569344,0.1449999999999998
+80,0,0.1683048843506918,0.0,1.3667142179039542,0.0007092528555236221,0.03621988419448443,0.7113330772941074,1,0.13129638700457802,0.2411704963302983,0.05
+80,1,0.1730389994080803,0.0,1.3664129207810833,0.0007073240452323383,0.0364555433986967,0.7113957332185321,1,0.17473049649147995,0.27294441878687437,0.1
+80,2,0.24003677252699418,0.0,1.3660215423190318,0.000705528285485335,0.03629299340182892,0.7114768184624947,1,0.23864624523833683,0.32170195564525433,0.11
+80,3,0.30413256894059215,0.0,1.3846094917904452,0.0006990490152648979,0.036674125189551834,0.7076488628996641,1,0.3081658431463158,0.38758174613127205,0.11
+80,4,0.3277951578263973,0.0,1.3839274957574337,0.0006987022926622478,0.03670459235599691,0.7077900790057456,1,0.3733909818792972,0.45702771389547764,0.11
+80,5,0.3664040995029726,0.0,1.3778625291855766,0.0006951834809135615,0.03647786744142735,0.7090443245102852,1,0.43551266701311264,0.5132488868279439,0.12
+80,6,0.3009884051660834,0.0,1.3832120526063347,0.0006992156487396798,0.03662177334640398,0.7079378150216294,1,0.4620449193772209,0.4642422779468537,0.18
+80,7,0.2769941904359769,0.0,1.3845147985494994,0.0006994039104439244,0.03657710898264346,0.7076683059997074,1,0.49474606884944206,0.412776887795574,0.24
+80,8,0.39714294388050675,0.0,1.3853167436418024,0.0006996051875169129,0.03644657573201051,0.7075022935807991,1,0.5510137706972619,0.48096041378821697,0.25
+80,9,0.45823650809484495,0.0,1.3848111603804298,0.0006995455342931799,0.036434784605165416,0.7076069341025949,1,0.6195299598557267,0.5380034071511354,0.25
+80,10,0.3793462899855291,0.0,1.3846681588128813,0.0007001610733725168,0.03649316550292257,0.7076362654629005,1,0.6615502800875382,0.49267897318296905,0.31
+80,11,0.49450572943546667,0.0,1.3846897699178264,0.0006994990774516498,0.03663915719324897,0.7076320683015748,1,0.7196886765624574,0.5420489754620218,0.31
+80,12,0.41863375726979946,0.0,1.3833925922150145,0.0006992272485313194,0.03664933083503226,0.7079004801169594,1,0.7589089655241584,0.5100520644544799,0.37
+80,13,0.5313380667362619,0.0,1.2855682254560477,0.0006408705268645925,0.034027389225405144,0.7277328044933569,1,0.8159624052915863,0.552504082947356,0.37
+80,14,0.4488827078133817,0.0,1.336023794607411,0.0007208978128651981,0.03578053636379337,0.7175891792920353,1,0.8429713475858138,0.5128091205278228,0.43
+80,15,0.5451979336855808,0.0,1.348353159580914,0.0007147602522868221,0.03619511363300708,0.7150863840620773,0,0.8956594747544402,0.5723903917384225,0.44
+80,16,0.5067201938090987,0.0,1.3780002998647463,0.0007090814120558396,0.036471874436502454,0.7090101668727591,0,0.9153218760935673,0.5878584572545006,0.45
+80,17,0.540385667137072,0.0,1.3811591326270674,0.0007065810886899539,0.03650561374253527,0.7083590561264136,0,0.9557365800082778,0.6195928804472494,0.45
+80,18,0.5618230828133033,0.0,1.3777217174752403,0.00069435783611439,0.036176126323531746,0.7090737138188897,0,0.9765139882699823,0.6334772897293651,0.46
+80,19,0.5666594793577078,0.0,1.376721325502741,0.0006935688126239781,0.036449473253476146,0.7092803650850652,0,1.0,0.6221982645256924,0.52
+80,20,0.5715973472133894,0.0,1.379634433391171,0.0006960983644667346,0.03642448382323362,0.7086782667231342,0,1.0,0.6386578240446312,0.53
+80,21,0.553144160157221,0.0,1.3781596703383618,0.0006946216852328126,0.03650375958618368,0.708983252169361,0,1.0,0.6438138671907366,0.54
+80,22,0.57122619101383,0.0,1.3761681373658987,0.0006932437916031686,0.036361278051988584,0.709394554236728,2,1.0,0.6374206367127667,0.6000000000000001
+80,23,0.5907833239346512,0.0,1.2516453462327872,0.0006691982359524971,0.03391607861623767,0.7343909952281141,2,1.0,0.6692777464488374,0.5950000000000001
+80,24,0.5414070453359494,0.0,1.2522993728562042,0.0006658742824252294,0.033711127999207405,0.7342646978181515,2,1.0,0.6380234844531646,0.5750000000000001
+80,25,0.5015313351518317,0.0,1.272807552267447,0.0006603652988917096,0.03419528875093699,0.730246135139084,2,1.0,0.5717711171727724,0.555
+80,26,0.6607233992066606,0.0,0.9869606723194462,0.0004134321772367393,0.025311433369737107,0.7828261512754519,2,1.0,0.6357446640222021,0.525
+80,27,0.6071873235058758,0.05,1.247250338397001,0.0006674849466168827,0.03378558984090407,0.7203935722718275,2,1.0,0.6572910783529192,0.52
+80,28,0.6283775599625092,0.0,1.251722055473635,0.0006651997513572033,0.033970825336581786,0.734377591937357,2,1.0,0.6945918665416975,0.51
+80,29,0.6283242952091973,0.0,1.2368412005851144,0.0006599337281987878,0.03342929116433374,0.7372722557940136,2,1.0,0.7610809840306579,0.5
+80,30,0.71088954275847,0.0,1.2268998210819713,0.0006551659302793514,0.03356432758157481,0.7391952106125953,2,1.0,0.8029651425282338,0.47
+80,31,0.5726217229284704,0.0,1.3491124842574596,0.0007118921460387082,0.03597056314013203,0.7149328246879405,2,1.0,0.7420724097615679,0.44999999999999996
+80,32,0.5372801315943108,0.0,1.2576134990757855,0.0007326121989744707,0.03465632724976371,0.7332004058288358,2,1.0,0.6909337719810359,0.42999999999999994
+80,33,0.6274391381662123,0.0,1.2791787334272724,0.0007209796365025206,0.035152554563702684,0.7289653064880496,2,1.0,0.724797127220708,0.42499999999999993
+80,34,0.6518414409515199,0.0,1.2794401547598333,0.0007116203023795474,0.03478482186258058,0.7289173518716011,2,1.0,0.7728048031717331,0.4149999999999999
+80,35,0.6530963252410902,0.0,1.2713159834627388,0.0007100305309015111,0.03486588689372854,0.7305202996696699,2,1.0,0.8103210841369675,0.4099999999999999
+80,36,0.5798902061724811,0.0,1.349160061957943,0.0007340287524185532,0.03630337615167857,0.7149141047458082,2,1.0,0.7663006872416037,0.3899999999999999
+80,37,0.7134970030493086,0.0,1.2573860091873565,0.000671726192941715,0.03401201704496988,0.7332687220284426,2,1.0,0.8116566768310288,0.3599999999999999
+80,38,0.7115198811541089,0.0,1.3421367926908356,0.0007532104861572766,0.03666767762613019,0.7163355722387719,2,1.0,0.8717329371803633,0.32999999999999985
+80,39,0.7233838776021311,0.0,1.231754784939938,0.0005912575657578392,0.03276082472464924,0.7382828545629068,2,1.0,0.9112795920071035,0.2999999999999998
+80,40,0.6080666257187338,0.0,1.2470126177344985,0.0005964133925923341,0.033106663088138394,0.7353220096895287,2,1.0,0.8602220857291129,0.2799999999999998
+80,41,0.5690125657031432,0.0,1.2640360512466147,0.0006239995234043528,0.03333919137040569,0.7319847796575112,2,1.0,0.7967085523438107,0.2599999999999998
+80,42,0.5551960892494832,0.0,1.2971373855631554,0.0006745213088915828,0.0346648173079567,0.7254210819411075,2,1.0,0.7506536308316106,0.2399999999999998
+80,43,0.6593069081560103,0.0,1.3135047163436688,0.000671687551589059,0.03516858875794696,0.7221500872286782,2,1.0,0.797689693853368,0.2299999999999998
+80,44,0.650853577349346,0.0,1.321120530743941,0.0006862485791439846,0.035388592660507284,0.7206135337031644,2,1.0,0.836178591164487,0.21999999999999978
+80,45,0.7336447096549144,0.0,1.2376916163936948,0.0005841176444353691,0.03178003951334485,0.7371368776509286,2,1.0,0.8788156988497146,0.18999999999999978
+80,46,0.7266752553952684,0.05,1.2488151121869067,0.0005929870424824445,0.033248996539172834,0.720108307859914,2,1.0,0.9222508513175615,0.15999999999999978
+80,47,0.7453253317443908,0.0,1.2620177995801733,0.0006069313985144422,0.03366068064965906,0.7323872316455209,2,1.0,0.9844177724813027,0.12999999999999978
+80,48,0.71,0.0,1.2594998154909842,0.0006109094799501505,0.033277027176781625,0.7328789004693438,2,1.0,1.0,0.12499999999999978
+80,49,0.69,0.0,1.2463645008806563,0.0005998679129130491,0.03281246629501939,0.7354467849998868,2,1.0,1.0,0.11999999999999977
+81,0,0.19519758687275496,0.0,1.3650089282805413,0.000706654601959725,0.03616287202599938,0.7116841786578649,1,0.15696695417635914,0.26753050970343084,0.01
+81,1,0.2130391711719298,0.0,1.3642282123399636,0.000707370359456945,0.03642696647483489,0.7118440534985284,1,0.2145679024497313,0.3264680177150796,0.02
+81,2,0.18325338707902203,0.0,1.3842557381127463,0.0006988726371892825,0.03660281940197114,0.7077221157420811,1,0.26270685732597593,0.30435329004976824,0.08
+81,3,0.30648620023153716,0.0,1.3840698137814151,0.000698649993916927,0.03665057204847535,0.7077606650888351,1,0.3213033212221645,0.38010012601259857,0.08
+81,4,0.2955482422871246,0.0,1.3833385181123157,0.0006982409107993494,0.036684729629550855,0.7079120691884457,1,0.35773186803039264,0.40114029492162395,0.13
+81,5,0.30173262646843546,0.0,1.3802512678257528,0.0006993380270116782,0.03661703615760844,0.7085495647536676,1,0.4025007227911939,0.4361912449717253,0.18
+81,6,0.3248325464026339,0.0,1.384747752963132,0.000699416043505153,0.03667088445651796,0.7076201064657223,1,0.44421197916530514,0.4645278456492572,0.22999999999999998
+81,7,0.2927828448006506,0.0,1.384328836728647,0.0006989031879850065,0.03655193347693303,0.7077069823131482,1,0.47303931659853526,0.4240636133038775,0.29
+81,8,0.40305661578949503,0.0,1.3850112121812812,0.0006992839159810903,0.03644660981070951,0.7075656500601794,1,0.5215203821019179,0.46841494017941265,0.29
+81,9,0.39484288395084804,0.0,1.3854276301846302,0.0006996927898346314,0.036385065490069084,0.707479309622356,1,0.5594844236339984,0.49674445226316205,0.33999999999999997
+81,10,0.44207669171824926,0.0,1.3328725861564226,0.0007034599915268951,0.03528107415282252,0.7182344071469059,1,0.6214514783311449,0.5485622476744954,0.35
+81,11,0.4627002967074274,0.0,1.293919369108889,0.0006460411944743275,0.034361748792195855,0.7260729274647425,1,0.6664234387444915,0.6315069771561848,0.36
+81,12,0.423110710914562,0.0,1.3049348186195322,0.0008089032656655234,0.036640950761992114,0.7238114958202823,1,0.7011524260219273,0.5923578726896248,0.42
+81,13,0.5465088929253313,0.0,1.2984236824014128,0.0006506342527277801,0.03434030906331455,0.7251743175136238,1,0.7686492935102233,0.6582721339891774,0.42
+81,14,0.5351636662363791,0.0,1.321414011684116,0.0007839203179626183,0.03673486230138674,0.7205151082326818,1,0.8125681932797528,0.6692159952948856,0.47
+81,15,0.6059337363331663,0.0,1.1649987116206257,0.000609559936885626,0.03187205124190653,0.750968099074308,1,0.862953396188596,0.7463334922238588,0.47
+81,16,0.6235208424482217,0.05,1.1625842704479266,0.000614413012874043,0.03139512907502491,0.7371459371250213,1,0.9198996258222725,0.8051865780347545,0.47
+81,17,0.6558835875601852,0.05,1.1314130259382262,0.0006928458101074938,0.03306106618763569,0.7431109884539148,1,0.9578389184457617,0.8687998870138951,0.48
+81,18,0.6631738747885599,0.1,1.157673839980858,0.0006828210586870263,0.03262266207308516,0.7233140755898828,1,0.9945253357544528,0.916966690915005,0.49
+81,19,0.725056778566594,0.1,1.189768213037171,0.000679837572938639,0.03282081392485351,0.7168464054187984,1,1.0,0.9835225952219799,0.49
+81,20,0.6367983005441411,0.15000000000000002,1.2139826936992812,0.0006702216829781116,0.03397322275945279,0.6962865998556834,1,1.0,0.955994335147137,0.55
+81,21,0.71,0.10000000000000002,1.2312000897995599,0.0007170446837072306,0.034063365387260014,0.7083462714874804,1,1.0,1.0,0.56
+81,22,0.7,0.15000000000000002,1.2415507581911123,0.0007046257155928896,0.03481749198832529,0.6904106856495695,2,1.0,1.0,0.6100000000000001
+81,23,0.6339013598904268,0.10000000000000002,1.3520855967390075,0.000726495587717454,0.03634790733288559,0.6827549294884347,2,1.0,0.9463378663014229,0.5900000000000001
+81,24,0.72,1.3877787807814457e-17,1.353398065409322,0.0007201651462280252,0.036349364890515844,0.7140552243426287,2,1.0,1.0,0.5800000000000001
+81,25,0.7,1.3877787807814457e-17,1.3437478437309214,0.0007223310548876592,0.03637855952146883,0.7160206522534468,2,1.0,1.0,0.5700000000000001
+81,26,0.77,0.0,1.3366898507036864,0.0007219270891912339,0.0358854615394688,0.7174537628708341,2,1.0,1.0,0.54
+81,27,0.6346110647240111,0.0,1.336978047081678,0.0007373581715518008,0.036451197601771124,0.7173890807946267,2,1.0,0.9487035490800368,0.52
+81,28,0.6014976828674039,0.0,1.3403601758208237,0.0007281781543435584,0.03609306214031787,0.7167066052273521,2,1.0,0.9049922762246798,0.5
+81,29,0.7576856683613542,0.0,1.3419053326180408,0.0007202872045834348,0.035960416204317655,0.7163959807403598,2,1.0,0.958952227871181,0.47
+81,30,0.7197771271548367,0.0,1.3413718372915373,0.0007316127024053291,0.036271803884320206,0.716499758928581,2,1.0,0.9992570905161223,0.45999999999999996
+81,31,0.6395781210622646,0.0,1.3357175326791713,0.0007334852778832837,0.03601626162835273,0.7176461394791913,2,1.0,0.9652604035408823,0.43999999999999995
+81,32,0.77,0.0,1.336940855950043,0.0007246331006809381,0.03609400275822054,0.7174017806379492,2,1.0,1.0,0.4099999999999999
+81,33,0.75,0.0,1.3359347271579187,0.0007357607949169404,0.036208017786801786,0.7176012049824534,2,1.0,1.0,0.3799999999999999
+81,34,0.72,0.0,1.3336330673749255,0.0007449574225786663,0.036220355053007636,0.7180636783180167,2,1.0,1.0,0.3699999999999999
+81,35,0.7,0.0,1.3289023305532812,0.0007487315733395674,0.036337634767544105,0.7190188938786034,2,1.0,1.0,0.3599999999999999
+81,36,0.7,0.0,1.3235109736423554,0.0007516480762576017,0.03617711132498722,0.7201056506823883,2,1.0,1.0,0.34999999999999987
+81,37,0.77,0.0,1.317296640809489,0.0007536739279595101,0.03611425231543601,0.7213556419428335,2,1.0,1.0,0.31999999999999984
+81,38,0.6323287442788308,0.0,1.3426194241385287,0.0007000531125997591,0.03585520368447031,0.7162590988667196,2,1.0,0.9410958142627694,0.2999999999999998
+81,39,0.703499234501106,0.0,1.3527511314855933,0.0006960348619398859,0.03605555083019818,0.7141971482795665,2,1.0,0.9783307816703536,0.2949999999999998
+81,40,0.72,0.0,1.3530606207863891,0.0006912621506444117,0.035671083329140985,0.7141359199273366,2,1.0,1.0,0.2849999999999998
+81,41,0.6372428399977179,0.0,1.3563534273484894,0.000701688612878886,0.03616824698934416,0.7134589705087315,2,1.0,0.9574761333257263,0.2649999999999998
+81,42,0.7688580639160485,0.0,1.3644965012559342,0.0006987286069146919,0.036017126589130366,0.7117925640046575,2,1.0,0.9961935463868287,0.2349999999999998
+81,43,0.72,0.0,1.3581674834328092,0.0006974507765760386,0.036370870489868035,0.7130897039721271,1,1.0,1.0,0.22499999999999978
+81,44,0.7,0.0,1.2639890383604722,0.0007559434869579348,0.03579003146900364,0.7319422303073381,1,1.0,1.0,0.2749999999999998
+81,45,0.71,0.0,1.2656969550175665,0.0007886995835137736,0.035373471287111206,0.7315941355064721,1,1.0,1.0,0.2849999999999998
+81,46,0.6415614280466684,0.0,1.278109054301468,0.0007713225716947053,0.03598988747590973,0.7291567127408883,1,1.0,0.9718714268222282,0.3449999999999998
+81,47,0.7,0.0,1.1104791091048292,0.0005998785839527712,0.03088458725219414,0.76102752226132,1,1.0,1.0,0.3949999999999998
+81,48,0.71,0.05,1.0893488139855076,0.0005796746090845197,0.030365028980599323,0.7511007940600077,1,1.0,1.0,0.4049999999999998
+81,49,0.7,0.05,1.1278032171116799,0.0005926696435086685,0.03131381844816391,0.7438376629770754,1,1.0,1.0,0.4549999999999998
+82,0,0.2148949925025918,0.0,1.3642380177376021,0.0007077378638235337,0.036221278934111464,0.7118418914234426,1,0.16658899814618278,0.25529614383809285,0.0
+82,1,0.20923771062987834,0.0,1.3627823412764006,0.0007104986005193902,0.03643088318962284,0.7121392601790568,1,0.2124896753700459,0.28288774750120765,0.05
+82,2,0.15845518875691603,0.0,1.3833249067414495,0.0006982585063754023,0.03657664649934761,0.7079148763621124,1,0.2506005470397093,0.2358166576433926,0.11
+82,3,0.1378210935560425,0.0,1.3831088137059668,0.0006980068803345974,0.03661028059798983,0.7079596602636788,1,0.28813832353016067,0.1899089344016209,0.16999999999999998
+82,4,0.1395717833052447,0.0,1.370077375917441,0.0007083804720638897,0.036582906536341386,0.7106423602904778,1,0.32252043015526444,0.1556321091696738,0.22999999999999998
+82,5,0.13832739553867848,0.0,1.3721652943362779,0.000706058330195439,0.036586258843898115,0.7102137891418903,1,0.35541465586439114,0.11310755328713865,0.29
+82,6,0.229911770718006,0.0,1.37361151368113,0.0007040196864602382,0.036440961778287775,0.709916891694778,1,0.3818172746537969,0.15425241529725703,0.33999999999999997
+82,7,0.2792004079018571,0.0,1.3858345904875684,0.0007003229050026418,0.03662809271364218,0.7073948202745121,1,0.43964139799046564,0.21775306201731362,0.35
+82,8,0.2827326924020382,0.0,1.3742371890426563,0.0007059782534779614,0.036461366947175555,0.70978721949459,1,0.4584657127314285,0.2408989764867942,0.39999999999999997
+82,9,0.3352559089053656,0.0,1.3739535483595666,0.0007035873443646258,0.03632456197604265,0.7098466278551859,1,0.5205431140737099,0.3102193965985571,0.41
+82,10,0.3500326081755997,0.0,1.3725602550831377,0.0007043728184909031,0.03640811787630952,0.7101331893633875,1,0.5716460477721419,0.36652163818450034,0.42
+82,11,0.43246273791353573,0.0,1.3708463485404008,0.0007051146278503913,0.03648999632391953,0.7104855545408315,1,0.6377444777074666,0.4308405690530748,0.42
+82,12,0.4219783699077048,0.0,1.3044054336286266,0.0006539733968795064,0.034320520700506486,0.7239792363861993,1,0.6832871272997236,0.44275958450933856,0.47
+82,13,0.36831273339320447,0.0,1.3021963342860756,0.0006530617896081607,0.03447541136036525,0.7244208334814204,1,0.7027492675144412,0.4078349658771669,0.53
+82,14,0.3421276228652102,0.0,1.3136933076981037,0.0006555413477126785,0.0348851327861157,0.7221187248594851,1,0.7268937913090019,0.3590493196901986,0.5900000000000001
+82,15,0.4605370805250879,0.0,1.3822871387384463,0.0007002696441389953,0.0365987786841694,0.7081285794672778,2,0.7869331423661472,0.4170349356564547,0.6000000000000001
+82,16,0.39597712479437697,0.0,1.3720464897555922,0.0006942780983018818,0.036356783217660546,0.7102430884379857,2,0.8097940720189424,0.3751639986258239,0.5800000000000001
+82,17,0.4905027153540761,0.0,1.2831287221718541,0.0006920933669929429,0.034813628535612526,0.728195617343723,2,0.8725956028225017,0.41698084788733514,0.5750000000000001
+82,18,0.4940931962321079,0.05,1.0358064015408217,0.0005535143940407852,0.028696257093560034,0.7609848607435485,2,0.923512033252094,0.4362132819795836,0.5700000000000001
+82,19,0.6186278081618559,0.05,1.0362070868265847,0.0005463396339251156,0.028114993932530474,0.7609145842428956,2,0.9961703348948423,0.49989396982887047,0.54
+82,20,0.5689981843637446,0.1,1.0391797503644518,0.0005708360935574706,0.028999640449454224,0.7464331522847648,2,1.0,0.5299939478791489,0.535
+82,21,0.6421651058231158,0.05,1.03848696221892,0.0005620873144237409,0.028844895257700492,0.7604938378490147,2,1.0,0.5738836860770528,0.505
+82,22,0.5909170735170179,0.1,1.0302556288502376,0.0005816458756789072,0.028852970160472658,0.7481144354500251,2,1.0,0.603056911723393,0.5
+82,23,0.6620657607930744,0.0,1.2817116883215576,0.0007211656979721825,0.03457125605322157,0.7284644944601079,2,1.0,0.6402192026435816,0.47
+82,24,0.6111101820587681,0.0,1.2747640101292297,0.0007336207456344565,0.035392872123125516,0.7298316776997714,2,1.0,0.670367273529227,0.46499999999999997
+82,25,0.5974658807532992,0.0,1.27219937248537,0.0007242177731980015,0.03412599524820038,0.7303407718280126,2,1.0,0.691552935844331,0.45999999999999996
+82,26,0.6892679203865414,0.0,1.269188988310379,0.0007152454602332002,0.03517972203932928,0.7309367641886902,2,1.0,0.7308930679551382,0.42999999999999994
+82,27,0.6795456565047786,0.0,1.2690705497964943,0.0007254226082861633,0.03406833850262555,0.7309560537993736,2,1.0,0.7651521883492621,0.3999999999999999
+82,28,0.6480204938716476,0.0,1.2678168523084143,0.000733937298860925,0.03535194662101922,0.7311991866115114,2,1.0,0.7934016462388257,0.3949999999999999
+82,29,0.722666024368718,0.0,1.2647915941115706,0.0007236185766390337,0.03441079089765336,0.7317974263194608,2,1.0,0.8422200812290599,0.3649999999999999
+82,30,0.6719228967295472,0.0,1.3148615191092654,0.0007126924159019492,0.035543952299366424,0.7218612981966473,2,1.0,0.8730763224318241,0.3599999999999999
+82,31,0.6595445257208338,0.0,1.3299638304928723,0.0007048412539109273,0.03539795660486344,0.7188221307164415,2,1.0,0.8984817524027795,0.35499999999999987
+82,32,0.7004758894344186,0.0,1.3419413217330673,0.0006990234623245917,0.0360056650162497,0.7163973091571834,2,1.0,0.9349196314480621,0.34499999999999986
+82,33,0.764692054853905,0.0,1.3338744295841622,0.0006963570796537146,0.035277372665320966,0.7180344921549988,2,1.0,0.9823068495130168,0.31499999999999984
+82,34,0.629177469512991,0.0,1.3208924437391367,0.000655206350815883,0.03529820431422845,0.7206719500874015,2,1.0,0.9305915650433033,0.2949999999999998
+82,35,0.6989433972764114,0.0,1.3265692047726532,0.0006609547630539486,0.034528609313021145,0.7195254456050312,2,1.0,0.9631446575880379,0.2899999999999998
+82,36,0.77,0.0,1.3254960756331142,0.0006644838151352928,0.0354661974264683,0.7197405375272343,2,1.0,1.0,0.2599999999999998
+82,37,0.6346799307319843,0.0,1.3171675584936862,0.000656180767991021,0.03435504306742308,0.7214207756100853,2,1.0,0.9489331024399477,0.2399999999999998
+82,38,0.6045052244836695,0.0,1.3219662225327224,0.000663077869115603,0.035239925407746654,0.7204525723816587,2,0.999887610388583,0.9151485361588851,0.2199999999999998
+82,39,0.5886797369908513,0.0,1.3245160094053459,0.0006695247992379588,0.035097046200683504,0.7199361553151845,2,1.0,0.8622657899695045,0.19999999999999982
+82,40,0.694563782763489,0.0,1.3253425054382528,0.0006752960715399016,0.035096159711196576,0.7197671520595373,2,1.0,0.9152126092116297,0.1899999999999998
+82,41,0.6912950437206129,0.0,1.3406373770320916,0.0006763435500192696,0.035740409197295625,0.7166713702687575,2,1.0,0.9709834790687101,0.1799999999999998
+82,42,0.77,0.0,1.3530137841480503,0.0006792377343112038,0.035492285780230254,0.7141503906794167,2,1.0,1.0,0.1499999999999998
+82,43,0.75,0.0,1.3462775615246747,0.0006727296622600968,0.03598757223013974,0.715526183922155,2,1.0,1.0,0.1199999999999998
+82,44,0.71,0.0,1.33863517633058,0.0006657970288640385,0.03461401419228713,0.7170820270121517,2,1.0,1.0,0.1149999999999998
+82,45,0.69,0.0,1.3401402056699774,0.0006694800817231776,0.035825266697372835,0.7167750984806337,2,1.0,1.0,0.10999999999999979
+82,46,0.77,0.0,1.339747542398434,0.0006726833136378756,0.03518705167743606,0.7168535053516257,2,1.0,1.0,0.0799999999999998
+82,47,0.71,0.0,1.3323044835040463,0.0006651532093534154,0.035390734395331004,0.7183648624217238,2,1.0,1.0,0.07499999999999979
+82,48,0.6338816318855787,0.0,1.3310076918012617,0.0006682979309091709,0.03519686485084107,0.71862587910152,2,1.0,0.9462721062852626,0.054999999999999785
+82,49,0.5986962447071191,0.0,1.3344529773125169,0.0006746990441235293,0.03514929214865169,0.717926115994919,2,1.0,0.8956541490237305,0.03499999999999978
+83,0,0.18975486539314693,0.0,1.3623326666235358,0.0007078009727828362,0.036130657206866354,0.7122325391085649,1,0.13897742559644746,0.2703758881146344,0.01
+83,1,0.24506179296124395,0.0,1.3615331793177365,0.0007085342340057926,0.03641159894680147,0.7123960716275185,1,0.19299996795095942,0.3250393472613605,0.01
+83,2,0.2645999469372025,0.0,1.3609819496836795,0.0007109543751002067,0.036278241427133776,0.7125080072061747,1,0.24768018747531528,0.3930396044028073,0.01
+83,3,0.2835342732618602,0.0,1.3834705840190344,0.0006985726580312976,0.03663464791895101,0.707884623631503,1,0.29883347716041636,0.4298085208523817,0.060000000000000005
+83,4,0.3557528022476872,0.0,1.3814453364407242,0.000698121884580995,0.03662278923201047,0.7083034222748275,1,0.36133036924434475,0.4976239100405551,0.060000000000000005
+83,5,0.2760890732814656,0.0,1.3797856939477375,0.0006975832260106135,0.03658584253407195,0.708646424335679,1,0.3971684591295663,0.4569337086203914,0.12
+83,6,0.3494245934371424,0.0,1.3805569324897577,0.0006971387245996463,0.03653599466597035,0.7084873472711862,1,0.4439463751063526,0.4801445404997299,0.16999999999999998
+83,7,0.3383661032215242,0.0,1.3853188517517943,0.0006995771153205371,0.03659433973699029,0.7075018689411154,1,0.46262430548893924,0.48815865433465166,0.21999999999999997
+83,8,0.4021269963323312,0.0,1.3848252598998645,0.0006991477898335978,0.03648235706361904,0.707604181499581,1,0.5172538414179865,0.5369605061201197,0.22999999999999998
+83,9,0.46143185951643345,0.0,1.3843849019459162,0.0006989722694685539,0.036409058617747014,0.7076953560693064,1,0.5804578809681744,0.594238670591908,0.22999999999999998
+83,10,0.3883660461555336,0.0,1.3846355504976369,0.0006996932907525593,0.036486673773000675,0.7076432052134471,1,0.6271031893028859,0.5629330996650784,0.29
+83,11,0.4859976571328831,0.0,1.3774944623640095,0.0006945702515201296,0.036381566150935934,0.7091205040059131,1,0.6897077673926093,0.6153331284848995,0.3
+83,12,0.5472808477182074,0.0,1.3843914940096331,0.0007004396725047387,0.03671768717135118,0.7076933853119802,1,0.7431752256708138,0.6905650624447417,0.3
+83,13,0.5629387464976502,0.0,1.383697647731575,0.0006990678606471623,0.03671127150743139,0.7078374634570219,1,0.7892304791420579,0.7556935959930998,0.31
+83,14,0.5001888412355802,0.0,1.3853545325435785,0.0006995604469057458,0.03673718327025387,0.7074944918961913,1,0.8142778004245291,0.7173053702899832,0.37
+83,15,0.5719714570913208,0.0,1.1151118163197693,0.0006037159244518615,0.030886102025838358,0.7601825789765326,1,0.8470922804687586,0.7516305297575175,0.42
+83,16,0.6181100435726272,0.05,1.110306472884614,0.0006093721730655578,0.030203386015900075,0.7471509903213626,1,0.8932345386564142,0.818259850142941,0.43
+83,17,0.6369939546445169,0.05,1.3369961626934193,0.0007245712556896806,0.03614279409703821,0.7019403291092446,1,0.9512384140439806,0.8802016990970795,0.44
+83,18,0.5956042251170365,0.0,1.338083765186922,0.0007162523194957481,0.035988316404988716,0.7171734135522964,1,0.9766183907940854,0.8459592944636887,0.5
+83,19,0.7000116586308966,0.0,1.3361575592120214,0.0007277847164178936,0.03605090309083605,0.7175592789428956,1,1.0,0.9000388621029887,0.5
+83,20,0.6762502257322522,0.0,1.349648518436699,0.000719655140395259,0.03613362680177859,0.7148204012604119,1,1.0,0.9208340857741742,0.55
+83,21,0.7221426342717218,0.0,1.343963549599685,0.0007206322240679572,0.036037256018826916,0.7159774805678146,1,1.0,0.9738087809057392,0.55
+83,22,0.71,0.0,1.3555333941247978,0.0007135269869170524,0.03638808426646302,0.7136217461794286,1,1.0,1.0,0.55
+83,23,0.71,0.0,1.3641282991439372,0.0007080506136899822,0.03629691676044142,0.7118642684104063,1,1.0,1.0,0.56
+83,24,0.6378579776614397,0.0,1.3655201624075155,0.0007026922653788056,0.03634401363686351,0.7115808936853438,2,1.0,0.959526592204799,0.6200000000000001
+83,25,0.77,0.0,1.3218294585330863,0.0006673118538770309,0.03550973952772794,0.7204784105564048,2,1.0,1.0,0.5900000000000001
+83,26,0.71,0.0,1.3304080503084477,0.0006858612671863161,0.03519932288204901,0.7187400114475068,2,1.0,1.0,0.5850000000000001
+83,27,0.72,0.0,1.3405364058417626,0.0006825263786218873,0.036031291270345246,0.7166893615884968,2,1.0,1.0,0.5750000000000001
+83,28,0.7,0.0,1.3314389553921389,0.0006778369039516852,0.03504046629513487,0.7185348098507677,2,1.0,1.0,0.5650000000000001
+83,29,0.7,0.0,1.321773823963405,0.0006726197720019927,0.035477634133429845,0.7204874767562989,2,1.0,1.0,0.555
+83,30,0.71,0.0,1.3112466994734282,0.0006664917870878211,0.03492777039571913,0.7226050124297654,2,1.0,1.0,0.55
+83,31,0.6371588324992712,0.0,1.321256713537748,0.0006645537558012621,0.035037635692777055,0.7205948513071506,2,1.0,0.957196108330904,0.53
+83,32,0.601044555253851,0.0,1.3265256536742713,0.0006638379508801027,0.03541663686606336,0.719533070822973,2,1.0,0.9034818508461704,0.51
+83,33,0.5881000017629059,0.0,1.3293018352075108,0.0006636399808016432,0.03458406982787614,0.7189725615692619,2,1.0,0.8603333392096867,0.49
+83,34,0.7464788179904317,0.0,1.3301752824603208,0.0006634454714192655,0.03558596872824794,0.718796125545838,2,1.0,0.9215960599681058,0.45999999999999996
+83,35,0.7099845505893634,0.0,1.3399548551386058,0.0006762025252344967,0.03526376674312825,0.7168099954968594,2,1.0,0.9666151686312111,0.44999999999999996
+83,36,0.7095674052643156,0.0,1.3318062500138061,0.0006719277135796558,0.03568100761812164,0.7184629118494391,2,1.0,0.9985580175477189,0.44499999999999995
+83,37,0.69,0.0,1.3407794592659148,0.0006717929653535226,0.03522742830776133,0.7166443672178731,2,1.0,1.0,0.43999999999999995
+83,38,0.6395459579712087,0.0,1.3468135677011794,0.0006725255311230992,0.035796815394525755,0.7154171512057422,2,1.0,0.9651531932373625,0.41999999999999993
+83,39,0.7087729721406933,0.0,1.3479182781008452,0.0006728550600681435,0.035499856743443595,0.715192049435237,2,1.0,0.9959099071356445,0.4149999999999999
+83,40,0.6363063863724125,0.0,1.351999295078854,0.0006753435066126855,0.035546008436880716,0.7143590323205404,2,1.0,0.9543546212413755,0.3949999999999999
+83,41,0.6030210957534896,0.0,1.352014161612598,0.0006766485598995406,0.03596059285308234,0.7143554661951367,2,1.0,0.9100703191782986,0.3749999999999999
+83,42,0.69099758589602,0.0,1.3509031606459592,0.0006776114162849092,0.03529254200535091,0.7145817211117409,2,1.0,0.9366586196534004,0.3699999999999999
+83,43,0.714143926549535,0.0,1.3536977666039147,0.0006820295347784172,0.03615752257276696,0.7140096021486121,2,1.0,0.9804797551651165,0.3599999999999999
+83,44,0.71,0.0,1.3486105476884889,0.0006767574825376575,0.035276049035519896,0.7150494281264453,2,1.0,1.0,0.35499999999999987
+83,45,0.6332325991690655,0.0,1.3502847568281289,0.0006810498643610033,0.03609523729130461,0.7147064285240945,2,1.0,0.9441086638968853,0.33499999999999985
+83,46,0.7665262067329346,0.0,1.3494245754031744,0.0006838111704587211,0.035521562131718906,0.7148806624558283,2,1.0,0.9884206891097823,0.3049999999999998
+83,47,0.71,0.0,1.2665618200612134,0.0006468879822878664,0.033941292832492406,0.7314799850798355,2,1.0,1.0,0.2999999999999998
+83,48,0.77,0.0,1.2618391137961986,0.0006441480934032226,0.033464228469924875,0.7324076642209361,2,1.0,1.0,0.2699999999999998
+83,49,0.75,0.0,1.252479279582985,0.0006409552307695397,0.033738815727255664,0.7342393180483621,2,1.0,1.0,0.2399999999999998
+84,0,0.17165636011053292,0.0,1.3602205882480083,0.0007132580117703343,0.036118451338572645,0.7126629960591511,1,0.13458618047763773,0.2485039898111991,0.05
+84,1,0.20879143148599116,0.0,1.359904633795408,0.0007110024203383187,0.03643280663601435,0.7127286147608779,1,0.1689399425563083,0.2988748386376109,0.060000000000000005
+84,2,0.22543212657041298,0.0,1.3591141112909435,0.0007120304016527862,0.03624570074968956,0.712890023473087,1,0.21345433059456884,0.36907703620771304,0.07
+84,3,0.18077662894132362,0.0,1.3834416802117608,0.000698572529944113,0.03663349178854378,0.7078906004929614,1,0.23845596042120543,0.3243901426463391,0.13
+84,4,0.2830006825955979,0.0,1.383304034893021,0.00069824433599427,0.03668421360819117,0.7079191979047998,1,0.3006359603560968,0.3925936549032135,0.14
+84,5,0.29242828834246815,0.0,1.384029720503619,0.0006992399315537319,0.036699103916135165,0.7077687136970662,1,0.3370804043699522,0.4481671560432829,0.15000000000000002
+84,6,0.24374554182814834,0.0,1.3809258020364734,0.0006965303429998155,0.036519182391641626,0.7084114090093944,1,0.370920462345067,0.37974460002458305,0.21000000000000002
+84,7,0.22698004855474158,0.0,1.3840244789811824,0.0006992300202171798,0.03655902303515732,0.7077698019112587,1,0.4066772068602912,0.34881008717879886,0.27
+84,8,0.3280365344949476,0.0,1.3806029790299332,0.0006992741883323062,0.03647788768259776,0.7084769549433132,1,0.45725471854643157,0.3933246100123219,0.32
+84,9,0.2848144466703956,0.0,1.3799205327033592,0.000697906756107285,0.03634079056896851,0.7086184502397614,1,0.4955418746106541,0.37124930185555577,0.38
+84,10,0.38128026176205077,0.0,1.3654534967708463,0.0007188490080390667,0.036435329059185784,0.711587943847228,1,0.5607107174527062,0.4167717021786788,0.39
+84,11,0.38787026892361187,0.0,1.3361221648500654,0.0007431310362790901,0.03648443395368746,0.7175602318303753,1,0.6006117505349843,0.4588538541212247,0.4
+84,12,0.3524395192684079,0.0,1.306640883138304,0.0006537484361240113,0.03436976425925352,0.7235323855346474,1,0.6366133056702123,0.43208287427944525,0.46
+84,13,0.3409691061845621,0.0,1.3171403587674593,0.000656661777471335,0.034633429707707594,0.7214260486459987,1,0.6890163212410868,0.39937797916727247,0.52
+84,14,0.47503800974557314,0.0,1.379627545268789,0.0006999199623448226,0.0366160813103409,0.7086781108356587,1,0.7416486703990645,0.45153658368633537,0.52
+84,15,0.4632311128011769,0.0,1.3104615367642227,0.0006545988074855564,0.03450585287908282,0.7227671345671789,1,0.7767451452336791,0.4712343732312977,0.5700000000000001
+84,16,0.5106190163345142,0.0,1.3074772561637322,0.0006537477536434555,0.034776835548630716,0.7233650521000192,1,0.832374566870052,0.5309597264333202,0.5800000000000001
+84,17,0.5239086573999198,0.0,1.3516439973602306,0.0007129093670806381,0.03634511430156771,0.7144161968164249,2,0.8722948709719732,0.562018175199097,0.6300000000000001
+84,18,0.46736616596133673,0.0,0.9027875598072899,0.0004445271488554321,0.024880572532767663,0.796785491743381,2,0.8840357495291314,0.5265121787538023,0.6100000000000001
+84,19,0.5537023877158228,0.0,0.9263551459188601,0.0004469691429607087,0.024835397382720434,0.7929419645467621,2,0.9349501313326559,0.5548994724979776,0.6050000000000001
+84,20,0.48987508423815584,0.05,0.9115728042052176,0.00043133053239553516,0.024820227686996592,0.7828860007522461,2,0.9577823268122654,0.5155042328462098,0.5850000000000001
+84,21,0.5765282678946357,0.0,0.9536246288415966,0.0004447919974795912,0.025585058843049104,0.788429678702945,2,1.0,0.5550942263154526,0.5800000000000001
+84,22,0.6503877138949995,0.05,0.9225779847930886,0.0004204459004814512,0.024705245280448502,0.7810132900186948,2,1.0,0.6012923796499985,0.55
+84,23,0.6445310083803247,0.1,1.2469150724988547,0.0007518664191946073,0.03450669461695828,0.705074605167363,2,1.0,0.6484366946010826,0.52
+84,24,0.5279165562753216,0.1,1.2455635915948013,0.0007516767955551443,0.034975517447700236,0.705355638969538,2,1.0,0.5930551875844056,0.5
+84,25,0.5960195388300081,0.05,0.9857759760020204,0.0005776804872568331,0.028177916980311923,0.7699570428393138,2,1.0,0.6200651294333605,0.495
+84,26,0.584443724530426,0.1,1.2257462052794559,0.0007618568900382252,0.034842062658053057,0.7094532439728617,2,1.0,0.6481457484347537,0.49
+84,27,0.528066874825821,0.1,1.2295911913276438,0.0007481337168035001,0.034791336748155405,0.7086657082850999,2,1.0,0.5935562494194034,0.47
+84,28,0.6021173320254504,0.05,0.8778807712323494,0.0004609871112637757,0.02460388689916635,0.7885483330280746,2,1.0,0.6403911067515015,0.46499999999999997
+84,29,0.5962292588887257,0.1,1.2158371493872977,0.0007541807762644377,0.034520327795179474,0.7114946953347477,2,1.0,0.687430862962419,0.45999999999999996
+84,30,0.6072766781368273,0.1,1.2187769158185346,0.0007411225707975718,0.034018828655517586,0.7108962420565957,2,1.0,0.7242555937894243,0.45499999999999996
+84,31,0.5498920826261685,0.1,1.2162660511261092,0.0007298925801384787,0.0342031401012747,0.7114166196739855,2,1.0,0.6663069420872284,0.43499999999999994
+84,32,0.5176382569196247,0.05,1.2387694612250473,0.0007198500933462632,0.03418590747417556,0.722077632968088,2,1.0,0.6254608563987494,0.4149999999999999
+84,33,0.5975213642808475,0.0,1.2561048663538612,0.0007110703207795399,0.03473015603039664,0.7335038389752921,1,1.0,0.6250712142694916,0.4099999999999999
+84,34,0.635056397120057,0.05,1.1747926892984721,0.0006166847049686277,0.031529775247112674,0.7347726874881415,1,1.0,0.6835213237335235,0.4099999999999999
+84,35,0.6303495887668543,0.1,1.1744543412326072,0.000614915216453747,0.031200194964130616,0.7199706097073717,1,1.0,0.7344986292228479,0.41999999999999993
+84,36,0.671233993090861,0.1,1.2042045948256455,0.0006268014360682975,0.03226563468518764,0.7139286561593946,1,1.0,0.8041133103028699,0.41999999999999993
+84,37,0.5808567344186562,0.1,1.3526950842837517,0.0007347558105680594,0.036329258089305316,0.6826193202496329,1,1.0,0.7695224480621872,0.4799999999999999
+84,38,0.5480572488658655,0.05,1.1254387849165,0.0005800925484320011,0.030289604365724986,0.744292717036137,1,1.0,0.726857496219552,0.5399999999999999
+84,39,0.6642534517020273,0.0,1.1429694207030299,0.0005723362162633413,0.03051392611778968,0.7550788588753854,1,1.0,0.7808448390067577,0.5399999999999999
+84,40,0.6669055503440455,0.05,1.1168387040778747,0.0005547282434193745,0.03034572957142733,0.7459356659940204,1,1.0,0.8563518344801518,0.5499999999999999
+84,41,0.6985867425028225,0.0,1.3653192885299918,0.0007204349840558479,0.03643231664875114,0.7116148357501715,1,1.0,0.8952891416760751,0.5499999999999999
+84,42,0.6022373271010136,0.0,1.3715312175807697,0.0007158918837656976,0.03663578748723938,0.7103402245576358,2,1.0,0.8407910903367123,0.6099999999999999
+84,43,0.6750805854038757,0.0,1.3318038418420222,0.0006840408022983045,0.035842397632844976,0.7184584986140852,2,1.0,0.8836019513462526,0.6049999999999999
+84,44,0.7530828881338634,0.0,1.3321214974490885,0.00069035500276048,0.034973979786350924,0.7183916853040745,2,1.0,0.9436096271128782,0.5749999999999998
+84,45,0.7006624869053577,0.0,1.3467025977936666,0.0006886312801018004,0.03611108821938954,0.7154331857876034,2,1.0,0.9688749563511923,0.5699999999999998
+84,46,0.77,0.0,1.3459254221096344,0.0006931519692217364,0.0355085047658403,0.7155895432493602,2,1.0,1.0,0.5399999999999998
+84,47,0.6360312383395086,0.0,1.3580976724431237,0.0006920451011771709,0.036119825985182964,0.71310619843736,2,1.0,0.9534374611316953,0.5199999999999998
+84,48,0.7036398753382659,0.0,1.3573002385999309,0.0006952693476725547,0.03598179534776995,0.7132679954854624,2,1.0,0.9787995844608863,0.5149999999999998
+84,49,0.6317298719302887,0.0,1.3561187547181297,0.0006989019142707945,0.03597808474023678,0.7135080827509,2,1.0,0.9390995731009626,0.4949999999999998
+85,0,0.004698402618205436,0.0,1.3582417939071152,0.0007130410034241271,0.036121559968077574,0.7130681208049582,1,0.11591541144914787,0.147093362036679,0.06
+85,1,0.15556540673012487,0.0,1.3805792476304364,0.0007000939904143218,0.036401237328416595,0.708481517703368,1,0.15657788494506766,0.1692104899978373,0.11
+85,2,0.1576328417338485,0.0,1.3803477433913902,0.000699239408649397,0.03649043814123195,0.7085296821979863,1,0.19652398813241523,0.1961648196250106,0.16
+85,3,0.24503806027859137,0.0,1.3800311048036515,0.0006984677944967981,0.03658199402743226,0.7085953872738672,1,0.2547392618190812,0.25293106213970984,0.16
+85,4,0.25894850156125526,0.0,1.3840909379894795,0.0006995733404724492,0.03672488266712916,0.7077559138681915,1,0.29666158804130915,0.3170564858226569,0.16
+85,5,0.20265891562789706,0.0,1.3833630867366367,0.0006994631553085911,0.036688600026891734,0.7079064835861663,1,0.3417552707863131,0.27681523617562487,0.22
+85,6,0.27347961653612146,0.0,1.3833039564357141,0.000698944668673654,0.036643873598282736,0.7079189245122853,1,0.3703585519918767,0.31284707779654863,0.27
+85,7,0.34125015115890006,0.0,1.3840699611299483,0.0006989100847589659,0.036555193648397384,0.7077605270198656,1,0.4292660034262661,0.37002349986568983,0.27
+85,8,0.2569947935861234,0.0,1.3818389867216243,0.0006981521871082746,0.03648757527797646,0.7082220711223223,1,0.4533033032564183,0.32779545815459,0.33
+85,9,0.3542670880590954,0.0,1.3832617586358178,0.0006984407841409743,0.03641349893895969,0.7079278580354642,1,0.5029537916506187,0.39411086993792954,0.34
+85,10,0.3679115667536219,0.0,1.3634574795896452,0.0007224023606700958,0.036428947722960896,0.7119959571836915,1,0.550644378466208,0.4506201143014974,0.35000000000000003
+85,11,0.32040231297494226,0.0,1.3287169254943378,0.0007742767531767253,0.036751557321229936,0.7190460287762769,1,0.5745057543805556,0.3977509964724927,0.41000000000000003
+85,12,0.4312417520987342,0.0,1.3611923736942433,0.0007252868324293877,0.03650197270963834,0.7124590296595655,1,0.6249161859850435,0.4417369566798968,0.41000000000000003
+85,13,0.44415120588062673,0.0,1.3110811657461214,0.0006563235453264927,0.034630241515998125,0.7226422680159035,1,0.6714099302417134,0.4971924343200904,0.41000000000000003
+85,14,0.38084816159994317,0.0,1.3058627735696726,0.0006535309042415936,0.03466818560788171,0.7236880932596734,2,0.6937524191389365,0.46011604967105135,0.47000000000000003
+85,15,0.48134468723056334,0.0,1.3637623526958302,0.0006940156229191747,0.03616315895796476,0.7119450797648513,2,0.7425615586877641,0.504827138966153,0.46
+85,16,0.5624562652191163,0.0,1.3698307178852853,0.0006935221016051635,0.03613935007682385,0.710699187870049,2,0.7971816358611717,0.5448089755590207,0.43000000000000005
+85,17,0.5769716031524906,0.0,1.3682327077483054,0.0006906789273516256,0.036290250439273364,0.7110288058049319,2,0.8578079438407887,0.5891294093607153,0.4
+85,18,0.4685690935430872,0.0,0.7212939262703211,0.0003088628325299481,0.01964013526642514,0.8246374583920904,2,0.8774608628909641,0.538192638437499,0.38
+85,19,0.631174746874567,0.0,0.746979862929262,0.0003149660477058602,0.02025741861113624,0.8208901807999155,2,0.9442165978676597,0.6023297920696202,0.35
+85,20,0.6163357809111583,0.0,1.254784892435334,0.0007699688961064577,0.03501065859562365,0.7337387696533325,2,1.0,0.6544526030371941,0.33999999999999997
+85,21,0.5286823360727332,0.0,1.255526460472508,0.0007896304618271084,0.035570892457179155,0.7335861820795972,2,1.0,0.5956077869091106,0.31999999999999995
+85,22,0.49107569550864294,0.0,1.209608224355804,0.000855395421408133,0.03583587896108008,0.7424383991059407,2,1.0,0.5369189850288099,0.29999999999999993
+85,23,0.4754339408085057,0.0,1.2330329203405694,0.0008341140678668115,0.03596136224629961,0.7379418983004837,2,1.0,0.4847798026950192,0.2799999999999999
+85,24,0.5688401037489311,0.0,1.2537920899295916,0.0008142371777479283,0.03565417983692826,0.7339153952990652,2,1.0,0.5294670124964372,0.2749999999999999
+85,25,0.641209178661377,0.0,1.26916366324648,0.0007957200203050773,0.03624695441331254,0.7309100904127901,2,1.0,0.5706972622045903,0.2449999999999999
+85,26,0.6403896469450392,0.0,1.2674450878693189,0.0008207441969106681,0.03580993420965223,0.7312381307290348,2,1.0,0.6346321564834643,0.2149999999999999
+85,27,0.6534857571172175,0.0,1.3234612171111713,0.000752547832015304,0.03596805583133319,0.7201153164856436,2,1.0,0.6782858570573918,0.18499999999999991
+85,28,0.6659703229430336,0.0,1.3193855936623713,0.0007576015234955489,0.036311561647888804,0.7209339844500795,2,1.0,0.719901076476779,0.15499999999999992
+85,29,0.6762279090251994,0.0,1.314336707918311,0.0007619445915100529,0.03604258308127526,0.7219468829496143,2,1.0,0.7540930300839981,0.12499999999999992
+85,30,0.6948155880103142,0.0,1.308260246658852,0.0007654404256133458,0.036020214041781455,0.7231636229276749,2,1.0,0.816051960034381,0.09499999999999992
+85,31,0.6636401718413638,0.0,1.287543514453843,0.0006248913744616932,0.03406083418538651,0.7273475869232335,2,1.0,0.8454672394712129,0.08999999999999991
+85,32,0.6496841223774528,0.0,1.2750875559747314,0.0006150964891964426,0.03346547911099274,0.729814622041571,2,1.0,0.8656137412581758,0.08499999999999991
+85,33,0.7432952439097578,0.0,1.262140039080434,0.0006046707254091772,0.03366043062125909,0.7323641587064885,2,1.0,0.9109841463658592,0.05499999999999991
+85,34,0.6941168682781635,0.0,1.2704105108639745,0.0006116827598021665,0.03271359564430236,0.7307372177865259,2,1.0,0.9470562275938788,0.04999999999999991
+85,35,0.621002767582996,0.0,1.2566430527317878,0.0006004543397589248,0.03354724905295736,0.7334418774222029,2,1.0,0.9033425586099868,0.029999999999999912
+85,36,0.6874069404889629,0.0,1.2747512872736295,0.0006218258959509596,0.03305184853181729,0.7298782706641505,2,1.0,0.9246898016298762,0.02499999999999991
+85,37,0.7593512853276876,0.0,1.2607817650952962,0.0006110608744423299,0.03374775601197567,0.7326278022835413,2,1.0,0.9645042844256256,0.0
+85,38,0.6274953766497623,0.0,1.2681939984706512,0.0006167253270081412,0.03311561141206666,0.7311711340711349,2,1.0,0.9249845888325411,0.0
+85,39,0.5904810247517787,0.0,1.2841088417447462,0.0006384700818455384,0.03430447553189463,0.7280228180100299,2,1.0,0.868270082505929,0.0
+85,40,0.7444191461140184,0.0,1.296232657305775,0.0006609603306756545,0.034664824553616816,0.7256066538444584,2,1.0,0.9147304870467283,0.0
+85,41,0.6089954172541929,0.0,1.3004973146174301,0.000659210433804975,0.034345755539517867,0.7247574352965195,2,1.0,0.8633180575139767,0.0
+85,42,0.5753999663521676,0.0,1.3099246356188803,0.0006790972306089366,0.03530729813317318,0.7228648876687322,2,1.0,0.8179998878405589,0.0
+85,43,0.6649668109517781,0.0,1.316280926758846,0.0006981549227738017,0.035275086171001904,0.7215820645031249,2,1.0,0.8498893698392607,0.0
+85,44,0.6594953237369109,0.0,1.306621351205669,0.0006941122137253477,0.03557012280843865,0.7235201442065476,2,1.0,0.8983177457897031,0.0
+85,45,0.7565269542526639,0.0,1.296220392843698,0.0006891152460683841,0.034597533172833754,0.7255978842522722,2,1.0,0.9550898475088798,0.0
+85,46,0.7032242366256589,0.0,1.3004442888052203,0.0006833586804798775,0.035247178266637993,0.7247583787194107,2,1.0,0.9774141220855299,0.0
+85,47,0.6304079841956669,0.0,1.2893158950716463,0.0006779090809206455,0.03445784041812904,0.7269749134226899,2,1.0,0.9346932806522231,0.0
+85,48,0.6977798590154232,0.0,1.296809071711942,0.0007013390092997154,0.03515171533194285,0.7254757904726876,2,1.0,0.9592661967180771,0.0
+85,49,0.6866550450012959,0.0,1.2856274493427695,0.0006962503047216103,0.03482407649969168,0.7276991230494223,2,1.0,0.98885015000432,0.0
+86,0,0.2156918855214996,0.0,1.3574150280594266,0.0007134237211312265,0.03610868513090472,0.7132370923737515,1,0.16603723458729674,0.25859617805315244,0.0
+86,1,0.23497998427386405,0.0,1.3567399187678408,0.0007155624586813302,0.03642518554389976,0.7133742779375398,1,0.21345361088403492,0.3342374015481726,0.0
+86,2,0.27499407042102064,0.0,1.3845720912493578,0.0006991250989318868,0.03661300732511423,0.7076565688562476,1,0.2839700225863214,0.3853485417193606,0.0
+86,3,0.3072505932180079,0.0,1.383911684030267,0.000698856026514013,0.03665211552596103,0.7077932856372585,1,0.3358369499615477,0.43235886910488747,0.01
+86,4,0.32461138328619554,0.0,1.3815280647794068,0.0006969184472404332,0.03660305880563085,0.7082868268048563,1,0.38786316987953207,0.4628642460945311,0.060000000000000005
+86,5,0.2635666291047405,0.0,1.3814240514925022,0.0006972206686219815,0.03660113071189256,0.7083081923282086,1,0.40584585803978335,0.4050685959693878,0.12
+86,6,0.3846345392531554,0.0,1.3847034141351104,0.0006996945333920509,0.036669065848821805,0.7076291645803389,1,0.47486397192950647,0.46144049692609385,0.12
+86,7,0.3784156377431124,0.0,1.3845291648905034,0.0007002363056743869,0.03660642005206366,0.707664989566385,1,0.5213372704304726,0.48649197697482316,0.16999999999999998
+86,8,0.3790626297862668,0.0,1.3840910447001373,0.0006993625568618268,0.036488655872049386,0.7077559789923255,1,0.5476249443826221,0.5246463308411635,0.21999999999999997
+86,9,0.4652902531983035,0.0,1.3833829623921008,0.0006984509385360739,0.03628762123535167,0.7079027923879454,1,0.6024332845032199,0.5814620120739219,0.21999999999999997
+86,10,0.4763869463573591,0.0,1.3792657154535473,0.0006952347544677932,0.03650094633309277,0.7087547404658098,1,0.6358493571006718,0.6461322379070801,0.21999999999999997
+86,11,0.42487688843369853,0.0,1.351518474312399,0.0006903766083328035,0.03571268115010584,0.7144509999938683,1,0.6781201017095276,0.6251161761178796,0.27999999999999997
+86,12,0.4016286639714183,0.0,1.3459932955155014,0.0006880622398618861,0.03595089817413462,0.7155778011649082,1,0.7014427169632147,0.5870790434476438,0.33999999999999997
+86,13,0.5245250426341643,0.0,1.3014040584066486,0.0006526760773319612,0.03447265429724116,0.7245791255290023,1,0.7662596410206751,0.6544472275897604,0.35
+86,14,0.5337724730473198,0.0,1.3576482580455287,0.0007351229514136959,0.03672118310503187,0.7131805102362037,1,0.796552680614443,0.6832634494408827,0.39999999999999997
+86,15,0.4847785700869297,0.0,1.3602666916679922,0.0007277381467497033,0.036475812330272486,0.7126476246879498,1,0.833590268674558,0.6434065868361147,0.45999999999999996
+86,16,0.6069394559692427,0.0,1.176819518249456,0.0006196704648937822,0.03194559865909419,0.748747074813031,1,0.8965010249722873,0.7105469907631404,0.45999999999999996
+86,17,0.5972711579322387,0.05,1.1626597529255545,0.0006091321909887338,0.03184852546285018,0.7371333577534392,1,0.9340135791733241,0.7345546840719177,0.51
+86,18,0.6684493454726821,0.05,1.176250278079853,0.0006199961311645749,0.032208465206949616,0.7344872412379069,1,1.0,0.7948311515756069,0.51
+86,19,0.6713030675435068,0.1,1.1617049900454945,0.0006096208506203098,0.031209080268975488,0.7225359433769689,1,1.0,0.8710102251450229,0.52
+86,20,0.6648247112565746,0.05,1.337434996158225,0.0007308379813474569,0.036455505974124044,0.7018458854694894,1,1.0,0.9160823708552488,0.53
+86,21,0.6096344933214302,0.0,1.3408494696783726,0.0007227005917646338,0.03606156887340216,0.7166094741028562,1,1.0,0.865448311071434,0.5900000000000001
+86,22,0.5727888424921,0.0,1.3314860638034172,0.0007223994544618634,0.03585899278430363,0.718507256819372,2,1.0,0.8092961416403337,0.6500000000000001
+86,23,0.6786599987068709,0.0,1.2713626123498896,0.0006649632402940045,0.034160375711097826,0.7305288641317393,2,1.0,0.86219999568957,0.6400000000000001
+86,24,0.6752798538189142,0.0,1.2653645590989033,0.000665009797736941,0.03405506892671558,0.7317079673438236,2,1.0,0.9175995127297144,0.6300000000000001
+86,25,0.6944299165500702,0.0,1.2586455941671557,0.0006642984081388798,0.033830514617308065,0.7330252000745774,2,1.0,0.981433055166901,0.6200000000000001
+86,26,0.7,0.0,1.2508854604255475,0.0006626753395031616,0.033756786338379766,0.7345417366147549,2,1.0,1.0,0.6100000000000001
+86,27,0.77,0.0,1.2422159265464499,0.0006600155462659766,0.03340037814054117,0.7362298026487656,2,1.0,1.0,0.5800000000000001
+86,28,0.75,0.0,1.2547959460225095,0.0006813445597350541,0.03409924854974205,0.733771237292271,2,1.0,1.0,0.55
+86,29,0.6298292392811208,0.0,1.2637733843961647,0.0007026357682170983,0.034410358839968735,0.7320054557403889,2,1.0,0.9327641309370694,0.53
+86,30,0.5940093916657418,0.0,1.2850034057183644,0.0006940753145883826,0.034719998153312844,0.7278236233779057,2,1.0,0.8800313055524731,0.51
+86,31,0.6878428084562538,0.0,1.3034921409557145,0.0006875712762378155,0.034840384649947376,0.7241482826803604,2,1.0,0.9261426948541793,0.505
+86,32,0.7158073378836463,0.0,1.301161559718433,0.00068124595636155,0.03470680651661421,0.7246161149987531,2,1.0,0.9860244596121543,0.495
+86,33,0.7,0.0,1.293733808975398,0.0006798262822014804,0.034829028057042154,0.7260963939832182,2,1.0,1.0,0.485
+86,34,0.77,0.0,1.2856652722599438,0.0006775225769398211,0.03454017732704083,0.7276990502357553,2,1.0,1.0,0.45499999999999996
+86,35,0.75,0.0,1.2937615427136804,0.0006972259334195662,0.035077893525829164,0.7260839572099439,1,1.0,1.0,0.42499999999999993
+86,36,0.6403460194651972,0.0,1.2441223312580312,0.0006786115219995804,0.03331743700671475,0.7358521917054949,1,1.0,0.9678200648839907,0.48499999999999993
+86,37,0.6993747959749724,0.0,1.2297581180825867,0.0006683423743069539,0.03415684106287615,0.7386387079073927,1,1.0,0.9979159865832415,0.5349999999999999
+86,38,0.73,0.05,1.2398667814156963,0.0007113101885943556,0.03410787066573863,0.7218607966837657,1,1.0,1.0,0.5349999999999999
+86,39,0.6394441838660355,0.05,1.2666466849264806,0.0007017330879200335,0.03387248758318384,0.7164560664477315,1,1.0,0.9648139462201185,0.595
+86,40,0.6966034385980652,0.0,1.2538000061351142,0.000693540929503009,0.034925081936575,0.7339609868967085,2,1.0,0.9886781286602173,0.645
+86,41,0.72,0.0,1.2769993525019334,0.0006621803240374942,0.03418288231353672,0.7294188932127337,2,1.0,1.0,0.635
+86,42,0.6394059785259478,0.0,1.267265250853134,0.000657853951819766,0.033856215752131456,0.7313374875762562,2,1.0,0.9646865950864929,0.615
+86,43,0.77,0.0,1.286231696409063,0.0006547289507743714,0.03444630157353813,0.7275958325292412,2,1.0,1.0,0.585
+86,44,0.75,0.0,1.2978132497568882,0.0006741587118336073,0.034721316931060654,0.7252865836884901,2,1.0,1.0,0.5549999999999999
+86,45,0.75,0.0,1.3058785066674667,0.00069349145724102,0.035309131266135815,0.7236689654879381,2,1.0,1.0,0.5249999999999999
+86,46,0.71,0.0,1.3109552062343295,0.000712165966783795,0.0353984768057221,0.7226451290846961,2,1.0,1.0,0.5199999999999999
+86,47,0.72,0.0,1.3105949230946226,0.0007036936259081258,0.03532976283960452,0.7227207301845082,2,1.0,1.0,0.5099999999999999
+86,48,0.7,0.0,1.303078139977538,0.0007027617890654333,0.03497955896358697,0.7242249070714998,2,1.0,1.0,0.4999999999999999
+86,49,0.7,0.0,1.2949780146251744,0.0007008900102060221,0.03490679286005029,0.7258404931243606,2,1.0,1.0,0.4899999999999999
+87,0,0.17111057087731923,0.0,1.3560260685827235,0.0007173467933834876,0.03607769694950709,0.71351948819233,1,0.1396598909076286,0.2407653635321641,0.05
+87,1,0.1638147791945703,0.0,1.3557677444513971,0.0007148146500184434,0.03642097609451806,0.7135733242402764,1,0.17721094465941833,0.2393031618792463,0.1
+87,2,0.188507898888639,0.0,1.3554218638936213,0.0007125824380184455,0.036145744701691754,0.7136449246439969,1,0.21427170468068688,0.2783760075013286,0.15000000000000002
+87,3,0.2816511951366943,0.0,1.3839296904070164,0.0006988796294589536,0.03665291198596492,0.7077895517460774,1,0.28052243702480756,0.34489447392670547,0.15000000000000002
+87,4,0.26884695743776427,0.0,1.3831053438396081,0.0006985590893366256,0.03668310524896137,0.7079601493264609,1,0.30514143209759226,0.37349152067868996,0.2
+87,5,0.3385633060151866,0.0,1.383603401809999,0.0006984664176943447,0.03667790931932625,0.7078572022213648,1,0.3669942805635784,0.4337176927264472,0.2
+87,6,0.35634691348452585,0.0,1.381108989253573,0.0006980848713215283,0.03658712110279504,0.7083729252842992,1,0.42787205969355924,0.4886389753059338,0.2
+87,7,0.29175384671548943,0.0,1.3833919780946458,0.0006984472448119738,0.03653849314593666,0.7079009296772305,1,0.44758663640870167,0.4503284132414794,0.26
+87,8,0.2650175688032156,0.0,1.3845924095875473,0.0006989950826486342,0.03649783788607973,0.7076524192017808,1,0.45498428185630946,0.41924356717835765,0.32
+87,9,0.3664882819885674,0.0,1.3852950993328796,0.00069951080381364,0.03633631582435699,0.7075068117582377,1,0.5108144544972665,0.4590107430484138,0.37
+87,10,0.36234399699398595,0.0,1.3342871005855728,0.0007647894833270705,0.036250173583604064,0.71792321927781,1,0.5402688399233956,0.4774996767359918,0.42
+87,11,0.42786615325472815,0.0,1.34376932797294,0.0007546704624785739,0.03674162097922297,0.716003131955413,1,0.5936255495123232,0.5336573697513836,0.43
+87,12,0.4779996474020637,0.0,1.3409351300279668,0.0007600803666500593,0.03664122307448832,0.7165768948438261,1,0.6440305876599802,0.575296472403569,0.43
+87,13,0.4963015339863829,0.0,1.3054753491911761,0.0006562971416094819,0.03456456606939306,0.7237644512298823,1,0.6918546664659718,0.6471746690776427,0.44
+87,14,0.5190138338789991,0.0,1.3809091298375207,0.0007014462698215171,0.03666542780519734,0.7084128219811513,1,0.7649648882895801,0.7042537432588204,0.45
+87,15,0.603954577439569,0.0,1.3797035356443228,0.0007025362148676839,0.03653509837269541,0.7086613418078479,1,0.8335505968784493,0.774039561773706,0.45
+87,16,0.5205374293307102,0.05,1.2025957450445048,0.0007051750349796541,0.0336708991069688,0.729284192468694,1,0.852080494911198,0.7410308537059699,0.51
+87,17,0.6395989122122565,0.0,1.2342927870214515,0.0006948839169915012,0.033933512176672655,0.7377520660358204,1,0.9191759120468733,0.7929578099861697,0.51
+87,18,0.6518231411987963,0.05,1.2146122187834456,0.0006849613772464443,0.03371352503189237,0.726913294530172,1,0.9696584277646603,0.8414756382705508,0.51
+87,19,0.6812016069767699,0.0,1.2635329584016355,0.0008261678470284954,0.03634527704064146,0.7320041535069048,1,1.0,0.9040053565892333,0.51
+87,20,0.7014790498697352,0.0,1.2760428069442853,0.0008104021081109876,0.036038448502481495,0.7295491558115603,1,1.0,0.9715968328991175,0.52
+87,21,0.73,0.0,1.2922560708074569,0.0007916787637481643,0.036350422802463395,0.7263457259081292,1,1.0,1.0,0.52
+87,22,0.71,0.0,1.307250705368275,0.0007746063485034957,0.036325905309770236,0.7233620171721035,1,1.0,1.0,0.53
+87,23,0.6382514090319797,0.0,1.3200345269498879,0.0007597705301451546,0.03627214276957681,0.7208025350222064,1,1.0,0.9608380301065991,0.5900000000000001
+87,24,0.73,0.0,1.3119299436776894,0.0007592288761359179,0.03638568269555422,0.7224308467594542,1,1.0,1.0,0.5900000000000001
+87,25,0.7,0.0,1.3243708798131149,0.0007456699925162095,0.035770727040478054,0.7199347114956451,2,1.0,1.0,0.6400000000000001
+87,26,0.6382383131026748,0.0,1.3056801401487912,0.0006530709353592697,0.03475803401688162,0.72372479574978,2,1.0,0.9607943770089158,0.6200000000000001
+87,27,0.6021970342191754,0.0,1.3170092253976637,0.0006638313793565319,0.03485126607959367,0.7214495202214921,2,1.0,0.9073234473972516,0.6000000000000001
+87,28,0.6892838225547286,0.0,1.3253754103735789,0.0006750641395540817,0.035411591919009736,0.7197606085709719,2,1.0,0.9309460751824287,0.5950000000000001
+87,29,0.712358625087121,0.0,1.318468118185428,0.0006726054748295832,0.03484906933587596,0.7211527174921541,2,1.0,0.9745287502904036,0.5850000000000001
+87,30,0.6299943000006548,0.0,1.3317401295274853,0.0006718412938053133,0.035343253155119825,0.7184763210685231,2,1.0,0.9333143333355162,0.5650000000000001
+87,31,0.7132630686492352,0.0,1.3387127985257976,0.0006831100733841955,0.03530920146268096,0.7170592540424208,2,1.0,0.9775435621641173,0.555
+87,32,0.6286846491549576,0.0,1.349114445599264,0.0006821683739266704,0.03571623222984769,0.7149445404543309,2,1.0,0.9289488305165257,0.535
+87,33,0.6997093446441361,0.0,1.3539852217784643,0.0006915017222316455,0.0360376739443929,0.7139470312918249,2,1.0,0.9656978154804539,0.53
+87,34,0.688255616669752,0.0,1.34789187151293,0.0006896113127102777,0.03570984421378494,0.7151906020117894,2,1.0,0.9941853888991734,0.525
+87,35,0.6343562786514294,0.0,1.3411290759877297,0.0006872471220545013,0.03601125143086108,0.7165670894488452,2,0.9942355137521798,0.9545794961272216,0.505
+87,36,0.7674676404436165,0.0,1.3454010650397221,0.0006997804111205431,0.03578279786820637,0.7156935514837028,2,1.0,0.9915588014787219,0.475
+87,37,0.75,0.0,1.3457122741726604,0.0006937886182422949,0.03598554227665593,0.715632662249537,2,1.0,1.0,0.44499999999999995
+87,38,0.75,0.0,1.34430975411207,0.0006883581763334352,0.03555676364190946,0.7159202012014434,2,1.0,1.0,0.4149999999999999
+87,39,0.71,0.0,1.3415955540530522,0.0006832214935820046,0.03561830904106107,0.7164739743191046,2,1.0,1.0,0.4099999999999999
+87,40,0.72,0.0,1.3362954224751613,0.0006822628607803356,0.03515978348259682,0.7175497900231717,2,1.0,1.0,0.3999999999999999
+87,41,0.633357635511378,0.0,1.3477193566032741,0.0006817167759247719,0.035628980398121075,0.7152289566616582,2,1.0,0.9445254517045936,0.3799999999999999
+87,42,0.77,0.0,1.3522462197137473,0.0006899877511301676,0.035899955426798365,0.714302667638981,2,1.0,1.0,0.34999999999999987
+87,43,0.75,0.0,1.3495445080197233,0.0006850990373053284,0.03596451371511886,0.7148556913746443,2,1.0,1.0,0.31999999999999984
+87,44,0.6341425080456249,0.0,1.3577999690726006,0.0006853556290558698,0.03574186297787818,0.7131698372261186,2,1.0,0.9471416934854163,0.2999999999999998
+87,45,0.77,0.0,1.3551524041613137,0.0006859465636012423,0.03614081336866031,0.7137108721612627,2,1.0,1.0,0.2699999999999998
+87,46,0.6334900801889289,0.0,1.350785873277251,0.0006808637809831622,0.03542216285935632,0.7146043152129128,2,1.0,0.9449669339630964,0.2499999999999998
+87,47,0.766995209714871,0.0,1.3477821777124,0.0006812030400675814,0.03576677459248173,0.7152163705827139,2,1.0,0.9899840323829034,0.2199999999999998
+87,48,0.6331449312651241,0.0,1.342914596194234,0.0006759478653006869,0.035265041243133885,0.716208905693754,2,1.0,0.9438164375504134,0.19999999999999982
+87,49,0.5986242762232303,0.0,1.3395690282847355,0.00067626077476612,0.035432433629959806,0.7168882856151195,2,1.0,0.8954142540774347,0.17999999999999983
+88,0,0.21273928141348733,0.0,1.3549731146679649,0.0007104045889995733,0.03590738104948944,0.7137375103198762,1,0.16938245611494734,0.24485140591085253,0.0
+88,1,0.12938464009948913,0.0,1.3543355910446566,0.0007119496839036994,0.03639817690996917,0.7138671178173996,1,0.18670802242453363,0.21345610750300786,0.06
+88,2,0.2201193034541604,0.0,1.360676308066418,0.0007093442634133612,0.03621061323058851,0.7125712704199235,1,0.21770863007440736,0.27973760976039275,0.06999999999999999
+88,3,0.15640569839761342,0.0,1.3840615998892345,0.000698715652177025,0.03666229405449546,0.7077623368496546,1,0.2346591552889053,0.24758331348832197,0.13
+88,4,0.14198254191395368,0.0,1.3840413381213508,0.000698596402437918,0.0367015435965662,0.707766577000528,1,0.2675581974043552,0.22779057607476447,0.19
+88,5,0.2550026998574621,0.0,1.3839344401444553,0.0006985150981448536,0.036679932075876526,0.7077887201753371,1,0.3252453309515458,0.27055611341473695,0.2
+88,6,0.2641132517648244,0.0,1.3847111870165472,0.000699176902290248,0.0366794725395668,0.7076277706314698,1,0.3703804481032494,0.28160031642895716,0.25
+88,7,0.2647030798867432,0.0,1.3850016935667675,0.0006992660879184398,0.03657969590481737,0.7075676269925083,1,0.40915635170827686,0.3049945226294878,0.3
+88,8,0.3567036536987309,0.0,1.3825751968371547,0.0006983329618418071,0.03644711801428558,0.7080698399836914,1,0.4739081459145557,0.369452675428788,0.3
+88,9,0.37792956684372286,0.0,1.3830080330579055,0.0006994955805906485,0.03641560310588142,0.7079798809456865,1,0.5240775473161506,0.4483414176102339,0.3
+88,10,0.4104964330998719,0.0,1.3853725991518158,0.0006995608088527636,0.03652806396948146,0.7074907529194118,1,0.5710122708701723,0.5021404609843722,0.31
+88,11,0.4296714693789271,0.0,1.3852477711717495,0.0006994820527857701,0.03665285692508693,0.7075166176946958,1,0.618781309926655,0.5436600363486597,0.36
+88,12,0.4947321306600453,0.0,1.3087557188624284,0.0006595006633217896,0.03456492441450081,0.7231068446482838,1,0.6779164737353952,0.5915378828421898,0.36
+88,13,0.41235398689701025,0.0,1.3024779620454785,0.000656645155442445,0.03452023445348749,0.7243631761731337,1,0.7064779875630365,0.5502889708331583,0.42
+88,14,0.48028569969666546,0.0,1.3150215730273984,0.0006579947640978662,0.034942734889241836,0.7218511269690949,1,0.7293046013168983,0.5834302974525036,0.47
+88,15,0.4766392318025962,0.0,1.3122878477638427,0.0006567595634555059,0.03457493816567884,0.7224001723904833,1,0.7642608787274797,0.5971597474932613,0.52
+88,16,0.49194272103134895,0.0,1.3088757771817594,0.0006553097319926717,0.03477709124098121,0.7230844838584772,1,0.7914823978361365,0.6164129392956709,0.5700000000000001
+88,17,0.45986339919709085,0.0,1.3431212770976029,0.0007100036727604954,0.03572081127304897,0.716153049776986,2,0.8317214132983427,0.5625363484755697,0.6300000000000001
+88,18,0.6151595271356382,0.0,0.8222517851749973,0.0004860601445777082,0.02397278275404192,0.809501775870825,2,0.8941239213743901,0.6073871821820055,0.6000000000000001
+88,19,0.4919236338628463,0.05,1.2063353717741832,0.0008235775641789249,0.0354846590207635,0.7284984150914576,2,0.9317664978385702,0.5526845320644893,0.5800000000000001
+88,20,0.4665051283821896,0.0,0.8656841412168903,0.000617009527749633,0.02653497345459429,0.8026724745816289,2,0.9473916178522435,0.5163935404463481,0.56
+88,21,0.4581828236626,0.0,0.8792151038931939,0.0006140378964608213,0.02717314070251011,0.8005214826137753,2,0.9647243652406042,0.46843098609462835,0.54
+88,22,0.560125765518052,0.0,0.9061831434082483,0.0006107442739585309,0.027234799939413655,0.7961811892490904,2,1.0,0.500419218393507,0.535
+88,23,0.5855243233318701,0.05,0.8978644706268797,0.0006025972194357191,0.027210531356875324,0.7851492683631909,2,1.0,0.5517477444395669,0.525
+88,24,0.5006438073110433,0.05,0.9376241899867352,0.0005943500252567877,0.02752315296743213,0.7783690417394066,2,1.0,0.5021460243701446,0.505
+88,25,0.581417136946519,0.0,0.9667359568211938,0.0005937785899926815,0.02806718159452295,0.7861842448121993,2,1.0,0.5380571231550633,0.495
+88,26,0.49388011840467305,0.05,0.984677803571651,0.0005861117002360405,0.027975654305748478,0.7701485120122078,2,1.0,0.4796003946822436,0.475
+88,27,0.5615657503547199,0.0,1.0256357654275636,0.0005889874511162082,0.029198833946803754,0.7761181418796224,2,1.0,0.5052191678490665,0.47
+88,28,0.639261125802574,0.05,1.0040150962670977,0.0005799494929055607,0.0282622544151717,0.7667097650058233,2,1.0,0.5642037526752467,0.43999999999999995
+88,29,0.6327674332462166,0.1,1.0154225268272477,0.0005968726984570783,0.029003026426503632,0.7508935772250586,2,1.0,0.6092247774873891,0.4099999999999999
+88,30,0.5200641676611659,0.1,1.2118276985403291,0.0008201052585007312,0.03480268565819281,0.712289997431733,2,1.0,0.5668805588705531,0.3899999999999999
+88,31,0.6014530006356547,0.05,1.0009118082758757,0.0006201211857777617,0.028831390658076522,0.7672500307170858,2,1.0,0.6048433354521823,0.3799999999999999
+88,32,0.5186807078083175,0.1,1.204227552677341,0.0008249682672648272,0.03493885044185395,0.7138430146733953,2,1.0,0.5622690260277251,0.3599999999999999
+88,33,0.6529131329490553,0.05,1.060856465668214,0.0006157637490914066,0.02937995366074353,0.7563758991937395,2,1.0,0.6097104431635176,0.32999999999999985
+88,34,0.6493699835023714,0.1,1.242641146601101,0.000750729336333523,0.03496308660687858,0.7059630365959437,2,1.0,0.6645666116745713,0.2999999999999998
+88,35,0.6637275978630506,0.1,1.2364793099457467,0.0007435666039040671,0.03513395144038024,0.7072434467280931,2,1.0,0.7124253262101686,0.2699999999999998
+88,36,0.6362589400645584,0.1,1.2231253348338142,0.000735220080239658,0.034117672027166375,0.7100041546224783,2,1.0,0.7541964668818614,0.2649999999999998
+88,37,0.6244402768558047,0.1,1.2342364162915984,0.0007249830532068712,0.034550948664568815,0.7077153104850805,2,1.0,0.7814675895193491,0.2599999999999998
+88,38,0.7167254086690085,0.1,1.2417618802197803,0.0007159595722636176,0.03427632412644237,0.7061599504982506,2,1.0,0.8224180288966951,0.2299999999999998
+88,39,0.579231106108455,0.1,1.32355793113673,0.0006720985507240899,0.034933166287304175,0.6889248930060969,2,1.0,0.7641036870281835,0.2099999999999998
+88,40,0.7112498053724252,0.05,1.1491937521531979,0.0006482717191023246,0.03229529636651941,0.739719218852592,2,1.0,0.8041660179080844,0.1799999999999998
+88,41,0.6806317933652327,0.05,1.3089543697111992,0.0006727252778368688,0.03508711121466053,0.7077952661223473,2,1.0,0.8687726445507757,0.1699999999999998
+88,42,0.6784611904682625,0.0,1.31665031375978,0.0006916868660410737,0.03524469131589643,0.7215104473690459,2,1.0,0.8948706348942084,0.16499999999999979
+88,43,0.6677856570866836,0.0,1.3139342109985375,0.0006850850295476372,0.0354250211608263,0.7220585237402742,2,1.0,0.9259521902889456,0.15999999999999978
+88,44,0.7154044102354884,0.0,1.3127287479369425,0.0006796338946146747,0.035117187822653044,0.722302570165207,2,1.0,0.984681367451628,0.14999999999999977
+88,45,0.6291712538267125,0.0,1.3191371678778838,0.000695376548122453,0.03538821177197156,0.7210089964581446,2,1.0,0.9305708460890414,0.12999999999999978
+88,46,0.7008382643976554,0.0,1.3338457931540444,0.0006908277207292158,0.03562923988168474,0.7180425288032152,2,1.0,0.9694608813255182,0.12499999999999978
+88,47,0.69,0.0,1.3318206380213473,0.0006849413673993652,0.03521536679428479,0.7184547368115703,2,1.0,1.0,0.11999999999999977
+88,48,0.72,0.0,1.3286329125636327,0.0006793654809770181,0.03521204079120142,0.7191013453821847,2,1.0,1.0,0.10999999999999978
+88,49,0.77,0.0,1.3336157900380672,0.0006902516943908509,0.03542489077513002,0.7180893255316763,2,1.0,1.0,0.07999999999999978
+89,0,0.2039738655901814,0.0,1.3599827252019248,0.0007105556285689409,0.036033214454711,0.7127128085144354,1,0.15391778061798722,0.23367547457961962,0.0
+89,1,0.11578725151155853,0.0,1.3593587749955094,0.0007119339339682681,0.03643720922043222,0.7128399831204965,1,0.1751523179885869,0.1816131340518437,0.06
+89,2,0.21662654203826198,0.0,1.3759197369406142,0.0006983805226915971,0.036362651424999316,0.7094436425958868,1,0.22269038559361048,0.262283023601661,0.06999999999999999
+89,3,0.1607693815619386,0.0,1.3848943676693497,0.0006992227715041234,0.036688673637207146,0.7075898518337366,1,0.24970488800340265,0.2445755692024923,0.13
+89,4,0.23127451581794067,0.0,1.3847795090622037,0.000699102621078892,0.03672937017114512,0.707613665971556,1,0.2987749817140654,0.25567757406005925,0.18
+89,5,0.2755641521608162,0.0,1.3849713023750039,0.0006993099648311948,0.03672371295693968,0.7075738972095421,1,0.34301564183698663,0.318362258392903,0.19
+89,6,0.296046944243209,0.0,1.3855802549450975,0.0006996833070067353,0.036705857976264175,0.7074477264966796,1,0.4044976922197987,0.34824250655426486,0.24
+89,7,0.36611106087370343,0.0,1.3826326633713424,0.0007016503777785052,0.036597007019716535,0.7080565896096316,1,0.4676268405252118,0.4081388889662645,0.24
+89,8,0.37723077312081876,0.0,1.380562442123056,0.0006970857795838859,0.03656320993387467,0.7084862312184802,1,0.5068978410652488,0.4660550958266058,0.25
+89,9,0.433031453712094,0.0,1.3805643661600162,0.0006964423280781382,0.03625638153600773,0.7084860996289637,1,0.5595625418991118,0.523948546824683,0.25
+89,10,0.3477921644399785,0.0,1.3814482186126895,0.0006967563477864384,0.036521832534995066,0.7083033910564387,1,0.5763843139493269,0.4868588485257137,0.31
+89,11,0.47273838913606503,0.0,1.3830484447402922,0.0006982080602184518,0.03657179323957582,0.7079720583715235,1,0.6557159997629948,0.5441259640633898,0.31
+89,12,0.46539118281548486,0.0,1.3771924241296163,0.0006944986840885707,0.03638112320871144,0.7091828305993328,1,0.6866890904973361,0.5835000038047242,0.36
+89,13,0.5143292216799664,0.0,1.3080594697264005,0.0006549887053678,0.034599481353481114,0.7232480345491832,1,0.7431725825085863,0.6473960593398705,0.37
+89,14,0.46536555364734944,0.0,1.3332272877607847,0.0006713994089814606,0.03493947878848762,0.7181755975666367,1,0.7972159362618323,0.6211332531856939,0.43
+89,15,0.5430977358803812,0.0,1.3293078150974509,0.0006676236689973499,0.03538628077437987,0.7189697435013048,1,0.8382170016360173,0.665739284359251,0.48
+89,16,0.6184417169502292,0.05,1.0935060956873783,0.000585021818605573,0.030512861680052728,0.750320782412509,1,0.90806362742779,0.735398157835009,0.48
+89,17,0.6051493099182255,0.1,1.088272252614169,0.0005775980241863337,0.030232246857577007,0.7370268817947443,1,0.9458914345441071,0.7469576927592935,0.53
+89,18,0.5531858651387347,0.1,1.1166321802785977,0.0005959548268845416,0.03105078356649234,0.7314861733675755,1,0.9743494377241387,0.7072118731176206,0.5900000000000001
+89,19,0.6404226476256202,0.05,1.145206990742787,0.0005888401335155239,0.03127706397598136,0.7405089157071215,2,1.0,0.7680754920854008,0.6000000000000001
+89,20,0.7203785200918089,0.1,1.2019241801251188,0.0008266063128662805,0.03511532773950032,0.7143126268669878,2,1.0,0.8345950669726964,0.5700000000000001
+89,21,0.671445854924936,0.1,1.3553948180040198,0.0007044886518927315,0.03596305257631103,0.6820472618314573,2,1.0,0.8714861830831202,0.5650000000000001
+89,22,0.7446304480134958,0.0,1.349500998198903,0.0007032196578275988,0.03632760557551277,0.7148571729780581,2,1.0,0.9154348267116524,0.535
+89,23,0.6077934354474106,0.0,1.347815331897507,0.0006970919457905217,0.03588277458178192,0.7152031449245706,2,1.0,0.8593114514913689,0.515
+89,24,0.5772958151687375,0.0,1.3503038926187587,0.000708044153675861,0.03615695764769579,0.7146915181470521,2,1.0,0.824319383895792,0.495
+89,25,0.6629585746157531,0.0,1.351209286196704,0.0007177231170079927,0.036166892822739063,0.7145029169007517,2,1.0,0.8431952487191772,0.49
+89,26,0.6882998323452323,0.0,1.345634549542826,0.0007178744640967268,0.03635587874133255,0.7156386763096271,2,1.0,0.8943327744841076,0.48
+89,27,0.7415417632429667,0.0,1.3556735225578933,0.0007113606611127541,0.035993193640608045,0.7135939933677213,2,1.0,0.9051392108098892,0.44999999999999996
+89,28,0.6943213030960698,0.0,1.3575622237837035,0.0007050679210401505,0.03636065647827602,0.713210403720813,2,1.0,0.9477376769868994,0.44499999999999995
+89,29,0.7118838630146607,0.0,1.3518494627059767,0.000704446042583397,0.03583679982852227,0.7143777285228762,2,1.0,0.9729462100488689,0.43499999999999994
+89,30,0.71,0.0,1.3604244895242188,0.0007001793646110077,0.036252373833682836,0.7126265972572361,2,1.0,1.0,0.42999999999999994
+89,31,0.77,0.0,1.3541689946836977,0.0006986126081890563,0.03596026523104588,0.7139065937858526,2,1.0,1.0,0.3999999999999999
+89,32,0.71,0.0,1.3557708739770342,0.0006938536477693731,0.036023590465151065,0.7135812528310527,2,1.0,1.0,0.3949999999999999
+89,33,0.6361044405416293,0.0,1.3493283667719755,0.0006917898575724925,0.03606453072960198,0.7148970194906027,2,1.0,0.9536814684720977,0.3749999999999999
+89,34,0.7195029529726265,0.0,1.3526737311164048,0.0007029242986334378,0.03591226708737532,0.7142101344956999,2,1.0,0.9983431765754214,0.3649999999999999
+89,35,0.7,0.0,1.3608891816446114,0.0006989712836536261,0.03645579345954025,0.7125319184915,2,1.0,1.0,0.35499999999999987
+89,36,0.7,0.0,1.3664788619277952,0.0006961693811449812,0.035902092796062005,0.7113867750067868,2,1.0,1.0,0.34499999999999986
+89,37,0.71,0.0,1.3699127318601663,0.0006940322382807547,0.036432908522670025,0.7106821152439968,2,1.0,1.0,0.33999999999999986
+89,38,0.69,0.0,1.3645891232917773,0.0006919153398830439,0.03606657812900628,0.7117763582874395,2,1.0,1.0,0.33499999999999985
+89,39,0.69,0.0,1.3586771005215323,0.0006894713080802906,0.036034832583914586,0.7129886944559617,2,1.0,1.0,0.32999999999999985
+89,40,0.72,0.0,1.3260334573826,0.0006626869065294346,0.03521575339959444,0.719632852348571,2,1.0,1.0,0.31999999999999984
+89,41,0.77,0.0,1.3236716365318015,0.0006615394505780599,0.03473714650216607,0.7201095919155585,2,1.0,1.0,0.2899999999999998
+89,42,0.71,0.0,1.334119336752432,0.0006656942840085292,0.03553537931837771,0.7179973225649559,2,1.0,1.0,0.2849999999999998
+89,43,0.72,0.0,1.3267284307139624,0.000660414904413322,0.03478434717506742,0.7194935292323502,2,1.0,1.0,0.2749999999999998
+89,44,0.6370958375849741,0.0,1.3239803295341377,0.0006605818374533147,0.03530680967494807,0.7200477561375849,2,1.0,0.9569861252832472,0.2549999999999998
+89,45,0.7667145919183525,0.0,1.3352513761799827,0.0006680354860797158,0.03522975640356689,0.7177671053248287,2,1.0,0.9890486397278414,0.22499999999999978
+89,46,0.6285588239219189,0.0,1.344088008515035,0.0006720440137347964,0.035679796108251026,0.7159719325381237,2,1.0,0.9285294130730631,0.2049999999999998
+89,47,0.708035431160247,0.0,1.3527476963447134,0.0006784537856394522,0.03573859429256721,0.7142050266778303,2,1.0,0.96011810386749,0.19499999999999978
+89,48,0.7075684211346023,0.0,1.3500048400813758,0.0006766362355555468,0.03539040038572064,0.7147653001083459,2,1.0,0.9918947371153409,0.18999999999999978
+89,49,0.69,0.0,1.3445265215567197,0.0006733084728246664,0.035572616996502125,0.7158822354120493,2,1.0,1.0,0.18499999999999978
+90,0,0.08774917068552278,0.0,1.3596165787891619,0.0007118278646318784,0.036019371521195484,0.7127872514390773,1,0.10914857078315171,0.16515723637139895,0.06
+90,1,0.20174633299486433,0.0,1.3766794158711806,0.0007042981015199026,0.036405613383055216,0.709284582109659,1,0.15858009179254834,0.22081100289157468,0.06
+90,2,0.22234144181539464,0.0,1.3596301088102642,0.000711809018193822,0.0362321826865477,0.7127844892603189,1,0.22745638857344463,0.2757723527156301,0.06
+90,3,0.2598413433930234,0.0,1.3854729552532292,0.0006996428459913888,0.036709546783135504,0.7074699500776948,1,0.29877913140544027,0.3175621580037311,0.06
+90,4,0.27059887046196224,0.0,1.38505318886866,0.0006994510384898226,0.036742167406049436,0.7075568951532106,1,0.3326044600651437,0.3472910314638731,0.11
+90,5,0.26768441013800026,0.0,1.3852897344008048,0.0006994715635684556,0.03673816480731029,0.7075079382217863,1,0.36774481657598246,0.3632457477880214,0.16
+90,6,0.3600009251519576,0.0,1.3852889613909964,0.0006995016976688647,0.036692779506692766,0.7075080857168373,1,0.4360344393726525,0.42462957123843065,0.16
+90,7,0.3504931110932602,0.0,1.3829439507690855,0.0006982213306958012,0.03649823933241609,0.7079936562951397,1,0.4657274504583815,0.45829501144275564,0.21000000000000002
+90,8,0.42014859780386926,0.0,1.3816664784861177,0.0006976776121644235,0.036556968877838894,0.7082579136808875,1,0.5310782536187512,0.5142373634576879,0.21000000000000002
+90,9,0.4145956022377043,0.0,1.3822432346947935,0.0006974435972809309,0.03621561671940453,0.7081388217477209,1,0.5831027991736248,0.5350320750897853,0.26
+90,10,0.36150105319767545,0.0,1.3805863487346972,0.0006965888379992091,0.03654173480725979,0.7084814989500656,1,0.6030039708636246,0.5014988779846895,0.32
+90,11,0.3317797672445151,0.0,1.3826957251768273,0.0006995044625605863,0.03656149179232983,0.7080444409752348,1,0.6240089694073887,0.44458875983976365,0.38
+90,12,0.41792273608620956,0.0,1.315887976094277,0.0006606542422094444,0.03476658304116535,0.7216760669661185,1,0.6610921658656393,0.4551349267774528,0.43
+90,13,0.48793388756505685,0.0,1.3125613915277725,0.0006585500729228669,0.0346958916178924,0.7223445948704856,1,0.7141401280580129,0.5266161424825081,0.43
+90,14,0.47851311520354123,0.0,1.307858952910812,0.000656748326789789,0.03464783778319696,0.7232874639112077,1,0.7466792388914019,0.5572512719718353,0.48
+90,15,0.47863319709047275,0.0,1.3038977053308547,0.0006543609730162532,0.03447124028766368,0.724080531003188,1,0.7955424410052102,0.5673111424621641,0.53
+90,16,0.44263519911951277,0.0,1.2996869733404166,0.0006518700318832568,0.03440044301379172,0.7249219835584119,1,0.8142604436632257,0.5254801461246126,0.5900000000000001
+90,17,0.5228458898652336,0.0,1.311524121421376,0.0006524345527557859,0.035141853883756104,0.722555036718113,2,0.8578645282598922,0.5753110165809046,0.6400000000000001
+90,18,0.5739881982919396,0.05,1.0433288638589315,0.0006174775986101215,0.029569887870465984,0.7595905781614494,2,0.916384446388996,0.6108454735193035,0.6300000000000001
+90,19,0.6002845424784693,0.1,1.1340200259624587,0.0007935341761117823,0.03368122430245076,0.7279789947041359,2,0.9827101830796682,0.6544532613352849,0.6250000000000001
+90,20,0.5891868276374987,0.1,1.151830005881428,0.0007806720285485791,0.03407408051034086,0.724443013991454,2,1.0,0.6639560921249962,0.6200000000000001
+90,21,0.6811793921830478,0.1,1.1586804229315497,0.0007682571675648375,0.03364305236065172,0.7230783685671006,2,1.0,0.703931307276826,0.5900000000000001
+90,22,0.6762590257970751,0.15000000000000002,1.1479342077280734,0.0007614514100137733,0.03361634534876155,0.7100327045585626,2,1.0,0.7541967526569173,0.56
+90,23,0.5589807448933358,0.15000000000000002,1.1438165822410082,0.0007546308192245325,0.03373832479699092,0.7108825370052331,2,1.0,0.696602482977786,0.54
+90,24,0.6416669141930889,0.10000000000000002,1.169080223122462,0.0007411837568305408,0.03362594970402956,0.7210020224280355,2,1.0,0.7388897139769629,0.53
+90,25,0.6373854797851004,0.15000000000000002,1.170554893067221,0.0007765500545419571,0.03421444408722853,0.7053471079323057,2,1.0,0.757951599283668,0.525
+90,26,0.6623992640010129,0.15000000000000002,1.1834333556493464,0.0007636034197532284,0.033904039219824225,0.7026688939052017,2,1.0,0.8079975466700432,0.515
+90,27,0.7199579769825182,0.10000000000000002,1.3849650364673924,0.0006993998089612373,0.03659773424538808,0.675602695987133,2,1.0,0.8331932566083942,0.485
+90,28,0.592393089755368,0.10000000000000002,1.384832243325914,0.0006991697298220938,0.03637203639386319,0.6756318995890367,2,1.0,0.8079769658512269,0.46499999999999997
+90,29,0.5558339409388409,1.3877787807814457e-17,1.3855705667055496,0.0006997939968135228,0.0365041079621384,0.7074496858056708,2,1.0,0.7527798031294698,0.44499999999999995
+90,30,0.6453432764972735,0.0,1.1769454540233315,0.0008685997334746914,0.03540204341436996,0.7486297053670953,2,1.0,0.7844775883242452,0.43999999999999995
+90,31,0.5714300433824444,0.05,1.1837600556677588,0.0008474212460385256,0.03511428938400245,0.7329311155004897,2,1.0,0.7381001446081482,0.41999999999999993
+90,32,0.6410180650501613,0.0,1.2123590502720298,0.0008279905115372828,0.035120927666610666,0.7419225202661444,2,1.0,0.7700602168338712,0.4149999999999999
+90,33,0.7148890002052009,0.05,1.211147716905833,0.0008134361534396852,0.035365736407305594,0.7275495632416387,2,1.0,0.8162966673506697,0.3849999999999999
+90,34,0.7059297812262536,0.05,1.3796276351367451,0.000697804423867894,0.036529694023069104,0.6929562788744761,2,1.0,0.8530992707541788,0.35499999999999987
+90,35,0.6784444428382872,0.0,1.3783257882777589,0.0006985355264560322,0.036593350778259544,0.7089473613603319,2,1.0,0.8948148094609575,0.34999999999999987
+90,36,0.7572842298106619,0.0,1.3763692168623272,0.0006958842716989538,0.03619534070949831,0.7093520103813263,2,1.0,0.9576140993688733,0.31999999999999984
+90,37,0.7054459429948624,0.0,1.3462733379686014,0.0007052060069350151,0.03585168531500861,0.7155138224385617,2,1.0,0.9848198099828748,0.31499999999999984
+90,38,0.69,0.0,1.3546893650220324,0.0006999027828126772,0.03620337838513438,0.7137997723148661,2,1.0,1.0,0.30999999999999983
+90,39,0.6347934455495978,0.0,1.3602607819229149,0.0006959183131675754,0.0361016640660256,0.712661866874643,2,1.0,0.949311485165326,0.2899999999999998
+90,40,0.6044576182982506,0.0,1.3636603605387192,0.0006930603921372858,0.03611819851295313,0.7119663875701557,2,1.0,0.9148587276608355,0.2699999999999998
+90,41,0.6890686366670526,0.0,1.365172380676758,0.0006907141563899119,0.036280915398940364,0.7116571807740378,2,1.0,0.9302287888901758,0.2649999999999998
+90,42,0.7606262138769192,0.0,1.3691187758534995,0.0006900051471577477,0.03599345076700289,0.7108469911343305,2,1.0,0.9687540462563974,0.2349999999999998
+90,43,0.75,0.0,1.3731367166730624,0.0006970974426621594,0.03654710929853007,0.7100175097088253,2,1.0,1.0,0.2049999999999998
+90,44,0.75,0.0,1.374999594492989,0.0007038641030856671,0.0361546245965785,0.70963101825995,2,1.0,1.0,0.1749999999999998
+90,45,0.72,0.0,1.375125178932574,0.000710011370764925,0.03655896083149124,0.7096026068092036,2,1.0,1.0,0.16499999999999979
+90,46,0.7,0.0,1.3709665502198283,0.0007109275084986077,0.036438450626911464,0.7104584374334197,2,1.0,1.0,0.15499999999999978
+90,47,0.77,0.0,1.3660522578089924,0.0007113561125354298,0.03651732145654743,0.7114681205396921,2,1.0,1.0,0.12499999999999978
+90,48,0.71,0.0,1.365646725741524,0.0007204354097194122,0.036665172945810544,0.7115476345297144,2,1.0,1.0,0.11999999999999977
+90,49,0.6282700785259234,0.0,1.3706189576754262,0.0007143537682682947,0.036625010679654416,0.710528525098797,2,1.0,0.927566928419745,0.09999999999999977
+91,0,0.18090727316913696,0.0,1.3589758424598686,0.0007130443383339015,0.03603670767880489,0.7129179081689254,1,0.1352538145422627,0.24522812693115,0.01
+91,1,0.1950411967952895,0.0,1.3583843575192667,0.0007141824050584226,0.036438469820028116,0.7130384840275588,1,0.18332886031891818,0.3029203189455605,0.02
+91,2,0.22584030875321326,0.0,1.357717529080137,0.0007153039246074728,0.036258079997292844,0.7131744486510415,1,0.2211866205115121,0.36141663858061346,0.03
+91,3,0.304984859600283,0.0,1.3845684428736145,0.0006989842314924182,0.036686326887137424,0.7076573819119546,1,0.28003439611219944,0.42324273653671063,0.03
+91,4,0.326466009723441,0.0,1.3786971094937646,0.0006953006650864165,0.036506424829096426,0.7088720717994477,1,0.33799151712145525,0.4938965957697722,0.04
+91,5,0.34562070591573724,0.0,1.3812142538650904,0.0006965970321787937,0.03657723157494966,0.7083517939120333,1,0.38964847130177815,0.564145803200383,0.05
+91,6,0.3897317905620258,0.0,1.3829549868177726,0.0006979956683852658,0.0366159224910309,0.7079914680188751,1,0.44044389317818883,0.6519214264988658,0.060000000000000005
+91,7,0.47501553407641484,0.0,1.3805013188322446,0.0006965321296245007,0.03639579088201027,0.7084990837528993,1,0.5158917352465845,0.7148447558003674,0.060000000000000005
+91,8,0.3891117459135357,0.0,1.381493579723251,0.0006967939698605944,0.03654911528872814,0.7082940033760984,1,0.5370877916775325,0.670436729421331,0.12
+91,9,0.5032495751983797,0.0,1.3831709872710611,0.000698360661499237,0.036255813894035385,0.7079466592457866,1,0.5954308770145518,0.716162560810955,0.12
+91,10,0.5188931676250101,0.0,1.3835018558666021,0.0006982221838521001,0.0365090391633327,0.7078783020190179,1,0.6594840286614773,0.7602458586449773,0.12
+91,11,0.5614138997225712,0.0,1.322036140611063,0.0006759184538886135,0.034875253633574785,0.7204333182239518,1,0.7181576657792442,0.8335290556661191,0.13
+91,12,0.620833648985751,0.0,1.374683936643989,0.0007050261375324053,0.0365990493708762,0.7096955779595822,1,0.7849319129784909,0.8870249314775975,0.13
+91,13,0.6432448733053158,0.0,1.3741390457117906,0.0007008628953089299,0.03645504502230037,0.7098095428835991,1,0.8537097706189789,0.9481548452955774,0.13
+91,14,0.6757348105077812,0.0,1.0702772519316082,0.0006075576234916299,0.03041386791595061,0.76825919329186,1,0.9020994585936608,1.0,0.13
+91,15,0.7006212303741571,0.05,1.1024297225801267,0.0006006153792677974,0.03113225989424166,0.7486394343456059,1,0.9732035153547348,1.0,0.13
+91,16,0.71,0.05,1.144465474919411,0.0006055409123421457,0.030771987070294014,0.740644960555439,1,1.0,1.0,0.14
+91,17,0.73,0.05,1.1686831333824337,0.0006052502141630578,0.03231574441609173,0.7359660635255982,1,1.0,1.0,0.14
+91,18,0.6435627184810928,0.05,1.1936347084495442,0.0006031168347289002,0.03190971286136691,0.7310898501581379,1,1.0,0.9785423949369763,0.2
+91,19,0.7,0.0,1.1748167194123549,0.0005875691926675501,0.031944446105053786,0.7491357292571366,1,1.0,1.0,0.25
+91,20,0.6799999999999999,0.05,1.1832104238125516,0.0006340169698071923,0.032220956537376735,0.7331222034915156,1,1.0,1.0,0.3
+91,21,0.71,0.05,1.206466354452506,0.0006927489464585317,0.03340166104769754,0.7285242602409946,1,1.0,1.0,0.31
+91,22,0.73,0.1,1.226842783582268,0.0006838737630198216,0.034298273482695554,0.7092593180415057,1,1.0,1.0,0.31
+91,23,0.6343673524856488,0.05,1.254829422918963,0.0006782427267786695,0.03384851647192705,0.7188600472209827,1,1.0,0.9478911749521628,0.37
+91,24,0.73,0.0,1.3068404499256354,0.0008058159453203357,0.03673335744723284,0.7234316170702649,1,1.0,1.0,0.37
+91,25,0.6358887702923175,0.0,1.3151107281112948,0.0007932756186687673,0.03627278987166368,0.7217788965206213,1,1.0,0.9529625676410585,0.43
+91,26,0.73,0.0,1.3104820721338402,0.0008002570240285575,0.036657640533700686,0.7227046429826064,1,1.0,1.0,0.43
+91,27,0.6331429299867997,0.0,1.3199298002261408,0.000784404493190623,0.03631579098597122,0.7208136957600678,1,1.0,0.9438097666226658,0.49
+91,28,0.6952662099040892,0.0,1.3153770450124473,0.000789587871062796,0.03667246915716537,0.7217268944437106,1,1.0,0.9842206996802971,0.54
+91,29,0.6336430029408162,0.0,1.3104253068459015,0.0007973405245301392,0.036459781858854956,0.7227171876698039,2,1.0,0.9454766764693877,0.6000000000000001
+91,30,0.5977290104041562,0.0,1.373239873133468,0.0006924602132033429,0.036266950194163386,0.7099981797140505,2,1.0,0.8924300346805206,0.5800000000000001
+91,31,0.7054687148789125,0.0,1.3757567953904022,0.0006964259422920745,0.036501451364155425,0.7094780348917153,2,1.0,0.9515623829297084,0.5700000000000001
+91,32,0.6280863827858787,0.0,1.3746665817176429,0.0006940723295763995,0.036280496239862944,0.7097036670667953,2,1.0,0.9269546092862622,0.55
+91,33,0.5960589861118297,0.0,1.3763402871163128,0.0006974681849161186,0.03645641361973221,0.7093573217323563,2,1.0,0.8868632870394325,0.53
+91,34,0.5782953385187599,0.0,1.3769444516968476,0.0007004584851193134,0.0364258182821174,0.7092315123314683,2,1.0,0.8276511283958664,0.51
+91,35,0.5651280048115768,0.0,1.3767949558485075,0.0007030985658470501,0.03634974723654077,0.7092612519065508,2,1.0,0.7837600160385894,0.49
+91,36,0.7233751891885849,0.0,1.1572352574422933,0.0007968302141165802,0.034118880800967255,0.7523473728783495,2,1.0,0.8445839639619498,0.45999999999999996
+91,37,0.7203021997506056,0.0,1.374753148109822,0.0006942015192894304,0.036283404412201195,0.7096857787220594,2,1.0,0.9010073325020187,0.42999999999999994
+91,38,0.6003803721755678,0.0,1.3783291693731805,0.0006949738995658366,0.036474468786771005,0.7089481335204267,2,1.0,0.8346012405852262,0.4099999999999999
+91,39,0.6782143052904236,0.0,1.3801669635996432,0.000697428462877655,0.036557941875418956,0.7085677625157236,2,1.0,0.8940476843014121,0.4049999999999999
+91,40,0.6048318690639622,0.0,1.3777924297055868,0.000696895522386854,0.03657573552052185,0.7090580794843351,2,1.0,0.8494395635465408,0.3849999999999999
+91,41,0.6926329296968394,0.0,1.3789673674763,0.0007001232188426919,0.03649992061966284,0.7088143041339103,2,1.0,0.9087764323227984,0.3749999999999999
+91,42,0.6878920024853501,0.0,1.378230642802084,0.0006975853517014771,0.03644142436640256,0.7089673854869094,2,1.0,0.9263066749511669,0.3699999999999999
+91,43,0.7698075906538024,0.0,1.3757884572633587,0.0006974642677774759,0.03633838847020121,0.7094710806933432,2,1.0,0.999358635512675,0.33999999999999986
+91,44,0.75,0.0,1.3796693265512712,0.0006971878588790457,0.036519312265461665,0.7086706129934384,2,1.0,1.0,0.30999999999999983
+91,45,0.638671989478337,0.0,1.2996016700991064,0.0007705627995593947,0.03595738792900064,0.7248916557753957,2,1.0,0.9622399649277903,0.2899999999999998
+91,46,0.71,0.0,1.3179045344625588,0.0007569277110222407,0.036143997137897885,0.7212321294717603,2,1.0,1.0,0.2849999999999998
+91,47,0.77,0.0,1.319843262003451,0.0007445832238968984,0.036036467483894934,0.7208471369672557,2,1.0,1.0,0.2549999999999998
+91,48,0.72,0.0,1.317423181893324,0.0007558220351819699,0.035919435441485195,0.7213293426644704,2,1.0,1.0,0.24499999999999977
+91,49,0.6382842450478063,0.0,1.312134042262584,0.0007600441233532023,0.03598605550632604,0.7223895911471672,2,1.0,0.9609474834926877,0.22499999999999978
+92,0,0.2120066347734314,0.0,1.3568002843278122,0.0007166527216524423,0.03610383112232833,0.713361488880018,1,0.1598100044586509,0.2535771107096787,0.0
+92,1,0.20908559633062984,0.0,1.356029734629936,0.0007184069900831606,0.03643598604167201,0.7135183053878521,1,0.21999378837901226,0.2736259013265852,0.05
+92,2,0.15831066601049695,0.0,1.384918322299209,0.0006992077906207343,0.036605218174135944,0.7075849016409275,1,0.23830677729402425,0.24967764652529492,0.11
+92,3,0.13915861304308894,0.0,1.3849446064505635,0.0006992665339860569,0.03669912174212804,0.7075794388874276,1,0.25940749103317473,0.22788663727159256,0.16999999999999998
+92,4,0.23633193314941298,0.0,1.3848932467735704,0.0006992952913516229,0.036731164405874886,0.707590053744617,1,0.3033460834615473,0.26720267979290474,0.21999999999999997
+92,5,0.30259780326284946,0.0,1.384845576222022,0.0006994727294245808,0.03672481917424793,0.7075998435630793,1,0.3532838723137055,0.32982815984350855,0.21999999999999997
+92,6,0.3140656444527211,0.0,1.384355179393454,0.0006989398026272992,0.036664158293989606,0.707701517949179,1,0.4012757231977624,0.378730471111681,0.21999999999999997
+92,7,0.32486442484288885,0.0,1.3804899406966524,0.0007037120018565327,0.03660867535398876,0.7084984679664056,1,0.43498707465887887,0.40872982904093746,0.26999999999999996
+92,8,0.2759866541537044,0.0,1.3801342592513133,0.000696102435335378,0.036558123829842616,0.7085750635411018,1,0.47970984391795846,0.3602940292747298,0.32999999999999996
+92,9,0.3671932513716215,0.0,1.3796987610943536,0.0006995339271031859,0.03632155055987991,0.7086635672658834,1,0.5241168043621495,0.41250789948289734,0.33999999999999997
+92,10,0.43202873517598867,0.0,1.3205586878719724,0.0007718436582065489,0.03605061746809061,0.7206921769059087,1,0.5895578691642258,0.48561160322836544,0.33999999999999997
+92,11,0.450989586038864,0.0,1.3149669333042737,0.0007727445438346827,0.03652856655953456,0.7218160168859573,1,0.6523489076910944,0.5422248944899366,0.33999999999999997
+92,12,0.45550323314237123,0.0,1.3055603475749376,0.0006538941795706139,0.03452040449380008,0.7237484181061972,1,0.670720605071037,0.5691700712250277,0.38999999999999996
+92,13,0.4557530717456494,0.0,1.3014951448973706,0.0006517252733996308,0.03449108441284078,0.7245613270612673,1,0.7079441425872914,0.5932420728003247,0.43999999999999995
+92,14,0.421671147067058,0.0,1.2969583465883827,0.0006492491274664131,0.03421814268752114,0.7254668092085893,1,0.7396264868301243,0.5426729222550483,0.49999999999999994
+92,15,0.5109131473541033,0.0,1.3089691444577587,0.0006560581393879069,0.03452848745434406,0.7230654885053089,1,0.774185308948677,0.5998276307402212,0.5099999999999999
+92,16,0.536532552389229,0.0,1.320569968538662,0.0006603139489529573,0.034897719997137956,0.7207348049094279,1,0.8290594715269909,0.654539124515941,0.5599999999999999
+92,17,0.48462813050598086,0.0,1.1760143401206724,0.0007282742805222494,0.03347161041967199,0.7488576705213656,2,0.8566580774660187,0.6159926779762479,0.6199999999999999
+92,18,0.5870683331149482,0.0,1.08192738968732,0.0007295978070152055,0.03235425672159972,0.7661348290830243,2,0.9062027262384341,0.6663245964383211,0.6099999999999999
+92,19,0.6003024113086702,0.05,1.0943563320367602,0.0007823860821984551,0.0330766975728204,0.750087478630887,2,0.96251423920822,0.7114080919526443,0.5999999999999999
+92,20,0.5431203388249344,0.05,1.111913416743899,0.0008318509649515267,0.034093840515438345,0.7467631559660852,2,0.9745137645633896,0.6734684040924936,0.5799999999999998
+92,21,0.6216660394137377,0.0,1.137460043320567,0.0008159967588544908,0.03443906585634719,0.756006421554339,2,1.0,0.7055534647124589,0.5749999999999998
+92,22,0.5461015465753064,0.05,1.143875212190492,0.0008000572274079742,0.03407963794697038,0.7406836129738364,2,1.0,0.653671821917688,0.5549999999999998
+92,23,0.6799374286996976,0.0,1.1777583679312815,0.000784019477913988,0.03454438898707123,0.7485085423593497,2,1.0,0.6997914289989924,0.5249999999999998
+92,24,0.675793497075264,0.05,1.156567433570785,0.0007737356331899083,0.03396007853724651,0.7382485360902515,2,1.0,0.7526449902508804,0.4949999999999998
+92,25,0.5593422381678451,0.05,1.1515745681425773,0.0007636575306727787,0.033806911237009976,0.7392160829240968,2,1.0,0.697807460559484,0.47499999999999976
+92,26,0.695117531434317,0.0,1.178386886998395,0.0007479238102372195,0.03366277795534764,0.7484038027997701,2,1.0,0.7503917714477236,0.44499999999999973
+92,27,0.6602147355154591,0.05,1.1543461351719235,0.0007332964134382372,0.03363769517288421,0.7386931592301279,2,1.0,0.8007157850515303,0.4349999999999997
+92,28,0.6581686715573491,0.0,1.364082449880886,0.0006998728591941722,0.036103824795705,0.71187702728274,2,1.0,0.8272289051911639,0.4299999999999997
+92,29,0.6454812349257286,0.0,1.3595264822913307,0.0007004054420555472,0.03613967277666521,0.7128103724142166,2,1.0,0.8516041164190954,0.4249999999999997
+92,30,0.658136427968309,0.0,1.3554813008870734,0.0007004968268351101,0.03592674622885492,0.7136377178232078,2,1.0,0.8937880932276967,0.4199999999999997
+92,31,0.673045749554608,0.0,1.3506806627871957,0.000700186308597442,0.036043125470533594,0.7146178907057785,2,1.0,0.9434858318486936,0.4149999999999997
+92,32,0.617373347615774,0.0,1.3450367702020956,0.0006994192760622131,0.0355921103887446,0.7157678179632867,2,1.0,0.89124449205258,0.3949999999999997
+92,33,0.5831829667656913,0.0,1.3471827291178666,0.0007102124218194662,0.036213570041116444,0.7153266371954418,2,1.0,0.8439432225523044,0.37499999999999967
+92,34,0.7368077160209991,0.0,1.3478176796417685,0.0007196037160393012,0.036168687401704924,0.7151934958826004,2,1.0,0.8893590534033305,0.34499999999999964
+92,35,0.7013018028067199,0.0,1.358603585162475,0.000713160450301257,0.036443781672121915,0.7129940430077792,2,1.0,0.9376726760223998,0.33499999999999963
+92,36,0.7674834171054996,0.0,1.3592700713890091,0.0007069666078563235,0.03626731036773483,0.7128601738634804,2,1.0,0.9916113903516655,0.3049999999999996
+92,37,0.71,0.05,1.234121376820338,0.0008156079985673465,0.0357820696643902,0.7229710982045039,2,1.0,1.0,0.2999999999999996
+92,38,0.72,0.0,1.2403600962895716,0.0007944354169185518,0.035697307634302254,0.7365378734755308,2,1.0,1.0,0.2899999999999996
+92,39,0.7,0.0,1.2305334759854576,0.0008018965806307645,0.03525927605341011,0.7384374080918534,2,1.0,1.0,0.2799999999999996
+92,40,0.7,0.0,1.2242419064062864,0.0008046982641516163,0.035313255747858235,0.7396497063985966,2,1.0,1.0,0.2699999999999996
+92,41,0.71,0.0,1.2170231555262814,0.0008061828254016175,0.03479702501614228,0.7410368304747487,2,1.0,1.0,0.26499999999999957
+92,42,0.69,0.0,1.2195167623806158,0.0007882742000890749,0.035216813790399835,0.7405648982430252,2,1.0,1.0,0.25999999999999956
+92,43,0.77,0.0,1.2199294743284228,0.0007719261297633646,0.03419812119353169,0.7404918796903558,2,1.0,1.0,0.22999999999999957
+92,44,0.75,0.05,1.2212456677166006,0.0007905515854942369,0.0353801838648171,0.7255524564603654,2,1.0,1.0,0.19999999999999957
+92,45,0.72,0.05,1.2250148305486284,0.0008027625715404315,0.03552024033688822,0.7247964087462604,2,1.0,1.0,0.18999999999999956
+92,46,0.7,0.0,1.2199986492752428,0.0008071781046429371,0.03468176140037546,0.7404650375813238,2,1.0,1.0,0.17999999999999955
+92,47,0.71,0.0,1.2095140615168736,0.0008134890658790493,0.03488239094999966,0.7424724307668592,2,1.0,1.0,0.17499999999999954
+92,48,0.6318784629759595,0.0,1.2111170314417703,0.0007952627004646782,0.03482179900570833,0.742172787770963,2,1.0,0.9395948765865318,0.15499999999999955
+92,49,0.6997935128797153,0.0,1.2347700649669853,0.0007811360712205425,0.03518166517797625,0.7376263306731254,2,1.0,0.9659783762657176,0.14999999999999955
+93,0,0.16953346506404454,0.0,1.3558109026109015,0.0007157428490609595,0.03602483005057024,0.7135641237868691,1,0.12590766676004284,0.2515526056600985,0.05
+93,1,0.11415802025481278,0.0,1.3554929581394248,0.0007134308416913976,0.036414199579594075,0.7136300491354076,1,0.14142449328530146,0.21553149201652427,0.11
+93,2,0.18415158682512428,0.0,1.3615906383534098,0.0007107458330160222,0.03626767069949024,0.7123833925394237,1,0.18109980707464196,0.23588884782999864,0.16
+93,3,0.18294267423947147,0.0,1.361210782271707,0.0007087446380662409,0.036261907159593,0.712462036153921,1,0.22705834466918057,0.2449075120175275,0.21000000000000002
+93,4,0.15559112275777415,0.0,1.384727287725257,0.0006993240560151204,0.03672451274396965,0.7076243786434082,1,0.2482649313358792,0.22899465596738805,0.27
+93,5,0.26968308955920783,0.0,1.3846513478231661,0.0006994526543232344,0.03671742946417141,0.7076400365525447,1,0.30922243238787966,0.2715174607448332,0.27
+93,6,0.2850450460969906,0.0,1.3842205182494456,0.0006989434843178498,0.03666511137082986,0.7077293716618878,1,0.3672176709748233,0.3217295375193416,0.28
+93,7,0.2986757143171942,0.0,1.3851421505267443,0.0006993725440192855,0.0365850662748226,0.7075385193403673,1,0.4139384070944302,0.37932423944714544,0.29000000000000004
+93,8,0.3358941768933344,0.0,1.3792930590781323,0.0007013983410230574,0.03650008857486203,0.7087465514940806,1,0.46049969018975323,0.415730951089736,0.34
+93,9,0.28427820551284116,0.0,1.2850183852484196,0.0007690173577793855,0.03627815798478438,0.7277909632629197,1,0.4910415909966933,0.37471216221332837,0.4
+93,10,0.3524575341684978,0.0,1.3489125843128684,0.0007382689373255193,0.03632062419536901,0.7149628127391022,1,0.5084700721690553,0.4149766963644283,0.45
+93,11,0.3081718455107778,0.0,1.2926249658662106,0.0007603665620389921,0.03615674777964777,0.7262848450012568,0,0.5499681854350342,0.3856099353617195,0.51
+93,12,0.331086986298899,0.0,1.386158357819359,0.0007001707537369399,0.036756946109551554,0.7073278630155876,0,0.6398422797161964,0.357140627994101,0.59
+93,13,0.35575395255359243,0.0,1.385517272605823,0.0007005278439345224,0.03677858476155664,0.7074604119230724,0,0.6476737196606476,0.3635605022412193,0.59
+93,14,0.39271804903098806,0.0,1.3854915272773674,0.0006999786111588503,0.03674112858913011,0.707465967488505,2,0.7304859044593234,0.3568266082340828,0.6499999999999999
+93,15,0.42814645839676224,0.0,1.3820508606195703,0.0006972153437811167,0.03657856992113033,0.7081786740316987,2,0.7713864880726423,0.39387062523779154,0.6449999999999999
+93,16,0.38494174305058054,0.0,1.3805179257042202,0.0006961742243768072,0.03635318370954134,0.7084958017907811,2,0.7959490920534821,0.3545318694395394,0.6249999999999999
+93,17,0.3586143144744752,0.0,1.3822201212241518,0.0006980220312340372,0.036528466513974685,0.7081433596787919,2,0.8179778236019765,0.30774025404594507,0.6049999999999999
+93,18,0.4616555474688836,0.0,1.2508906578239336,0.0006437351361015949,0.033257968289832185,0.7345481094313945,2,0.8763969566098837,0.31638870885141457,0.5999999999999999
+93,19,0.5060508767925256,0.05,1.2449729132090144,0.0006374672123046982,0.033408234067807005,0.7208641565547865,2,0.9309571641132249,0.3673862311763229,0.5899999999999999
+93,20,0.4271076272458873,0.05,1.2606967919696475,0.0006506734727798734,0.033630782692997165,0.7176839009789667,2,0.9592852822295894,0.3045259282184367,0.5699999999999998
+93,21,0.4003128199322884,0.0,1.2805803760879448,0.0006504359510065501,0.03378582472253142,0.7287161805467428,2,0.9855116288690655,0.2512791660937185,0.5499999999999998
+93,22,0.4962052836528505,0.0,1.2940032560786845,0.0006503948214919958,0.0341818285909927,0.7260545109185556,2,1.0,0.2873509455095018,0.5449999999999998
+93,23,0.41947555688099203,0.0,1.2876605755604313,0.0006442948611507849,0.033906870543364755,0.7273166751497105,2,1.0,0.23158518960330687,0.5249999999999998
+93,24,0.5594759337342667,0.0,1.3039372991461218,0.0006491342552258776,0.03463998473421685,0.7240747090694545,2,1.0,0.29825311244755603,0.4949999999999998
+93,25,0.42608535195179414,0.0,1.3006296145938578,0.0006509365334944075,0.034247335505943236,0.7247343439777304,2,1.0,0.2536178398393139,0.47499999999999976
+93,26,0.5106120524839244,0.0,1.3145782791824667,0.0006560860295710842,0.03501142804847326,0.7219408900022903,2,1.0,0.3020401749464145,0.46499999999999975
+93,27,0.5129045962529055,0.0,1.323295543877597,0.000662006501540575,0.03472683280927181,0.720185199540619,2,1.0,0.3763486541763519,0.45499999999999974
+93,28,0.4480865648969795,0.0,1.3296116445317478,0.0006685397112977478,0.03555602010280511,0.7189079797698315,2,1.0,0.32695521632326513,0.4349999999999997
+93,29,0.5138441796241403,0.0,1.3412985681591085,0.0006718624189264158,0.03500114737859721,0.7165389141897573,2,1.0,0.346147265413801,0.4299999999999997
+93,30,0.5856732654265984,0.0,1.336235430761577,0.0006674193901629727,0.03541449013549848,0.7175679650288714,2,1.0,0.3855775514219948,0.3999999999999997
+93,31,0.5536201957350025,0.0,1.3334706415472055,0.0006681397635658944,0.03511083842914417,0.7181276599280011,2,1.0,0.4454006524500085,0.3899999999999997
+93,32,0.47000653821278626,0.0,1.1128921295556933,0.0006291847987365455,0.030464549298640377,0.7605777296944597,2,1.0,0.40002179404262106,0.36999999999999966
+93,33,0.5561344270820476,0.0,1.1379283063198942,0.000624369160972079,0.03158067307818245,0.75599074061311,2,1.0,0.45378142360682544,0.35999999999999965
+93,34,0.47202201510469005,0.05,1.158893094454381,0.0006345800392629955,0.03151249499016473,0.7378527181438718,2,1.0,0.406740050348967,0.33999999999999964
+93,35,0.6079187067209815,0.0,1.1904873630511128,0.0006317147257795565,0.031842872898211486,0.7461625191486209,2,1.0,0.4597290224032718,0.3099999999999996
+93,36,0.5764195595325183,0.05,1.2379375243686552,0.0008884476749882791,0.03673388817598967,0.7221769075760783,2,1.0,0.5213985317750613,0.2999999999999996
+93,37,0.5715064401662816,0.0,1.2383200600994209,0.0008908783815537401,0.03681231566946085,0.7368961560347453,2,1.0,0.5383548005542721,0.2949999999999996
+93,38,0.6032126594341511,0.0,1.247798150547018,0.0008752314246537792,0.036693348221552284,0.7350605147788835,2,1.0,0.6107088647805037,0.2849999999999996
+93,39,0.5203048372739726,0.05,1.0115062487154123,0.0005224970863433292,0.02841105783248198,0.7653878111158323,2,1.0,0.567682790913242,0.26499999999999957
+93,40,0.5906253512793783,0.0,1.1769521168452475,0.0008733945414312929,0.03497697700587864,0.7486266469178469,2,1.0,0.6020845042645946,0.25999999999999956
+93,41,0.6653442887345138,0.05,1.00173674997695,0.0005241123225403131,0.02822331929446466,0.7671369856682831,2,1.0,0.6511476291150462,0.22999999999999957
+93,42,0.654380735024985,0.1,0.9963396234203907,0.0005156425265403662,0.028092804805733423,0.7544760602221987,2,1.0,0.6812691167499499,0.19999999999999957
+93,43,0.6384641300793996,0.1,0.9915675108429112,0.000507867062936421,0.027840832480522187,0.7553618553760998,2,1.0,0.728213766931332,0.18999999999999956
+93,44,0.5575594287704357,0.1,1.0187772807532451,0.0005785014221428462,0.02935456094353166,0.750272418667025,2,1.0,0.691864762568119,0.16999999999999957
+93,45,0.6431145374835839,0.05,1.0501246777040851,0.0005712683127036129,0.02966588694609228,0.7583643235780704,2,1.0,0.7437151249452799,0.15999999999999956
+93,46,0.6393847569440487,0.1,1.0583485795691483,0.0006325101561366455,0.031050423960934725,0.7427643799425547,2,1.0,0.7979491898134957,0.14999999999999955
+93,47,0.7222578423957788,0.1,1.088568603943833,0.0007113035071360392,0.032494736937348626,0.736917599768968,2,1.0,0.8408594746525961,0.11999999999999955
+93,48,0.7187209220771227,0.15000000000000002,1.1852427978098712,0.0009170258394274099,0.03580610948848728,0.7022265584126636,2,1.0,0.8957364069237423,0.08999999999999955
+93,49,0.6055326994087208,0.15000000000000002,1.1880738770028392,0.000931047907224339,0.03625741575346531,0.7016283576233757,2,1.0,0.8517756646957361,0.06999999999999955
+94,0,0.1679853933426243,0.05000000000000002,1.3638817874200064,0.0007059811123095665,0.03602125137493391,0.6962928144238313,1,0.14774095579182478,0.22092019605161878,0.05
+94,1,0.17230934479113416,0.0,1.3614924361415235,0.0007052300048261161,0.03641873258173294,0.7124057733073278,1,0.17901966363851013,0.2655082083921854,0.1
+94,2,0.23699554273069134,0.0,1.3599335192918396,0.0007041316723669294,0.03609331552205818,0.7127255140692406,1,0.22785948134506728,0.32414908086639266,0.11
+94,3,0.24997103427561024,0.0,1.384980383111012,0.0006992837095215259,0.036698850034385895,0.7075720291481447,1,0.2680367265865384,0.35386059990107277,0.16
+94,4,0.31964950179164486,0.0,1.3849279867000028,0.0006993769140502706,0.03673024092701866,0.7075828320037221,1,0.3383446522565963,0.40409624500612046,0.16
+94,5,0.24426775955491586,0.0,1.383356336668215,0.000698412489573283,0.03666968084988621,0.7079083138300734,1,0.3849746390691695,0.36508878626902186,0.22
+94,6,0.36174634804189343,0.0,1.3851570266682691,0.0006996728812031748,0.036696334609211664,0.7075353167471896,1,0.4488458945938891,0.4155009497801074,0.22
+94,7,0.3546003458163414,0.0,1.3801127817241685,0.0006960975993338666,0.03640897729307413,0.7085795005514075,1,0.49805460884143216,0.4342707757394672,0.27
+94,8,0.3626522193961483,0.0,1.3783898430236667,0.0006951577342751811,0.0365575077517708,0.7089355380524776,1,0.54982139579894,0.46738243622173103,0.32
+94,9,0.44455485096851866,0.0,1.3763531277344647,0.0006940894694809907,0.0359976946935345,0.7093560675630067,1,0.6304645214948713,0.5463075614843791,0.33
+94,10,0.38399637062392755,0.0,1.3742586738768086,0.0007001378232770679,0.0364766865041475,0.7097851999765253,1,0.6562152308980167,0.5144034660320725,0.39
+94,11,0.36511721476399706,0.0,1.243898269418969,0.0006082876997929899,0.03291066899114012,0.7359230755551096,1,0.6976558255388299,0.46979225275135555,0.45
+94,12,0.3585720276622355,0.0,1.2601802806039208,0.000626419901493281,0.03363977273642022,0.7327395916247768,1,0.7330756540249015,0.4066518291784002,0.51
+94,13,0.4769214852010199,0.0,1.2734638595252417,0.0006460343997102085,0.033843267139504155,0.7301224794546441,1,0.7850505234875238,0.4738460066012886,0.52
+94,14,0.492528519643048,0.0,1.2894484354978184,0.000644613692861509,0.03420587864201091,0.7269618233826759,1,0.8308358524989137,0.5391199042280942,0.53
+94,15,0.5268338284615586,0.0,1.1801003551226164,0.0005318016615561222,0.03104994644054912,0.7481624772821943,1,0.8676552238816952,0.5771816670098845,0.5800000000000001
+94,16,0.5245858057557915,0.05,1.164957170937418,0.0005182738812075678,0.029773454834596192,0.7367231973854673,2,0.8966304035302926,0.6025505484006304,0.6300000000000001
+94,17,0.6600351256851715,0.05,1.1784239159047907,0.0008543321536566605,0.0351517902189612,0.733971630073496,2,0.9834770754037552,0.6527271643128574,0.6000000000000001
+94,18,0.6584031018878869,0.1,1.167009349084944,0.0008469970561625576,0.035107361890776886,0.7213758714002939,2,1.0,0.6946770062929563,0.5700000000000001
+94,19,0.6712565421807163,0.1,1.1633837987903897,0.0008364494709202463,0.03511078497216754,0.7221082285758004,2,1.0,0.7375218072690545,0.54
+94,20,0.6414136101052359,0.1,1.1508711652643173,0.0008265486430364301,0.03428439509309662,0.7246160729103241,2,1.0,0.7713787003507865,0.535
+94,21,0.7205256189154577,0.1,1.1681148047275094,0.0008088098281522735,0.03485870573050475,0.7211689864568681,2,1.0,0.8350853963848593,0.505
+94,22,0.7120233732967224,0.1,1.3389184161758938,0.0007170415881325717,0.035943289365136036,0.6856041372852432,2,1.0,0.8734112443224081,0.475
+94,23,0.6014470123258508,0.05,1.3515145882929576,0.000710921139417621,0.03614001542463814,0.6988996494999402,2,1.0,0.8381567077528363,0.45499999999999996
+94,24,0.6879388792225404,0.0,1.3498548257049492,0.0007189663014499743,0.036170564241168005,0.714778624074542,2,1.0,0.8931295974084681,0.44499999999999995
+94,25,0.6026697497195715,0.0,1.347724399332527,0.0007125004922466983,0.036238930024428656,0.7152153895427718,2,1.0,0.8422324990652386,0.42499999999999993
+94,26,0.737930259062292,0.0,1.347127813111084,0.0007189618214189321,0.036058684975154624,0.7153342565661392,2,1.0,0.8931008635409736,0.3949999999999999
+94,27,0.6059981996742833,0.0,1.358762106493968,0.0007131535996861972,0.036404341159384825,0.7129616059356092,2,1.0,0.8533273322476109,0.3749999999999999
+94,28,0.7403227614304424,0.0,1.3576149517466216,0.0007180582708376365,0.036258192298985185,0.7131943042766278,2,1.0,0.9010758714348079,0.34499999999999986
+94,29,0.6976975026870319,0.0,1.366965133721677,0.0007130021169382135,0.03643570375996415,0.711280012027178,2,1.0,0.9256583422901064,0.33499999999999985
+94,30,0.611999590565856,0.0,1.366566802326007,0.0007076428797060129,0.03640185239815126,0.7113640075575562,2,1.0,0.8733319685528536,0.31499999999999984
+94,31,0.6968530145977592,0.0,1.1016934906382045,0.0010099665686853822,0.03609458435670586,0.7624731411608353,2,1.0,0.9228433819925306,0.3049999999999998
+94,32,0.7011987009903554,0.05,1.0926997108790952,0.0010075155455961196,0.03595740704531259,0.7503135505420568,2,1.0,0.9706623366345182,0.2999999999999998
+94,33,0.69,0.05,1.1222921391762066,0.0009690753725036672,0.035873535561323826,0.744743265840675,1,1.0,1.0,0.2949999999999998
+94,34,0.71,0.05,1.0166785228945985,0.00047367778887990187,0.027572247425524755,0.7644753353916739,1,1.0,1.0,0.3049999999999998
+94,35,0.6411111970012646,0.05,1.0488689007624152,0.0004840027829044582,0.028301324274358892,0.7586263276159751,1,1.0,0.9703706566708824,0.3649999999999998
+94,36,0.73,0.0,1.2617419772762304,0.0008096762446130929,0.036120518753715955,0.7323618165676586,1,1.0,1.0,0.3649999999999998
+94,37,0.7,0.0,1.2704270738088654,0.0007942513718539048,0.03612380025201924,0.7306621077186835,1,1.0,1.0,0.4149999999999998
+94,38,0.6799999999999999,0.0,1.2687625236225635,0.0008176294382899293,0.03609576276452023,0.7309803626559571,1,1.0,1.0,0.4649999999999998
+94,39,0.6372948758139212,0.0,1.2655081487030198,0.0008365599053989285,0.03635510561890786,0.7316124138016286,1,1.0,0.9576495860464039,0.5249999999999998
+94,40,0.73,0.0,1.2575700356228317,0.0008377259538713135,0.03636122970538998,0.7331677825805287,1,1.0,1.0,0.5249999999999998
+94,41,0.6320240018094487,0.0,1.2702586253885368,0.000817027226100324,0.03585079254562014,0.7306862924905027,1,1.0,0.9400800060314961,0.5849999999999997
+94,42,0.6929699705601036,0.0,1.2622006290064616,0.0008172189556207138,0.036306444603576245,0.7322689500815983,2,1.0,0.9765665685336786,0.6349999999999998
+94,43,0.6314115132411706,0.0,1.3614144077224506,0.0006865444869063647,0.03606417674361362,0.7124294162051723,2,1.0,0.9380383774705686,0.6149999999999998
+94,44,0.7023390305186329,0.0,1.3646899122938472,0.000691874565231739,0.03620040555764564,0.7117556976349277,2,1.0,0.9744634350621098,0.6099999999999998
+94,45,0.6895563409401864,0.0,1.3608652921848023,0.0006912603186065787,0.036099823377554054,0.7125399705834365,2,1.0,0.9985211364672881,0.6049999999999998
+94,46,0.77,0.0,1.356394833208069,0.0006903456987511802,0.03598687762800027,0.7134551434588198,2,1.0,1.0,0.5749999999999997
+94,47,0.71,0.0,1.3643289738731204,0.0006897846234856387,0.036149749108490455,0.711830599340691,2,1.0,1.0,0.5699999999999997
+94,48,0.77,0.0,1.359320118027455,0.0006878313819274369,0.03581312407364077,0.7128577633833711,2,1.0,1.0,0.5399999999999997
+94,49,0.72,0.0,1.3654221587823012,0.0006877523813413331,0.03612602196324673,0.7116071389348207,2,1.0,1.0,0.5299999999999997
+95,0,0.21812518793574726,0.0,1.3592617612107087,0.0007053362824197452,0.035929251187791014,0.7128625422969928,1,0.16891699166126345,0.2633474695143501,0.0
+95,1,0.1432779376634152,0.0,1.3587357056115905,0.0007068497753312358,0.036409744131989996,0.7129695888619775,1,0.21839980269834214,0.22279335572998488,0.06
+95,2,0.13289643965724332,0.0,1.3844787210783074,0.000698946191956892,0.03658701052262571,0.7076759588071639,2,0.2614182867778261,0.20466679761668063,0.12
+95,3,0.23837441359307507,0.0,1.3862943611198846,0.0007001722195526523,0.036742895298349926,0.7072997068701548,2,0.31176489018390324,0.23085567342902985,0.11499999999999999
+95,4,0.3353782447399353,0.0,1.3862410709461124,0.0007001726089515292,0.03678356550689437,0.7073107390828764,2,0.3810995773454229,0.27331130889679106,0.08499999999999999
+95,5,0.36448400376061635,0.0,1.3861748029820253,0.0007000951577404275,0.036774044459277,0.7073244899052921,2,0.4715914022491656,0.3314233765780281,0.05499999999999999
+95,6,0.25356370462017513,0.0,1.381005177281478,0.0006990272065467797,0.0365811868495345,0.7083939810528498,2,0.4777638048186522,0.2878212431121562,0.03499999999999999
+95,7,0.42001407188046946,0.0,1.3816115035335155,0.0007009821779413927,0.036512716964079074,0.7082679073441166,2,0.5617866694080434,0.34462912529218087,0.0049999999999999906
+95,8,0.3883182869788211,0.0,1.3817909534324446,0.0006994469985255522,0.03649794336932314,0.7082314616748702,2,0.6102551129018006,0.3824299915439695,0.0
+95,9,0.3168611761885694,0.0,1.384310145386542,0.0006993348908569037,0.03645598558596408,0.7077106701473557,2,0.6269586265770504,0.324752189622006,0.0
+95,10,0.47890447316936563,0.0,1.383861111540746,0.0006986956129924134,0.036445807996086946,0.70780381138094,2,0.6970659302174969,0.38310465864413906,0.0
+95,11,0.46137562381176467,0.0,1.3828159625611336,0.0006984249980722083,0.03658375633752438,0.7080200314912914,2,0.742821296160254,0.43796056718558596,0.0
+95,12,0.3826880160168698,0.0,1.2735505284904047,0.0006620831270510149,0.034099253417611976,0.7300990766468493,2,0.7621648506522292,0.38643439429529874,0.0
+95,13,0.4867173274749892,0.0,1.382687170974065,0.0007023530963958643,0.03674131844622234,0.7080450315533937,2,0.8112129133784863,0.44264269264173,0.0
+95,14,0.5050230804331222,0.05,1.2252648585323747,0.0008048539085129003,0.035083251287980906,0.7247456993195903,2,0.8692928613566526,0.46923526319431264,0.0
+95,15,0.5144887976843111,0.05,1.2388766235846747,0.0007867742087051097,0.03541337376368647,0.7220292640066713,2,0.9218547428112104,0.5061321256679584,0.0
+95,16,0.6385220043068989,0.05,1.2438585558852204,0.0007725989510561534,0.035143859674522646,0.7210339726260908,2,1.0,0.5617400143563298,0.0
+95,17,0.584842553778361,0.1,1.2451615366280417,0.000795651848231048,0.03559413095400715,0.7054209148770687,2,1.0,0.5828085125945369,0.0
+95,18,0.6553610261112455,0.0,1.2531770931935258,0.0007773208803360681,0.035356185624942825,0.7340498906859505,2,1.0,0.6178700870374848,0.0
+95,19,0.5210189739418907,0.05,0.9467048051525622,0.0005607462815685601,0.027864518700929243,0.7768102320986081,2,1.0,0.5700632464729691,0.0
+95,20,0.6071161721485901,0.0,1.2229444455046063,0.000856721978550079,0.03576423724583692,0.7398794539306552,2,1.0,0.6237205738286339,0.0
+95,21,0.6061418110020086,0.05,0.9370229052717626,0.0005626644844367616,0.02809247247824498,0.778483680745904,2,1.0,0.6538060366733621,0.0
+95,22,0.5321405273275527,0.05,0.9863018314917182,0.0005814436971331473,0.02888732508618373,0.7698625549282517,2,1.0,0.6071350910918423,0.0
+95,23,0.6023347024285022,0.0,1.017615605846154,0.000574007644373236,0.02954151487568657,0.7775138108953551,2,1.0,0.6411156747616739,0.0
+95,24,0.5873367038235465,0.05,1.030226737810121,0.0005691986494551977,0.02936071213379395,0.7619925612184832,2,1.0,0.6577890127451551,0.0
+95,25,0.6311121903246143,0.05,1.0675369566545712,0.0005891726007241346,0.0300514999247583,0.7551526017488993,2,1.0,0.7037073010820478,0.0
+95,26,0.6306281898280591,0.1,1.0888583976195283,0.0006499812076170932,0.031048798657048564,0.736885193285726,2,1.0,0.7687606327601971,0.0
+95,27,0.7155173930649545,0.1,1.1162444149225073,0.0007159512090376045,0.032630978406744185,0.7315151970029383,2,1.0,0.8183913102165153,0.0
+95,28,0.661823334687473,0.15000000000000002,1.0823614010963505,0.0010291699323392875,0.0364632903273383,0.7232379676085172,2,1.0,0.8394111156249102,0.0
+95,29,0.6477544526430081,0.10000000000000002,1.1140734202160032,0.0009904178210370493,0.035877373486199036,0.7318336513759413,2,1.0,0.8591815088100271,0.0
+95,30,0.6909217716317085,0.10000000000000002,1.1265062268747645,0.0009675242407470517,0.036091513422486975,0.7293956896903353,2,1.0,0.9030725721056951,0.0
+95,31,0.6879983888303991,0.15000000000000002,1.1176698864861034,0.0009647171550196958,0.035488194945358445,0.7161412521234009,2,1.0,0.9266612961013304,0.0
+95,32,0.7634532672413485,0.15000000000000002,1.1425793034096707,0.0009307711101065421,0.03586626920569301,0.7110643954649273,2,1.0,0.978177557471162,0.0
+95,33,0.71,0.2,1.1398180546076147,0.0009534917383028889,0.03604073798789533,0.6959900560925288,2,1.0,1.0,0.0
+95,34,0.77,0.15000000000000002,1.1601176421382347,0.0009201399927358978,0.0355793573897605,0.7074522175096762,2,1.0,1.0,0.0
+95,35,0.71,0.2,1.1507126284485862,0.0009421424008176192,0.03584200302883795,0.6936848096142069,2,1.0,1.0,0.0
+95,36,0.6363929246550244,0.15000000000000002,1.1676647016087585,0.0009106847573994395,0.03560177668199641,0.7058917351769005,2,1.0,0.9546430821834146,0.0
+95,37,0.5991042407132449,0.10000000000000002,1.1856131589394818,0.0008990363105608425,0.036066134970135076,0.7176001952157516,2,1.0,0.8970141357108163,0.0
+95,38,0.5807917370273246,0.05000000000000002,1.2039148317771364,0.000886261622941425,0.03592140442228599,0.7289521354860429,2,1.0,0.8359724567577484,0.0
+95,39,0.5633753208755844,0.05000000000000002,1.2221905881013124,0.000872750342657787,0.036071353530624996,0.7253315070642926,2,1.0,0.7779177362519483,0.0
+95,40,0.5482753708821191,0.05000000000000002,1.0093443656419248,0.0006062616886778835,0.029513288161998635,0.7657457462978031,2,1.0,0.727584569607064,0.0
+95,41,0.7096286236336098,0.05000000000000002,1.0401734793455262,0.0005975623085969213,0.030040253632352475,0.7601735810516903,2,1.0,0.7987620787786992,0.0
+95,42,0.7095963838469577,0.10000000000000002,1.0182770527829244,0.0005741744897090307,0.029290094286168966,0.7503677525152128,2,1.0,0.8653212794898593,0.0
+95,43,0.5977431495248107,0.10000000000000002,1.2299851213228392,0.0008649453415978422,0.03624618742850478,0.7085361275426381,2,1.0,0.8258104984160355,0.0
+95,44,0.563960812720582,1.3877787807814457e-17,1.2528240110850226,0.0008453219090068148,0.036266483326445095,0.7340922670411457,2,1.0,0.7798693757352732,0.0
+95,45,0.671425920657714,0.0,0.8995645453158466,0.00045071260640289104,0.025757386873801275,0.7973048585874901,2,1.0,0.83808640219238,0.0
+95,46,0.6645523539376622,0.05,1.2460538104658332,0.0008535914286932819,0.03617067528947778,0.7205595811245398,2,1.0,0.8818411797922074,0.0
+95,47,0.7508949070428439,0.05,1.2445544031155853,0.0008513957464164755,0.03622658421605926,0.7208622757617551,2,1.0,0.9363163568094796,0.0
+95,48,0.718858488429859,0.1,1.2397866165786002,0.0008661490890259642,0.0363368084303314,0.7065073657881942,2,1.0,0.9961949614328632,0.0
+95,49,0.77,0.05,1.238072208797653,0.0008643288729706462,0.03633195670127458,0.7221595627748782,2,1.0,1.0,0.0
+96,0,0.21438364859591819,0.05,1.3654147695802987,0.0007046704204521962,0.03602990628964011,0.6959690931779815,1,0.16141716216001542,0.2596254727997093,0.0
+96,1,0.22316567457198028,0.0,1.3649082016512495,0.0007057674882499819,0.03644733153208467,0.7117052103326655,1,0.19848339434829804,0.3123216218335865,0.01
+96,2,0.2831558316463737,0.0,1.363358362596761,0.0007072262317063363,0.03624243900814912,0.7120225051236168,1,0.2562062894618901,0.3782787677823738,0.01
+96,3,0.30854769203342003,0.0,1.3828004387995776,0.0006984533616415829,0.03664694156453173,0.7080232289449364,1,0.3170743227692894,0.45857226354722913,0.02
+96,4,0.36970902842847164,0.0,1.3828816802684551,0.0006977828650923245,0.03666631435702904,0.7080067111377802,1,0.3884052425273894,0.5125573118129513,0.02
+96,5,0.3657841780508463,0.0,1.3818214132992068,0.0006970787026270787,0.036592637168003414,0.7082261461976478,1,0.4307428002925343,0.5500806598281976,0.07
+96,6,0.41568387092025405,0.0,1.3764236982151872,0.0006940781754298962,0.03638625118472627,0.7093415224865574,1,0.4786960372966831,0.6271341928880498,0.08
+96,7,0.35725615237384445,0.0,1.3810616733749654,0.0006976910353854152,0.03651033816713897,0.7083828624509779,1,0.5166151934791051,0.5881361155205257,0.14
+96,8,0.45616303761135013,0.0,1.3759119380482687,0.000694256897249544,0.03654586079548905,0.7094469502301989,1,0.5714560286701806,0.6538447585892896,0.15000000000000002
+96,9,0.3931653114095401,0.0,1.3840908646102896,0.000698684074635712,0.03650750446749705,0.7077562969126207,1,0.6073767356561849,0.6019448464329179,0.21000000000000002
+96,10,0.46823367047844927,0.0,1.3254866251692727,0.0006748484420311679,0.035727046924373985,0.7197382624306751,1,0.6580929719197928,0.6263371010217395,0.26
+96,11,0.41342722815011934,0.0,1.3318333425506128,0.0006921904458995603,0.035318175831358975,0.7184492342867397,1,0.6704670078948355,0.5958792512897566,0.32
+96,12,0.48480679756948397,0.0,1.350188359670729,0.0006942616688959942,0.03602856760366966,0.7147206959966801,1,0.7003190966476682,0.6323170458093339,0.37
+96,13,0.48792585028951996,0.0,1.3650870461441809,0.0006959138699904763,0.03628936676677564,0.7116725573065301,1,0.725180679282918,0.6803753751349957,0.42
+96,14,0.5531234427217264,0.0,1.366097315980142,0.0007009138030086865,0.03618879896739639,0.7114631581377205,1,0.786656408156139,0.7259789995569262,0.43
+96,15,0.6090597342181117,0.0,1.372856616732716,0.0006993483319286098,0.03642683044859782,0.7100742500589723,1,0.8431060325106507,0.7799087427979465,0.43
+96,16,0.6279431273113611,0.0,1.2516820871578693,0.0006886371156578366,0.03476136787102767,0.7343762447209463,1,0.909940967469453,0.8315459623235091,0.43
+96,17,0.562670910570582,0.0,1.2316791996669025,0.0008878617745381328,0.0366025938807882,0.738182826420422,1,0.930145941346584,0.7903994369975922,0.49
+96,18,0.5454743491747978,0.0,1.1142337518310375,0.0005754202591719987,0.031073310311054286,0.7603529299910342,1,0.9537121491624603,0.7722503232264556,0.55
+96,19,0.6378056306345884,0.0,1.1407172344574352,0.0005743797235605876,0.030509216356571733,0.7554943721545367,2,0.9951527006339385,0.7983406180423667,0.6000000000000001
+96,20,0.7264855308279945,0.05,1.0752047649534964,0.000734380119293217,0.03240537921973066,0.7536781627793325,2,1.0,0.8549517694266483,0.5700000000000001
+96,21,0.6748288990049973,0.05,1.2730560621956997,0.0007426926599398526,0.03530300633990746,0.7151355297163889,2,1.0,0.8827629966833243,0.5650000000000001
+96,22,0.6022725285602331,0.0,1.2648930818135309,0.0007410615397384434,0.03502755762884411,0.7317706594277626,1,1.0,0.8409084285341101,0.545
+96,23,0.6601639922662644,0.0,1.2436728019899768,0.0008199032970833757,0.03571454526306805,0.7358846402919472,1,1.0,0.8672133075542149,0.5950000000000001
+96,24,0.7051619980715541,0.05,1.2331065383522832,0.0008162906481417708,0.0357965205145161,0.7231740346765548,1,1.0,0.9172066602385137,0.5950000000000001
+96,25,0.6866922621890201,0.05,1.2520034046890354,0.0007947669974277693,0.03542866391986553,0.7193837896044624,2,1.0,0.9556408739634005,0.6450000000000001
+96,26,0.77,0.0,1.2525731121844006,0.0006928339154049038,0.03427844245516893,0.7342007601492231,2,1.0,1.0,0.6150000000000001
+96,27,0.72,0.05,1.2480159508802044,0.0006850409339510704,0.03399636794775637,0.720232256548551,2,1.0,1.0,0.6050000000000001
+96,28,0.6364247477422746,0.0,1.2759245216131156,0.0006780083978557467,0.034299282106112015,0.729624732171212,2,1.0,0.9547491591409155,0.5850000000000001
+96,29,0.77,0.0,1.2793066892074245,0.0006977214089717751,0.03467728297682992,0.7289492158224512,2,1.0,1.0,0.555
+96,30,0.6349833738770586,0.0,1.278584617975267,0.0006897891695034666,0.03444151332692412,0.7290949941896143,2,1.0,0.9499445795901954,0.535
+96,31,0.6025826471641813,0.0,1.2847546293064982,0.0007077895884130728,0.034799679980445516,0.7278674693809519,2,1.0,0.9086088238806044,0.515
+96,32,0.7584270218715341,0.0,1.2885165927091535,0.0007242070581475271,0.03533383303842232,0.7271151596966626,2,1.0,0.9614234062384469,0.485
+96,33,0.6219393079075168,0.0,1.287091199155258,0.0007133692042593291,0.034667624760765486,0.7274021909212119,2,1.0,0.9064643596917227,0.46499999999999997
+96,34,0.5839522456377911,0.0,1.2896230854195234,0.0007274081385433059,0.03555776428785558,0.726894284733856,2,1.0,0.846507485459304,0.44499999999999995
+96,35,0.6734763823274674,0.0,1.2905752932211298,0.0007394560057350926,0.03522413415180599,0.726700427020735,2,1.0,0.878254607758225,0.43999999999999995
+96,36,0.657470350405261,0.0,1.285367709083414,0.0007416901887256943,0.03566202567340125,0.7277325819942757,2,1.0,0.8915678346842035,0.43499999999999994
+96,37,0.670522490722898,0.0,1.2796349962483817,0.0007430570403433993,0.035188157087922764,0.7288664252032917,2,1.0,0.935074969076327,0.42999999999999994
+96,38,0.72,0.0,1.2730504353334982,0.0007435383121127597,0.035188017873758096,0.7301655148483549,2,1.0,1.0,0.41999999999999993
+96,39,0.77,0.0,1.2947870049439918,0.0007310056118496819,0.03538853280291731,0.7258665167590731,2,1.0,1.0,0.3899999999999999
+96,40,0.71,0.0,1.2945863040522028,0.0007197785655073659,0.03497357610227693,0.7259109188629619,2,1.0,1.0,0.3849999999999999
+96,41,0.69,0.0,1.2875753468841449,0.0007198337591204926,0.035218079143092204,0.7273036152873663,2,1.0,1.0,0.3799999999999999
+96,42,0.6410671101667083,0.0,1.2800246160839184,0.0007189738856736512,0.0348967056877814,0.7287989418300277,2,1.0,0.9702237005556941,0.3599999999999999
+96,43,0.72,0.0,1.2833461304228715,0.000737572150027265,0.03554225067411755,0.7281345792019512,2,1.0,1.0,0.34999999999999987
+96,44,0.634057886361157,0.0,1.3039650564594751,0.0007258029169249463,0.03559668302925695,0.7240385266088081,2,1.0,0.9468596212038567,0.32999999999999985
+96,45,0.7032586540500672,0.0,1.1948904090881012,0.0006373476086028316,0.032811902293783585,0.7453255226202438,2,1.0,0.9775288468335575,0.32499999999999984
+96,46,0.77,0.05,1.2020148518835874,0.0006395118938098921,0.032889342305805654,0.7294247821052483,2,1.0,1.0,0.2949999999999998
+96,47,0.72,0.1,1.2252489612537782,0.00067794979401413,0.033571959521095915,0.709590312884845,2,1.0,1.0,0.2849999999999998
+96,48,0.77,0.05,1.2185151000977068,0.0006717653170353527,0.03320452932540744,0.7261430947533304,2,1.0,1.0,0.2549999999999998
+96,49,0.71,0.1,1.2237831424717287,0.00070656670176563,0.03399743873363438,0.7098804969484701,2,1.0,1.0,0.24999999999999978
+97,0,0.19855380141349732,0.0,1.3645811873452596,0.0007078603764633267,0.03606168457824453,0.7117714440548871,1,0.12958508566957672,0.2439967380971516,0.0
+97,1,0.19304498476006116,0.0,1.36201934064694,0.0007097677578694118,0.03644629973217563,0.7122959471920128,1,0.16579622555636517,0.2833876860511112,0.05
+97,2,0.23851034038796054,0.0,1.3615977226794131,0.0007077453789257979,0.0361906980468968,0.7123831705543255,1,0.2135479504952228,0.3458951923821085,0.060000000000000005
+97,3,0.29895049491611314,0.0,1.382745426672156,0.0006983659367096994,0.03664480958576834,0.7080346374155836,1,0.27637638286348437,0.40739586971297864,0.060000000000000005
+97,4,0.31558710667975837,0.0,1.382663487731741,0.0006981226724944875,0.03665015580633084,0.7080516762473492,1,0.32784692097655954,0.4694689477932085,0.060000000000000005
+97,5,0.3469727136149868,0.0,1.381795896291146,0.0006972335902869272,0.03660573830075937,0.7082313550400698,1,0.35965689496478304,0.5369760012577092,0.07
+97,6,0.4093837571174628,0.0,1.3835438233072321,0.0006982478860347192,0.03663166631825854,0.7078696130085445,1,0.4197960388409119,0.608183811743812,0.07
+97,7,0.4271735669891495,0.0,1.3831459228833831,0.0006997050794631747,0.03650950393698112,0.7079512855527715,1,0.47869907514092797,0.665429635632749,0.07
+97,8,0.4415101087029179,0.0,1.3824254509334912,0.0006984088139038073,0.03637848000437755,0.7081007611806605,1,0.5077489800529033,0.7126598856146726,0.12000000000000001
+97,9,0.4414557434387182,0.0,1.3824286629304483,0.0006994566087185788,0.03651327529716696,0.7080996641327584,1,0.5449187747397225,0.735780574266051,0.17
+97,10,0.5070367083257029,0.0,1.381968680993871,0.0007003726689122454,0.03649360590714505,0.708194352164297,1,0.6009703894937364,0.7889902400096506,0.18000000000000002
+97,11,0.5193070353404251,0.0,1.3300014576871226,0.0006913562966816004,0.03526793907216404,0.7188199766953296,1,0.6313679872129305,0.8277607993863314,0.23000000000000004
+97,12,0.5612902960283332,0.0,1.3539806402024837,0.000677336097914543,0.035627314826434116,0.7139537529209923,1,0.6807175191701876,0.876797214395892,0.24000000000000005
+97,13,0.49771069476435126,0.0,1.3621434571369806,0.000683304855187111,0.03587805145423586,0.7122813578338428,1,0.7051679055833886,0.8363397593672176,0.30000000000000004
+97,14,0.5754299440104456,0.0,1.3646629306884026,0.000684657479999983,0.036113706791919574,0.7117641944013026,1,0.7356796606941345,0.893140209224995,0.35000000000000003
+97,15,0.5220055849335521,0.05,1.0306362530257327,0.00044513638702467007,0.027225127710991736,0.7619632901816838,1,0.7631554002360004,0.8496706495031734,0.41000000000000003
+97,16,0.6242544995262872,0.0,1.0611345021728429,0.0004849478301315859,0.0278040390192441,0.7699263883153924,1,0.8203819404650787,0.9237360678783655,0.42000000000000004
+97,17,0.6839460598163112,0.05,1.1518783959301966,0.000733841190775086,0.033776394506754084,0.7391690052998084,1,0.8865156763675865,0.9788852436255195,0.42000000000000004
+97,18,0.6080053499204081,0.1,1.1791536007126548,0.0007267225509447532,0.03355851246340252,0.7189770206832542,1,0.9215151820926835,0.9515834539598966,0.48000000000000004
+97,19,0.7263415088628191,0.05,1.19485948540347,0.0007704128637355436,0.034164841382175626,0.7307831716874239,1,0.9895471681794833,1.0,0.48000000000000004
+97,20,0.71,0.1,1.2007935152775624,0.0007564555168857131,0.03414310179886463,0.7145719224498979,1,1.0,1.0,0.48000000000000004
+97,21,0.646833296174353,0.1,1.217100785003507,0.0007445796801930163,0.034428974986509334,0.7112391832779318,1,1.0,0.9894443205811772,0.54
+97,22,0.6184631741620438,0.05,1.2223167622981737,0.0007758328034104573,0.035023122707572046,0.7253449866460889,2,1.0,0.9615439138734794,0.6000000000000001
+97,23,0.6026971646994908,0.0,1.2926515713343831,0.0006757718167725975,0.03464380368636789,0.7263131891015083,2,1.0,0.9089905489983025,0.5800000000000001
+97,24,0.696617098701038,0.0,1.2959221565025918,0.0006926532490278903,0.03489422288997467,0.7256558520959034,2,1.0,0.9553903290034603,0.5750000000000001
+97,25,0.7199152954119961,0.0,1.2870942931255847,0.0006896674076050909,0.03480286898627313,0.727410976909996,2,1.0,0.9997176513733205,0.5650000000000001
+97,26,0.71,0.0,1.3057962257719562,0.0006829013153013257,0.03525562304104587,0.723689654368181,2,1.0,1.0,0.56
+97,27,0.6295108389766344,0.0,1.2962283144049496,0.000678614442141684,0.03460836462676952,0.7256004885550437,2,1.0,0.9317027965887815,0.54
+97,28,0.6991430552766597,0.0,1.3031830871965424,0.0006988385573416777,0.03547271155444453,0.7242055133765145,2,1.0,0.9638101842555322,0.535
+97,29,0.72,0.0,1.2936399741887512,0.0006950509568903088,0.03472018025486309,0.7261089999249812,2,1.0,1.0,0.525
+97,30,0.77,0.0,1.3109596138439639,0.0006877028781546347,0.03531080238404984,0.7226540518147659,2,1.0,1.0,0.495
+97,31,0.71,0.0,1.3131800489595835,0.0006823433924083775,0.03491761240372757,0.7222109512476553,2,1.0,1.0,0.49
+97,32,0.69,0.0,1.303887946331176,0.0006782835470154501,0.03477728437695839,0.7240729217860621,2,1.0,1.0,0.485
+97,33,0.69,0.0,1.2941314071458059,0.0006734139178815619,0.0348828771170383,0.7260198634223731,2,1.0,1.0,0.48
+97,34,0.72,0.0,1.2835971400316952,0.0006675980347349468,0.034177056326866975,0.72811259353269,2,1.0,1.0,0.47
+97,35,0.6342248039926321,0.0,1.3005503510427086,0.000663330154887667,0.0351264709887897,0.7247452115671961,2,1.0,0.9474160133087738,0.44999999999999996
+97,36,0.77,0.0,1.3091533382887506,0.0006843361716087723,0.03479722734732831,0.7230172777269953,2,1.0,1.0,0.41999999999999993
+97,37,0.71,0.0,1.3123086683966345,0.0006794600499657934,0.03537380893357001,0.7223868922357002,2,1.0,1.0,0.4149999999999999
+97,38,0.6390601536394185,0.0,1.3025969359311795,0.0006747071105271435,0.034531538018464786,0.7243322080889211,2,1.0,0.9635338454647286,0.3949999999999999
+97,39,0.6042587430943723,0.0,1.309803541973856,0.0006948751957998732,0.0353785415883115,0.7228828245123601,2,1.0,0.9141958103145746,0.3749999999999999
+97,40,0.591536785175993,0.0,1.3142851057565048,0.0007134464799755582,0.03543266767436167,0.7219767115433234,2,1.0,0.8717892839199765,0.35499999999999987
+97,41,0.5742633052136223,0.0,1.3166394407486,0.0007302972878612181,0.035690958828925444,0.721497115696024,2,1.0,0.8142110173787414,0.33499999999999985
+97,42,0.7272277422714473,0.0,1.3172983394180795,0.0007451873998691481,0.03610921878221192,0.7213587121220763,2,1.0,0.8574258075714911,0.3049999999999998
+97,43,0.6774254086954207,0.05,1.1284485438240142,0.0007586600736332356,0.033904581724718094,0.743651399297936,2,1.0,0.8914180289847358,0.2999999999999998
+97,44,0.7087370213226882,0.0,1.164303384129514,0.0007467604111526408,0.03398725525951563,0.751046810341092,2,1.0,0.9624567377422941,0.2899999999999998
+97,45,0.6994283653624145,0.05,1.1361210628346519,0.0007271879206324134,0.03356776709612305,0.7421980680825564,2,1.0,0.9980945512080485,0.2799999999999998
+97,46,0.77,0.05,1.1293852793035404,0.0007141805028960089,0.03328327158682454,0.7434897509265094,2,1.0,1.0,0.2499999999999998
+97,47,0.72,0.1,1.1402216626110797,0.0007793389810069861,0.03316121859240422,0.7267548150592333,2,1.0,1.0,0.2399999999999998
+97,48,0.77,0.05,1.1336276440769688,0.0007650101769868223,0.03301681123415924,0.7426604142722305,2,1.0,1.0,0.2099999999999998
+97,49,0.71,0.1,1.1309836202948733,0.0008259356034452806,0.03377590411467538,0.7285670492507312,2,1.0,1.0,0.2049999999999998
+98,0,0.08681297003316377,0.0,1.3631420660755913,0.0007080640740848368,0.03602694274384554,0.7120665103631874,1,0.1133202288427263,0.15716963312736523,0.06
+98,1,0.20755110607577149,0.0,1.3718829330206328,0.000705524209469687,0.03629881363770215,0.7102721183495027,1,0.17395000282272877,0.2222286836260547,0.06
+98,2,0.20133641279006176,0.0,1.360554903395687,0.0007091930142214171,0.03619926599943746,0.7125961970408088,1,0.21933021164703617,0.24856946237866367,0.11
+98,3,0.158652455138416,0.0,1.3832369910521445,0.0006985066513031976,0.0366579077347481,0.7079329518655417,1,0.2618254633448424,0.22337847655907056,0.16999999999999998
+98,4,0.23485504829520387,0.0,1.383906578309016,0.0006986565890609295,0.03668657323537633,0.7077944241072701,1,0.3014043531873963,0.26454508226538387,0.21999999999999997
+98,5,0.23215430102479026,0.0,1.3835696890316782,0.0006982958379611459,0.03668690255115,0.7078642443686413,1,0.3271191379649733,0.2922086757901653,0.26999999999999996
+98,6,0.19774488467768694,0.0,1.3831494474209698,0.0006979868052572092,0.036592407223938785,0.7079512673604582,1,0.35029473792714316,0.2504724213439562,0.32999999999999996
+98,7,0.2688967887240242,0.0,1.3837413730138766,0.0006984836057862044,0.036551975896638125,0.7078286624858832,1,0.3908310768339053,0.27368637277385793,0.37999999999999995
+98,8,0.34196446526354346,0.0,1.3861399301268953,0.0007001714260869137,0.03646909417398363,0.707331677534294,1,0.444141676673274,0.3550495947596586,0.37999999999999995
+98,9,0.35825531570927494,0.0,1.351787286944483,0.0007283004538318709,0.03636191465085144,0.7143806803796299,1,0.514659032099126,0.39374884824860285,0.37999999999999995
+98,10,0.4039280875189788,0.0,1.3490110157598085,0.000729775372340675,0.03633137037586744,0.7149462148306083,1,0.5875964694951405,0.4608977439855989,0.37999999999999995
+98,11,0.4405203595360023,0.0,1.2917970769922968,0.0007613416663939452,0.03615806613010974,0.726449006926956,1,0.648333873342479,0.5120116795537824,0.37999999999999995
+98,12,0.47615457524913174,0.0,1.2968486825220866,0.0006445555604886186,0.034616860413870784,0.72549051937085,1,0.6989394303600992,0.5717525820769901,0.37999999999999995
+98,13,0.4945264950181017,0.0,1.2985879022019824,0.0006456022268731556,0.03417926872611013,0.72514359374188,1,0.7462225315543418,0.6111620299136069,0.42999999999999994
+98,14,0.5699100397020194,0.0,1.3311007193455537,0.0006600815561293937,0.03529247171146301,0.7186103911659579,1,0.8199598479588251,0.6764136430547686,0.42999999999999994
+98,15,0.4863160638165358,0.05,1.2044944494061476,0.0005979972317111005,0.03218531072920959,0.7289515251884691,1,0.8465094615933321,0.6334591741962319,0.48999999999999994
+98,16,0.5781971079377466,0.0,1.2332675733422638,0.0006029185907265899,0.033080413694885666,0.7379859367111277,1,0.8953009198859945,0.6828059532588285,0.49999999999999994
+98,17,0.5293454833484266,0.05,1.2432125066416115,0.0006265787798446832,0.03294825809087516,0.7212226245710318,1,0.9500643330200161,0.656076555971403,0.5599999999999999
+98,18,0.6202662747746371,0.0,1.2674087713802613,0.0006295150509743396,0.03395095551429252,0.73132042411712,1,0.9920395313850844,0.7101747959661922,0.57
+98,19,0.5555144122233979,0.0,1.2752940162240618,0.0006533154974351035,0.03358814703105622,0.7297588350527026,2,1.0,0.6850480407446599,0.6299999999999999
+98,20,0.519895952489948,0.0,0.9876833611597999,0.000630856266590293,0.029761459528595786,0.7826292947129623,2,1.0,0.632986508299827,0.6099999999999999
+98,21,0.6077930553606297,0.0,1.0175977591279473,0.0006216540722991727,0.029966024737608454,0.7775004135032888,2,1.0,0.6593101845354321,0.6049999999999999
+98,22,0.6337107432348255,0.05,1.0447372452694494,0.000623492492626841,0.030228173973236138,0.7593310973587755,2,1.0,0.7123691441160848,0.5949999999999999
+98,23,0.6961699549816713,0.05,1.076262060293607,0.0007000464590339361,0.032184993395086826,0.7534945805418326,2,1.0,0.7538998499389045,0.5649999999999998
+98,24,0.5573933338137315,0.1,1.0584101607988037,0.0006803078950960063,0.031221765564597197,0.7427343477574025,2,1.0,0.6913111127124383,0.5449999999999998
+98,25,0.5233641399004888,0.05,1.1002739227008926,0.0006756277109521199,0.031624118967945924,0.7490166897107278,2,1.0,0.6445471330016295,0.5249999999999998
+98,26,0.5096577434635515,0.0,1.1168035064378117,0.0006576029575992112,0.031672520033725546,0.7598543740388908,2,1.0,0.5988591448785051,0.5049999999999998
+98,27,0.6003164346939339,0.0,1.2101222541115109,0.0006083395580711054,0.032176055252582526,0.742434590289881,2,1.0,0.6343881156464464,0.4999999999999998
+98,28,0.5216485538608749,0.05,1.0739806623471744,0.0006608826818554125,0.031016270136162354,0.7539326149050188,2,1.0,0.5721618462029165,0.47999999999999976
+98,29,0.6058495525376838,0.0,1.0772606166083878,0.0004824227876735672,0.02803251511015158,0.7670582886666826,2,1.0,0.619498508458946,0.46999999999999975
+98,30,0.601894563251781,0.05,1.0545230425182583,0.000668269388547744,0.031066730384102847,0.7575217838885977,2,1.0,0.6396485441726036,0.46499999999999975
+98,31,0.6300094757439887,0.05,1.090405617179313,0.0006738759571903691,0.031673624640693086,0.7508679320427404,2,1.0,0.7000315858132956,0.45499999999999974
+98,32,0.622557766855517,0.05,1.105050748818868,0.000733822118983075,0.032971311495125964,0.7480956904748391,2,1.0,0.7418592228517236,0.44499999999999973
+98,33,0.643640526123304,0.05,1.115557793240701,0.0007898956451944331,0.03328466031917289,0.746089252210688,2,1.0,0.7788017537443467,0.4399999999999997
+98,34,0.5733472817801941,0.05,1.134448912757249,0.0007761959296075961,0.03355258117528946,0.7424991481946869,2,1.0,0.7444909392673139,0.4199999999999997
+98,35,0.660850591718497,0.0,1.1616390397008334,0.0007600353807556076,0.033918725242881954,0.7515396866087425,2,1.0,0.8028353057283237,0.4099999999999997
+98,36,0.7228089628207695,0.0,1.2960768741378805,0.0007807335404593056,0.03566247361009789,0.7255899761287096,2,1.0,0.8426965427358982,0.37999999999999967
+98,37,0.7193272533464887,0.0,1.3066970834162468,0.000765576252443011,0.03636362555213233,0.7234764015391751,2,1.0,0.8977575111549624,0.34999999999999964
+98,38,0.7314027623037742,0.0,1.3142188632772203,0.0007522030499615614,0.03576790766028111,0.7219744492191996,2,1.0,0.9380092076792474,0.3199999999999996
+98,39,0.7150457039358709,0.0,1.0256773744455192,0.0008927727340632373,0.03374946102328088,0.7760053210132963,2,1.0,0.9834856797862364,0.3099999999999996
+98,40,0.7,0.0,1.0084333156958079,0.0008685952431283862,0.03316694735961241,0.7789967546936667,2,1.0,1.0,0.2999999999999996
+98,41,0.6388921254209498,0.0,0.990981703498301,0.0008432379424339971,0.033034590320266635,0.7819952509889986,2,1.0,0.962973751403166,0.2799999999999996
+98,42,0.71,0.0,1.02354233027487,0.000824659422311976,0.032165897710928745,0.7763998682121056,2,1.0,1.0,0.2749999999999996
+98,43,0.72,0.05,1.0556051905579622,0.0008062790363710921,0.033515105394911225,0.7572722250283946,2,1.0,1.0,0.26499999999999957
+98,44,0.6388296501663613,0.05,1.0502547507400277,0.0007872947595929065,0.033038390101433904,0.7582613002355291,2,1.0,0.9627655005545377,0.24499999999999958
+98,45,0.7005328954868328,0.0,1.0799793912743678,0.0007715358515860847,0.03228199361779964,0.7664686623651894,2,1.0,0.9684429849561094,0.23999999999999957
+98,46,0.626456036673187,0.05,1.0987287891922015,0.0007504921803303443,0.03248979218604948,0.7492789216135739,2,1.0,0.9215201222439566,0.21999999999999958
+98,47,0.5961688011509791,0.0,1.1365382240725115,0.0007410359230395967,0.032671221680764306,0.7562040614017271,2,1.0,0.8872293371699309,0.1999999999999996
+98,48,0.5825886566843461,0.0,1.1480071592085053,0.0007262399608095661,0.033369786899871266,0.7540889340849751,2,1.0,0.8419621889478207,0.1799999999999996
+98,49,0.7431519214817983,0.0,1.166575073811147,0.0007172533300327827,0.03313208733554144,0.7506328644597948,2,1.0,0.9105064049393281,0.1499999999999996
+99,0,0.17136309972415611,0.0,1.3602238171629775,0.0007077754687820326,0.03594928151940976,0.7126645802267088,1,0.1421462342235814,0.23870639248634204,0.05
+99,1,0.11690984158430562,0.0,1.3598064573163702,0.000706217169447525,0.036417005265169375,0.7127506750763519,1,0.16722879222048648,0.19459921435711786,0.11
+99,2,0.09164557913098552,0.0,1.3648458614519439,0.0007058602163022781,0.03639201870789566,0.7117179631312467,1,0.18569668469601075,0.15550579829127256,0.16999999999999998
+99,3,0.23453635589514166,0.0,1.3684495183738041,0.0007037977428293719,0.036410852885588325,0.710978864885719,1,0.23666036624210798,0.23901742570134632,0.16999999999999998
+99,4,0.1575761666623809,0.0,1.3844994591648414,0.0006993105164677165,0.03672239780473695,0.7076715179488381,1,0.28325537765121284,0.19478928161485465,0.22999999999999998
+99,5,0.23260835704802657,0.0,1.37375601827673,0.0007039352691453665,0.03659319403899304,0.7098871670239191,1,0.31310951927416025,0.24340008434023488,0.27999999999999997
+99,6,0.18247472697518127,0.0,1.3838698990809946,0.0006996180313387269,0.0366428229233815,0.7078016124136557,1,0.3376341626047401,0.21434256687840747,0.33999999999999997
+99,7,0.2854629711692284,0.0,1.3847731071578888,0.000701029652837005,0.03663091638110961,0.7076141931107884,1,0.39456598121501596,0.2912162591465761,0.35
+99,8,0.34266292472280435,0.0,1.384691190587101,0.0007019289129674011,0.036429778648367286,0.7076307689670308,1,0.4586027795814607,0.3405065062309771,0.35
+99,9,0.358379095519026,0.0,1.3426262877854445,0.0007319591650757388,0.03638805193677599,0.7162447350726293,1,0.5033430639600968,0.40736341044330737,0.36
+99,10,0.37781550518925533,0.0,1.2453696744303915,0.0007395029482556659,0.03415347567716874,0.7355859836344576,1,0.5601319314054493,0.47256443065782683,0.37
+99,11,0.3381069347756088,0.0,1.2487184969682272,0.0007702669891730435,0.03568061818427454,0.7349221403073056,1,0.598898228520707,0.42830851597787145,0.43
+99,12,0.3226270865368533,0.0,1.261812761218775,0.0007573502577493982,0.0349720606019788,0.7323684549200054,1,0.6370409910651388,0.3988757988801825,0.49
+99,13,0.41757605598582775,0.0,1.3771731496772233,0.0007126475686485982,0.03678940177316532,0.7091793196546919,1,0.673463763626928,0.4395457957213434,0.54
+99,14,0.49166878137580594,0.0,1.2996649949402501,0.0006463958282447667,0.0343619449434728,0.7249285494477927,1,0.7304918253030518,0.5199888083991261,0.54
+99,15,0.5124502510826748,0.0,1.299488313610648,0.00064709780777626,0.03449513942107342,0.7249634996303019,1,0.7948375711057707,0.580857003985517,0.54
+99,16,0.5341540487854552,0.0,1.2977867484161631,0.0006473670700170473,0.0341518203754035,0.7253025399380769,1,0.8509902413425142,0.6210248810519177,0.5900000000000001
+99,17,0.6055781342706656,0.0,1.3180771536845637,0.0006525482786291045,0.03437058487809902,0.721239395518149,1,0.9202627202788156,0.6782872739102673,0.5900000000000001
+99,18,0.6242218136380127,0.0,1.3088038295716404,0.0006458417724239043,0.03504972236788188,0.7231026813996806,2,0.9751361428143696,0.7430805455099445,0.6000000000000001
+99,19,0.7050727333112394,0.0,1.1650545463962954,0.0008911862696481608,0.035378195446627854,0.7508523024405286,2,1.0,0.7835757777041316,0.5700000000000001
+99,20,0.6512252116922307,0.05,1.153252940621969,0.000884159838156419,0.03540030903054998,0.7388459038745225,2,1.0,0.8040840389741024,0.5650000000000001
+99,21,0.5756350987583704,0.0,1.2967648850332412,0.0007822695798358526,0.03609031608427262,0.7254523537263515,2,1.0,0.7521169958612346,0.545
+99,22,0.6614495437673265,0.0,1.1913082989160106,0.0008275332207052194,0.03488519469554025,0.7459327844370995,2,1.0,0.8048318125577548,0.535
+99,23,0.7340585130392994,0.0,1.2922926002509059,0.0007483004058732302,0.0355778781589494,0.7263557093496188,2,1.0,0.8801950434643313,0.505
+99,24,0.6966514979071007,0.0,1.3032411962774728,0.0007358733579024465,0.03594622841767259,0.7241791122964625,2,1.0,0.9221716596903358,0.495
+99,25,0.7637611723691409,0.0,1.3178371235816915,0.0007247548116569587,0.03544285774349142,0.7212586192159922,2,1.0,0.9792039078971366,0.46499999999999997
+99,26,0.72,0.0,1.32568401204882,0.0007152506334450913,0.03617014172330561,0.7196821436233326,2,1.0,1.0,0.45499999999999996
+99,27,0.6298456396046642,0.0,1.3373586883050295,0.0007073669862063795,0.03539722845133184,0.7173240652499833,2,0.9961495854914022,0.9373109489422449,0.43499999999999994
+99,28,0.72,0.0,1.3394061272950648,0.0007225452982585178,0.03642169374163639,0.7169025599312921,2,1.0,1.0,0.42499999999999993
+99,29,0.6330158475032827,0.0,1.3483332916696933,0.0007146517929448083,0.0360738591192612,0.7150904760844096,2,1.0,0.9433861583442756,0.4049999999999999
+99,30,0.7030929617587959,0.0,1.3489987759809243,0.0007267924279390639,0.03642813043374496,0.7149499250970232,2,1.0,0.9769765391959864,0.3999999999999999
+99,31,0.630048541291534,0.0,1.3421041291435807,0.0007264015943914783,0.03626164585294389,0.7163531041847623,2,1.0,0.9334951376384467,0.3799999999999999
+99,32,0.7142082933694462,0.0,1.3419020835316777,0.0007392108344196308,0.03636341300722566,0.7163889512806941,2,1.0,0.9806943112314874,0.3699999999999999
+99,33,0.77,0.0,1.3495805033435264,0.0007296464676388445,0.036546062743132934,0.7148301926774457,2,1.0,1.0,0.33999999999999986
+99,34,0.6344274127604856,0.0,1.3571710166406827,0.000721215763935939,0.0360871729004593,0.713283810327252,2,1.0,0.9480913758682854,0.31999999999999984
+99,35,0.7031296226878083,0.0,1.0658949893331522,0.0004832595357256264,0.028453321696004015,0.7690826331130586,2,1.0,0.9770987422926948,0.31499999999999984
+99,36,0.6333046205633126,0.05,1.0970266612119548,0.0004863675809326381,0.028884316402188238,0.7496976873118676,2,0.9991910823648388,0.9452924724520636,0.2949999999999998
+99,37,0.72,0.0,1.124307357592229,0.0005177366369544102,0.029705239622356917,0.7585336744268849,2,1.0,1.0,0.2849999999999998
+99,38,0.6340045492472952,0.05,1.0922765591790107,0.0004915710215577028,0.028644952509702032,0.7505860431305292,2,1.0,0.9466818308243173,0.2649999999999998
+99,39,0.7004402980713738,0.0,1.116942958847711,0.0005234964319366436,0.02944634321521266,0.7598778689414714,2,1.0,0.9681343269045792,0.2599999999999998
+99,40,0.77,0.05,1.1333946873555458,0.0005194041135991494,0.02979110887764057,0.7427987901478714,2,1.0,1.0,0.2299999999999998
+99,41,0.71,0.1,1.1723632313768937,0.0005533301528442381,0.030991534633825406,0.7204168196637792,2,1.0,1.0,0.22499999999999978
+99,42,0.72,0.05,1.204405664994831,0.0005647590190012263,0.031999282974478564,0.7289822007202759,2,1.0,1.0,0.21499999999999977
+99,43,0.71,0.05,1.1785637655402021,0.0005434020268232433,0.03073993932659727,0.7340657355392379,2,1.0,1.0,0.20999999999999977
+99,44,0.72,0.05,1.1993136553120964,0.0005517677285265826,0.03162990887548351,0.72999216206682,2,1.0,1.0,0.19999999999999976
+99,45,0.77,0.05,1.1820797908649412,0.000536688642650588,0.030370061918855114,0.733381421629435,2,1.0,1.0,0.16999999999999976
+99,46,0.72,0.1,1.2078132123181746,0.0005644994251047717,0.03219217618707039,0.7132165702865594,2,1.0,1.0,0.15999999999999975
+99,47,0.77,0.05,1.1994460216948666,0.0005578330105525315,0.03186109662457226,0.7299636802511426,2,1.0,1.0,0.12999999999999975
+99,48,0.6330709683315923,0.1,1.2134610153716427,0.0005847517241466948,0.03262299861111536,0.7120516815832644,2,1.0,0.9435698944386408,0.10999999999999975
+99,49,0.77,0.05,1.232510958530719,0.0005977744324029598,0.03309012498925427,0.7233807091360392,2,1.0,1.0,0.07999999999999975
+100,0,0.21161375961065088,0.05,1.3614052407081607,0.0007057031497186997,0.03593546866360777,0.6968163903159659,1,0.15351869891801212,0.2596073832978222,0.0
+100,1,0.205892168339065,0.0,1.3608589111712435,0.0007067193869387232,0.036420914444636014,0.7125349446977787,1,0.1989611643792961,0.2875192026877046,0.05
+100,2,0.2520554905639293,0.0,1.3591826677725454,0.0007052452022119839,0.03607708756450876,0.7128787689088181,1,0.25692376297745734,0.34044057840606406,0.060000000000000005
+100,3,0.2695380305856734,0.0,1.3814432040339568,0.0007003450915550407,0.03663815386526702,0.708302944178304,1,0.30681578841630486,0.3738416821332222,0.11000000000000001
+100,4,0.3395317418101786,0.0,1.3811991534358872,0.0006991928471253232,0.03662417497515262,0.7083538409619993,1,0.37631193686393316,0.42607521302600665,0.11000000000000001
+100,5,0.26149274544152185,0.0,1.3835492795136783,0.0006982324076717028,0.03667150244866086,0.7078684911186746,1,0.4046321402194325,0.39957165454906823,0.17
+100,6,0.3377874460911333,0.0,1.3777988130300873,0.000697988740219294,0.03643741795417738,0.7090563115848991,1,0.45344454335037443,0.4302728530616744,0.22000000000000003
+100,7,0.33602790361605606,0.0,1.375415468928711,0.0006944212324989896,0.03627539181770727,0.7095492100124265,1,0.4896740541376839,0.4488066155595556,0.27
+100,8,0.3640500562418201,0.0,1.3731576883552106,0.0006934081754171047,0.036524110712085965,0.710014710971702,1,0.5301184715949281,0.49502863727865093,0.32
+100,9,0.431495396201542,0.0,1.3704230240327484,0.0006921681683578615,0.03584505038506078,0.7105779479551513,1,0.5821448354822365,0.5591490126091974,0.33
+100,10,0.48476346382988467,0.0,1.372195787567671,0.0006915532707432683,0.03648905754435742,0.7102134839021723,1,0.6314531954395485,0.6125161514201423,0.33
+100,11,0.4935977876494416,0.0,1.3323934073914017,0.0007001827489044836,0.03545597356958088,0.7183326963821669,1,0.675149233286995,0.657651853329978,0.34
+100,12,0.5068779523513658,0.0,1.21769247652242,0.0005710440682164309,0.03178164746436764,0.7409986319500013,1,0.7092503784158647,0.6954677330193774,0.39
+100,13,0.5029040102039123,0.0,1.232674788370893,0.0005782376007442097,0.03251409542444368,0.7381100849986867,1,0.7375090625533909,0.7159194610340851,0.44
+100,14,0.4746737912744238,0.0,1.2439194152700166,0.000586637792164384,0.03291705314841784,0.7359273809407112,1,0.7738275960645072,0.6794471088394874,0.5
+100,15,0.4445352022687783,0.0,1.254094639087294,0.0005947198975603671,0.032573208201143906,0.7339420478072369,1,0.8136301301702946,0.5992155223639174,0.56
+100,16,0.5295749512062229,0.0,0.8011382063167833,0.00022919667533837938,0.019375939104921743,0.8128145894440744,2,0.8393131220096757,0.6193845283427879,0.6100000000000001
+100,17,0.47377257159512165,0.05,1.185530274250067,0.0009097305440233451,0.03620839454102477,0.732560050541241,2,0.858233262607347,0.5779697656085008,0.5900000000000001
+100,18,0.448044960598867,0.0,1.1527727710046556,0.0005359710189353217,0.029885984397682797,0.7532748654514272,2,0.8714541331038712,0.5434533800417071,0.5700000000000001
+100,19,0.5478480990611696,0.0,1.1699646369142778,0.0005367134785977319,0.03084261109077676,0.7500655531680357,2,0.904530051775797,0.570875269798802,0.5650000000000001
+100,20,0.653017133910298,0.05,1.1569055809319528,0.0005236818511345966,0.029786951084914116,0.7382798316891758,2,0.9907936076432885,0.620797904117157,0.535
+100,21,0.6504624133876911,0.1,1.1749538897593517,0.0009162597998554965,0.03593535976529527,0.7197483304641675,2,1.0,0.668208044625637,0.505
+100,22,0.6368736716229106,0.1,1.1749534404058268,0.0009128894636444543,0.03609795176970968,0.7197497807668363,2,1.0,0.7229122387430353,0.495
+100,23,0.6359905471030279,0.1,1.1715222554457903,0.0009257183980889388,0.03584850783005323,0.7204361954003958,2,1.0,0.7533018236767599,0.49
+100,24,0.5595606783326635,0.1,1.1820017832183483,0.0009019387252065432,0.035891851131717764,0.7183302911115768,2,1.0,0.698535594442212,0.47
+100,25,0.52535752603451,0.05,1.205091367337818,0.0008841540479829715,0.035837855731073,0.72872044518079,2,1.0,0.6511917534483669,0.44999999999999996
+100,26,0.6117287068313259,0.0,1.2226191414462022,0.0008715189383982848,0.036071074688133184,0.739936361630309,2,1.0,0.6724290227710864,0.44499999999999995
+100,27,0.682906500116601,0.05,1.2250046437085544,0.0008572972590599613,0.03570513379469663,0.7247766845472995,2,1.0,0.7096883337220035,0.4149999999999999
+100,28,0.6779170625735947,0.1,1.2242927974285434,0.0008557238800879006,0.03583142100424412,0.7097140673117674,2,1.0,0.7597235419119825,0.3849999999999999
+100,29,0.6892087860758374,0.1,1.2231246979983188,0.000853365389232147,0.036048468185141215,0.7099556315187697,2,1.0,0.7973626202527916,0.35499999999999987
+100,30,0.5741380198494044,0.1,1.2160365313990749,0.0008548176912035319,0.03556588308271669,0.7114124457441479,2,1.0,0.747126732831348,0.33499999999999985
+100,31,0.7095957671736876,0.05,1.2395718504276771,0.000835924335046559,0.035815112178625826,0.7218699726767032,2,1.0,0.7986525572456252,0.3049999999999998
+100,32,0.5706952333689572,0.1,0.9729071732922006,0.0006343662102231452,0.029880662231137268,0.7587473443475976,2,1.0,0.735650777896524,0.2849999999999998
+100,33,0.6313056346211189,0.05,1.0200547219099803,0.0006360362695604011,0.03050481968129881,0.7638083230076544,2,1.0,0.737685448737063,0.2799999999999998
+100,34,0.7080675207257315,0.1,1.0356426424607232,0.000623896901478208,0.030331703608728257,0.7470819882331835,2,1.0,0.7935584024191051,0.2499999999999998
+100,35,0.6754498124010324,0.15000000000000002,1.0289486291087568,0.0006109736756670441,0.030318033777787867,0.7339642109636483,2,1.0,0.8514993746701084,0.2399999999999998
+100,36,0.6741149162129068,0.10000000000000002,1.1499509824591971,0.0005264984372640958,0.030120510716684423,0.7249193381901646,2,1.0,0.8803830540430224,0.2349999999999998
+100,37,0.667998927162974,0.10000000000000002,1.1593890109170306,0.0005343738553533903,0.030458889194398882,0.7230301448606166,2,1.0,0.9266630905432471,0.2299999999999998
+100,38,0.6820966399291066,0.10000000000000002,1.1743188824309514,0.0005515307758217528,0.03058425803033522,0.7200234751493715,2,1.0,0.9736554664303556,0.22499999999999978
+100,39,0.6857900347730038,0.10000000000000002,1.1853726133015585,0.0005696181786921216,0.031186773272738118,0.71778241942297,2,1.0,0.9859667825766796,0.21999999999999978
+100,40,0.72,0.10000000000000002,1.1927849872489886,0.0005872818031365332,0.03176888965589601,0.7162712884641974,2,1.0,1.0,0.20999999999999977
+100,41,0.71,0.15000000000000002,1.1796813371115678,0.000572047462787127,0.030856607440860762,0.7035321027029795,2,1.0,1.0,0.20499999999999977
+100,42,0.69,0.15000000000000002,1.1922418083316053,0.0005945899660090498,0.03163414690530334,0.7008961748812261,2,1.0,1.0,0.19999999999999976
+100,43,0.634994326839136,0.15000000000000002,1.1944574555612237,0.0006097851598795505,0.031990421267258956,0.7004251015625971,2,1.0,0.949981089463787,0.17999999999999977
+100,44,0.7160821076420304,0.10000000000000002,1.2051679855018893,0.0006243963141515243,0.0318797553241295,0.7137328407948068,2,1.0,0.986940358806768,0.16999999999999976
+100,45,0.6309274609932696,0.15000000000000002,1.1883181950875277,0.0006070464781901826,0.031416037233338204,0.7017128605389213,2,1.0,0.9364248699775652,0.14999999999999977
+100,46,0.6999912610922802,0.10000000000000002,1.2035169915012318,0.000625907551581846,0.03162233710850623,0.7140694328579947,2,1.0,0.9666375369742672,0.14499999999999977
+100,47,0.6882678438954648,0.15000000000000002,1.1997223217727864,0.0006373998799018697,0.03254585126444266,0.6993075981329617,2,1.0,0.9942261463182164,0.13999999999999976
+100,48,0.72,0.15000000000000002,1.205229986562424,0.0006517329165884137,0.03251420619638495,0.698142154948212,2,1.0,1.0,0.12999999999999975
+100,49,0.6251604577466403,0.2,1.1966524434640786,0.0006386935117434883,0.032162867516447584,0.6839685427436986,2,1.0,0.9172015258221342,0.10999999999999975
+101,0,0.1615640572154437,0.1,1.3630084038874597,0.0007050109812076907,0.035961341931899184,0.6803936779864013,1,0.12353306040032103,0.22775828691777122,0.05
+101,1,0.16062493200056546,0.0,1.3606345793481724,0.000704411492640685,0.03640167395034326,0.7125818375026327,1,0.150629207212915,0.2596823649201506,0.1
+101,2,0.22645895733098226,0.0,1.3578945230588078,0.000703707530971867,0.036020134871848644,0.7131429865624102,1,0.20145200546359238,0.3198358513957498,0.11
+101,3,0.28136333317156664,0.0,1.3814916275765634,0.0006991943080397417,0.03662457870802015,0.7082934148307559,1,0.25461241290668934,0.37416329551408467,0.11
+101,4,0.19977099595226316,0.0,1.3805891757214117,0.0006992032718575571,0.036607186241860594,0.7084798351276338,1,0.29186626009938227,0.3253926830582646,0.16999999999999998
+101,5,0.31909133267438805,0.0,1.3820965285973155,0.0006990079077547727,0.03667103337948874,0.7081684951997509,1,0.34565716411705066,0.39370441744473456,0.16999999999999998
+101,6,0.34143697335099726,0.0,1.3809671249173916,0.0006988904853529728,0.03653857853733512,0.7084018980261444,1,0.4309174864472025,0.43538617698158816,0.16999999999999998
+101,7,0.2774001173484925,0.0,1.3730689980044006,0.0006912829027007814,0.0361711985496834,0.7100338465544525,1,0.4586959961526612,0.3895217289835371,0.22999999999999998
+101,8,0.3912130206674745,0.0,1.3742966887959953,0.0006933602180646139,0.03650539551998213,0.7097801614911089,1,0.5276298876188564,0.4218085333362493,0.22999999999999998
+101,9,0.38817192434048575,0.0,1.3736492396019115,0.0006918415363641826,0.035909908079927305,0.7099141384155907,1,0.5835204333234637,0.44646590892424487,0.27999999999999997
+101,10,0.4540700653408409,0.0,1.370895793869353,0.0006903451112501857,0.03647259408687149,0.7104814598816218,1,0.6417543937895076,0.49818675838171084,0.27999999999999997
+101,11,0.44843219847067173,0.0,1.3545767261671022,0.0007172000951049422,0.0361923139921078,0.7138157156779056,1,0.6910708127220684,0.5218580467264926,0.32999999999999996
+101,12,0.4556077332745644,0.0,1.3544561854027972,0.0007263941760271978,0.03648897240087715,0.713836583245818,1,0.7353654395519738,0.5607660981045786,0.37999999999999995
+101,13,0.5439410755366236,0.0,1.1982434838412375,0.0005754928190844444,0.03169953422412817,0.7447120539321016,1,0.7941835016940975,0.6199228331456319,0.37999999999999995
+101,14,0.5547170767726057,0.0,1.2624737414896603,0.0006055803199872588,0.033373694507469485,0.7322983890318651,1,0.8371124410533839,0.6724257413464045,0.38999999999999996
+101,15,0.5757170041733602,0.0,1.3410641213864931,0.0007315292337426208,0.036162676179571626,0.7165622943408636,1,0.8830477643410707,0.7555009555132853,0.39999999999999997
+101,16,0.6064387132646728,0.0,1.3402266795658435,0.0007433597294366764,0.03650503441868097,0.7167275447241745,1,0.9184720493161015,0.8165783200134579,0.41
+101,17,0.567519973262784,0.05,1.2079985141133727,0.0008866230726419433,0.036059865342554606,0.7281443807078823,1,0.9434788501701022,0.7910079190108275,0.47
+101,18,0.5420802210629403,0.0,1.309746683331917,0.0007859651852052752,0.0365288140061361,0.7228577190340847,1,0.9502458943713913,0.7649805267765114,0.53
+101,19,0.5344360691036534,0.0,1.3145863017718356,0.0007755298589925895,0.03614196980733965,0.7218913219696027,1,0.9726696372360932,0.7133389869034027,0.5900000000000001
+101,20,0.6587697188881045,0.0,1.3205796565732015,0.0007630116833987058,0.03627934628057159,0.7206915116755697,1,1.0,0.7625657296270153,0.5900000000000001
+101,21,0.562646666933637,0.0,1.317673267390076,0.000775061508301941,0.0363774363272243,0.7212713336626481,2,1.0,0.7088222231121235,0.6500000000000001
+101,22,0.531762363650895,0.0,1.2654577091033508,0.0008125077693947444,0.03586146570452661,0.7316317630098831,2,1.0,0.6725412121696503,0.6300000000000001
+101,23,0.6207005495435207,0.0,1.2855260044350358,0.0007967455802042672,0.035953291708584835,0.7276793973235963,2,1.0,0.7023351651450691,0.6250000000000001
+101,24,0.6970424646531113,0.0,1.2885900099810366,0.000782768406317411,0.036122951528974725,0.7270773513670399,2,1.0,0.7568082155103708,0.5950000000000001
+101,25,0.647644919801266,0.0,1.2851341709427822,0.0007915153301157832,0.03584878618043526,0.7277591094405182,2,1.0,0.7921497326708868,0.5900000000000001
+101,26,0.6340549149044705,0.0,1.2871599084801328,0.0007781559788564132,0.03620536997913448,0.7273628719856234,2,1.0,0.8135163830149018,0.5850000000000001
+101,27,0.6809897324845553,0.0,1.3476343932531145,0.0006820695253930502,0.035196825514162415,0.7152461176943531,2,1.0,0.8699657749485178,0.5750000000000001
+101,28,0.7458198259558976,0.0,1.3516916061406965,0.0006806169518985269,0.0361253971926961,0.7144196603541888,2,1.0,0.9193994198529921,0.545
+101,29,0.7403698061227655,0.0,1.355627874291524,0.0006801187724104345,0.035656892283294064,0.7136160926255256,2,1.0,0.9678993537425519,0.515
+101,30,0.7193220919198129,0.0,1.3573423063184609,0.0006798790547978065,0.03592460441713689,0.713265687072056,2,1.0,0.9977403063993762,0.505
+101,31,0.77,0.0,1.3602488017508545,0.0006812322108422908,0.03588845737016079,0.7126703347302367,2,1.0,1.0,0.475
+101,32,0.72,0.0,1.3606024284511424,0.0006823718572279839,0.0358875788364104,0.7125974498712038,2,1.0,1.0,0.46499999999999997
+101,33,0.71,0.0,1.3621491917869106,0.000684942432802974,0.03624432673413436,0.7122795113912485,2,1.0,1.0,0.45999999999999996
+101,34,0.72,0.0,1.357471884600663,0.0006804677482152879,0.03548886361440835,0.713238944471556,2,1.0,1.0,0.44999999999999996
+101,35,0.71,0.0,1.357981051199272,0.000682944916218824,0.03626244648053093,0.7131337802255817,2,1.0,1.0,0.44499999999999995
+101,36,0.6360299472039238,0.0,1.3530485705137048,0.0006781216764737288,0.03537974973951784,0.7141437450211868,2,1.0,0.9534331573464129,0.42499999999999993
+101,37,0.7176995041665136,0.0,1.361690872129354,0.0006824896313756207,0.036220427003184376,0.7123744342401529,2,1.0,0.9923316805550455,0.4149999999999999
+101,38,0.77,0.0,1.3615465689225827,0.0006834858636104901,0.03588142266221865,0.7124035924172023,2,1.0,1.0,0.3849999999999999
+101,39,0.75,0.0,1.3630536938915299,0.000686516988003994,0.036003950509532194,0.7120934638688524,2,1.0,1.0,0.35499999999999987
+101,40,0.72,0.0,1.3629732147527687,0.0006891873440951759,0.03604036543788574,0.712108868230263,2,1.0,1.0,0.34499999999999986
+101,41,0.6344810394926474,0.0,1.3624950771171764,0.0006920319056779777,0.035966994124579606,0.7122057151116653,2,1.0,0.9482701316421581,0.32499999999999984
+101,42,0.5961122970085615,0.0,1.0680893001316107,0.0005753813314712416,0.029297295202512348,0.7686599445153789,2,1.0,0.8870409900285385,0.3049999999999998
+101,43,0.6991898553535443,0.0,1.0953082116306547,0.00057807618151238,0.029849210668061687,0.7637835038500576,2,1.0,0.9306328511784808,0.2949999999999998
+101,44,0.6999015273206659,0.05,1.08282848979974,0.0005662401180509259,0.02963002887258855,0.7523227679929437,2,1.0,0.9663384244022196,0.2899999999999998
+101,45,0.72,0.05,1.092340011833592,0.000586487809383792,0.029827663191404848,0.7505386232581929,2,1.0,1.0,0.2799999999999998
+101,46,0.7,0.05,1.0805005516446256,0.0005755125619923474,0.029589754718678363,0.7527528338825014,2,1.0,1.0,0.2699999999999998
+101,47,0.6359662612314905,0.05,1.0682523425546302,0.0005639626608293393,0.02935390365363675,0.755029630567304,2,1.0,0.953220870771635,0.2499999999999998
+101,48,0.7184403020968615,0.0,1.095116958053958,0.000569086997220863,0.029196231242307295,0.7638212510307316,2,1.0,0.9948010069895385,0.2399999999999998
+101,49,0.71,0.05,1.071424167789827,0.0005514692836963233,0.028899801872508263,0.7544471246739163,2,1.0,1.0,0.2349999999999998
+102,0,0.18658881081173634,0.0,1.3587926993718322,0.0007041876626224237,0.03583953333769556,0.7129590148877042,1,0.16331797700651554,0.23142506286485304,0.01
+102,1,0.12183711462131594,0.0,1.3570565562942287,0.0007055688140681676,0.03638657262700431,0.7133136176038368,1,0.18196611700465046,0.19382991223229432,0.06999999999999999
+102,2,0.24018758978916868,0.0,1.3609543963250448,0.000702731760071873,0.036386290272972556,0.7125170198080745,1,0.23831973851495192,0.2559189376964517,0.06999999999999999
+102,3,0.16051458224225457,0.0,1.3788464982587003,0.0006985689901387483,0.03655851028546322,0.7088398920403599,1,0.26870835043605507,0.22155553196545105,0.13
+102,4,0.28452814577516555,0.0,1.3802102096040614,0.0006981698754084617,0.03658526737860791,0.7085585259491513,1,0.33740186046798504,0.2881249820379026,0.13
+102,5,0.20001245598459502,0.0,1.3788453731703751,0.0006978091314261091,0.03657825227258708,0.7088404378906723,1,0.3560697549361638,0.2512934725231257,0.19
+102,6,0.18248059486177112,0.0,1.379988664652648,0.0006974399117566915,0.036510876694959206,0.7086045750598071,1,0.3919666006038244,0.21764094883477542,0.25
+102,7,0.30295887556644274,0.0,1.3806591725915158,0.0006971285680036429,0.03651062176471077,0.7084662350590185,1,0.454033032853063,0.2801577135595691,0.26
+102,8,0.31835620148615185,0.0,1.3724996555208382,0.00069504156855875,0.03645250628456267,0.710149504714948,1,0.48777226874342305,0.3254530247531792,0.31
+102,9,0.3647876272572361,0.0,1.3712260943008698,0.0006932567098741209,0.03605595322546805,0.7104123151818078,1,0.5412901380531291,0.38445359646213645,0.32
+102,10,0.37926090508647026,0.0,1.3715381512107883,0.0006953531265379358,0.036464658608272874,0.7103472498500669,1,0.5756056006863609,0.4259964828208132,0.37
+102,11,0.3797433654260006,0.0,1.2635687541998075,0.0007555563228225329,0.03568772596449733,0.7320248350940821,1,0.6090094117116168,0.45530023775644907,0.42
+102,12,0.4432617670240069,0.0,1.201881048949284,0.000582294410049902,0.03190145350029848,0.7440172883918765,1,0.67128362869276,0.49437498993846973,0.43
+102,13,0.49549412409279125,0.05,1.2217477329553046,0.0005850249630392865,0.03212306013104578,0.7255343332259332,1,0.7123983973001558,0.5538489501257892,0.43
+102,14,0.41247348269003004,0.1,1.232265007983901,0.000598995966457014,0.032267493472527234,0.7081750143278936,1,0.7411487453516965,0.5102380727231209,0.49
+102,15,0.5063036796270826,0.0,1.256935628218182,0.0006192994994331904,0.03358532623364352,0.7333773038643281,1,0.7914701894196333,0.5642970444340363,0.5
+102,16,0.4466565358407836,0.0,1.2613156426914767,0.0006139202770792209,0.03280335429558789,0.7325220905502219,1,0.8147037911051821,0.5383673631798995,0.56
+102,17,0.4323514623755258,0.0,0.45517503963886596,6.0041285041638896e-05,0.009927592329776504,0.8599295404637753,2,0.8509938180934816,0.5150120868093575,0.6200000000000001
+102,18,0.5361209027817291,0.0,1.1812186671060925,0.0006103654496811341,0.03165404368348587,0.7479220887923976,2,0.8999153026413111,0.5371684895242341,0.6150000000000001
+102,19,0.6403520583247861,0.05,1.1727898716844618,0.0006010916429997977,0.03142816289754969,0.7351688884338671,2,0.9709932659602957,0.601681384128942,0.5850000000000001
+102,20,0.6171489199746147,0.05,1.2849485227440962,0.0007230025526463282,0.03520904414028926,0.7127147144788484,2,1.0,0.6571630665820493,0.5750000000000001
+102,21,0.6797987451031426,0.0,1.2830861358490366,0.0007285719712343192,0.03475060202695575,0.7281896060910575,2,1.0,0.699329150343809,0.545
+102,22,0.6425538483592417,0.0,1.278368425624876,0.0007377926575563285,0.03523046526593475,0.7291187320083198,2,1.0,0.7418461611974722,0.535
+102,23,0.6440497457970749,0.0,1.27628262664226,0.0007435046830793063,0.03494630935820223,0.729528235838143,2,1.0,0.7801658193235832,0.53
+102,24,0.5694453566795216,0.0,1.2741624464902863,0.0007337705060256405,0.035389307061640236,0.7299502170107949,2,1.0,0.7314845222650721,0.51
+102,25,0.6400837285365977,0.0,1.2935764001902532,0.0007244832595360235,0.03466890772006219,0.72610993650324,2,1.0,0.7669457617886593,0.505
+102,26,0.5662261656218284,0.0,1.290925835359416,0.0007160564373695894,0.03556742129418937,0.7266400974060684,2,1.0,0.7207538854060948,0.485
+102,27,0.5289493064831614,0.0,1.3090848275961076,0.0007088427120123974,0.034771737944806515,0.7230211823659848,2,1.0,0.6631643549438714,0.46499999999999997
+102,28,0.6347423879970018,0.0,1.3248513053243816,0.0007033250224916305,0.03589449399410312,0.719854912893593,2,1.0,0.7158079599900058,0.45499999999999996
+102,29,0.5510249177948273,0.0,1.3226490528781452,0.0007074403007473536,0.035348506350323675,0.7202971542232621,2,1.0,0.6700830593160911,0.43499999999999994
+102,30,0.6849724102657768,0.0,1.3366056559060069,0.0007027455940695029,0.035765219034727666,0.7174786063710947,2,1.0,0.7165747008859229,0.4049999999999999
+102,31,0.6825357063103887,0.0,1.3359287379552836,0.000708870407083118,0.035796435035060185,0.7176133171940221,2,1.0,0.7751190210346294,0.3749999999999999
+102,32,0.6994286633531732,0.0,1.334447692424509,0.0007141342087449408,0.03569364525283754,0.717911214100119,2,1.0,0.8314288778439108,0.34499999999999986
+102,33,0.5851701726779026,0.0,1.3392169791861377,0.0006943886238041277,0.036008863772084884,0.7169523744867119,2,1.0,0.7839005755930087,0.32499999999999984
+102,34,0.6677997813006314,0.0,1.0456416490623661,0.0007956900843706317,0.03319175508332722,0.7725501182902998,2,1.0,0.8259992710021048,0.31499999999999984
+102,35,0.7310083718487319,0.05,0.9705570034043776,0.000353950948099494,0.02415611045427672,0.7727201886856463,2,1.0,0.8700279061624396,0.2849999999999998
+102,36,0.6910439175750067,0.1,1.02139371018813,0.00039247549532239664,0.02602955235050252,0.7498516675805662,2,1.0,0.9034797252500225,0.2749999999999998
+102,37,0.6901767032552557,0.05,1.0163184330546327,0.0003882953773892283,0.02591902811020627,0.7645709038386621,2,1.0,0.9339223441841861,0.2699999999999998
+102,38,0.7196449459616268,0.05,1.0281300962440214,0.0004012227293466528,0.02618117759429356,0.7624334549018175,2,1.0,0.9988164865387562,0.2599999999999998
+102,39,0.7,0.05,1.0062596944879263,0.0003828514851410818,0.02564185544622009,0.7663786278192446,2,1.0,1.0,0.24999999999999978
+102,40,0.71,0.05,0.9847482589884176,0.0003651020459143797,0.024789918096558467,0.7702142795688102,2,1.0,1.0,0.24499999999999977
+102,41,0.77,0.05,1.0117104352921547,0.00039719562379191356,0.02581032118822359,0.7653961459647939,2,1.0,1.0,0.21499999999999977
+102,42,0.75,0.1,1.0457091556679892,0.0004236957664330265,0.026657155829723576,0.7452512136001489,2,1.0,1.0,0.18499999999999978
+102,43,0.72,0.1,1.092074425863499,0.00047053519678561006,0.028410404594154014,0.7363308614695141,2,1.0,1.0,0.17499999999999977
+102,44,0.6367869144947627,0.05,1.0713513532732086,0.0004528440797498056,0.02806447341207425,0.7544971525619331,2,1.0,0.9559563816492089,0.15499999999999978
+102,45,0.77,0.0,1.0850026934836332,0.00045255725092406904,0.02800850861808989,0.7656827928648788,2,1.0,1.0,0.12499999999999978
+102,46,0.72,0.05,1.1020902188766915,0.00048111739392546796,0.028522492903500046,0.7487482798478773,2,1.0,1.0,0.11499999999999978
+102,47,0.71,0.0,1.0944109083983482,0.00047508485365691726,0.02838162379444755,0.7639824988402505,2,1.0,1.0,0.10999999999999978
+102,48,0.6386457369586273,0.0,1.1036171310370093,0.00048141322380480713,0.02867814487822871,0.7623161694115724,2,1.0,0.9621524565287577,0.08999999999999977
+102,49,0.6047721327889748,0.0,1.1291325532765593,0.0004915271062318935,0.029335272948291358,0.7576584126972686,2,1.0,0.9159071092965826,0.06999999999999977
+103,0,0.16999385167818587,0.0,1.3581891713931058,0.000705218510420801,0.035873369215523546,0.7130820882671802,1,0.14536828413366698,0.23038317410467474,0.05
+103,1,0.24026738272096795,0.0,1.3577145502429584,0.0007038062402317666,0.036382694931026846,0.7131797618182888,1,0.2034473468286419,0.2968693711031443,0.05
+103,2,0.2578794527869781,0.0,1.3808241653931153,0.000697360082339964,0.03649698834762837,0.7084320603305667,1,0.2608133332157054,0.35531595387160414,0.060000000000000005
+103,3,0.2728162394384967,0.0,1.381873761448871,0.0006992315869069814,0.0366178422898476,0.7082144389878229,1,0.31197217892591506,0.3787532560480882,0.11000000000000001
+103,4,0.2763682555936607,0.0,1.3822305849346284,0.0006985388484049729,0.03664767680163887,0.7081409834439377,1,0.35503600734618,0.4070188434083257,0.16000000000000003
+103,5,0.3616587166463402,0.0,1.3835052106747037,0.0006982513767761735,0.03666557665548679,0.7078775962157057,1,0.4045936854564449,0.4668364224552816,0.16000000000000003
+103,6,0.27786242527436833,0.0,1.371137202361714,0.0006901661692078598,0.03629578068877854,0.710431873845266,1,0.42787125788480446,0.4270249500489558,0.22000000000000003
+103,7,0.3583799010226524,0.0,1.37402693928721,0.0006939386399756275,0.03623589521049238,0.7098354863899518,1,0.4763847293695085,0.4721508191444149,0.27
+103,8,0.40963868221447175,0.0,1.3714444828347292,0.0006927965477837054,0.03650817069877978,0.7103675741268077,1,0.5245082867620687,0.5535359394924925,0.28
+103,9,0.42894583168680167,0.0,1.3731474210726349,0.0006921596848079421,0.035889796550647876,0.7100173390477039,1,0.5903900707475849,0.60769768975049,0.29000000000000004
+103,10,0.4656029101770064,0.0,1.385844027740257,0.0007001118753515937,0.03655547275214124,0.7073929542396868,1,0.634316966278049,0.6786399065989642,0.30000000000000004
+103,11,0.49498041387998315,0.0,1.3462067743826494,0.000689095569338308,0.035440773401121624,0.715533929962158,1,0.6767969405296084,0.7270049489820676,0.31000000000000005
+103,12,0.45457760179504353,0.0,1.348139291040011,0.0006859035889986608,0.03596705593036373,0.7151417123348863,1,0.717554025873404,0.6781123091311738,0.37000000000000005
+103,13,0.5703431068730811,0.0,1.3176252977309661,0.000669155917061632,0.035217647608816724,0.7213235567402717,1,0.7759615118857032,0.7291885923769501,0.37000000000000005
+103,14,0.5885945299727638,0.0,1.3072982514187754,0.0006629248645506746,0.03501964454020569,0.7233971984099009,1,0.8255716371174334,0.7988148566055405,0.38000000000000006
+103,15,0.6028364783127927,0.0,1.3182422715735338,0.0007015895358199985,0.03565659569258971,0.7211864751720098,1,0.8702750891164888,0.8608006570734058,0.39000000000000007
+103,16,0.6394341802889878,0.0,1.2132060087207364,0.0008131594565645765,0.035287636408635206,0.7417659987412774,1,0.9190183004202507,0.8925925838063338,0.44000000000000006
+103,17,0.6391301710615762,0.05,1.2034131679134763,0.0008090207694189445,0.035177446448069874,0.72908175785404,1,0.9610712880081176,0.9091840675291168,0.49000000000000005
+103,18,0.6607195568766748,0.05,1.1999009425600717,0.0008019429902003473,0.03477122736969252,0.7297777311223681,1,1.0,0.935731856255583,0.54
+103,19,0.7057619897115919,0.05,1.1887355914363105,0.0007954335171294708,0.0346937057100977,0.7319764598096147,1,1.0,0.9858732990386396,0.55
+103,20,0.69,0.1,1.2156322557354386,0.0007771649082271856,0.03463147802319879,0.7115273168516116,1,1.0,1.0,0.56
+103,21,0.7,0.1,1.247025972167381,0.0007591041183721703,0.03493585440499842,0.7050485334532115,2,1.0,1.0,0.6100000000000001
+103,22,0.72,0.05,1.2941868247468902,0.0007090646400131047,0.03550520596407028,0.7108251685234711,2,1.0,1.0,0.6000000000000001
+103,23,0.6388172876819778,0.0,1.288971790588915,0.0007161531604362333,0.034363242030976876,0.7270280273232951,2,1.0,0.9627242922732593,0.5800000000000001
+103,24,0.77,0.0,1.3047032902173452,0.0007092728005697514,0.035586834036183054,0.7238976059289423,2,1.0,1.0,0.55
+103,25,0.6305134704077335,0.0,1.3037479634964446,0.0007175578080428254,0.034835675872884615,0.7240851956598735,2,1.0,0.935044901359112,0.53
+103,26,0.7125680987020528,0.0,1.320784388233754,0.0007106219735181278,0.03598508256431472,0.720671391319794,2,1.0,0.9752269956735093,0.52
+103,27,0.7063600029975582,0.0,1.3185605299174927,0.0007156621997273199,0.035155412838699954,0.7211168161825756,2,1.0,0.9878666766585273,0.515
+103,28,0.72,0.0,1.3159058238655512,0.0007078977228326484,0.03580076915017149,0.7216535028811829,2,1.0,1.0,0.505
+103,29,0.7,0.0,1.3132303396686333,0.0007125295765741,0.03521769598062365,0.7221887492213671,2,1.0,1.0,0.495
+103,30,0.7,0.0,1.3101366478563887,0.000716166397189692,0.03547924671266499,0.7228075591139375,2,1.0,1.0,0.485
+103,31,0.7,0.0,1.3063306086435584,0.0007192622233793066,0.03544976550412307,0.7235682394460363,2,1.0,1.0,0.475
+103,32,0.77,0.0,1.30179456055198,0.0007217442635786815,0.034936661293393706,0.7244736156736491,2,1.0,1.0,0.44499999999999995
+103,33,0.71,0.0,1.3023458846407583,0.0007346403062453062,0.03585855488057776,0.7243584016706628,2,1.0,1.0,0.43999999999999995
+103,34,0.77,0.0,1.3005416269503196,0.0007243275134257121,0.034956200239894555,0.7247226146815067,2,1.0,1.0,0.4099999999999999
+103,35,0.71,0.0,1.300116006051122,0.0007350281360163725,0.035917338865956695,0.724803249074285,2,1.0,1.0,0.4049999999999999
+103,36,0.69,0.0,1.2980059293566746,0.0007250467360915922,0.034939518102411984,0.7252279106998164,2,1.0,1.0,0.3999999999999999
+103,37,0.72,0.0,1.2953806650646573,0.000716165499309474,0.03552577606448078,0.7257542793106702,2,1.0,1.0,0.3899999999999999
+103,38,0.6382206301280053,0.0,1.292310929096151,0.0007207728610433481,0.03488143914474291,0.726363009110862,2,1.0,0.960735433760018,0.3699999999999999
+103,39,0.72,0.0,1.3106496260989433,0.0007128233751754608,0.03542689793129723,0.7227061085913948,2,1.0,1.0,0.3599999999999999
+103,40,0.71,0.0,1.3069640493661783,0.0007161650279816823,0.03551032232439729,0.7234427617725789,2,1.0,1.0,0.35499999999999987
+103,41,0.72,0.0,1.3040973842516412,0.0007072541453599382,0.03472904320987309,0.7240194985573788,2,1.0,1.0,0.34499999999999986
+103,42,0.6318906598329896,0.0,1.3001510168539594,0.0007102427622645644,0.03551111302650377,0.7248061532422906,2,1.0,0.9396355327766321,0.32499999999999984
+103,43,0.6982146307048414,0.0,1.0135206906153562,0.00047431068382406956,0.027232187910495843,0.7782557812536646,2,1.0,0.9607154356828046,0.31999999999999984
+103,44,0.72,0.05,1.0341357813249519,0.0005010502644985615,0.02841869759447278,0.7613076600886273,2,1.0,1.0,0.30999999999999983
+103,45,0.7,0.05,1.0284578316433248,0.0004931365229489348,0.02797346694156281,0.7623407837332415,2,1.0,1.0,0.2999999999999998
+103,46,0.7,0.05,1.0087768597404774,0.00047520262048738503,0.027153847784046687,0.7658945307817108,2,1.0,1.0,0.2899999999999998
+103,47,0.71,0.05,0.9886803638928595,0.0004568105615737006,0.027056467624023937,0.7694850871481501,2,1.0,1.0,0.2849999999999998
+103,48,0.69,0.05,1.0090482450572598,0.00048799044623099806,0.026919605943020553,0.7658412814466572,2,1.0,1.0,0.2799999999999998
+103,49,0.6359940788618652,0.05,1.0241196669183479,0.0005172742363514621,0.028415531460610627,0.7631171394388103,2,1.0,0.9533135962062176,0.2599999999999998
+104,0,0.09637091558356936,0.0,1.3583378691350905,0.0007050647841138182,0.035840442069183485,0.7130517272440862,1,0.13230713591900917,0.1668780600397205,0.06
+104,1,0.1704415914883667,0.0,1.3515726729609046,0.0007003889774060517,0.035681227621260594,0.7144358573826869,1,0.172595750220911,0.20011026303682622,0.11
+104,2,0.11426850019000032,0.0,1.3585733312948982,0.0007049270908213416,0.036064104834403796,0.7130036035115427,1,0.19015590175489483,0.15904644858595712,0.16999999999999998
+104,3,0.23030996507256118,0.0,1.3543744286001895,0.0006950670247091032,0.03600510682352632,0.7138660817567754,1,0.23860856902688113,0.22265655304384263,0.16999999999999998
+104,4,0.22604216389478426,0.0,1.3821710814841157,0.0006987174720343284,0.036651530337751675,0.708153207472875,1,0.28459784266464644,0.25477639654052664,0.21999999999999997
+104,5,0.17239474960956055,0.0,1.3822659384965312,0.0006981660211562808,0.0366553544675053,0.7081338307224806,1,0.3073067240761118,0.2161246539430714,0.27999999999999997
+104,6,0.2904215119630911,0.0,1.38283627119392,0.0006981250851303007,0.03659802005390432,0.708015957118927,1,0.3724507259258477,0.26687919296348117,0.27999999999999997
+104,7,0.3194545631073398,0.0,1.3817980489591541,0.0006976720123212927,0.03650704175691276,0.7082307290221999,1,0.44785256938656426,0.3423538794068076,0.27999999999999997
+104,8,0.2585066482914047,0.0,1.3676611474245017,0.0006902703565856358,0.03641599407702963,0.7111463961890744,1,0.4800405874337651,0.3016414756319565,0.33999999999999997
+104,9,0.37537446080085524,0.0,1.34044975099589,0.000745062020959087,0.03642612258120572,0.7166815612300658,1,0.5295462118315345,0.36677762219939375,0.33999999999999997
+104,10,0.39468531344283453,0.0,1.3370804748556209,0.0007468268587534895,0.03629285139790701,0.7173644743340583,1,0.5914072039156429,0.42564264024119824,0.35
+104,11,0.3984889896863286,0.0,1.299200915581765,0.0007278234941016201,0.03590353776931105,0.7249886116018746,1,0.6367680595911508,0.4520672294314194,0.36
+104,12,0.3640803587661783,0.0,1.2850191532020308,0.0006407422853888843,0.034330210410863905,0.7278416336468808,1,0.6753377179470501,0.42570719161570253,0.42
+104,13,0.46253103171858045,0.0,1.2960393934732095,0.0006587571488131966,0.03434824484613101,0.7256460085490932,1,0.7333532439722319,0.48619132109433094,0.43
+104,14,0.5116299519827212,0.0,1.3091397836421774,0.0006572813397450518,0.0347145420404159,0.7230308282001652,1,0.7826329394542249,0.5256947439124748,0.43
+104,15,0.5021911169741393,0.0,1.3110625513473222,0.0006567840868977033,0.03494418420491302,0.7226458142806307,1,0.8208316805101418,0.5496667626519659,0.48
+104,16,0.45235561072998964,0.05,0.5262179084098264,9.975675865099866e-05,0.012362647839683197,0.841386750509917,1,0.8596032218449348,0.5049816102808751,0.54
+104,17,0.5533193163568958,0.05,0.5940808063034354,0.00015130850789626322,0.015195118018545723,0.8321045425884116,1,0.9116366170147274,0.5808216680058041,0.55
+104,18,0.5670988657044971,0.15000000000000002,0.6368623066493891,0.00016773280261033773,0.016214961637978788,0.8034190658159687,2,0.9422824633723255,0.6243333450806108,0.6000000000000001
+104,19,0.6172182459394274,0.10000000000000002,1.3227237548944755,0.0007281614217885014,0.03582100183720038,0.6890796126479333,2,0.995020093694134,0.6632040438216018,0.5900000000000001
+104,20,0.6145738730421272,0.10000000000000002,1.319776678496636,0.0007396823862194221,0.03612446706308994,0.6897057372017944,2,1.0,0.7152462434737575,0.5800000000000001
+104,21,0.6966545465262614,0.05000000000000002,1.3184273086110987,0.000748513871721816,0.03593236616035017,0.7058007393391957,2,1.0,0.7555151550875379,0.55
+104,22,0.6442743568288176,0.05000000000000002,1.3108378550152222,0.0007539837455517659,0.036118887267929,0.7073719297989858,2,1.0,0.7809145227627253,0.545
+104,23,0.7165435972570615,0.0,1.3115970824864578,0.0007431384482964219,0.03570537564321416,0.7225040406961979,2,1.0,0.8218119908568721,0.515
+104,24,0.581113754973019,0.0,1.280016048928994,0.0007188920958279279,0.03525292340534187,0.7288006674653943,2,1.0,0.7703791832433968,0.495
+104,25,0.7142882713741514,0.0,1.2690732534724758,0.0007477036625992932,0.03545319856343454,0.730946758441732,2,1.0,0.8142942379138379,0.46499999999999997
+104,26,0.6822000482508992,0.0,1.2772576845813877,0.0007201324267256026,0.035334087877655344,0.7293450249893622,2,1.0,0.8740001608363305,0.45499999999999996
+104,27,0.7469223121780924,0.0,1.27285121981213,0.0007228443097294823,0.03455300391378795,0.7302129168526879,2,1.0,0.9230743739269744,0.42499999999999993
+104,28,0.7450091586357626,0.0,1.27463533519224,0.0007371571842884741,0.035416781854749155,0.7298556542076,2,1.0,0.9833638621192089,0.3949999999999999
+104,29,0.71,0.0,1.2747667771708722,0.0007497443273259015,0.034978336942337776,0.7298247736343052,2,1.0,1.0,0.3899999999999999
+104,30,0.6395870348699282,0.0,1.2728714246782442,0.0007381428309482452,0.03516829152758022,0.7302029086573971,2,1.0,0.9652901162330941,0.3699999999999999
+104,31,0.72,0.0,1.2930850060573487,0.0007280062090012952,0.035364574541269664,0.726206250367801,2,1.0,1.0,0.3599999999999999
+104,32,0.636191074298323,0.0,1.2892237295897797,0.0007318373871422251,0.03488298974991931,0.7269717989985202,2,1.0,0.9539702476610765,0.33999999999999986
+104,33,0.77,0.0,1.3081611371034385,0.0007224671962210451,0.035809806938519796,0.7232006692410886,2,1.0,1.0,0.30999999999999983
+104,34,0.75,0.05,0.9418262037828277,0.0005247404430341406,0.027128218136362896,0.7776673736979158,2,1.0,1.0,0.2799999999999998
+104,35,0.71,0.05,0.9888811164848492,0.0005687144834391868,0.02897984672900607,0.7694097709412728,2,1.0,1.0,0.2749999999999998
+104,36,0.72,0.0,1.0007513444018772,0.0005893689088030651,0.028642429902053734,0.7804121706413351,2,1.0,1.0,0.2649999999999998
+104,37,0.77,0.0,0.9728345563663126,0.0005663456144534908,0.028626890414564822,0.7851665446509591,2,1.0,1.0,0.2349999999999998
+104,38,0.75,0.05,1.004984591914226,0.0006036898594979904,0.028567195368145705,0.766527813272551,2,1.0,1.0,0.2049999999999998
+104,39,0.72,0.05,1.0430103154569592,0.0006540089285827401,0.0305775680418305,0.7596354041266066,2,1.0,1.0,0.19499999999999978
+104,40,0.6310746086112666,0.0,1.0275344627219924,0.0006382981671560651,0.030672725057652367,0.7757708988432753,2,1.0,0.9369153620375557,0.1749999999999998
+104,41,0.6975372080192495,0.0,1.0406388142084546,0.0006226316875552044,0.030484183711799673,0.773488646516172,2,1.0,0.9584573600641649,0.1699999999999998
+104,42,0.77,0.05,1.0515900508169673,0.0006328923243451079,0.030375919685502073,0.7580730926561676,2,1.0,1.0,0.1399999999999998
+104,43,0.71,0.1,1.0852023866602714,0.0006799344069767085,0.031140893212173965,0.7375818312840741,2,1.0,1.0,0.1349999999999998
+104,44,0.77,0.05,1.0998826263888484,0.0006834170960891169,0.031147888648464205,0.7490873145015092,2,1.0,1.0,0.10499999999999979
+104,45,0.72,0.1,1.1106932035433168,0.0007176312903091095,0.032261463267806975,0.7326033984506275,2,1.0,1.0,0.09499999999999979
+104,46,0.77,0.05,1.106169865014456,0.0007111047284431378,0.03199365384080867,0.7478933029006435,2,1.0,1.0,0.0649999999999998
+104,47,0.71,0.1,1.1144074923849088,0.0007487737304219715,0.03317138422986889,0.7318629344765443,2,1.0,1.0,0.0599999999999998
+104,48,0.6360079898501456,0.05,1.1263183932673395,0.0007405890410355329,0.03290546430315004,0.7440641502963852,2,1.0,0.953359966167152,0.0399999999999998
+104,49,0.7691627266714001,0.0,1.1430572938399592,0.0007283292756283285,0.033350062346505935,0.7550049034514609,2,1.0,0.9972090889046672,0.0099999999999998
+105,0,0.19019717946844789,0.0,1.3600082743948292,0.0007045097657462442,0.035870298276874144,0.7127100530462404,1,0.15302323073298876,0.2554634957063394,0.01
+105,1,0.20100802813358049,0.0,1.359505351449053,0.0007055626329237947,0.03641016156632622,0.7128125866656362,1,0.18810779739994626,0.2839009968119976,0.060000000000000005
+105,2,0.24910011390872017,0.0,1.358963861839388,0.0007039002817412799,0.03606216609515446,0.7129241031085665,1,0.23997459463876228,0.3503633526171779,0.07
+105,3,0.31047545098295726,0.0,1.3822514983508198,0.0006978718977618694,0.036615123624067526,0.7081369367855633,1,0.3027666882160886,0.4150237003577541,0.07
+105,4,0.32368300482968615,0.0,1.3799060107475467,0.0006958946318648412,0.036555347826515684,0.7086222796144629,1,0.34807982650354385,0.4728502185114861,0.08
+105,5,0.26067986868728044,0.0,1.381572427966365,0.0006979324222008048,0.036619457193800733,0.7082772415333698,1,0.37352324932964875,0.43315577140634454,0.14
+105,6,0.3520943568985477,0.0,1.3816879962131703,0.0006974629708967036,0.03658336258875953,0.7082535561851107,1,0.4090882114792822,0.4963782762693298,0.15000000000000002
+105,7,0.2924068561307578,0.0,1.3725019685224407,0.0006924721801121615,0.036165942208957025,0.7101500863642357,1,0.4367903625676677,0.4651007641069138,0.21000000000000002
+105,8,0.4102324729434653,0.0,1.3748440192987679,0.000696410968282383,0.03656165492222675,0.7096661455345806,1,0.4900528798938198,0.5290465499354281,0.21000000000000002
+105,9,0.43396059449661384,0.0,1.3757464425250487,0.0006950914956992014,0.036074824180729034,0.7094807189156288,1,0.5523077786523544,0.6021762398942996,0.22000000000000003
+105,10,0.44639826983047526,0.0,1.385850145761486,0.0007002055327264994,0.03652952099421622,0.707391649108072,1,0.6057598796835606,0.647941039804097,0.23000000000000004
+105,11,0.5279734134685692,0.0,1.3171745258404628,0.0006702956653383226,0.03443994905013021,0.721413701885472,1,0.6800160281982324,0.6998926786639597,0.23000000000000004
+105,12,0.5432671810065569,0.0,1.3273282210311992,0.0006685627629702199,0.03550558635757929,0.7193691723403862,1,0.7346918103060511,0.75375015799813,0.23000000000000004
+105,13,0.5567685037625363,0.0,1.3346253612996652,0.0006679521916645588,0.03534985596911256,0.7178939382944727,1,0.7879849159930278,0.7699126105499219,0.28
+105,14,0.5519452778499243,0.0,1.342664195200571,0.0006823983480705414,0.03549497550981062,0.7162571759764934,1,0.8177328157071653,0.7857959745080553,0.33
+105,15,0.5738931986303055,0.0,1.3652569549473412,0.0006984639935892261,0.03632947783622106,0.7116366450416955,1,0.8536397610710225,0.8170642741848259,0.38
+105,16,0.6609242178795343,0.0,1.1189910257827336,0.0006671304046383483,0.03157464051368852,0.7594514970091798,1,0.9011928992946935,0.8850223437546383,0.38
+105,17,0.6796621800880549,0.05,1.1392698516657092,0.0006645092056015691,0.032523677876312086,0.7416191409390559,1,0.9518402667718724,0.9550602890596651,0.39
+105,18,0.73,0.05,1.1780250606330969,0.0006589877185819992,0.03253537786358048,0.7341257658305184,1,1.0,1.0,0.39
+105,19,0.71,0.1,1.1930083278421462,0.00065713903652656,0.033026019144134625,0.7161975001787075,1,1.0,1.0,0.39
+105,20,0.71,0.1,1.211360383621545,0.0006601010911297205,0.033314519242638604,0.7124513189424375,1,1.0,1.0,0.4
+105,21,0.73,0.1,1.2360705164422239,0.0006516086852394343,0.03321369896561058,0.7073661522121324,1,1.0,1.0,0.4
+105,22,0.71,0.1,1.2421113634244065,0.0006509954121966141,0.03376101450245046,0.7061143912204172,1,1.0,1.0,0.4
+105,23,0.71,0.1,1.244921002841593,0.0006503508850522441,0.033629513070734834,0.7055312740285578,1,1.0,1.0,0.41000000000000003
+105,24,0.73,0.05,1.2665305331950014,0.0006458258881871335,0.03398284036225514,0.7165023747459308,1,1.0,1.0,0.41000000000000003
+105,25,0.639684906966506,0.0,1.2613466680761862,0.0006431292097724836,0.03376521797722357,0.732504565258729,1,1.0,0.96561635655502,0.47000000000000003
+105,26,0.6058755159654632,0.0,1.2693413719925353,0.0006609909499081606,0.03418255901537741,0.7309281353500777,1,1.0,0.9195850532182106,0.53
+105,27,0.5960469039241458,0.0,1.2795728098217247,0.000681680071057716,0.03445872589153602,0.72890297160076,1,1.0,0.8868230130804865,0.5900000000000001
+105,28,0.7140941197935704,0.0,1.286836121801368,0.0007019970425405656,0.03509573639990121,0.7274572762131413,0,1.0,0.9469803993119014,0.5900000000000001
+105,29,0.6668642478063861,0.05,0.7771216066893252,0.00029118697629776103,0.020902084356301136,0.8049141675366452,2,1.0,0.9562141593546203,0.6000000000000001
+105,30,0.7039726466944543,0.0,1.3033886106895534,0.0006866286593735398,0.034711743006945676,0.724169339724503,2,1.0,0.9799088223148475,0.5950000000000001
+105,31,0.72,0.0,1.2960291690824555,0.0006791877913834816,0.03471585862834612,0.7256399091951586,2,1.0,1.0,0.5850000000000001
+105,32,0.77,0.0,1.2905598659742388,0.0006798673642032446,0.0345430062197394,0.7267271595955789,2,1.0,1.0,0.555
+105,33,0.72,0.0,1.2967129732628702,0.0006945394458296237,0.03521483397414445,0.7254976373748079,2,1.0,1.0,0.545
+105,34,0.71,0.0,1.290971622708685,0.0006953744009997342,0.03461890992351926,0.7266392187908999,2,1.0,1.0,0.54
+105,35,0.77,0.0,1.2875341470283939,0.0006873709226266478,0.034947210161946865,0.7273246629811653,2,1.0,1.0,0.51
+105,36,0.72,0.0,1.2925400415708517,0.0007019103105053693,0.03476293910979839,0.7263249673490662,2,1.0,1.0,0.5
+105,37,0.77,0.0,1.287205616426398,0.0007035028896095422,0.03506668859552013,0.7273834156656436,2,1.0,1.0,0.47
+105,38,0.71,0.0,1.2906502757887197,0.0007187375547367171,0.034891758807306994,0.7266937645688673,2,1.0,1.0,0.46499999999999997
+105,39,0.640244899333924,0.0,1.2878720211142096,0.0007089887913668126,0.03491358217151294,0.7272490734002008,2,1.0,0.9674829977797467,0.44499999999999995
+105,40,0.72,0.0,1.3066883513924736,0.0007018323680817032,0.035317952856762494,0.7235036526093929,2,1.0,1.0,0.43499999999999994
+105,41,0.77,0.0,1.3017991823050574,0.0007035944703702741,0.034799608721845114,0.7244799388915516,2,1.0,1.0,0.4049999999999999
+105,42,0.75,0.0,1.3043012094340591,0.0007171321680548119,0.035652713916975096,0.7239748213777195,2,1.0,1.0,0.3749999999999999
+105,43,0.6364204300398699,0.0,1.3049531708388327,0.0007290370802033732,0.035224596811350636,0.7238397580078789,2,1.0,0.9547347667995663,0.35499999999999987
+105,44,0.72,0.0,1.322149310243281,0.0007205015402347896,0.03605686353316227,0.7203925641234646,2,1.0,1.0,0.34499999999999986
+105,45,0.6405861952681889,0.0,1.3176695975677877,0.000723048791605824,0.035564969998270725,0.721292984092873,2,1.0,0.9686206508939633,0.32499999999999984
+105,46,0.7085141734503297,0.0,1.0113025260389361,0.0005843107539998327,0.02905911279012951,0.7786004201897709,2,1.0,0.9950472448344325,0.31999999999999984
+105,47,0.69,0.05,1.0133241473284729,0.0006006695685284253,0.02871863534773475,0.7650331118334325,2,1.0,1.0,0.31499999999999984
+105,48,0.69,0.05,1.02356861479786,0.0006128728728088239,0.028930224870604027,0.7631821840138524,2,1.0,1.0,0.30999999999999983
+105,49,0.6329125473569093,0.05,1.0210002818672543,0.0006199322211605393,0.029540598839985104,0.7636435099109431,2,1.0,0.943041824523031,0.2899999999999998
+106,0,0.1562728800312294,0.0,1.3594331828095128,0.0007049076341059991,0.03592110840475242,0.712827628301237,1,0.11594580085829387,0.21897283243608853,0.05
+106,1,0.15351571296497904,0.0,1.3578012749786346,0.0007038986253158723,0.036381889248273985,0.7131619837680404,1,0.15482047511444338,0.2310951555830795,0.1
+106,2,0.25466997285066784,0.0,1.3573430094338017,0.0007026346684619626,0.03600647676948995,0.7132562353256732,1,0.2294870685965233,0.3144983294729491,0.1
+106,3,0.17716203164137345,0.0,1.382836163669139,0.0006981272466658141,0.03663338810689905,0.7080159784537501,1,0.26271347585128935,0.2840410503114073,0.16
+106,4,0.24270585666118877,0.0,1.3831503371032936,0.0006980641175643337,0.03666415525952313,0.7079510514434038,1,0.2894008510606237,0.3047185292999016,0.21000000000000002
+106,5,0.3146347461136042,0.0,1.3831370412609916,0.0006979454659174944,0.03666324793222668,0.7079538494994547,1,0.3479280889679742,0.37619971658271073,0.21000000000000002
+106,6,0.3118849982734885,0.0,1.3821577403924117,0.0006973497332050815,0.03657007524577202,0.7081565300423938,1,0.40549539109199983,0.3998720379709619,0.26
+106,7,0.2586687464903412,0.0,1.3718559871896996,0.0006914394114159391,0.03617257387867511,0.7102834601812771,1,0.4314250963686313,0.3588998758710675,0.32
+106,8,0.35563205162459754,0.0,1.375643746438845,0.0006929666210058816,0.03650667982396273,0.7095027618651663,1,0.48107536304484816,0.42418558186300226,0.33
+106,9,0.36764576547074374,0.0,1.3750270600425367,0.0006952605654551554,0.03609066880511997,0.7096289044471656,1,0.5173320297871599,0.4552651834841259,0.38
+106,10,0.43340142208768406,0.0,1.299392347838917,0.0007919947101591169,0.035947367987841525,0.7249248502976626,1,0.5715995224936818,0.511138630716318,0.38
+106,11,0.42535866046731075,0.0,1.2929436003879022,0.0007920624020248743,0.036477801126450604,0.726208893473126,1,0.5986771822061356,0.552738822317211,0.43
+106,12,0.43007956173316864,0.0,1.3054412343590545,0.0007772696843566861,0.03621144311491238,0.7237228979051108,1,0.6416047861734815,0.5850596219081673,0.48
+106,13,0.5238420065922047,0.0,1.2870102339769272,0.0006412277859004219,0.03399100207110782,0.7274468526666343,1,0.7002991783166723,0.6624576472712314,0.48
+106,14,0.5133129614250579,0.0,1.32394673334911,0.0007635288673999898,0.03647120704688359,0.7200130231900779,1,0.7325562681469246,0.6897275585787809,0.53
+106,15,0.557272307104749,0.0,1.335054392995643,0.0007514389220246958,0.036313516850810086,0.7177732183262254,1,0.7663296516094068,0.7635230968048552,0.54
+106,16,0.4950454212325158,0.0,1.332784322266444,0.0007632587800723505,0.036645733464018324,0.7182280659879852,2,0.7933969302634424,0.7245216521343699,0.6000000000000001
+106,17,0.660770545268784,0.0,1.3862943611198844,0.0007001722195526525,0.03643786636773582,0.7072997068701548,2,0.8744841494783364,0.7823369765045542,0.5700000000000001
+106,18,0.686827761961285,0.05,1.2119743665982523,0.0007189070631234182,0.03429633788712279,0.727423160754787,2,0.9496657360625329,0.8481491811313288,0.54
+106,19,0.6886335629866089,0.0,1.2992733790700708,0.0007329397263392635,0.03544707839412774,0.724972123365736,2,1.0,0.8954452099553633,0.53
+106,20,0.6842085456096034,0.0,1.2909372541249018,0.0007366407023366923,0.0352164456053964,0.7266296516427344,2,1.0,0.9473618186986784,0.52
+106,21,0.6183848096409665,0.0,1.2852300118143816,0.0007380365693146767,0.035269096018469254,0.7277613119299843,2,1.0,0.8946160321365555,0.5
+106,22,0.7061494369277991,0.0,1.3045973121982748,0.000727304918196484,0.03546897176095853,0.7239115793685305,2,1.0,0.953831456425997,0.49
+106,23,0.77,0.0,1.2979917736141355,0.0007277247395891085,0.03507079988278908,0.7252296642406587,2,1.0,1.0,0.45999999999999996
+106,24,0.71,0.0,1.299415021258846,0.0007449418266499726,0.03579680321440293,0.7249390943082507,2,1.0,1.0,0.45499999999999996
+106,25,0.72,0.0,1.2996756212820861,0.0007335771289668734,0.03533589579968276,0.7248916597954205,2,1.0,1.0,0.44499999999999995
+106,26,0.6305357493015457,0.0,1.2934555848700373,0.0007348786731179368,0.03570285992296123,0.7261298283540387,2,1.0,0.9351191643384856,0.42499999999999993
+106,27,0.7174507873868088,0.0,1.3119879610995677,0.0007245559836005831,0.03566646911662556,0.7224331183683037,2,1.0,0.9915026246226959,0.4149999999999999
+106,28,0.7,0.0,1.3051313460460547,0.0007246249345095149,0.03555782071405224,0.7238059041941569,2,1.0,1.0,0.4049999999999999
+106,29,0.6340316580013252,0.0,1.2977228166300174,0.0007238864780959507,0.03550589315352776,0.7252847860070033,2,1.0,0.9467721933377508,0.3849999999999999
+106,30,0.7196836960450264,0.0,1.3152396709198901,0.0007143982300738881,0.03521207545471965,0.7217846823337996,2,1.0,0.9989456534834213,0.3749999999999999
+106,31,0.77,0.0,1.3069876410182493,0.0007124576309984305,0.035353047303389534,0.7234395252029745,2,1.0,1.0,0.34499999999999986
+106,32,0.71,0.0,1.310003222904998,0.0007325230809051631,0.03561372335523204,0.722827736910984,2,1.0,1.0,0.33999999999999986
+106,33,0.72,0.0,1.3120221251375683,0.0007225590142646394,0.03570734706610742,0.722427068513555,2,1.0,1.0,0.32999999999999985
+106,34,0.77,0.0,0.9605706818287592,0.0006345007490509771,0.028620297211480933,0.7872051474585762,2,1.0,1.0,0.2999999999999998
+106,35,0.71,0.05,0.9928137340838985,0.0006409392996017603,0.02929776949857945,0.7686856299023073,2,1.0,1.0,0.2949999999999998
+106,36,0.69,0.0,0.9985472134110359,0.0006422453425538525,0.02924644481281608,0.7807715560343941,2,1.0,1.0,0.2899999999999998
+106,37,0.72,0.0,0.985694282371083,0.0006412382592810156,0.029313621048386595,0.782963959486036,2,1.0,1.0,0.2799999999999998
+106,38,0.77,0.05,0.9791637110170891,0.000641542729567666,0.02890692104746275,0.7711035942607561,2,1.0,1.0,0.2499999999999998
+106,39,0.71,0.1,1.0178941911915178,0.0006494869742725841,0.029808543402450587,0.7504112516182495,2,1.0,1.0,0.2449999999999998
+106,40,0.72,0.05,1.0215331111388182,0.0006465585626718008,0.030100695243759572,0.7635377104036116,2,1.0,1.0,0.2349999999999998
+106,41,0.7,0.05,1.0073293324956718,0.0006471950203003171,0.02928819060871666,0.7660923379889986,2,1.0,1.0,0.22499999999999978
+106,42,0.71,0.05,1.0004965120961713,0.0006464658108590189,0.029846853348848085,0.7673147778522882,2,1.0,1.0,0.21999999999999978
+106,43,0.77,0.05,0.9968116813863064,0.000645228958196663,0.029275772581557485,0.7679724705284627,2,1.0,1.0,0.18999999999999978
+106,44,0.75,0.1,1.025446301026897,0.0006548276488906488,0.03039550743762457,0.7489921038259209,2,1.0,1.0,0.15999999999999978
+106,45,0.72,0.1,1.0573799615206896,0.0006702864470989261,0.031185834861268368,0.74293497690548,2,1.0,1.0,0.14999999999999977
+106,46,0.71,0.05,1.050981507676374,0.0006705976915012406,0.03012983670618573,0.7581708547687532,2,1.0,1.0,0.14499999999999977
+106,47,0.6346145490283437,0.05,1.0403455977034257,0.0006634339070758677,0.03054479323765418,0.7601181797610165,2,1.0,0.9487151634278126,0.12499999999999976
+106,48,0.769331599176556,0.0,1.0578617578102518,0.0006585332818952628,0.030398330705201815,0.7704442143604734,2,1.0,0.9977719972551868,0.09499999999999977
+106,49,0.75,0.05,1.0738854962120514,0.000673752335787059,0.030372525262327598,0.7539454946198533,2,1.0,1.0,0.06499999999999977
+107,0,0.16772654434102197,0.0,1.3581022318113036,0.0007039245015832415,0.0358326497301245,0.7131004049086072,1,0.1350656028299567,0.2348452778351237,0.05
+107,1,0.23827933364195547,0.0,1.3563468602004587,0.0007027945012115557,0.03636286154307716,0.7134598608994156,2,0.18896418656557099,0.3071395611466854,0.05
+107,2,0.1484705266861795,0.0,1.3862943611198846,0.0007001722195526525,0.036653943583842885,0.7072997068701548,2,0.20674043776320206,0.2537045782301959,0.030000000000000002
+107,3,0.23652129130516497,0.0,1.3855360769391356,0.000699955646878385,0.03672085074438494,0.7074567570055306,2,0.265236165202693,0.27896211161407475,0.025
+107,4,0.34323589855804226,0.0,1.3855045855171393,0.0006997153367733972,0.036753212638034084,0.7074633739496557,2,0.3601347269235856,0.3239624804492911,0.0
+107,5,0.3734809023496751,0.0,1.3848881649143965,0.0006995122082452233,0.036735419285495896,0.7075910154497478,2,0.4585903079310819,0.37658098191265504,0.0
+107,6,0.4160753155707607,0.0,1.3804307455667506,0.0006993148164494264,0.03656640644844963,0.7085125095293932,2,0.5297379783774604,0.43555674379549886,0.0
+107,7,0.40349299341676376,0.0,1.3859836574597413,0.0006999650645152428,0.03661623458364854,0.7073641124834237,2,0.5815869386635665,0.4664585496150518,0.0
+107,8,0.33447072366487907,0.0,1.3854423688871769,0.0006997300120348195,0.03646488488345116,0.7074762439975687,2,0.5999029944816249,0.41501558532103455,0.0
+107,9,0.48812802671358735,0.0,1.3857274373705872,0.000700349336192449,0.03634885269178721,0.7074169881841064,2,0.6723912958226312,0.4426369105855547,0.0
+107,10,0.35467186276972246,0.0,1.2777945735632987,0.0006607326117893147,0.03351886002549119,0.729262485878715,2,0.6780097164221296,0.39122820673992376,0.0
+107,11,0.4415864320593616,0.0,1.3625142683669798,0.000705869640993764,0.036408308136616926,0.7121961088037522,2,0.7303346192435354,0.41989771774708085,0.0
+107,12,0.3772225088679321,0.0,1.2842001422873341,0.0006591590486440774,0.03427057723076123,0.7279965461346966,2,0.7612004484725864,0.369341173008423,0.0
+107,13,0.47848755178731617,0.0,1.3697568649674838,0.0007002185197954951,0.03640710828113602,0.7107116186582573,2,0.8112188318119273,0.41520320217713863,0.0
+107,14,0.4930177117891965,0.05,1.166667057588016,0.0009033677204928765,0.035422980716521016,0.7362418745577793,2,0.8514667247852377,0.45001452704787775,0.0
+107,15,0.5935599887829421,0.05,1.18567666754945,0.0008758688729558759,0.035797226516224065,0.73254463756985,2,0.9264688773750676,0.4976529390055617,0.0
+107,16,0.4667451799356528,0.1,1.1837368262511174,0.0008968454928148656,0.035871937238562975,0.7179811662427447,2,0.9419005519154748,0.45693328921745535,0.0
+107,17,0.4386392727027715,0.05,1.2136532468765844,0.0008718967564014949,0.035745466726117836,0.7270294277459163,2,0.9677913888992445,0.3997076219601199,0.0
+107,18,0.5986756952280601,0.0,1.3808571017996651,0.0006967752657863911,0.036504571067567396,0.7084254986670444,2,1.0,0.4289189840935335,0.0
+107,19,0.4686262264140962,0.05,1.1939244042382267,0.0008895451912735706,0.03597776753622135,0.7309202407116784,2,1.0,0.39542075471365407,0.0
+107,20,0.42803749648883876,0.0,1.361802262433749,0.0006876981104046503,0.035894266779309666,0.7123494756397393,2,1.0,0.326791654962796,0.0
+107,21,0.5849427542882008,0.0,1.3649742044054747,0.0006870446436003218,0.03611201691571448,0.7116993509328471,2,1.0,0.3831425142940026,0.0
+107,22,0.44751752546131196,0.0,1.3593532725952089,0.0006839518831467778,0.03579810946049973,0.7128525650960724,2,1.0,0.3250584182043733,0.0
+107,23,0.5176741179043342,0.0,1.3628269379486726,0.0006841898827818973,0.03610320716168281,0.7121409044081264,2,1.0,0.35891372634778046,0.0
+107,24,0.539267193512337,0.0,1.3632540749718038,0.0006839807845855784,0.0357895338460607,0.712053420736436,2,1.0,0.3975573117077902,0.0
+107,25,0.4553253745983164,0.0,1.3688754470202031,0.0006897712361800667,0.036430538093981925,0.7108970993874318,2,1.0,0.3510845819943881,0.0
+107,26,0.5918698019928612,0.0,1.3714126805742297,0.00068998269115626,0.0358706763880079,0.7103752751142258,2,1.0,0.40623267330953755,0.0
+107,27,0.5572646472981402,0.05,1.1897917071044846,0.0008929204555308739,0.0359474418204261,0.7317309411793128,2,1.0,0.4575488243271342,0.0
+107,28,0.5565923916031739,0.0,1.1886251070154819,0.0008871071451002233,0.03546352390471631,0.7464184080498957,2,1.0,0.5219746386772462,0.0
+107,29,0.6419163604303425,0.0,1.1737776805464657,0.0008907456207818104,0.035780107313723955,0.7492170357737653,2,1.0,0.5730545347678085,0.0
+107,30,0.6353372363782921,0.05,1.1716366231656288,0.0009157092826785764,0.03565534769689439,0.7352708989294929,2,1.0,0.6177907879276403,0.0
+107,31,0.5198321191390056,0.05,1.0746199437051,0.0009950211570210492,0.035103750724377124,0.7536899584708017,2,1.0,0.5661070637966855,0.0
+107,32,0.5997753935361356,0.0,1.1271488294376635,0.0009657882707126506,0.03615610606627913,0.7578484375622946,2,1.0,0.5992513117871188,0.0
+107,33,0.6620485679963073,0.05,1.1158379149165918,0.0009953690376917493,0.03593714217176329,0.7459583138834568,2,1.0,0.6401618933210245,0.0
+107,34,0.6109807912236787,0.1,1.0644175687240285,0.0010034147663738507,0.035738584123926984,0.741460921521777,2,1.0,0.6699359707455957,0.0
+107,35,0.5407498338408321,0.05,1.1003580088701885,0.0009680839385634849,0.036020651406589825,0.7488909032485647,2,1.0,0.6358327794694403,0.0
+107,36,0.6753939799358974,0.0,1.1179237918880451,0.0009517403455889362,0.035320476272058324,0.7595424649037276,2,1.0,0.6846465997863251,0.0
+107,37,0.6191065937967236,0.05,1.095652603588208,0.0009468623167991478,0.034885770096501525,0.7497826964145485,2,1.0,0.6970219793224122,0.0
+107,38,0.6073024467586284,0.0,1.129672419670944,0.0009154095830788056,0.03508199214230967,0.7574035356460921,2,1.0,0.7243414891954284,0.0
+107,39,0.614020915785548,0.0,1.1416792519566876,0.0008944046693305709,0.03527521378499722,0.7551983129400066,2,1.0,0.7467363859518268,0.0
+107,40,0.5582411704022031,0.0,1.1591726238761035,0.0008709770453796367,0.03489646988677921,0.7519585665215168,2,1.0,0.6941372346740103,0.0
+107,41,0.5255137423673665,0.0,1.1852405307596683,0.0008515134701631885,0.0355026915121179,0.7470719507799615,2,1.0,0.6517124745578884,0.0
+107,42,0.6283703943188865,0.0,1.210581606983048,0.0008315928801449193,0.0352198337779059,0.7422613288403654,2,1.0,0.694567981062955,0.0
+107,43,0.6220928835805628,0.05,1.2101702712550941,0.0008608977038161542,0.03612489621983763,0.7277244627829693,2,1.0,0.7403096119352094,0.0
+107,44,0.7072548587515086,0.05,1.214562126275226,0.0008791497982483749,0.03621676758743664,0.7268461364318877,2,1.0,0.7908495291716956,0.0
+107,45,0.7012733824692327,0.1,1.204349343124992,0.0008777206177397081,0.035659492928807116,0.7137965825719199,2,1.0,0.837577941564109,0.0
+107,46,0.7149814727037713,0.1,0.9616245527161951,0.0006348352049154084,0.0286464487443601,0.7608064217186196,2,1.0,0.8832715756792382,0.0
+107,47,0.5985964240130522,0.1,0.9922795142102864,0.0006355560576875698,0.02929644583151935,0.7551830485057457,2,1.0,0.8286547467101744,0.0
+107,48,0.6841217609229103,0.05,1.0145489958406095,0.0006296861327148478,0.029031270327614444,0.7648024258985651,2,1.0,0.8804058697430346,0.0
+107,49,0.6887998907618319,0.1,0.9982814954402417,0.0006299905172500469,0.02927088271040477,0.7540737579493195,2,1.0,0.9293329692061064,0.0
+108,0,0.18890960060913606,0.05,1.3596559497024114,0.000694664370294854,0.03587310701896647,0.6971904849794268,1,0.15039020761566185,0.25424342647884807,0.01
+108,1,0.20033415933155668,0.0,1.3576972555430853,0.0006950855230118251,0.036274997619670984,0.7131868671944083,1,0.1854525999113563,0.28475249787527335,0.060000000000000005
+108,2,0.2725431883164318,0.0,1.3555205282069145,0.000693315926774423,0.035849003433691705,0.7136326363053215,1,0.23664123794587177,0.36572918345125566,0.060000000000000005
+108,3,0.29736719713590676,0.0,1.382158023705681,0.0006973532160026636,0.03660769897769807,0.7081564700502078,1,0.3023527014558753,0.4384791720878349,0.060000000000000005
+108,4,0.3351388978965839,0.0,1.3833478030219637,0.0007010227017191937,0.03673394501518722,0.7079089989181997,1,0.3486171698602066,0.5104096281517054,0.07
+108,5,0.27272731250724025,0.0,1.3833441027121827,0.0007024726750298259,0.0367508330723576,0.7079091644123426,1,0.3753143139237615,0.471224342113079,0.13
+108,6,0.3529768367329431,0.0,1.3835129239740287,0.0007014078514970113,0.036674190314403846,0.7078746957626776,1,0.43306014697418643,0.5046859509732594,0.18
+108,7,0.3549876656722776,0.0,1.373892845899579,0.00069489962587967,0.036257974380410264,0.7098627088583367,1,0.4686395674109083,0.536546056928199,0.22999999999999998
+108,8,0.32550793699659863,0.0,1.3713637491699693,0.0006939292544800722,0.036500954386757864,0.7103837183486409,1,0.5010604023544196,0.5004559872418394,0.29
+108,9,0.4160388573791921,0.0,1.373395041703633,0.0006984783133312761,0.03608497864046484,0.7099637509151823,1,0.5551782172303257,0.539088271161927,0.3
+108,10,0.431486255334281,0.0,1.3759097769577808,0.000697141462721751,0.03655306010423776,0.7094462064971315,1,0.6062413781028239,0.5976725766609756,0.31
+108,11,0.4552872719984815,0.0,1.3416378127329476,0.0007579388747192285,0.03647233290767074,0.716435032285576,1,0.630335884868412,0.6155657076484576,0.36
+108,12,0.5232059000625903,0.0,1.3171188636030045,0.0007824536918695053,0.03650180586564745,0.7213798052551488,1,0.6806520729021424,0.6832589151561349,0.36
+108,13,0.5433727381271192,0.0,1.3108994539145036,0.0007843627658904351,0.036517136845432535,0.7226273624383018,1,0.7338496443845687,0.7550845419750674,0.36
+108,14,0.4803870100264997,0.0,1.3037545669016366,0.0007853855613019591,0.03649018026433656,0.7240567734398228,1,0.7586246681430819,0.71622792058807,0.42
+108,15,0.5550049770869898,0.0,1.3163992455071216,0.000770998547824383,0.03621639280921578,0.7215290222288168,1,0.8045911504485175,0.7446602481000294,0.47
+108,16,0.6020348697209754,0.0,1.2796487760109907,0.0007139359407760156,0.0350157260082598,0.7288752117876726,1,0.866229175218815,0.7961821946479671,0.48
+108,17,0.6128339097958202,0.0,1.2716907360707363,0.0007121333943830158,0.034865414797065473,0.7304456912667928,1,0.8985218410015977,0.8278375514842033,0.53
+108,18,0.5660426306155094,0.0,1.2354428412490333,0.0007645819293885149,0.03427681157790065,0.737502514525299,1,0.9465879436966739,0.7824561677389119,0.5900000000000001
+108,19,0.5406938550866581,0.0,1.328437226617919,0.0006881773171484488,0.035385200763072354,0.7191373115966803,2,0.9616927123416137,0.7470046858903111,0.6500000000000001
+108,20,0.6613779823717529,0.0,1.1331749299996323,0.0006546247193983058,0.03207982225537846,0.7568553872347527,2,1.0,0.8045932745725097,0.6400000000000001
+108,21,0.6544963542516931,0.0,1.342366058664484,0.0007101515089406904,0.03599370145317069,0.7163064838150799,2,1.0,0.848321180838977,0.6300000000000001
+108,22,0.6715614448677788,0.0,1.34012006756536,0.0007131672903174197,0.03588919619656711,0.7167614487349202,2,1.0,0.8718714828925962,0.6250000000000001
+108,23,0.6642690606030704,0.0,1.3381622351053517,0.0007066049294510571,0.03555332398838292,0.7171614105669386,2,1.0,0.914230202010235,0.6200000000000001
+108,24,0.7070580992521687,0.0,1.335795901164189,0.0007006162007441195,0.03597107267947049,0.7176435801862431,2,1.0,0.9568603308405625,0.6100000000000001
+108,25,0.6247170498579764,0.0,1.3331490879756855,0.0007038893514905224,0.03534700902373279,0.7181782732588778,2,1.0,0.9157234995265879,0.5900000000000001
+108,26,0.7613169388059555,0.0,1.3458411309831517,0.0007001141862967631,0.036210463175811856,0.7156038641421655,2,1.0,0.9710564626865185,0.56
+108,27,0.72,0.0,1.3455959259922206,0.0007065236224522929,0.03567250870297554,0.7156511558273158,2,1.0,1.0,0.55
+108,28,0.77,0.0,1.3428921831367993,0.0007094454966437282,0.03616933195123599,0.716199844107833,2,1.0,1.0,0.52
+108,29,0.6372818458884493,0.0,1.3418875685038545,0.000716371245952899,0.03596944141431154,0.7164011811284091,2,1.0,0.9576061529614976,0.5
+108,30,0.704129215785082,0.0,1.3534348339521398,0.000711334403743362,0.03605496103668337,0.7140513230407048,2,1.0,0.9804307192836067,0.495
+108,31,0.6284643419947562,0.0,1.3517928883385388,0.0007053293806093798,0.03597672635797708,0.7143889114728313,2,1.0,0.928214473315854,0.475
+108,32,0.7643343859862696,0.0,1.361311170684349,0.0007025353470072465,0.03615122115501897,0.7124440143278945,2,1.0,0.981114619954232,0.44499999999999995
+108,33,0.71,0.0,1.3601073957473229,0.0007066671969570461,0.03635893297349655,0.7126888735566986,2,1.0,1.0,0.43999999999999995
+108,34,0.6356639738206391,0.0,1.3584127799490582,0.0007016769441924599,0.035893465100192895,0.7130377859826798,2,1.0,0.9522132460687969,0.41999999999999993
+108,35,0.77,0.0,1.3667394488789788,0.0006998903800389386,0.03647359329564019,0.7113317413561533,2,1.0,1.0,0.3899999999999999
+108,36,0.71,0.0,1.3651890014761858,0.0007028234586056904,0.036086768691420676,0.7116488004053755,2,1.0,1.0,0.3849999999999999
+108,37,0.77,0.0,1.363360799002812,0.0006983807731136673,0.036340601300406776,0.7120256329969664,2,1.0,1.0,0.35499999999999987
+108,38,0.75,0.0,1.361276929561308,0.0007008874068827744,0.03607610987497553,0.7124517043801213,2,1.0,1.0,0.32499999999999984
+108,39,0.75,0.0,0.9137300959837176,0.0004444943411704232,0.025844461758065245,0.7950079497764422,2,1.0,1.0,0.2949999999999998
+108,40,0.75,0.0,0.9491245970822242,0.0005025976631413574,0.027112205201446665,0.7891601116372846,2,1.0,1.0,0.2649999999999998
+108,41,0.75,0.0,0.9805326933322658,0.0005697056839971692,0.02874615240160346,0.7838640336411014,2,1.0,1.0,0.2349999999999998
+108,42,0.6374006149072456,0.0,1.0071006500771027,0.0006424821156285551,0.030059862460121593,0.7793038900974257,2,1.0,0.9580020496908189,0.2149999999999998
+108,43,0.72,0.0,1.0353538782778984,0.0006326310456478649,0.030409723818903438,0.7744097559327885,2,1.0,1.0,0.2049999999999998
+108,44,0.77,0.05,1.015433382354523,0.000610393315170229,0.02990728908051258,0.7646502494372569,2,1.0,1.0,0.1749999999999998
+108,45,0.71,0.1,1.0507579135373224,0.0006945528992342649,0.0311665620442235,0.7441883977394338,2,1.0,1.0,0.1699999999999998
+108,46,0.6334730335348919,0.05,1.084470999891649,0.0006980230007115678,0.03186404069271062,0.7519674319494811,2,1.0,0.944910111782973,0.1499999999999998
+108,47,0.7653210098363175,0.0,1.1021105636376687,0.0006793049858295557,0.031938534999616706,0.7625173739474034,2,1.0,0.9844033661210584,0.1199999999999998
+108,48,0.75,0.05,1.106832911202062,0.000736530666190549,0.03274103820830943,0.7477586743791601,2,1.0,1.0,0.0899999999999998
+108,49,0.632612483169108,0.05,1.1278845069375323,0.0007976523409814015,0.033725425467531135,0.7437440464260608,2,1.0,0.9420416105636937,0.0699999999999998
+109,0,0.18944725692560588,0.0,1.3570868334611346,0.0006961470919290938,0.0358171385862623,0.7133112794327217,1,0.14994589646443773,0.25655397721017553,0.01
+109,1,0.12827689480504964,0.0,1.3549923289407326,0.0006967888786417294,0.036270435013183625,0.7137391483508877,1,0.18045936537946683,0.21705372307412082,0.06999999999999999
+109,2,0.21383822591088117,0.0,1.3611698894240662,0.0006958470895748609,0.036024003087667296,0.7124756976448968,1,0.22341918610707384,0.25213836924468447,0.07999999999999999
+109,3,0.2379714735084077,0.0,1.3827934263549007,0.0006977438797270581,0.03662965043654939,0.708024971936069,1,0.2983919123727359,0.2784476805931672,0.13
+109,4,0.18168761219488794,0.0,1.382601666547068,0.000697590413045497,0.03663044112265872,0.7080646754640416,1,0.3195913355493226,0.23276881584208348,0.19
+109,5,0.3070500614785893,0.0,1.3828658668062863,0.0006978898113851787,0.03665313847278822,0.7080099360763812,1,0.39933942068604794,0.2909375474615752,0.19
+109,6,0.2327180220098342,0.0,1.381988674288691,0.0006971780792655206,0.036565918344892326,0.7081915407963203,1,0.445779630322904,0.25565050465605943,0.25
+109,7,0.35747580975793863,0.0,1.3758378363475527,0.000694856722824426,0.036293321649866685,0.7094619774442015,1,0.5152684081672768,0.32377288966463913,0.25
+109,8,0.37597944477451717,0.0,1.375576304551081,0.0006959154399682568,0.03651628705661852,0.709515446500338,1,0.576957373667445,0.3801478799697048,0.25
+109,9,0.391552602786741,0.0,1.3749043215141583,0.0006968651221592589,0.03612032825129978,0.7096535335499615,1,0.6172578723497181,0.4183744915477988,0.3
+109,10,0.46053873820072777,0.0,1.3165828275543805,0.0007695688911654399,0.036605689133416455,0.7214927090792516,1,0.6770692796092551,0.47854830112496166,0.3
+109,11,0.4789549352801702,0.0,1.3244095367561188,0.0007573885417787681,0.036050128923397026,0.719922191382387,1,0.7279575385060941,0.5472326560101244,0.3
+109,12,0.5092183876573485,0.0,1.330014338660632,0.0007463801774700333,0.03636342461007141,0.7187951299393212,1,0.7677959389197409,0.6016326967847974,0.31
+109,13,0.5241154128897657,0.0,1.3429122713249921,0.0006830272149975175,0.03564922091204124,0.7162065004177286,1,0.8020535599166451,0.6446555563964665,0.36
+109,14,0.5268648876493891,0.0,1.2863982747894915,0.0006400573181468805,0.033856390372652735,0.7275686316610575,0,0.8334335463500216,0.6838771547562716,0.41
+109,15,0.5458604825704848,0.0,1.3059321147922853,0.0006828705248015178,0.035440490145385535,0.7236624930890753,0,0.8676291889740692,0.7073008880985354,0.42
+109,16,0.5520523565641442,0.0,1.311129219660307,0.0006785130446146904,0.034639031270638734,0.7226237412670737,0,0.952372911664507,0.6624061249385558,0.5
+109,17,0.5735894489085445,0.0,1.3177711782564745,0.0006991240379654323,0.03582888643246975,0.7212821824164645,0,0.9856593474240419,0.6953622577004327,0.5
+109,18,0.567059612190765,0.0,1.3307811812674577,0.0006929802187355663,0.03527003822227491,0.7186616971097003,0,1.0,0.6568653739692165,0.58
+109,19,0.5800752626553547,0.0,1.3349583359773822,0.0007104316587330445,0.03618527752491292,0.717809289739411,0,1.0,0.6669175421845157,0.59
+109,20,0.5788946626645238,0.0,1.3387639302103032,0.0007034350090929477,0.03570901629022951,0.7170406325447619,0,1.0,0.6963155422150795,0.59
+109,21,0.5653852201577633,0.0,1.349176935018465,0.000698315489709588,0.035991813020714115,0.7149252232622851,0,1.0,0.7179507338592109,0.59
+109,22,0.5962350242531826,0.0,1.3566834357206072,0.0006945999448542296,0.03609901510598572,0.7133943991535905,2,1.0,0.7207834141772755,0.6499999999999999
+109,23,0.703822350738533,0.05,1.1614217953780137,0.0007829238420525519,0.034362466561871974,0.7373058471556436,2,1.0,0.7794078357951103,0.6199999999999999
+109,24,0.6590346178310478,0.1,1.1561000998273385,0.000771528285190817,0.03365599497753762,0.7235934362469991,2,1.0,0.8301153927701593,0.6149999999999999
+109,25,0.677846947701888,0.0,1.3653134727550733,0.0006884048650347011,0.03614147112495335,0.7116291754349017,2,1.0,0.8594898256729601,0.6049999999999999
+109,26,0.7394447329078545,0.0,1.3611193447995287,0.0006877802297416366,0.036267149975604665,0.7124893567820941,2,1.0,0.8981491096928486,0.5749999999999998
+109,27,0.6864809958220637,0.0,1.3629085925036413,0.0006923956845181431,0.03592289114706302,0.7121208007964842,2,1.0,0.921603319406879,0.5699999999999998
+109,28,0.707619241977494,0.0,1.3600765902811145,0.0006884618427810029,0.03621498664153494,0.7127026367752655,2,1.0,0.958730806591647,0.5599999999999998
+109,29,0.7076235267043693,0.0,1.3577505019482405,0.0006896234639193006,0.0359643838522388,0.7131782100349565,2,1.0,0.992078422347898,0.5549999999999998
+109,30,0.6350422517310371,0.0,1.3545337738618464,0.0006853036473539793,0.035797484230113016,0.7138375213929339,2,1.0,0.9501408391034573,0.5349999999999998
+109,31,0.72,0.0,1.362891425466566,0.0006867654848410912,0.03603200084240089,0.7121266285212918,2,1.0,1.0,0.5249999999999998
+109,32,0.6369241660713298,0.0,1.3603304622146313,0.0006869641773531649,0.035758377562874095,0.712651265146112,2,1.0,0.9564138869044332,0.5049999999999998
+109,33,0.705613504557508,0.0,1.3669757375815093,0.0006885036349995532,0.03624441940197033,0.7112878964001131,2,1.0,0.9853783485250267,0.4999999999999998
+109,34,0.72,0.0,1.3639967103280934,0.0006857119404596832,0.03591956391857214,0.7119004216352703,2,1.0,1.0,0.48999999999999977
+109,35,0.7,0.0,1.3612702977524265,0.0006849950314170082,0.036151081102764826,0.7124595744964961,2,1.0,1.0,0.47999999999999976
+109,36,0.6384981487262189,0.0,1.3581722002411136,0.0006841509740235412,0.03602221304596563,0.7130941810134397,2,1.0,0.9616604957540632,0.45999999999999974
+109,37,0.5990510887327578,0.0,1.364403229769528,0.0006860722129006088,0.036005832349995145,0.7118168902353714,2,1.0,0.8968369624425262,0.4399999999999997
+109,38,0.705601096219507,0.0,1.3687058580836498,0.0006882764258922263,0.03617196684830436,0.7109325668580329,2,1.0,0.9520036540650234,0.4299999999999997
+109,39,0.6969711990854093,0.0,1.3655156783925566,0.000686201481350595,0.0359076645740826,0.7115885828180755,2,1.0,0.9899039969513646,0.4199999999999997
+109,40,0.71,0.0,1.36170178262554,0.0006839125540687584,0.0360375430938098,0.7123716155974279,2,1.0,1.0,0.4149999999999997
+109,41,0.77,0.0,1.3594467856882098,0.0006823660119450843,0.0358726492957059,0.7128340724274385,2,1.0,1.0,0.3849999999999997
+109,42,0.71,0.0,1.3652068590587785,0.0006873220696401181,0.03607503279689124,0.7116514978548577,2,1.0,1.0,0.37999999999999967
+109,43,0.72,0.0,1.3626220930748962,0.0006850022651753923,0.036069936987001734,0.7121825619696314,2,1.0,1.0,0.36999999999999966
+109,44,0.7,0.0,1.3591911626075615,0.0006834679296691746,0.036011481645207156,0.7128859449689142,2,1.0,1.0,0.35999999999999965
+109,45,0.6365265166482106,0.0,1.3551917702651504,0.0006816211649318893,0.03600961707982842,0.7137045961332673,2,1.0,0.9550883888273686,0.33999999999999964
+109,46,0.7089400165061329,0.0,1.3611941972565904,0.0006835329981778926,0.035750523543715676,0.7124757632699515,2,1.0,0.9964667216871098,0.33499999999999963
+109,47,0.72,0.0,1.358702632329463,0.000681988738429786,0.035944125265456026,0.7129865321322375,2,1.0,1.0,0.3249999999999996
+109,48,0.6335242174216401,0.0,1.0529483688514603,0.0008330274657764224,0.033441778825432936,0.7712504772520445,2,1.0,0.9450807247388004,0.3049999999999996
+109,49,0.7055164288901556,0.0,1.0764734766579198,0.0008204837464554389,0.03333113666159601,0.7670781247662932,2,1.0,0.9850547629671857,0.2999999999999996
+110,0,0.21018386399844757,0.0,1.3606117754659013,0.0006962696536414435,0.0359605983716581,0.7125898429187725,2,0.16241001187183834,0.24446786614434723,0.0
+110,1,0.12340662834332504,0.0,1.3862394923765649,0.0007001717227740381,0.03652142950850884,0.7073110662487175,2,0.1828129602023672,0.19807364090832175,0.0
+110,2,0.20534729201029878,0.0,1.3862943611198846,0.0007001722195526525,0.036653943583842885,0.7072997068701548,2,0.2213821313235354,0.22621182015687133,0.0
+110,3,0.21892168593346192,0.0,1.3834434014788095,0.0006991451256478734,0.03666169244185125,0.707890007762034,2,0.29265607096875584,0.25497353698132463,0.0
+110,4,0.18047655173217853,0.0,1.3834232016940264,0.0006986634358446537,0.03667598091946921,0.7078943838988357,2,0.3292287969105031,0.21748824271167488,0.0
+110,5,0.15768124586663632,0.0,1.38392489056668,0.0006986722776211195,0.03669712454758267,0.7077906302351636,2,0.3509208318819653,0.18286318235982818,0.0
+110,6,0.1451109596802663,0.0,1.3861182877358038,0.0007000519282544455,0.03672286896734559,0.7073362072578531,2,0.36851904098674726,0.12043098444968255,0.0
+110,7,0.2580901667818242,0.0,1.3860230073013617,0.0006999895662217133,0.03661246790379632,0.7073559568509529,2,0.4050805765296619,0.15437321665480858,0.0
+110,8,0.17817736339028195,0.0,1.3859234578614519,0.0007005240379974909,0.03645700584776091,0.7073763422427891,2,0.4257291098196868,0.09724058317797199,0.0
+110,9,0.27399510988286935,0.0,1.386018642073827,0.0007003266885361736,0.036396702937083907,0.7073567208967746,2,0.4611381196350119,0.14198922670205066,0.0
+110,10,0.2934046431354091,0.0,1.3859222371722362,0.000700612947446974,0.03653509701580717,0.7073765581117385,2,0.5197867004836031,0.20493099322049346,0.0
+110,11,0.23196047082621335,0.0,1.380209343857203,0.0006979813083724671,0.03644564502074034,0.7085587826081496,2,0.5348564824031695,0.1492023399503468,0.0
+110,12,0.20042983230431144,0.0,1.3853440153264764,0.0007010781599898974,0.036743475925144306,0.7074960402207622,2,0.5525216812427253,0.09015747956452527,0.0
+110,13,0.31696914455801345,0.0,1.3854709923040214,0.0007006396442727895,0.03677479344068366,0.707469943735034,2,0.5923461719461964,0.13215994792281566,0.0
+110,14,0.410343954409275,0.0,1.3849183947471757,0.0007008149189274347,0.03675497062174957,0.7075842215933206,2,0.6732658259590526,0.18233638441202193,0.0
+110,15,0.3922946855569725,0.0,1.385166764600424,0.0006993937785473132,0.036663276093216575,0.7075334171910275,2,0.7285153210051066,0.22438107735061738,0.0
+110,16,0.4827439375344488,0.0,1.3195781133576865,0.0006798691958159282,0.03570478299155004,0.7209265293532022,2,0.7944317600560662,0.28230940504941887,0.0
+110,17,0.5118368071795862,0.0,1.3254563425171644,0.0006994416056144205,0.03497139187599844,0.7197344492582064,2,0.8823427370642314,0.34338949735701785,0.0
+110,18,0.553516693924513,0.0,1.328123170130542,0.0006638863221808342,0.03565480948980965,0.7192105510742137,2,0.9651435648181128,0.38572148746057844,0.0
+110,19,0.585066200181737,0.0,1.318642182446909,0.0006576644041944356,0.034360232463946636,0.7211237227723705,2,1.0,0.4502206672724569,0.0
+110,20,0.6049498619969558,0.05,1.0168400488267926,0.0009023389164490033,0.033984887142100545,0.7642918394968872,2,1.0,0.5164995399898525,0.0
+110,21,0.4858629017777604,0.05,1.0140027644037026,0.000883623084773991,0.033865727159706614,0.7648093255690241,2,1.0,0.4528763392592015,0.0
+110,22,0.5714479258907657,0.0,1.0409915730638488,0.0008675695533870121,0.033130446001408374,0.7733409795782403,2,1.0,0.5048264196358855,0.0
+110,23,0.6339549112818563,0.05,1.0359038176869142,0.00092869099925013,0.03459831837712969,0.7608306284858741,2,1.0,0.546516370939521,0.0
+110,24,0.6277551599110547,0.1,1.0327512674141852,0.0009087517158813642,0.033570996607813985,0.747520416356423,2,1.0,0.5925171997035159,0.0
+110,25,0.6446674689445248,0.1,1.0296246360407215,0.0008897004798244458,0.03357602602629064,0.7481172400939766,2,1.0,0.6488915631484159,0.0
+110,26,0.6243469921599201,0.1,1.1177781008635244,0.0008079576027639534,0.034201077764237135,0.7311777056186393,2,1.0,0.6811566405330669,0.0
+110,27,0.5392824644841285,0.1,1.1234297920816547,0.0008603646937615459,0.03416228587383684,0.7300447203234842,2,1.0,0.6309415482804287,0.0
+110,28,0.504965811980877,0.05,1.150858349637849,0.0008399745037036981,0.0352237789339339,0.7393247136642475,2,1.0,0.5832193732695901,0.0
+110,29,0.49004834322139346,0.0,0.8759942770790631,0.0006702727823939358,0.028385561589045743,0.8010173826892891,2,1.0,0.5334944774046451,0.0
+110,30,0.5814921554519988,0.0,0.8882955741490083,0.0006482400112361845,0.02865101233532516,0.7990565101457654,2,1.0,0.5716405181733295,0.0
+110,31,0.5063340762405064,0.05,0.9245992011911575,0.0006432583556743052,0.028932948822034794,0.7805910899119614,2,1.0,0.5211135874683549,0.0
+110,32,0.6356732661790612,0.0,0.9724050260039001,0.0006466008663001436,0.030111598256020288,0.7852119194507537,2,1.0,0.5522442205968708,0.0
+110,33,0.631572683772879,0.05,0.9349914842470133,0.0006072172108841722,0.02814223647939751,0.7788184457469939,2,1.0,0.6052422792429304,0.0
+110,34,0.6488886951484436,0.05,1.1298373448951315,0.0008498185350328107,0.03475475301111253,0.7433517761615337,2,1.0,0.6629623171614788,0.0
+110,35,0.617347552916369,0.05,1.115528248467647,0.0008359551747952455,0.03434153796198753,0.7460773979503795,2,1.0,0.6911585097212299,0.0
+110,36,0.5434922371384168,0.0,1.1389959519830402,0.0008168840310915756,0.033880437884516314,0.7557226677692765,2,1.0,0.6449741237947225,0.0
+110,37,0.676007567608399,0.0,1.1567905617864587,0.0007980154831736513,0.03384912157639714,0.7524297780502733,2,1.0,0.6866918920279969,0.0
+110,38,0.6665906283627309,0.05,1.1408739067864608,0.0007836676205785355,0.034103406244506695,0.7412659481497749,2,1.0,0.7219687612091029,0.0
+110,39,0.6512461357503803,0.05,1.1353135137833883,0.0007703133040404269,0.0341161663238382,0.7423360572531316,2,1.0,0.7708204525012674,0.0
+110,40,0.6439207097582685,0.05,1.1422428169238488,0.0008254361352671229,0.033887959015732744,0.7409872846275963,2,1.0,0.813069032527562,0.0
+110,41,0.6650214482788077,0.05,0.955404165358386,0.0009144154004615793,0.03355178154794727,0.7751750898104732,2,1.0,0.8500714942626926,0.0
+110,42,0.7400773182232123,0.05,0.9886593145818706,0.0008925392298860628,0.032961758496573554,0.7693342090858546,2,1.0,0.9002577274107078,0.0
+110,43,0.6055527533672515,0.1,0.996813105752129,0.0009635748839388841,0.0344388082285939,0.7542223113427048,2,1.0,0.8518425112241717,0.0
+110,44,0.5680405210467592,0.05,1.0365427756654242,0.000943166369149434,0.03490839517741269,0.7607090697117952,2,1.0,0.7934684034891972,0.0
+110,45,0.6583883543027556,0.0,1.1407120114292324,0.0009804817739039455,0.03584189878026419,0.7553452737589739,2,1.0,0.8279611810091855,0.0
+110,46,0.6911255657288579,0.05,1.011766196271185,0.0009462478957289615,0.03362619544557606,0.7651888887883792,2,1.0,0.9037518857628597,0.0
+110,47,0.7556708330274959,0.1,1.0096924736348898,0.0009252061554997684,0.03327497450253696,0.7518413579259614,2,1.0,0.9522361100916534,0.0
+110,48,0.6164363042164587,0.15000000000000002,1.026696689453498,0.000986871101955892,0.034378268510725556,0.7342570275321804,2,1.0,0.8881210140548625,0.0
+110,49,0.702798269331784,0.10000000000000002,1.0666341462340134,0.0009603991147936987,0.034962017377016485,0.7410522929461737,2,1.0,0.9426608977726136,0.0
+111,0,0.17252105620099,0.10000000000000002,1.3607541753000083,0.0006892930096611385,0.035985737243240286,0.6808905092308443,1,0.14636175218458775,0.23764814312128094,0.05
+111,1,0.12203745104960755,1.3877787807814457e-17,1.3600129086458788,0.0006882861814408736,0.036180765723659705,0.7127157478307238,1,0.1876754717174971,0.18783678649494523,0.11
+111,2,0.11001177047514289,0.0,1.3451050833485265,0.0006919166517702042,0.03605088495677732,0.7157569726533163,1,0.24619984346464463,0.14613941754172427,0.16999999999999998
+111,3,0.22932311917046438,0.0,1.377450815727478,0.0006998024745965374,0.03648669476942239,0.7091273484028642,1,0.29933664237658675,0.21518431446219677,0.18
+111,4,0.15558943394631444,0.0,1.3819369289152958,0.0006971094631992338,0.036607389405867205,0.7082022625468831,1,0.3111191021084445,0.15565916069452956,0.24
+111,5,0.2570820911525695,0.0,1.3685791716204088,0.0006979059946670195,0.036340977788468606,0.7109546434737608,1,0.37246281494938693,0.22240035306761374,0.25
+111,6,0.2710540016900847,0.0,1.3812041309115433,0.00069673623160296,0.03652209888157349,0.7083538276897898,1,0.4015438027065043,0.26837890247602736,0.3
+111,7,0.22469812645805015,0.0,1.3722499158831476,0.0006932147238626347,0.03621161148181314,0.7102016597067042,1,0.42883034019096067,0.2486916913040465,0.36
+111,8,0.20649523420027086,0.0,1.3333808011428547,0.0007590060907373108,0.03636839566627972,0.7181090586961524,1,0.45721967721353896,0.22156115725177408,0.42
+111,9,0.3227724800492426,0.0,1.3428262143681937,0.0007505108828440373,0.03651355285844233,0.7161965590458088,1,0.5025964636126348,0.2895457259494014,0.43
+111,10,0.25768182316936733,0.0,1.3407911230232008,0.000754795081487927,0.03634933127938173,0.7166082876401797,1,0.531445229901776,0.23891997567915255,0.49
+111,11,0.2393645810920735,0.0,1.3490916181878434,0.000746745818485731,0.0367020740899795,0.7149228705419997,2,0.5561671726408618,0.21568690222590614,0.55
+111,12,0.33396021469515774,0.0,1.3860277785990311,0.0007002993736106902,0.036747807981778,0.7073548409119221,2,0.5870728369746306,0.2282824058467901,0.545
+111,13,0.3379324070882181,0.0,1.3862081666284185,0.000700169581739985,0.036786098101660204,0.7073175522159216,2,0.63612342993911,0.25096402203176543,0.54
+111,14,0.29352014235144586,0.0,1.3827532635069752,0.0007039394324065665,0.03673239606506113,0.7080307130333531,2,0.6639912726061256,0.20374398979767322,0.52
+111,15,0.3849354016251503,0.0,1.382158570203179,0.000704831612264493,0.036721266717053745,0.7081532659612146,2,0.7211742597868361,0.24174803566585867,0.515
+111,16,0.3120976613426091,0.0,1.3812444464455917,0.0007059963104510758,0.03651774133405326,0.7083416727527495,2,0.725780495918969,0.19358162590323327,0.495
+111,17,0.28284218946701506,0.0,1.3858672035518742,0.0006999749547537094,0.03641601640521057,0.7073882137803955,2,0.7388846939820999,0.14744182191093383,0.475
+111,18,0.3849993838824102,0.0,1.3859802516129436,0.0006999520127863614,0.03641942657519312,0.7073648228970495,2,0.7875816967475164,0.16448596673593152,0.47
+111,19,0.48307579971116155,0.0,1.3858490098101472,0.0006999529608767213,0.03657734009088712,0.7073919887960912,2,0.8515034833313813,0.21683193515059382,0.43999999999999995
+111,20,0.4448756857521007,0.0,1.3362372342203273,0.0007070036798383589,0.03567346494086689,0.7175515546080264,2,0.8917585881136408,0.2425339330410881,0.43499999999999994
+111,21,0.3823473008482327,0.0,1.334229482392329,0.0007014547659559382,0.035736671181796145,0.7179605377689361,2,0.9302956116661488,0.18914612255026886,0.4149999999999999
+111,22,0.480633848951063,0.0,1.3858648198378636,0.0007000255214089687,0.03677275389437949,0.7073886862518449,2,0.9771050053195696,0.22882365696404539,0.4049999999999999
+111,23,0.4808338951017479,0.0,1.3287879525218178,0.0007031818555116823,0.0352215447324291,0.7190604047717973,2,1.0,0.26944631700582655,0.3949999999999999
+111,24,0.4977407159932471,0.0,1.3259877228386585,0.0007053606622601386,0.03583669307632061,0.7196248599108477,2,1.0,0.32580238664415706,0.3849999999999999
+111,25,0.5178275540042777,0.0,1.3225500111874864,0.000707284230697553,0.03533092854401201,0.7203171705183489,2,1.0,0.359425180014259,0.3799999999999999
+111,26,0.5392975147744522,0.0,1.320014117383993,0.0007001381273186815,0.03578948236912526,0.7208306430974669,2,1.0,0.39765838258150754,0.3699999999999999
+111,27,0.5394458179319175,0.0,1.3160856432513623,0.0007019669475902544,0.035218804159428296,0.7216197639810789,2,1.0,0.4314860597730585,0.3649999999999999
+111,28,0.530429064527457,0.0,1.1298572308935864,0.0006385014864488672,0.03119247606815881,0.7574713314411005,2,1.0,0.46809688175819,0.3599999999999999
+111,29,0.4793723713747054,0.0,1.1257403649201123,0.0006364629417600833,0.031632194622598545,0.7582275802963958,2,1.0,0.43124123791568475,0.33999999999999986
+111,30,0.5482647991397556,0.0,1.1508017221096387,0.000630724625707581,0.030917025218434913,0.7536058188352432,2,1.0,0.4608826637991853,0.33499999999999985
+111,31,0.6275124594565922,0.05,1.1458939163589417,0.0006283852087662931,0.03189551024454725,0.7403616944780887,2,1.0,0.5250415315219739,0.3049999999999998
+111,32,0.4943745974798571,0.1,0.8009256847784318,0.00043100237552629457,0.024262605281595146,0.7888841278114854,2,1.0,0.48124865826619057,0.2849999999999998
+111,33,0.62758398720165,0.05,0.8555364237896902,0.000448710276031293,0.025229743139732808,0.7922540473728962,2,1.0,0.5252799573388333,0.2549999999999998
+111,34,0.6248813732378713,0.1,0.8137059750289979,0.0004073462809460569,0.02390357831327026,0.7867557013957005,2,1.0,0.5829379107929044,0.22499999999999978
+111,35,0.5944335689708171,0.1,0.8133760040084772,0.00040205873512465126,0.023919140564197392,0.7868128296352727,2,1.0,0.6147785632360573,0.21999999999999978
+111,36,0.5862492949712447,0.05,1.2028461087231679,0.0008937406738652104,0.03608088527004392,0.7291602890956218,2,1.0,0.6541643165708158,0.21499999999999977
+111,37,0.5951697232503079,0.05,1.2086051701310874,0.0008771572338771788,0.035990193393601815,0.7280280249932258,2,1.0,0.6838990775010267,0.20999999999999977
+111,38,0.6084355242336639,0.05,1.217848666169563,0.0008560063332432337,0.03600016779630204,0.7262023412665013,2,1.0,0.7281184141122131,0.20499999999999977
+111,39,0.6529945513122845,0.05,1.224522931456093,0.0008363734503463493,0.035529561346615744,0.7248811095922552,2,1.0,0.7766485043742817,0.19499999999999976
+111,40,0.7149271485703366,0.1,1.2220043443742852,0.0008509255021870224,0.036070599479587837,0.7101872832897231,2,1.0,0.8164238285677888,0.16499999999999976
+111,41,0.7139057506245821,0.15000000000000002,1.1690174678900138,0.0008247099486057335,0.034120286019391946,0.7056465279039131,2,1.0,0.8796858354152739,0.13499999999999976
+111,42,0.6816727515684382,0.15000000000000002,1.1636037647517976,0.0008120215676166336,0.034475099694414216,0.7067750114782828,2,1.0,0.9055758385614611,0.12999999999999975
+111,43,0.7599091115644132,0.10000000000000002,1.185171747932477,0.0007938720351204616,0.03499142843029337,0.71773225160547,2,1.0,0.9663637052147107,0.09999999999999976
+111,44,0.6262086720938367,0.15000000000000002,1.1606430493108888,0.0007808189266075402,0.03445702211207544,0.7074011435198077,2,1.0,0.9206955736461222,0.07999999999999975
+111,45,0.764606726624891,0.10000000000000002,1.1955123170109028,0.0007641606093162175,0.03494107201804961,0.7156447121290157,2,1.0,0.9820224220829703,0.04999999999999975
+111,46,0.6251112107256219,0.15000000000000002,1.170141012445323,0.0007492833306338733,0.033825773352142915,0.7054444502651269,2,1.0,0.9170373690854065,0.029999999999999753
+111,47,0.6956604988125381,0.10000000000000002,1.2034787951862076,0.0007362643844325894,0.034548003798460555,0.714032166053751,2,1.0,0.9522016627084603,0.02499999999999975
+111,48,0.6216346638255206,0.15000000000000002,1.215330397868272,0.0007220662057879281,0.033523334290184274,0.6959795840413164,2,1.0,0.9054488794184019,0.004999999999999751
+111,49,0.7041082169168592,0.10000000000000002,1.2435821221741705,0.0007117355950816277,0.034256137046970295,0.7057838663594622,2,1.0,0.9470273897228642,0.0
+112,0,0.16310710010026466,0.10000000000000002,1.3611278636215571,0.0006884077041528604,0.03597461479400616,0.6808096940265581,1,0.12861810170205323,0.22696921501515344,0.05
+112,1,0.11051526073866513,1.3877787807814457e-17,1.3603973868685688,0.000687480385305169,0.03618190244434316,0.7126373487343415,1,0.16164629268465433,0.17979686099678704,0.11
+112,2,0.18254019774653646,0.0,1.3477439453543352,0.0006909309813528913,0.0360943206815958,0.715220194995723,1,0.19067285577205106,0.21934899408772868,0.16
+112,3,0.23439345044281845,0.0,1.3589011813175507,0.0006864794339045714,0.03594602764946985,0.7129440619155348,1,0.25154605632466676,0.287841102430617,0.17
+112,4,0.28743854110525957,0.0,1.381213059653194,0.0006967299319752642,0.03657661016475473,0.7083519857122577,1,0.30652786505017665,0.3338459611256592,0.17
+112,5,0.21238369675619267,0.0,1.380108816441082,0.0006961140186807663,0.03657176454813542,0.7085803125792416,1,0.3524101054218788,0.29680053286178365,0.23
+112,6,0.34036264216057543,0.0,1.3808171891391432,0.0006963640034937793,0.03651664021537308,0.7084339128070272,1,0.4169508020744469,0.3814328714483969,0.23
+112,7,0.3616110456888185,0.0,1.3752831809866248,0.0006939369804326781,0.0362921627909258,0.7095766719504242,1,0.4698032952952338,0.4572663077849557,0.24000000000000002
+112,8,0.30617861276682556,0.0,1.3763846833348943,0.0006968219314217423,0.036568995360296105,0.7093484349809855,1,0.507690791012331,0.428289453041699,0.30000000000000004
+112,9,0.4215815378412894,0.0,1.3777324904730575,0.0007002122626803653,0.03610530387961742,0.7090690760569263,1,0.5570643498712848,0.4886967179544656,0.30000000000000004
+112,10,0.34322172351921776,0.0,1.3787309987588459,0.0006985867244252203,0.03655218069718838,0.7088637216136743,1,0.601288681126129,0.4425689504169087,0.36000000000000004
+112,11,0.32347109508325433,0.0,1.2882585421378674,0.0006419287193313186,0.03393454970030336,0.7271990048306469,1,0.6374436209039427,0.4012194258895815,0.42000000000000004
+112,12,0.40418519670601594,0.0,1.298901865863759,0.0006583287953462289,0.034797909384384776,0.7250759392874548,1,0.6624030307586795,0.40781378646826055,0.47000000000000003
+112,13,0.4045682876316293,0.0,1.2918281500146196,0.0006540519955700189,0.03421369618267273,0.7264854719428105,1,0.7019481395858062,0.42962146258865724,0.52
+112,14,0.49359657393209166,0.0,1.2843915479029804,0.0006494826334653501,0.034197378624423194,0.7279624753229634,1,0.761317636101013,0.4904513376557904,0.52
+112,15,0.5075415183598522,0.0,1.2867696746592192,0.0006493057962743589,0.03434751090954406,0.7274913423726975,1,0.8091582766101726,0.5477870718209727,0.53
+112,16,0.5224484084081343,0.05,0.3349749856048685,3.654128126598472e-05,0.007368804647404104,0.8652913452134188,1,0.8642323543381868,0.5998902812992299,0.54
+112,17,0.5587740681148176,0.1,0.39857207239211534,5.379455826029881e-05,0.008973257163701079,0.8482988261165918,1,0.9133598745412966,0.6303270400845458,0.5900000000000001
+112,18,0.6058340982450854,0.15000000000000002,1.2436871370527292,0.0006359923795971754,0.033221764058112044,0.6899832253005114,2,0.9730479785284208,0.6842243525337939,0.6000000000000001
+112,19,0.688468977549089,0.2,1.204614908967585,0.0007435763767213436,0.03433920661342833,0.6821994194869344,2,1.0,0.7282299251636299,0.5700000000000001
+112,20,0.6376325671682462,0.25,1.2000904343939778,0.0007371077122852389,0.033932531742832936,0.6667307012844198,2,1.0,0.7587752238941542,0.5650000000000001
+112,21,0.6655679522540965,0.2,1.2132593917474013,0.0007287228700263914,0.03409265185878759,0.6803287824594791,2,1.0,0.8185598408469883,0.555
+112,22,0.6658603086749132,0.15000000000000002,1.371627789722207,0.0006947951938638607,0.03617172351739796,0.6619469587150113,2,1.0,0.8528676955830441,0.55
+112,23,0.6548723185577346,0.10000000000000002,1.3669712270284757,0.0006930857124258078,0.03625085665401759,0.6795365084385677,2,1.0,0.8829077285257823,0.545
+112,24,0.7503245857643931,0.05000000000000002,1.3614041647028141,0.0006909107096527087,0.03608659050023946,0.6968228677969844,2,1.0,0.9344152858813105,0.515
+112,25,0.713933459130308,0.05000000000000002,1.3645968923087501,0.0006889463222770147,0.035932073551092174,0.6961487772292592,2,1.0,0.9797781971010269,0.505
+112,26,0.77,0.0,1.3659317719378745,0.0006876278199267751,0.03618901331762759,0.7115025947499543,2,1.0,1.0,0.475
+112,27,0.71,0.0,1.36786474312638,0.0006872358191078566,0.035786657622196696,0.7111058191303526,2,1.0,1.0,0.47
+112,28,0.69,0.0,1.3629788430211067,0.0006841705011788369,0.03630016306211264,0.712109771383302,2,1.0,1.0,0.46499999999999997
+112,29,0.69,0.0,1.357574271968983,0.0006808211059022837,0.035743575838606746,0.7132178582624503,2,1.0,1.0,0.45999999999999996
+112,30,0.77,0.0,1.351471753394473,0.0006769505447691296,0.03580891569442869,0.7144660094505147,2,1.0,1.0,0.42999999999999994
+112,31,0.75,0.0,1.3543339486808714,0.0006773301867648907,0.03576847593384504,0.7138815958847842,2,1.0,1.0,0.3999999999999999
+112,32,0.75,0.0,1.355124803020747,0.0006778961333719782,0.035710505025276805,0.713719801605607,2,1.0,1.0,0.3699999999999999
+112,33,0.71,0.0,1.3543005801103878,0.000678247684614168,0.03599413173377409,0.7138880367210328,2,1.0,1.0,0.3649999999999999
+112,34,0.77,0.0,1.348981575178507,0.0006740130301910181,0.03533228174538221,0.7149749424168977,2,1.0,1.0,0.33499999999999985
+112,35,0.6295636585359371,0.0,1.347233462045847,0.0006743825792260901,0.03594020592168924,0.7153308985847099,2,1.0,0.9318788617864572,0.31499999999999984
+112,36,0.5927471438085261,0.0,1.1121033563513723,0.0004724805294217438,0.029074555943066953,0.760778378512215,2,1.0,0.8758238126950871,0.2949999999999998
+112,37,0.6855061641230142,0.0,1.1330914124936897,0.0004884990291440942,0.029046309765820438,0.756931891061855,2,1.0,0.9183538804100477,0.2899999999999998
+112,38,0.6082327851894396,0.05,1.1516413486144423,0.0005068019990678257,0.03005384969132559,0.739302231054564,2,1.0,0.8607759506314653,0.2699999999999998
+112,39,0.6919252847593911,0.0,1.1781395419781338,0.0005310599258537418,0.031055705224555124,0.7485320240781146,2,1.0,0.9064176158646371,0.2599999999999998
+112,40,0.685525831767801,0.05,1.1955250818474676,0.000543481073177087,0.03113343336128386,0.7307415135132371,2,1.0,0.9517527725593367,0.24999999999999978
+112,41,0.61578627888297,0.05,1.2278204916846969,0.0005766319498457704,0.03269298951941597,0.7243267358739576,2,1.0,0.8859542629432335,0.2299999999999998
+112,42,0.754510242300376,0.0,1.2392148426217882,0.0005849268661497336,0.032385569207950805,0.7368413076239675,2,1.0,0.9483674743345869,0.1999999999999998
+112,43,0.7033867985066782,0.05,1.2144150731724612,0.0005638635586875614,0.03228752791243227,0.7270004996229894,2,1.0,0.9779559950222608,0.19499999999999978
+112,44,0.72,0.0,1.236947551853903,0.000579881856939333,0.03269211441158551,0.737282667616254,2,1.0,1.0,0.18499999999999978
+112,45,0.71,0.0,1.2512205824277727,0.0005975115488944668,0.03346557261257112,0.7345018017969691,2,1.0,1.0,0.17999999999999977
+112,46,0.6330469523473601,0.0,1.262036898346464,0.0006041831867531518,0.03287458029419868,0.7323845656299458,2,1.0,0.9434898411578673,0.15999999999999978
+112,47,0.6021099004881436,0.0,1.2723664303580695,0.0006103242421383196,0.03375148449614497,0.730352731857283,2,1.0,0.9070330016271456,0.1399999999999998
+112,48,0.7597842725159637,0.0,1.279247230481888,0.0006170106211158575,0.03365364282278189,0.7289928556437453,2,1.0,0.9659475750532124,0.10999999999999979
+112,49,0.6220815520729555,0.0,1.2653678513786437,0.0006051716337214509,0.03324544600985674,0.7317308142452202,2,1.0,0.9069385069098519,0.08999999999999979
+113,0,0.09389676527526356,0.0,1.358056182866327,0.0006865477529089906,0.035910610525443656,0.7131169358515905,1,0.12047514267201438,0.17243488446686175,0.06
+113,1,0.16687829407835053,0.0,1.3492011670535544,0.0006863467958002373,0.03565246454542738,0.7149251632110615,1,0.15938483717753282,0.20364533688738012,0.11
+113,2,0.23877714195564226,0.0,1.3588281200710226,0.0006865960587985576,0.03585807014728909,0.7129589662854237,1,0.21997265538977834,0.27262237523073285,0.11
+113,3,0.25282183553651105,0.0,1.3810923299354674,0.0006965459067964787,0.03657416451674914,0.7083770026023377,1,0.2697326177902527,0.3280513976997422,0.12
+113,4,0.2634557894259283,0.0,1.3824768042187245,0.0006978260581814127,0.03663718030622397,0.7080903875569303,1,0.3110189006603237,0.3486639139827166,0.16999999999999998
+113,5,0.2694789668610341,0.0,1.3823011320741094,0.0006974545610931809,0.03664264064156157,0.7081268509435209,1,0.3578051979642096,0.3808238252452026,0.21999999999999997
+113,6,0.33577078074930017,0.0,1.381908391151216,0.0006971265424357845,0.03654492521261399,0.7082081528338413,1,0.41480041905068016,0.4353021136052071,0.22999999999999998
+113,7,0.3471411749393268,0.0,1.3780187756794802,0.0007107623934081134,0.03654596956451907,0.7090056613965989,1,0.4424258124039484,0.4743071353264829,0.27999999999999997
+113,8,0.29223554863948176,0.0,1.3767751982915661,0.0007120228547370409,0.036550776262274674,0.7092616455564681,1,0.47791872619791276,0.4165466482340411,0.33999999999999997
+113,9,0.40463363053886425,0.0,1.32727324975829,0.0007436323666791975,0.03638287292448486,0.719349959706366,1,0.5146114981669272,0.4817320206014659,0.33999999999999997
+113,10,0.39614016302403077,0.0,1.3221319137681848,0.0007437164282238054,0.035941500480529465,0.7203867159919312,1,0.5567099193511638,0.504305637503745,0.38999999999999996
+113,11,0.3442513414226974,0.0,1.3259715741580167,0.0007345685008676313,0.03606632558837691,0.7196163318344632,1,0.584347669897651,0.4657655231950653,0.44999999999999996
+113,12,0.44317595681803623,0.0,1.3379040616492994,0.0007262191884192356,0.03610316070722806,0.7172058194483414,1,0.6375192007664725,0.5334807884992362,0.45999999999999996
+113,13,0.37657569322974616,0.0,1.3132291672873135,0.0006501434683831736,0.034611022799457644,0.722214017050894,1,0.6537257813723494,0.49257223249807963,0.52
+113,14,0.34787794451751036,0.0,1.323319018773901,0.0006633379393461225,0.03500749774329821,0.7201799322662933,1,0.6764485297615904,0.4370698636698459,0.5800000000000001
+113,15,0.4681940953555366,0.0,1.3308312547615841,0.0006763837554987215,0.035604964718541354,0.71865828406472,1,0.7380798087776106,0.4995538742779098,0.5900000000000001
+113,16,0.5254561035947114,0.0,1.3392009539895375,0.0006749291631348371,0.03512646753380011,0.7169635242552573,1,0.8017227036238307,0.5495105244212356,0.5900000000000001
+113,17,0.5422212634621777,0.1,0.2918613138207066,2.5537020299260668e-05,0.006230867268459341,0.8615337493681706,2,0.8515653214470861,0.6139113365189921,0.6000000000000001
+113,18,0.56682627835208,0.1,1.2093016760833581,0.000824361049620501,0.03506490999646818,0.7128056425246175,2,0.9074827976523359,0.630690997245875,0.5950000000000001
+113,19,0.5670294490654693,0.1,1.215609351154967,0.0008083300871020572,0.03508284507224397,0.7115192243991262,2,0.9481819639625683,0.6505525389285682,0.5900000000000001
+113,20,0.5866722452272995,0.1,1.219723139894897,0.0007934725853864958,0.035233574785673856,0.7106802053564051,2,0.9897946953912171,0.6674803394679121,0.5850000000000001
+113,21,0.5329796005653646,0.1,1.2220390760301507,0.0007794508238043252,0.034638500814876905,0.7102095562916054,2,1.0,0.6099320018845488,0.5650000000000001
+113,22,0.6010814893118738,0.05,1.2448834395716195,0.0007656415803253759,0.03530026957985915,0.7208305768726895,2,1.0,0.6369382977062459,0.56
+113,23,0.6248186128917761,0.1,1.2408738936693429,0.0007551935575776941,0.034550117944463464,0.7063278960074346,2,1.0,0.6827287096392536,0.55
+113,24,0.5392289891128226,0.1,1.247129937979664,0.0007697733420077588,0.035250476810585844,0.7050224751240253,2,1.0,0.6307632970427418,0.53
+113,25,0.5023207043950714,0.0,1.2687462206011761,0.0007566764389560932,0.03519620676624232,0.7310075403256416,2,1.0,0.5744023479835713,0.51
+113,26,0.6147298219440906,0.0,1.1625771083314953,0.0006216753311700002,0.03161005571686668,0.7514161739191413,2,1.0,0.6490994064803024,0.5
+113,27,0.6782688875507157,0.05,1.2249902336351304,0.0007824257192764969,0.034497996123428444,0.7248094278618321,2,1.0,0.6942296251690522,0.47
+113,28,0.5380867099468049,0.1,1.2235693471086369,0.0007811623450424688,0.03475424008228802,0.7098938019890586,2,1.0,0.6269556998226828,0.44999999999999996
+113,29,0.6774230538513977,0.0,1.2508809866218276,0.0007652566083682063,0.03540867726290061,0.7345026024417238,2,1.0,0.6914101795046589,0.41999999999999993
+113,30,0.6420501698654576,0.05,1.2344886034182747,0.0007694738502355761,0.034939449331239984,0.7229160251104508,2,1.0,0.7401672328848589,0.4099999999999999
+113,31,0.5559073682853626,0.0,1.2410206847480891,0.000786554885933508,0.03555932665786752,0.7364127257420471,2,1.0,0.6863578942845419,0.3899999999999999
+113,32,0.6239780373704595,0.0,1.2589286128871917,0.0007743387976484844,0.03530815432454812,0.7329267323350779,2,1.0,0.7132601245681985,0.3849999999999999
+113,33,0.5421080641031553,0.0,1.2603948512768295,0.000761114404091576,0.03539155567749826,0.7326448060219042,2,1.0,0.6403602136771844,0.3649999999999999
+113,34,0.5083926238810923,0.0,1.2814561037430263,0.000748352929598885,0.035320810450916965,0.7285042927910356,2,1.0,0.5946420796036412,0.34499999999999986
+113,35,0.6026074926082288,0.0,1.2298170354894595,0.0006979093670357436,0.03418809428663753,0.7386159172590832,2,1.0,0.6420249753607629,0.33999999999999986
+113,36,0.5955336253654278,0.05,1.2410174723801122,0.0007729201086644631,0.03474416988151392,0.721604951416556,2,1.0,0.685112084551426,0.33499999999999985
+113,37,0.6388809811421348,0.05,1.2456153867514317,0.0007583606903648558,0.034575699783477,0.7206861917748169,2,1.0,0.7296032704737828,0.32499999999999984
+113,38,0.6382838558161905,0.1,1.1738272088567014,0.0008478454573305624,0.03516336048197135,0.720003123053134,2,1.0,0.7609461860539685,0.31999999999999984
+113,39,0.6685412821927768,0.1,1.1907221604169638,0.0008255283828815907,0.03488593647289182,0.7165935632357118,2,1.0,0.8284709406425894,0.30999999999999983
+113,40,0.6661792304411231,0.15000000000000002,1.1790486811428138,0.0005992125788001617,0.03190706942454184,0.7036527126101914,2,1.0,0.8539307681370774,0.3049999999999998
+113,41,0.6561742206634877,0.15000000000000002,1.1947208452728786,0.0006114180637263103,0.03196526692483912,0.7003691463038257,2,1.0,0.8872474022116258,0.2999999999999998
+113,42,0.6691269800210882,0.15000000000000002,1.198321989577436,0.0006168527178583717,0.03257476310512834,0.6996106091258985,2,1.0,0.9304232667369605,0.2949999999999998
+113,43,0.6118556328164202,0.15000000000000002,1.19932895079658,0.0006212405780229133,0.03211722629028943,0.6993971030447421,2,1.0,0.8728521093880675,0.2749999999999998
+113,44,0.6778102162924002,0.10000000000000002,1.2227001421999935,0.0006181956741155716,0.03285171236913752,0.7101398724917106,2,1.0,0.8927007209746675,0.2699999999999998
+113,45,0.6680001202150366,0.15000000000000002,1.2146625442694934,0.0006190372436141111,0.03225719042483084,0.6961644650545051,2,1.0,0.9266670673834556,0.2649999999999998
+113,46,0.7648231112705297,0.15000000000000002,1.2186694116869166,0.0006237662261966006,0.03234353821481992,0.695314265211251,2,1.0,0.9827437042350992,0.2349999999999998
+113,47,0.75,0.2,1.2079255674378957,0.0006180260468019182,0.03267039393716684,0.6815357275811106,2,1.0,1.0,0.2049999999999998
+113,48,0.71,0.2,1.2038002383953876,0.0006139469301448244,0.032372747399976524,0.6824322054443726,2,1.0,1.0,0.1999999999999998
+113,49,0.69,0.15000000000000002,1.2011775284314663,0.0006176196949056378,0.03183402989767112,0.6990098370492908,2,1.0,1.0,0.19499999999999978
+114,0,0.19168189294469173,0.10000000000000002,1.3635595336560264,0.0006906932895777873,0.036026431461565415,0.680280046631467,1,0.14932113675551592,0.2647316502675372,0.01
+114,1,0.19505334480546554,1.3877787807814457e-17,1.3617111515000617,0.0006904222637116734,0.036219493572493267,0.7123670282523455,1,0.18339599486456895,0.26954915534288804,0.060000000000000005
+114,2,0.24108475138455954,0.0,1.3584430876164584,0.0006882585302705629,0.03586961179682174,0.7130370757966598,1,0.2325220343600925,0.33234013119509054,0.07
+114,3,0.2595207145205843,0.0,1.383328302140247,0.000698495409736299,0.036659847561560106,0.7079140763204105,1,0.27594604398817796,0.3764653304157401,0.12000000000000001
+114,4,0.20914191280332234,0.0,1.3829163830254394,0.000697975156967442,0.03664469777375814,0.7079994573663255,1,0.30997882359100576,0.33549774848823444,0.18
+114,5,0.2818093192565352,0.0,1.383670738450745,0.0006983361018358687,0.03668906164897069,0.7078433310189648,1,0.3446002587891463,0.3706640956011134,0.22999999999999998
+114,6,0.3258161816592847,0.0,1.3831647566370933,0.0006980188246495684,0.03659530497149506,0.7079480888334482,1,0.388190794397885,0.43316467873341646,0.24
+114,7,0.2648905478152445,0.0,1.3854655326609953,0.0007003104724972369,0.036625256746401345,0.7074712098888178,1,0.41817384930205664,0.39509900186508234,0.3
+114,8,0.38035835804970497,0.0,1.374823648291551,0.0006962969809020136,0.03651331592853714,0.7096703897327095,1,0.46799797739353616,0.455196886539891,0.3
+114,9,0.3935267339697222,0.0,1.376515944781126,0.000712561743201685,0.036312631167241684,0.7093148809854252,1,0.5243685311529651,0.4999924935539481,0.3
+114,10,0.4275097949312747,0.0,1.3777871569086715,0.0007094347149352922,0.03659540371050308,0.7090539936791614,1,0.5787929403063935,0.5497742194134567,0.31
+114,11,0.48701395755746424,0.0,1.380646598320637,0.000707052879946468,0.03661332468963138,0.7084647325985665,1,0.6344320411732014,0.6165424771561457,0.31
+114,12,0.49725648581628457,0.0,1.3305667699831467,0.0007712873113976778,0.03675330594837599,0.718673382787662,1,0.6726375951878567,0.6727777583351158,0.32
+114,13,0.5092989909645231,0.0,1.3387050256753676,0.00075942223428485,0.036685641037108745,0.7170298648870758,1,0.7109629448849275,0.7015398675159953,0.37
+114,14,0.5169996234584179,0.0,1.3445774182309929,0.0007149680868344559,0.0361591639381331,0.7158549357963739,1,0.7565404061051288,0.7407016044054097,0.42
+114,15,0.5396004219590771,0.0,1.343935356653814,0.0007082101946516194,0.03597683405359561,0.7159882657168929,1,0.7963191976879499,0.7696290092276491,0.47
+114,16,0.6044943396339582,0.0,1.3423210153587792,0.0007017863581068391,0.035764574947493064,0.7163190367550701,1,0.8474084865333178,0.826337897824323,0.48
+114,17,0.6683086844728081,0.05,1.2211049389747226,0.0006805803112217087,0.034255690834131616,0.7256242696811754,1,0.9176050403182902,0.890489734538022,0.48
+114,18,0.6964091841287394,0.1,1.2451215132315068,0.0006776687861395154,0.03366870298918072,0.705478262868172,1,0.9904341109974101,0.9658574842654865,0.48
+114,19,0.6296588782106292,0.05,1.2635133924716844,0.0006754358631956252,0.03400943453814833,0.7171028225330708,1,1.0,0.9321962607020973,0.54
+114,20,0.595988889097844,0.0,1.2660239281203427,0.0007051751077714231,0.0347390580499079,0.7315627309723377,2,1.0,0.8866296303261467,0.6000000000000001
+114,21,0.6873794900269838,0.0,1.3167786073321641,0.0006669266942619017,0.03515416494677836,0.7214946189420876,2,1.0,0.9245983000899463,0.5950000000000001
+114,22,0.6826382763730616,0.0,1.3109694575703617,0.0006604159004042489,0.03467607103271877,0.7226630167893946,2,1.0,0.9754609212435387,0.5900000000000001
+114,23,0.6272338942093899,0.0,1.304527149140955,0.0006535322660914176,0.03437083937524091,0.7239550892252575,1,1.0,0.9241129806979665,0.5700000000000001
+114,24,0.7007462048255684,0.0,1.2606016922422456,0.0008523014497107704,0.03658596772373811,0.7325685610770958,1,1.0,0.9691540160852281,0.5800000000000001
+114,25,0.69,0.0,1.2806668601377458,0.0008310397869996764,0.036140445883595974,0.7286276677970773,1,1.0,1.0,0.5900000000000001
+114,26,0.7,0.0,1.2977181428441922,0.0008116490284184131,0.03674997260008948,0.7252507431249617,2,1.0,1.0,0.6400000000000001
+114,27,0.77,0.0,1.2701219971156557,0.0006513480187215987,0.03331937198618129,0.730778374762662,2,1.0,1.0,0.6100000000000001
+114,28,0.72,0.0,1.2673677468317721,0.0006581231515479897,0.034264718065610704,0.7313172425934257,2,1.0,1.0,0.6000000000000001
+114,29,0.71,0.0,1.2736691606863288,0.0006703468823872787,0.033828125067745914,0.730072442001644,2,1.0,1.0,0.5950000000000001
+114,30,0.69,0.0,1.2672731199821232,0.0006609588698838229,0.034105111949286566,0.7313347212904101,2,1.0,1.0,0.5900000000000001
+114,31,0.69,0.0,1.2603965404341302,0.0006515257961208617,0.03366751183587034,0.7326874046430688,2,1.0,1.0,0.5850000000000001
+114,32,0.69,0.0,1.25281193715025,0.0006417119629120883,0.0332545243567714,0.7341741055020856,2,1.0,1.0,0.5800000000000001
+114,33,0.6371721144470168,0.0,1.2445182706580404,0.0006314349268372243,0.03340873676667071,0.7357935670953694,2,1.0,0.9572403814900564,0.56
+114,34,0.72,0.0,1.2670192277398837,0.0006329198434427625,0.03287061327042064,0.7313956212029232,2,1.0,1.0,0.55
+114,35,0.7,0.0,1.2739765889832855,0.0006440076440572285,0.03432146565726753,0.7300222363601834,2,1.0,1.0,0.54
+114,36,0.71,0.0,1.2781653099961048,0.0006545853001679073,0.03319433650415833,0.7291917097738754,2,1.0,1.0,0.535
+114,37,0.69,0.0,1.2702430345659472,0.0006443190857052152,0.034184956956324744,0.7307573269360951,2,1.0,1.0,0.53
+114,38,0.6328587124461914,0.0,1.261893986190365,0.0006340255835764572,0.03319100866653146,0.7324008776622355,2,1.0,0.9428623748206381,0.51
+114,39,0.7050082308417533,0.0,1.2831561571463843,0.0006367709139863789,0.03412480216855528,0.7282120865031517,2,1.0,0.9833607694725112,0.505
+114,40,0.72,0.0,1.273945583458081,0.0006268827950646073,0.03381170977771641,0.7300350973041148,2,1.0,1.0,0.495
+114,41,0.7,0.0,1.2783288629876242,0.0006367403798652875,0.033526356809626505,0.7291664597491992,2,1.0,1.0,0.485
+114,42,0.7,0.0,1.2802240080724006,0.0006457708353453581,0.03440147379625203,0.7287884689870091,2,1.0,1.0,0.475
+114,43,0.6343783153540488,0.0,1.2801660524992557,0.0006537494601565067,0.03344304524257201,0.7287967701210103,2,1.0,0.947927717846829,0.45499999999999996
+114,44,0.77,0.0,1.2996306531194837,0.000654509033212231,0.034927030585000504,0.7249321617754758,2,1.0,1.0,0.42499999999999993
+114,45,0.75,0.0,1.303798452829928,0.0006638174841873507,0.03395183247019236,0.7240965815711977,2,1.0,1.0,0.3949999999999999
+114,46,0.75,0.0,1.3056232041361673,0.0006724037370441963,0.03518510442469313,0.723728448852309,2,1.0,1.0,0.3649999999999999
+114,47,0.75,0.0,1.3056099133003831,0.0006800318914631276,0.03466509158326149,0.7237280558644842,2,1.0,1.0,0.33499999999999985
+114,48,0.75,0.0,1.3041398268781823,0.0006865353244901787,0.03503438029556681,0.7240192977460299,2,1.0,1.0,0.3049999999999998
+114,49,0.71,0.0,1.096767249551449,0.0005206170368792452,0.02936952187265942,0.7635409141454889,2,1.0,1.0,0.2999999999999998
+115,0,0.17248192178297259,0.0,1.357609133847504,0.00068841409050099,0.03592011318687883,0.7132076214592851,1,0.15413113066988537,0.22845342016170905,0.05
+115,1,0.22349729319479156,0.0,1.3567828394052697,0.0006872769089474125,0.03614016130600762,0.7133770690587331,1,0.2260839483240951,0.2812263709378609,0.060000000000000005
+115,2,0.23507308983776587,0.0,1.383106518751638,0.0006979766065276069,0.03651595626528088,0.7079601472700147,1,0.25991262600074716,0.3136789024583479,0.11000000000000001
+115,3,0.1860036393810776,0.0,1.382604578268192,0.0006977312391048771,0.03664337831749092,0.7080640153643233,1,0.2897485569514139,0.2819721481602759,0.17
+115,4,0.25813806973922143,0.0,1.383185448511893,0.0006984015444372732,0.03665798077642347,0.7079436523509941,1,0.3205719073702727,0.31979300719875337,0.22000000000000003
+115,5,0.30090426537576803,0.0,1.382568940213368,0.0006982202690703642,0.036660138003875395,0.7080711798582087,1,0.37239568531151923,0.36855258505578764,0.23000000000000004
+115,6,0.24304152904092452,0.0,1.3836424631864854,0.0006984749816847167,0.03662088032345061,0.7078491209014062,1,0.39744352045552966,0.3464543229382972,0.29000000000000004
+115,7,0.343241519837941,0.0,1.3842020807562068,0.0006992455588140595,0.03656428244704447,0.7077330604488753,1,0.47197690269845566,0.39349867964493834,0.30000000000000004
+115,8,0.40070496718513593,0.0,1.3733806623094051,0.0006992240132770044,0.036493164926283995,0.7099664047422327,1,0.5281489615874181,0.4528427687651321,0.30000000000000004
+115,9,0.4217694314933783,0.0,1.3814417385940376,0.000704471685523716,0.03641336460930597,0.7083015417604943,1,0.5762207899940262,0.5336405166515641,0.30000000000000004
+115,10,0.3563545831168896,0.0,1.3815100235413675,0.0007024543697968242,0.03653439346282626,0.708288266795021,1,0.6050974569261304,0.4819015773091466,0.36000000000000004
+115,11,0.34069669402048086,0.0,1.3392439008390937,0.0006706343623163222,0.03514424186229418,0.7169565521959081,1,0.6433461866752216,0.4517517622805112,0.42000000000000004
+115,12,0.46214082909636955,0.0,1.345804648994368,0.0006775972173855796,0.03569393163769978,0.7156204535622596,1,0.7079503650690083,0.5145273377407223,0.43000000000000005
+115,13,0.4817949347114664,0.0,1.3529372919989695,0.0006788670579544393,0.035482603085808764,0.7141661568355917,1,0.7509753620032351,0.5965118600344472,0.44000000000000006
+115,14,0.5517148780772396,0.0,1.35816775849646,0.0006808097800211544,0.03588586668041246,0.7130964569040235,1,0.79633113938631,0.6433299309734372,0.44000000000000006
+115,15,0.5528706116877865,0.0,1.2565604576176803,0.0007321370543581244,0.034686996176665694,0.7334065344503056,1,0.8551681777333199,0.6785391649370819,0.49000000000000005
+115,16,0.6203417530266068,0.0,1.157297903887418,0.0006329866895328067,0.0314102023313393,0.7523967521537401,1,0.9085938261726454,0.7411130462206029,0.49000000000000005
+115,17,0.5267484964070634,0.05,1.1767753566803845,0.0006562455008241751,0.032635477917442965,0.734370687926057,1,0.9081345432809541,0.6963380208624318,0.55
+115,18,0.5019181647298073,0.0,1.1827660763289745,0.0006559299731510075,0.03283050682969404,0.747613042098188,2,0.9264758574162089,0.6588387154471144,0.6100000000000001
+115,19,0.6784281382826495,0.0,1.222493577919286,0.0006953563482210625,0.03377795793531634,0.7400283114684574,2,0.9985227031037526,0.696483973987787,0.5800000000000001
+115,20,0.538742479927595,0.05,1.214459090283123,0.0006936719907027471,0.03369179681806837,0.7269402329998534,2,1.0,0.6291415997586502,0.56
+115,21,0.6095892936499926,0.0,1.2434760012752297,0.0006851816577005738,0.033794256154264304,0.7359752487787975,2,1.0,0.6652976454999753,0.555
+115,22,0.6326717541942861,0.05,1.2355900202163816,0.0006782631645200464,0.033912243180907166,0.7227319048591861,2,1.0,0.7089058473142872,0.545
+115,23,0.6236288804122263,0.0,1.2500542414423395,0.000697527298467199,0.033926878019127915,0.7346901980462391,2,1.0,0.745429601374088,0.535
+115,24,0.7070253639002052,0.0,1.2516274005195704,0.0007157080975432713,0.03453368200643484,0.7343763509693816,2,1.0,0.7900845463340175,0.505
+115,25,0.6505165917615081,0.05,1.2442795506392554,0.0007154827385562389,0.03419188880852555,0.720972265045819,2,1.0,0.8017219725383603,0.5
+115,26,0.7301932818386869,0.0,1.3020755430771165,0.0006544090893955892,0.03473066921436076,0.7244444091073636,2,1.0,0.8673109394622897,0.47
+115,27,0.6942566335214644,0.0,1.3029850802867526,0.0006615066377235067,0.03387292123188553,0.7242599710903868,2,1.0,0.9141887784048814,0.45999999999999996
+115,28,0.6109137852938435,0.0,1.3018306585580155,0.0006673364385822941,0.035030745073632644,0.7244881307216687,2,1.0,0.8697126176461452,0.43999999999999995
+115,29,0.6977262496713925,0.0,1.3186337728709132,0.000667532437193969,0.03469905947901423,0.7211214449608306,2,1.0,0.9257541655713087,0.42999999999999994
+115,30,0.7593553787188903,0.0,1.316391015578793,0.0006711330522124307,0.0350119246255234,0.7215708048291336,2,1.0,0.9645179290629678,0.3999999999999999
+115,31,0.72,0.0,1.3198409485575955,0.0006799631972661292,0.035241460136879725,0.7208736082538693,2,1.0,1.0,0.3899999999999999
+115,32,0.6322447323952547,0.0,1.3171110775463521,0.0006837201201216734,0.03475038456642254,0.7214210574227707,2,1.0,0.940815774650849,0.3699999999999999
+115,33,0.7167969470731745,0.0,1.3319600953875281,0.0006820473512657592,0.035737371819696606,0.7184276977196214,2,1.0,0.989323156910582,0.3599999999999999
+115,34,0.7,0.0,1.3286911908605692,0.0006840675129641231,0.03507267210303493,0.7190876737079988,2,1.0,1.0,0.34999999999999987
+115,35,0.77,0.0,1.3250694661919222,0.0006854384964662721,0.03563072355846612,0.7198181303956624,2,1.0,1.0,0.31999999999999984
+115,36,0.6337739512685143,0.05,0.972907489329862,0.0005109700442236975,0.027903850112067384,0.7722518950872365,2,1.0,0.9459131708950479,0.2999999999999998
+115,37,0.72,0.0,1.0192802833962968,0.0005354329071751564,0.028658147527007377,0.7772390696465126,2,1.0,1.0,0.2899999999999998
+115,38,0.71,0.05,1.0298741188069744,0.0005972149165670852,0.029985739955581524,0.7620463459305438,2,1.0,1.0,0.2849999999999998
+115,39,0.6392323233230495,0.05,1.0766908514496434,0.0005996034665640284,0.03081516862597756,0.7534522468763913,2,1.0,0.9641077444101648,0.2649999999999998
+115,40,0.72,0.0,1.1003248942292752,0.0006031419263944717,0.03066208413099062,0.7628681365843472,2,1.0,1.0,0.2549999999999998
+115,41,0.6313213908189675,0.05,1.1074606344896158,0.0006589167980288154,0.03181688766552688,0.7476695438963223,2,1.0,0.9377379693965586,0.2349999999999998
+115,42,0.5972013086848742,0.0,1.1383616996799018,0.0006639756575104931,0.032223002982594215,0.7558961683567361,1,1.0,0.8906710289495807,0.2149999999999998
+115,43,0.6720697983530406,0.0,0.7564620405503565,0.00024054424819353807,0.019396818734033476,0.8195137931859475,1,1.0,0.9068993278434686,0.2649999999999998
+115,44,0.6982984350757193,0.05,0.7992200682245761,0.0003065054054042774,0.021717518866605987,0.8014158316716677,1,1.0,0.9609947835857314,0.2749999999999998
+115,45,0.69,0.05,0.8623950924303379,0.00034320324927728196,0.023137328769209053,0.7911578002901474,1,1.0,1.0,0.2849999999999998
+115,46,0.73,0.05,0.9004297092610534,0.00036815321022924934,0.024138102704708068,0.784795423809376,1,1.0,1.0,0.2849999999999998
+115,47,0.6416573189701049,0.1,0.9382438400629152,0.0003734545621663607,0.024807170520652042,0.7651292212195908,1,1.0,0.972191063233683,0.3449999999999998
+115,48,0.7,0.05,1.2044075929963656,0.0007737685883997265,0.035141698993165445,0.7288992249821112,1,1.0,1.0,0.3949999999999998
+115,49,0.6799999999999999,0.1,1.1809419888038963,0.0007616595761986309,0.03462602453234208,0.718601407821018,1,1.0,1.0,0.4449999999999998
+116,0,0.09411092745508445,0.05,1.358699993437718,0.0006883807049137146,0.03594294842233265,0.6973949166631017,1,0.12882977842011137,0.16340168336015162,0.06
+116,1,0.18559472298468088,0.0,1.3500416938595854,0.0006830662722308175,0.03573597079681812,0.7147551645456,1,0.16158034516192998,0.23013867392668463,0.06999999999999999
+116,2,0.12176231015536901,0.0,1.3567894479550233,0.0006873563577561043,0.035828649573301376,0.7133756853152388,1,0.1930467832449706,0.180653120065431,0.13
+116,3,0.21704612463147355,0.0,1.3539265775469693,0.0006937957035512718,0.035973264575866866,0.7139580708958094,1,0.25078642866070244,0.2309029153340923,0.14
+116,4,0.23175426592154366,0.0,1.3843041663507414,0.0006992456133090887,0.03670863086359053,0.7077119438820578,1,0.2893800783906539,0.26823746161604933,0.19
+116,5,0.3034561768928472,0.0,1.383783459927286,0.0006991161145143154,0.03670002557782508,0.7078196969116302,1,0.35318769102273906,0.33280161678296183,0.19
+116,6,0.29347342255006403,0.0,1.3834550529977372,0.0006985148795221682,0.036617910811564826,0.7078878590827673,1,0.38600654706061954,0.3612371035961574,0.24
+116,7,0.34343302559459604,0.0,1.3827232559276816,0.000698294458532108,0.036520901473510524,0.7080392501178773,1,0.43796646026141267,0.4338158816770054,0.25
+116,8,0.39130671463081657,0.0,1.3733503682056365,0.0007083363557725318,0.03653441879854228,0.7099688899995468,2,0.478485858105668,0.4794555476461093,0.25
+116,9,0.3975570996308494,0.0,1.3842241203182437,0.0006989309625895309,0.036507899937231664,0.7077286317589826,1,0.5378911824150558,0.4976506192852662,0.245
+116,10,0.33519440523845767,0.0,1.3709990534723242,0.0007137971946603979,0.03657090915565882,0.7104505705850687,1,0.5690455869900592,0.45342816597312324,0.305
+116,11,0.4095065088706933,0.0,1.3687018281431587,0.0007143547061709077,0.036447256842657025,0.7109226763785572,1,0.6042524295629481,0.4933938617455381,0.355
+116,12,0.4493834082008171,0.0,1.3560201645595324,0.0006799192357348881,0.03588891187775158,0.7135359958369862,1,0.6334887867418189,0.5588744428039352,0.365
+116,13,0.4686075401523049,0.0,1.3597822075019876,0.0006830723633746867,0.03570158122714459,0.7127651169007809,1,0.6963490052308161,0.582951294405064,0.415
+116,14,0.4131883798684319,0.0,1.3564134081798873,0.0006802062079204751,0.03583013005584582,0.713455491821186,1,0.7173264085686996,0.5404137895646235,0.475
+116,15,0.50827045736662,0.0,1.3629311102605652,0.0006841030012908728,0.036093989505063956,0.7121195846266346,1,0.7762505333992153,0.5886092355896487,0.485
+116,16,0.5269517121554531,0.0,1.3660158489678809,0.000686287496626442,0.035909317026616774,0.7114858864991815,1,0.8371647914460725,0.6464801171644259,0.495
+116,17,0.6093348481182989,0.0,1.112397058760616,0.000596182581045966,0.030325764078717964,0.7606798861329869,1,0.9049218065350999,0.7087073861033797,0.495
+116,18,0.5278502680403491,0.05,1.134887523956913,0.0006053073891364669,0.03090994142929963,0.7424806336416482,1,0.9316697302897471,0.6725528747964586,0.5549999999999999
+116,19,0.6008215324401318,0.0,1.1354656362356836,0.0005993010272841429,0.03039893864481553,0.7564539766137672,2,0.9694512060399556,0.7050453677538249,0.605
+116,20,0.6073973365683382,0.05,1.220120910042753,0.0006620194047536046,0.03315391349152451,0.7258275275024026,2,1.0,0.7246577885611273,0.6
+116,21,0.6487378592038182,0.05,1.2205285923319302,0.0006555763047869597,0.03271690187289249,0.7257489553153988,2,1.0,0.7624595306793942,0.59
+116,22,0.6499885859357216,0.1,1.2295798383942582,0.0006696481472315953,0.03359307405010452,0.7087004590205469,2,1.0,0.7999619531190723,0.585
+116,23,0.7211153821965912,0.1,1.2290233992983224,0.0006616883260329096,0.033102036797033156,0.7088186049997498,2,1.0,0.8370512739886375,0.5549999999999999
+116,24,0.6891708014235953,0.1,1.3073314112697345,0.0006568506280628439,0.03459705726369723,0.6923981474355411,2,1.0,0.8972360047453178,0.5449999999999999
+116,25,0.6814042893648571,0.0,1.3024881259614625,0.0006553743570687998,0.03444531078477271,0.7243616542893908,2,1.0,0.9380142978828573,0.5349999999999999
+116,26,0.6142260991414642,0.0,1.288872725368766,0.0006500422312435909,0.034232288376706374,0.727073925747618,2,1.0,0.8807536638048807,0.5149999999999999
+116,27,0.6850236600450064,0.0,1.3031534256134767,0.0006526405186929538,0.034644104771930924,0.7242298915162734,2,1.0,0.9167455334833547,0.5099999999999999
+116,28,0.6077896055881,0.0,1.2988189621149453,0.0006508818519429129,0.0342898815500092,0.7250954339193562,2,1.0,0.8592986852936668,0.4899999999999999
+116,29,0.5733458118848134,0.0,1.3106808528098242,0.0006558488855923825,0.03481596979611819,0.7227226859930992,2,1.0,0.8111527062827113,0.46999999999999986
+116,30,0.6790199366618908,0.0,1.3198535222998669,0.0006616128191687231,0.034766467872919024,0.7208784629414658,2,1.0,0.8633997888729692,0.45999999999999985
+116,31,0.6735129900474185,0.0,1.3147950847227097,0.000657677617288692,0.03466112470117386,0.7218967268183677,2,1.0,0.9117099668247284,0.44999999999999984
+116,32,0.6885317164929328,0.0,1.309153961101194,0.0006534576045262496,0.03459457337706213,0.7230295205207075,2,1.0,0.9284390549764427,0.44499999999999984
+116,33,0.6104015561271834,0.0,1.3052807107169377,0.0006536440131560882,0.034469728090503214,0.7238044242855342,2,0.98945488338313,0.8803078231436267,0.4249999999999998
+116,34,0.7497269008383634,0.0,1.314212953820503,0.0006604449682159544,0.03502496702474012,0.7220124705219895,2,1.0,0.9324230027945448,0.3949999999999998
+116,35,0.7014587771240341,0.0,1.3281397082805477,0.0006646118738918342,0.035032832917525125,0.7192069181889057,2,1.0,0.9715292570801137,0.3899999999999998
+116,36,0.72,0.0,1.3241910088647746,0.0006639292491367699,0.03527610317817809,0.7200039359803878,2,1.0,1.0,0.3799999999999998
+116,37,0.7,0.0,1.3191436105735534,0.0006601681083290339,0.03466898506358794,0.7210218650046617,2,1.0,1.0,0.3699999999999998
+116,38,0.7,0.0,1.313574107852117,0.0006560734090011976,0.034875856720913104,0.7221424297382453,2,1.0,1.0,0.35999999999999976
+116,39,0.77,0.0,1.3072996209190493,0.0006515760138028491,0.03446586571179109,0.7234014660280877,2,1.0,1.0,0.32999999999999974
+116,40,0.72,0.05,1.0592558888891666,0.0006666793665654068,0.031193718476916953,0.7566519690015084,2,1.0,1.0,0.31999999999999973
+116,41,0.6344007249091574,0.0,1.087937940434477,0.0007489968455362394,0.03314904981080604,0.765049209151606,2,1.0,0.9480024163638582,0.2999999999999997
+116,42,0.7678208897965522,0.0,1.1023601523433375,0.0007319645125677649,0.03230987518629597,0.7624530996200015,2,1.0,0.9927362993218409,0.2699999999999997
+116,43,0.72,0.05,1.0820367477685862,0.0007101466429890238,0.032503499516772054,0.7524166547631073,2,1.0,1.0,0.2599999999999997
+116,44,0.7,0.0,1.1065293988947866,0.0007837626031229316,0.03357541367131494,0.7616783416559086,2,1.0,1.0,0.24999999999999967
+116,45,0.77,0.0,1.1032059960902199,0.0008440261552673041,0.03461955420308334,0.7622592545182817,2,1.0,1.0,0.21999999999999967
+116,46,0.6297138355396555,0.05,1.0852953393181288,0.000824522806916432,0.03311184980471327,0.7517664403048473,2,1.0,0.9323794517988518,0.19999999999999968
+116,47,0.72,0.0,1.1216819473741102,0.000807951008429497,0.03347780434546828,0.7589080358734306,2,1.0,1.0,0.18999999999999967
+116,48,0.77,0.05,1.1174167320343804,0.0008637907083313095,0.03439008401456551,0.7457089096250369,2,1.0,1.0,0.15999999999999967
+116,49,0.71,0.1,1.111396958337787,0.0008469017452834155,0.033843066903422495,0.7324148467098305,2,1.0,1.0,0.15499999999999967
+117,0,0.18446818454217917,0.0,1.3601469116579596,0.00068848123797651,0.035978015279601164,0.7126882297815029,1,0.13255083283172447,0.26025131017025205,0.01
+117,1,0.19960674462945927,0.0,1.3567287242354493,0.0006874889616580344,0.036113724830978446,0.7133880471570538,1,0.1850714551617578,0.28277245107614674,0.060000000000000005
+117,2,0.2668289077259954,0.0,1.3556967268394007,0.0006860746932967326,0.035800574134064775,0.7135995866706567,1,0.24632415700722587,0.3353848425782211,0.060000000000000005
+117,3,0.18676100245215593,0.0,1.3840383694967222,0.0006986160392318012,0.036677427613488335,0.7077671828867681,1,0.28801235611614207,0.28652225937168735,0.12
+117,4,0.3087591846341794,0.0,1.384633126339701,0.0006991908041299992,0.03672133159299286,0.7076439146463436,1,0.3607573346025568,0.3416470584109484,0.12
+117,5,0.32519623614302184,0.0,1.3843671947621348,0.0006988356757213047,0.03671097662949373,0.7076990755224697,1,0.42141948548824476,0.3923313874071206,0.12
+117,6,0.2634944870591788,0.0,1.370113521237272,0.0007015138436903403,0.036249650965048855,0.7106377516807598,1,0.4556289030764992,0.3467479032746802,0.18
+117,7,0.36135029112850064,0.0,1.3745206023398313,0.0007004961256724824,0.036435207448839727,0.7097310946935521,1,0.5187378768148332,0.3993067808110301,0.19
+117,8,0.37405113919953775,0.0,1.3744455090442806,0.0007030071242634225,0.0364645759239008,0.7097455300705379,1,0.5613521654418488,0.4585929376496356,0.2
+117,9,0.41558077129115556,0.0,1.3617838607608408,0.0007330720769421411,0.03624367756548075,0.7123346511062124,1,0.6226977158324181,0.5254552358326978,0.21000000000000002
+117,10,0.49969802352412673,0.0,1.34403475588393,0.0007346380659399635,0.036552708891460305,0.7159573037918021,1,0.6882795141262136,0.5960006452665065,0.21000000000000002
+117,11,0.49744229023864817,0.0,1.3477933238212374,0.0007262375317214279,0.03605019508084811,0.7151957544499704,1,0.7383797011660772,0.6300313161017371,0.26
+117,12,0.5686486948598808,0.0,1.3159342132179268,0.0007658485883051127,0.03635624455510926,0.7216245182440508,1,0.8012368435230044,0.6940526654227641,0.26
+117,13,0.48185023293811735,0.05,1.2302232566413833,0.0006981387844694134,0.03410040489136004,0.7237981199360018,1,0.8270318042638081,0.6412970048192819,0.32
+117,14,0.5524982933853007,0.0,1.2442946244199353,0.0007381372846330792,0.03442261958373004,0.7357955580568117,1,0.8684633558179634,0.6617870628300448,0.37
+117,15,0.5954297329714174,0.05,1.2078167845294252,0.0006033826503444715,0.03229755767267123,0.7282924637834326,1,0.9213327392851405,0.7098775807387276,0.38
+117,16,0.6051886167120143,0.1,1.21219090703175,0.0006128516806767877,0.03240110393780429,0.7123005101041954,1,0.9556284225096078,0.7357288961121721,0.43
+117,17,0.6475294080335731,0.1,1.2408565709819268,0.0006219249535628029,0.03284202929729255,0.706386773275993,1,1.0,0.7917646934452437,0.44
+117,18,0.6815844182557924,0.15000000000000002,1.2366097955513062,0.0006245898604128106,0.03324111236850509,0.6914999396215231,1,1.0,0.8386147275193079,0.44
+117,19,0.6797587249428709,0.15000000000000002,1.3357351645275315,0.0007308824935770674,0.035677296332266364,0.6699155370933855,1,1.0,0.89919574980957,0.44
+117,20,0.6045365005745367,0.10000000000000002,1.342164243592632,0.0007220397677926599,0.036431535068515306,0.684901917147806,1,1.0,0.8484550019151226,0.5
+117,21,0.6783113902204242,1.3877787807814457e-17,1.3335799726933257,0.0007216043605447918,0.03562935735297018,0.7180838823749798,1,1.0,0.8943713007347474,0.51
+117,22,0.6039499441134635,1.3877787807814457e-17,1.339092486019859,0.0007141857105402792,0.036027344013395954,0.7169696028635256,1,1.0,0.8464998137115453,0.5700000000000001
+117,23,0.6778252766759134,0.0,1.3317761233104506,0.0007121407096710288,0.03573260535029133,0.7184527375014977,1,1.0,0.892750922253045,0.5800000000000001
+117,24,0.7161144731569482,0.0,1.3405209782603176,0.0007050205138715275,0.03620908440110725,0.7166833593786405,1,1.0,0.9537149105231605,0.5800000000000001
+117,25,0.6269110352633483,0.0,1.3473708872860568,0.0006990700844403792,0.03554462743563934,0.7152928584332117,2,1.0,0.9230367842111613,0.6400000000000001
+117,26,0.5943027606013065,0.0,1.2706154456170962,0.0006412757033025355,0.03339610619644767,0.7306852461535671,2,1.0,0.8810092020043552,0.6200000000000001
+117,27,0.6800217773510313,0.0,1.2798767410418237,0.0006505566087034456,0.034373614087930916,0.728855211313138,2,1.0,0.9000725911701046,0.6150000000000001
+117,28,0.7549003253270374,0.0,1.2762862726867634,0.0006540609266393779,0.03384729023050104,0.7295628125311121,2,1.0,0.9496677510901247,0.5850000000000001
+117,29,0.6194525352841624,0.0,1.295933952438114,0.0006548458862400361,0.03463334585981805,0.7256685569216923,2,1.0,0.8981751176138749,0.5650000000000001
+117,30,0.7527406591782106,0.0,1.3032332242893503,0.0006636004641728323,0.03443245032016422,0.7242095757235357,2,1.0,0.9424688639273691,0.535
+117,31,0.6138405821251434,0.0,1.3200332900614908,0.0006649516347747162,0.034897135825213435,0.720840946214815,2,1.0,0.8794686070838112,0.515
+117,32,0.5850536131215006,0.0,1.3251760748700276,0.000672142517007418,0.03526248240255596,0.7198019923407273,2,1.0,0.8501787104050021,0.495
+117,33,0.67554353717593,0.0,1.3284620934352147,0.0006789367130045377,0.0350474536978436,0.7191360218369839,2,1.0,0.8851451239197669,0.49
+117,34,0.664481710666317,0.0,1.3256397263188882,0.0006812824623303347,0.03560463253096288,0.7197047827186132,2,1.0,0.9149390355543902,0.485
+117,35,0.6134996938989601,0.0,1.3223980893559952,0.0006829943502316466,0.035022261293236795,0.7203575618538264,2,1.0,0.8783323129965336,0.46499999999999997
+117,36,0.6949719896415736,0.0,1.3250547958377372,0.000690898491016312,0.03576714145090492,0.7198188867686299,2,1.0,0.9165732988052455,0.45499999999999996
+117,37,0.6163438058116554,0.0,1.321536172542834,0.000684798254095883,0.034772488371211434,0.7205304290983823,2,1.0,0.8878126860388513,0.43499999999999994
+117,38,0.6823624433824399,0.0,1.3233927929354263,0.0006922525124871421,0.03560339585851281,0.7201534106942982,2,1.0,0.9078748112747999,0.42999999999999994
+117,39,0.7578847884790667,0.0,1.3204560853083032,0.000695080352250986,0.03512927920710644,0.720743731504402,2,1.0,0.9596159615968889,0.3999999999999999
+117,40,0.7030686918232718,0.0,1.3358221468045002,0.0006915708299586024,0.035518107242498625,0.7176419277458055,2,1.0,0.9768956394109062,0.3949999999999999
+117,41,0.72,0.0,1.332527359926099,0.0006931420618430177,0.03564364268123138,0.7183084421155638,2,1.0,1.0,0.3849999999999999
+117,42,0.6294599055413198,0.0,1.329185070948463,0.0006869626786145867,0.03519312373801696,0.7189867289394136,2,1.0,0.9315330184710662,0.3649999999999999
+117,43,0.6947182383419106,0.0,1.331098226847941,0.0006942764251457072,0.03588956368693148,0.7185970659261709,2,1.0,0.9490607944730355,0.3599999999999999
+117,44,0.77,0.0,1.3279277773382088,0.0006963067316819299,0.035340393202650054,0.7192369148643579,2,1.0,1.0,0.32999999999999985
+117,45,0.71,0.05,1.0275483492987,0.0008928035939208574,0.03418877684385641,0.7623607395119864,2,1.0,1.0,0.32499999999999984
+117,46,0.69,0.0,1.0638486720181504,0.0008783325945110703,0.034368213455502825,0.7693056468436463,2,1.0,1.0,0.31999999999999984
+117,47,0.72,0.0,1.0811284416246507,0.0008600971595290463,0.034310606372817604,0.7662312008817067,2,1.0,1.0,0.30999999999999983
+117,48,0.71,0.05,1.0861996142085875,0.000916081471171433,0.034599593021118015,0.7515634625145149,2,1.0,1.0,0.3049999999999998
+117,49,0.77,0.05,1.1251575725801601,0.000891535921013559,0.03445421899225823,0.7442276837700028,2,1.0,1.0,0.2749999999999998
+118,0,0.21110297844235415,0.05,1.358670554148967,0.000690103767728621,0.03593117843154317,0.6974004021085524,1,0.1650536401190057,0.24444734800234058,0.0
+118,1,0.12825584833405232,0.0,1.359577413475899,0.0006929253052201216,0.03625403656459683,0.712803008689895,1,0.1977402709153096,0.19682251171231324,0.06
+118,2,0.20826751187312958,0.0,1.3566843685001393,0.0007048560041056316,0.03610285812099782,0.7133900144489752,1,0.24115773740375743,0.24620767927271503,0.11
+118,3,0.21291743054660936,0.0,1.3844356637497799,0.000698920307236979,0.03669400183224986,0.7076848767364289,1,0.2835617659257289,0.2789027082420141,0.16
+118,4,0.1731368008933165,0.0,1.3840085779235896,0.0006986960041454385,0.03669280978141028,0.7077733116447218,1,0.2951548444360629,0.2327753511356484,0.22
+118,5,0.2859761495077026,0.0,1.3844668476031952,0.0006992581939611427,0.0367182303267789,0.7076782859876454,1,0.3499532706340898,0.27830834928590403,0.22
+118,6,0.30229052709801213,0.0,1.3841626329768764,0.0006988167690108926,0.036642012158877586,0.7077413974206671,1,0.3994840097835807,0.3415704122458631,0.23
+118,7,0.3156786523513113,0.0,1.3847969629006658,0.0006991340353273861,0.03658543966439951,0.7076100418201398,1,0.4495182187489436,0.3611575859639368,0.28
+118,8,0.36856214834463563,0.0,1.3723669317614533,0.0007085982759391622,0.036487403503148295,0.7101712427685891,1,0.5042204192705467,0.44028333866648106,0.29000000000000004
+118,9,0.4311808755676413,0.0,1.363649369799746,0.0007308696463055366,0.036213560110229796,0.7119531341557477,1,0.5661799356368956,0.5100596603157593,0.29000000000000004
+118,10,0.44737081773097853,0.0,1.3670117767902323,0.0007250720930864475,0.03664999623394628,0.7112654757550829,1,0.613262703930977,0.5757629045171221,0.30000000000000004
+118,11,0.45703338512496483,0.0,1.3359493520250578,0.0007265346145985557,0.035787475677832206,0.7176019806222763,1,0.6445633326373593,0.6047873956729636,0.35000000000000003
+118,12,0.5099734823029722,0.0,1.2646998647806784,0.0006824559875746252,0.034318996071356675,0.7318315866114956,1,0.7060402354607821,0.6761979996389951,0.36000000000000004
+118,13,0.4445347850595215,0.0,1.2586888588673038,0.0006819675673919486,0.033955843033178314,0.7330098172405456,1,0.7391776382798575,0.6194087055385712,0.42000000000000004
+118,14,0.4232115292823837,0.0,1.2788983665352782,0.0006759120866533724,0.03442335306508755,0.7290385021675387,1,0.7706376401308341,0.5782945174553059,0.48000000000000004
+118,15,0.5631223767057748,0.0,1.3471099379365403,0.0006977814049906841,0.035896404196490546,0.7153465223349749,1,0.8251137370993021,0.6477752290700636,0.48000000000000004
+118,16,0.5527314405295207,0.0,1.2669511309491912,0.0006436506326820645,0.033301486045122675,0.7314047828744077,1,0.8558045943622933,0.6773327750090605,0.53
+118,17,0.5468374531034885,0.0,1.2861499828099505,0.0006458812011247341,0.03434231544188412,0.727615534980381,1,0.8728945996769372,0.7044144773885351,0.5800000000000001
+118,18,0.5186280187784065,0.0,1.3026937703156232,0.0006503428024966153,0.03417464683208114,0.7243226024630541,2,0.9153548733958804,0.6608460436328277,0.6400000000000001
+118,19,0.6234226542099317,0.0,1.186885689148744,0.0006784344063439843,0.032781230299438385,0.7468264188314329,2,0.9740088587515984,0.7083985121562408,0.6300000000000001
+118,20,0.6285382113305341,0.05,1.1984731401853206,0.0006976525676722391,0.03345972947292834,0.7301003081216372,2,1.0,0.7284607044351138,0.6250000000000001
+118,21,0.6551873177990345,0.05,1.2009397908281108,0.0006896021980798282,0.032871893007475686,0.7296171456327722,2,1.0,0.7839577259967818,0.6150000000000001
+118,22,0.6535785585216245,0.05,1.2098685234849664,0.0007073898216027844,0.033722471372830805,0.7278450674216987,2,1.0,0.8452618617387484,0.6050000000000001
+118,23,0.5919954040079436,0.0,1.2950457587520947,0.0007081499372593596,0.035455064467287856,0.7258241226111657,2,1.0,0.8066513466931452,0.5850000000000001
+118,24,0.5571713909458714,0.0,1.2927725415435503,0.0007178696428299738,0.03478857970818284,0.7262724038578379,2,1.0,0.7572379698195716,0.5650000000000001
+118,25,0.6457458216781153,0.0,1.2201013956204925,0.0007788866871541499,0.03415900763665805,0.740456165937979,2,1.0,0.7858194055937178,0.56
+118,26,0.7217930678892375,0.05,1.2186237587952256,0.0007662619685430207,0.03502272288473279,0.7260838999005699,2,1.0,0.8393102262974582,0.53
+118,27,0.5870494732191531,0.05,1.2880236728250227,0.0006844639337165718,0.034675797757365893,0.71210046044751,2,1.0,0.7901649107305107,0.51
+118,28,0.5480467809034216,0.0,1.1865999678962635,0.0007801264294055259,0.03417419161610612,0.746841986563868,2,1.0,0.7268226030114056,0.49
+118,29,0.7017868980817754,0.0,1.204592560104014,0.0007681144069765848,0.03436029222531074,0.7434296434595968,2,1.0,0.7726229936059184,0.45999999999999996
+118,30,0.6998512253628335,0.05,1.1958831455971184,0.0007656901720381194,0.03425833462085428,0.7305835892524914,2,1.0,0.8328374178761121,0.42999999999999994
+118,31,0.7157794268051245,0.0,1.2756419877831136,0.0006630668560853863,0.033872895987970206,0.7296863590097552,2,1.0,0.8859314226837488,0.3999999999999999
+118,32,0.7272045403906049,0.0,1.290306488597447,0.000660196470506989,0.03439496041975701,0.7267852882397513,2,1.0,0.9240151346353499,0.3699999999999999
+118,33,0.7417295571533973,0.0,1.3070786622430843,0.0006606631003466385,0.03468873620868002,0.7234420397030119,2,1.0,0.9724318571779911,0.33999999999999986
+118,34,0.72,0.0,1.321210598473738,0.0006630552548412627,0.03502047924930147,0.7206047393208107,2,1.0,1.0,0.32999999999999985
+118,35,0.71,0.0,1.226583188865705,0.0007621901706266086,0.03459258981275639,0.7392149867995857,2,1.0,1.0,0.32499999999999984
+118,36,0.77,0.0,1.2509870786902497,0.0007456884041872219,0.03537048962652665,0.7344895453119085,2,1.0,1.0,0.2949999999999998
+118,37,0.72,0.0,1.2543007155924426,0.0007808363214039865,0.03521636405705062,0.733829105416277,2,1.0,1.0,0.2849999999999998
+118,38,0.71,0.0,1.2417772840520405,0.0007749747597653746,0.035374560888559746,0.7362703339206788,2,1.0,1.0,0.2799999999999998
+118,39,0.69,0.0,1.2641941440366287,0.0007578734124533912,0.03534100682084572,0.7319012286983182,2,1.0,1.0,0.2749999999999998
+118,40,0.69,0.0,1.2831595270586864,0.0007430846434467405,0.035379815601843355,0.7281693343596012,2,1.0,1.0,0.2699999999999998
+118,41,0.69,0.0,1.298633890286168,0.0007304292010018825,0.03587844050806352,0.7251006119636719,2,1.0,1.0,0.2649999999999998
+118,42,0.72,0.0,1.3105959159506069,0.0007197644586054849,0.035277034662728954,0.7227140901273115,2,1.0,1.0,0.2549999999999998
+118,43,0.71,0.0,1.2991572587620883,0.000714871807288059,0.035844249513300966,0.7250024803048317,2,1.0,1.0,0.24999999999999978
+118,44,0.6338982649940725,0.0,1.3089896749815748,0.0007061552884922804,0.03499974300979679,0.7230413137001231,2,1.0,0.9463275499802418,0.2299999999999998
+118,45,0.5999021960847055,0.0,1.3215675863069567,0.0006986282277239135,0.0359613280132272,0.7205185334869646,2,1.0,0.8996739869490185,0.2099999999999998
+118,46,0.5886008732155832,0.0,1.3308217455949207,0.0006929406902893658,0.03527484523529693,0.7186535114393173,2,1.0,0.8620029107186107,0.1899999999999998
+118,47,0.6793032395593519,0.0,1.3372879779011697,0.0006886566592186614,0.03585620168202473,0.7173459904964318,2,1.0,0.89767746519784,0.1849999999999998
+118,48,0.7034071341422622,0.0,1.3443565908618909,0.0006852034187135413,0.03568912173556603,0.7159119587624886,2,1.0,0.9446904471408741,0.1749999999999998
+118,49,0.77,0.0,1.3355146433603624,0.000680695238357453,0.03535073407197198,0.7177086404853721,2,1.0,1.0,0.1449999999999998
+119,0,0.10007113457664996,0.0,1.3591739839861332,0.0006926050066802617,0.03593629930166146,0.7128857207357168,1,0.15182556297182423,0.15644062512170492,0.06
+119,1,0.07097636680788275,0.0,1.3549545480086445,0.0006971749967167185,0.036176773954303215,0.7137467097441194,1,0.17988837168927024,0.09338478905546056,0.12
+119,2,0.19302401743796913,0.0,1.3606688669702798,0.0006960244487935537,0.03599882771297516,0.712578250560468,1,0.23599335232873492,0.16808781374303972,0.13
+119,3,0.2125481263507932,0.0,1.357303692544166,0.0006942591075570314,0.035923022272659325,0.713267702317956,1,0.2971833852486474,0.2284464717125554,0.14
+119,4,0.24570316243338425,0.0,1.3849768447698172,0.0006992612394946498,0.03673022104713637,0.7075727705781216,1,0.34149081566252354,0.25393792317167,0.19
+119,5,0.29428006140348717,0.0,1.3846007678270944,0.0006989845416875037,0.03671820076279329,0.7076506944036834,1,0.39173169613619446,0.3239132258527305,0.2
+119,6,0.3537859600390812,0.0,1.3849172905800324,0.0006992633483756928,0.0366668925426618,0.7075850921216227,1,0.450930841670311,0.3865338848482412,0.2
+119,7,0.3494725748468261,0.0,1.3680753071632388,0.0007129107612107236,0.036453990561761754,0.7110520100437612,1,0.4955087948570737,0.4201483221561677,0.25
+119,8,0.41231818959976163,0.0,1.3693288650338444,0.0007226462413640261,0.03659295073870023,0.7107903870404931,1,0.5462350896536307,0.4704530274033032,0.25
+119,9,0.4313507258965054,0.0,1.3715345246595727,0.0007180437653800012,0.03637398503355883,0.7103386585711815,1,0.6173506151766879,0.5175933686155489,0.25
+119,10,0.4658200859771089,0.0,1.289836404156775,0.0007119285414381731,0.035638878682973364,0.7268580814048691,1,0.6740412975565353,0.5663521061077385,0.25
+119,11,0.5062282233616359,0.0,1.2970942951639148,0.0007044264437911663,0.03474946195217427,0.7254177515755235,1,0.7349404892687615,0.6299968403918977,0.25
+119,12,0.548475815885331,0.0,1.3232697433288996,0.0007580594716010981,0.036399129448570905,0.7201516847041037,1,0.8030228540176899,0.6913927232637985,0.26
+119,13,0.5656314750456248,0.05,0.9662344115182414,0.0004839633286984141,0.027065860709029877,0.7734328811466727,1,0.8620071060493728,0.7464299597611481,0.27
+119,14,0.6439914221921904,0.05,1.0178694421459678,0.000501717136260702,0.027874845711275797,0.7642507358797983,1,0.9240584605940005,0.8019032032809674,0.27
+119,15,0.6573644038998308,0.15000000000000002,0.6296544177423082,0.000152024814491146,0.015472435252769853,0.8045599080822047,1,0.9654323509288432,0.8648769369157853,0.28
+119,16,0.6676957747032497,0.15000000000000002,0.7219142606973781,0.00020808739381883854,0.018048276240057965,0.7896255096155601,1,1.0,0.9256525823441659,0.29000000000000004
+119,17,0.6123005802130763,0.15000000000000002,0.7646162918538049,0.0002444575206513379,0.0196551777711796,0.7824318673498255,1,1.0,0.8743352673769214,0.35000000000000003
+119,18,0.6951579361005368,0.10000000000000002,1.2317699831990943,0.0006282855655844543,0.03363123944831446,0.7082652033577244,1,1.0,0.950526453668456,0.36000000000000004
+119,19,0.6225142140356454,0.15000000000000002,1.2410619198011157,0.0006222074257541563,0.03299957022480089,0.6905503872092925,1,1.0,0.9083807134521513,0.42000000000000004
+119,20,0.7041929308620227,0.10000000000000002,1.235404389679473,0.0006177797653070705,0.03356866329051629,0.7075180219801184,1,1.0,0.9806431028734091,0.43000000000000005
+119,21,0.7,0.15000000000000002,1.2420366563516534,0.0006140832759499815,0.032300581785718915,0.6903455299283325,1,1.0,1.0,0.48000000000000004
+119,22,0.73,0.10000000000000002,1.2630815109131528,0.0006521798527840043,0.0342492184335305,0.7017435065464236,1,1.0,1.0,0.48000000000000004
+119,23,0.71,0.10000000000000002,1.2731491185653419,0.000645252022436148,0.03366680216446505,0.699635001826741,1,1.0,1.0,0.49000000000000005
+119,24,0.6356363415317807,0.05000000000000002,1.2836118641173373,0.0006445515933203307,0.03443634691126738,0.7130204274775549,1,1.0,0.9521211384392692,0.55
+119,25,0.6051798533820654,0.0,1.2663768736718626,0.0006322661283326249,0.03306674559834586,0.731522053573758,2,1.0,0.9172661779402179,0.6100000000000001
+119,26,0.5901488661550027,0.0,1.3288280020301095,0.0006809550417788326,0.03585453980160856,0.7190612944582356,2,1.0,0.8671628871833426,0.5900000000000001
+119,27,0.5757624712948974,0.0,1.334137610770264,0.000696367766494473,0.03533459283829031,0.717981200854077,2,1.0,0.8192082376496584,0.5700000000000001
+119,28,0.7314353126099766,0.0,1.3373556876630666,0.0007108074354437741,0.03620263316258402,0.7173232784487342,2,1.0,0.8714510420332553,0.54
+119,29,0.6910428274342151,0.0,1.3470786429759691,0.0007043982206719576,0.03593913882668106,0.71535020007464,2,1.0,0.9034760914473837,0.53
+119,30,0.6928661176518346,0.0,1.350862654508835,0.0006990985139639397,0.0359636932262813,0.7145812177394347,2,1.0,0.9428870588394488,0.525
+119,31,0.6158686722949307,0.0,1.3441892703187084,0.0006969559472134567,0.03588571217929164,0.7159412073391856,2,1.0,0.8862289076497692,0.505
+119,32,0.7486422217128299,0.0,1.3470173719708058,0.0007096399112115476,0.0359159330980616,0.7153605415554939,2,1.0,0.9288074057094331,0.475
+119,33,0.6144009524553965,0.0,1.3553483642310087,0.0007039594178365942,0.03639857124083873,0.7136634686993822,2,1.0,0.881336508184655,0.45499999999999996
+119,34,0.5792889699319882,0.0,1.3568336708753457,0.0007140733344342203,0.035942163229449216,0.7133557169184226,2,1.0,0.8309632331066276,0.43499999999999994
+119,35,0.6818842436050895,0.0,1.3570159887395201,0.0007228632290686018,0.03662341658032618,0.7133148402353411,2,1.0,0.8729474786836318,0.42499999999999993
+119,36,0.7426248679804263,0.0,1.3607967266659104,0.0007162396696585996,0.036157340548739814,0.7125437817423779,2,1.0,0.9087495599347543,0.3949999999999999
+119,37,0.7055097689895955,0.0,1.3673798068970608,0.0007107799477645443,0.036509979425909465,0.711195759821636,2,1.0,0.9516992299653186,0.3849999999999999
+119,38,0.7,0.0,1.3697310726853686,0.0007060613800389823,0.03643589987095299,0.7107145189673651,2,1.0,1.0,0.3749999999999999
+119,39,0.6349581839200773,0.0,1.370585311359328,0.0007019762127902113,0.03639503732989388,0.7105405368246438,2,1.0,0.9498606130669247,0.35499999999999987
+119,40,0.7194512134217971,0.0,1.3710683613836936,0.0007072420944040306,0.036600124289610424,0.7104390099859249,2,1.0,0.9981707114059903,0.34499999999999986
+119,41,0.71,0.0,1.3710572524055902,0.0007028263208133798,0.03631459332917444,0.7104431120423067,2,1.0,1.0,0.33999999999999986
+119,42,0.77,0.0,1.3677755305222554,0.0007033581407383872,0.03635195614716804,0.7111175221646554,2,1.0,1.0,0.30999999999999983
+119,43,0.71,0.05,1.2369282252711646,0.0006065010487580303,0.03311552153931563,0.7224924384814225,2,1.0,1.0,0.3049999999999998
+119,44,0.69,0.0,1.2474594269113035,0.0006234270915591659,0.033307534765751094,0.7352245236090399,2,1.0,1.0,0.2999999999999998
+119,45,0.6317043238525419,0.0,1.2438793009201565,0.0006320412705290383,0.03353195188126092,0.7359175293093225,2,1.0,0.9390144128418064,0.2799999999999998
+119,46,0.7009273411187777,0.0,1.24997457299313,0.0006446033877793409,0.03285881371541615,0.7347263573980493,2,1.0,0.9697578037292591,0.2749999999999998
+119,47,0.72,0.0,1.2503377082863047,0.0006554083451184004,0.03383417822601552,0.734651362424281,2,1.0,1.0,0.2649999999999998
+119,48,0.6351305349308897,0.0,1.2415408992441528,0.0006430309174155403,0.03315660190773333,0.7363674635142438,2,1.0,0.9504351164362991,0.2449999999999998
+119,49,0.7680749970214322,0.0,1.2466852582690922,0.0006558067905640619,0.03339073490700879,0.7353626008508267,2,1.0,0.9935833234047741,0.2149999999999998
+120,0,0.16772904687756424,0.0,1.3597057622317614,0.0006925751729706589,0.03594822381351912,0.7127768764345475,1,0.13283535405694022,0.23745557652545063,0.05
+120,1,0.2319549525868947,0.0,1.3590009223570079,0.00069142674867398,0.03624357859539867,0.7129216239228979,1,0.19064445491167442,0.2840979778926955,0.05
+120,2,0.14883179144786882,0.0,1.359651033599203,0.0006942007764693882,0.035967789690643445,0.7127874150865825,1,0.21011896494187787,0.25096717906070526,0.11
+120,3,0.12586330032983217,0.0,1.3848827954425476,0.0006992677073571601,0.03670046039991516,0.7075922276014434,1,0.25466028578728755,0.18910733434760513,0.16999999999999998
+120,4,0.26464967618668545,0.0,1.343296252468189,0.0006886103821238015,0.035845262371729594,0.7161261779551314,1,0.3162871100141443,0.24649729227244993,0.16999999999999998
+120,5,0.28272111029907493,0.0,1.3836665938182287,0.0006988448678732093,0.03669269687691499,0.7078439777065112,1,0.3715916297070072,0.3088801330054081,0.16999999999999998
+120,6,0.3087472172547082,0.0,1.3832692301903298,0.0006989690708378861,0.03660616445337718,0.707926094705393,1,0.4204773127847359,0.3386005259335022,0.18
+120,7,0.3282858854325777,0.0,1.3675196828125173,0.0007050376710557375,0.036270794891019996,0.7111693879893143,1,0.4658177656030824,0.38416555823832954,0.22999999999999998
+120,8,0.276251013116813,0.0,1.3667209947157948,0.0007021541647451585,0.036454401652693084,0.7113346010191144,1,0.49245752566320566,0.3463029304489702,0.29
+120,9,0.3480926856255795,0.0,1.3719345231480142,0.0007009064282723436,0.03622294926951966,0.7102634023107754,1,0.5173697703963297,0.3900442199562138,0.33999999999999997
+120,10,0.2901852187764237,0.0,1.3479421042541968,0.0007478988251515364,0.03631381367600653,0.7151566232170717,1,0.5337943132767818,0.34452403043183366,0.39999999999999997
+120,11,0.38733238392194735,0.0,1.3550933427843965,0.0007405523866744282,0.036735677833091285,0.7137006249641225,1,0.5904332930869018,0.4022691044717724,0.41
+120,12,0.3237917744399288,0.0,1.3309075197519369,0.0007655384803493819,0.036479881940703666,0.7186068091615313,1,0.6218110667829203,0.35385967021968895,0.47
+120,13,0.4406913136931623,0.0,1.3789620043900022,0.0006982709691238243,0.03655585096367472,0.7088161756491094,1,0.6902965769565783,0.3969583725278664,0.47
+120,14,0.4573189224771481,0.0,1.378124271153581,0.0006992273256569869,0.03658425769255327,0.7089886553852648,1,0.735445509633976,0.4663766470175219,0.48
+120,15,0.5246185718219684,0.0,1.330653851512393,0.0007524602807467021,0.036166406973064426,0.7186633893377157,1,0.8168371687923308,0.529085209148842,0.48
+120,16,0.4413114615308693,0.1,0.45943324273996333,9.982006131977148e-05,0.01136646938051357,0.8402872780084513,1,0.8350029789537866,0.49686806299014663,0.54
+120,17,0.5545659840063327,0.1,0.5346979907841671,0.0001340726090545,0.01355627867740453,0.8299162548996424,1,0.8921730724079864,0.5410180288784583,0.54
+120,18,0.4746520798438706,0.2,0.5622104536433232,0.00013522136199158012,0.01382877251777966,0.8033743462382985,2,0.9286590613298158,0.49873802792811694,0.6000000000000001
+120,19,0.6355189372461039,0.15000000000000002,1.1496767322294148,0.0005588476215288465,0.03007558724464223,0.7097572920576387,2,1.0,0.5517297908203463,0.5700000000000001
+120,20,0.5838247975960917,0.2,1.1475171515657472,0.0005737438446321968,0.030765254897397697,0.6945197265845172,2,1.0,0.5794159919869727,0.5650000000000001
+120,21,0.5717982405872948,0.15000000000000002,1.1449306700815356,0.0005662721118970684,0.030238578820176137,0.7107309627639652,2,1.0,0.6059941352909828,0.56
+120,22,0.5238968755610851,0.15000000000000002,1.1504423014615588,0.0007274482309662814,0.03297253356736436,0.70953006673585,2,1.0,0.5796562518702839,0.54
+120,23,0.6604108017056884,0.10000000000000002,0.937307824497994,0.00035696605117572914,0.023433400538189562,0.76530331074343,2,1.0,0.6347026723522947,0.51
+120,24,0.5274705582883688,0.15000000000000002,1.1208765246133159,0.0007357105222127892,0.032741255188786914,0.7155821717352306,2,1.0,0.5915685276278959,0.49
+120,25,0.6657763740618675,0.10000000000000002,1.0100163436713079,0.0005376156043720619,0.027673832090106147,0.7519255521371456,2,1.0,0.6525879135395585,0.45999999999999996
+120,26,0.6596851967206413,0.15000000000000002,1.1039536426381678,0.0007439904939951498,0.03257443326929617,0.7190104428709005,2,1.0,0.6989506557354712,0.42999999999999994
+120,27,0.6441995959377763,0.15000000000000002,1.1007580830139234,0.000736748236861693,0.03259867000178543,0.7196585261150441,2,1.0,0.7473319864592545,0.41999999999999993
+120,28,0.6419735099808802,0.15000000000000002,1.1124928727804586,0.0007794844925941495,0.03349233247132175,0.7172676066447798,1,1.0,0.7732450332696009,0.4149999999999999
+120,29,0.6802545019525796,0.15000000000000002,1.2076338301624774,0.0005715118070673474,0.031805987678148816,0.6976691711958715,1,1.0,0.8341816731752654,0.4149999999999999
+120,30,0.6613442131637844,0.2,1.1177549572905696,0.0005121511852800184,0.02988711034290596,0.7008231579042917,1,1.0,0.871147377212615,0.4649999999999999
+120,31,0.5997313012833415,0.2,1.1523030788798614,0.0005706063038954081,0.030644469549157432,0.6935047238915462,2,1.0,0.8324376709444719,0.5249999999999999
+120,32,0.5646493915661919,0.1,1.3392018385833817,0.0007165304071289033,0.03577700906174598,0.6855432624532809,2,1.0,0.7821646385539732,0.5049999999999999
+120,33,0.656268236598861,0.05,1.059850795559586,0.0008110961297924083,0.03332587983526733,0.7564892092195904,2,1.0,0.8208941219962037,0.4999999999999999
+120,34,0.5830817266616827,0.05,1.3298719070240739,0.0006970462324824947,0.03559509954560723,0.7034402032471826,2,1.0,0.7769390888722756,0.47999999999999987
+120,35,0.5447607627969271,0.0,1.096748058279301,0.0007751864533704588,0.03296326346641482,0.7634524445602285,2,1.0,0.7158692093230906,0.45999999999999985
+120,36,0.6964445975338123,0.0,1.1117439670513687,0.0007605959462725621,0.03302676920563673,0.7607389122843726,2,1.0,0.7548153251127079,0.4299999999999998
+120,37,0.5572195960308238,0.05,1.0982849209530856,0.0007478101722478583,0.032631954661080945,0.7493633049426808,2,1.0,0.6907319867694127,0.4099999999999998
+120,38,0.5208413839110778,0.0,1.133070806786302,0.0007380387220020251,0.03328604865079978,0.7568438477801346,2,1.0,0.6361379463702597,0.3899999999999998
+120,39,0.5044326396696073,0.0,1.150236784172832,0.0007213136246555909,0.033075648744233264,0.7536770700144548,2,1.0,0.5814421322320246,0.3699999999999998
+120,40,0.5907186931921982,0.0,0.9608513724043855,0.0006368256840121888,0.028758920138035937,0.7871573452493926,2,1.0,0.6023956439739941,0.36499999999999977
+120,41,0.5119551495181357,0.05,1.1216622391425182,0.0007360448412365102,0.0329416757047681,0.7449515529597969,2,1.0,0.5398504983937857,0.34499999999999975
+120,42,0.5814578943461131,0.0,0.8834564165709091,0.0005523218091886236,0.026253550282840626,0.7998630974660764,2,1.0,0.5715263144870437,0.33999999999999975
+120,43,0.6593595229157091,0.05,0.8618352829857984,0.0005367883230431314,0.02539431375431935,0.7911863235528368,2,1.0,0.6311984097190303,0.3099999999999997
+120,44,0.6554265364261556,0.1,1.1783909267452706,0.0009154109739201253,0.03589208425862723,0.7190548630375437,2,1.0,0.6847551214205186,0.2799999999999997
+120,45,0.5430038025258249,0.1,1.1781729577214755,0.0009123886571089395,0.0359278320477474,0.7191001149283924,2,1.0,0.6433460084194165,0.2599999999999997
+120,46,0.6271895758002403,0.05,1.2019801098714111,0.0008932688970659958,0.0357988686691849,0.729331463685913,2,1.0,0.6906319193341341,0.24999999999999967
+120,47,0.5374820362535961,0.1,1.1920447756466537,0.0009121952248327199,0.036277916799346145,0.7162896567041118,2,1.0,0.6249401208453207,0.22999999999999968
+120,48,0.6081720744587269,0.05,1.2214278312235574,0.0008853795958518691,0.03624317554857713,0.7254784112829317,2,1.0,0.6605735815290897,0.22499999999999967
+120,49,0.6855473138400486,0.1,1.2258560988756886,0.0008701175354056227,0.03617082478459506,0.7093859556882931,2,1.0,0.7184910461334955,0.19499999999999967
+121,0,0.09616656184796178,0.1,1.3669928557710163,0.000694383766453434,0.03607561597647775,0.6795312330512535,1,0.14326860543742628,0.15340849981620863,0.06
+121,1,0.19640698940001772,0.0,1.3633433816040634,0.0006980376745887528,0.036276574232841564,0.7120293450368891,1,0.19891507828376487,0.2226223733356667,0.06999999999999999
+121,2,0.2118744157344339,0.0,1.3650525071102277,0.0006938783557276598,0.036089886888059274,0.7116804798230679,1,0.24803250705072846,0.28354346088892973,0.07999999999999999
+121,3,0.23689398193311834,0.0,1.383286674488831,0.0006990669119618032,0.03665800466901002,0.7079224473307173,1,0.26114904849756077,0.3183060498632403,0.13
+121,4,0.24626068799228898,0.0,1.3828843511548479,0.0006984794812622711,0.03666422320386016,0.7080058709487661,1,0.3191872870321513,0.34848379177012,0.18
+121,5,0.2780212310060245,0.0,1.3823604892299017,0.0006978378868451092,0.03664611191164008,0.7081144242062993,1,0.37794294772624454,0.3858039976727963,0.22999999999999998
+121,6,0.30666600214977424,0.0,1.3816315412589428,0.0006971162304888884,0.0365339526622682,0.7082653646517825,1,0.42901206043053375,0.4217059366636247,0.27999999999999997
+121,7,0.3232120311672529,0.0,1.3725362574027187,0.0007150807820910591,0.03647164368435815,0.710133720801619,1,0.4612472882200013,0.4392516009675083,0.32999999999999996
+121,8,0.28736639170962586,0.0,1.3712715914058564,0.0007165556430756507,0.036503155663091875,0.7103933684240249,1,0.4792881143654985,0.39871850560567135,0.38999999999999996
+121,9,0.25710348499136465,0.0,1.3496545062991057,0.0007481753993416484,0.03658132113609345,0.7148075526127642,1,0.5082313328198922,0.33074172834800813,0.44999999999999996
+121,10,0.3451644305324766,0.0,1.3556938605126427,0.0007412246664863806,0.036373216821999114,0.7135776293975298,1,0.5362709032934384,0.35823204793257724,0.49999999999999994
+121,11,0.29121438098174335,0.0,1.3596831703584231,0.000734611741978919,0.03674529653528254,0.7127642894564462,1,0.5693645927396714,0.3064559117428613,0.5599999999999999
+121,12,0.3691402899145027,0.0,1.3646793746674484,0.0007290646563109351,0.03668838748862017,0.7117425995494752,2,0.6130500709061933,0.3485758836577834,0.61
+121,13,0.39481785967945376,0.0,1.381273318971055,0.000705938279854163,0.03676079873491534,0.7083357318114416,2,0.6705121281210906,0.4004620494569069,0.605
+121,14,0.520554862514441,0.0,1.284931513726327,0.0006302181136580539,0.03410052117958481,0.727863162887089,2,0.7546890900193048,0.45471227002561443,0.575
+121,15,0.39343724371434213,0.0,1.2738885549164842,0.0006218924000370386,0.0333663327672128,0.7300483035578785,2,0.7735425085322425,0.4089912190935243,0.5549999999999999
+121,16,0.3637968641347318,0.0,1.277477412555412,0.0006256434498078754,0.034087185513942235,0.7293389548661385,2,0.7886475262493228,0.35923409982489607,0.5349999999999999
+121,17,0.36216657345535985,0.0,1.3761739858459416,0.0007089889087862253,0.03656987711670835,0.7093868566541776,2,0.8132346524117184,0.3251148170375281,0.5149999999999999
+121,18,0.49051207832814475,0.0,1.2358081157094243,0.0006007588361903261,0.0321549328489215,0.7374952299064734,2,0.8679817595846419,0.38906154157840045,0.5049999999999999
+121,19,0.4072305173290135,0.05,1.2371571342499221,0.0006111203108963824,0.03298958396938272,0.7224446880642841,2,0.8804018961948263,0.3302995122027476,0.4849999999999999
+121,20,0.5716956492677233,0.0,1.264100127974793,0.0006203864288621649,0.0335006245145114,0.7319736263975837,2,0.9697254531501751,0.37430580221720694,0.45499999999999985
+121,21,0.43548935642106656,0.0,1.2693792772125534,0.0006266715986558367,0.03367012870645905,0.7309341797286796,2,0.9769236503028798,0.3118869293835289,0.43499999999999983
+121,22,0.5276376305866473,0.0,1.288476508355502,0.0006329858267340771,0.03414063821202971,0.7271593109476943,2,1.0,0.35879210195549105,0.4249999999999998
+121,23,0.5175579024097651,0.0,1.2882910500614297,0.0006385062784372974,0.0337738847957383,0.7271939137510248,2,1.0,0.3918596746992169,0.4149999999999998
+121,24,0.45298093187686944,0.0,1.2865660638189649,0.0006430823865938427,0.034354188812122446,0.7275341731990833,2,1.0,0.34326977292289823,0.3949999999999998
+121,25,0.5893330024950845,0.0,1.3033944781545357,0.0006481318676956616,0.03412782332566455,0.7241835468054877,2,1.0,0.39777667498361496,0.36499999999999977
+121,26,0.45143573978470275,0.0,1.3118361903934304,0.0006555166781484891,0.035136212134307086,0.7224912362227194,2,1.0,0.3381191326156759,0.34499999999999975
+121,27,0.5191613874506201,0.0,1.3259580050102988,0.000660344630477293,0.03468374402406121,0.7196490206028644,2,1.0,0.3638712915020671,0.33999999999999975
+121,28,0.5439991105774096,0.0,1.31952101194619,0.0006548957555277436,0.03516870233220552,0.7209480660469394,2,1.0,0.4133303685913651,0.32999999999999974
+121,29,0.4579462257605782,0.0,0.8554684779874837,0.0003929538204734841,0.02393951230602092,0.8043560532377948,2,1.0,0.3598207525352607,0.3099999999999997
+121,30,0.4270458815154403,0.0,1.223121458240425,0.0005869921036751752,0.03236315062383387,0.7399492036377653,2,1.0,0.32348627171813454,0.2899999999999997
+121,31,0.534044988322873,0.0,1.237083450836433,0.0005917002338542374,0.032760802173491296,0.7372517648632345,2,1.0,0.3801499610762433,0.2799999999999997
+121,32,0.5311080476083263,0.0,1.25443008138684,0.0006222537819044128,0.03374881155107653,0.7338657855034129,2,1.0,0.4036934920277543,0.2749999999999997
+121,33,0.5135513787284391,0.0,0.846030425517165,0.0003929836889756625,0.02386375150466641,0.8058370204613939,2,1.0,0.4118379290947973,0.2699999999999997
+121,34,0.4599891083603866,0.0,0.8819564832427951,0.00041342300429375844,0.02469217451426462,0.8001475287099933,2,1.0,0.3666303612012887,0.2499999999999997
+121,35,0.5473723821380276,0.0,1.286809147271001,0.0006339254452824281,0.03359090619400793,0.727489615253289,2,1.0,0.42457460712675865,0.23999999999999969
+121,36,0.4629837395735738,0.05,0.8741450532272372,0.000414009929665847,0.024522532086303405,0.7891861864240647,2,1.0,0.3766124652452461,0.2199999999999997
+121,37,0.4342108095540139,0.0,1.3292923903145764,0.0007090960734585792,0.03597008926050202,0.7189561007263241,2,1.0,0.3473693651800466,0.1999999999999997
+121,38,0.41626054724604766,0.0,1.3382797614427744,0.0007029946840620719,0.03592787094257511,0.7171390354913759,2,1.0,0.2875351574868257,0.17999999999999972
+121,39,0.5717116706302288,0.0,1.3473790049932173,0.000698351096741703,0.03597769203075919,0.7152914981106612,2,1.0,0.33903890210076265,0.14999999999999972
+121,40,0.5363572975140283,0.0,1.3397214202962215,0.0006956048524533584,0.03555848478538591,0.7168495024782539,2,1.0,0.3878576583800944,0.1399999999999997
+121,41,0.45361943938683214,0.0,1.3431033826865775,0.0007105456431997451,0.036197959411562675,0.7161564669609505,2,1.0,0.34539813128944047,0.1199999999999997
+121,42,0.5863621323240744,0.0,1.3511543929960683,0.0007050654028805645,0.03583014122195959,0.7145192782570315,2,1.0,0.3878737744135815,0.0899999999999997
+121,43,0.5307496900594109,0.0,1.343551108627795,0.0007028270588915838,0.036326522230324856,0.7160685846528361,2,1.0,0.402498966864703,0.0849999999999997
+121,44,0.5576802738459055,0.0,0.8674629486736171,0.000414478569951509,0.02469696019799067,0.8024547974116906,2,1.0,0.4589342461530183,0.0749999999999997
+121,45,0.6249769038725819,0.0,0.9015139157750095,0.0004905778256914602,0.026360382486036532,0.7969767381246118,2,1.0,0.516589679575273,0.04499999999999971
+121,46,0.6189564753298679,0.05,0.8803512203890663,0.00046666025229773564,0.025773288098984454,0.7881342224658386,2,1.0,0.5631882510995598,0.014999999999999708
+121,47,0.6330273292957757,0.05,0.8782289244557092,0.0004600941852010811,0.02560149168605147,0.7884905740091831,2,1.0,0.6100910976525857,0.0
+121,48,0.6010675128276516,0.05,1.2325036650454808,0.0007027717956723013,0.0341007865309155,0.7233401465665219,2,1.0,0.6368917094255054,0.0
+121,49,0.6286362231507079,0.0,1.2342229673731957,0.0006959543145071193,0.03407866956487753,0.7377651599205343,2,1.0,0.6954540771690262,0.0
+122,0,0.20730318108250428,0.0,1.3641612560051022,0.0006942948551982987,0.03605395858203914,0.7118631514953409,1,0.13558467751338374,0.2661618131760667,0.0
+122,1,0.231831999833273,0.0,1.364555183966149,0.0006965492384169471,0.0363651672469685,0.711781419644176,1,0.2011586632592432,0.3380882256417929,0.0
+122,2,0.24715040091564705,0.0,1.3799167332429934,0.0006956803068551309,0.03639551501564722,0.7086201541702069,1,0.2536775112948254,0.36121090654152715,0.05
+122,3,0.3085273204104091,0.0,1.3789192874480476,0.0006949841165525657,0.036503295785513645,0.7088263489271731,1,0.2953630420317237,0.41716751899768595,0.05
+122,4,0.3278558542589314,0.0,1.3855715912709314,0.0006998907459985384,0.036762325994138687,0.707449433709496,1,0.3533247477926192,0.48064064177171556,0.060000000000000005
+122,5,0.34813186999557,0.0,1.3857034614317765,0.0007004163737830765,0.03677062185340867,0.7074219229055551,1,0.41173237795379897,0.546751792372468,0.07
+122,6,0.4269163280717095,0.0,1.3727169675151865,0.0007128482606775368,0.03664962119804034,0.7100974404997887,1,0.4639565299572471,0.6151051419555766,0.07
+122,7,0.43955430585483524,0.0,1.382032031637412,0.000699914499134073,0.036542747874254114,0.7081814496285225,1,0.5150774164817498,0.6642573669540761,0.08
+122,8,0.4903893931607887,0.0,1.3800029783647132,0.0006996310276171817,0.03628755120183058,0.7086007146290405,1,0.5665301441172623,0.7070128090658231,0.08
+122,9,0.5086814699414705,0.0,1.3807305562889778,0.0007030210481672221,0.036572707901753904,0.7084490569545149,1,0.6253702026154464,0.7660063300868809,0.08
+122,10,0.5243686850831221,0.0,1.3331800752701537,0.0007445335138270786,0.036520780108024356,0.7181555483143991,1,0.6641750583735929,0.8063580488412152,0.13
+122,11,0.5945180684163259,0.0,1.3616742009203555,0.0006858514073597541,0.03610622938349048,0.7123764724819209,1,0.7271760445535823,0.8666881760752404,0.13
+122,12,0.5126861296216383,0.0,1.357631208208665,0.0006818971909402627,0.035819824455428355,0.713205772276468,1,0.7503633933413598,0.8335298065072082,0.19
+122,13,0.5774155569992678,0.0,1.360201687457942,0.0006856829258716415,0.0358386291939578,0.7126781595653463,1,0.7768229392959636,0.8517584274856023,0.24
+122,14,0.6472012058900805,0.0,1.3580479324271966,0.0006867095117491173,0.036003169504512274,0.7131185575477287,1,0.8420281251906585,0.9083045402445,0.24
+122,15,0.6645780313549141,0.1,0.45252773736936563,7.222232608026622e-05,0.01030913942655496,0.8412192246537468,1,0.8944083794666986,0.9717836618052322,0.25
+122,16,0.6085204312421961,0.15000000000000002,0.5491573825941582,0.00012180158344346593,0.013421454981584775,0.816917167160817,1,0.9363185553241278,0.936029789595838,0.31
+122,17,0.593874325952995,0.15000000000000002,0.5543722486675169,0.00012345456345644153,0.013505849818210297,0.8161354280298381,1,0.9745031142965769,0.909327453163977,0.37
+122,18,0.7054679254039129,0.15000000000000002,0.9554865230642798,0.00039689344373775823,0.025583144751023013,0.7481405542354231,1,1.0,0.9848930846797097,0.38
+122,19,0.7,0.2,0.9881863413111743,0.00041521611502386217,0.026123726464936235,0.727303266391827,1,1.0,1.0,0.43
+122,20,0.6799999999999999,0.2,1.0346945688103648,0.0004887000792989696,0.028245434240161543,0.7179525236172156,1,1.0,1.0,0.48
+122,21,0.6333730686695731,0.2,1.0605257284528955,0.0005541637776428297,0.029570970052070746,0.7126656680026927,1,1.0,0.9445768955652437,0.54
+122,22,0.6891883902677389,0.15000000000000002,1.0438516361408512,0.0005378869201236628,0.02899367870204032,0.731072850454574,1,1.0,0.963961300892463,0.5900000000000001
+122,23,0.6242087206353287,0.2,1.0529978540201357,0.0005986312630319375,0.030236879622040774,0.7141865512249135,2,1.0,0.9140290687844291,0.6500000000000001
+122,24,0.7598456099022908,0.1,1.3301191933869339,0.0006812303514348593,0.035531423499839405,0.6875131022135574,2,1.0,0.9661520330076362,0.6200000000000001
+122,25,0.7091971889779709,0.1,1.3380225190475705,0.0006784968784675206,0.03549654935289594,0.6858138277253752,2,1.0,0.9973239632599032,0.6150000000000001
+122,26,0.77,0.0,1.3323568153576124,0.0006763851510388625,0.03510769465415746,0.7183497297414045,2,1.0,1.0,0.5850000000000001
+122,27,0.72,0.0,1.3389315665742223,0.0006739837401539597,0.0353655862568766,0.7170185706524035,2,1.0,1.0,0.5750000000000001
+122,28,0.6340045040749238,0.0,1.3367683718854508,0.0006716102370665107,0.035484187473766984,0.7174582453640899,2,1.0,0.9466816802497462,0.555
+122,29,0.7024456718321564,0.0,1.3435420074700448,0.0006801534689713194,0.03560457184132286,0.7160796546518762,2,1.0,0.9748189061071884,0.55
+122,30,0.69,0.0,1.338034074871153,0.0006781155929008193,0.03529322334838057,0.717198962803653,2,1.0,1.0,0.545
+122,31,0.69,0.0,1.3319847388638237,0.0006756654935022561,0.03533330452853587,0.7184252945644101,2,1.0,1.0,0.54
+122,32,0.72,0.0,1.3252624448725603,0.000672767312821949,0.034882746253794596,0.7197843202599306,2,1.0,1.0,0.53
+122,33,0.633957876784102,0.0,1.3237139424926394,0.0006697219199297492,0.03534965983578383,0.7200977665393425,2,1.0,0.9465262559470067,0.51
+122,34,0.7006696673243779,0.0,1.3308207476111975,0.0006810478127802828,0.0353775193595467,0.7186585224522078,2,1.0,0.9688988910812596,0.505
+122,35,0.6310429992085616,0.0,1.3243675863921616,0.0006789268540069689,0.03547824390109005,0.7199622893817781,2,1.0,0.9368099973618718,0.485
+122,36,0.72,0.0,1.3299451075635413,0.0006917141048373722,0.035609683508432535,0.7188312212836395,2,1.0,1.0,0.475
+122,37,0.7,0.0,1.3284398132285673,0.0006860921603982406,0.035388019671118556,0.719137631471032,2,1.0,1.0,0.46499999999999997
+122,38,0.77,0.0,1.3258870805291256,0.0006808755727030502,0.035335239688674046,0.7196550454708743,2,1.0,1.0,0.43499999999999994
+122,39,0.72,0.0,1.3393128728284018,0.0006798369780948951,0.0351646952323656,0.7169388204130637,2,1.0,1.0,0.42499999999999993
+122,40,0.77,0.0,1.3361066784295215,0.0006757871367563926,0.03538677243952475,0.7175906662764512,2,1.0,1.0,0.3949999999999999
+122,41,0.71,0.0,1.3469955168451617,0.0006773440487408737,0.035482177556150775,0.7153781435214206,2,1.0,1.0,0.3899999999999999
+122,42,0.69,0.0,1.3425080820408022,0.0006755856092635984,0.03566119939400564,0.7162916711744757,2,1.0,1.0,0.3849999999999999
+122,43,0.69,0.0,1.3375375536430436,0.0006735700234294383,0.035415645661262644,0.717301502172191,2,1.0,1.0,0.3799999999999999
+122,44,0.69,0.0,1.331914931042418,0.000671038283425797,0.035542419679601034,0.7184412878199451,2,1.0,1.0,0.3749999999999999
+122,45,0.77,0.0,1.3256311629954993,0.0006679892419881892,0.03505080624445938,0.7197118734190275,2,1.0,1.0,0.34499999999999986
+122,46,0.71,0.0,1.3366697697028223,0.0006692073151695185,0.03552633949119688,0.7174792069314128,1,1.0,1.0,0.33999999999999986
+122,47,0.71,0.0,0.8230552114923109,0.0003699511937816842,0.0229610833426483,0.8094136750187934,1,1.0,1.0,0.34999999999999987
+122,48,0.6367547141731478,0.0,0.8626348055682758,0.0003854929051731375,0.024196326736949908,0.8032282051219074,1,1.0,0.9558490472438259,0.40999999999999986
+122,49,0.6026749310940589,0.0,0.8429885814925491,0.00036665874099216277,0.02326254014593716,0.8063207383003904,1,1.0,0.9089164369801965,0.46999999999999986
+123,0,0.18767619467792668,0.0,1.3646496933673102,0.0006994501019948012,0.036041386804228415,0.7117608405164322,1,0.1429595631951222,0.258801158532113,0.01
+123,1,0.24770478467421997,0.0,1.3640137886270234,0.0006999756361911536,0.03639171727254825,0.7118910678993536,1,0.2131138755111725,0.310383094151032,0.01
+123,2,0.26548039929253286,0.0,1.378954598675662,0.0006950452461255749,0.03636189788070145,0.7088190357005932,1,0.26538436311454255,0.37531957400814325,0.01
+123,3,0.20465005013489213,0.0,1.378877066682294,0.0006949601451522946,0.03650307929666542,0.7088350727546965,1,0.2994807632144747,0.33277261003275327,0.06999999999999999
+123,4,0.27416393080033985,0.0,1.380626444297812,0.0006963788869160884,0.036568840061635896,0.7084733044512177,1,0.32453056211570397,0.3685941135328115,0.12
+123,5,0.22435520386556956,0.0,1.379474401854353,0.0006957188592966852,0.03654070737554527,0.7087114613613599,1,0.3492516805347314,0.3403903855947119,0.18
+123,6,0.3075415474416727,0.0,1.3808771897334005,0.0006974784316336744,0.036541565414607194,0.7084210588172328,1,0.4067913306383567,0.38388193906082635,0.22999999999999998
+123,7,0.25977131103437157,0.0,1.3718195325248734,0.0007006047387480678,0.036290252000650634,0.7102871897415763,1,0.4610864463466472,0.32797018271015016,0.29
+123,8,0.3561715431362798,0.0,1.3758390348072105,0.0006998963702340383,0.03649012770128846,0.7094596528038996,1,0.509178514511852,0.39319687685710536,0.3
+123,9,0.3675342019260689,0.0,1.3746103635260307,0.0007004459732649784,0.0363273183379348,0.7097126230508972,1,0.544711823854262,0.4229502119235905,0.35
+123,10,0.43823815683616474,0.0,1.33180491055625,0.0007646954888257028,0.03634527429649516,0.718425652277794,1,0.6035800791353113,0.489950430462686,0.35
+123,11,0.42928863834953734,0.0,1.3082458194325126,0.0007573994629592917,0.03610700700407001,0.7231697307571513,1,0.6280801749321593,0.5315352570776053,0.39999999999999997
+123,12,0.476508131128517,0.0,1.3126357552808556,0.0007468861408746189,0.03587194904806809,0.7222942435791558,1,0.6778942393303663,0.5974838245429627,0.41
+123,13,0.5333653129022612,0.0,1.3120443627849443,0.0007603786038711018,0.035944067572277784,0.7224074412182506,1,0.7373151062307409,0.6510167524050063,0.41
+123,14,0.5309634413960198,0.0,1.2976594119758451,0.0006716856776632914,0.034612206405706766,0.7253182195964903,1,0.7817116621013107,0.6912145322018706,0.45999999999999996
+123,15,0.5733446721027367,0.0,1.29440095085089,0.0006670731616381818,0.03465144462946006,0.7259687667076637,1,0.8311788086236034,0.7414402969482514,0.47
+123,16,0.5109879972697811,0.05,1.2329841158743307,0.0005839314315687321,0.03178392195905514,0.7232915609792253,1,0.8658023478865526,0.6931905850316258,0.53
+123,17,0.5854014417970631,0.0,1.2302366504409727,0.0005801700216632382,0.032654731220280744,0.7385803659005951,1,0.9096137675860537,0.7234554104731479,0.5800000000000001
+123,18,0.6310580324158337,0.05,1.2461787334561731,0.0005884348183832777,0.03176419072101667,0.7206412005556553,1,0.9584315156797931,0.7853566730930204,0.5900000000000001
+123,19,0.6896853999345177,0.05,1.2596953775686244,0.0006036512773261646,0.03333746533799469,0.7179058030213076,1,1.0,0.8656179997817258,0.5900000000000001
+123,20,0.6696227163544692,0.05,1.2828949760188753,0.0007555565544039251,0.035378093499808944,0.7131216799109468,2,1.0,0.8987423878482308,0.6400000000000001
+123,21,0.6707563858714456,0.0,1.3660584908641384,0.0006871075420530277,0.036029792782549544,0.7114767964858401,2,1.0,0.9358546195714854,0.6350000000000001
+123,22,0.7089893965325854,0.0,1.3627641920854714,0.0006847186728122421,0.03608958955523353,0.7121535501085239,2,1.0,0.9632979884419515,0.6250000000000001
+123,23,0.6210727281167518,0.0,1.3593799583631492,0.0006828443771643032,0.03577712562351881,0.7128475560583069,2,1.0,0.9035757603891731,0.6050000000000001
+123,24,0.5851583914864215,0.0,1.3641712555168766,0.0006852396554673566,0.03596991332996733,0.7118648151491401,2,1.0,0.850527971621405,0.5850000000000001
+123,25,0.7406178116111573,0.0,1.3673019790763339,0.0006877933265632858,0.036288000594949056,0.7112211874433871,2,1.0,0.9020593720371909,0.555
+123,26,0.6892961735939718,0.0,1.3726803148543079,0.0006908713468204293,0.03621380428021326,0.7101140337951832,2,1.0,0.9309872453132396,0.55
+123,27,0.6718017573680006,0.0,1.3708193465330136,0.000689745106418324,0.036317492734700155,0.7104974314898131,2,1.0,0.939339191226669,0.545
+123,28,0.6797275899175851,0.0,1.36857025916679,0.0006886441338940274,0.03612624749468929,0.7109602815240498,2,1.0,0.9657586330586172,0.54
+123,29,0.72,0.0,1.3658363922928918,0.0006874286610153481,0.03611842644211943,0.7115222543734887,2,1.0,1.0,0.53
+123,30,0.7,0.0,1.3632627847263854,0.0006851877024132845,0.03581073675386827,0.7120511400241221,2,1.0,1.0,0.52
+123,31,0.7,0.0,1.3603456671542684,0.0006830127482618003,0.035958021721238145,0.7126497698276432,2,1.0,1.0,0.51
+123,32,0.6375058196747605,0.0,1.3568640962420915,0.0006807090600288736,0.035782045607281356,0.7133631401115635,2,1.0,0.9583527322492016,0.49
+123,33,0.71,0.0,1.3613834522102586,0.0006838557601865648,0.03591117047632604,0.7124368598183883,2,1.0,1.0,0.485
+123,34,0.77,0.0,1.3587781154259952,0.0006831146003306883,0.036061416223777704,0.7129706244688762,2,1.0,1.0,0.45499999999999996
+123,35,0.72,0.0,1.365487468056166,0.0006862461172203027,0.03610943906710251,0.7115943540774723,2,1.0,1.0,0.44499999999999995
+123,36,0.6322300760313033,0.0,1.3622505955750195,0.0006841797675142338,0.036194645250789595,0.7122590421249674,2,1.0,0.9407669201043447,0.42499999999999993
+123,37,0.7046659084351719,0.0,1.3661921213032426,0.0006868017456228691,0.03590040095191839,0.7114494899329401,2,1.0,0.9822196947839065,0.41999999999999993
+123,38,0.6307569489578109,0.0,1.3638367807597929,0.0006859922348471572,0.03604591828300911,0.7119331068240499,2,1.0,0.9358564965260361,0.3999999999999999
+123,39,0.5985324613197305,0.0,1.3666475832818052,0.0006894785227343665,0.036004527953154494,0.7113548803038493,2,1.0,0.895108204399102,0.3799999999999999
+123,40,0.5808484491310693,0.0,1.3682271370693906,0.0006927050241607818,0.03628592501986678,0.7110291178032121,2,1.0,0.8361614971035646,0.3599999999999999
+123,41,0.7401498844255213,0.0,1.3689174663136021,0.0006955727665383995,0.03624513552469149,0.7108860786671696,2,1.0,0.9004996147517378,0.32999999999999985
+123,42,0.737461374400853,0.05,1.1671420867936817,0.0006743318589831428,0.031898917436727445,0.736238581574819,2,1.0,0.9582045813361769,0.2999999999999998
+123,43,0.72,0.05,1.1966361224148516,0.0006695000576057393,0.03285244728563934,0.730473232086138,2,1.0,1.0,0.2899999999999998
+123,44,0.7,0.05,1.1883575016279198,0.000654568884432142,0.032617129266738314,0.7321058878675627,2,1.0,1.0,0.2799999999999998
+123,45,0.77,0.05,1.179515472342538,0.0006397045772372232,0.03164285911981903,0.7338422908908664,2,1.0,1.0,0.2499999999999998
+123,46,0.6348801966816697,0.1,1.2056556070265498,0.0006354005480279566,0.03286159679205735,0.7136287027340579,2,1.0,0.9496006556055661,0.22999999999999982
+123,47,0.72,0.05,1.215778440125875,0.0006520126317843297,0.03316054066865619,0.7266948143221698,2,1.0,1.0,0.2199999999999998
+123,48,0.71,0.1,1.201022992071376,0.0006352053424188695,0.03277092308074407,0.7145745787123223,2,1.0,1.0,0.2149999999999998
+123,49,0.69,0.1,1.2099423947138543,0.0006524629079346526,0.033211734620575944,0.712744854594407,2,1.0,1.0,0.2099999999999998
+124,0,0.16756937712299286,0.05,1.3656083305284759,0.0007025490620381992,0.03607618765134634,0.6959290326896751,1,0.13457283898280684,0.23489627826336817,0.05
+124,1,0.11536591759389675,0.0,1.3642122229440763,0.0007013953220019343,0.036412309607877606,0.7118497844674465,1,0.1599294631443639,0.197968684977898,0.11
+124,2,0.20898753355103228,0.0,1.3618962080171721,0.0007062332260884405,0.036137199939949696,0.7123226287435683,1,0.2055251376363731,0.25684578459433904,0.12
+124,3,0.22033219741953783,0.0,1.3817258053986685,0.0006978101313887559,0.036623994002879315,0.708245600124201,0,0.24490331518021405,0.282053457021543,0.16999999999999998
+124,4,0.20354994962374365,0.0,1.3857300275188673,0.000699824550875349,0.03677180038538879,0.7074166693180273,0,0.26788289384048714,0.2993031225985772,0.16999999999999998
+124,5,0.24739405728499891,0.0,1.3857935237265062,0.000699989232028042,0.036762026054427785,0.7074034586335646,0,0.3411745124175788,0.32660992646282117,0.22999999999999998
+124,6,0.2575879845323924,0.0,1.3855707189490039,0.0006997090142524153,0.03669629750743202,0.7074496894734292,0,0.4344337110110539,0.31845395226174517,0.29
+124,7,0.2805078260332019,0.0,1.3860323888981128,0.0007003750036568769,0.036612073375554534,0.7073538552492968,0,0.45202102929843974,0.34100155259582676,0.29
+124,8,0.30854823161887324,0.0,1.386229715551414,0.0007002462990275898,0.03648721404958682,0.7073130593859581,0,0.5527867563379579,0.3169095563352933,0.37
+124,9,0.3442128832740284,0.0,1.3857127628229429,0.0007001543123696401,0.03635349314417285,0.7074201062170753,0,0.6249658186197303,0.31824948919040924,0.43
+124,10,0.35962637845822065,0.0,1.3852950572847993,0.0007008415356208371,0.03656730419187838,0.7075062696936745,0,0.7262139030413111,0.2848383746458726,0.51
+124,11,0.3877926955864977,0.0,1.3848682011855704,0.0007012984430764427,0.036642208954890385,0.7075944068875893,0,0.7508942449613775,0.3165990328333854,0.52
+124,12,0.4138780657317713,0.0,1.3856864852069057,0.0007007977735732847,0.03676028845538026,0.7074252786865479,0,0.8191678072706434,0.3238977772901538,0.5800000000000001
+124,13,0.4334638730372825,0.0,1.384471220067053,0.0007016921616353803,0.036765127851699955,0.7076763744250925,2,0.9254413194767088,0.2985313707347814,0.66
+124,14,0.4948383509718232,0.0,1.2960792211169954,0.0006579653739758491,0.034470497149356946,0.7256383947007917,2,0.9617355008691304,0.3274364188920919,0.655
+124,15,0.5339449991607799,0.0,1.2918635321758778,0.0006544347574753928,0.034431333111760866,0.7264782891824277,2,1.0,0.3798166638692662,0.645
+124,16,0.527977793564422,0.0,1.2866288147897418,0.0006534910866449756,0.03410599636347768,0.727517607276359,2,1.0,0.4265926452147401,0.635
+124,17,0.5502127170782559,0.0,0.8658154814145325,0.0005534611533690181,0.025815787758656256,0.8026718024635575,2,1.0,0.46737572359418655,0.63
+124,18,0.6302637568770497,0.0,0.8563364854865307,0.0005411417219025158,0.02530263084589097,0.8041727523345201,2,1.0,0.5342125229234993,0.6
+124,19,0.5981409369311989,0.05,0.8636767663909893,0.0005739780829397517,0.02626256693599289,0.7908696262531906,2,1.0,0.5938031231039962,0.59
+124,20,0.5175660207576216,0.0,0.9072541491034756,0.0005683844146127637,0.02669038240113955,0.7960210912577262,2,1.0,0.5585534025254054,0.57
+124,21,0.6034499202163502,0.0,0.9154151165259048,0.0005648039200587681,0.02685817146886297,0.7946939493984227,2,1.0,0.6114997340545009,0.5599999999999999
+124,22,0.6711474590250674,0.05,1.1033678506472273,0.000745254576887076,0.03301000223951737,0.7484083924417355,2,1.0,0.6704915300835581,0.5299999999999999
+124,23,0.5383931364559711,0.1,1.099597667085935,0.0007362309732357349,0.032644990924510384,0.7347640988958657,2,1.0,0.6279771215199036,0.5099999999999999
+124,24,0.5058412558465055,0.05,1.1348110376334781,0.0007267958567872825,0.032838780470572856,0.7424487988283727,2,1.0,0.5861375194883517,0.4899999999999999
+124,25,0.6588887476734799,0.0,1.0259064693233126,0.0005712612715959881,0.028781881084530687,0.7760772622063162,2,1.0,0.6296291589115999,0.45999999999999985
+124,26,0.608426763152198,0.05,1.0967667189229013,0.0007285658088028972,0.0325950525694676,0.7496555658879088,2,1.0,0.6614225438406603,0.45499999999999985
+124,27,0.5971443713795689,0.0,1.1188539440005867,0.000726698147351983,0.0330105344406499,0.7594547755117075,2,1.0,0.6904812379318963,0.44999999999999984
+124,28,0.6919232067925264,0.0,1.119326156845872,0.0007180313283871536,0.032546309389017786,0.7593716669065474,2,1.0,0.7397440226417549,0.4199999999999998
+124,29,0.6910396497984173,0.05,1.1065204279371081,0.0007070587185381402,0.03249862476401741,0.7478287249032787,2,1.0,0.8034654993280577,0.3899999999999998
+124,30,0.5770649446673655,0.0,1.328949212993614,0.0007043324439513086,0.03597094114476704,0.7190273620840135,2,1.0,0.7568831488912181,0.3699999999999998
+124,31,0.7145078188533167,0.0,1.011211903154747,0.0006099186029796118,0.0300365320750772,0.7786072131971171,2,1.0,0.8150260628443889,0.33999999999999975
+124,32,0.7097502802624209,0.0,1.3235146358622585,0.0006857500336499448,0.03539001716846026,0.7201314757833553,2,1.0,0.865834267541403,0.3099999999999997
+124,33,0.5970876876325044,0.0,1.0958595218750047,0.0005457160410259463,0.02957817934061958,0.7636957028661142,2,1.0,0.8236256254416813,0.2899999999999997
+124,34,0.662798942441098,0.0,1.0977791474057401,0.0005650671557699535,0.029330658953306256,0.7633421115941743,2,1.0,0.842663141470327,0.2849999999999997
+124,35,0.58093372967186,0.05,1.1233774666478735,0.0005713770107230659,0.030316247584393875,0.7446881458818526,2,1.0,0.7697790989062001,0.2649999999999997
+124,36,0.6696945500345188,0.0,1.2961790725316364,0.0006626797913004995,0.03472052369906552,0.725616637852941,2,1.0,0.8323151667817297,0.25499999999999967
+124,37,0.674813808148168,0.05,1.115524973307137,0.0005264464103953894,0.029526627123963943,0.7461952707039031,2,1.0,0.8827126938272271,0.24999999999999967
+124,38,0.6030778592443851,0.05,1.1470819124801965,0.0005461111010430432,0.030125582594921024,0.7401649125283954,2,1.0,0.8435928641479501,0.22999999999999968
+124,39,0.6736137676582361,0.0,1.1518447477152638,0.0005654166830212508,0.030624204896675868,0.7534363596680504,2,1.0,0.8787125588607873,0.22499999999999967
+124,40,0.7485519722401529,0.05,1.1611072841610761,0.0005749769252811053,0.030637412514428402,0.7374472918179006,2,1.0,0.9285065741338432,0.19499999999999967
+124,41,0.6940927455867003,0.1,1.1969316215196801,0.0005831002253988807,0.03175879376997939,0.715429528994108,2,1.0,0.9469758186223343,0.18999999999999967
+124,42,0.7163978323593296,0.05,1.2165945238686156,0.0006017541111110875,0.03261136463702151,0.7265526729537483,2,1.0,0.9879927745310989,0.17999999999999966
+124,43,0.77,0.05,1.1975481209010495,0.0005834457187590172,0.03153610108016765,0.7303275361966789,2,1.0,1.0,0.14999999999999966
+124,44,0.72,0.1,1.2246173897093526,0.0005893290882621517,0.03248260892436537,0.7097569582493201,2,1.0,1.0,0.13999999999999965
+124,45,0.7,0.05,1.2184657237725902,0.0005811190040834496,0.03186520841040489,0.7261889630267376,2,1.0,1.0,0.12999999999999964
+124,46,0.7,0.05,1.1975609920007941,0.0005620950756081478,0.0317356568651206,0.730333411188469,2,1.0,1.0,0.11999999999999965
+124,47,0.7,0.05,1.183096854083554,0.0005479190334274316,0.03065289609391833,0.7331781109606479,2,1.0,1.0,0.10999999999999965
+124,48,0.6332323212473734,0.05,1.1678967867595362,0.0005331053233890509,0.030731266792102953,0.7361468650905832,2,1.0,0.9441077374912447,0.08999999999999965
+124,49,0.5994147580767895,0.0,1.1764766944625595,0.0005517155523992628,0.030700145251405454,0.7488371257971194,2,1.0,0.8980491935892984,0.06999999999999965
+125,0,0.17084056493112262,0.0,1.3632489354583541,0.0007015360619307585,0.03600399152802105,0.7120472756344903,1,0.1439687616438586,0.23483832785257372,0.05
+125,1,0.11125693120050613,0.0,1.3627318220849927,0.0007002382070321487,0.03640056092476182,0.712153822937365,1,0.15108966044382238,0.19458516681722768,0.11
+125,2,0.18754756438059428,0.0,1.360144506905831,0.0007147377698257511,0.03628828881061633,0.7126779693080293,1,0.19468326332973657,0.23136140738395497,0.16
+125,3,0.14127359631466396,0.0,1.362732888071408,0.000700237810843613,0.036215244142387935,0.7121536045823851,1,0.23966285835229678,0.19130531963786707,0.22
+125,4,0.2653132884652707,0.0,1.348869784764184,0.0007097135588267395,0.03618430142037917,0.7149831731218255,1,0.313156120970555,0.2523621537519214,0.22
+125,5,0.2542440623974221,0.0,1.3854825159789108,0.0006997085242643774,0.0367521468295801,0.7074679442369615,1,0.34868359505554697,0.2740160137599355,0.27
+125,6,0.25204540978136863,0.0,1.3852530353849064,0.0006994620458489749,0.03668069550198341,0.7075155366141626,1,0.38017877350748214,0.29660946351249984,0.32
+125,7,0.27823242784252794,0.0,1.3849336529646439,0.0006992317997591803,0.03658874529656698,0.7075817196502582,1,0.42144455184476126,0.33575611565620506,0.37
+125,8,0.3704139637042606,0.0,1.3647315586374005,0.0007289826140576838,0.03631329419285244,0.7117319267684,1,0.4771180560519487,0.41140881362026177,0.37
+125,9,0.3906381800430567,0.0,1.2920925843395143,0.0007748282133580825,0.03634240411419979,0.7263849186609518,1,0.536310080030145,0.47643217344168687,0.37
+125,10,0.33026788720831335,0.0,1.2857339543524422,0.0007736104730295229,0.03556728326493454,0.7276473573560412,1,0.5608014694723198,0.44662457631000485,0.43
+125,11,0.4257678887888453,0.0,1.300755955004984,0.0007602582879240028,0.03621571261486298,0.7246655162563423,1,0.6200604449096673,0.49582244356820604,0.44
+125,12,0.44541927908944073,0.0,1.3116607444631305,0.0007604197290027902,0.03602907249188291,0.722484347036439,1,0.6875459899434845,0.5492606086974041,0.45
+125,13,0.4795294485575877,0.0,1.310143079320056,0.0007716651249858839,0.03610556585260388,0.7227840308168649,1,0.741006488728184,0.6005905916757446,0.46
+125,14,0.5056955200523898,0.05,1.1717536463497464,0.0005968111589267252,0.03176284617791626,0.7353722537380095,1,0.7742120693845124,0.6157376525593686,0.51
+125,15,0.5063899461880996,0.05,1.186311191130664,0.0006093798805560473,0.03201334940979863,0.732524741983028,1,0.8193350512912074,0.6320755941205903,0.56
+125,16,0.5891281100706245,0.0,1.2778332275412303,0.0006378350311983002,0.033095924373748635,0.7292638958224337,1,0.8628306937806777,0.6904578908246242,0.56
+125,17,0.6148916933231965,0.0,1.2725790211920973,0.0006423569061870926,0.034222651332251344,0.7302982443793952,1,0.9266425886759847,0.7685559576220063,0.56
+125,18,0.6459783790575744,0.0,1.2704974480700715,0.0006485507081981955,0.03321646105618107,0.7307056025207496,1,0.9716973522102617,0.8196143526132764,0.56
+125,19,0.672903766492063,0.05,1.24589874315066,0.0008613165679394763,0.03638368044041107,0.7205876926338026,1,1.0,0.8763458883068767,0.56
+125,20,0.6850426490251005,0.0,1.2726950346938963,0.0008345889295999128,0.03653496477440352,0.7301996575998361,1,1.0,0.9168088300836686,0.56
+125,21,0.609262448781827,0.0,1.287486376264578,0.0008200764478290175,0.036590057893229694,0.7272814976628763,2,1.0,0.8642081626060901,0.6200000000000001
+125,22,0.6972668516034167,0.0,1.2797063639181607,0.0006972445955313723,0.03471523064108752,0.7288704284197469,2,1.0,0.9242228386780558,0.6100000000000001
+125,23,0.6890029448907917,0.0,1.2757426987336893,0.0006891433451508436,0.03458347779092315,0.7296562064314019,2,1.0,0.9633431496359728,0.6000000000000001
+125,24,0.6226085316952823,0.0,1.2712044798846365,0.0006808850682362863,0.03385181570429309,0.7305537241737285,2,1.0,0.9086951056509411,0.5800000000000001
+125,25,0.7563133531541932,0.0,1.2744184979342654,0.0006915251344368882,0.03487227195606071,0.7299163971341965,2,1.0,0.9543778438473108,0.55
+125,26,0.6173691716833672,0.0,1.2955907323904492,0.0006857992537674951,0.034272280654411943,0.725724555449017,2,1.0,0.8912305722778909,0.53
+125,27,0.6927036336659576,0.0,1.2972174563993,0.0006944222243655087,0.03537624733715169,0.7253972044184719,2,1.0,0.9423454455531921,0.525
+125,28,0.7170821775357363,0.0,1.2946551736045042,0.0006992086301120988,0.03429578697020071,0.7259054016129285,2,1.0,0.9902739251191213,0.515
+125,29,0.6295339964399109,0.0,1.290561575408313,0.000690846051417889,0.03509365924701726,0.7267224594653733,2,1.0,0.9317799881330368,0.495
+125,30,0.7645103940182544,0.0,1.291874097417538,0.0006996766263854156,0.03475730994961428,0.7264582095242823,2,1.0,0.9817013133941814,0.46499999999999997
+125,31,0.7092569669068246,0.0,1.3114805503239222,0.0006938371189293583,0.03513932393595541,0.722547171431666,2,1.0,0.9975232230227489,0.45999999999999996
+125,32,0.6350965503471577,0.0,1.3089054943499858,0.0006982105469217849,0.0353634043779293,0.7230613525507372,2,1.0,0.9503218344905259,0.43999999999999995
+125,33,0.7698854861894716,0.0,1.3094681137261965,0.000705839599393035,0.03496069492366454,0.7229456213497053,2,1.0,0.9996182872982388,0.4099999999999999
+125,34,0.71,0.0,1.3268523476790517,0.0007001527157799629,0.035913786975132055,0.7194524781808467,2,1.0,1.0,0.4049999999999999
+125,35,0.69,0.0,1.3241771429429836,0.0007035610648143618,0.03519560941623974,0.7199907517257114,2,1.0,1.0,0.3999999999999999
+125,36,0.6327340617506481,0.0,1.3212032166391952,0.0007061984732647784,0.035888248773896944,0.7205888529006749,2,1.0,0.9424468725021601,0.3799999999999999
+125,37,0.5934735918903356,0.0,1.3215474395018476,0.0007138336280450725,0.03519203569968685,0.7205164666053259,2,1.0,0.8782453063011185,0.3599999999999999
+125,38,0.5796205696669303,0.0,1.3211117991807662,0.0007201708054595536,0.03587892067532112,0.7206016323695085,2,1.0,0.8320685655564345,0.33999999999999986
+125,39,0.6819973795504786,0.0,1.320154733748382,0.0007255579871256325,0.03555352188878731,0.7207921140281002,2,1.0,0.8733245985015954,0.32999999999999985
+125,40,0.679751320019197,0.05,1.0449666533722468,0.0004456749936202015,0.027431426133108804,0.7593541642382922,2,1.0,0.8991710667306569,0.32499999999999984
+125,41,0.6736738549242733,0.05,1.0760593440949084,0.00048509964142173133,0.02814675960309972,0.7536120629634239,2,1.0,0.9455795164142446,0.31999999999999984
+125,42,0.7696520728499726,0.05,1.08781817405833,0.0005117163568656438,0.02909908004906603,0.7514122237066001,2,1.0,0.9988402428332421,0.2899999999999998
+125,43,0.6326782388031306,0.1,1.1182570855268326,0.0005360117282681416,0.029685188505189485,0.7311904633607044,2,1.0,0.9422607960104353,0.2699999999999998
+125,44,0.7039705581113171,0.05,1.1557768664208006,0.0005442584627351425,0.03055850186766284,0.7384899187778698,2,1.0,0.9799018603710571,0.2649999999999998
+125,45,0.77,0.1,1.1525035804964556,0.0005553817428653465,0.030540273559239644,0.7243984965032346,2,1.0,1.0,0.2349999999999998
+125,46,0.6305668851449285,0.15000000000000002,1.188066161197781,0.000583521015216515,0.03148297859381828,0.7017754587795316,2,1.0,0.9352229504830952,0.2149999999999998
+125,47,0.6930666489995532,0.10000000000000002,1.218264918286918,0.0005896093725174903,0.03235447614066803,0.711063719239909,2,1.0,0.9435554966651771,0.2099999999999998
+125,48,0.7194920765076793,0.15000000000000002,1.2135580682205664,0.0005944224594693338,0.03193498280464405,0.696408441050119,2,1.0,0.9983069216922646,0.1999999999999998
+125,49,0.77,0.15000000000000002,1.2080036378733006,0.0005888341502590867,0.03174398154227506,0.6975838544863154,2,1.0,1.0,0.1699999999999998
+126,0,0.09089396637053182,0.15000000000000002,1.3649793853740526,0.0007001595317386213,0.036008806927000814,0.663430692136131,1,0.1187120289841476,0.16448252075360054,0.06
+126,1,0.1881615456658836,0.05000000000000002,1.3618871577030158,0.0007051555168415453,0.03640544943781982,0.6967148007148437,1,0.1764006464837101,0.22140439798861694,0.06999999999999999
+126,2,0.12144969885562924,0.05000000000000002,1.3630001954205884,0.000700295734188909,0.03614162436564643,0.6964816153758043,1,0.19186368174649596,0.18099136748118555,0.13
+126,3,0.22674368423526026,0.0,1.3573068746877293,0.0007111409584552679,0.03618332304313062,0.7132601462091336,1,0.25952559443161227,0.25303242061398656,0.14
+126,4,0.28989361230214206,0.0,1.3853975614018383,0.0006996040319070019,0.0367482128256736,0.7074855691252367,1,0.328485046763495,0.3164128197830628,0.14
+126,5,0.19939556721883045,0.0,1.3849916434315486,0.000699458893082826,0.03673750995106809,0.7075696267302384,1,0.35731479816993234,0.24778462619784722,0.2
+126,6,0.3025011480141459,0.0,1.385337290244766,0.0006995468501236374,0.03668719119027421,0.7074980657363732,1,0.41606883225953833,0.32292352241102495,0.21000000000000002
+126,7,0.3609687433143998,0.0,1.3733660370365863,0.0006974484248574158,0.036255339668487305,0.7099701475153823,1,0.48403967755003163,0.37184952057296256,0.21000000000000002
+126,8,0.284326502726538,0.0,1.3734458759502222,0.0006996473799971053,0.03649229871109626,0.709952801790461,1,0.5206090999839931,0.3403777257738013,0.27
+126,9,0.4012120211445387,0.0,1.3771969919269518,0.0006991725022302835,0.03628266253705036,0.7091799606365571,1,0.5745976631372686,0.40034279682164914,0.27
+126,10,0.32136652183067915,0.0,1.371573298175214,0.0007162309560928299,0.03659960248673262,0.7103314265690587,1,0.6026044729630272,0.36818318764539876,0.33
+126,11,0.30066261810027,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,1,0.6260155965138928,0.3385238644013585,0.39
+126,12,0.43967800131981377,0.0,1.3575028291995028,0.0007074305425989175,0.03609099821838985,0.7132215857298654,1,0.6873462126204768,0.39702275634215634,0.39
+126,13,0.35244442518751423,0.0,1.3581269800345779,0.0007156210530704511,0.036434596805435204,0.7130905556594443,1,0.7047961089966033,0.3525526234623436,0.45
+126,14,0.3410969310638674,0.0,1.3647515329986666,0.0007112049054499036,0.036439114435092256,0.7117351235167333,1,0.7545423619057076,0.3233570146562327,0.51
+126,15,0.43778300740953396,0.0,1.3696463420869571,0.0007077180184283618,0.03643754746523836,0.7107312580319686,1,0.7963896603184876,0.36348875432687777,0.56
+126,16,0.4917756167256556,0.0,1.3710602338897862,0.0007039287682497216,0.036466970657523856,0.7104420451319321,1,0.8649181113212516,0.4301809258773919,0.5700000000000001
+126,17,0.5080804224834495,0.1,0.5888927234011968,0.00015956789882111015,0.01498916916388926,0.822121599354567,1,0.924476482900583,0.48171217822748497,0.5800000000000001
+126,18,0.4651691895856178,0.15000000000000002,0.6784317033406029,0.00022489992013163712,0.01794591078573896,0.7967523144204646,2,0.9557052787507736,0.43557447340949024,0.6400000000000001
+126,19,0.43599732899889504,0.10000000000000002,1.0130551453667211,0.0006454905429476336,0.029544859466554517,0.7513179715668549,2,0.9682322387946217,0.39038681806925823,0.6200000000000001
+126,20,0.547849309685997,0.10000000000000002,1.1461742157446566,0.000563641189838825,0.030715729961481707,0.7256570395785198,2,1.0,0.42616436561999005,0.6100000000000001
+126,21,0.5393254662154691,0.15000000000000002,0.9958454386806808,0.0006476061527384369,0.029378834236476848,0.740363623615832,2,1.0,0.46441822071823036,0.6000000000000001
+126,22,0.47633884689728834,0.15000000000000002,1.0289495441724517,0.0006587682076158194,0.029727804029633674,0.7339453670700582,2,1.0,0.42112948965762786,0.5800000000000001
+126,23,0.565198464699762,0.10000000000000002,1.0465783730310703,0.0006535601922183791,0.030762560622305757,0.7449988284914344,2,1.0,0.4839948823325399,0.5700000000000001
+126,24,0.6322449704727259,0.15000000000000002,1.0618535196118897,0.0006667212209542576,0.030166307486591354,0.7274678145340171,2,1.0,0.5408165682424197,0.54
+126,25,0.5840688763460045,0.2,1.062523700820385,0.0006671542318688712,0.031069930074762588,0.7122100464186544,2,1.0,0.580229587820015,0.535
+126,26,0.6109304596881434,0.15000000000000002,1.0665922905831384,0.0006640889253018378,0.031231634324650016,0.7265283473749502,2,1.0,0.6364348656271448,0.525
+126,27,0.6831843154813172,0.15000000000000002,0.9543126641466335,0.0005351542896281952,0.027884439089432733,0.7483095984859378,2,1.0,0.7106143849377241,0.495
+126,28,0.679209132623985,0.2,0.9374695311367891,0.0005163736387098853,0.027367487331696565,0.7372061573538241,2,1.0,0.7640304420799501,0.46499999999999997
+126,29,0.6942640465216101,0.2,0.9355776130891298,0.000510875123521579,0.02686133452503838,0.73757464881323,2,1.0,0.8142134884053671,0.43499999999999994
+126,30,0.6662179964309644,0.15000000000000002,1.3202552461306534,0.0007795140768922278,0.03650024807336196,0.6733081494588383,2,1.0,0.8540599881032146,0.42999999999999994
+126,31,0.5901056384008065,0.10000000000000002,1.31326357095393,0.0007865209857801893,0.03626198921982565,0.6910778948867142,2,1.0,0.8003521280026884,0.4099999999999999
+126,32,0.555146284527853,1.3877787807814457e-17,1.3070544634319887,0.0007970092822177053,0.03662449994333762,0.7233923199293364,2,1.0,0.7504876150928436,0.3899999999999999
+126,33,0.7140674995993945,0.0,0.7665999269741952,0.00034173362190096366,0.02212711458395849,0.8179792988082872,2,1.0,0.8135583319979818,0.3599999999999999
+126,34,0.708003304255043,0.0,1.3083730849335562,0.0007799101553562764,0.03612360539892385,0.7231352384111858,2,1.0,0.8600110141834768,0.32999999999999985
+126,35,0.693227251173421,0.0,1.0759869701701528,0.0005346521315106946,0.029066709215350216,0.7672671337486431,2,1.0,0.9107575039114032,0.31999999999999984
+126,36,0.7590977190961553,0.0,1.061397044930301,0.0005194459013070252,0.027942748225139986,0.7698676543436292,2,1.0,0.9636590636538511,0.2899999999999998
+126,37,0.705579892373426,0.05,1.0914577003577741,0.0005250182543308307,0.029180033282488367,0.7507267893195031,2,1.0,0.9852663079114203,0.2849999999999998
+126,38,0.77,0.0,1.106582773703615,0.0005541551054161373,0.029789120352415533,0.7617520037468488,2,1.0,1.0,0.2549999999999998
+126,39,0.72,0.05,1.1262695859690641,0.0005562633070926845,0.03033407350648028,0.7441436399923161,2,1.0,1.0,0.24499999999999977
+126,40,0.7,0.0,1.1220083216322452,0.0005481827080711304,0.03008818597496086,0.7589433763685615,2,1.0,1.0,0.23499999999999976
+126,41,0.7,0.0,1.0962678455658637,0.0005293061629657433,0.029297128458918603,0.7636279309977454,2,1.0,1.0,0.22499999999999976
+126,42,0.7,0.0,1.0804513112731164,0.0005147964273756112,0.028836660436104732,0.7664761010863328,2,1.0,1.0,0.21499999999999975
+126,43,0.7,0.0,1.0639750758557915,0.0004996424114733165,0.0280525004263526,0.7694176100385942,2,1.0,1.0,0.20499999999999974
+126,44,0.77,0.0,1.0468781742528126,0.000483912142925542,0.02800182370769002,0.7724423915160403,2,1.0,1.0,0.17499999999999974
+126,45,0.6354641641999665,0.05,1.0792563258908408,0.0005010789622785783,0.028253668542327352,0.7530120194742104,2,1.0,0.9515472139998888,0.15499999999999975
+126,46,0.7181286728654821,0.0,1.1192292312863037,0.0005135641382783804,0.029286703618467896,0.7594640887128489,2,1.0,0.9937622428849405,0.14499999999999974
+126,47,0.7,0.05,1.0895164764247347,0.0004894654721066348,0.028459339559044207,0.7511031787351508,2,1.0,1.0,0.13499999999999973
+126,48,0.7,0.05,1.0844519550651195,0.0004825855449652052,0.028264798397701536,0.7520513380521415,1,1.0,1.0,0.12499999999999974
+126,49,0.6393674266778144,0.1,0.3094476227402332,3.084817430342041e-05,0.006568669154911741,0.8594211670349632,1,1.0,0.964558088926048,0.18499999999999972
+127,0,0.1977164103540407,0.0,1.36439818698461,0.00070016122433994,0.0359975830646781,0.7118121443973492,1,0.17028901920445688,0.260384178774936,0.01
+127,1,0.216807146735475,0.0,1.3617560911697135,0.0007010454772846746,0.03638931833697705,0.71235346651426,1,0.21663424320900826,0.336617205374407,0.02
+127,2,0.24717528781538498,0.0,1.3854161479436105,0.0006996240861534898,0.03662427506326821,0.7074817143299356,1,0.2680127142658889,0.3779027927410796,0.03
+127,3,0.207384937660699,0.0,1.3856690275288512,0.0007000262035382096,0.03672663814789905,0.7074292113607007,1,0.30700860913529704,0.3331064148778167,0.09
+127,4,0.18275663247503468,0.0,1.385902459976509,0.0006999877209872884,0.0367700053497583,0.7073809107101149,1,0.3355090926456981,0.28442816683013444,0.15
+127,5,0.3248154142899413,0.0,1.3859848587569372,0.0006999657720244364,0.036766400654135584,0.707363863521783,1,0.4078275477789633,0.34025257522434726,0.15
+127,6,0.2479630921727134,0.0,1.376044434512727,0.000703032594068515,0.03647125826971406,0.7094160195968581,1,0.44894331382924557,0.3027764411082582,0.21
+127,7,0.3471136595229754,0.0,1.3790444991693387,0.0007022218003303292,0.03653104919423969,0.7087975178505882,1,0.5056860125023257,0.3670785171572048,0.22
+127,8,0.406723544956051,0.0,1.3783627268211436,0.0007032449013313019,0.03649276678684914,0.7089377958574486,0,0.5679381196052293,0.4264840103140692,0.22
+127,9,0.37163999896637173,0.0,1.384637693853792,0.0006990616302226197,0.03650773292457177,0.7076430231479697,0,0.6002651238454696,0.43849068540152464,0.23
+127,10,0.36557627538908544,0.0,1.3860454850067456,0.0007001885372788264,0.036539563459957014,0.7073512214892308,0,0.6301506895917529,0.45007844677324005,0.24000000000000002
+127,11,0.40450143049921994,0.0,1.3857169281126533,0.0007003007146062757,0.036682071695960834,0.70741918349371,0,0.7400654022416217,0.4182617990488411,0.32
+127,12,0.436276308223404,0.0,1.3860623419591869,0.0007001162373413198,0.036749624984629956,0.7073477619288289,0,0.7753836891232223,0.44964005676758734,0.33
+127,13,0.46420877033157937,0.0,1.3854673526102639,0.0007000275565019695,0.03676274623609817,0.7074709503420348,0,0.8503916650957482,0.4552389584935588,0.39
+127,14,0.4677768778265315,0.0,1.3818879279813983,0.0007033338140228179,0.036705661749320405,0.7082098160746398,0,0.9288310317653317,0.4422867223622183,0.45
+127,15,0.5015791029793336,0.0,1.3808608550570454,0.0007046218108439588,0.03667554826317735,0.708421481836337,0,0.9655577884125576,0.44544625678312827,0.46
+127,16,0.4974193184947513,0.0,1.3833786931088226,0.0007031219808674278,0.03653399035118367,0.7079017434510843,0,1.0,0.42473106164917107,0.54
+127,17,0.5043554318244611,0.0,1.3824744394047404,0.0007045840084439329,0.03649096836498525,0.7080880826399405,2,1.0,0.414518106081537,0.6000000000000001
+127,18,0.46192729773010993,0.0,1.1212391242230908,0.0007605086790432448,0.032872136642711366,0.7590064047617747,2,1.0,0.3730909924336998,0.5800000000000001
+127,19,0.5303036203759345,0.0,0.8676519412911411,0.00032679523316657996,0.022920830679919187,0.8024526374032256,2,1.0,0.40101206791978183,0.5750000000000001
+127,20,0.6001553028469199,0.05,1.1149492009400954,0.0007629525065266317,0.033110642928068985,0.7462147317440819,2,1.0,0.4338510094897329,0.545
+127,21,0.5970358154786347,0.1,1.1145316269710783,0.0007647444501851041,0.03270790000332894,0.7318323050745115,2,1.0,0.49011938492878254,0.515
+127,22,0.48335025857915326,0.1,1.1138467299891526,0.0007659192081768242,0.0332571140395575,0.7319662363982877,2,1.0,0.4445008619305111,0.495
+127,23,0.5687816327290373,0.05,1.1300131693390576,0.0007594026048946714,0.033302104877260874,0.7433527314748255,2,1.0,0.49593877576345746,0.485
+127,24,0.5580551312505052,0.1,1.132951882953161,0.0007798822196349424,0.033836893215420834,0.7281958670309131,2,1.0,0.5268504375016841,0.475
+127,25,0.4908879413588619,0.1,1.1421828581395224,0.0007980661632268137,0.033927869865704216,0.7263577388347033,2,1.0,0.4696264711962064,0.45499999999999996
+127,26,0.6288595008773447,0.05,1.1603881730661114,0.0007896119244449552,0.033705949218659936,0.7375034066361452,2,1.0,0.5295316695911488,0.42499999999999993
+127,27,0.4963638063109653,0.1,1.1508452066438926,0.0007916368909668948,0.03402630065197977,0.7246351855940903,2,1.0,0.4878793543698846,0.4049999999999999
+127,28,0.46020108006044735,0.05,1.1758414757284272,0.0007803473188823634,0.03364039893632851,0.7345044217644312,2,1.0,0.43400360020149126,0.3849999999999999
+127,29,0.5492405021660391,0.0,1.1926833428820238,0.0007703518286954864,0.03436490363364721,0.7456937897719779,2,1.0,0.4641350072201307,0.3799999999999999
+127,30,0.4725317508606911,0.05,1.1870730710196475,0.0007589102573499595,0.03407513350459693,0.7323168182275531,2,1.0,0.40843916953563714,0.3599999999999999
+127,31,0.4359910914437839,0.0,1.214427503768199,0.0007466185993235555,0.03457337409326294,0.7415574591812677,2,1.0,0.35330363814594645,0.33999999999999986
+127,32,0.4291125458922909,0.0,0.9701103820127859,0.0005078944550271967,0.027142032236353576,0.7856453893103805,2,1.0,0.33037515297430314,0.31999999999999984
+127,33,0.5184348040046629,0.0,1.3444153935954624,0.0006779374860869792,0.03558493404583059,0.7159029547775304,2,1.0,0.36144934668220985,0.31499999999999984
+127,34,0.5046333766011478,0.0,1.3410745933502706,0.0006746147283628612,0.03551605974211906,0.7165832857670917,2,1.0,0.3821112553371595,0.30999999999999983
+127,35,0.5144164271614733,0.0,1.3375078363240471,0.0006714965378919241,0.035626780342952157,0.7173083691243343,2,1.0,0.41472142387157795,0.3049999999999998
+127,36,0.5615457551726386,0.0,0.7085959990204981,0.000288210534243747,0.019944413837486685,0.826472073238695,2,1.0,0.4718191839087954,0.2949999999999998
+127,37,0.5575725031116018,0.05,0.7503734355448153,0.00036830326700172786,0.022257289623209126,0.8090563110289773,2,1.0,0.49190834370533926,0.2899999999999998
+127,38,0.6362122331772548,0.05,0.8109353410976541,0.00040541945861133203,0.023898787986222764,0.7995130696340297,2,1.0,0.5540407772575162,0.2599999999999998
+127,39,0.4946390702806904,0.1,0.7900009267917967,0.0003826081780646423,0.022966905334092826,0.7907138774885557,2,1.0,0.482130234268968,0.2399999999999998
+127,40,0.45164633849544156,0.05,0.8387739878008872,0.00039844219650828457,0.024035868115642588,0.7950158068662009,2,1.0,0.40548779498480525,0.2199999999999998
+127,41,0.6043943741782203,0.0,0.850764718617743,0.0003808282241121654,0.023706318444064168,0.8050990174249384,2,1.0,0.4479812472607343,0.1899999999999998
+127,42,0.5728278271992615,0.05,0.8084999818583407,0.0003430069712279558,0.022452580129813937,0.799923131816919,2,1.0,0.5094260906642053,0.1799999999999998
+127,43,0.6358946512352118,0.0,0.866225442960355,0.00044100949061847306,0.02483459128631662,0.802642489490963,2,1.0,0.5529821707840397,0.1499999999999998
+127,44,0.6289261133889965,0.05,0.8239645507054135,0.0003996776802055414,0.023636904625943277,0.7974182954176918,2,1.0,0.5964203779633219,0.1199999999999998
+127,45,0.516330018687552,0.05,0.8232946675147361,0.00039499019769124983,0.023568934131755336,0.7975280022139479,2,1.0,0.5544333956251734,0.0999999999999998
+127,46,0.47840455378633845,0.0,0.8575422772538371,0.00039589489238738766,0.024329286936734938,0.8040285720306397,2,1.0,0.4946818459544617,0.0799999999999998
+127,47,0.6381987900556012,0.0,0.8720757483158329,0.00038215620485862304,0.024118840358090574,0.8017328270063399,2,1.0,0.5606626335186706,0.049999999999999795
+127,48,0.6013056032579005,0.05,0.8490212762392734,0.0003605946376480551,0.023438758604946396,0.7933532115585098,2,1.0,0.6043520108596685,0.03999999999999979
+127,49,0.5146453402549251,0.0,1.2879716945719222,0.0006968069582791844,0.03501839499431925,0.7272341348555645,2,1.0,0.5488178008497505,0.019999999999999792
+128,0,0.21114147105503367,0.0,1.3609794284820507,0.0007018129204280875,0.036012525744856805,0.7125122687086425,1,0.15119911408800124,0.2607392704141107,0.0
+128,1,0.13268666454083305,0.0,1.3607338689403292,0.0007038478844579852,0.03639753676881825,0.7125617325487789,1,0.1760994951137359,0.23683947083675164,0.06
+128,2,0.2058000873754743,0.0,1.3660897048862224,0.0007023462576094354,0.03624268411094289,0.7114641324493595,1,0.20990911492933031,0.27443965716736235,0.11
+128,3,0.21169042566753019,0.0,1.3859934000577925,0.0006999767719238388,0.03673336972188567,0.7073620909134466,1,0.25918546124133374,0.3032517141102113,0.16
+128,4,0.23682702831282967,0.0,1.3859588260105815,0.000699941538554467,0.036769611972839324,0.7073692623096859,1,0.3036334184106795,0.3351844395636394,0.21000000000000002
+128,5,0.32493800668877415,0.0,1.3858193094026665,0.0006999046980055263,0.03676063028539034,0.7073981563823664,1,0.35743340298671045,0.399454385478085,0.21000000000000002
+128,6,0.3169616817977813,0.0,1.3855238125589102,0.0006996366343730005,0.03669610893790971,0.707459427302027,1,0.3849519540581284,0.44076165959145464,0.26
+128,7,0.3160217509554627,0.0,1.3840085815866747,0.0007019805943009304,0.03663319351160271,0.707771952180016,1,0.4236487583122943,0.45914895182053245,0.31
+128,8,0.4002088316529073,0.0,1.372511433935263,0.0007042279029078762,0.03654847025472476,0.7101432984615292,1,0.4712231274029756,0.5176024568728863,0.31
+128,9,0.41842787677867443,0.0,1.3731705050933538,0.0007012494435583192,0.03626271636310661,0.7100088431120695,1,0.5224310157816996,0.585256737516932,0.31
+128,10,0.43407319943131195,0.0,1.3730407903047994,0.0006985380370637857,0.03644083452625248,0.7100366666526242,1,0.5626367299133902,0.6238344798720846,0.36
+128,11,0.5054576221874865,0.0,1.3862943611198846,0.0007001722195526523,0.03667904369526746,0.7072997068701548,1,0.6318357942992076,0.6810503139425461,0.36
+128,12,0.5269511543140393,0.05,1.1591461325836838,0.0006205241200543949,0.031978499363181284,0.7378092092046153,1,0.6784962008120856,0.7649249467660313,0.37
+128,13,0.45828254147079783,0.05,1.1616971443458135,0.0006214016822372415,0.03101458547161292,0.7373150849698947,1,0.6998357850242216,0.7111333890410675,0.43
+128,14,0.42866208244071086,0.0,1.1853047090860294,0.0006202335565699901,0.0322988581340145,0.7471472197265402,1,0.7134421530191564,0.6631910962800206,0.49
+128,15,0.43140921650730746,0.0,1.1993930854625685,0.0006201240920591389,0.031780470072408265,0.744476454623538,0,0.7442642593358825,0.6363890857991621,0.55
+128,16,0.48538640511368103,0.0,1.3852957313964684,0.0006994874589624197,0.03657207136439187,0.7075066906204106,0,0.7622716628573195,0.6619710770453973,0.55
+128,17,0.5087843080969056,0.0,1.3856362441390484,0.0007000263349441465,0.036414316393221714,0.707435996540711,2,0.8539272992901732,0.6330325111511497,0.63
+128,18,0.45918886215932253,0.05,0.6703516736928605,0.00025135473892286584,0.018459609656934127,0.8211481327436885,2,0.8597975903018279,0.5941990185122762,0.61
+128,19,0.6393715893982653,0.0,1.1873217938317355,0.0007602662822688126,0.03409094960645723,0.7467129997966272,2,0.9311524531709787,0.6448941026280759,0.58
+128,20,0.6295064804244057,0.1,0.6624808386537004,0.0002514236048866699,0.018601206514195653,0.8110759035760821,2,0.9858408774123573,0.7148739111002689,0.57
+128,21,0.6984368549552716,0.1,0.7454609575725658,0.0003524107694771743,0.02172882438414171,0.7979989233439617,2,1.0,0.761456183184239,0.5399999999999999
+128,22,0.6437377775810653,0.15000000000000002,0.7270902908102428,0.00033284986616722364,0.02134070948066645,0.7887228160784044,2,1.0,0.779125925270218,0.5349999999999999
+128,23,0.6688575003936028,0.10000000000000002,0.7852500272964081,0.0003782472906411039,0.023140104307854265,0.7915004356795422,2,1.0,0.8295250013120097,0.5249999999999999
+128,24,0.6647082726480038,0.05000000000000002,1.2747984834234132,0.0008087114014014223,0.035946866528289,0.7147535172268258,2,1.0,0.8490275754933464,0.5199999999999999
+128,25,0.687750940454996,1.3877787807814457e-17,1.2641587473872389,0.0008142176728347416,0.036026690615101616,0.731886062074796,2,1.0,0.8925031348499869,0.5099999999999999
+128,26,0.7494450530289973,0.0,1.2663143137782917,0.0008014428072234938,0.03596464221040162,0.7314678849577493,2,1.0,0.9314835100966576,0.47999999999999987
+128,27,0.715301671248767,0.0,1.2881487301777572,0.0007841701388099759,0.03606862833084272,0.7271643521396614,2,1.0,0.9843389041625568,0.46999999999999986
+128,28,0.71,0.0,1.2926966539121827,0.0007698622568847268,0.035786459223681184,0.7262668179976356,2,1.0,1.0,0.46499999999999986
+128,29,0.6354570369803005,0.0,1.2860464547871806,0.0007709376418771505,0.03583331209213177,0.7275864821866884,2,1.0,0.9515234566010017,0.44499999999999984
+128,30,0.5968570616084261,0.0,1.2849977939139399,0.0007853497801264948,0.035725869167448396,0.7277885713578143,2,1.0,0.889523538694754,0.4249999999999998
+128,31,0.7005773898561788,0.0,1.283089747737322,0.0007970260297277239,0.03605318967056588,0.728161792144344,2,1.0,0.9352579661872626,0.4149999999999998
+128,32,0.6966450864705573,0.0,1.2871059366562214,0.000782212114347977,0.03593089774365758,0.7273719661210095,2,1.0,0.9888169549018578,0.4049999999999998
+128,33,0.7,0.0,1.2892311527818325,0.0007687078782486278,0.035707423807960305,0.7269556889278178,2,1.0,1.0,0.3949999999999998
+128,34,0.7,0.0,1.2898286054144081,0.0007563711750675732,0.035947129610739384,0.7268419825621995,2,1.0,1.0,0.3849999999999998
+128,35,0.71,0.0,1.2892047444533214,0.0007450560135069127,0.0351050890548088,0.7269703198716444,2,1.0,1.0,0.3799999999999998
+128,36,0.6391113797436643,0.0,1.2850171290403083,0.0007484136988004797,0.035813802338124937,0.7277993756849246,2,1.0,0.9637045991455475,0.35999999999999976
+128,37,0.77,0.0,1.284330232378605,0.0007585481230931193,0.035094558052165804,0.7279314195606429,2,1.0,1.0,0.32999999999999974
+128,38,0.6329604453283828,0.05,1.213647740127803,0.0005987159276934739,0.03216492921693574,0.72713893652364,2,1.0,0.943201484427943,0.3099999999999997
+128,39,0.5985475144784096,0.0,1.2370078470802808,0.0006104649501390895,0.032996288873627565,0.737259140234753,2,1.0,0.8951583815946988,0.2899999999999997
+128,40,0.5829789194514008,0.0,1.2437187991943341,0.0006169098347123986,0.03290621904676298,0.7359546013895727,2,1.0,0.8432630648380028,0.2699999999999997
+128,41,0.6952396157052643,0.0,1.2536105215239108,0.0006277540524890375,0.03345043903768218,0.7340236727684113,2,1.0,0.9174653856842141,0.2599999999999997
+128,42,0.6084071424888636,0.05,1.2434075309779096,0.0006163726474413089,0.03238908852011743,0.7211875156157307,2,1.0,0.8613571416295456,0.23999999999999969
+128,43,0.5726502833705247,0.0,1.2569008819064482,0.0006312154997168507,0.033464783660388894,0.7333794379890975,2,1.0,0.8088342779017492,0.2199999999999997
+128,44,0.676690297686321,0.0,1.256946646569815,0.0006394273961769673,0.032514983240705474,0.7333672778526452,2,1.0,0.8556343256210703,0.2099999999999997
+128,45,0.5915909913013396,0.05,1.247687979667116,0.0006277921467016089,0.0335823991291211,0.7203214043265604,2,1.0,0.8053033043377988,0.1899999999999997
+128,46,0.7284178397785708,0.0,1.2567300516325655,0.0006418217666920193,0.033952295933784904,0.7334086923283827,2,1.0,0.8613927992619027,0.1599999999999997
+128,47,0.5921279859622287,0.0,1.2754275228863154,0.0006398649298254497,0.034104460243630286,0.7297378107682071,2,1.0,0.8070932865407625,0.1399999999999997
+128,48,0.6751313864854346,0.0,1.2771820078915628,0.0006486632952342557,0.03403787766570805,0.72938817760518,2,1.0,0.8504379549514487,0.1299999999999997
+128,49,0.7428473289024824,0.0,1.268715153274322,0.0006382322016347432,0.033517526974552105,0.7310602266914268,2,1.0,0.909491096341608,0.0999999999999997
+129,0,0.19760713479318173,0.0,1.3655344892136807,0.0007008586598908004,0.03605641714688159,0.7115787059741094,1,0.15036214625045113,0.28326794535174615,0.01
+129,1,0.21343726242082148,0.0,1.3649002924085052,0.0007014728595797269,0.03641500374701736,0.7117085954980024,1,0.206561921334808,0.3371352998454623,0.02
+129,2,0.2916828874712582,0.0,1.3856169057041985,0.0006997414181287121,0.03663393795566532,0.7074401169441409,1,0.2583063095260525,0.4042522637904661,0.02
+129,3,0.286872665313254,0.0,1.3851223078612307,0.0006999776105085585,0.03669837960425001,0.707542374913734,1,0.3017693906758346,0.43751126192237305,0.07
+129,4,0.3375845013601877,0.0,1.3849060339510304,0.0006995009983933021,0.03675278230765832,0.707587322864475,1,0.36252751102234926,0.5023329083412182,0.08
+129,5,0.35696532937006886,0.0,1.3843201755483512,0.0006994187005259695,0.0367109040210289,0.7077085606678405,1,0.40813836251570546,0.5470563416319064,0.13
+129,6,0.2969303518932959,0.0,1.3797913516374023,0.0006980027367204526,0.036523517956334184,0.7086450829795597,1,0.41997285243156607,0.49979951180749277,0.19
+129,7,0.41964219700476313,0.0,1.3798360857399297,0.0006990885828636086,0.03646057336679965,0.708635398375286,1,0.49011547939297745,0.5603392640574033,0.19
+129,8,0.431055302968955,0.0,1.3788441938180205,0.0006973623151238571,0.036253015736147226,0.7088408657248799,1,0.5383395081986679,0.608788250331404,0.2
+129,9,0.45041409292295287,0.0,1.3783305779289126,0.0007110939467049262,0.03648749241081624,0.7089411903863715,1,0.5909936178996748,0.6785544221935559,0.21000000000000002
+129,10,0.4755670461338527,0.0,1.3767553064140616,0.0007129428985354156,0.03645551910167753,0.7092653679941271,1,0.6251184914125519,0.6892519137981984,0.26
+129,11,0.42263117982526177,0.0,1.340245473954014,0.000743734817144404,0.03630100732780004,0.716723576590817,1,0.656592204387886,0.6427463609650056,0.32
+129,12,0.5404662945682062,0.0,1.3386284717391264,0.0007529008263083786,0.03659178083104987,0.7170480435387854,1,0.719157492397433,0.6958705740970154,0.32
+129,13,0.45665868517092156,0.0,1.3485022878564887,0.000742382117766843,0.036632689862726074,0.7150447439191415,1,0.7377617376004968,0.6614735900358257,0.38
+129,14,0.5588429201965533,0.0,1.170016417057781,0.0006192491183908926,0.03215162982292156,0.7500248984303591,0,0.8024787496823593,0.7265845260257587,0.39
+129,15,0.5210174320812004,0.05,0.9940783015274419,0.0004154909591456428,0.02646163107251841,0.7685409210765797,0,0.8189498339584119,0.7479499673191876,0.4
+129,16,0.559125934282056,0.0,1.0405933630672641,0.0004464537441334331,0.027248410034282307,0.7735583363000212,0,0.9250450538216324,0.7178672181482824,0.48000000000000004
+129,17,0.5759908424953102,0.05,1.0542154004336945,0.000488517100152034,0.02871558004578,0.7576443060213507,0,0.943801740885086,0.7188674439517668,0.49000000000000005
+129,18,0.5753931826580956,0.05,1.094166585733789,0.0005144477791726687,0.029358912087433815,0.750223476497135,0,1.0,0.684643942193652,0.5700000000000001
+129,19,0.5393572274524896,0.05,1.1186202202099789,0.0005686335077146193,0.030557269107526798,0.7455926177237945,2,1.0,0.6311907581749656,0.65
+129,20,0.6265758131844402,0.0,0.8160493578630645,0.0004779459281055741,0.02533604987598837,0.810458901133513,2,1.0,0.6885860439481342,0.64
+129,21,0.689030994490764,0.05,0.8323393467816116,0.0005482195058877317,0.026663802723391406,0.796013805898516,2,1.0,0.7301033149692135,0.61
+129,22,0.6574365124105566,0.1,0.830994035995518,0.0005404019826514749,0.026524178041927908,0.7837957939454046,2,1.0,0.7914550413685221,0.6
+129,23,0.7235001024916805,0.05,0.8750723094628201,0.0006485078504129274,0.028632442471130542,0.78895379628565,2,1.0,0.8450003416389353,0.57
+129,24,0.68728447427655,0.05,1.2500529926950636,0.0007795631017626768,0.034735473071415536,0.7197834853634206,2,1.0,0.8909482475885004,0.5599999999999999
+129,25,0.6824392536706443,0.0,1.2494593014034097,0.00076678331414418,0.035476256388363006,0.7347791556960688,2,1.0,0.9081308455688145,0.5549999999999999
+129,26,0.6099061646254234,0.0,1.2417816444969028,0.0007730758927064742,0.0346050243787848,0.7362702246555575,2,1.0,0.8663538820847445,0.5349999999999999
+129,27,0.6833424292747815,0.0,1.2412722263736573,0.0007833638414965244,0.035596760490283694,0.7363651353058261,1,1.0,0.9111414309159385,0.5299999999999999
+129,28,0.6079595503111579,0.05,1.2062644068250408,0.0008498783230467976,0.03604075379579199,0.7285020471512982,1,1.0,0.8598651677038598,0.5899999999999999
+129,29,0.7090537272474016,0.0,1.203870406635466,0.0008407063835161963,0.035778373230838,0.7435396803260338,1,1.0,0.9301790908246718,0.5899999999999999
+129,30,0.6843943094952829,0.05,1.22044950482008,0.0008221117484518034,0.0357274073581693,0.7256984002239908,2,1.0,0.9479810316509432,0.6399999999999999
+129,31,0.6864155306414607,0.0,1.2534589670646246,0.0007189911725110807,0.03387114375432922,0.7340176361656299,2,1.0,0.988051768804869,0.6349999999999999
+129,32,0.6301589040738135,0.0,1.2512790020881495,0.0007320515351257384,0.0348804363104752,0.7344379315475796,2,1.0,0.9338630135793784,0.6149999999999999
+129,33,0.7167194295796196,0.0,1.2482842009569068,0.0007352876058975631,0.03421120845096594,0.7350203633436938,2,1.0,0.989064765265399,0.6049999999999999
+129,34,0.7,0.05,1.2453493739413524,0.0007243194189800828,0.034845963220218955,0.7207534394102976,2,1.0,1.0,0.5949999999999999
+129,35,0.77,0.05,1.2464365812429756,0.0007139921630695782,0.03430880992182356,0.7205387260169193,2,1.0,1.0,0.5649999999999998
+129,36,0.71,0.05,1.2691094281533457,0.0007050235998707076,0.0342837506183468,0.715954163186532,2,1.0,1.0,0.5599999999999998
+129,37,0.631772287109142,0.0,1.2708790237903973,0.0007160319178548522,0.035117350857182476,0.7306039486554279,2,1.0,0.9392409570304737,0.5399999999999998
+129,38,0.7001976027724743,0.0,1.264388558661404,0.0007206585700782066,0.03489423366993551,0.7318776843799142,2,1.0,0.9673253425749144,0.5349999999999998
+129,39,0.6232692885714572,0.0,1.2653459635382922,0.0007313854078856977,0.034813212208007496,0.731685556691658,2,1.0,0.9108976285715245,0.5149999999999998
+129,40,0.7101267212542204,0.0,1.2628105978814872,0.0007349481012729455,0.034704177267893724,0.7321816145459616,2,1.0,0.9670890708474016,0.5049999999999998
+129,41,0.6321019231521781,0.0,1.2600496399981036,0.0007246509960948995,0.034992179592179234,0.7327267014364012,2,1.0,0.9403397438405937,0.48499999999999976
+129,42,0.5980496065572192,0.0,1.257359316057322,0.0007282140564984373,0.034167738156658814,0.7332518460463555,2,1.0,0.8934986885240639,0.46499999999999975
+129,43,0.6870903876334316,0.0,1.2544655995129093,0.0007310339150446036,0.035071693267875216,0.7338163546485091,2,1.0,0.923634625444772,0.45999999999999974
+129,44,0.6765826867581582,0.0,1.2557775241258688,0.000743220928967778,0.0343508619134581,0.7335552540105525,2,1.0,0.9552756225271943,0.45499999999999974
+129,45,0.6836787354848458,0.0,1.2558897202250077,0.0007538444766380533,0.035417624019777105,0.7335291714660089,2,1.0,0.9789291182828195,0.44999999999999973
+129,46,0.69,0.0,1.2550774621990795,0.0007630928558978253,0.034610456446037226,0.7336842945556996,2,1.0,1.0,0.44499999999999973
+129,47,0.72,0.0,1.2535429072261361,0.0007709030234194983,0.03542843978638623,0.7339809763369808,2,1.0,1.0,0.4349999999999997
+129,48,0.77,0.0,1.2522364775303314,0.0007591659614914727,0.0350284845620085,0.7342405631036544,2,1.0,1.0,0.4049999999999997
+129,49,0.75,0.0,1.2741674038459712,0.000747253150584286,0.035046421949709666,0.7299439242803574,2,1.0,1.0,0.37499999999999967
+130,0,0.1921315302650408,0.0,1.3641446460063227,0.0007021197437285707,0.03610420207552336,0.7118633484502233,1,0.15084960119232282,0.2644472328257594,0.01
+130,1,0.12655665637467234,0.0,1.3633901919793998,0.0007026681335407251,0.03638935306236265,0.712017847842802,1,0.18617246003610247,0.20465431787345495,0.06999999999999999
+130,2,0.20251628454060122,0.0,1.3682782409627232,0.0007013646875955018,0.036297366979634836,0.711015058906176,1,0.23258983456892357,0.23703280813825986,0.12
+130,3,0.1448899095236392,0.0,1.3859946793680786,0.0006999692443248925,0.036736007641566745,0.707361829211357,1,0.24749334545659998,0.19422412871276407,0.18
+130,4,0.24628804743055074,0.0,1.3500259630475175,0.0007293950116201624,0.036512300353742776,0.7147394804608213,1,0.30891202309859556,0.2605627978201411,0.19
+130,5,0.3103079724385355,0.0,1.3854736763607929,0.0006998130633481534,0.03675404466438612,0.7074697303848695,1,0.37236399133184117,0.3332685849079704,0.19
+130,6,0.22944684847006686,0.0,1.3850392526798234,0.0006997858590382582,0.03667618541990698,0.7075596402615046,1,0.40169404842906076,0.2961797717329853,0.25
+130,7,0.2036619296426144,0.0,1.379010901983877,0.0006997711400114004,0.036452509319756785,0.7088054640168332,1,0.4277696541395805,0.24647516897920402,0.31
+130,8,0.29696957369572313,0.0,1.3811109264904644,0.0006995374404757991,0.036468414670206645,0.7083719249419153,1,0.46909261426589693,0.27595719567553073,0.36
+130,9,0.36390472729200857,0.0,1.3582110343512852,0.0007369297647054151,0.03661339666728204,0.7130646388827138,1,0.5198073260525334,0.3399072105787396,0.36
+130,10,0.35101355647511623,0.0,1.3556144289315433,0.0007389360404368463,0.03635272356599718,0.7135947992009044,1,0.5591965506175631,0.3509825458632305,0.41
+130,11,0.35282705148610144,0.0,1.3596977932719394,0.0007322136585565206,0.036686102997144095,0.7127622776090575,1,0.601275157878285,0.3746024874290057,0.45999999999999996
+130,12,0.4213640928063066,0.0,1.2978634824682989,0.0006763930786336464,0.034630873503978116,0.7252756845125142,1,0.6555283283807235,0.4397639262435113,0.47
+130,13,0.4374130003300196,0.0,1.3070688584293353,0.0007839560630711885,0.03626289360747394,0.7233946633341869,1,0.696097757989373,0.4792626167791303,0.52
+130,14,0.4764992066984814,0.0,1.3109968792867353,0.0007721044684086032,0.03629498390141504,0.7226127485803225,1,0.7510122927756884,0.512149680756635,0.53
+130,15,0.5389289885700832,0.0,1.308282767346283,0.0007797104412995296,0.03623139206588345,0.723153400557544,1,0.8134557602381648,0.5807315749557518,0.53
+130,16,0.5482786320983696,0.05,0.7453247875356859,0.0003312514756162613,0.02160507730653607,0.8098464425142271,1,0.8574682223318224,0.6272158476074393,0.54
+130,17,0.47980902211713283,0.05,1.2416562612570674,0.0006626827199617954,0.03371515327730912,0.7215209079864435,2,0.8626674960219798,0.5929179950314666,0.6000000000000001
+130,18,0.5702642793580684,0.0,1.060993113261399,0.0006789010470869477,0.03154496234726876,0.769882717358638,2,0.9324408474761066,0.6130332758047705,0.5950000000000001
+130,19,0.5796418024932705,0.05,0.7632966999440178,0.0004932883765387977,0.024685457309474402,0.8070129649952233,2,0.9885809591576384,0.6454615559603234,0.5900000000000001
+130,20,0.5279049197403444,0.05,0.8181355247628008,0.0005223307380570633,0.026112105303924566,0.7983188048663359,2,1.0,0.5930163991344815,0.5700000000000001
+130,21,0.6009388804153719,0.0,1.0820959319704764,0.0006683442967808991,0.030723782162187362,0.7661265807402489,2,1.0,0.6364629347179066,0.5650000000000001
+130,22,0.6739210210055694,0.05,0.7992849556942536,0.0005047118128364005,0.025507407117463993,0.801342406216977,2,1.0,0.6797367366852313,0.535
+130,23,0.5372934592973518,0.1,0.7987755709730825,0.0004991609540779418,0.02534132761316248,0.7892193223948886,2,1.0,0.624311530991173,0.515
+130,24,0.6232581563316248,0.05,0.8324938056408506,0.0005139056703489435,0.02608951610343871,0.7959998686342817,2,1.0,0.6775271877720829,0.505
+130,25,0.5404601131975562,0.1,0.8468909732758969,0.0005877854516851881,0.027374350276918667,0.7810735440045815,2,1.0,0.634867043991854,0.485
+130,26,0.6242353896603078,0.05,0.8837442045579617,0.0005982692359658391,0.02805419880459613,0.7875230715438472,2,1.0,0.6807846322010261,0.475
+130,27,0.6177890277242027,0.1,0.8933280422135772,0.0006749021110859428,0.029058141704409974,0.7729987931886024,2,1.0,0.7259634257473426,0.46499999999999997
+130,28,0.7033149592595511,0.1,0.9276660421755762,0.0007736098820027375,0.031383866960708925,0.7668817421756443,2,1.0,0.7777165308651706,0.43499999999999994
+130,29,0.6683677103238408,0.15000000000000002,0.9120360440957493,0.0007482572835780438,0.030166699652436995,0.7561096085148244,2,1.0,0.8278923677461363,0.42499999999999993
+130,30,0.5866659615469086,0.10000000000000002,1.1661545274495921,0.0008046327623886289,0.03401329376355208,0.721564674874686,2,1.0,0.7888865384896957,0.4049999999999999
+130,31,0.6565636025376669,0.05000000000000002,0.9439189877826668,0.0009240925805483568,0.03322618433275469,0.7771670316144338,2,1.0,0.8218786751255562,0.3999999999999999
+130,32,0.6440914380965603,0.10000000000000002,1.160318876331264,0.0007907047806061129,0.03451577238314771,0.7227411749589754,2,1.0,0.846971460321868,0.3949999999999999
+130,33,0.5888439406934796,0.10000000000000002,1.1625021728711629,0.0007946382725610114,0.0344198442728849,0.722301881429737,2,1.0,0.7961464689782654,0.3749999999999999
+130,34,0.7255849669146459,0.05000000000000002,0.9964939451946586,0.0008873252882487893,0.03331463320800489,0.7679428082016254,2,1.0,0.8519498897154862,0.34499999999999986
+130,35,0.6854137556676099,0.10000000000000002,1.1567287208879267,0.0007780771526810715,0.033721670873279055,0.7234650702393669,2,1.0,0.8847125188920327,0.33499999999999985
+130,36,0.6822552155250027,0.05000000000000002,1.1585371028054898,0.0007649006334960792,0.03306826158279424,0.7378711609917982,2,1.0,0.9408507184166758,0.32499999999999984
+130,37,0.7057591154423812,0.05000000000000002,1.178768520273982,0.0006515687434836353,0.03254226663325839,0.7339835254558134,2,1.0,0.9858637181412707,0.31999999999999984
+130,38,0.72,0.05000000000000002,1.1836626103446315,0.0006676593264686374,0.0318683817193465,0.7330205545371722,2,1.0,1.0,0.30999999999999983
+130,39,0.77,0.05000000000000002,1.1752472065892325,0.0006521296170860805,0.032586398678667826,0.734670282582193,2,1.0,1.0,0.2799999999999998
+130,40,0.71,0.10000000000000002,1.2007370327125524,0.0006468037844602609,0.03187641247134369,0.7146281681337047,2,1.0,1.0,0.2749999999999998
+130,41,0.69,0.05000000000000002,1.2089688191943588,0.0006632288659951333,0.03228408128388296,0.728040738132977,2,1.0,1.0,0.2699999999999998
+130,42,0.69,0.05000000000000002,1.2045118005059479,0.0006738972347143309,0.03269992826787593,0.7289181028158703,2,1.0,1.0,0.2649999999999998
+130,43,0.77,0.05000000000000002,1.2036008941615093,0.0006843866462432882,0.03319327613123508,0.7290939135534517,2,1.0,1.0,0.2349999999999998
+130,44,0.6308055734819662,0.10000000000000002,1.2286947663461771,0.0006770440431810349,0.03360110657077847,0.7088800906233531,2,1.0,0.9360185782732209,0.2149999999999998
+130,45,0.594649106402885,0.05000000000000002,1.2372766436735811,0.0006905958782678043,0.033557911100816094,0.7223888481511003,2,1.0,0.882163688009617,0.1949999999999998
+130,46,0.686015765874745,1.3877787807814457e-17,1.23488716841412,0.00070145547460206,0.03435848051693198,0.7376345088900987,2,1.0,0.920052552915817,0.1899999999999998
+130,47,0.6082286485071071,0.05000000000000002,1.229019428192113,0.0007103321239490407,0.03421778045759108,0.7240338450830396,2,1.0,0.8607621616903571,0.16999999999999982
+130,48,0.7436796979910625,1.3877787807814457e-17,1.2347104023661064,0.0007209537659658402,0.03462674229777018,0.7376611705197865,2,1.0,0.9122656599702086,0.13999999999999982
+130,49,0.6076864810388203,1.3877787807814457e-17,1.2542971625821489,0.0007118216496949511,0.034286650103715635,0.7338567589252324,2,1.0,0.8589549367960679,0.11999999999999982
+131,0,0.19347394704145465,0.0,1.367858741683146,0.0007002001441032508,0.036178422387858816,0.7111017253807003,1,0.16487357913139522,0.2525606478182212,0.01
+131,1,0.25063963216735,0.0,1.3671074748869536,0.0007006125811530095,0.03639797145367224,0.7112558687870221,1,0.2197765377011177,0.3123928132398628,0.01
+131,2,0.24616764398754165,0.0,1.385084265725099,0.0006997786383115793,0.036622484811948575,0.7075503291086288,1,0.2560691719691682,0.355144779327776,0.060000000000000005
+131,3,0.1929207225190228,0.0,1.3848897159933873,0.0006994095850169895,0.036704457877295996,0.7075907369888835,1,0.2882291213866802,0.3068017667789491,0.12
+131,4,0.2652430204971339,0.0,1.3853178634377574,0.000699531154595987,0.036743982846981715,0.7075020924882098,1,0.3219196601584728,0.34190379813889465,0.16999999999999998
+131,5,0.3132478954013006,0.0,1.3850350436034797,0.0006992831655909998,0.03673386009698289,0.7075607192318334,1,0.3621839041788116,0.4216117631290553,0.18
+131,6,0.24775566685208425,0.0,1.3824919988457873,0.0006975055051990487,0.03659531217759409,0.7080873793584316,1,0.38289131503884777,0.3791456886282918,0.24
+131,7,0.2314438993166352,0.0,1.3848651398014102,0.0006991938404994837,0.03658674037411823,0.7075959112034181,1,0.4112311345485055,0.35837667408219415,0.3
+131,8,0.3269629577115099,0.0,1.3810363094434415,0.000699343821587479,0.03647228166952306,0.708387419170478,1,0.45144545337403724,0.3965234967686563,0.35
+131,9,0.27688163948485134,0.0,1.362826510765323,0.0007255110746313077,0.036529805856312624,0.7121240503075108,1,0.47709453472469554,0.366328507770693,0.41
+131,10,0.39470553623954313,0.0,1.3679922386106695,0.0007209162973168356,0.03637716691472528,0.7110657872808034,1,0.5373489873164953,0.42211130226256594,0.41
+131,11,0.41052632961884233,0.0,1.290062759201977,0.0008231763713100332,0.0367436693092853,0.7267689595723584,1,0.6001245871435269,0.46827574706202657,0.41
+131,12,0.4170534624917091,0.0,1.2900770092910006,0.0007901639110085739,0.036022375306859505,0.7267792406822651,1,0.6257273971552593,0.4934962449578946,0.45999999999999996
+131,13,0.36731916046983615,0.0,1.2947320248221463,0.0007774763093477254,0.035783105008473426,0.7258589629963111,1,0.6596549264678145,0.45479978735367016,0.52
+131,14,0.4602508260393418,0.0,1.3112271225024255,0.0007644839360452841,0.03625664565279168,0.722569650720286,1,0.6998685673837101,0.517656091516811,0.53
+131,15,0.39821282805850494,0.0,1.3093493563282264,0.0007749753666157697,0.03611845694442947,0.7229417127438583,1,0.7330125135359973,0.472194827736353,0.5900000000000001
+131,16,0.47414402019852603,0.0,1.3239810648390145,0.0007626704029418084,0.03640610899495104,0.7200064482342974,2,0.7682015866901561,0.5175782161899047,0.6400000000000001
+131,17,0.5235046632005227,0.0,1.2778203608282113,0.0006262334468599585,0.03326886264224839,0.729271017331227,2,0.8164613057586275,0.5591440206166769,0.6300000000000001
+131,18,0.5410114701010502,0.05,0.98945765641184,0.0005590995741899974,0.028036359995715847,0.7693108790417301,2,0.8757066748460528,0.6150471130164394,0.6200000000000001
+131,19,0.5812393081919462,0.05,0.9261946758905591,0.000788571593636491,0.031203111703325064,0.7802678889786518,2,0.9300499251443586,0.6524061146380693,0.6150000000000001
+131,20,0.5124283124633937,0.1,0.9566205548456425,0.0007777381447314071,0.031509800974782586,0.7616639814981564,2,0.9547258900005331,0.5942475032106906,0.5950000000000001
+131,21,0.6131724005002354,0.05,1.0994606389376271,0.0006254369542960218,0.030559471554542778,0.7491884111932402,2,0.9997254977616319,0.6442282542788806,0.5850000000000001
+131,22,0.6152364113523773,0.1,0.9517841902344911,0.0007796910205501056,0.03150588314734471,0.7625401176682985,2,1.0,0.684121371174591,0.5800000000000001
+131,23,0.6429524635978425,0.1,0.9897005713685789,0.0007778842302303699,0.031805213372937804,0.7556069715138719,2,1.0,0.7431748786594752,0.5700000000000001
+131,24,0.6350956632831815,0.1,1.003034044668204,0.0008411218203981125,0.0328325074369783,0.7531128458269798,2,1.0,0.7836522109439381,0.56
+131,25,0.5706987268408722,0.1,1.0125834784505157,0.0008976848619864355,0.03366675170616464,0.7513118578137163,2,1.0,0.7356624228029074,0.54
+131,26,0.5333864605239073,0.05,1.0307143189530414,0.0008884965534407717,0.03402234764022943,0.7617882576235108,2,1.0,0.6779548684130244,0.52
+131,27,0.691351187289516,0.0,1.0422391876154102,0.0008753654279623462,0.03358167287814545,0.7731194823791215,2,1.0,0.7378372909650531,0.49
+131,28,0.5603635646233351,0.05,1.0187056306598405,0.0008557510642794785,0.0330527333177061,0.7639723912892084,2,1.0,0.7012118820777838,0.47
+131,29,0.6432486777005816,0.0,1.0534352632190354,0.0008454593226724437,0.03332344252877242,0.771160178731876,2,1.0,0.7441622590019387,0.45999999999999996
+131,30,0.6383909657691467,0.05,1.0499075257203105,0.0008999571572982806,0.03411650218843114,0.7582836439773764,2,1.0,0.7946365525638226,0.44999999999999996
+131,31,0.6544309564511965,0.05,1.0641505882132958,0.0009458976080429935,0.03472779624470798,0.7556464796278997,2,1.0,0.8147698548373219,0.44499999999999995
+131,32,0.6784554932581617,0.05,1.1469889642341364,0.0008871196342661931,0.0356196407375233,0.7400516063063216,2,1.0,0.861518310860539,0.43499999999999994
+131,33,0.672674483368416,0.05,1.1526557570110336,0.0008661643349578166,0.03451853346906292,0.738968058107239,2,1.0,0.9089149445613867,0.42499999999999993
+131,34,0.6875317061024018,0.05,1.1562827710869852,0.0008471625938698009,0.035049875539104686,0.7382751650166058,2,1.0,0.9584390203413395,0.4149999999999999
+131,35,0.6177226247581826,0.05,1.158292187913452,0.0008291310198719338,0.03449927917075985,0.7378936846104245,2,0.9974455207039944,0.895388975039282,0.3949999999999999
+131,36,0.6888019100205462,0.0,1.1586111998381876,0.0008409554854892556,0.0346329555997617,0.752074462486082,2,1.0,0.9293397000684878,0.3899999999999999
+131,37,0.6122105531378372,0.05,1.1510251045927602,0.0008468369346606666,0.03425106245063027,0.7392899294271744,2,1.0,0.8740351771261241,0.3699999999999999
+131,38,0.7509986436064812,0.0,1.15486525484426,0.0008560718356278871,0.03430783943262892,0.7527666393837802,2,1.0,0.9366621453549374,0.33999999999999986
+131,39,0.6932916279396169,0.05,1.1704489858431022,0.0008481799077869574,0.03488225709014477,0.7355282784190078,2,1.0,0.9443054264653897,0.33499999999999985
+131,40,0.7699077856959453,0.0,1.170717653617876,0.0008480204724409388,0.03442409010599431,0.7498075788058619,2,1.0,0.9996926189864843,0.3049999999999998
+131,41,0.72,0.05,1.1557711790293195,0.0006099154713039526,0.03168443601736261,0.7384656567156135,2,1.0,1.0,0.2949999999999998
+131,42,0.7,0.0,1.155284148066988,0.0006056956296956248,0.03165797557908911,0.7527818738025127,2,1.0,1.0,0.2849999999999998
+131,43,0.71,0.0,1.1366405330624487,0.0005977152654337823,0.0309569847693943,0.7562380432082185,2,1.0,1.0,0.2799999999999998
+131,44,0.77,0.0,1.1321894929541432,0.0006053871128380596,0.030980002808536765,0.757054798986718,2,1.0,1.0,0.2499999999999998
+131,45,0.72,0.05,1.1598511949379824,0.0006087932307625953,0.03111658115646636,0.7376773343973854,2,1.0,1.0,0.2399999999999998
+131,46,0.6418600701618661,0.0,1.1589015465279258,0.0006050447095853491,0.03149821223878206,0.7521082984624398,2,1.0,0.9728669005395537,0.2199999999999998
+131,47,0.72,0.0,1.1744356033980092,0.0006054745539131692,0.031142838463840916,0.7492006173772267,2,1.0,1.0,0.2099999999999998
+131,48,0.7,0.05,1.1638775520113591,0.000598188071416355,0.03169877127476951,0.7369015630676861,2,1.0,1.0,0.1999999999999998
+131,49,0.7,0.05,1.1618018344544812,0.0005927143405858313,0.0315143720745132,0.7373059207420497,2,1.0,1.0,0.18999999999999978
+132,0,0.22207342952909445,0.0,1.3679179559169783,0.0007024703246460976,0.03619992395577463,0.7110886277115419,1,0.17205878298630348,0.2728428516129608,0.0
+132,1,0.13945691148426337,0.0,1.3668183786468644,0.0007046306240422697,0.036441009260971935,0.7113135869527102,1,0.19948614749698568,0.23212253286772794,0.06
+132,2,0.21598191344411805,0.0,1.37118867639667,0.0007032744332861002,0.03638886090793752,0.7104158912035856,1,0.2303895625601511,0.28448522182688385,0.11
+132,3,0.2619101994494886,0.0,1.3848625562912793,0.0006991923545626084,0.03670606407808148,0.7075964463564421,1,0.2817349338061614,0.34434324205777384,0.12
+132,4,0.2720883478345968,0.0,1.3852566053119426,0.0006994827622588023,0.03674281622070861,0.7075147892885372,1,0.32049462037086995,0.3663841023493078,0.16999999999999998
+132,5,0.34413053286021644,0.0,1.3848943562919895,0.0006991833811684901,0.03672809888417416,0.7075898704880148,1,0.38669575187774125,0.4292900656766899,0.16999999999999998
+132,6,0.35426477110788696,0.0,1.3842122410227629,0.0006993861629833079,0.03667337285217089,0.7077309006566879,1,0.4300935117777822,0.47910680661887733,0.18
+132,7,0.291059170590367,0.0,1.3774755219537036,0.0006972664098776621,0.03646882454737436,0.7091232985444937,1,0.4580503794909322,0.43580512589513576,0.24
+132,8,0.38467149606194695,0.0,1.3773197160508168,0.0006983219339971364,0.0362482452297392,0.7091549997706491,1,0.5033467964042764,0.4950003910681675,0.25
+132,9,0.40633156492072403,0.0,1.380627566327337,0.0006984251921175714,0.03653156181964905,0.7084722274241496,1,0.565604323861762,0.561233505230358,0.26
+132,10,0.43663280012424444,0.0,1.3830497325528688,0.0006987528523337049,0.0364774224600863,0.7079715668501417,1,0.6176968514303147,0.5681296737454475,0.31
+132,11,0.5053892865711684,0.0,1.3023625576643942,0.0006967393395098405,0.034849764371791256,0.7243702073877564,1,0.6801147294276911,0.6244971042382551,0.31
+132,12,0.42405903893108043,0.0,1.327161694292509,0.0007745042078971201,0.03675451251056612,0.7193600158780155,1,0.7202540986818637,0.5732336813080939,0.37
+132,13,0.4008418907365082,0.0,1.310170240638358,0.0007893847113907101,0.036537994496023275,0.7227714875520797,1,0.7459239235551312,0.5325617249740412,0.43
+132,14,0.5361440874453381,0.0,1.3224815936046124,0.0007760063104880231,0.03668849932205718,0.7203032641889563,1,0.8019509222691908,0.5848708821704044,0.43
+132,15,0.562500828572304,0.05,0.8524080583027025,0.00043150875822116596,0.024223206823497517,0.7927741186122145,1,0.876581837360263,0.65232395165404,0.43
+132,16,0.5830575470038839,0.05,1.2270705542069045,0.0006463328208221549,0.03286340106873087,0.724448629434592,1,0.8978135354744525,0.6960760319594185,0.44
+132,17,0.522207376432851,0.05,1.2389069486129123,0.000659107579048214,0.03349446109759106,0.7220744215788149,1,0.9280100316997413,0.6580128844598054,0.5
+132,18,0.5903168201026288,0.0,1.2347557880310842,0.0006538951334486091,0.03290503492916066,0.7376783412456354,1,0.9538684780826804,0.6882095092456353,0.55
+132,19,0.6579590523579831,0.0,1.251452862001874,0.0006497004449581298,0.03354014352403738,0.734436145429899,1,1.0,0.7598635078599438,0.55
+132,20,0.6555353572086459,0.05,1.2459662663267645,0.0006514647597034093,0.03313639532466166,0.720658595511508,1,1.0,0.8184511906954862,0.56
+132,21,0.6522448256489204,0.05,1.1877990426415805,0.0009483396910392016,0.03637903157831608,0.7321001839448633,1,1.0,0.8741494188297351,0.5700000000000001
+132,22,0.5989842890873713,0.05,1.2087895176677526,0.0009217246284842206,0.036797746990449284,0.7279738712353592,2,1.0,0.829947630291238,0.6300000000000001
+132,23,0.6625267897298747,0.0,1.1569617935555025,0.0008559739989541143,0.03536103958676954,0.7523762843222412,2,1.0,0.841755965766249,0.6250000000000001
+132,24,0.6858707602430776,0.05,1.148472717574545,0.0008611385329399553,0.034482361031909124,0.7397760705065476,2,1.0,0.8862358674769253,0.6150000000000001
+132,25,0.5950745729250743,0.05,1.15584515817901,0.0008391810893387266,0.03508930547150154,0.7383627977260785,2,1.0,0.8169152430835811,0.5950000000000001
+132,26,0.5622825277988508,0.0,1.1560773240456788,0.0008514086819395572,0.03448290888330961,0.7525427300307994,2,1.0,0.7742750926628361,0.5750000000000001
+132,27,0.7156266965309974,0.0,1.0949461960006583,0.0009036419714062236,0.0349381168471571,0.7637313380745544,2,1.0,0.8187556551033248,0.545
+132,28,0.6808352186135025,0.05,1.1513300494630012,0.0008358257115309273,0.03416073116373278,0.7392353951742721,2,1.0,0.8694507287116748,0.535
+132,29,0.7463092679593486,0.0,1.156752188614465,0.0008163276893611106,0.03404772784249615,0.7524301038076849,2,1.0,0.9210308931978288,0.505
+132,30,0.7469386116061951,0.05,1.172621201645015,0.0008080211139518359,0.03427598580539388,0.7351211484823977,2,1.0,0.9897953720206505,0.475
+132,31,0.72,0.05,1.1991577466718681,0.0007939521274432221,0.034090051466937527,0.7299274164950202,2,1.0,1.0,0.46499999999999997
+132,32,0.77,0.05,1.198607359142069,0.0007787454493993581,0.03486619354579041,0.7300418964474827,2,1.0,1.0,0.43499999999999994
+132,33,0.75,0.1,1.2219145378410348,0.0007663058699889593,0.03420235667390189,0.7102405975309348,2,1.0,1.0,0.4049999999999999
+132,34,0.71,0.1,1.2494963710810199,0.0007519429041774975,0.034430130838793274,0.7045375227290211,2,1.0,1.0,0.3999999999999999
+132,35,0.72,0.05,1.2451258136379943,0.0007546695855212602,0.035241887844835715,0.7207862167191226,2,1.0,1.0,0.3899999999999999
+132,36,0.77,0.05,1.2392108732394234,0.0007439029519987272,0.034477036238363394,0.7219793851245581,2,1.0,1.0,0.3599999999999999
+132,37,0.71,0.05,1.2625380168785083,0.0007321868683627563,0.03505779558798113,0.7172776349725521,2,1.0,1.0,0.35499999999999987
+132,38,0.77,0.0,1.2578237409073496,0.0007345217910465882,0.034463733432222025,0.7331585296426946,2,1.0,1.0,0.32499999999999984
+132,39,0.71,0.05,1.2144345736044695,0.0006109927618056451,0.03256345372439513,0.7269779212353835,2,1.0,1.0,0.31999999999999984
+132,40,0.72,0.0,1.2067950331286772,0.0006044886719423194,0.032730454158443764,0.7430717966868962,2,1.0,1.0,0.30999999999999983
+132,41,0.7,0.0,1.2087734132108277,0.0006041742906373681,0.032310985582117924,0.7426940306324834,2,1.0,1.0,0.2999999999999998
+132,42,0.7,0.0,1.215688548594479,0.0006104865662108169,0.0326906636024717,0.7413679140977197,2,1.0,1.0,0.2899999999999998
+132,43,0.77,0.0,1.2191921991431838,0.0006161327048427315,0.03271923258781958,0.7406933820074677,2,1.0,1.0,0.2599999999999998
+132,44,0.75,0.05,1.2423110425987587,0.0006148350845676684,0.03321590342951163,0.7214085577563668,2,1.0,1.0,0.2299999999999998
+132,45,0.636868066110464,0.0,1.2674497130985742,0.0006206869209966476,0.03380009710152398,0.7313158487127047,2,1.0,0.9562268870348798,0.2099999999999998
+132,46,0.72,0.0,1.2783742060043302,0.0006354407872066624,0.03410948729042586,0.7291580184978421,2,1.0,1.0,0.1999999999999998
+132,47,0.7,0.0,1.2794428207467061,0.000637465459245789,0.03376383353733929,0.7289461296477304,2,1.0,1.0,0.18999999999999978
+132,48,0.6347452702272532,0.0,1.2782491450089837,0.0006387275001538812,0.03395045283823888,0.7291814175700109,2,1.0,0.9491509007575109,0.1699999999999998
+132,49,0.703444697439598,0.0,1.2922453445823456,0.0006533427335614502,0.03439009741801112,0.7264028476628904,2,1.0,0.9781489914653266,0.16499999999999979
+133,0,0.004578598428746125,0.0,1.3708008118326696,0.0007019583115385356,0.03621261367241682,0.7104962196176036,1,0.12095778825441644,0.14081124179900123,0.06
+133,1,0.06164691533253458,0.0,1.3520711580449907,0.0007163208968900826,0.03636912552297067,0.7143276447428987,1,0.1537253922068243,0.09281009353382028,0.12
+133,2,0.15108172978805762,0.0,1.3585715623646155,0.000713153039826861,0.0362803028968647,0.7130005989343167,1,0.18710754952232478,0.11864695818414653,0.16999999999999998
+133,3,0.2201242095569247,0.0,1.3582635778954883,0.0007106925040049545,0.036198305472121425,0.7130646247604094,1,0.23907171437820204,0.1881636984151799,0.16999999999999998
+133,4,0.21671388952291004,0.0,1.3368732921185436,0.000728858417273067,0.03625018690298511,0.7174137648848397,1,0.289393869819327,0.21808678362048534,0.21999999999999997
+133,5,0.28593269910809044,0.0,1.3850215543453681,0.0006992979965550698,0.03673144476048677,0.7075635042641496,1,0.34057019073600486,0.2891104411682958,0.21999999999999997
+133,6,0.26362322453063175,0.0,1.3847770443828207,0.0006991194463344493,0.036660550918799176,0.7076141689428268,1,0.3538446819064738,0.2992586195445531,0.26999999999999996
+133,7,0.32941810095767865,0.0,1.3843271311008765,0.0006988166297302208,0.036569010335315545,0.707707370945923,1,0.4207177091315639,0.3405563425387709,0.26999999999999996
+133,8,0.3434988914713928,0.0,1.3808626836741573,0.000698942159678924,0.036479758088854904,0.7084234504953961,1,0.4764970334247733,0.3890830992424071,0.26999999999999996
+133,9,0.38293631215174495,0.0,1.3809237946604156,0.0007002742592188378,0.03635853875796087,0.7084102769393577,1,0.5376777140517209,0.4491637074454756,0.26999999999999996
+133,10,0.31533899303665985,0.0,1.382610592179505,0.0006990455642457438,0.03648370125067192,0.7080622288626871,1,0.5636047957770228,0.39359104838233966,0.32999999999999996
+133,11,0.3834454359500344,0.0,1.37994976706044,0.0007028376430694962,0.03660573498862186,0.7086103776696039,1,0.6044758266368279,0.4062629887571487,0.37999999999999995
+133,12,0.45772563864942684,0.0,1.301619456241391,0.0007792692043397274,0.036172536201442604,0.7244856030724726,1,0.6744535032557493,0.4722230416997152,0.37999999999999995
+133,13,0.4734598842782351,0.0,1.2949828865133846,0.0007786906367493951,0.03613315848685154,0.7258085584423478,1,0.7289408348342009,0.5277686402875494,0.37999999999999995
+133,14,0.5173375557565348,0.0,1.2876218306229483,0.0007773007936281917,0.036142966290409674,0.727271599623945,1,0.7940785875162533,0.5980335004194874,0.37999999999999995
+133,15,0.5273372260703828,0.0,1.2789467239059227,0.0007748364956820952,0.03551893745006153,0.7289898635185466,1,0.812729975349247,0.642939115660488,0.42999999999999994
+133,16,0.5740644773339056,0.0,1.2761222001370989,0.0007109901752394446,0.03424177417177629,0.7295727196954098,1,0.8682323169799865,0.7006105546363679,0.43999999999999995
+133,17,0.5911997563390515,0.0,1.277344031374604,0.0007210387072754633,0.035381187922159434,0.729327621905186,1,0.9165545269632638,0.7680189063396975,0.44999999999999996
+133,18,0.6245925497793238,0.0,1.2775145250647766,0.0007301677522755827,0.03444421059823285,0.729290359022018,1,0.972227836672565,0.7810426898130869,0.49999999999999994
+133,19,0.619603115845397,0.0,1.2974673036943785,0.0007208465130964523,0.035661160011267554,0.7253369044674906,1,1.0,0.7986770528179901,0.5499999999999999
+133,20,0.6304879999091035,0.0,1.3154598401824413,0.0007131179055790641,0.035260745466968016,0.7217409819008889,2,1.0,0.834959999697012,0.6
+133,21,0.7352951617000825,0.0,1.218002775872551,0.0007540642576705158,0.034279098576686914,0.740868807903592,2,1.0,0.8843172056669416,0.57
+133,22,0.7327123461171932,0.05,1.2418904321179371,0.0007416385842478163,0.034649877842899204,0.7214421205828099,2,1.0,0.9423744870573109,0.5399999999999999
+133,23,0.75,0.0,1.2692611950438115,0.000728726564797177,0.03523553564100284,0.7309172603635197,2,1.0,1.0,0.5099999999999999
+133,24,0.71,0.0,1.2871378229278465,0.0007191443620854984,0.0348809214038843,0.7273906555308363,2,1.0,1.0,0.5049999999999999
+133,25,0.72,0.0,1.2815362362127196,0.0007202450027130354,0.03525116730644199,0.7284995623984534,2,1.0,1.0,0.4949999999999999
+133,26,0.77,0.0,1.2794639391636775,0.0007105046400279379,0.03465716130802504,0.7289130930301285,2,1.0,1.0,0.46499999999999986
+133,27,0.72,0.0,1.3002020616898418,0.0007020697349232953,0.03538034800082535,0.7247992320932942,2,1.0,1.0,0.45499999999999985
+133,28,0.71,0.0,1.2972047189528078,0.0006941101628097886,0.03455492094663461,0.7253998659830143,2,1.0,1.0,0.44999999999999984
+133,29,0.77,0.0,1.2921685785937682,0.0006951243465175214,0.03507440942224091,0.7264014967659647,2,1.0,1.0,0.4199999999999998
+133,30,0.71,0.0,1.3111690708547568,0.0006891883365739838,0.034897577462376525,0.722611473896888,2,1.0,1.0,0.4149999999999998
+133,31,0.72,0.0,1.305584303782604,0.0006890739479325166,0.034866840428344675,0.7237295605347185,2,1.0,1.0,0.4049999999999998
+133,32,0.6382787213934952,0.0,1.3025422403492566,0.0006825108381276071,0.034829001510685256,0.7243400129445461,2,1.0,0.9609290713116507,0.3849999999999998
+133,33,0.7078633282269662,0.0,1.307261800569921,0.000694354622723851,0.03504564747740466,0.7233919141709537,2,1.0,0.992877760756554,0.3799999999999998
+133,34,0.72,0.0,1.3020419058385375,0.000694873057821412,0.035229163520317595,0.7244349686153657,2,1.0,1.0,0.3699999999999998
+133,35,0.6363442479132111,0.0,1.2989500575271546,0.0006875908742869976,0.03471257040124702,0.7250546659570213,2,1.0,0.9544808263773702,0.34999999999999976
+133,36,0.72,0.0,1.302934731584297,0.0006992628437073107,0.03544794952026063,0.7242549456813817,2,1.0,1.0,0.33999999999999975
+133,37,0.77,0.0,1.299582130069832,0.0006915488847529078,0.03456520851463991,0.7249270656083477,2,1.0,1.0,0.3099999999999997
+133,38,0.75,0.0,1.3183725713748062,0.000670020767131169,0.03528469263664421,0.7211729702155361,2,1.0,1.0,0.2799999999999997
+133,39,0.75,0.0,1.3263969016396162,0.0006901313226802693,0.03541780615333716,0.7195484411201034,2,1.0,1.0,0.2499999999999997
+133,40,0.6324589916477321,0.0,1.3312977224771236,0.0007096597041033456,0.035609012887547545,0.7185505010400646,2,1.0,0.9415299721591069,0.2299999999999997
+133,41,0.7183733381196278,0.0,1.3348587297797931,0.0007029738356834589,0.03599825527620987,0.7178324866038762,2,1.0,0.9945777937320929,0.2199999999999997
+133,42,0.7,0.0,1.3261634334149035,0.0007001539685448538,0.03525511175558264,0.719591507525892,2,1.0,1.0,0.2099999999999997
+133,43,0.71,0.0,1.316851267530583,0.0006965944884349349,0.035788845011107115,0.7214680949156093,2,1.0,1.0,0.20499999999999968
+133,44,0.6345497922476804,0.0,1.329935960874246,0.0006906461209695068,0.03519657659375176,0.718833501648503,2,1.0,0.9484993074922681,0.1849999999999997
+133,45,0.5991179367588286,0.0,1.3332835567389887,0.0006861862734586089,0.035867958261369445,0.7181582227280742,2,1.0,0.8970597891960956,0.1649999999999997
+133,46,0.7556797634706904,0.0,1.334546967804155,0.0006824148203655501,0.03530239026913573,0.7179039566044627,2,1.0,0.9522658782356349,0.1349999999999997
+133,47,0.72,0.0,1.3402101291103903,0.0006974718369470501,0.03576277096595605,0.7167495375946515,2,1.0,1.0,0.12499999999999971
+133,48,0.77,0.0,1.3323021922890692,0.0006951341906426783,0.03566113070346018,0.7183531945144395,2,1.0,1.0,0.09499999999999971
+133,49,0.71,0.0,1.3361941642485975,0.0007117799132437405,0.035631599077832525,0.7175583475954943,2,1.0,1.0,0.0899999999999997
+134,0,0.19123545687819668,0.0,1.3695847527261888,0.0007022615005589134,0.0361904587527942,0.7107461637413528,1,0.154304522457801,0.2574295800598878,0.01
+134,1,0.24859174558480734,0.0,1.3689405440386324,0.0007027797371742235,0.036440694171834584,0.7108783730542284,1,0.2126075714653526,0.31393031857311315,0.01
+134,2,0.2627466995830654,0.0,1.3843419009835811,0.0006988116246655933,0.03656847227061835,0.7077043177440362,1,0.2680861066855128,0.36305520747711983,0.01
+134,3,0.3070545659902265,0.0,1.384012797572339,0.0006986024135200253,0.03667874926385406,0.7077724776077583,1,0.3363195291724934,0.4311424359328461,0.01
+134,4,0.34649890893829927,0.0,1.3824290852095733,0.000697491322646768,0.03667133175214434,0.7081003892772048,1,0.39037900745604553,0.4995541877622777,0.02
+134,5,0.41109075665717093,0.0,1.381381168431533,0.000696782003251186,0.03658228137635314,0.7083172334795427,1,0.45898620961797143,0.5681519443029365,0.02
+134,6,0.4056108395205025,0.0,1.382605295258466,0.0006989498358568743,0.036617758115538905,0.7080633633645679,1,0.5031128563574858,0.5984044659846081,0.07
+134,7,0.3495431806741933,0.0,1.3818121798959238,0.0006992043219372311,0.03649980673360399,0.7082271757204125,1,0.5181505881731843,0.5606349160452628,0.13
+134,8,0.4352931924619437,0.0,1.3818246908249485,0.0007003700734528658,0.036397386472659256,0.7082241086493515,1,0.551499696475292,0.6075609956519717,0.14
+134,9,0.48985803349334345,0.0,1.3799081913279747,0.000705021901803227,0.03639942781113184,0.7086180602193619,1,0.6011695321918001,0.6648289907540447,0.14
+134,10,0.507892944089254,0.0,1.2857969304979187,0.0007777511634125433,0.036343415492298636,0.7276332355469441,1,0.6543268165789349,0.7295951942887561,0.15000000000000002
+134,11,0.4454640499514655,0.0,1.2982875450754485,0.0007632034252325643,0.03562981387889264,0.7251565795641824,1,0.689916682279166,0.6799773705125248,0.21000000000000002
+134,12,0.5166206755042442,0.0,1.290789662157182,0.0007613179677603023,0.03606208990833975,0.7266491649946037,1,0.7311030611693815,0.7024486803165357,0.26
+134,13,0.561840713712749,0.0,1.2906044233440856,0.0007832933634198647,0.036064765375989995,0.7266772281577032,1,0.7769265733746035,0.7663880434387927,0.27
+134,14,0.6164415955778885,0.0,1.3015395384007629,0.0007681151807869829,0.036055176189435434,0.7245060075266332,1,0.8312784187103885,0.8183138300975082,0.27
+134,15,0.6320574730480065,0.1,0.46152709390604457,8.188732508752424e-05,0.010787856517023105,0.8400108934703141,1,0.8778737405954536,0.8826722127986592,0.28
+134,16,0.6396765725250989,0.15000000000000002,0.5568298659923888,0.00013811001033214296,0.013911369793294399,0.8157619501443527,1,0.9093878909284393,0.9046360356671507,0.33
+134,17,0.6823284277693824,0.2,0.6155927685908584,0.0001701991217105073,0.015686825464218138,0.794793710376468,1,0.9412310848146711,0.9763251602808252,0.34
+134,18,0.6205456261716701,0.25,1.1470941234176686,0.0009165476175788884,0.03609953941235318,0.6783223764201278,1,0.9817258882156478,0.9231385509873113,0.4
+134,19,0.5930078161845775,0.2,1.146124512638253,0.0009052867137471798,0.03547091504232951,0.694674488134221,1,0.9902886550649092,0.8880226230395312,0.46
+134,20,0.5848267662040367,0.2,1.1277250363555922,0.0009016656160687111,0.03541636478409233,0.6985645379410722,1,1.0,0.849422554013456,0.52
+134,21,0.5770502893447355,0.2,1.1179124250550316,0.0008928445433673556,0.03506660118414341,0.7006304660875599,1,1.0,0.8235009644824518,0.5800000000000001
+134,22,0.5627594408118861,0.2,1.1079179632583145,0.0008831331756260782,0.03436498184689375,0.702726623606813,2,1.0,0.7758648027062873,0.6400000000000001
+134,23,0.6650634841628302,0.2,1.0845672565265658,0.0008556496152862809,0.03397970511859229,0.7075928017844998,2,1.0,0.8168782805427675,0.6300000000000001
+134,24,0.6652857080478658,0.2,1.2670132041452455,0.0007075974757428369,0.03497220202443327,0.6685361241705857,2,1.0,0.8509523601595528,0.6250000000000001
+134,25,0.5936651043639087,0.15000000000000002,1.2635404405890593,0.0007097819721563659,0.03428109852368681,0.6856887338130044,2,1.0,0.8122170145463625,0.6050000000000001
+134,26,0.729416568964522,0.05000000000000002,1.2623664982203482,0.0007219830555959526,0.035074012631039986,0.7173165541629244,2,1.0,0.8647218965484069,0.5750000000000001
+134,27,0.5983705542927849,0.05000000000000002,1.276309200187004,0.0007138775638302026,0.03489480791876212,0.7144841041209731,2,1.0,0.8279018476426161,0.555
+134,28,0.6674648866042421,0.0,1.2780850802692387,0.000724646194708993,0.035041868946033165,0.7291798826565201,2,1.0,0.8582162886808072,0.55
+134,29,0.591468692142787,0.0,1.2704311754063289,0.000728304319493323,0.0352006985309583,0.7306872559028104,2,1.0,0.8048956404759566,0.53
+134,30,0.6774926286386237,0.0,1.271636986416378,0.0007394643077057048,0.03484632221746167,0.7304455116647901,2,1.0,0.8583087621287457,0.52
+134,31,0.6008406348194978,0.0,1.2695508743659278,0.0007293483839460089,0.03487369186747948,0.7308600386010563,2,1.0,0.8361354493983261,0.5
+134,32,0.5641085418480893,0.0,1.2701325967024908,0.0007390044628848337,0.03523552603393534,0.7307417965235835,2,1.0,0.7803618061602982,0.48
+134,33,0.7212328966255308,0.0,1.0590888245125707,0.000971570117649136,0.03495457764738568,0.7701163038439567,2,1.0,0.8374429887517697,0.44999999999999996
+134,34,0.6719669394341397,0.0,1.268601587240695,0.0007222410258702523,0.03515350062599108,0.7310495207609393,1,1.0,0.8732231314471325,0.44499999999999995
+134,35,0.7116781740179525,0.0,0.9441433215020675,0.0007229163564297276,0.030903178568478896,0.7899146202708747,1,1.0,0.9389272467265087,0.44499999999999995
+134,36,0.71,0.05,0.9782190593014252,0.0007107530551820074,0.0299873281372224,0.7712458652300991,1,1.0,1.0,0.45499999999999996
+134,37,0.69,0.05,1.0270903356925998,0.000707990806927915,0.03106322899486134,0.7625106477292267,1,1.0,1.0,0.46499999999999997
+134,38,0.69,0.05,1.0581286547820952,0.0006979725317180362,0.03202139754803916,0.756847948779577,1,1.0,1.0,0.475
+134,39,0.6368007744528613,0.05,1.0860487220967037,0.0006901619479646108,0.03145662935442356,0.7516759848949566,1,1.0,0.9560025815095379,0.5349999999999999
+134,40,0.71,0.0,1.0703383547400653,0.0006732187953094842,0.03184675741272287,0.7682249327256351,1,1.0,1.0,0.5449999999999999
+134,41,0.7,0.05,1.083232478247772,0.0006616596077794869,0.031292341470903505,0.7522119152481338,1,1.0,1.0,0.595
+134,42,0.6799999999999999,0.05,1.110426059663271,0.0007329228509811757,0.03301273541775553,0.7470817106456226,2,1.0,1.0,0.645
+134,43,0.72,0.0,1.2839849497116644,0.0006824467157146172,0.03455701279017559,0.7280299340283106,2,1.0,1.0,0.635
+134,44,0.631058059297015,0.0,1.2744010627998557,0.0006722029264638653,0.03334154445968277,0.7299274524273034,2,1.0,0.9368601976567165,0.615
+134,45,0.7064859081804334,0.0,1.273396488989954,0.0006790899564529597,0.03471513862008868,0.730122727615634,2,1.0,0.9882863606014449,0.61
+134,46,0.69,0.0,1.275322283885077,0.0006895312979973763,0.033988861266821484,0.7297389756033685,2,1.0,1.0,0.605
+134,47,0.72,0.0,1.2757074420949945,0.0006986172659498328,0.03486323462004345,0.7296594234604884,2,1.0,1.0,0.595
+134,48,0.6326619551991739,0.0,1.2708255582040489,0.0006887579146131484,0.034413551624661504,0.730625207557686,2,1.0,0.9422065173305799,0.575
+134,49,0.7697793035980741,0.0,1.2702093875743137,0.00069627572678111,0.03430816806436073,0.7307435017450675,2,1.0,0.9992643453269138,0.5449999999999999
+135,0,0.2171620524839143,0.0,1.3686414426794689,0.0007045902828534169,0.0361958963712712,0.7109390994214687,1,0.17183299985142308,0.2567350084530541,0.0
+135,1,0.19783643985471083,0.0,1.3682143161450033,0.0007061358371424741,0.03646427266033551,0.7110262328978849,1,0.18560743604179325,0.2762461241336106,0.05
+135,2,0.24660873091376542,0.0,1.367791584077598,0.0007043700860532359,0.036311793847454046,0.7111138085117504,1,0.25083245105604657,0.32939124348049714,0.060000000000000005
+135,3,0.31542771724872076,0.0,1.384281746277501,0.0006987781308162419,0.036687018621093144,0.7077167749825318,1,0.33622231532978386,0.3924996896109881,0.060000000000000005
+135,4,0.3317979507576086,0.0,1.3838413994874683,0.0006985017394564885,0.036682429149772586,0.7078079683555628,1,0.39585092933813115,0.4441670849642091,0.07
+135,5,0.34126681282341453,0.0,1.3835622505503746,0.0006997427667036141,0.03669852763037805,0.7078651841616741,1,0.42724936153888476,0.5057651209493497,0.08
+135,6,0.41982984363332343,0.0,1.3804273368250526,0.0007005979141518875,0.03660058738514258,0.7085126835341574,1,0.47696335611460944,0.5763088966440337,0.08
+135,7,0.3385864255333686,0.0,1.3796611308861497,0.0006987982752630679,0.0364637600896838,0.7086716400792223,1,0.5012031928954318,0.5438843600665583,0.14
+135,8,0.4114012078778214,0.0,1.3794274848078296,0.0006998544962745919,0.03633368501847078,0.7087194393119769,1,0.5265693349099266,0.5903398021978236,0.19
+135,9,0.45834310178008353,0.0,1.378603647757029,0.0007007235011952812,0.03650638140067332,0.7088891211855043,1,0.578563180513934,0.6528199620006889,0.2
+135,10,0.5162041683039549,0.0,1.3727918491892934,0.0007113513688489047,0.036361584046068054,0.7100826415023306,1,0.6428726308729732,0.7039958249947144,0.2
+135,11,0.5333500001019913,0.0,1.346287988112917,0.00072132449370279,0.03608102581412413,0.715504278291471,1,0.7011059481683349,0.7598763941435802,0.2
+135,12,0.5476196861801274,0.0,1.350061732097964,0.0007141162289021283,0.03614149709207519,0.7147384179058196,1,0.7463546034285361,0.7879852499337991,0.25
+135,13,0.5557698023454539,0.0,1.3504240821286542,0.0007251669232444819,0.03644796179460317,0.7146600266301885,0,0.7932866690877088,0.8270648938825197,0.3
+135,14,0.567788702538482,0.0,1.3862943611198846,0.0007001722195526527,0.03677093273821602,0.7072997068701548,0,0.8212885194570938,0.8344590690949977,0.31
+135,15,0.5676497148043139,0.0,1.3768730575404025,0.0006935227917704395,0.03640280769480582,0.7092490956634622,0,0.854469448619551,0.8619513592915703,0.32
+135,16,0.609768868341285,0.0,1.376875383639601,0.000694110147394304,0.03624214489302006,0.7092483737439513,0,0.9311006565338132,0.8462787951815016,0.38
+135,17,0.6134090257882916,0.05,0.9949082428093363,0.00048417706083203214,0.02697449253087139,0.7683688050728428,0,1.0,0.8113634192943053,0.46
+135,18,0.6224548271015585,0.05,0.9909440593392869,0.0004760884777929,0.027245980894735334,0.7690764655718475,0,1.0,0.808182757005195,0.52
+135,19,0.6302761995626187,0.05,1.024080877441845,0.000509663285445489,0.02784991374159984,0.7631269029029374,0,1.0,0.8342539985420626,0.53
+135,20,0.611558610552287,0.05,1.0381017648332576,0.0005361107167854844,0.028955744058522786,0.7605734526825765,2,1.0,0.8051953685076233,0.61
+135,21,0.6752251478543205,0.05,1.1518232734075642,0.000742849341962693,0.033491592167102326,0.7391761592483072,2,1.0,0.850750492847735,0.6
+135,22,0.7335259777084087,0.1,1.1482103628754836,0.0007299856052877683,0.03227404263735334,0.7251852023224449,2,1.0,0.8784199256946957,0.57
+135,23,0.7276886650209946,0.15000000000000002,1.1717337439770639,0.0007236201106602308,0.03351338680730061,0.7051240563308727,2,1.0,0.9256288834033156,0.5399999999999999
+135,24,0.6977024298096959,0.15000000000000002,1.1978135433906638,0.0007157032736522883,0.033841631054616225,0.6996759098940866,2,1.0,0.9590080993656528,0.5349999999999999
+135,25,0.72,0.15000000000000002,1.1987935907285083,0.0007265239257673563,0.032810964623757204,0.6994653834390675,2,1.0,1.0,0.5249999999999999
+135,26,0.71,0.15000000000000002,1.194607576190268,0.0007145614636977174,0.03387933199592127,0.7003496259669163,2,1.0,1.0,0.5199999999999999
+135,27,0.6302060813916501,0.15000000000000002,1.1948746733996911,0.0007248733404893723,0.03295094973522088,0.7002892413573021,2,1.0,0.9340202713055004,0.4999999999999999
+135,28,0.6973972721005872,0.10000000000000002,1.1955141777785678,0.000734361720905356,0.03398796529016003,0.7156564613115568,2,1.0,0.9579909070019574,0.4949999999999999
+135,29,0.689471313380849,0.15000000000000002,1.191084215851093,0.0007438294515461581,0.03294496235012006,0.7010762489713156,2,1.0,0.9982377112694969,0.4899999999999999
+135,30,0.69,0.15000000000000002,1.1939612110271607,0.0007507104441263758,0.033664029778588136,0.7004700858677944,2,1.0,1.0,0.4849999999999999
+135,31,0.77,0.15000000000000002,1.1922140928561107,0.0007567075680887903,0.03440159688140789,0.7008340085669914,2,1.0,1.0,0.45499999999999985
+135,32,0.71,0.2,1.2143460382974134,0.0007463637172142057,0.03337002959846686,0.6800847344388873,2,1.0,1.0,0.44999999999999984
+135,33,0.77,0.15000000000000002,1.2159768299825433,0.0007501817087294621,0.034163002341941084,0.6958308856737613,2,1.0,1.0,0.4199999999999998
+135,34,0.72,0.2,1.2346865068689903,0.0007403958320558986,0.034015714419494095,0.6756457683962446,2,1.0,1.0,0.4099999999999998
+135,35,0.77,0.15000000000000002,1.236011230042347,0.0007293156622542554,0.033624146239805905,0.6915829422384164,2,1.0,1.0,0.3799999999999998
+135,36,0.75,0.15000000000000002,1.2547071594459582,0.0007201477149775036,0.03466737798867773,0.6875848966840353,2,1.0,1.0,0.34999999999999976
+135,37,0.75,0.10000000000000002,1.2763512309675498,0.0007111503055285566,0.0342708664389742,0.6989339286789312,2,1.0,1.0,0.31999999999999973
+135,38,0.6350333730164692,0.10000000000000002,1.23742331127265,0.0007736655280213955,0.035082590225213005,0.7070354838720038,2,0.9988882651848366,0.9514082673392545,0.2999999999999997
+135,39,0.6005984625297588,0.05000000000000002,1.2386348943983136,0.0007602959452937224,0.03474882220321292,0.7220884044451914,2,1.0,0.9019948750991962,0.2799999999999997
+135,40,0.7517339164108074,1.3877787807814457e-17,1.2337635825580366,0.0007497265915128296,0.03495499827068479,0.7378332239621097,2,1.0,0.9391130547026914,0.2499999999999997
+135,41,0.7476744411074145,0.05000000000000002,1.23186363063925,0.0007709402915488903,0.034591851583614455,0.7234409347391547,2,1.0,0.9922481370247151,0.2199999999999997
+135,42,0.6315969398651362,0.05000000000000002,1.2370249489952825,0.0007855067443303007,0.03532259881925941,0.7224012561789963,2,1.0,0.9386564662171207,0.1999999999999997
+135,43,0.5994926954328725,1.3877787807814457e-17,1.2367904171339943,0.0007717565280043389,0.034882364863349676,0.7372387706981315,2,1.0,0.8983089847762422,0.17999999999999972
+135,44,0.7563262180020225,0.0,1.2313592214993476,0.0007615221658523979,0.03515355611832688,0.7382934882098988,2,1.0,0.9544207266734083,0.14999999999999972
+135,45,0.7194634790915115,0.05,1.2315510255482,0.0007753169172210607,0.03417968121018028,0.7235017235097135,2,1.0,0.9982115969717054,0.1399999999999997
+135,46,0.7,0.0,1.2317707623502792,0.0007779416799827174,0.034416884224872386,0.7382076177206399,2,1.0,1.0,0.1299999999999997
+135,47,0.7,0.0,1.2227159714663727,0.0007842295225424574,0.034546915728166816,0.7399513225971813,2,1.0,1.0,0.1199999999999997
+135,48,0.6315838892737515,0.0,1.2171346974023742,0.0007868433121963885,0.034929956511923474,0.7410228477575146,2,1.0,0.9386129642458387,0.0999999999999997
+135,49,0.7001558686622001,0.0,1.2170660981691135,0.0007723358031195023,0.03468641472115367,0.7410415802712527,2,1.0,0.9671862288740006,0.0949999999999997
+136,0,0.0903966472749918,0.0,1.367096642241617,0.0007052094540195879,0.036160808433883154,0.711256205369287,1,0.12733816381534543,0.152760966465403,0.06
+136,1,0.16092810065860433,0.0,1.3579856505898793,0.0007121593501231596,0.03640398595814655,0.7131208861099577,1,0.16024014486140678,0.18281349985703987,0.11
+136,2,0.10648155831763828,0.0,1.3575905704999163,0.0007097853673875437,0.03618010132085253,0.7132026757582626,1,0.17942554392876545,0.14560872647523462,0.16999999999999998
+136,3,0.22388954099113306,0.0,1.3634656348263101,0.0007074787093891676,0.03623415515444459,0.7120004052886837,1,0.2452015770265082,0.19356329677285067,0.16999999999999998
+136,4,0.2435872752067312,0.0,1.3454838493002148,0.0007172791339331068,0.03626406393220827,0.7156695850900618,1,0.30424314634647787,0.2570072466182131,0.16999999999999998
+136,5,0.256559421245958,0.0,1.3837633921362502,0.0006984184546216559,0.03669262092895313,0.7078241356986757,1,0.3543741049597984,0.2750949483667619,0.21999999999999997
+136,6,0.20795308444179672,0.0,1.3832739686170072,0.0006980689613642981,0.036597880182327,0.7079254871813905,1,0.39251410020301103,0.23524383123580958,0.27999999999999997
+136,7,0.301675834231402,0.0,1.3839475258512615,0.0006986606057831489,0.03655764609128741,0.7077859535425156,1,0.4388541542469494,0.2935896008165656,0.29
+136,8,0.24315394584419442,0.0,1.3636607840392287,0.0006838320147214876,0.03635021781778935,0.7119700856400019,1,0.4635943322282802,0.2696530985476545,0.35
+136,9,0.3348762201858541,0.0,1.359945476409247,0.000724417463963997,0.03661745546647087,0.7127147588102528,1,0.5009082185029557,0.33186114569939873,0.36
+136,10,0.34598585582521474,0.0,1.3589420881898167,0.0007300208075139156,0.03631021218116013,0.712917867508283,1,0.5460070660798733,0.34961127565753036,0.41
+136,11,0.34838091181080555,0.0,1.3617613635756867,0.000724147167132838,0.036569423157286195,0.7123429187013545,1,0.5900477617379345,0.372880650675095,0.45999999999999996
+136,12,0.36953738975577377,0.0,1.3634946242571204,0.0007189366806115476,0.03650441999241949,0.7119897616722657,1,0.6346591226881233,0.3913556560497689,0.51
+136,13,0.33517884942897075,0.0,1.2108278215522483,0.0006148091368597425,0.032790386202475284,0.7422971695968132,1,0.6610343965270705,0.34605603548165353,0.5700000000000001
+136,14,0.3176418923082605,0.0,1.2279107074388644,0.0006139336672352587,0.03313140211723298,0.7390161844611327,2,0.704652849942621,0.303377982761144,0.6300000000000001
+136,15,0.42382615774778465,0.0,1.3667973562990894,0.0007236224855427267,0.03671293055750337,0.711310103980036,2,0.7509862999621185,0.33660317587014404,0.6250000000000001
+136,16,0.35519970905961334,0.0,1.3650424527647926,0.0007278494247797079,0.03645514547605237,0.7116686016017766,2,0.7810794605051854,0.27273965960932833,0.6050000000000001
+136,17,0.44616765008588344,0.0,1.3628441300936538,0.0007297095582256196,0.03659575456590082,0.7121187168493714,2,0.8343775474630452,0.31378502824605875,0.6000000000000001
+136,18,0.37520827936646833,0.05,0.9741978335342975,0.0005071331324429198,0.026802865367140317,0.7720262216480203,2,0.8550763248432585,0.2531052189044264,0.5800000000000001
+136,19,0.5429207886071096,0.0,1.0178889135354237,0.0005090073528603959,0.02796361943554993,0.7774890197742342,2,0.9419120672509027,0.310838550230979,0.55
+136,20,0.5277727872901924,0.05,1.036078304994515,0.0005196412860287092,0.02761569660684477,0.7609477252374505,2,1.0,0.3592426243006415,0.54
+136,21,0.5254676979012389,0.05,1.0351842515601137,0.0005138945231530097,0.02832496841654527,0.7611124109940202,2,1.0,0.3848923263374633,0.535
+136,22,0.5172928661626333,0.05,1.0432416502607347,0.0005390423644621789,0.028661890688322245,0.759635148195339,2,1.0,0.4243095538754442,0.53
+136,23,0.5233410852004261,0.05,1.1256420165351555,0.0007238920173175136,0.03213218176907891,0.7441992904396684,2,1.0,0.44447028400142063,0.525
+136,24,0.619361918586729,0.05,1.1222513424437603,0.0007132925081565239,0.032608240068610836,0.7448482561538815,2,1.0,0.49787306195576336,0.495
+136,25,0.48798880548297296,0.1,1.1285858303932803,0.0007289675979214783,0.03224397862984606,0.7290792777393241,2,1.0,0.45996268494324344,0.475
+136,26,0.6238510672309968,0.05,1.1486285487701462,0.0007245999107501828,0.03246226924562878,0.739798640608246,2,1.0,0.5128368907699895,0.44499999999999995
+136,27,0.6197300943773483,0.1,1.1485490240077647,0.0007379429981365759,0.03304609107903041,0.7251145326697916,2,1.0,0.5657669812578278,0.4149999999999999
+136,28,0.5032406796571319,0.1,1.1544392794808065,0.0007504095171378496,0.03246493784250757,0.7239339282606287,2,1.0,0.5108022655237732,0.3949999999999999
+136,29,0.47238464047473594,0.05,1.172782145113628,0.0007432539458568507,0.03394611147673311,0.7351150325123545,2,1.0,0.47461546824912,0.3749999999999999
+136,30,0.45430968309905423,0.0,1.1885804413078696,0.0007354109533233549,0.032877914564557624,0.7464842821276504,2,1.0,0.4143656103301809,0.35499999999999987
+136,31,0.5609009723234575,0.0,1.2051218919008262,0.0007271148841947009,0.03388883697113621,0.7433443090210833,2,1.0,0.4696699077448582,0.34499999999999986
+136,32,0.5644883296943305,0.05,1.2041983321896372,0.0007348990375804377,0.033600266010914585,0.7289559339147332,2,1.0,0.5149610989811017,0.33999999999999986
+136,33,0.494812759407853,0.05,1.2053652034689737,0.0007241885520555113,0.034100578799194654,0.7287295574375084,2,1.0,0.4827091980261768,0.31999999999999984
+136,34,0.580847674133528,0.0,0.9369713932597536,0.0005575665057993581,0.028129089663123448,0.7911569696355385,2,1.0,0.5361589137784267,0.30999999999999983
+136,35,0.5765759166180509,0.05,0.9444492620808217,0.0006372510182387236,0.028603743332103516,0.7771745489966884,2,1.0,0.5885863887268363,0.2999999999999998
+136,36,0.5940920936768574,0.05,0.9806737708741764,0.0007391065010385327,0.030980493675076343,0.7708024847152156,2,1.0,0.6136403122561916,0.2949999999999998
+136,37,0.6721597957367145,0.05,1.2219784958737812,0.0007226702420887179,0.03371082576982085,0.7254335491384769,2,1.0,0.6738659857890482,0.2649999999999998
+136,38,0.5395399649929536,0.1,1.2249230592566445,0.0007366347597394867,0.03466019006835212,0.7096332836057395,2,1.0,0.6317998833098457,0.2449999999999998
+136,39,0.6767644893721587,0.0,1.2508888386280097,0.0007256993111998058,0.034675722913005455,0.7345164990220092,2,1.0,0.6892149645738626,0.2149999999999998
+136,40,0.6387747840485095,0.05,1.243840885910565,0.0007398721150546103,0.03479221227288343,0.721050692140257,2,1.0,0.7292492801616984,0.2049999999999998
+136,41,0.5578261085607498,0.0,1.2449913338263505,0.0007434183897631025,0.03420369366360099,0.7356580412047026,2,1.0,0.6927536952024994,0.1849999999999998
+136,42,0.6249218194123414,0.0,1.2626877022356908,0.0007340381374798742,0.03522543420200405,0.7322060695263302,2,1.0,0.7164060647078048,0.1799999999999998
+136,43,0.5529499952781307,0.0,1.2598139011470533,0.0007235051973306457,0.03399033729553526,0.7327733143282292,2,1.0,0.676499984260436,0.1599999999999998
+136,44,0.6242581470081938,0.0,1.2805237874286592,0.0007145709173258545,0.035340508596404474,0.7287020097217155,2,1.0,0.7141938233606461,0.1549999999999998
+136,45,0.5493524034322064,0.0,1.2771404216913704,0.0007056585492503775,0.03412128405649943,0.7293738861285058,2,1.0,0.6645080114406879,0.13499999999999981
+136,46,0.5187190224705635,0.0,1.2967490186541557,0.0006987810772711133,0.03528209624785179,0.7254887693679722,2,1.0,0.6290634082352118,0.11499999999999981
+136,47,0.608098374611483,0.0,1.3140762605398575,0.0006936895614157363,0.03502682028486437,0.7220265609986227,2,1.0,0.6603279153716098,0.1099999999999998
+136,48,0.6895330568518789,0.0,1.310191731791143,0.0006865558854833756,0.03503941385573656,0.7228083880069837,2,1.0,0.73177685617293,0.07999999999999981
+136,49,0.6502127007292595,0.0,1.311576418021153,0.0006958712904757353,0.0353704990776121,0.7225271365326207,2,1.0,0.7673756690975316,0.06999999999999981
+137,0,0.21626478304523378,0.0,1.3665063689185764,0.0007054057653519873,0.036150648034306274,0.7113773345517433,1,0.17020494846917084,0.2556435036034133,0.0
+137,1,0.20702701080641606,0.0,1.3660380306640585,0.0007069668108418974,0.03645750543403494,0.7114728431651207,1,0.19587761992761832,0.29489947943916545,0.05
+137,2,0.21247179937963526,0.0,1.365579372383016,0.0007050576054114432,0.03626676882081851,0.711567770741653,1,0.24873710747770517,0.31804603920812824,0.1
+137,3,0.23508770605293597,0.0,1.384505096008613,0.0006989316727484952,0.03669392092182591,0.7076705085843485,2,0.29268393055268327,0.3421611011983227,0.15000000000000002
+137,4,0.20470649903284197,0.0,1.384096735108615,0.0006986908991941563,0.03669710222663587,0.707755079849839,2,0.327540652136803,0.30022423594986974,0.13000000000000003
+137,5,0.28620603004562883,0.0,1.3842445831335273,0.0006987235504846492,0.03669839825804905,0.7077244848385049,2,0.36105245530982644,0.33279223562396526,0.12500000000000003
+137,6,0.39225837723797236,0.0,1.3841567188251191,0.000698771247799456,0.03665093377769091,0.7077426395545707,2,0.4316358138775168,0.40395280793613825,0.09500000000000003
+137,7,0.263353999177362,0.0,1.378921686453957,0.0006963442147187224,0.03640717425027403,0.7088252923659275,2,0.45727060789401774,0.34436428804818603,0.07500000000000002
+137,8,0.3596997306829537,0.0,1.3806061536368364,0.0006989443823084065,0.036467486446619284,0.7084764355026449,2,0.4916993341412341,0.3920165457784058,0.06500000000000003
+137,9,0.3611960179312519,0.0,1.3824610081419269,0.0006987258516052757,0.03635279591056527,0.708093280600451,2,0.5288280317131687,0.420354022772143,0.05500000000000003
+137,10,0.39408576730992356,0.0,1.3797386445677675,0.0006977098224040122,0.03650852082768412,0.7086560860942595,2,0.5727002741175546,0.4788022378959315,0.045000000000000026
+137,11,0.4274322450409994,0.0,1.3814781070109168,0.0006975845189701248,0.03649367292752875,0.7082968735643088,2,0.6279250274377417,0.4921949514592994,0.04000000000000003
+137,12,0.36215253147061477,0.0,1.2897095964028977,0.0006578805327185824,0.03435813141657561,0.7269047156362854,2,0.6549137931711042,0.44310901286909443,0.020000000000000028
+137,13,0.4672489831668104,0.0,1.2983630421228416,0.0006561680118309468,0.03465960144428999,0.7251841970823022,2,0.7097333334309992,0.4961410548865356,0.010000000000000028
+137,14,0.558191547961612,0.0,1.2884451303093367,0.0006495985425131873,0.034593085289813086,0.7271589444287773,2,0.7851465778173606,0.5446341524184527,0.0
+137,15,0.42850032349889033,0.0,1.2989120069385893,0.0006761222569533102,0.03449281789823099,0.7250668237369385,2,0.801621930631937,0.493108825925708,0.0
+137,16,0.5141634590461589,0.0,1.0281577453439084,0.0007092520112880704,0.031758138868464465,0.7756377655871441,2,0.8472551554234671,0.5254138488264848,0.0
+137,17,0.44327677543870897,0.05,1.0562408637149117,0.0007015120235951295,0.03140313719938077,0.7571938873802978,2,0.8565298982569595,0.47830437016257726,0.0
+137,18,0.4111474588813392,0.0,1.0982128523413173,0.0006958510601668511,0.03234987234216764,0.7632164869285917,2,0.8629009014969866,0.4304404778579799,0.0
+137,19,0.4001300648411834,0.0,1.1137878488289044,0.0006776164258991758,0.031562934347330006,0.7603969344168878,2,0.8827412131321447,0.37056880081644267,0.0
+137,20,0.5846250741138964,0.0,1.2633661092065471,0.0006148546489161856,0.033141399487981,0.7321197775182641,2,0.9604208609310231,0.42825924262679443,0.0
+137,21,0.46236103467368106,0.05,1.0900105556653767,0.0006872235656273305,0.03190728129067886,0.7509368342193724,2,0.98197561114103,0.3955652359144019,0.0
+137,22,0.5533923485568722,0.0,1.2477776146676294,0.0006336019480018423,0.0333852879443978,0.7351586154672894,2,1.0,0.4446411618562408,0.0
+137,23,0.5464567386861533,0.05,1.0704195955044864,0.0006954515725771499,0.03197583099635784,0.7545798568169907,2,1.0,0.4548557956205111,0.0
+137,24,0.5314909429333108,0.05,1.106747278710618,0.0006960117032564675,0.032015418227032584,0.7477901097283035,2,1.0,0.47163647644436935,0.0
+137,25,0.576311204730998,0.05,1.1259633879979822,0.0006914120484463672,0.03252536642069493,0.744150475165791,2,1.0,0.5210373491033264,0.0
+137,26,0.6340375871689032,0.1,1.1383839067731356,0.0007447348624394513,0.0330619343684276,0.7271333404891343,2,1.0,0.5467919572296775,0.0
+137,27,0.498255820232093,0.15000000000000002,1.1329641417918073,0.0007338236013335511,0.033048213848712524,0.713116422225258,2,1.0,0.4941860674403102,0.0
+137,28,0.5795674476979445,0.10000000000000002,1.1695393685232438,0.0007223749045779143,0.033524291881673315,0.7209172208162581,2,1.0,0.5318914923264819,0.0
+137,29,0.4982783685027419,0.15000000000000002,1.1692914219704633,0.0007681150408208672,0.03371874106251539,0.7056131345340096,2,1.0,0.4942612283424729,0.0
+137,30,0.46029624154208576,0.10000000000000002,1.2030751611819328,0.0007528446407182639,0.03393903195018081,0.7141078071232415,2,0.9999154155634442,0.43441948698293453,0.0
+137,31,0.5471052007815091,0.05000000000000002,1.2184669861063226,0.0007371136322744233,0.03441745127837799,0.7261266721207791,2,1.0,0.45701733593836386,0.0
+137,32,0.5672000501744059,0.10000000000000002,1.2260211643244576,0.0007249232668513142,0.03476781081590066,0.7094117913075959,2,1.0,0.4906668339146863,0.0
+137,33,0.5603777783478523,0.10000000000000002,1.2383466694775986,0.0007619179743874591,0.035316388484466485,0.7068490548320492,2,1.0,0.5345925944928409,0.0
+137,34,0.577819873025618,0.10000000000000002,1.2408679817853718,0.0007936939947680117,0.035073363311864655,0.706313149887224,2,1.0,0.55939957675206,0.0
+137,35,0.5013048743134052,0.05000000000000002,1.2529377477111647,0.0007779391536461946,0.03577917892528896,0.7192019312519178,2,1.0,0.5043495810446842,0.0
+137,36,0.46995002517737433,0.0,1.2682672990837518,0.00076374904734732,0.035103451711100055,0.7310989220404783,2,1.0,0.46650008392458125,0.0
+137,37,0.6236062089820391,0.0,1.2814863005790413,0.0007508431454839321,0.035225661439175666,0.728497335171475,2,1.0,0.5120206966067973,0.0
+137,38,0.48287320963917446,0.0,1.2701749557426059,0.0007459593196527342,0.0355283578209357,0.7307307250398416,2,1.0,0.4429106987972483,0.0
+137,39,0.5518030687877237,0.0,1.2870569487627412,0.0007334314155857162,0.03543731244713051,0.7274010261685377,2,1.0,0.4726768959590789,0.0
+137,40,0.5755827905481226,0.0,1.297386707293166,0.0007230741138485172,0.03522832745760602,0.7253520733067348,2,1.0,0.5186093018270751,0.0
+137,41,0.5736187584688868,0.0,1.2999233789479616,0.000746848647181615,0.036023891221822035,0.7248369543487873,2,1.0,0.5787291948962895,0.0
+137,42,0.5921399438652875,0.0,1.3003235161115658,0.0007679527409452001,0.0356421449189719,0.7247487205271388,2,1.0,0.6404664795509581,0.0
+137,43,0.6804393607385055,0.0,1.2778143723410993,0.0006362028345390707,0.03355562388391291,0.7292682630500393,2,1.0,0.7014645357950187,0.0
+137,44,0.6303894843352669,0.0,1.273624299816459,0.0006380343627545936,0.03389281005325655,0.7300940174818248,2,1.0,0.7346316144508896,0.0
+137,45,0.698948233682118,0.0,1.266058189457414,0.0006326875152400273,0.03352310288254985,0.7315844722566501,2,1.0,0.7631607789403934,0.0
+137,46,0.6617838774199742,0.0,1.261190840695402,0.0006345467865946901,0.03357006940669911,0.732538460273804,2,1.0,0.8059462580665808,0.0
+137,47,0.5816118229986195,0.0,1.152481132819234,0.0008061605465187772,0.03400476359266593,0.7532286335901123,2,1.0,0.7720394099953982,0.0
+137,48,0.665741894930816,0.0,1.300753053807208,0.0006716585569990628,0.034765699964415406,0.724701449459499,2,1.0,0.8191396497693868,0.0
+137,49,0.7300783991203743,0.05,1.142849224692392,0.0008685207323090509,0.03495475280018163,0.7408543395214234,2,1.0,0.8669279970679147,0.0
+138,0,0.17582387180672726,0.05,1.3660160348550414,0.0007032502354783417,0.03605268397320223,0.6958424539457393,1,0.16255627733197361,0.2297639158017883,0.05
+138,1,0.24776920278036568,0.0,1.3655742422610373,0.0007019693623874605,0.03643431486833198,0.711570091293913,1,0.23478824523109576,0.28531105649827393,0.05
+138,2,0.16589899082480308,0.0,1.385063190697592,0.0007006639440402829,0.036654458283455295,0.7075543236176208,1,0.26309558467664673,0.24605178729325572,0.11
+138,3,0.2909886234702384,0.0,1.3852193926285787,0.0007003336661046085,0.03671068723362132,0.7075221377702049,1,0.33641082708044134,0.3108161133069465,0.11
+138,4,0.22036935345179576,0.0,1.38460636423839,0.0007003363632808075,0.036748308136083055,0.7076489772755831,1,0.3836170759099154,0.28701125627775126,0.16999999999999998
+138,5,0.289460602351989,0.0,1.384690376896081,0.0006998810892988075,0.03673147872868412,0.7076317846563757,1,0.4101763251177648,0.31966296186923787,0.21999999999999997
+138,6,0.2876693404254323,0.0,1.36583591367841,0.0006854124307603577,0.03621142072672527,0.7115231803083512,1,0.44454870735666857,0.3402576428353276,0.26999999999999996
+138,7,0.2622368628074641,0.0,1.363457857083617,0.0006837729166026879,0.03581153619953251,0.7120117220496861,0,0.4898396260764183,0.30264331226905905,0.32999999999999996
+138,8,0.2961634663570023,0.0,1.3860783685685305,0.0007003991843932642,0.03649162382569063,0.7073443271542165,0,0.5124969418670839,0.32263178901174305,0.32999999999999996
+138,9,0.28073357530859133,0.0,1.386135055891749,0.0007001768318178626,0.03637149168231545,0.707332684328005,0,0.517218910830117,0.3323565217268349,0.32999999999999996
+138,10,0.3305511096024287,0.0,1.386006552104571,0.0006999848438487091,0.03654603045248833,0.7073593650778592,0,0.5463408514367575,0.3644393719985455,0.33999999999999997
+138,11,0.34925595505373996,0.0,1.3857473662628474,0.0007007777010365362,0.03666155465731493,0.7074126859950871,0,0.6446131900952266,0.3454711284013689,0.42
+138,12,0.3727943224025127,0.0,1.3853054689982498,0.0007014327370310589,0.03676433583337567,0.7075038703881705,0,0.6748085593760251,0.35537108873634643,0.43
+138,13,0.36463360748649676,0.0,1.3857562219957442,0.0007008210031655448,0.036783970787366886,0.7074108351069094,0,0.6930461324092752,0.37355820381083504,0.44
+138,14,0.40145135207341553,0.0,1.3858116403574183,0.000700292895351289,0.03675530616511677,0.7073995830625276,0,0.7978588266023899,0.3406692092085969,0.52
+138,15,0.4257135181167896,0.0,1.3855132831609716,0.0007006499527509832,0.03670809234407941,0.7074611870353601,0,0.827579265683083,0.35353591709236837,0.53
+138,16,0.4295910812907685,0.0,1.37305475000567,0.0007075763560128968,0.036341928360021265,0.7100300708194927,0,0.8448530195754137,0.37964174813124574,0.53
+138,17,0.46679055391677937,0.0,1.374908569955382,0.0007042866627185128,0.03658776506365332,0.7096495998139377,0,0.9198450971552457,0.38281589970814484,0.5900000000000001
+138,18,0.47641164146843895,0.0,1.3749941337616076,0.0007089883342954441,0.0362708585842338,0.7096300317238251,2,1.0,0.38803880489479653,0.6500000000000001
+138,19,0.55427742371485,0.0,1.0005892523297184,0.0006140135927005174,0.02882260995795411,0.7804315009181598,2,1.0,0.44759141238283345,0.6400000000000001
+138,20,0.5564936814449409,0.05,1.185535860588674,0.0007305940128838841,0.03313416004293708,0.7326291417832943,2,1.0,0.48831227148313666,0.6350000000000001
+138,21,0.4830238293478326,0.05,1.186440076725729,0.0007197802295109915,0.03300214803518496,0.7324562215920779,2,1.0,0.4434127644927755,0.6150000000000001
+138,22,0.44889337654634326,0.0,1.2079572588837382,0.0007116476870921185,0.03401982128409568,0.7428089043916579,2,1.0,0.39631125515447774,0.5950000000000001
+138,23,0.5335020782227501,0.0,0.8833442581889843,0.0005410511720705854,0.025940027512025926,0.7998846596020135,2,1.0,0.4116735940758337,0.5900000000000001
+138,24,0.5629867182078109,0.05,1.176632809520942,0.0007215492195366144,0.03357787741291145,0.7343730170056582,2,1.0,0.4766223940260364,0.5800000000000001
+138,25,0.6305506108095736,0.05,1.1802517645575243,0.0007298524132075837,0.03288974709786632,0.7336632266093092,2,1.0,0.5351687026985789,0.55
+138,26,0.6261549881898557,0.1,1.1823922767925055,0.0007424460065642196,0.03390312657815775,0.7183158225096399,2,1.0,0.5871832939661857,0.52
+138,27,0.612568544402968,0.1,1.1871765732276618,0.0007525343632025219,0.03429399521841503,0.7173426751979517,2,1.0,0.6418951480098933,0.51
+138,28,0.5276515110716598,0.1,1.0287318545010353,0.0009100582406404608,0.03441640751136236,0.748277767622638,2,1.0,0.5921717035721994,0.49
+138,29,0.4923492205256207,0.05,1.1321370392191168,0.00077904320071904,0.03378677374996131,0.7429398295130543,2,1.0,0.5411640684187357,0.47
+138,30,0.6446390273270277,0.0,1.147552842313163,0.0007680213677902577,0.03356743792271687,0.7541576798050103,2,1.0,0.5821300910900926,0.43999999999999995
+138,31,0.6101393562525997,0.05,1.1491361991988884,0.0007985802665408899,0.03401156680112004,0.7396724178454213,2,1.0,0.6337978541753325,0.42999999999999994
+138,32,0.522251262503155,0.0,1.0093376368350955,0.0009143998596439478,0.034181668889816795,0.7788252468719805,2,1.0,0.5741708750105167,0.4099999999999999
+138,33,0.6100755961623334,0.0,1.0045207436399326,0.0006591251988710921,0.030393139910749788,0.7797415700793395,2,1.0,0.6335853205411116,0.3999999999999999
+138,34,0.5254424356634404,0.05,0.9943058607571443,0.000915334186726928,0.03406674915841746,0.7683225395847615,2,1.0,0.5848081188781346,0.3799999999999999
+138,35,0.6105472074971202,0.0,0.8369504612967267,0.0004515614857512382,0.025097783668767488,0.8072355319092729,2,1.0,0.6351573583237341,0.3699999999999999
+138,36,0.5236204737949894,0.05,0.9927274710035084,0.0009160601622886615,0.034008329748235686,0.7686031204879149,2,1.0,0.5787349126499648,0.34999999999999987
+138,37,0.5905146918028793,0.05,0.6625363357938293,0.000265747611249646,0.018928565743421076,0.822288837728086,2,1.0,0.6017156393429312,0.34499999999999986
+138,38,0.6691433854665173,0.1,1.0036940444157674,0.0009174355439513209,0.03372236744198209,0.7529617198175219,2,1.0,0.6638112848883911,0.31499999999999984
+138,39,0.617498167532407,0.1,1.3082186991651776,0.0007156328922037877,0.03549627873734597,0.6921840896329874,2,1.0,0.6916605584413569,0.30999999999999983
+138,40,0.6903835441717499,0.0,1.3055702139622694,0.0007081770443062785,0.03484471702367514,0.7237247385585999,2,1.0,0.7346118139058331,0.2799999999999998
+138,41,0.6407042429101081,0.0,1.2988447178476288,0.000717840215248302,0.03488071375707314,0.7250636049374994,2,1.0,0.7690141430336936,0.2749999999999998
+138,42,0.5642720004033221,0.0,1.2956512154080353,0.000708978016594676,0.03547997952637725,0.7257032884942867,2,1.0,0.7142400013444075,0.2549999999999998
+138,43,0.6988635729906607,0.0,1.313774111622873,0.0007025732751527433,0.03475403663313995,0.722083633955751,2,1.0,0.762878576635536,0.22499999999999978
+138,44,0.6976063578811547,0.0,1.3123370598775796,0.000709573119523335,0.03583918745577561,0.7223691201472553,2,1.0,0.8253545262705156,0.19499999999999978
+138,45,0.7095092845638316,0.0,1.0332989854932872,0.0006230860785315337,0.030019942083639624,0.7747718730143638,2,1.0,0.8650309485461056,0.16499999999999979
+138,46,0.7230374431988198,0.0,1.060296620944019,0.0006504131106816521,0.030527441997817185,0.770016177138777,2,1.0,0.9101248106627328,0.1349999999999998
+138,47,0.7085467674678927,0.0,1.0835892943269325,0.0006824089094134549,0.03195393484783341,0.7658538546094987,2,1.0,0.9618225582263091,0.12499999999999979
+138,48,0.7064633007489524,0.0,1.0712155932531031,0.0006726644550794544,0.03071604852387194,0.7680688964320518,2,1.0,0.9882110024965081,0.11999999999999979
+138,49,0.77,0.0,1.0956836993383416,0.0006633608528830522,0.03190331487364442,0.7636849709951606,2,1.0,1.0,0.08999999999999979
+139,0,0.16493803745485547,0.0,1.364250967334161,0.0007033564952646347,0.035981335357454645,0.711841032601457,1,0.12255384888983739,0.24014730114470803,0.05
+139,1,0.23027344635476216,0.0,1.3638336489507896,0.000702169670895923,0.03643106738889444,0.7119271135937921,1,0.18452209661029312,0.2856357084705319,0.05
+139,2,0.1474751085000714,0.0,1.3633093336230182,0.0007034726337526466,0.03615940479789024,0.7120340975259534,1,0.22246106978024438,0.2320457802566196,0.11
+139,3,0.1286818899126771,0.0,1.385118784704177,0.000699748513380961,0.03670130945916954,0.7075431987588017,1,0.24828169300381872,0.20594432453780184,0.16999999999999998
+139,4,0.12109607451511593,0.0,1.3851159599242264,0.0006995650036267893,0.03674590691317515,0.7075438592240866,1,0.26980676015212995,0.1555456948729015,0.22999999999999998
+139,5,0.23353415756217394,0.0,1.3454582271698519,0.0007366520554279356,0.03645524131440852,0.7156669145824469,1,0.31466015676228615,0.21134367565124607,0.24
+139,6,0.24415272827853834,0.0,1.384857843565885,0.0007001538494939213,0.03668314362813664,0.7075970235627546,2,0.35286808776147205,0.23549632520674374,0.29
+139,7,0.2954123677243566,0.0,1.3822494640597445,0.0006973695329762393,0.03649891759867122,0.7081375648869616,2,0.4008217229067078,0.2837492156900295,0.27999999999999997
+139,8,0.3136745541882278,0.0,1.3837744197008386,0.0006986395572680492,0.03651803453906565,0.707821763639907,2,0.4515480072936612,0.31877583878482135,0.27499999999999997
+139,9,0.3450874957723645,0.0,1.3827662716838884,0.0006981927668934441,0.036251160412320266,0.7080303998794311,2,0.49072579633026986,0.34444489018923363,0.26499999999999996
+139,10,0.2682862099198654,0.0,1.3831988250746678,0.0006980830413361749,0.03651628723007416,0.707941018320466,2,0.5098180568313935,0.2994996334295924,0.24499999999999997
+139,11,0.350704031648677,0.0,1.3841353312119924,0.000699172120350347,0.036605597121044456,0.7077468975789725,2,0.5525067980597651,0.324422174425864,0.23999999999999996
+139,12,0.27935490166248444,0.0,1.383006270896119,0.0006987933636214527,0.03665532787529434,0.7079805356210906,2,0.578191282029604,0.25662650984041013,0.21999999999999997
+139,13,0.38423344121044994,0.0,1.383657173896413,0.0007002244504381445,0.03672009047183283,0.7078453551549546,2,0.62652072335448,0.31650396012127324,0.20999999999999996
+139,14,0.39675315691810925,0.0,1.32940219446276,0.0007220102556216397,0.03605574649721365,0.7189286942476009,2,0.6741381783553129,0.3693493149791659,0.19999999999999996
+139,15,0.44284531804641725,0.0,1.3231330862433999,0.0007202083266368755,0.035639904755351406,0.720194480175266,2,0.7518066007100689,0.3990433593263105,0.19499999999999995
+139,16,0.5522736405510245,0.0,1.331246893295425,0.0007124567110246205,0.036216418858889106,0.7185596491144869,2,0.8363534541020217,0.4651664387177231,0.16499999999999995
+139,17,0.5353390511153788,0.0,1.2870530339507247,0.0008273858352126598,0.0362161955294417,0.7273645406921178,2,0.8803942663461934,0.5240035263140371,0.15499999999999994
+139,18,0.45999026623809336,0.0,1.2825615432532755,0.0008344566401233173,0.03668339710425374,0.728251518623239,2,0.91828345816775,0.4619701862646028,0.13499999999999995
+139,19,0.626141486743085,0.0,1.2975889066755224,0.0008175389411926381,0.03628661353360525,0.7252741471036411,2,1.0,0.52047162247695,0.10499999999999995
+139,20,0.6169881868529064,0.0,1.2920672377054379,0.0008234424535301866,0.03679510223462764,0.7263706319209697,2,1.0,0.5566272895096881,0.07499999999999996
+139,21,0.6035264611700331,0.0,1.2858649971701743,0.0008280938687713153,0.03659474963397895,0.7275997904496424,2,1.0,0.611754870566777,0.06499999999999996
+139,22,0.5189543293034823,0.0,1.279320878209159,0.0007317014535943821,0.03494460429219213,0.7289329843144073,2,1.0,0.5631810976782744,0.04499999999999996
+139,23,0.6578433885860224,0.0,1.2484899516365027,0.0008621382292572752,0.03655968130984368,0.7349308683300984,2,1.0,0.6261446286200747,0.014999999999999958
+139,24,0.6528974228891584,0.0,1.2735618055000388,0.0007349253935804393,0.035180712262298394,0.7300681455648227,2,1.0,0.6763247429638615,0.0
+139,25,0.6708470650309944,0.0,1.2658555391016455,0.0007343239942471574,0.035013353902801074,0.7315843499970812,2,1.0,0.7361568834366482,0.0
+139,26,0.6379658412173201,0.0,1.257050143407544,0.0007326005602848849,0.03494259129663782,0.7333105981695676,2,1.0,0.7598861373910673,0.0
+139,27,0.7129415868846121,0.0,1.2578923895638743,0.0007220258455079733,0.03451267544242344,0.7331499886727679,2,1.0,0.8098052896153737,0.0
+139,28,0.5806623695514332,0.05,0.9594929778180991,0.0005582363856854144,0.02728831081673112,0.7745860991420654,2,1.0,0.7688745651714445,0.0
+139,29,0.7192553321996192,0.0,1.1912846612811618,0.0006876418867536147,0.03339827202411204,0.7459902834714256,2,1.0,0.8308511073320641,0.0
+139,30,0.5865766636015803,0.05,0.9474025012814369,0.0005154121293133153,0.02648573856311225,0.7767049703005504,2,1.0,0.7885888786719345,0.0
+139,31,0.7199363057278167,0.0,1.0978169734753016,0.0006093016807814796,0.030974713851044954,0.7633192955042754,2,1.0,0.8331210190927225,0.0
+139,32,0.6820367635595136,0.05,0.9355465990699604,0.0004831860656774668,0.025878592455436545,0.7787655482652728,2,1.0,0.8734558785317121,0.0
+139,33,0.7475381360180005,0.0,0.9338374449284329,0.000474787115284718,0.025960433627101202,0.7917016156180723,2,1.0,0.9251271200600014,0.0
+139,34,0.6110115622838748,0.05,0.9544904648206693,0.0004907911142812565,0.026421427655526637,0.7754818369596959,2,1.0,0.8700385409462492,0.0
+139,35,0.6943100240163237,0.0,0.9818835879841658,0.0005293737485177183,0.02709339206376518,0.7836487520089389,2,1.0,0.9143667467210791,0.0
+139,36,0.6966530229133223,0.05,0.951678821820465,0.0005060594909686166,0.026770229279543596,0.7759656836856755,2,1.0,0.9555100763777414,0.0
+139,37,0.6811658679430903,0.05,0.9966445191341176,0.0005073502498316875,0.027082891733271573,0.7680513853509765,2,1.0,0.9705528931436345,0.0
+139,38,0.72,0.05,1.0286103728600808,0.0005025162703324224,0.028140538593500807,0.7623097465358705,2,1.0,1.0,0.0
+139,39,0.7,0.1,1.0107065545787435,0.0004862993422492499,0.027052877958617966,0.7518159328519463,2,1.0,1.0,0.0
+139,40,0.71,0.1,1.0073521076679668,0.00047881442371310615,0.026792427726078004,0.752444094491486,2,1.0,1.0,0.0
+139,41,0.77,0.1,1.0400916893473269,0.0004776127091502651,0.027899177296769183,0.74629581331634,2,1.0,1.0,0.0
+139,42,0.72,0.15000000000000002,1.0723338359053274,0.0005045858638731563,0.028338670663588132,0.7254496482874976,2,1.0,1.0,0.0
+139,43,0.7,0.10000000000000002,1.0671510535593354,0.0004977053574213473,0.028235393551336842,0.7411306700402084,2,1.0,1.0,0.0
+139,44,0.71,0.10000000000000002,1.0358907265069865,0.00047258372978511146,0.027556313924747673,0.7470922938881241,2,1.0,1.0,0.0
+139,45,0.69,0.10000000000000002,1.0678596876905573,0.00047405711405797515,0.02813160166840043,0.7410037682128531,2,1.0,1.0,0.0
+139,46,0.77,0.10000000000000002,1.0973049905202665,0.0004799255716910642,0.028475539711486343,0.7353104494448266,2,1.0,1.0,0.0
+139,47,0.6305287248446806,0.15000000000000002,1.1272718493338592,0.0005109759042352814,0.02979458691081193,0.7143704959168108,2,1.0,0.9350957494822687,0.0
+139,48,0.595436639764007,0.10000000000000002,1.1503454529893236,0.0005371555749616883,0.03024036389727767,0.7248364182518735,2,1.0,0.8847887992133566,0.0
+139,49,0.6811610055235984,0.05000000000000002,1.1483545224781917,0.0005465935572996006,0.030388836702508824,0.7399199026563459,2,1.0,0.9038700184119947,0.0
+140,0,0.1838802710198409,0.05000000000000002,1.3687367499460845,0.0007021250539443505,0.036032079519478746,0.6952667963648298,1,0.141402314111335,0.24796487026957886,0.01
+140,1,0.24965175678451895,0.0,1.3683363976814595,0.0007028951193488586,0.03646008261091236,0.7110024802051516,1,0.21545890843191687,0.31413712944449357,0.01
+140,2,0.2726598729354748,0.0,1.382453141711855,0.0007017838928402954,0.036637531074693155,0.7080936423922439,1,0.2780589856068222,0.3844640932436234,0.01
+140,3,0.30799006394412864,0.0,1.381556601897055,0.000701983233185359,0.036628749457749264,0.7082788375606741,1,0.3323874649886582,0.43884817066032766,0.01
+140,4,0.24352682628749062,0.0,1.3802138990615576,0.0006994917661205466,0.03666174127536044,0.7085572181124258,1,0.3535545817092556,0.3992757422975039,0.06999999999999999
+140,5,0.22203548475515786,0.0,1.3821508186886389,0.0007018490305688045,0.03670483222639066,0.7081561008093705,1,0.3849947609647457,0.3576243947249895,0.13
+140,6,0.32258572674818403,0.0,1.3821780471093368,0.0007008312940712704,0.036639669848487745,0.7081508941294222,1,0.42982949936467185,0.4071513399018297,0.18
+140,7,0.26824609472605787,0.0,1.3778937247644287,0.0007008625600774189,0.036452766678642036,0.7090355455761954,1,0.45060725973121907,0.3684451794004374,0.24
+140,8,0.3407414795944731,0.0,1.3573966772708648,0.0006794136032539889,0.03622644179674831,0.7132547575090245,1,0.49338950067387294,0.393517181195392,0.29
+140,9,0.2881381625258285,0.0,1.3541429157258276,0.0006767226514976239,0.03518198243882651,0.7139208618257797,1,0.5330170677050817,0.33860729609683304,0.35
+140,10,0.4020507421762739,0.0,1.364495932542193,0.0007116807665352651,0.03639773055625898,0.7117873665315985,1,0.5943415112556604,0.38010404412264265,0.35
+140,11,0.395412051696629,0.0,1.3619479202397144,0.0007127449716989283,0.036315666943851924,0.712309362976949,1,0.6322384736397164,0.413761953075761,0.39999999999999997
+140,12,0.46735940415493105,0.0,1.314032175564923,0.00071469850863779,0.035475018580167585,0.7220269758701814,1,0.7008798901774087,0.47350480864279343,0.39999999999999997
+140,13,0.481492350476586,0.0,1.3083747986217922,0.0007139891493826325,0.03508910685571578,0.723161290732963,1,0.7548631884003221,0.5243007817882444,0.41
+140,14,0.491688362513127,0.0,1.3106691684044451,0.0007292513955491208,0.03572650938488275,0.7226956077360392,1,0.7777020034578266,0.5649755376762924,0.45999999999999996
+140,15,0.496944970668296,0.0,1.3113282977609415,0.0007205172796326038,0.0355460122026751,0.7225669961956064,1,0.8136783893962,0.6071917812654203,0.51
+140,16,0.5727417180439173,0.0,1.3848527770961951,0.0006999635327372405,0.03653565957996174,0.7075981505860659,1,0.869837250028465,0.6943289351131818,0.52
+140,17,0.5899391026363254,0.0,1.3858767121728917,0.0007000375848177947,0.036438477740206726,0.7073862196581122,1,0.9060765693464403,0.7427076778835712,0.5700000000000001
+140,18,0.6447822219662018,0.0,1.3855997131613464,0.0007003328406120784,0.036396922490619404,0.7074434304378604,1,0.9582921370236608,0.831266580026402,0.5800000000000001
+140,19,0.5794100898735333,0.05,1.1205470553642671,0.000973405975364237,0.036311808891795826,0.7450732207459531,2,0.9712574208472322,0.7982333085900069,0.6400000000000001
+140,20,0.7186921405692536,0.0,1.1217745961384713,0.0009689490741095451,0.035813224314098634,0.7588321615502519,2,1.0,0.828973801897512,0.6100000000000001
+140,21,0.6671796003188895,0.05,1.2225351835065044,0.0007311060094775585,0.033861023694816715,0.725319293016878,2,1.0,0.8572653343962984,0.6050000000000001
+140,22,0.6536378642568272,0.0,1.2242498234045172,0.0007344816374049203,0.03364952273416305,0.7396752239808433,2,1.0,0.878792880856091,0.6000000000000001
+140,23,0.7506770215944334,0.0,1.2166772519873117,0.0007388616479112441,0.03424236938269146,0.7411290371487232,2,1.0,0.9355900719814445,0.5700000000000001
+140,24,0.7147509801932467,0.05,1.240132965887192,0.0007280047865629479,0.03394708414506457,0.7218006449483524,2,1.0,0.9825032673108223,0.56
+140,25,0.71,0.0,1.2414195231302418,0.0007168594632801489,0.03463084879118921,0.7363623615452313,2,1.0,1.0,0.555
+140,26,0.6371661439916891,0.0,1.2332126334189595,0.0007208186358304722,0.03362381417506454,0.7379509635968075,2,1.0,0.9572204799722972,0.535
+140,27,0.5963333334865315,0.0,1.2362192447033422,0.0007339099267552803,0.034805341220105895,0.7373640608316848,2,1.0,0.8877777782884384,0.515
+140,28,0.6862480234113841,0.0,1.2378089635483978,0.0007450306063437051,0.034035981184000995,0.7370517719338332,2,1.0,0.9208267447046139,0.51
+140,29,0.7595572256572589,0.05,1.2344090507415688,0.0007486334889952528,0.03489320458224398,0.722940308527929,2,1.0,0.9651907521908633,0.48
+140,30,0.72,0.05,1.2617362393556828,0.0007354888061599233,0.03520443610461814,0.7174388607138519,2,1.0,1.0,0.47
+140,31,0.6362539327413326,0.0,1.2591406229670843,0.0007250412719802166,0.03410539493826352,0.7329045313082646,2,1.0,0.9541797758044421,0.44999999999999996
+140,32,0.6011781943621932,0.0,1.2562750634655637,0.0007367338005790573,0.034971302722251574,0.7334605341055733,2,1.0,0.9039273145406442,0.42999999999999994
+140,33,0.7038630797036811,0.0,1.256537380032469,0.0007456369192431619,0.034440154925363266,0.7334057675864488,2,1.0,0.946210265678937,0.41999999999999993
+140,34,0.77,0.0,1.254181244108088,0.0007353207973375857,0.03514887837938245,0.7338702195784362,2,1.0,1.0,0.3899999999999999
+140,35,0.71,0.0,1.276213605141558,0.0007250058336874617,0.034326200423553895,0.7295491546970854,2,1.0,1.0,0.3849999999999999
+140,36,0.77,0.0,1.2733786099354325,0.0007293303682328502,0.03541213226212471,0.7301064511620767,2,1.0,1.0,0.35499999999999987
+140,37,0.71,0.0,1.2943450604944937,0.0007195902378409686,0.034607453035651894,0.7259589900248817,2,1.0,1.0,0.34999999999999987
+140,38,0.72,0.0,1.2909187579404993,0.0007229366673240517,0.03542509041055372,0.7266387699231139,2,1.0,1.0,0.33999999999999986
+140,39,0.7,0.0,1.2882064083741531,0.0007136731389798588,0.03483710302007441,0.7271808813786711,2,1.0,1.0,0.32999999999999985
+140,40,0.6346552914094091,0.0,1.0131197590959722,0.000548395059764459,0.028853345519106826,0.7782993983968367,2,1.0,0.9488509713646972,0.30999999999999983
+140,41,0.5951461464745507,0.0,1.0218121609516977,0.0005700654617675915,0.028363257780165563,0.7767883869613319,2,1.0,0.8838204882485026,0.2899999999999998
+140,42,0.5775873043668089,0.0,1.0269076526479286,0.0005874019037463056,0.029425416060368637,0.7758976140992387,2,1.0,0.8252910145560299,0.2699999999999998
+140,43,0.6804982444297929,0.0,1.0293035104542037,0.000600923533668135,0.02903300111066731,0.7754760372282196,2,1.0,0.868327481432643,0.2599999999999998
+140,44,0.7448797169050916,0.05,1.0172436572299584,0.0005914316982313693,0.029110448829568387,0.7643311470082608,2,1.0,0.9162657230169721,0.2299999999999998
+140,45,0.6112120897051299,0.1,1.0585386748076067,0.0006135204903655591,0.030403225971232333,0.7427353147741889,2,1.0,0.8707069656837663,0.2099999999999998
+140,46,0.6751407289121195,0.05,1.0692155854633774,0.0006235357064622892,0.03073181498245505,0.7548293767608314,2,1.0,0.8838024297070651,0.2049999999999998
+140,47,0.5999653678677641,0.1,1.0867663613644007,0.0006133860643582086,0.030540647449044556,0.7373047837349972,2,1.0,0.8332178928925471,0.1849999999999998
+140,48,0.6700535301218541,0.05,1.0949927718718866,0.0006204383917945235,0.030896425393812637,0.7500288856392209,2,1.0,0.8668451004061803,0.1799999999999998
+140,49,0.744713022428579,0.1,1.1133357211942472,0.0006121268915872225,0.030444912010823964,0.73212680710694,2,1.0,0.9157100747619301,0.1499999999999998
+141,0,0.19372585478353238,0.1,1.3686849763561226,0.0007036274419944886,0.036065674203484124,0.6791586021177971,1,0.15333946048234182,0.2668568120490425,0.01
+141,1,0.130715948073592,0.0,1.3682798123482636,0.0007043904005510245,0.036455500734340625,0.711013492624426,1,0.1739590038735152,0.23276765572620564,0.06999999999999999
+141,2,0.25709005350804015,0.0,1.3708122753890526,0.0007036629525824544,0.036362130007309104,0.710493160393929,1,0.2515717564796716,0.2967997958005171,0.06999999999999999
+141,3,0.27335084951454414,0.0,1.3838727894317466,0.0007002706264689405,0.03666736431077522,0.7078007446974426,1,0.2990349268655736,0.3622954170386447,0.07999999999999999
+141,4,0.3256543676743251,0.0,1.3839835786705263,0.0007012917855031979,0.036752441775778896,0.7077774084574269,1,0.3557774410726504,0.40377421099632477,0.07999999999999999
+141,5,0.349222571325609,0.0,1.3822727119793994,0.0006985780054571526,0.03666203126163757,0.7081322604763839,1,0.4135499053498866,0.4816003481771625,0.07999999999999999
+141,6,0.3887969276930279,0.0,1.377746308097218,0.0007014616362960757,0.036554397868865676,0.7090657101392085,1,0.466330281826914,0.5519377635120268,0.08999999999999998
+141,7,0.40445394144482405,0.0,1.3809503281172422,0.0007008289386221596,0.036484960756178506,0.7084045668639256,1,0.5147790198939677,0.614270948273118,0.09999999999999998
+141,8,0.48684602050271364,0.0,1.358289111068448,0.0007134782265799775,0.035994137360167995,0.713058260605569,1,0.5887449115462288,0.6692843382051119,0.09999999999999998
+141,9,0.503547578513877,0.0,1.3531358515884322,0.0007131320161911897,0.036502006688034834,0.7141116319730174,0,0.6378123472576901,0.7343775232456184,0.09999999999999998
+141,10,0.45786908246260793,0.0,1.3859683770714903,0.0007001352033105261,0.036552424340512125,0.7073672050786146,0,0.6581925550464098,0.7583389606545484,0.09999999999999998
+141,11,0.4999629048527001,0.0,1.3862152920370332,0.0007001188777774107,0.036676943803268205,0.7073160981091672,0,0.6739896221905181,0.7802217902867296,0.10999999999999997
+141,12,0.4955764026257413,0.0,1.3859836148570588,0.0007001177329179801,0.03674459998080282,0.7073640580974244,0,0.697027596248405,0.8053891464626654,0.11999999999999997
+141,13,0.5155609403412356,0.0,1.385238014167562,0.0007001118045044767,0.03675875293790056,0.7075183761376618,0,0.7107111697447807,0.8227067697685414,0.11999999999999997
+141,14,0.548947430287138,0.0,1.3853039373259968,0.0007012724398925155,0.03677228482604933,0.7075042537000298,0,0.7941579985980309,0.8033071025927573,0.17999999999999997
+141,15,0.5514898078048849,0.0,1.3856039404893206,0.000700364958562229,0.03668884536483846,0.7074425422240115,0,0.8148212010569951,0.8210079581164555,0.17999999999999997
+141,16,0.5832880172701107,0.0,1.3533534848788333,0.0006771494409150282,0.03536581710575947,0.714081891990291,0,0.8556768198328204,0.8460037677620788,0.18999999999999997
+141,17,0.5900292320396067,0.0,1.3546128908658428,0.0006774978551905291,0.036157855030672224,0.7138245487415096,0,0.8727531409637111,0.881885442341026,0.18999999999999997
+141,18,0.6088226676836577,0.0,1.3576399061448634,0.0006796073826453991,0.03542868967585751,0.7132049299010507,0,0.960466504800148,0.8421979700120195,0.26999999999999996
+141,19,0.626034945445715,0.0,1.3654958050805417,0.0006856386476465251,0.036344336250739025,0.711592892425178,0,0.9744750630157205,0.8832289113007098,0.26999999999999996
+141,20,0.6495015391066947,0.0,1.366954451814585,0.0006862403902557587,0.03595514780974885,0.7112931971097097,0,1.0,0.8983384636889825,0.27999999999999997
+141,21,0.6320489061289568,0.0,1.3677887805409334,0.0006875833969395811,0.03615234435644647,0.7111212813989032,0,1.0,0.8734963537631895,0.36
+141,22,0.6415186808009514,0.05,0.43712007450124535,7.688178155030264e-05,0.010434873595726315,0.8529246492622508,0,1.0,0.9050622693365046,0.36
+141,23,0.6250184691396845,0.1,0.4889748140077728,8.82939596761892e-05,0.011546723757986222,0.836285855044224,0,1.0,0.9167282304656152,0.36
+141,24,0.6293498495794497,0.15000000000000002,0.5482832034966529,0.00010339820437834663,0.012809738940791177,0.8170533780677097,0,1.0,0.9311661652648325,0.36
+141,25,0.6608146541702775,0.2,0.612824042105267,0.00012453376378612345,0.014144726216530998,0.7952597829012604,0,1.0,0.9360488472342584,0.42
+141,26,0.6479310562430097,0.30000000000000004,0.6744381759236829,0.00016281812838585703,0.016162923272694394,0.758639711809434,0,1.0,0.9597701874766992,0.48
+141,27,0.6527801686883618,0.30000000000000004,0.7592970070985157,0.0002311827387073468,0.019093447796779635,0.7427365268306025,0,1.0,0.9759338956278726,0.54
+141,28,0.6799999999999999,0.30000000000000004,0.8004465694542481,0.0002882469480774964,0.021367981287037437,0.7347732712284467,0,1.0,1.0,0.55
+141,29,0.6771874366643746,0.30000000000000004,0.8406289700980741,0.00031042514363713324,0.02207112595235949,0.7268601542792584,2,1.0,0.9906247888812487,0.6100000000000001
+141,30,0.77,0.25000000000000006,1.30412291001022,0.0007780827987133205,0.036200935608977705,0.6432093190524967,2,1.0,1.0,0.5800000000000001
+141,31,0.75,0.25000000000000006,1.3179555861149252,0.0007664349148023368,0.036452696986993785,0.6400339600637422,2,1.0,1.0,0.55
+141,32,0.75,0.20000000000000007,1.3320398241502842,0.0007538600256195307,0.03612807387645908,0.6539510937383879,2,1.0,1.0,0.52
+141,33,0.75,0.15000000000000008,1.3415136735902289,0.0007448421163182105,0.03657409125065615,0.6686303046879816,2,1.0,1.0,0.49
+141,34,0.71,0.10000000000000007,1.3490382131550525,0.0007367929555181937,0.03657460398898977,0.6834101709232815,2,1.0,1.0,0.485
+141,35,0.72,6.938893903907228e-17,1.3417071213557015,0.0007391189901762847,0.03588014097616561,0.7164285985277437,2,1.0,1.0,0.475
+141,36,0.6319641200146616,0.0,1.3439968999484786,0.0007325944926828577,0.03599922725069456,0.7159658333621537,2,1.0,0.9398804000488722,0.45499999999999996
+141,37,0.59436002759353,0.0,1.3430607362722649,0.0007428422774834036,0.036517194537954364,0.716152005662662,2,1.0,0.8812000919784335,0.43499999999999994
+141,38,0.6821098499720091,0.0,1.3413670877353019,0.0007512341737355631,0.03649436320476604,0.7164927523086826,2,1.0,0.9070328332400304,0.42999999999999994
+141,39,0.7553773738425756,0.0,1.3362709651797926,0.0007531342151300464,0.036537291408226494,0.7175260189369571,2,1.0,0.9512579128085855,0.3999999999999999
+141,40,0.6197942098605806,0.0,1.3465207742516359,0.0007421351764525498,0.0366377337939207,0.7154484171714591,2,1.0,0.8993140328686022,0.3799999999999999
+141,41,0.6852834240063648,0.0,1.3446355997558253,0.0007502992323591499,0.036522347761898076,0.7158287273789772,2,1.0,0.9176114133545494,0.3749999999999999
+141,42,0.7610254812860218,0.0,1.3396786054811745,0.0007523390865732164,0.03661462714806029,0.7168351612419033,2,1.0,0.9700849376200729,0.34499999999999986
+141,43,0.72,0.0,1.3482556659208857,0.0007415889085980576,0.03615357810822307,0.7150953151009264,2,1.0,1.0,0.33499999999999985
+141,44,0.71,0.0,1.3553275874228643,0.0007326115382688199,0.03666654799438346,0.7136560043361493,2,1.0,1.0,0.32999999999999985
+141,45,0.69,0.0,0.9871641423335116,0.0005939785825041698,0.028255348817133135,0.7827301549808788,2,1.0,1.0,0.32499999999999984
+141,46,0.77,0.0,1.0183840596827143,0.0005899522283632291,0.028502437845753226,0.7773753319428856,2,1.0,1.0,0.2949999999999998
+141,47,0.71,0.05,1.0478366186055748,0.0005888522468417008,0.029461078969256767,0.7587769207779399,2,1.0,1.0,0.2899999999999998
+141,48,0.72,0.0,1.0876936309555343,0.0005896013499194514,0.03001254035431599,0.7651504107441849,2,1.0,1.0,0.2799999999999998
+141,49,0.77,0.0,1.0660551593693155,0.0005783605915053428,0.029660089576871385,0.7690204030675076,2,1.0,1.0,0.2499999999999998
+142,0,0.21674688297771566,0.0,1.3703555294109908,0.0007045867355734976,0.0361295861858768,0.7105867206841397,1,0.1497494330029063,0.28111527142232823,0.0
+142,1,0.13789611086627399,0.0,1.3698293932383543,0.000705427286929893,0.036476108577195174,0.7106945646517575,1,0.17837071839755952,0.25155453142376055,0.06
+142,2,0.23216079842958817,0.0,1.3735336218898628,0.0007041955812976087,0.03643319210356149,0.7099328596272245,1,0.22393894741410955,0.31260722278216607,0.06999999999999999
+142,3,0.24267794942856885,0.0,1.3842910237418133,0.0007011947063348396,0.03669301329663286,0.7077138561403983,1,0.25630134709892927,0.3432415931464786,0.12
+142,4,0.19427680171161144,0.0,1.3850365206355622,0.0007007906541343958,0.03676695550330196,0.7075597897509527,1,0.2856527481245501,0.31432779956006296,0.18
+142,5,0.26530570315419855,0.0,1.385083091905047,0.0007003575583903461,0.036752505157336156,0.7075503324152341,1,0.328866061515887,0.3340086054121269,0.22999999999999998
+142,6,0.340232880424035,0.0,1.3855927495284786,0.0007001786105476618,0.03670735583527352,0.7074449355204839,1,0.3997506451101791,0.401067182118241,0.22999999999999998
+142,7,0.33813799810530254,0.0,1.38330209772395,0.0007022179819070073,0.03662065014496849,0.7079179551925262,1,0.44879737723359925,0.4368630535784761,0.27999999999999997
+142,8,0.2910814867521824,0.0,1.3806286253730367,0.0007008702772698798,0.03638292566767646,0.7084709986755358,1,0.48958499632594205,0.3990891267936756,0.33999999999999997
+142,9,0.27055045218516194,0.0,1.3468472045990079,0.0006797014436250143,0.03530306337179347,0.7154073808190754,1,0.5121966883763933,0.370938704178081,0.39999999999999997
+142,10,0.3552726593704978,0.0,1.3552038308233851,0.0006815813846000488,0.03616365971872832,0.713702148045625,1,0.5304355261775034,0.3987340840279053,0.44999999999999996
+142,11,0.29981309844182696,0.0,1.3523550796443087,0.0006787755075421923,0.03538683263639557,0.7142850280538835,1,0.5606817004044181,0.34524834433426876,0.51
+142,12,0.3980225221933221,0.0,1.3596107222085139,0.0006818651760515375,0.03601723164139476,0.7128007182372782,1,0.608274323691786,0.4170883630039901,0.52
+142,13,0.4602132743014443,0.0,1.2739238047887058,0.0006486022647246667,0.033733073039027,0.7300308283933651,1,0.6743531094856002,0.4806322866049476,0.52
+142,14,0.38347524773953684,0.0,1.271493460161658,0.000653108889755678,0.033824282021870725,0.7305077725866109,1,0.7203775452479292,0.4378103563425388,0.5800000000000001
+142,15,0.506692201724132,0.0,1.2897229451336716,0.0006532852780749064,0.03439974249317589,0.7269038901692868,1,0.7880448963108441,0.5029216267177883,0.5800000000000001
+142,16,0.4961663759532121,0.0,1.2864353400665942,0.0006560551652027135,0.033861201443090225,0.7275549426969339,2,0.8135614436065456,0.538066235636404,0.6300000000000001
+142,17,0.42683228978324816,0.0,0.753782906951934,0.00034844699930922275,0.021897261598781925,0.819877859621358,2,0.8170495068914057,0.46954987457085406,0.6100000000000001
+142,18,0.3981774994632321,0.0,0.7722188876028891,0.00034650089549544453,0.021811059873382065,0.817139776543966,2,0.8328038000379225,0.4223205648331976,0.5900000000000001
+142,19,0.5189491180115341,0.0,0.7949909665783569,0.00034423272274177635,0.02242208903636209,0.8137132030082418,2,0.8744316498852412,0.4763268018389991,0.5800000000000001
+142,20,0.5286398054248624,0.05,0.7812540447122605,0.0003310953322235442,0.02138647273264679,0.804251878687537,2,0.9289293045571229,0.5117151627662316,0.5700000000000001
+142,21,0.4686028774531191,0.05,0.7869199417760817,0.00033369271679807664,0.021870269274886955,0.803357533453229,2,0.935315654124664,0.4708079950316223,0.55
+142,22,0.6209219521018742,0.0,0.8145764975213898,0.000331998970121189,0.02225800304370246,0.8107298458200456,2,1.0,0.5030731736729139,0.52
+142,23,0.4855960045279892,0.05,0.8333200572433965,0.00036569043421299933,0.02319677091336003,0.795913820626023,2,1.0,0.45198668175996404,0.5
+142,24,0.6221623777136347,0.0,0.8830154824501538,0.00038009520901584,0.02426562748627118,0.7999887943264788,1,1.0,0.5072079257121156,0.47
+142,25,0.4921484662363669,0.05,0.908158430863858,0.0004230915405418383,0.025432593293950895,0.7834685954551263,1,1.0,0.4738282207878896,0.53
+142,26,0.5909068048969576,0.0,0.9581303818959334,0.00048625034810949704,0.027035673555515387,0.7876632373611225,1,1.0,0.5363560163231919,0.53
+142,27,0.5858888855528663,0.05,0.9733351966092286,0.00046797037261237423,0.02700415834263024,0.7721917902783817,1,1.0,0.586296285176221,0.54
+142,28,0.5141922388249272,0.05,1.0116319336469106,0.0005060766938105895,0.028227042221270808,0.7653711387457565,2,1.0,0.5473074627497574,0.6000000000000001
+142,29,0.4727020487819385,0.0,0.8081703794349155,0.0002945683754505626,0.021232799068522205,0.8117223302341454,2,1.0,0.47567349593979513,0.5800000000000001
+142,30,0.5618178712047898,0.0,0.8215737659230989,0.0002831143758840888,0.021128775838062518,0.8096688682199391,2,1.0,0.5060595706826327,0.5750000000000001
+142,31,0.5933871400658741,0.05,0.8535378437134744,0.0003256784694218242,0.022271692268882176,0.7926232454760227,2,1.0,0.577957133552914,0.5650000000000001
+142,32,0.59182051940725,0.1,0.8564226880964096,0.0003251755709311668,0.021919079800506752,0.7795295562501987,2,1.0,0.6060683980241667,0.56
+142,33,0.6112670624485621,0.1,1.1035625911626263,0.000996413048759004,0.03606664240923239,0.733889059895576,2,1.0,0.6375568748285404,0.55
+142,34,0.6798816116289979,0.1,1.1003885855089424,0.0010071467857684195,0.036193099167666234,0.7345042835596821,2,1.0,0.6996053720966596,0.52
+142,35,0.6783174069180593,0.15000000000000002,1.0949204992908306,0.0010089581292662833,0.0362054482172668,0.7207251799611111,2,1.0,0.7610580230601977,0.49
+142,36,0.6524464022527771,0.15000000000000002,1.095730062159118,0.001002984333877506,0.036041322404898664,0.720564607382155,2,1.0,0.8081546741759236,0.485
+142,37,0.6432883475950545,0.10000000000000002,1.3730025635588534,0.0006955767231276618,0.03646013651234275,0.6782205774859735,2,1.0,0.8442944919835151,0.48
+142,38,0.649837737076371,0.05000000000000002,1.374347523030898,0.0007005877682477839,0.03652019079405968,0.6940773890749697,2,1.0,0.8661257902545704,0.475
+142,39,0.6966760745329419,1.3877787807814457e-17,1.3746566128115059,0.000705784123429241,0.03613122714052783,0.7097008950666533,2,1.0,0.9222535817764732,0.46499999999999997
+142,40,0.6153165083071885,1.3877787807814457e-17,1.375676936877587,0.000702723930865383,0.03655775355054654,0.7094918987797888,2,1.0,0.8843883610239617,0.44499999999999995
+142,41,0.6835047912498837,0.0,1.372871881952024,0.0007026553436491356,0.03646809885653142,0.710069745784613,2,1.0,0.9116826374996125,0.43999999999999995
+142,42,0.6744809807849749,0.0,1.3733930451501266,0.0007081665858232166,0.03651785176901583,0.7099601720972967,2,1.0,0.9482699359499165,0.43499999999999994
+142,43,0.6137174734173091,0.0,1.3729225386727677,0.0007130275983735129,0.03629095527482706,0.7100550461427592,2,1.0,0.8790582447243637,0.4149999999999999
+142,44,0.7442203971410124,0.0,1.370288085071419,0.0007140535215627026,0.036601459723105016,0.710596696978417,2,1.0,0.9140679904700416,0.3849999999999999
+142,45,0.6951038074902529,0.0,1.3748262448727,0.0007097275720890393,0.03635481517662724,0.7096643202668892,2,1.0,0.95034602496751,0.3799999999999999
+142,46,0.77,0.0,1.3740366031485436,0.0007143422858637725,0.0366940462794336,0.709825090783458,2,1.0,1.0,0.34999999999999987
+142,47,0.71,0.0,1.377214514618206,0.0007099928952279575,0.03667519576872661,0.7091718833482085,2,1.0,1.0,0.34499999999999986
+142,48,0.6361285748485335,0.0,1.3759761792906968,0.0007135693787388403,0.03677565846963342,0.7094257457592816,2,1.0,0.9537619161617783,0.32499999999999984
+142,49,0.71,0.0,0.9926435259790565,0.0005832940522088927,0.028439043501825495,0.7818005127819817,2,1.0,1.0,0.31999999999999984
+143,0,0.09019264774604974,0.0,1.373225374776462,0.0007048718860676007,0.036210063700503545,0.7099960537863695,1,0.1162998686857108,0.1649589790201699,0.06
+143,1,0.18786424265198728,0.0,1.3632172052333167,0.0007086518802180645,0.03643303736468018,0.7120508634609373,1,0.1584395627242478,0.24136798566166853,0.06999999999999999
+143,2,0.25236137751531595,0.0,1.3716166943970103,0.0007054090128228712,0.036411923580366795,0.7103269507730481,1,0.24838060169045845,0.2847605564121851,0.06999999999999999
+143,3,0.2687579472009997,0.0,1.385741022351151,0.0007001741568995109,0.03672318364742039,0.7074142488984447,1,0.3025875973667629,0.3428409604087758,0.06999999999999999
+143,4,0.27441919241051593,0.0,1.3853407801256914,0.0007001657803594568,0.036762086601691515,0.7074970873550847,1,0.32803092133100886,0.36536123314887614,0.12
+143,5,0.2733853021156616,0.0,1.3856212335191413,0.000699964008724379,0.0367585795656869,0.7074391290828451,1,0.3675313119026027,0.38249780983250226,0.16999999999999998
+143,6,0.24261420021344143,0.0,1.385660840683059,0.0006997955188713789,0.03670105908979739,0.7074310013055765,1,0.3928316593444241,0.35041039814297675,0.22999999999999998
+143,7,0.31047196791558057,0.0,1.385771513766345,0.0006998073483712975,0.03661027802232542,0.7074080896113274,1,0.4360030957602607,0.3595696146649645,0.27999999999999997
+143,8,0.31223016939864817,0.0,1.3573478663590808,0.0006790630133214158,0.0362282848714774,0.7132648837343316,1,0.46893772867320027,0.3936732145434271,0.32999999999999996
+143,9,0.33193334819124864,0.0,1.354229133089152,0.0006767024247760782,0.03518169750239569,0.7139032609132413,1,0.5083644275359553,0.4133526618455477,0.37999999999999995
+143,10,0.3002218157840892,0.0,1.2440831851295138,0.0008274804216052694,0.035479743958778245,0.7358019252089368,1,0.5452424129318599,0.3646232375264608,0.43999999999999995
+143,11,0.273507451647006,0.0,1.3568074476881216,0.0006951463302805961,0.036003153249986826,0.7133688192018205,1,0.5596192090347618,0.32546909494946474,0.49999999999999994
+143,12,0.3782947511135548,0.0,1.3635718509471912,0.0006943825558582633,0.03604801665669863,0.7119839956608869,1,0.6155187862406697,0.3762105864310681,0.5499999999999999
+143,13,0.42215027893487045,0.05,1.2319216206697357,0.0006140079649277689,0.03308104593193088,0.7234921257094585,1,0.6614738871299212,0.4354480614646602,0.5599999999999999
+143,14,0.4860020271302158,0.1,1.0867828077666095,0.0004680801901115404,0.02830390526507265,0.7373578823898144,1,0.7382270630328954,0.4920751835623413,0.5599999999999999
+143,15,0.47661384230572756,0.15000000000000002,1.111100264806499,0.0005015301888495079,0.029050387824012723,0.7176625883098079,2,0.7728923307266533,0.5203384218379963,0.61
+143,16,0.582003781549945,0.10000000000000002,1.3152028384365178,0.0007872193049049468,0.03658756875562341,0.6906634304213651,2,0.8456467140180882,0.5534247721453806,0.58
+143,17,0.5459639045161846,0.15000000000000002,0.9403084111115455,0.0004662576670357532,0.025992744933827326,0.7509637799466657,2,0.8914752733244766,0.5798251961753929,0.575
+143,18,0.47885040498636977,0.10000000000000002,0.9652847270307886,0.0005060819945986692,0.02674705668642305,0.7601866547733875,2,0.9193441065529491,0.5235998923094588,0.5549999999999999
+143,19,0.640494622214497,0.05000000000000002,0.9824358695278336,0.0004965709403406542,0.026953023673222398,0.7705767993346248,2,1.0,0.568315407381657,0.5249999999999999
+143,20,0.6373026532591468,0.10000000000000002,1.000612867800966,0.0005019050261166898,0.027008445578276818,0.7536887161872164,2,1.0,0.6243421775304896,0.4949999999999999
+143,21,0.6222301247713438,0.10000000000000002,1.1287875752234993,0.0009363991184686353,0.03550329371723686,0.7289574664950592,2,1.0,0.6741004159044792,0.4849999999999999
+143,22,0.5324646404101331,0.10000000000000002,1.1265931477964832,0.0009486557377958259,0.03604823004604053,0.7293859817766812,2,1.0,0.6082154680337771,0.46499999999999986
+143,23,0.6720589413438596,0.05000000000000002,1.146259602893301,0.0009355407908831403,0.03549907525547323,0.7401732688204489,2,1.0,0.6735298044795319,0.43499999999999983
+143,24,0.6233896912247512,0.10000000000000002,1.1352532685069763,0.0009431895182817094,0.036055428072380574,0.7276754039530812,2,1.0,0.7112989707491707,0.4299999999999998
+143,25,0.6142530971866047,0.05000000000000002,1.151231009439195,0.0009141038668450474,0.03557200157956047,0.7392243078126838,2,1.0,0.747510323955349,0.4249999999999998
+143,26,0.6271227723003236,0.05000000000000002,1.154053458363915,0.0008972676982633206,0.0356514336144154,0.7386863519788825,2,1.0,0.7904092410010789,0.4199999999999998
+143,27,0.6339138886179588,0.05000000000000002,1.159998035197144,0.0008767790941983058,0.03511280836475898,0.7375451823601331,2,1.0,0.8130462953931963,0.4149999999999998
+143,28,0.643538387995817,1.3877787807814457e-17,1.3686504412976135,0.0006879775462171643,0.036166927926884196,0.7109440781285314,2,1.0,0.8451279599860568,0.4099999999999998
+143,29,0.5883164981738479,0.0,1.3643298355123004,0.0006845191714056226,0.035909087235335216,0.7118325827716543,2,1.0,0.7943883272461597,0.3899999999999998
+143,30,0.6539862750706789,0.0,1.1639749374891406,0.0008094863811411526,0.03455175877916153,0.7510847634422316,2,1.0,0.8132875835689296,0.3849999999999998
+143,31,0.644140561612105,0.0,1.355167379790899,0.0006800776060841532,0.035790726951831914,0.7137102106061568,2,1.0,0.8471352053736835,0.3799999999999998
+143,32,0.6543047848754047,0.0,1.3509439429477859,0.0006761280537275068,0.03551761421900031,0.7145740083851216,2,1.0,0.8810159495846827,0.3749999999999998
+143,33,0.7458402352019441,0.0,1.3461092148253058,0.0006717494020326202,0.03589209471227301,0.7155608484226985,2,1.0,0.9194674506731471,0.34499999999999975
+143,34,0.6980507487960965,0.0,1.3463453659637943,0.0006741550978631195,0.035166870856953095,0.7155118019232576,2,1.0,0.960169162653655,0.33999999999999975
+143,35,0.6202344186702056,0.0,1.3409679878130274,0.0006691643476046579,0.035865486431664886,0.7166071497113933,2,1.0,0.9007813955673521,0.31999999999999973
+143,36,0.6901196023971683,0.0,0.87370769484477,0.0006029294093893011,0.02655124579940423,0.8014030239449342,2,1.0,0.9337320079905612,0.3149999999999997
+143,37,0.7144585246560486,0.05,0.9047131476512235,0.0005944020196872737,0.02704167968783374,0.7839944853705548,2,1.0,0.9815284155201622,0.3049999999999997
+143,38,0.71,0.05,0.9055330749922762,0.0005829594370962817,0.026709803814102012,0.7838594780112434,2,1.0,1.0,0.2999999999999997
+143,39,0.77,0.05,0.9384198226335275,0.0005763159843958596,0.027144724902823124,0.7782379810372875,2,1.0,1.0,0.2699999999999997
+143,40,0.71,0.1,0.9639980851815528,0.0005740331912369297,0.027489388463031016,0.7603963751038483,2,1.0,1.0,0.2649999999999997
+143,41,0.6339381077309203,0.05,1.0071638381423473,0.0005722112315957084,0.028412160745688815,0.7661488624026881,2,1.0,0.946460359103068,0.2449999999999997
+143,42,0.7035667360593343,0.0,0.9966531641740206,0.0005893405063963976,0.0281367597095199,0.7811136743362778,2,1.0,0.978555786864448,0.23999999999999969
+143,43,0.77,0.05,1.01715723825383,0.0005881213742066872,0.02835009135047627,0.764347905734721,2,1.0,1.0,0.2099999999999997
+143,44,0.6365048760944612,0.1,1.0541480923217508,0.0005868323122268097,0.02886171207317447,0.743583548115194,2,1.0,0.9550162536482039,0.1899999999999997
+143,45,0.7068204974820325,0.05,1.061849177222443,0.0006005984008806809,0.02923869846338279,0.7561985161751172,2,1.0,0.9894016582734417,0.1849999999999997
+143,46,0.6322559493325108,0.1,1.0797161692085884,0.0006039017346007987,0.029645094992817735,0.7386716855917436,2,1.0,0.9408531644417026,0.1649999999999997
+143,47,0.7008750357864861,0.05,1.0853689311447547,0.0006141174993374869,0.029621487377250337,0.7518312304091602,2,1.0,0.9695834526216207,0.1599999999999997
+143,48,0.6269892223858753,0.1,1.1011434128352195,0.0006213223413853057,0.030733635327232906,0.734507563881643,2,1.0,0.9232974079529175,0.1399999999999997
+143,49,0.7623614407935304,0.05,1.1053153728373952,0.0006291218502000614,0.030648881656289196,0.748085283548541,2,1.0,0.9745381359784351,0.10999999999999971
+144,0,0.19122612770522973,0.05,1.3719104644903506,0.0007056842712744225,0.036214982333235855,0.6945924522140116,1,0.14573304790814007,0.26739853645793565,0.01
+144,1,0.20585597932659688,0.0,1.3714653613887318,0.0007065641448762532,0.0364727034286836,0.7103576131153185,1,0.19494377243694513,0.29208552991222025,0.060000000000000005
+144,2,0.24443829116330296,0.0,1.3704677578277216,0.00070525293603554,0.03638038240792194,0.7105633659763498,1,0.2379754378095566,0.3371562930998605,0.07
+144,3,0.2639441732290012,0.0,1.3856768648938123,0.0006998042403286887,0.03672936853471607,0.7074276811152946,1,0.2928760948211631,0.3714584668053138,0.12000000000000001
+144,4,0.31001376229640165,0.0,1.3854573627631055,0.0006997858615479216,0.036751221645729026,0.7074731178345307,1,0.3375869762311466,0.4395277353850012,0.13
+144,5,0.2485983084764421,0.0,1.3837566690538377,0.0006999174871136108,0.036706338667135664,0.7078249060656879,1,0.3637735856153285,0.40425851170359045,0.19
+144,6,0.3488285352115715,0.0,1.3846393560742694,0.0006997718380695601,0.03667083373169057,0.7076423853983042,1,0.41734402247911573,0.4758604244796033,0.2
+144,7,0.29169437039284685,0.0,1.380703441588334,0.0007005605572919264,0.036477325897854955,0.7084556738481916,1,0.4519819852489913,0.4450022518523329,0.26
+144,8,0.38512077120178057,0.0,1.3804096961541985,0.0007015130268334029,0.03639580422538697,0.7085159487355023,1,0.5035347875249506,0.496278651893493,0.27
+144,9,0.3279178486547114,0.0,1.38284385929408,0.0007009870142619081,0.03647802668895054,0.7080132051386402,1,0.5359187604993559,0.4678209415997895,0.33
+144,10,0.39923253745788545,0.0,1.3824314505129034,0.0007017408586464537,0.03652976698365272,0.7080981436684565,1,0.5701382394315007,0.49894717885620066,0.38
+144,11,0.33949171291968316,0.0,1.2550275619306448,0.0008165475060901397,0.03625358805399711,0.7336731553184596,1,0.5850073417408054,0.4491304777013377,0.44
+144,12,0.31540446416339885,0.0,1.271083173800008,0.0007997765214864333,0.035879989899180086,0.7305307956803259,1,0.6099795067979621,0.40637212261370714,0.5
+144,13,0.32053196945797147,0.0,1.2010305305036877,0.0005890133144517707,0.031906632850115045,0.7441766824883169,1,0.6665865696451743,0.3574222336072017,0.56
+144,14,0.32052232073963666,0.0,1.074121211140743,0.0004812380374050532,0.028664920814977853,0.7676191895330121,2,0.7006078441799015,0.3176985842555706,0.6200000000000001
+144,15,0.30874550387654953,0.0,1.3274800046490656,0.0007514474028868329,0.03647634469336197,0.7193050611957437,2,0.7103376027863787,0.2670911430043901,0.6000000000000001
+144,16,0.49817869249842106,0.0,1.3263781407414454,0.0007619162016195842,0.036088324914358,0.7195232541915447,2,0.8017537470023219,0.32521627015869475,0.5700000000000001
+144,17,0.46848999409917486,0.05,0.875010892439283,0.0006426348967581757,0.027295238033623232,0.7889659780733919,2,0.8467472086760439,0.3737615702085318,0.5650000000000001
+144,18,0.394279934826458,0.05,0.880634867921573,0.0006370463471668429,0.027478486691317278,0.7880299389322338,2,0.8474388317911644,0.32558781233183487,0.545
+144,19,0.47779380932924537,0.0,0.905298388137829,0.0006320231379300299,0.02744430380733226,0.7963178241989544,2,0.8976026757122699,0.34544290943316974,0.54
+144,20,0.5774286441825836,0.05,0.8893232447158632,0.0006299336180737877,0.027453551660946367,0.7865773995595827,2,0.9679137417516708,0.3955294485649963,0.51
+144,21,0.5369127305731619,0.1,0.9279564574893973,0.000620270393309515,0.02766134010397686,0.7668846496854212,2,1.0,0.4230424352438731,0.505
+144,22,0.4647616414988053,0.05,1.0850671621451413,0.0005594258547767793,0.030004137215763272,0.7519079356840307,2,1.0,0.38253880499601767,0.485
+144,23,0.5982542717128855,0.0,0.724001895344286,0.00037608783798189876,0.020783315648732845,0.8242260353224561,2,1.0,0.4275142390429518,0.45499999999999996
+144,24,0.5886402991459301,0.05,1.0155630959013349,0.0005570056462924839,0.0285716084555725,0.7646461214464653,2,1.0,0.46213433048643376,0.42499999999999993
+144,25,0.5702394088462415,0.05,1.055347964806239,0.0005969409910930378,0.029366876988225182,0.7573964416185848,2,1.0,0.5007980294874715,0.4149999999999999
+144,26,0.6334012001027719,0.05,1.0435410558950138,0.0005859857661888886,0.030033926925085063,0.759563329757816,2,1.0,0.5446706670092398,0.3849999999999999
+144,27,0.6037700321629533,0.1,1.0686846316125167,0.0006258127450984737,0.030026076845785666,0.7407871393801803,2,1.0,0.612566773876511,0.3749999999999999
+144,28,0.5204599648342348,0.1,1.1605708201846499,0.000736986822742151,0.03253865362192994,0.7227122166060023,2,1.0,0.5681998827807829,0.35499999999999987
+144,29,0.5918457924738394,0.05,0.9589635502384222,0.0005112242202409784,0.027732876866477692,0.7746949367525992,2,1.0,0.6061526415794647,0.34999999999999987
+144,30,0.5811017513736998,0.1,1.1582114930010678,0.0007361945008066844,0.03255140079571514,0.7231850927496221,2,1.0,0.6370058379123328,0.34499999999999986
+144,31,0.5902545192245756,0.1,1.1592323943996434,0.0007263443591036046,0.03325613545370788,0.7229846191061828,2,1.0,0.6675150640819191,0.33999999999999986
+144,32,0.6377255527554881,0.1,1.1557753013164065,0.0007159397322661712,0.03287482373625214,0.7236806254747272,2,1.0,0.7257518425182937,0.32999999999999985
+144,33,0.5563190538906695,0.15000000000000002,1.0104854917577994,0.0005212141140766107,0.028196681870377993,0.737588477030948,2,1.0,0.6877301796355652,0.30999999999999983
+144,34,0.6437535268793628,0.10000000000000002,1.0558452365978064,0.0005278171822907636,0.0290328270600284,0.7432823473029239,2,1.0,0.745845089597876,0.2999999999999998
+144,35,0.715444271395443,0.15000000000000002,1.067166677330949,0.0005771556955322994,0.03019182009354417,0.7264487628188097,2,1.0,0.8181475713181435,0.2699999999999998
+144,36,0.7153152386845814,0.2,1.0564193561937396,0.0006430808637038566,0.029712610671135564,0.7134694551946137,2,1.0,0.8843841289486049,0.2399999999999998
+144,37,0.7004239877996461,0.2,1.0842593785251757,0.0006391696214189907,0.030424249591802056,0.7077460614608112,2,1.0,0.9347466259988206,0.2299999999999998
+144,38,0.615397021927129,0.2,1.077895954120363,0.0006312259623862858,0.030690830874077656,0.7090638174777787,2,1.0,0.8846567397570966,0.2099999999999998
+144,39,0.5833203241243898,0.15000000000000002,1.074344463234455,0.0006374124570491912,0.029806093365144677,0.7249960433183368,1,1.0,0.8444010804146331,0.1899999999999998
+144,40,0.6817550499282592,0.10000000000000002,0.7817050876976884,0.0004059725441142666,0.022500519472157095,0.7920757115794268,1,1.0,0.9058501664275308,0.19999999999999982
+144,41,0.606504655656841,0.15000000000000002,0.7913895231166376,0.00045307443557351387,0.023302287571566077,0.7777676422205325,1,1.0,0.8550155188561366,0.2599999999999998
+144,42,0.7079894047913016,0.10000000000000002,0.7912364934172911,0.0004433237479460635,0.023156490112536635,0.7904892255240494,1,1.0,0.9266313493043387,0.2599999999999998
+144,43,0.71,0.15000000000000002,0.8040817617983813,0.00042966457405468395,0.023265982977976357,0.7755742680760336,1,1.0,1.0,0.2599999999999998
+144,44,0.71,0.15000000000000002,0.8506972909968983,0.0004318026119408338,0.023676783124410482,0.7673555808715334,1,1.0,1.0,0.2699999999999998
+144,45,0.73,0.15000000000000002,0.868995403328856,0.0004816104679906473,0.024793784996070732,0.7640550588865487,1,1.0,1.0,0.2699999999999998
+144,46,0.71,0.15000000000000002,0.902901138591168,0.00047559348862717156,0.025242797774356823,0.7578902910909776,1,1.0,1.0,0.2699999999999998
+144,47,0.7,0.15000000000000002,0.9380366256959742,0.0004723064509463191,0.025868453156118677,0.7513861406978217,1,1.0,1.0,0.3199999999999998
+144,48,0.73,0.15000000000000002,0.9687265702605221,0.0004786519193026383,0.0260053404571162,0.7456065807231886,1,1.0,1.0,0.3199999999999998
+144,49,0.71,0.2,1.0030454283939008,0.00047907248749464067,0.026952258362590503,0.7243207818930031,1,1.0,1.0,0.3299999999999998
+145,0,0.18988959330848723,0.15000000000000002,1.3727004179130695,0.0007047899242764035,0.03619203949823211,0.6617024169393818,1,0.16121982951190733,0.24487550993106558,0.01
+145,1,0.200114304894862,0.05000000000000002,1.3716880579345423,0.0007056897649176206,0.036456810423924464,0.6946396277842826,2,0.20991021670597998,0.28881909682589674,0.02
+145,2,0.32550514296415134,1.3877787807814457e-17,1.3837001031794898,0.0006988246176086797,0.03660327263383677,0.7078370562684811,2,0.2992487550132463,0.3358935956983838,0.0
+145,3,0.19123085156688407,1.3877787807814457e-17,1.3824327096357398,0.0006983556348801863,0.03662410599905225,0.7080992828313042,2,0.31094644349954176,0.27466532114014824,0.0
+145,4,0.27963102247158883,0.0,1.3828327534336409,0.0006981260320621516,0.03666063797870869,0.7080166839512148,2,0.360918167829706,0.3110322124373057,0.0
+145,5,0.213029810062285,0.0,1.382962870713623,0.0006979026831344295,0.03665898343162072,0.7079898765507104,2,0.38391956326765697,0.26219320972868365,0.0
+145,6,0.2987599984526024,0.0,1.3831902684697663,0.0006979974154803953,0.03661700974030291,0.7079428228934753,2,0.42755503043311277,0.29705245933671,0.0
+145,7,0.23569184995911602,0.0,1.3837072899971132,0.0006985906185540445,0.0365150791547726,0.7078356667894157,2,0.45055336207436886,0.25999391077695644,0.0
+145,8,0.21263040855356866,0.0,1.384196630065709,0.0006993424530798019,0.03645917512175269,0.7077341478219605,2,0.4661583268071368,0.23158331390356932,0.0
+145,9,0.20417771818952263,0.0,1.3844009698084578,0.0006999761047197956,0.03642780369034957,0.7076916169028009,2,0.483592755574696,0.18306751246126346,0.0
+145,10,0.19795958817575204,0.0,1.3847433194061871,0.0007018267080950969,0.03651038772512394,0.7076200262380091,2,0.5046153591125782,0.1378140416211657,0.0
+145,11,0.32233641138103253,0.0,1.3848655780044838,0.000701208637055951,0.03667822580113754,0.7075949867979371,2,0.562706241213463,0.18463075652106825,0.0
+145,12,0.3342352383388942,0.0,1.3842699016905424,0.0007015860411746526,0.03672789505681117,0.7077180634244661,2,0.6058756644798011,0.20726251923654604,0.0
+145,13,0.367512932482024,0.0,1.3016840991587069,0.0008042645615548833,0.03663694355276485,0.7244627208984254,2,0.6387161925770266,0.24654088360021553,0.0
+145,14,0.29191068089531225,0.0,1.2985866798635168,0.0008127939667986243,0.03676816663815219,0.7250771862935721,2,0.6484356020617245,0.2165274005790289,0.0
+145,15,0.2599545054045518,0.0,1.3100629003874928,0.0007986310852279139,0.03648344178127342,0.7227892898284162,2,0.6573198659702901,0.166308507716501,0.0
+145,16,0.36842765314736287,0.0,1.3814365339016996,0.0006977716529343923,0.03652405448547181,0.7083053856832493,2,0.701910130380866,0.20919702504686594,0.0
+145,17,0.47227332932105415,0.0,1.3116020845646796,0.0007966546977910707,0.036072087608203615,0.7224815781052081,2,0.7851741595383063,0.2582079116088231,0.0
+145,18,0.5016300645562184,0.0,1.306283840835475,0.0007996280649176924,0.03674575372530746,0.7235454441252664,2,0.8856341707986825,0.3055270159222653,0.0
+145,19,0.4880347595793118,0.0,1.2913381837483378,0.000680164263757348,0.03494325025203203,0.7265724444963679,2,0.9328415845995275,0.3384673498982573,0.0
+145,20,0.48467181622939715,0.0,1.2875480807150925,0.0006742266150423352,0.034265940059972536,0.7273271132469102,2,0.9736887967055597,0.3462691246081709,0.0
+145,21,0.5373782405374796,0.0,1.2832636647355136,0.0006680995698505849,0.03452134729049148,0.7281784062868455,2,1.0,0.3912608017915987,0.0
+145,22,0.5400735172346602,0.0,1.2887378585757245,0.0006793887645141538,0.03448531447366256,0.7270890412048489,2,1.0,0.43357839078220084,0.0
+145,23,0.5633456911968787,0.0,1.2176241713639233,0.0009134635825956967,0.03677105710936582,0.7408802893995737,2,1.0,0.47781897065626233,0.0
+145,24,0.5624449348783148,0.0,1.2122898778530597,0.0009240794323074775,0.03636635303213101,0.741898967287226,2,1.0,0.5081497829277162,0.0
+145,25,0.49335945379643575,0.0,1.2306379813082997,0.0008994995723732957,0.03681357752334617,0.7383795154349033,2,1.0,0.4778648459881194,0.0
+145,26,0.563071541527602,0.0,1.2502035152251674,0.0008773864690599626,0.03600291660639805,0.7345909731905527,2,1.0,0.5102384717586732,0.0
+145,27,0.5872615460132871,0.0,1.2653578795066647,0.0008561118423978326,0.036711346338501046,0.731634241183161,2,1.0,0.5575384867109571,0.0
+145,28,0.6522475011967831,0.0,1.2600478535632744,0.000863857166378529,0.036260006589030704,0.7326725240066417,2,1.0,0.6074916706559439,0.0
+145,29,0.652100558413847,0.05,0.9154443438457341,0.00043101744800292394,0.025346795856407943,0.7822273198073836,2,1.0,0.6736685280461567,0.0
+145,30,0.6407721615632663,0.05,0.9137004916096834,0.0004267549733109708,0.025459598763769253,0.7825256856617,1,1.0,0.7359072052108879,0.0
+145,31,0.6317333104615688,0.05,1.0939550012821184,0.0005247505855634928,0.029814016132918696,0.7502592619700448,1,1.0,0.805777701538563,0.01
+145,32,0.6894232311971187,0.05,0.9147859380232619,0.0003384320849134579,0.02346337760733155,0.7823709869530812,1,1.0,0.8647441039903959,0.01
+145,33,0.6911904197045162,0.1,0.9510406628749644,0.00035446084345285684,0.02403359294016385,0.7628286245089729,1,1.0,0.9373013990150544,0.01
+145,34,0.71,0.1,0.9992128097541749,0.0003890707598881558,0.025344501779854513,0.7539903948908595,1,1.0,1.0,0.01
+145,35,0.71,0.1,1.0268129235196413,0.000416545873885148,0.025990604849210185,0.7488247330535598,1,1.0,1.0,0.01
+145,36,0.6386492065582132,0.1,1.0494052343440474,0.0004474574768259461,0.027128926822519616,0.7445398315401033,1,1.0,0.962164021860711,0.06999999999999999
+145,37,0.73,0.05,1.0317422349126906,0.0004300555703245448,0.026642414248460804,0.7617681080423484,1,1.0,1.0,0.06999999999999999
+145,38,0.71,0.1,1.0389731300662488,0.00045460524300389995,0.026954272788298657,0.7465162486500464,1,1.0,1.0,0.07999999999999999
+145,39,0.69,0.1,1.075178482555651,0.00048591196934802617,0.028075178449087957,0.7395921237499326,1,1.0,1.0,0.08999999999999998
+145,40,0.7,0.1,1.0942443341889996,0.0005104965305912611,0.02862428010801124,0.7358938297155995,1,1.0,1.0,0.13999999999999999
+145,41,0.71,0.1,1.122782775019878,0.0005150811297052757,0.0295548628629551,0.7303082495203991,1,1.0,1.0,0.15
+145,42,0.6381041707699937,0.1,1.1366655863759025,0.0005387678217115839,0.029646356375091703,0.7275558006616923,1,1.0,0.9603472358999792,0.21
+145,43,0.6065829547113744,0.05,1.1222795195458946,0.0005226257748993494,0.029662822428812192,0.7449153674810369,1,1.0,0.9219431823712478,0.27
+145,44,0.7046422433752202,0.0,1.097766930564375,0.0004988984764855049,0.02866995864412244,0.7633682244510657,1,1.0,0.982140811250734,0.28
+145,45,0.73,0.05,1.1011591466160995,0.0005188062857337257,0.028905533370654317,0.7489092224997448,1,1.0,1.0,0.28
+145,46,0.71,0.05,1.1287572491096267,0.0005478475432973809,0.029685290231040024,0.7436729250535776,1,1.0,1.0,0.28
+145,47,0.71,0.05,1.1416579149388142,0.0005702450247862982,0.030728354354885867,0.741197441697861,1,1.0,1.0,0.29000000000000004
+145,48,0.73,0.05,1.151263784610049,0.0005919168396130086,0.03040659921346664,0.7393421895370114,1,1.0,1.0,0.29000000000000004
+145,49,0.7,0.05,1.1606221075031715,0.0006124530031904096,0.03158702583852326,0.7375267112499024,1,1.0,1.0,0.34
+146,0,0.09383834825946896,0.0,1.3725104228403986,0.0006990354622320811,0.03624268774204145,0.7101456442013097,1,0.1310320239365064,0.15992379960563907,0.06
+146,1,0.16208547758074024,0.0,1.358239104587588,0.0007122249163528227,0.036354183390101505,0.7130690049902878,0,0.15396216014603212,0.1939957384320966,0.11
+146,2,0.15312785410376928,0.0,1.3862943611198846,0.0007001722195526525,0.036653943583842885,0.7072997068701548,0,0.25569046635731746,0.1454539695956939,0.19
+146,3,0.19849056576355756,0.0,1.3862943611198846,0.0007001722195526523,0.036742895298349926,0.7072997068701548,0,0.3345238611266268,0.17135738123079391,0.25
+146,4,0.22308393682106997,0.0,1.3862574596771897,0.0007001727123667662,0.036783927378854595,0.7073073461964258,0,0.3596676602671595,0.2240008524252139,0.26
+146,5,0.2539394553096669,0.0,1.3852811736195396,0.0006994591766301629,0.03673652998119591,0.7075097149173133,0,0.44974995916470845,0.2217565653400632,0.32
+146,6,0.2600061425354784,0.0,1.3861990564099278,0.0007001478603930609,0.036723293900762136,0.7073194471980696,0,0.474449423931948,0.2464961471976554,0.32
+146,7,0.2838828577842303,0.0,1.3860080535347645,0.0007001367116380193,0.0366254686067599,0.707358991404625,0,0.5694146419058803,0.21529244372390727,0.4
+146,8,0.3082007128186929,0.0,1.385047730967838,0.0007010760828444079,0.03649426558341317,0.7075573519937824,0,0.6132177672465537,0.2119149809413303,0.41000000000000003
+146,9,0.3072609171741319,0.0,1.385076654585692,0.0006995464734995871,0.03647121188377102,0.707552000104983,0,0.6239567682265683,0.22958682764944338,0.41000000000000003
+146,10,0.3387417369739147,0.0,1.38574973772845,0.0006997970141136927,0.0365344500515544,0.7074126011142973,0,0.6603475884541659,0.2587336033831889,0.42000000000000004
+146,11,0.3645003028889008,0.0,1.3852853914906413,0.0006994881670451235,0.03664504088374252,0.7075088300729343,0,0.7268332354565561,0.26702890159702075,0.48000000000000004
+146,12,0.3689440918578659,0.0,1.3853268630621407,0.0006995429861745605,0.03672500209014185,0.7075002251795883,0,0.7516538994308789,0.2862174235235276,0.48000000000000004
+146,13,0.4078863607597154,0.0,1.385908178834999,0.00069993609751547,0.03677242275656639,0.7073797483155939,0,0.8250466731012814,0.2970667505808895,0.54
+146,14,0.4153766212947601,0.0,1.3473237925793755,0.0007309290825180389,0.03641560429301335,0.7152894731050655,0,0.8498583222526113,0.3264206950211539,0.54
+146,15,0.40295298320079476,0.0,1.3519231497700317,0.0007235592761016006,0.03638931684910099,0.7143548928931128,0,0.8607062708864517,0.3390192946351223,0.54
+146,16,0.45667535864618747,0.0,1.3547942946534661,0.0007171579664515914,0.03609754665816344,0.7137712853160921,2,0.9284191463583396,0.33909552473589555,0.6000000000000001
+146,17,0.5855693580956219,0.05,0.8171852532492434,0.00035732170269941967,0.02177502389197112,0.7985248603033406,2,1.0,0.38523119365207315,0.5700000000000001
+146,18,0.4500001583298304,0.1,0.8707371389900388,0.0003719181928794642,0.023105466871559212,0.7770433919692958,2,1.0,0.3333338610994349,0.55
+146,19,0.5388672949355221,0.05,0.9105116505272022,0.0003868065485924537,0.024075633916261115,0.7830814432503946,2,1.0,0.3962243164517404,0.54
+146,20,0.6024299118717339,0.1,0.9149500660936573,0.00042236399077711636,0.024325161443170065,0.7692720213711409,2,1.0,0.4414330395724463,0.51
+146,21,0.5612639128542581,0.15000000000000002,1.0070745069906266,0.0005816757199468077,0.028868270499358147,0.7382247761326679,2,1.0,0.4708797095141939,0.5
+146,22,0.5507066895426367,0.10000000000000002,1.0078966023153721,0.0005777393870922733,0.029312502043229494,0.7523057905865703,2,1.0,0.46902229847545585,0.495
+146,23,0.5740773567666732,0.10000000000000002,1.0040884000938426,0.0005887243347749115,0.028424833404102446,0.753010649702409,2,1.0,0.513591189222244,0.485
+146,24,0.5727283850917619,0.10000000000000002,0.9936816814691249,0.0005789489421389741,0.029030749957567954,0.7549446664171146,2,1.0,0.5424279503058732,0.48
+146,25,0.5680097102348133,0.10000000000000002,0.9997735823864622,0.0005955229242621991,0.028492621462412833,0.7538097439810256,2,1.0,0.593365700782711,0.475
+146,26,0.5113195821424712,0.10000000000000002,1.003257599553362,0.0006086413894661497,0.029366404369871847,0.7531577286359505,2,1.0,0.537731940474904,0.45499999999999996
+146,27,0.5977838197931069,0.05000000000000002,1.0274377907415024,0.0006013012450851629,0.029207081086290256,0.762486367312106,2,1.0,0.5926127326436899,0.44499999999999995
+146,28,0.514709578841404,0.10000000000000002,1.006708966085425,0.0005902681556263401,0.029176298835244623,0.7525223640280638,2,1.0,0.5490319294713466,0.42499999999999993
+146,29,0.5824463553129602,0.05000000000000002,1.044208017414839,0.0005860132162121614,0.02959489822851289,0.7594414935422309,2,1.0,0.5748211843765341,0.41999999999999993
+146,30,0.5731201165648616,0.10000000000000002,1.0348792362492236,0.000596344085275092,0.029410904424160212,0.747236615167741,2,1.0,0.6104003885495387,0.4149999999999999
+146,31,0.5813629790708917,0.10000000000000002,1.1069098570351814,0.0006395064881836615,0.03061779862393833,0.7333744406752226,2,1.0,0.6378765969029726,0.4099999999999999
+146,32,0.527069788609464,0.10000000000000002,1.1013485382131718,0.0006310391589246624,0.030902771003676853,0.7344637711753043,2,1.0,0.5902326286982135,0.3899999999999999
+146,33,0.5917957848084502,0.05000000000000002,1.0302333402523938,0.0006230949533248176,0.02967506585885492,0.7619718139221093,2,1.0,0.6059859493615007,0.3849999999999999
+146,34,0.5212348421025073,0.10000000000000002,1.096686817091541,0.0006281526329299992,0.030787259100613928,0.7353730606087812,2,1.0,0.5707828070083577,0.3649999999999999
+146,35,0.6610153806544022,0.05000000000000002,0.9837345334007181,0.0005940250970809451,0.0281935328586555,0.7703126467008692,2,1.0,0.6367179355146741,0.33499999999999985
+146,36,0.658223528840341,0.10000000000000002,1.100633602687825,0.0006274161480331779,0.030817561923379116,0.7346045920374632,2,1.0,0.6940784294678035,0.3049999999999998
+146,37,0.6349303444221268,0.10000000000000002,0.8440431159720838,0.0003035588218644058,0.02159530264448519,0.7816571641467054,2,1.0,0.749767814740423,0.2999999999999998
+146,38,0.5595009300572464,0.10000000000000002,0.8777551928318966,0.00034157052038340826,0.023203814786935235,0.7758357278779738,2,1.0,0.6983364335241548,0.2799999999999998
+146,39,0.5316400565359973,0.05000000000000002,0.9127186481233276,0.0003451875186667561,0.02360387550315194,0.7827204741787842,2,1.0,0.672133521786658,0.2599999999999998
+146,40,0.6194559176864275,0.05000000000000002,0.9287976257918592,0.00033905099548345535,0.023828077199630197,0.7799756144786024,2,1.0,0.6981863922880918,0.2549999999999998
+146,41,0.5437144081272502,0.10000000000000002,0.9567785643270265,0.0003752318825062284,0.024380730689929943,0.7617814133441972,2,1.0,0.6457146937575011,0.2349999999999998
+146,42,0.6108367839450789,0.05000000000000002,1.005673699768693,0.0003973033271383807,0.02575550986075506,0.7664783559481049,2,1.0,0.6694559464835963,0.2299999999999998
+146,43,0.6850600182235173,0.10000000000000002,1.0116762281800553,0.000419029572391835,0.02610887998079417,0.7516600734748559,2,1.0,0.7168667274117242,0.1999999999999998
+146,44,0.6828380821398452,0.15000000000000002,1.007357630776043,0.00041323903198131243,0.02572054877477306,0.7382351630519206,2,1.0,0.7761269404661507,0.1699999999999998
+146,45,0.69455793154564,0.15000000000000002,1.0032627268193353,0.00040781240259522703,0.025699445947773653,0.739027799608744,2,1.0,0.8151931051521335,0.1399999999999998
+146,46,0.685652051195677,0.15000000000000002,1.0659912678465906,0.0005330170747835944,0.028823668714296348,0.7266998119816421,2,1.0,0.8855068373189231,0.12999999999999978
+146,47,0.5998093331077385,0.15000000000000002,1.053035107978961,0.0005173388176461098,0.027942976569080246,0.7292716179487309,2,1.0,0.8326977770257951,0.10999999999999978
+146,48,0.5640614292533221,0.10000000000000002,1.0601055729819016,0.0005433337419928868,0.02869072449991434,0.7424626406844941,2,1.0,0.7802047641777408,0.08999999999999977
+146,49,0.6728531159621469,0.05000000000000002,0.8873219270362691,0.0003130549903039713,0.022173694502719117,0.7870194244803688,2,1.0,0.8428437198738231,0.07999999999999978
+147,0,0.2137200236421341,0.05000000000000002,1.3716828030334975,0.0006991527945741843,0.03622641646251641,0.6946435156002885,1,0.16585367102976195,0.25223746260572477,0.0
+147,1,0.12621007196570155,0.0,1.3709644666135703,0.0006994998259066148,0.03642530345192943,0.7104635675336298,1,0.1809965696795977,0.20953757525947458,0.06
+147,2,0.2465609142145369,0.0,1.3737757216170563,0.0006989545068769659,0.036307765640842246,0.7098851607184067,1,0.23985084812229474,0.27537705790577927,0.06
+147,3,0.2669740638650404,0.0,1.3853760439573328,0.0006997790232139063,0.03672658095677171,0.7074899497067028,1,0.31203717442108486,0.32587017605886903,0.06
+147,4,0.2783612437570831,0.0,1.3851010920742015,0.0006994198382906088,0.036734072694041414,0.7075469958290435,1,0.3475814550397745,0.35569244831054003,0.11
+147,5,0.23006746874376766,0.0,1.3847704508241094,0.0006993528838452058,0.036726754271135906,0.7076154365297495,1,0.3784259468100871,0.325394624534124,0.16999999999999998
+147,6,0.30829712868009884,0.0,1.3849165611863046,0.0006997754706594478,0.036689642799820246,0.7075850311144949,1,0.43039867840129836,0.35885863746548136,0.21999999999999997
+147,7,0.3558992139131425,0.0,1.3465442891799022,0.0006712048948817944,0.03521587928090002,0.7154725095957549,1,0.46974799830297775,0.4382913816903345,0.22999999999999998
+147,8,0.3620725938025363,0.0,1.381174901074432,0.0007031481871117984,0.0364514174672494,0.708357216956861,1,0.5051161310538903,0.48427315977891594,0.24
+147,9,0.44184575421099304,0.0,1.3832475658621186,0.0007022337223151902,0.03641346859529483,0.707929224115364,1,0.5617705449868201,0.5507535448853534,0.24
+147,10,0.4601252881110729,0.0,1.3831013886515,0.0007006821214464584,0.036529687758627076,0.7079600891870719,1,0.6205421405742998,0.6097851297002265,0.25
+147,11,0.5158000891908004,0.0,1.3487842290322087,0.0007054602743309864,0.035909469151741445,0.715002340960149,0,0.6660559052367694,0.6756017411931038,0.25
+147,12,0.45636681078284,0.0,1.3853654982586479,0.0007000906408798407,0.036726826848355945,0.707492003135635,0,0.6966899001126242,0.7084178191447386,0.25
+147,13,0.5069639435221613,0.0,1.3854202831985352,0.0007010070476574069,0.0367808342212229,0.7074802861198822,0,0.8072735635925837,0.6813939875491901,0.33
+147,14,0.5415374818861123,0.0,1.3859372816405313,0.0007001641464633173,0.0367612659935702,0.7073736297730735,0,0.8883597963085934,0.6687051772603488,0.39
+147,15,0.553668501133816,0.05,1.1103677689697082,0.0010096199090399356,0.03644449137763707,0.7469881490993086,0,0.9847077188326564,0.6300693318079544,0.47000000000000003
+147,16,0.5757002680975358,0.05,1.1107770148854201,0.000997347017076266,0.03548608328798536,0.7469154350764632,0,1.0,0.6523342269917861,0.48000000000000004
+147,17,0.5598401450290059,0.05,1.1360033498164086,0.0009674480511242321,0.03641829719298146,0.7421286424102108,0,1.0,0.6328004834300198,0.56
+147,18,0.5658809028337397,0.05,1.12630879918222,0.0009627182748789229,0.03547508984680313,0.7439813672077081,0,1.0,0.6529363427791324,0.56
+147,19,0.5542852906055937,0.05,1.1538319815552258,0.0009374035223310003,0.03613431024513429,0.7387136077264957,2,1.0,0.6142843020186457,0.64
+147,20,0.49977360739517496,0.05,1.078649833084441,0.0005211344324626993,0.028437262567817957,0.7531173428633151,2,1.0,0.5659120246505832,0.62
+147,21,0.6586956169794358,0.0,1.038716852698909,0.0005920182968329499,0.029334682427802385,0.7738359204905305,2,1.0,0.6289853899314528,0.59
+147,22,0.6523505943349454,0.05,1.0728514407393508,0.0005135881184629459,0.02816317211273873,0.754196662236768,2,1.0,0.6745019811164847,0.5599999999999999
+147,23,0.6210370894230226,0.05,1.0927394387219886,0.0005460366537765058,0.029285745338836544,0.7504789810156445,2,1.0,0.7034569647434087,0.5549999999999999
+147,24,0.6942236807345433,0.0,1.0821323188828778,0.0005325554760581394,0.028948974348893264,0.7661687187879134,2,1.0,0.7474122691151446,0.5249999999999999
+147,25,0.6901037865050619,0.05,1.0813856829188528,0.0005517650807809161,0.029303469472212323,0.7525969033548283,2,1.0,0.8003459550168732,0.4949999999999999
+147,26,0.5713944895256381,0.0,1.2943685818095565,0.0006630316341845132,0.034775040470688946,0.7259768140979357,2,1.0,0.737981631752127,0.47499999999999987
+147,27,0.657617470225157,0.0,1.0896336509511209,0.0006147301628882914,0.03038050636194823,0.7647925785720241,2,1.0,0.792058234083857,0.46499999999999986
+147,28,0.6581779192270831,0.05,1.1079871470157125,0.0006291909311624219,0.03069211202894891,0.7475814181095349,2,1.0,0.8605930640902771,0.45499999999999985
+147,29,0.6789204584989539,0.0,1.2907582025470934,0.0006632349167787148,0.03473174559509026,0.726694375992616,2,1.0,0.8964015283298463,0.44999999999999984
+147,30,0.7574983230586146,0.0,1.2805084451095299,0.0006532297507896886,0.034276832370626224,0.7287292956978991,2,1.0,0.9583277435287155,0.4199999999999998
+147,31,0.6231133690345099,0.0,1.2799082018791328,0.0006612183381377789,0.03420336508172505,0.728844779675168,2,1.0,0.9103778967816994,0.3999999999999998
+147,32,0.7596657770466262,0.0,1.299121677379577,0.0006605366047417794,0.03436021162268363,0.7250312394104952,2,1.0,0.9655525901554205,0.3699999999999998
+147,33,0.6202787919364654,0.0,1.2970400784573064,0.0006659115978239041,0.03484804889880948,0.7254438933571038,2,1.0,0.9009293064548848,0.34999999999999976
+147,34,0.5893761399244313,0.0,1.3139627614385174,0.0006658820091444293,0.034442244975552025,0.722060501656594,2,1.0,0.864587133081438,0.32999999999999974
+147,35,0.6774549968155783,0.0,1.024701587398435,0.0005041461389049575,0.027784492579586807,0.7763098888877563,2,1.0,0.891516656051928,0.32499999999999973
+147,36,0.6705366206434715,0.05,1.04951596134902,0.0005216176800254845,0.028044078420683755,0.758494042568938,2,1.0,0.935122068811572,0.31999999999999973
+147,37,0.6117275046854711,0.05,1.0785945760640243,0.0005489602658850489,0.029114714460280522,0.7531172694860616,2,1.0,0.8724250156182374,0.2999999999999997
+147,38,0.5735803430495108,0.0,1.086248310430723,0.0005723768891906631,0.029527288210048564,0.765416213959657,2,1.0,0.811934476831703,0.2799999999999997
+147,39,0.5593791956066225,0.0,1.0832995545162811,0.0005879219801787853,0.029745150926113302,0.7659396874464556,2,1.0,0.7645973186887421,0.2599999999999997
+147,40,0.6457252465464629,0.0,0.7831082241023526,0.00025505172321129744,0.019539344719660866,0.8155345601866708,2,1.0,0.785750821821543,0.25499999999999967
+147,41,0.6385548777040206,0.05,0.8171824798665666,0.00030556552269476957,0.020821488761412935,0.7985419593201298,2,1.0,0.8285162590134024,0.24999999999999967
+147,42,0.730009404058519,0.05,1.0862867613060059,0.0005725389461656817,0.029603508439978287,0.7516754635170517,2,1.0,0.8666980135283966,0.21999999999999967
+147,43,0.6974241815180287,0.1,1.1099284811318475,0.0005707221941888864,0.02961024951272463,0.7328107108959429,2,1.0,0.9247472717267622,0.20999999999999966
+147,44,0.6115994905675421,0.05,1.105948783616066,0.0005600534722883348,0.029633476815001968,0.7479919358626005,2,1.0,0.8719983018918074,0.18999999999999967
+147,45,0.58248720968017,0.0,1.1029455338238512,0.0005761223907724828,0.02980415661308574,0.7624035244616323,2,1.0,0.8416240322672335,0.16999999999999968
+147,46,0.6744454120354129,0.0,1.097808935884652,0.0005906627653844733,0.030091285354183317,0.7633274822242423,2,1.0,0.8814847067847096,0.16499999999999967
+147,47,0.6004970201324764,0.05,1.1154979803325054,0.0006075582888626793,0.030383736449004294,0.7461696587788944,2,1.0,0.8349900671082549,0.14499999999999968
+147,48,0.6682245319086335,0.0,1.1237511643169762,0.0006265696919424237,0.03094806643149985,0.7585956737504865,2,1.0,0.8607484396954452,0.13999999999999968
+147,49,0.7449243884262038,0.05,1.1310649373591437,0.0006408595951077055,0.031145839565834145,0.743197276081179,2,1.0,0.9164146280873459,0.10999999999999968
+148,0,0.20896674994956624,0.05,1.3738419664032686,0.0006991837981353367,0.036323379515434004,0.6941853214892102,1,0.15485838255223167,0.2492210535209506,0.0
+148,1,0.20226868072411133,0.0,1.3730615771041612,0.0006993822477050565,0.03640718287515618,0.7100320393289983,1,0.18413356499264497,0.292739776588952,0.05
+148,2,0.2461683601520111,0.0,1.3718498612526044,0.0006978921753850517,0.03622980283228276,0.7102820650692109,1,0.2400321308160584,0.3405237145546356,0.060000000000000005
+148,3,0.179606058425072,0.0,1.384403391573661,0.0006998587754016467,0.036713814266124335,0.707691164468562,1,0.2527644716853099,0.30379497778404513,0.12
+148,4,0.29686212784596866,0.0,1.3844542134071425,0.0007003391121439837,0.036731621649449056,0.7076804523971497,1,0.30076932485738533,0.3719762138196127,0.12
+148,5,0.2209992229867413,0.0,1.3841877432415646,0.0006996078110052866,0.03671385456878347,0.7077358762509135,1,0.33344990478386644,0.3476391877079601,0.18
+148,6,0.2024918283807234,0.0,1.3841713911581488,0.0007000735679407886,0.03668253114356906,0.7077390659208277,1,0.37256345920515743,0.30698205886306107,0.24
+148,7,0.2056271487073464,0.0,1.384056002309115,0.0007004434819538022,0.03655926149703524,0.7077627798731937,1,0.40863883745161333,0.27534518533093916,0.3
+148,8,0.3095180724425065,0.0,1.3484990750439994,0.0006724474154480706,0.03603500408636596,0.7150738968477061,1,0.4734662859753933,0.3126829078370627,0.35
+148,9,0.2538559389757497,0.0,1.3615891194760616,0.0006911170221811033,0.03593608157563204,0.7123917472982931,1,0.49511295044091624,0.2685546877380967,0.41
+148,10,0.22099306982088948,0.0,1.3671319861131108,0.000691469826427445,0.03630944382187535,0.711254590203937,1,0.5115237128526456,0.206532567741545,0.47
+148,11,0.3474209405851405,0.0,1.3713236606809593,0.0006921713640264148,0.036270735638136195,0.71039268935176,1,0.5927074375083489,0.26657779152406136,0.48
+148,12,0.3667149938259592,0.0,1.3699331093690161,0.0006920654744439691,0.03610733870074995,0.71067873413522,1,0.6390468284970156,0.3434953461733459,0.49
+148,13,0.43990417882964167,0.0,1.0832861816318176,0.0004846766916933826,0.028731747797801965,0.765979101401828,1,0.6862013939102088,0.3991123032035619,0.49
+148,14,0.35802973292009793,0.05,1.1078739081544415,0.0005367037399647378,0.03013446741215209,0.7476376878199623,1,0.7171484955630246,0.35675919824346447,0.55
+148,15,0.4572391948675476,0.0,1.1423617428260295,0.0005529746403135261,0.030228021871739112,0.7551983811933244,1,0.7682294011021974,0.42786301493926193,0.56
+148,16,0.4706246280261058,0.05,1.1863942201279163,0.0005854958182149286,0.03135975206727454,0.7325178331844824,2,0.7982372233294954,0.4708053328692747,0.6100000000000001
+148,17,0.4824841284153465,0.05,1.0066085383542407,0.0005954169624023005,0.0289901460811574,0.7662400249202734,2,0.8386626493793198,0.49650733710861555,0.6050000000000001
+148,18,0.5090949977958286,0.05,1.0999905134551597,0.0006139621091794636,0.030404063154109824,0.7490931453828459,2,0.8936014668332702,0.5211149480139468,0.6000000000000001
+148,19,0.5316182321297513,0.05,1.0939745254420508,0.0006058342575522485,0.030385968548254316,0.7502252168301847,2,0.9429260466318783,0.5386470526953132,0.5950000000000001
+148,20,0.6488295139281341,0.05,1.0872470599214692,0.0005969901914839811,0.029687684695953453,0.7514870387402479,2,1.0,0.5960983797604473,0.5650000000000001
+148,21,0.5133391262631453,0.1,1.1067973470196324,0.0006110287280271024,0.0305209082812613,0.7334075760404725,2,1.0,0.5444637542104841,0.545
+148,22,0.47938363347150525,0.05,1.1370163910735016,0.0006107742989355696,0.030881429060746934,0.7420712847400377,2,1.0,0.49794544490501763,0.525
+148,23,0.5882076219349992,0.0,1.1536128023072794,0.0006050666414315768,0.031115908384111983,0.7530930159481644,2,1.0,0.5606920731166642,0.515
+148,24,0.6537922311160681,0.05,1.1450364279084617,0.0006143513259004668,0.03099770350284668,0.7405318853969514,2,1.0,0.6126407703868937,0.485
+148,25,0.5170759454710758,0.1,1.1461038207296759,0.0006764603472525343,0.03165989301145196,0.7256261328304229,2,1.0,0.5569198182369196,0.46499999999999997
+148,26,0.5825766403518686,0.05,1.1953798049433675,0.0006664367706306696,0.03236000621012582,0.7307217123766996,2,1.0,0.575255467839562,0.45999999999999996
+148,27,0.6094685747790348,0.1,1.184073410512189,0.0006543890421681392,0.03229649807171388,0.7180111994793377,2,1.0,0.6315619159301161,0.44999999999999996
+148,28,0.6074669799171357,0.1,1.154767826781202,0.0006773900149407775,0.031866392975001864,0.7238974518307312,1,1.0,0.6582232663904527,0.44499999999999995
+148,29,0.6463004452250739,0.05,1.3660214461053084,0.0006948352158279083,0.03590865895405999,0.6958448706783124,1,1.0,0.7210014840835797,0.44499999999999995
+148,30,0.6475056918403519,0.05,1.3676120176322004,0.0007028737671301721,0.0365370087636766,0.6955047249169155,1,1.0,0.79168563946784,0.45499999999999996
+148,31,0.6483758149261187,0.0,1.3624128078013127,0.0007017973885229505,0.03576548357388654,0.7122185743406987,1,1.0,0.8279193830870628,0.505
+148,32,0.6979605340254165,0.0,1.0539070623566273,0.0009118497686514977,0.03417930083047545,0.7710534696992799,1,1.0,0.8932017800847218,0.505
+148,33,0.6963763456116462,0.05,1.0833653526614981,0.0008909585662519094,0.03480404502085873,0.7521016547782435,1,1.0,0.9545878187054874,0.515
+148,34,0.69,0.05,1.120443426066202,0.0008662432990243459,0.03422480192312709,0.7451336080653744,1,1.0,1.0,0.525
+148,35,0.7,0.05,1.1427803909071712,0.0008448644051352947,0.034760463960658315,0.7408766377581404,1,1.0,1.0,0.5750000000000001
+148,36,0.71,0.05,1.1453802471943562,0.0008872480434438395,0.035207569944397464,0.7403609147106048,1,1.0,1.0,0.5850000000000001
+148,37,0.7,0.05,1.1642957546385224,0.0008639105151341819,0.035072015488259646,0.7367174062233075,2,1.0,1.0,0.6350000000000001
+148,38,0.69,0.0,1.2685058262335267,0.0006713032110723967,0.03447394952328853,0.731088377534947,2,1.0,1.0,0.6300000000000001
+148,39,0.77,0.0,1.2582891612709095,0.0006614521285061955,0.03394729719492106,0.7330960617764534,2,1.0,1.0,0.6000000000000001
+148,40,0.71,0.0,1.2554736176706518,0.0006683755145526792,0.03379556560978711,0.7336439010884122,2,1.0,1.0,0.5950000000000001
+148,41,0.72,0.0,1.2494474694482454,0.0006593858793839154,0.03329855188920271,0.734823318097989,2,1.0,1.0,0.5850000000000001
+148,42,0.6293163820889043,0.0,1.255543176388592,0.0006722794145922956,0.034200647826860164,0.7336287825830387,2,1.0,0.9310546069630145,0.5650000000000001
+148,43,0.5990768067412411,0.0,1.2769007458621426,0.0006682301671598,0.03359136657498868,0.7294359664893107,2,1.0,0.8969226891374704,0.545
+148,44,0.7571151926267587,0.0,1.2960775167980856,0.0006661147258816418,0.03497247645564695,0.7256354891343217,2,1.0,0.9570506420891961,0.515
+148,45,0.75,0.0,1.2931803712382133,0.0006708305125341133,0.034041654857420965,0.7262100253940372,2,1.0,1.0,0.485
+148,46,0.75,0.0,1.289458501403511,0.0006744267297318681,0.03485356490132217,0.7269479901192122,2,1.0,1.0,0.45499999999999996
+148,47,0.6362376673190457,0.0,1.2851527340797424,0.000676981258612902,0.034360816981456606,0.7278008139110819,2,1.0,0.9541255577301526,0.43499999999999994
+148,48,0.7023919015280369,0.0,1.3027397547083193,0.0006739496097550883,0.03476872031224769,0.7243039923546291,2,1.0,0.9746396717601228,0.42999999999999994
+148,49,0.72,0.0,1.2985287162273833,0.0006683347936239373,0.03455202026664667,0.7251463284392408,2,1.0,1.0,0.41999999999999993
+149,0,0.17084899297432324,0.0,1.3720609506235684,0.0006997051041368993,0.03627728431742907,0.7102378786626117,1,0.1490566672970761,0.22893053140115538,0.05
+149,1,0.20966848998122478,0.0,1.3715606401208154,0.0006984452193851344,0.03643311055980537,0.710341350209359,1,0.19633893142986314,0.269832879935909,0.060000000000000005
+149,2,0.2683631465011352,0.0,1.371606206408573,0.0007001604838065505,0.03628006598032529,0.7103312686911624,1,0.25045657887245026,0.33567781298592536,0.060000000000000005
+149,3,0.2818886163780282,0.0,1.3838689011756504,0.0007007797171779384,0.0367099604385767,0.7078013382826345,1,0.29989553551028314,0.38975059649809696,0.07
+149,4,0.3416389631872053,0.0,1.3849448957548693,0.0007005590543101618,0.03675188995308654,0.7075788441541263,1,0.3659476098316382,0.4451909991537733,0.07
+149,5,0.36083165992036725,0.0,1.3819558993293726,0.000699458420474457,0.036660664103538035,0.7081973714196441,1,0.4221150476213329,0.5103046441763359,0.08
+149,6,0.29614987265579273,0.0,1.3854099085526341,0.0007002563736781841,0.03671231644236619,0.7074827438736864,1,0.44330901940149875,0.4699723862175607,0.14
+149,7,0.36967492557729875,0.0,1.3853341549630742,0.0007007285233102964,0.03659779221809728,0.7074982254841568,1,0.4879808500818245,0.4962720934955338,0.19
+149,8,0.37135505807742386,0.0,1.3848191018500553,0.0007010496368636291,0.036486686755544326,0.7076046686167337,1,0.5219529082771864,0.5289051339346955,0.24
+149,9,0.43561378589133526,0.0,1.3840538309279389,0.0007013390566755653,0.0363606192827054,0.7077628585182761,1,0.5832476510218627,0.5715903601122778,0.25
+149,10,0.3708729721638204,0.0,1.3850458494967433,0.0007006593344924766,0.0365606019874856,0.7075579137744551,1,0.598663068894422,0.5378029935025759,0.31
+149,11,0.3565437733488961,0.0,1.3849895294838215,0.0007016045353448197,0.0366517278961956,0.707569176206718,1,0.6349397190221522,0.5143829056371428,0.37
+149,12,0.4802502849612568,0.0,1.233150721353507,0.0006315273158688622,0.03295282788095476,0.7379974676424853,1,0.6931329415957995,0.5921791846757568,0.38
+149,13,0.49676943151297326,0.05,1.2445855171326867,0.0006425386742501298,0.03330852298132334,0.7209400607406866,1,0.740812227043766,0.6249505068255171,0.43
+149,14,0.5395880230136147,0.05,1.1934095644779679,0.0006198531269024322,0.03241895872451153,0.7311275306009694,1,0.7939079961524746,0.6724007478674955,0.44
+149,15,0.5525196357064873,0.1,1.1879534285216207,0.0006207463786577862,0.03196734790006439,0.7172385899633649,1,0.8391470068035134,0.696060611084192,0.49
+149,16,0.5542169846320988,0.05,1.3574565610814644,0.0006812444837268558,0.03578415597938953,0.6976602707927787,1,0.871643182750423,0.7304729022315025,0.54
+149,17,0.6151769713878477,0.0,1.352794218984716,0.0006780490209806942,0.03590223459275452,0.7141956957997216,1,0.9140283778647781,0.7842234637839177,0.55
+149,18,0.6385495872518947,0.0,1.3482067149432586,0.0006759392265644796,0.03568992442135932,0.7151320368011819,2,0.9725206205943645,0.8272245668128905,0.6000000000000001
+149,19,0.7336443745837538,0.0,1.116393966838555,0.0006406360855547568,0.03089860522004407,0.7599352878238445,2,1.0,0.8788145819458462,0.5700000000000001
+149,20,0.6873157013845549,0.05,1.1109620544285548,0.0006359849159877306,0.0313117294361146,0.7470170616011765,2,1.0,0.9243856712818497,0.5650000000000001
+149,21,0.7608490644261323,0.0,1.114267844257653,0.0006383280277318382,0.03057793994642734,0.7603237909321814,2,1.0,0.9694968814204411,0.535
+149,22,0.7075154886254464,0.05,1.1000798660774023,0.0006330974271071758,0.031169753102432123,0.7490691574964934,2,1.0,0.9917182954181547,0.53
+149,23,0.77,0.0,1.1034068661411565,0.0006357755350020914,0.030806868097792976,0.7622983290105839,2,1.0,1.0,0.5
+149,24,0.6387812618530965,0.05,1.0888845734915966,0.0006308420512214666,0.0308494626247696,0.7511684455829477,2,1.0,0.9626042061769884,0.48
+149,25,0.72,0.0,1.1182197198386101,0.0006413318191753441,0.03146807142483958,0.7596017969014698,2,1.0,1.0,0.47
+149,26,0.77,0.05,1.1351255061677274,0.0006347583603084823,0.031389719644835924,0.7424238643723361,2,1.0,1.0,0.43999999999999995
+149,27,0.72,0.1,1.1368575794572466,0.0006297744185230932,0.03167544726717574,0.7274816594430473,2,1.0,1.0,0.42999999999999994
+149,28,0.71,0.05,1.1701511875354043,0.0006267944073128427,0.03178937652650034,0.7356723135929142,2,1.0,1.0,0.42499999999999993
+149,29,0.72,0.05,1.1572254090029093,0.0006284332033266236,0.031960730394605924,0.7381775400564892,2,1.0,1.0,0.4149999999999999
+149,30,0.7,0.05,1.1822960631416666,0.0006255279707001094,0.031699441931043806,0.7333043840956511,2,1.0,1.0,0.4049999999999999
+149,31,0.71,0.05,1.2058752174671867,0.0006249721777143012,0.03247775667180218,0.7286679587974246,2,1.0,1.0,0.3999999999999999
+149,32,0.72,0.05,1.2002603817867177,0.000625051747812089,0.03250699850471064,0.729776615599009,2,1.0,1.0,0.3899999999999999
+149,33,0.6371749551709104,0.05,1.2224675861723922,0.000626303714640346,0.03231054485233896,0.7253745168437101,2,1.0,0.9572498505697014,0.3699999999999999
+149,34,0.703090853448818,0.0,1.2394448211764064,0.0006340923176229644,0.03340800079809377,0.7367776414363324,2,1.0,0.9769695114960603,0.3649999999999999
+149,35,0.72,0.05,1.2273531159133801,0.0006315579406675517,0.0328457760127395,0.7243981196101483,2,1.0,1.0,0.35499999999999987
+149,36,0.7,0.0,1.2538009431979686,0.0006348973686726084,0.03364627938028888,0.7339837050533028,2,1.0,1.0,0.34499999999999986
+149,37,0.7,0.0,1.2658192938695207,0.0006371273210830956,0.03357045744195159,0.7316296377732027,2,1.0,1.0,0.33499999999999985
+149,38,0.6346344714870551,0.0,1.2807496648487107,0.0006432963562756222,0.03406545173787413,0.7286855357873516,2,1.0,0.948781571623517,0.31499999999999984
+149,39,0.7173958071181261,0.0,1.0887390229276164,0.0006501062956865267,0.030735920625720874,0.7649407490396981,2,1.0,0.9913193570604203,0.3049999999999998
+149,40,0.6381400398061858,0.05,1.0798701386531264,0.0006326797603777098,0.030249587511628335,0.7528488718394457,2,1.0,0.9604667993539528,0.2849999999999998
+149,41,0.71,0.0,1.0868654078362097,0.0006520647727474309,0.030785022905079777,0.7652767661828339,2,1.0,1.0,0.2799999999999998
+149,42,0.72,0.05,1.0954050660745052,0.0006678063640400115,0.030966474851071586,0.7499338127594462,2,1.0,1.0,0.2699999999999998
+149,43,0.77,0.05,1.0921674827919259,0.0006540230136421911,0.03072756914976958,0.7505456365871759,2,1.0,1.0,0.2399999999999998
+149,44,0.72,0.1,1.1085031451232727,0.0006503975030971656,0.03119384245578332,0.733058516718211,2,1.0,1.0,0.2299999999999998
+149,45,0.77,0.05,1.105316783072849,0.0006373424814441091,0.03077207178961793,0.7480819193529458,2,1.0,1.0,0.1999999999999998
+149,46,0.6335104905720995,0.1,1.119514216881022,0.0006297570665323096,0.031144216748282542,0.7309064266858103,2,1.0,0.9450349685736652,0.1799999999999998
+149,47,0.77,0.05,1.1268295112482298,0.0006476274251566283,0.03142666438407523,0.744002217670412,2,1.0,1.0,0.1499999999999998
+149,48,0.6335144342358046,0.1,1.143507217084429,0.000639898370591748,0.03160099802221769,0.7261573362105523,2,1.0,0.9450481141193485,0.1299999999999998
+149,49,0.5917293371892063,0.05,1.148902244488216,0.0006540985377860981,0.03193090143745505,0.7397730968479228,2,1.0,0.8724311239640211,0.1099999999999998
+150,0,0.17168611176161883,0.0,1.3716045747892014,0.0007005497025505064,0.036256994249336774,0.7103314442424814,1,0.14416988284782278,0.23742217588293618,0.05
+150,1,0.22080341275920914,0.0,1.3704178649598238,0.0006992785831306826,0.03643698068664489,0.7105760843385677,1,0.20240520941363377,0.2998719648814578,0.060000000000000005
+150,2,0.16327073441523984,0.0,1.3849763753228947,0.0007007505069386572,0.03661592866328061,0.7075722514135658,1,0.2454531489248011,0.2578737743051982,0.12
+150,3,0.2860133107387782,0.0,1.3848200370768942,0.0007009363288553821,0.03673265110551597,0.7076045220049192,1,0.32702495184867,0.30518192530581245,0.12
+150,4,0.2847509096460676,0.0,1.3846780170186495,0.0007002484211876346,0.036740194373752914,0.7076341897798862,1,0.38081352760736115,0.33822058327830407,0.16999999999999998
+150,5,0.3446221479604281,0.0,1.3844457218287864,0.000700638025661654,0.036732668988422146,0.7076820853655702,1,0.4299224186224748,0.3804976714752063,0.16999999999999998
+150,6,0.2550321907701694,0.0,1.3489566041733239,0.0006727700421731988,0.0358704092813326,0.7149805377260438,1,0.43997047106442627,0.33680841965873404,0.22999999999999998
+150,7,0.22880843687169358,0.0,1.355703864131473,0.0006786713867099141,0.03550370595100048,0.7136011540872501,1,0.4638817698330583,0.2881660581004105,0.29
+150,8,0.23484783126955858,0.0,1.3607172243459273,0.0006844584847320923,0.03633765135030664,0.7125730840965616,1,0.49682302930243016,0.26986590337902683,0.35
+150,9,0.23660617506498696,0.0,1.365343340347676,0.0006914260832242458,0.036215547874568266,0.7116218061708142,1,0.5227794071294907,0.2454446085655508,0.41
+150,10,0.3757680610211842,0.0,1.369604842282369,0.000691671882909286,0.03617930108924107,0.7107463877641321,1,0.5849317852463729,0.30347312061651227,0.41
+150,11,0.39414293502167297,0.0,1.3715489458676617,0.0006954105675609607,0.03634983895457335,0.7103450051632688,1,0.6320894027188524,0.3763721469002489,0.42
+150,12,0.33536617825905424,0.0,0.9840447329382397,0.0004142628095624824,0.026223619413499544,0.7833211974723663,1,0.6640055343695748,0.3432141374323436,0.48
+150,13,0.4267684513225409,0.0,1.0117295953502579,0.00043078569437303036,0.026569548582100477,0.7785797303729145,1,0.7039908962968175,0.4012387920621824,0.49
+150,14,0.476730317825077,0.0,1.2500223386030538,0.000649053951836982,0.03333725733124989,0.7347153127034626,1,0.7521594284929891,0.44491505950843624,0.49
+150,15,0.4629173602043112,0.05,1.2465865594842298,0.0006529138330427563,0.0334878034887999,0.7205331237546624,1,0.7741975083598904,0.4731607742611654,0.54
+150,16,0.5377830231827928,0.05,1.24704221732109,0.0006484985110521344,0.03315228175282996,0.7204431394682473,1,0.8397218826868966,0.54626788080793,0.54
+150,17,0.45788706760346165,0.1,1.1216111559682782,0.0008276588131396486,0.034281733634528404,0.730415866428224,2,0.8627015504766349,0.5198050831221316,0.6000000000000001
+150,18,0.5467384154719749,0.05,1.1763923137426486,0.0006923855179867574,0.032797983361676816,0.7344313041485219,2,0.9187273096737761,0.5506128569538442,0.5950000000000001
+150,19,0.545451512771739,0.1,1.1675120611868748,0.0006849094906172352,0.03279291036740451,0.7213399853500112,2,0.9465224276163015,0.5805622103534451,0.5900000000000001
+150,20,0.5718778939925523,0.1,1.169774040719413,0.000678775865778708,0.03261106158993489,0.7208875487085583,2,0.9945232293642876,0.6126492123835056,0.5850000000000001
+150,21,0.6187377652862749,0.1,1.1838467603645708,0.0008327524368467319,0.034595828668431264,0.7179848619695557,2,1.0,0.6624592176209163,0.5750000000000001
+150,22,0.6143162687065606,0.15000000000000002,1.183502509601238,0.0008461390709778292,0.03555633456489542,0.7026199559962496,2,1.0,0.7143875623552021,0.5650000000000001
+150,23,0.6383998494900697,0.15000000000000002,1.1866901198022335,0.0008533161584977716,0.03539653593853653,0.7019504872912307,2,1.0,0.7613328316335656,0.56
+150,24,0.7044151828017188,0.15000000000000002,1.189250769017715,0.0008364944736951254,0.03468584458789047,0.7014215275718919,2,1.0,0.7813839426723961,0.53
+150,25,0.6582869747492304,0.2,1.1854304922657204,0.0008404479966002649,0.03551092984886746,0.6863023417346886,2,1.0,0.8276232491641011,0.525
+150,26,0.7300417842046986,0.15000000000000002,1.2483937992603038,0.0006450623724564731,0.03359073405707326,0.6889716538567511,2,1.0,0.8668059473489954,0.495
+150,27,0.6972926137178563,0.2,1.2383239625384128,0.0006454392864720754,0.03328784682359022,0.6748897873580143,2,1.0,0.9243087123928546,0.485
+150,28,0.6970095477635354,0.1,1.2545910950217465,0.000658543904930379,0.03372974820891097,0.7035148426915511,2,1.0,0.9900318258784513,0.475
+150,29,0.7088652970621253,0.05,1.2540219805552142,0.0006691684624788721,0.034058152201076046,0.7190268692189169,2,1.0,0.9962176568737512,0.47
+150,30,0.77,0.05,1.2443794907672707,0.0006615227921063695,0.03299653363418555,0.7209738703423293,2,1.0,1.0,0.43999999999999995
+150,31,0.6340954624823595,0.1,1.2393882768942213,0.0006644392034607451,0.03367122551274614,0.7066735868558787,2,1.0,0.9469848749411983,0.41999999999999993
+150,32,0.77,0.0,1.2651047336221355,0.0006615245625254964,0.03401898693266956,0.7317603391966255,2,1.0,1.0,0.3899999999999999
+150,33,0.6354158780028645,0.05,1.249803735904631,0.0006605428337897875,0.033728935366616405,0.7198817603774669,2,1.0,0.9513862600095485,0.3699999999999999
+150,34,0.77,0.0,1.274663184685508,0.0006587835395117728,0.03413816574219731,0.7298810677662699,2,1.0,1.0,0.33999999999999986
+150,35,0.72,0.0,1.2637414547323438,0.0006573223914183319,0.03394278396532093,0.7320294973742576,2,1.0,1.0,0.32999999999999985
+150,36,0.7,0.0,1.028632526144276,0.00048197273612504476,0.026853714149319315,0.7756342464142829,2,1.0,1.0,0.31999999999999984
+150,37,0.7,0.0,1.0121349924895298,0.00046486022360865215,0.026940916612702908,0.7784980833957913,2,1.0,1.0,0.30999999999999983
+150,38,0.7,0.0,0.9950921340362565,0.000447387094288993,0.02606217936584162,0.7814289490191767,2,1.0,1.0,0.2999999999999998
+150,39,0.7,0.0,0.9775461062704237,0.0004296661909712306,0.025644642612440836,0.7844169629399703,2,1.0,1.0,0.2899999999999998
+150,40,0.77,0.0,0.9595402907487286,0.00041186506790465204,0.025197832502135774,0.7874522356360221,2,1.0,1.0,0.2599999999999998
+150,41,0.71,0.05,0.9899994141938261,0.00042102935633685944,0.0255389748564006,0.7692637361208755,2,1.0,1.0,0.2549999999999998
+150,42,0.6310749653216703,0.0,1.0200136229821726,0.0004684824239387379,0.027091199399205512,0.7771352664964397,2,0.9941547801144242,0.943735974272073,0.2349999999999998
+150,43,0.7124435623415943,0.0,1.0363957645423076,0.0004698050359070295,0.026880900564555044,0.7742846057298202,2,1.0,0.9748118744719811,0.22499999999999978
+150,44,0.77,0.05,1.0188416794735244,0.0004523100668975773,0.026937386949606817,0.764093333552416,2,1.0,1.0,0.19499999999999978
+150,45,0.75,0.1,1.0631023146887562,0.00047153879991177,0.02790021860423586,0.7419167068979379,2,1.0,1.0,0.16499999999999979
+150,46,0.75,0.1,1.106464938850281,0.0004959774437759212,0.02897356068658461,0.7335175442070466,2,1.0,1.0,0.1349999999999998
+150,47,0.75,0.1,1.1362754410561666,0.0005179204558447921,0.02967272173435001,0.7276413908753498,2,1.0,1.0,0.10499999999999979
+150,48,0.75,0.1,1.1636675609554619,0.0005460205074939508,0.03061589549543236,0.7221678422345646,2,1.0,1.0,0.07499999999999979
+150,49,0.71,0.1,1.1876869159477668,0.0005797193818456603,0.03196667332256602,0.7173092764876614,2,1.0,1.0,0.06999999999999978
+151,0,0.168758767687322,0.0,1.3717601051313864,0.0007005085723054199,0.03621899001449768,0.7102994580931907,1,0.14189578665835917,0.23031747452298765,0.05
+151,1,0.11467624578192398,0.0,1.3699104468453274,0.0006994050527058632,0.036447035746400236,0.7106803756282755,1,0.16272641388719836,0.19240666973801523,0.11
+151,2,0.2065912083183481,0.0,1.3578055572900916,0.0007204764236617814,0.03643363279135643,0.7131543253347304,1,0.20367603044760857,0.25101532553895045,0.12
+151,3,0.21756359010853593,0.0,1.3841778554748778,0.0006998832308050449,0.03670051696278938,0.7077378075513738,1,0.24777133244495053,0.26947874584267745,0.16999999999999998
+151,4,0.16765065236736526,0.0,1.3839529798377361,0.0007001042501244123,0.0367141715033434,0.707784228355312,1,0.28016058116690007,0.2319814965298342,0.22999999999999998
+151,5,0.24816796464883023,0.0,1.383841260966696,0.0007004063517704151,0.0367125960822926,0.707807209195252,1,0.34124947031919783,0.26243550012370337,0.27999999999999997
+151,6,0.23879297007343506,0.0,1.383526423687034,0.0007007361956908612,0.03668238131971484,0.7078721819570464,1,0.35735922185129276,0.2790574747516086,0.32999999999999996
+151,7,0.21122204044966636,0.0,1.3831272259585967,0.0007010292181669506,0.036546417777287066,0.7079546037000533,1,0.39333544540517157,0.24518211519285438,0.38999999999999996
+151,8,0.18679815354286258,0.0,1.3801754694425123,0.0007030789697916385,0.03631688114194279,0.7085636723930516,1,0.41108617673366316,0.20972663895360158,0.44999999999999996
+151,9,0.18531829081875512,0.0,1.3634528218438193,0.0006940523214999897,0.03632085201126808,0.7120085389151971,1,0.4336648606988972,0.17845196524713697,0.51
+151,10,0.277043532992222,0.0,1.3862231591833518,0.0007001820510908728,0.03654735883647965,0.7073144432932318,1,0.4776274508231843,0.19957975068035835,0.56
+151,11,0.3170838232707858,0.0,1.3862644412018506,0.0007001515446576577,0.036677545822273075,0.7073059096179756,1,0.5171652854971766,0.2535865778225802,0.5700000000000001
+151,12,0.3271388527633626,0.0,1.3563803174229014,0.0006956457698518474,0.03579042994010032,0.7134559439600671,1,0.5629439636554373,0.30036155161319833,0.5800000000000001
+151,13,0.4106148054002314,0.0,1.353539694619947,0.000695165620232366,0.03602230913961961,0.7140365148968143,1,0.6362378606646724,0.35977184722532035,0.5800000000000001
+151,14,0.395741816429279,0.05,0.8851414697521726,0.0003248007369596534,0.02318370562474204,0.7873807509285422,2,0.6649663572288848,0.37667863799723134,0.6300000000000001
+151,15,0.5075914800818906,0.0,1.3554805549845874,0.000714210717428202,0.03630959456394954,0.7136322651120641,2,0.7528027342261637,0.41370174367577756,0.6000000000000001
+151,16,0.37836294612941634,0.05,1.1613631511480242,0.0006007749425892659,0.03166411256620554,0.7373877568557047,2,0.7786015211397895,0.3528413791016335,0.5800000000000001
+151,17,0.34733162773682147,0.0,1.351629477702732,0.0006951520625622168,0.03585664425750636,0.7144264049828887,2,0.7861361426941132,0.30727992597960635,0.56
+151,18,0.34093488888717466,0.0,1.3508047128836795,0.0006998393095205373,0.036243513218312956,0.7145927329005757,2,0.7995966247585121,0.2702535674056515,0.54
+151,19,0.32667858990380977,0.0,1.350910082345496,0.0007041175638937535,0.035876402247831535,0.7145694971355164,2,0.8114925970152064,0.20885393649495862,0.52
+151,20,0.5097500971269735,0.0,1.044045045467742,0.0004968173847364615,0.027708111362768184,0.7729354708458467,2,0.8933900535077982,0.25687859466414725,0.49
+151,21,0.5394522534962407,0.05,1.0598872241534962,0.0005221566675303346,0.028282246530351753,0.75658893771161,2,0.9773687451778235,0.32457730894667497,0.45999999999999996
+151,22,0.5173670988542737,0.05,1.0804245970986737,0.0005543945390040581,0.029254010858219538,0.7527748303861682,2,1.0,0.3578903295142457,0.45499999999999996
+151,23,0.512878843000958,0.05,1.069935322599635,0.0005398820684432254,0.02877782449890674,0.7547271286008391,2,1.0,0.40959614333652683,0.44999999999999996
+151,24,0.4597052684825689,0.05,1.1268489610476426,0.0006184553965735277,0.030800663622755083,0.7440096255139248,2,1.0,0.36568422827522956,0.42999999999999994
+151,25,0.5981522794152462,0.0,0.7739056558168125,0.00023774168575855216,0.01884260802441488,0.8169201354652073,2,1.0,0.4271742647174873,0.3999999999999999
+151,26,0.46072227721286035,0.05,1.0908836463226335,0.0006204044539388197,0.030231879259768852,0.7507985082482878,2,1.0,0.36907425737620125,0.3799999999999999
+151,27,0.4293799917293521,0.0,0.9174728885350072,0.0004980140654973897,0.025840317586178073,0.7943798288629947,2,1.0,0.33126663909784043,0.3599999999999999
+151,28,0.517666253353715,0.0,0.9227574234513897,0.0004920986099116451,0.025632146217576857,0.7935172457843738,2,1.0,0.3588875111790498,0.35499999999999987
+151,29,0.5103719162583727,0.05,0.9111489671339366,0.00047834793599935106,0.025486599135494937,0.782942053830411,2,1.0,0.40123972086124254,0.34999999999999987
+151,30,0.6047636125640262,0.05,1.0782816730739193,0.000627385203358105,0.030365087424447462,0.7531462835528143,2,1.0,0.4492120418800876,0.31999999999999984
+151,31,0.5665624898733563,0.1,1.1986536852814376,0.0008661051572120982,0.035132187695015846,0.7149634702889515,2,1.0,0.488541632911188,0.30999999999999983
+151,32,0.6297252376343039,0.05,1.2044594419251333,0.0008885334099155897,0.03601555970609993,0.7288436195476553,2,1.0,0.532417458781013,0.2799999999999998
+151,33,0.494114616529593,0.1,1.1863508609299673,0.0008903067671342225,0.03547955203445384,0.7174542150072255,2,1.0,0.4803820550986433,0.2599999999999998
+151,34,0.46145390399068564,0.05,1.216632002084818,0.0008625416264010453,0.03547771567809814,0.7264415896061489,2,1.0,0.43817967996895235,0.2399999999999998
+151,35,0.6156279722009635,0.0,1.2295167880846023,0.0008463964673804062,0.035954550022811824,0.7386165491913861,2,1.0,0.4854265740032118,0.2099999999999998
+151,36,0.6092702196546059,0.05,1.2113140636239752,0.0008461158828425065,0.03613042443249242,0.7275036317445451,2,1.0,0.53090073218202,0.1799999999999998
+151,37,0.6257129153868031,0.05,1.2075291854241452,0.0008363243269866622,0.035856476710652965,0.7282571830057702,2,1.0,0.5857097179560102,0.1499999999999998
+151,38,0.5086709195091564,0.05,1.1952030501262567,0.0008287693017607349,0.03465590758550009,0.7306926074556191,2,1.0,0.5289030650305216,0.1299999999999998
+151,39,0.5906881234397223,0.0,1.2156298950116442,0.0008096908757478504,0.0357818094198694,0.7413027636051287,2,1.0,0.5689604114657411,0.11999999999999982
+151,40,0.5880043394085407,0.05,1.2087095714412546,0.0008477085099275886,0.0356130132862907,0.728019014988495,2,1.0,0.593347798028469,0.11499999999999981
+151,41,0.5727360126494858,0.05,1.2379583358602582,0.0008226116496432222,0.036149515622410575,0.7221991498049627,2,1.0,0.6091200421649531,0.1099999999999998
+151,42,0.6196278527358052,0.05,0.8879765798274795,0.0004283724712021433,0.02407829136803201,0.7868709949745599,2,1.0,0.6654261757860174,0.09999999999999981
+151,43,0.6176855448310055,0.1,0.9146296756312049,0.000432718984919272,0.02479420461369127,0.7693252081388947,2,1.0,0.6922851494366852,0.0949999999999998
+151,44,0.5420827217415917,0.1,0.9428520201418721,0.00048124672022050027,0.02586134587751367,0.7642612510401999,2,1.0,0.6402757391386391,0.0749999999999998
+151,45,0.6263413325112367,0.05,0.9750587135040318,0.0004818483946851525,0.026367657202521617,0.7718835741599954,2,1.0,0.6878044417041225,0.06499999999999981
+151,46,0.541616185087955,0.1,0.990521340223318,0.0004801365656751851,0.026308732955232263,0.7555653689657549,2,1.0,0.63872061695985,0.044999999999999804
+151,47,0.6132427639091906,0.05,1.033359217159386,0.0004912264147223443,0.027229940249867156,0.7614523162563308,2,1.0,0.6774758796973024,0.03999999999999981
+151,48,0.6053483544586833,0.1,1.0295083457691234,0.0005156587571572536,0.027703089539146648,0.7482800858709467,2,1.0,0.7178278481956112,0.03499999999999981
+151,49,0.6944546355503215,0.1,1.0456188095612013,0.0005462781380261108,0.0282669552637271,0.7452218198808125,2,1.0,0.7481821185010716,0.00499999999999981
+152,0,0.09143805918047923,0.1,1.3703284657740593,0.0006995702621680218,0.036165624114653676,0.6788021459432902,1,0.13238508616028627,0.1503442634145968,0.06
+152,1,0.2102588224194219,0.0,1.3534093473606597,0.00072095719362911,0.0362053998692633,0.7140525973414493,1,0.19141195449804674,0.21088212781701854,0.06
+152,2,0.22971090855812087,0.0,1.3682664462432232,0.0006996842856561343,0.036182069116562424,0.7110181729416908,1,0.2460117298442524,0.2786893437087751,0.06
+152,3,0.271369360404664,0.0,1.3816134275545302,0.0006971138675423131,0.03661502874301296,0.7082691083680632,1,0.29760322680963625,0.357360770070971,0.06
+152,4,0.3122598670458131,0.0,1.381048769123619,0.0006965787333694574,0.036562242225731956,0.7083859877083685,1,0.360119247233578,0.420727101713536,0.06
+152,5,0.2496822014636641,0.0,1.3777045310875347,0.0006986805118344423,0.03654991367761362,0.7090754757305888,1,0.3837926831219355,0.3845158745699557,0.12
+152,6,0.369617554934463,0.0,1.3812873279023106,0.0006967822499095871,0.0365179126828987,0.7083366208207666,1,0.44715575966812093,0.4437101301687357,0.12
+152,7,0.36286588322902963,0.0,1.369191481816499,0.0007058621395620783,0.03624978701283756,0.71082552781542,1,0.4857105730339403,0.4762239422238352,0.16999999999999998
+152,8,0.36379122201488034,0.0,1.3695971331034977,0.0007114829764375721,0.03661478020113797,0.7107398268535812,1,0.5244108340031234,0.5008247670459572,0.21999999999999997
+152,9,0.42668894891622655,0.0,1.3692830552850959,0.0007165171666316124,0.03613557442462764,0.7108023237619809,1,0.5648329766709889,0.5633246902712683,0.22999999999999998
+152,10,0.44466454850705817,0.0,1.3724403299720302,0.0007121609043522663,0.0365783543208315,0.7101546684999286,1,0.611054119135276,0.6026520226990385,0.27999999999999997
+152,11,0.39393061146938846,0.0,1.3443524867101555,0.0007131289066533942,0.035921496656116214,0.7159014342709666,1,0.6419535436703823,0.5641562372825157,0.33999999999999997
+152,12,0.4892769312140351,0.0,1.2357541435277182,0.0006520366410759544,0.033269210733083074,0.7374858242398435,1,0.6906824187494804,0.6251269488390565,0.35
+152,13,0.5025630216535596,0.05,1.05401520161438,0.0005248221167587188,0.02814955957940001,0.7576677330290416,1,0.726982526052846,0.6603971251168784,0.39999999999999997
+152,14,0.505791241662839,0.05,1.054162240435812,0.0005192962459084488,0.0286378568588459,0.7576427639282793,1,0.7582008271266454,0.7014031738950438,0.44999999999999996
+152,15,0.5884296441265491,0.05,1.0416402087723065,0.0005078201627687737,0.027640717719148954,0.7599388251783274,1,0.8002897063230127,0.7610941563783152,0.44999999999999996
+152,16,0.5077535602243239,0.1,1.1480231219019326,0.0005225019308267113,0.030016763308074474,0.7253052011209393,1,0.8383953278583072,0.7143839849130549,0.51
+152,17,0.61292275316823,0.05,1.1809926731493787,0.0005649012262529334,0.03144409169621802,0.7335829076667765,1,0.9101448087514952,0.7812402336840221,0.52
+152,18,0.6694696604278686,0.1,1.183577733911569,0.0005675249154373734,0.031259557699637536,0.7181467148459342,1,0.9599077659360771,0.8450064745008055,0.52
+152,19,0.6822618774313558,0.15000000000000002,1.1394317176867288,0.000986628891434657,0.03603690263621376,0.7116877206344462,1,1.0,0.9075395914378526,0.53
+152,20,0.676428778728536,0.15000000000000002,1.1642928400701413,0.00095078948804848,0.036262609790701165,0.7065746469922792,1,1.0,0.9214292624284536,0.5800000000000001
+152,21,0.7278892932241073,0.15000000000000002,1.1580715701872346,0.0009530441502434322,0.036078446550882444,0.7078618915239827,1,1.0,0.9929643107470245,0.5800000000000001
+152,22,0.71,0.2,1.183723980561521,0.0009306373466948057,0.03621832192452798,0.686630811647858,1,1.0,1.0,0.5900000000000001
+152,23,0.69,0.2,1.2044076822045997,0.0008990143040757051,0.036251017463168514,0.6821769475900346,2,1.0,1.0,0.6000000000000001
+152,24,0.7,0.2,1.2344989456097502,0.0006277016906940131,0.033003962300296466,0.675736259130553,2,1.0,1.0,0.5900000000000001
+152,25,0.6342004573185647,0.15000000000000002,1.251848148166398,0.0006358893818235594,0.03317156073606328,0.6882348761023592,2,1.0,0.9473348577285492,0.5700000000000001
+152,26,0.7061649193212232,0.05000000000000002,1.2639479267779004,0.0006369273662960084,0.03347464422999625,0.7170302886665113,2,1.0,0.9872163977374107,0.5650000000000001
+152,27,0.69,0.10000000000000002,1.2482830936784093,0.0006322413935178704,0.033558006309249495,0.7048398292036925,2,1.0,1.0,0.56
+152,28,0.69,0.10000000000000002,1.248927618140083,0.0006324312331643219,0.033151754386414184,0.704705645209317,2,1.0,1.0,0.555
+152,29,0.72,0.10000000000000002,1.2438158806012811,0.0006304813402093467,0.0329557542469899,0.7057690708834206,2,1.0,1.0,0.545
+152,30,0.7,0.10000000000000002,1.260590476669208,0.0006366641651822382,0.033668645855163194,0.7022711050374225,2,1.0,1.0,0.535
+152,31,0.6391152467102167,0.05000000000000002,1.2743511057703059,0.0006446755229849926,0.03388499244232189,0.7149115902393438,2,1.0,0.9637174890340557,0.515
+152,32,0.71,0.0,1.286251179152751,0.0006461828328342149,0.033988686621958045,0.7275953587300085,2,1.0,1.0,0.51
+152,33,0.6391017417354941,0.0,1.2760311423566455,0.000640715464263106,0.03386525658915516,0.7296184125251461,2,1.0,0.9636724724516468,0.49
+152,34,0.71,0.0,1.291383619952385,0.0006466900752850444,0.03411702314959733,0.7265767181898044,2,1.0,1.0,0.485
+152,35,0.69,0.0,1.2852311509931087,0.0006433151699886402,0.03418921208931351,0.7277986179440556,2,1.0,1.0,0.48
+152,36,0.638507701814258,0.0,1.278708894816139,0.0006395484061416236,0.033843046185855145,0.7290902942210109,2,1.0,0.9616923393808602,0.45999999999999996
+152,37,0.6028073525856104,0.0,1.2928110386665765,0.0006492907752789281,0.03439428131717046,0.726292017228505,2,1.0,0.9093578419520345,0.43999999999999995
+152,38,0.7607168648436463,0.0,1.3038947064523119,0.0006600657008718916,0.03456029993702642,0.7240788506683395,2,1.0,0.9690562161454878,0.4099999999999999
+152,39,0.6280233463142266,0.0,1.300025976785738,0.0006569983598636131,0.03443727936778782,0.7248523320953795,2,1.0,0.9267444877140888,0.3899999999999999
+152,40,0.5912244047831572,0.0,1.3092011170912432,0.000667283438488074,0.03472055132907429,0.7230145394512899,2,1.0,0.8707480159438576,0.3699999999999999
+152,41,0.5721397199804897,0.0,1.3159010634565669,0.0006774582607845781,0.0351383762355499,0.7216666876441132,2,1.0,0.807132399934966,0.34999999999999987
+152,42,0.5579710770612475,0.0,1.3206376310180177,0.0006873031256497751,0.03510732770120407,0.7207103208540522,2,1.0,0.7599035902041584,0.32999999999999985
+152,43,0.7103373085093686,0.0,1.1403573136232592,0.0006385902242172742,0.031784907155461124,0.7555371328821793,2,1.0,0.8011243616978956,0.2999999999999998
+152,44,0.6768848944866073,0.05,1.0250850218420404,0.000530016671000508,0.028482635304610888,0.7629379792590925,2,1.0,0.8562829816220243,0.2899999999999998
+152,45,0.6671981524431947,0.0,1.021372172602533,0.0005234089804904884,0.028162478045000838,0.7768808414603299,2,1.0,0.8906605081439826,0.2799999999999998
+152,46,0.754006836550791,0.0,0.9846921003526145,0.0004896034752176369,0.02737759451214561,0.7831857147517414,2,1.0,0.9466894551693038,0.2499999999999998
+152,47,0.717198200692446,0.05,1.012849232717528,0.0005702517105516979,0.02927309735189466,0.7651294032709589,2,1.0,0.9906606689748201,0.2399999999999998
+152,48,0.71,0.0,1.0080341477200494,0.0005603696529047124,0.02922633514884989,0.7791715549656746,2,1.0,1.0,0.2349999999999998
+152,49,0.69,0.0,1.0254806723118695,0.0005437222302548212,0.028729406578363897,0.7761608182326931,2,1.0,1.0,0.2299999999999998
+153,0,0.10150379833783804,0.0,1.3674642402848902,0.0007003070874537043,0.03615414389056363,0.7111827195116115,1,0.14952298292447294,0.16390251438090842,0.06
+153,1,0.22865298502350706,0.0,1.3485162638029609,0.0007356879075898963,0.03633081412712261,0.7150446242072966,1,0.21934049118404708,0.23961271036363532,0.06
+153,2,0.2455733305507132,0.0,1.3792437816699268,0.0006953706680862326,0.03636215452040227,0.7087592119382164,1,0.28760450644357705,0.2830391776515374,0.06
+153,3,0.17440780622801377,0.0,1.3784010520691734,0.000694928612620644,0.03651064549200221,0.7089333196630992,1,0.29885061201394353,0.2327003067437785,0.12
+153,4,0.25006589273990454,0.0,1.379558364048744,0.0006954980811058004,0.03649927468418329,0.7086942190998945,1,0.34747039983898886,0.26150417598752806,0.16999999999999998
+153,5,0.3198136053976152,0.0,1.3789388944864411,0.0006950913941363866,0.03653450917798454,0.708822257900702,1,0.4187874649179607,0.31079330892109663,0.16999999999999998
+153,6,0.3110861019804766,0.0,1.3634782545211035,0.0006885410035714246,0.036234413886243697,0.7120055840928877,1,0.45851507305780886,0.33535275470081166,0.21999999999999997
+153,7,0.31747813936804126,0.0,1.36042852980568,0.0006871299533884284,0.03575775681445266,0.7126311146031157,1,0.5021206700302496,0.3724530161915131,0.26999999999999996
+153,8,0.3779082878646791,0.0,1.3570897236358688,0.0006854540782567061,0.03630992802473129,0.7133150617881788,1,0.5376054730960717,0.43248790760351336,0.27999999999999997
+153,9,0.4425749777011827,0.0,1.3717430056634303,0.000716368721119424,0.03622118449455816,0.7102964494953187,1,0.5871801991042839,0.5235396933822777,0.27999999999999997
+153,10,0.46445954606108153,0.0,1.3750734662441169,0.0007122999134508682,0.03658521886485845,0.7096123197936459,1,0.6428825208653576,0.5981688791940213,0.27999999999999997
+153,11,0.5144812281575384,0.0,1.3046732519671802,0.0006893895885115263,0.03487992010629367,0.7239115575615047,1,0.7221360550509024,0.672445362965742,0.27999999999999997
+153,12,0.4600438886886763,0.0,1.2850214600153032,0.0006876882793195053,0.03506474013899184,0.7278225773828241,1,0.7624073803118234,0.6440043519317937,0.33999999999999997
+153,13,0.43782809550400115,0.0,1.1348091461765102,0.0005350214087658821,0.029780947987359002,0.7565985781916903,1,0.7886462166753004,0.6060063988921535,0.39999999999999997
+153,14,0.5297328475547383,0.0,1.1616540167447764,0.0005420774495884248,0.030179655291027785,0.7516182792595959,1,0.8287819866694487,0.6321971740681039,0.44999999999999996
+153,15,0.47730678258726567,0.05,1.2318966259569222,0.0005762336037893434,0.03268135727792777,0.7235122390993347,1,0.8604398480794352,0.5871761191982114,0.51
+153,16,0.549938904531345,0.0,1.0585099355982601,0.001013489118240957,0.03541848287922254,0.7702039345428773,1,0.8980116239256941,0.6187827871911736,0.56
+153,17,0.4971943316442733,0.05,1.1918738719424922,0.0005458168847001116,0.03149289900374489,0.7314583963979706,2,0.9270015028729104,0.5758126854625155,0.6200000000000001
+153,18,0.591063852996653,0.0,1.0003863157065433,0.0005916341471950349,0.02842726202567879,0.7804739426207169,2,0.9975736065475042,0.6063769690167551,0.6150000000000001
+153,19,0.5099667123768731,0.05,1.1719747147210582,0.0007672748569065174,0.03426999933462087,0.7352628749511271,2,1.0,0.5332223745895771,0.5950000000000001
+153,20,0.47610184747018036,0.0,0.947565752550525,0.0005265043807903019,0.02646727738083335,0.7894114168562043,2,1.0,0.48700615823393456,0.5750000000000001
+153,21,0.582366501144528,0.0,0.9555004823982749,0.0005213300099584654,0.026759891502605417,0.7880910383097581,2,1.0,0.5412216704817604,0.5650000000000001
+153,22,0.6518981724122768,0.05,0.9610662849500445,0.0005496262577410055,0.027094799922349998,0.7743142864382642,2,1.0,0.6063272413742562,0.535
+153,23,0.5992455028071808,0.1,1.1832699409749348,0.0007631156898149924,0.033056657353946924,0.7181298356822384,2,1.0,0.6308183426906029,0.53
+153,24,0.5910788904224257,0.05,1.185400511272664,0.0007525263867538107,0.03406289750740756,0.7326470617360248,2,1.0,0.6702629680747525,0.525
+153,25,0.5336395398947578,0.05,1.178932982708504,0.0007434850244418754,0.03305438947320066,0.7339155147203714,2,1.0,0.6121317996491927,0.505
+153,26,0.6009220973674722,0.0,1.199438877037266,0.0007349172596232412,0.034086237996353665,0.7444240656092361,2,1.0,0.6364069912249072,0.5
+153,27,0.5239879415866723,0.05,1.1919409015708013,0.0007254130425720993,0.03282351389680844,0.7313746666366948,2,1.0,0.5799598052889076,0.48
+153,28,0.6609700742444679,0.0,1.0273042776979462,0.0005623400556634931,0.028624766485656594,0.775837358508551,2,1.0,0.6365669141482262,0.44999999999999996
+153,29,0.6594298877868301,0.05,1.19771094589173,0.000723033444997567,0.033185103543814126,0.7302404756897101,2,1.0,0.6980996259561003,0.41999999999999993
+153,30,0.5466229279450916,0.05,1.2002849110365554,0.0007295638941003291,0.03306556713927865,0.7297305557366335,2,1.0,0.6554097598169722,0.3999999999999999
+153,31,0.6836783502847372,0.0,1.2218776263169762,0.0007204975732210395,0.034397248713048126,0.7401371237486806,2,1.0,0.7122611676157911,0.3699999999999999
+153,32,0.54744688975472,0.05,1.2144516738143185,0.000726270624899694,0.03373859692716562,0.7269287634687533,2,1.0,0.6581562991824,0.34999999999999987
+153,33,0.6173131577384181,0.0,1.240541743752892,0.0007166260216348731,0.03457975205136656,0.7365328225847961,2,1.0,0.6910438591280607,0.34499999999999986
+153,34,0.5431466512486393,0.05,1.2329608765922397,0.0007086983071342473,0.0332603485829663,0.7232462679168759,2,1.0,0.6438221708287976,0.32499999999999984
+153,35,0.6106912253108707,0.0,1.1390223428406527,0.0006389397470711845,0.030849385595168782,0.7557834898708992,2,1.0,0.668970751036236,0.31999999999999984
+153,36,0.6022801756346597,0.05,1.123808163937874,0.0006373628096111015,0.03153519988833438,0.7445811522061236,2,1.0,0.7076005854488661,0.31499999999999984
+153,37,0.612634805122563,0.05,1.1250657295504083,0.0006366647832416566,0.03090777463647244,0.7443421804147202,2,1.0,0.7421160170752101,0.30999999999999983
+153,38,0.5605921141266957,0.05,1.1170919491907025,0.0006339755768324391,0.03134441531084037,0.7458576269615461,2,1.0,0.7019737137556524,0.2899999999999998
+153,39,0.6433533315912324,0.0,1.1380042477524295,0.0006508687286720593,0.03189172365501723,0.7559669543238201,2,1.0,0.744511105304108,0.2799999999999998
+153,40,0.6430077049064302,0.05,1.156416912219187,0.0006414463735921462,0.03231679450452809,0.7383287410744147,2,1.0,0.7766923496881009,0.2749999999999998
+153,41,0.670852570675132,0.05,1.1554108409875354,0.0006393408800700554,0.032225937334709534,0.7385238800021802,2,1.0,0.8361752355837734,0.2649999999999998
+153,42,0.5908482581808958,0.05,0.9276176799628948,0.0005769291643830574,0.02809747671573474,0.7800964391849083,2,1.0,0.8028275272696528,0.2449999999999998
+153,43,0.6615180977758521,0.0,0.9587035066416003,0.0005836466802934227,0.028670868389318167,0.7875347749091166,2,1.0,0.8383936592528405,0.2399999999999998
+153,44,0.6500467974905628,0.05,0.9726285416989298,0.0005627989337875314,0.02854206865925013,0.7722827234032398,2,1.0,0.8668226583018763,0.2349999999999998
+153,45,0.7430201647770177,0.05,1.0201675290841974,0.0005683784849602042,0.029038545247748952,0.7638123836143371,2,1.0,0.9100672159233926,0.2049999999999998
+153,46,0.6071986097946862,0.1,1.0432953809381784,0.0006455217872131807,0.031000211032773874,0.7456250642657183,2,1.0,0.8573286993156206,0.1849999999999998
+153,47,0.74261802906092,0.05,1.0809930859742467,0.0006533501281431255,0.031511223473161584,0.7526321719624329,2,1.0,0.9087267635364001,0.1549999999999998
+153,48,0.6138792622939926,0.1,1.086066323657486,0.0007141132347640285,0.03245028743473968,0.7374013411457218,2,1.0,0.8795975409799757,0.13499999999999981
+153,49,0.6762534310272039,0.05,1.1174949986963727,0.0007130083981251099,0.032835768476833435,0.7457512506531421,2,1.0,0.8875114367573465,0.1299999999999998
+154,0,0.16998077590446942,0.05,1.3678666130940664,0.0007003375878092337,0.036159486891287305,0.6954518788597686,1,0.14969646293556713,0.2252900462567365,0.05
+154,1,0.21880279450269371,0.0,1.3673472003659182,0.0006990374575265859,0.036414902207335696,0.711207280676964,1,0.21108964165624056,0.2830713997433651,0.060000000000000005
+154,2,0.23627818257353117,0.0,1.378439036468383,0.0006947407822546063,0.036357303099617926,0.7089255591567285,1,0.2587858562615949,0.31901044293990993,0.11000000000000001
+154,3,0.27028392038322224,0.0,1.3777654728976443,0.0006943774166357781,0.0364952862323838,0.7090646794311607,1,0.2874938045704327,0.3655369626119026,0.12000000000000001
+154,4,0.3242824384629657,0.0,1.3795014487876476,0.0006955352814683336,0.03649652789306935,0.7087059535700442,1,0.32262971394310885,0.43787346194292553,0.12000000000000001
+154,5,0.24617399777607873,0.0,1.379738804221597,0.0006973495133055932,0.03659288602876139,0.7086562019124288,1,0.3614184795453357,0.39892509978403756,0.18
+154,6,0.34767658420342207,0.0,1.380107975377496,0.0006959080817980122,0.03646257013080325,0.7085805713035368,1,0.42148574315546056,0.4671885803300363,0.19
+154,7,0.2823051111610407,0.0,1.3755998605795086,0.0007115299747733996,0.036489511729570476,0.7095041549824597,1,0.4406245949440442,0.42695500976875067,0.25
+154,8,0.37476293256532744,0.0,1.374108869895522,0.0007121497993684493,0.036591984154203575,0.7098111087424036,1,0.4815745835354623,0.4873727610930521,0.26
+154,9,0.4314123430909481,0.0,1.3765461265478143,0.000708976683831667,0.036204363893580144,0.7093101362534591,1,0.5517425675353593,0.5276748148452411,0.26
+154,10,0.4473287261480905,0.0,1.3787642881014732,0.0007061387227266705,0.03654221185732305,0.7088537342915745,1,0.600216935350048,0.5908426625852458,0.26
+154,11,0.47965101285810086,0.0,1.30257925888227,0.0006781215360053292,0.034783759782271356,0.7243343741982313,1,0.636138360110531,0.6566752893980502,0.27
+154,12,0.41925740219224084,0.05,1.2082606637597455,0.0006333873099108121,0.0331620003177725,0.7281927415625256,1,0.6705751576642641,0.6151869900324946,0.33
+154,13,0.5183123904830953,0.0,1.2058814859811193,0.0006303838585088021,0.03317798581178202,0.7432362854654034,1,0.7329061359977542,0.6726508096129379,0.34
+154,14,0.446579552293722,0.05,0.9398470101649619,0.0003399807390692246,0.023479876698274196,0.778073203275754,1,0.7393602095014727,0.6260115965606885,0.4
+154,15,0.42895875783569437,0.0,0.9892681653085487,0.0003750697892291906,0.02518734515299968,0.7824466605102605,1,0.7775170039571804,0.5894260215022711,0.46
+154,16,0.43169889448194176,0.0,1.2438346391109394,0.0006622324195760521,0.033005269071460244,0.7359144741322895,1,0.8187310503498827,0.5504767561982762,0.52
+154,17,0.4320134157844161,0.0,0.9973211974298846,0.0011054521270520892,0.036433652784273136,0.7808228338664731,1,0.8517777858644567,0.5129706357728543,0.5800000000000001
+154,18,0.5677150154568332,0.0,0.9955347060663917,0.0011246734951040865,0.035782855939196646,0.7811218454908396,1,0.8961855544635661,0.580166904648617,0.5800000000000001
+154,19,0.5752688409993776,0.05,1.0189353598531345,0.0011066450539909854,0.036587221716955096,0.7638404596836842,1,0.9272226225591019,0.6358030770123064,0.5900000000000001
+154,20,0.6389672278423068,0.0,1.263211738531787,0.0006118055610539035,0.03358070964223126,0.7321512475625707,1,1.0,0.6965574261410226,0.5900000000000001
+154,21,0.550800463888145,0.0,1.2680315489155323,0.0006110767727394306,0.03372844585492944,0.731205284327407,2,1.0,0.6693348796271499,0.6500000000000001
+154,22,0.618537234060274,0.0,1.1964825208299947,0.0007232529862530195,0.03350812711284302,0.744990558123043,2,1.0,0.695124113534247,0.6450000000000001
+154,23,0.5450773631890755,0.05,1.193097190770368,0.0007135380345514276,0.033201113690263614,0.7311521031642144,2,1.0,0.6502578772969183,0.6250000000000001
+154,24,0.6325218352273771,0.0,1.219852065105894,0.0007052686933057667,0.03412781380532244,0.7405323711507489,2,1.0,0.7084061174245906,0.6150000000000001
+154,25,0.6253095216804427,0.05,1.2184332449751696,0.0007178742398047995,0.03320933323282029,0.7261410340246517,2,1.0,0.7510317389348092,0.6050000000000001
+154,26,0.7106738172714788,0.05,1.2246488386132859,0.0007285781237476297,0.03441787949777466,0.7248989946754112,2,1.0,0.8022460575715964,0.5750000000000001
+154,27,0.7044442088585723,0.1,1.2497675891873405,0.0006320710312606793,0.03351811533202455,0.7045309708454199,2,1.0,0.8481473628619078,0.545
+154,28,0.6818338844887044,0.05,1.2505671511297307,0.0006349261978491509,0.03318039094293239,0.7197381249674457,2,1.0,0.8727796149623479,0.535
+154,29,0.6833994135163521,0.0,1.2590870582295104,0.000642079839736177,0.03367238782798878,0.7329474950125435,2,1.0,0.9113313783878404,0.53
+154,30,0.6102431147580424,0.0,1.2480320107986935,0.000635699873198016,0.03316365126346922,0.7351082644368782,2,1.0,0.8674770491934748,0.51
+154,31,0.7495142849512835,0.0,1.267051066295941,0.0006383507922761548,0.03384166167743784,0.7313872323568609,2,1.0,0.9317142831709453,0.48
+154,32,0.7138360767419278,0.0,1.2618278109105123,0.0006390029792582778,0.033367345903901426,0.7324118961623657,2,1.0,0.9794535891397593,0.47
+154,33,0.7,0.0,1.2748651504477275,0.0006482072315981298,0.033925578655079176,0.7298454181238996,2,1.0,1.0,0.45999999999999996
+154,34,0.71,0.0,1.285033938058243,0.0006583946523190688,0.03395882714382721,0.7278317113774109,2,1.0,1.0,0.45499999999999996
+154,35,0.6324115240107085,0.0,1.2798509443465347,0.0006529085161744553,0.034334281704364956,0.7288593797796588,2,1.0,0.9413717467023619,0.43499999999999994
+154,36,0.5964070401100567,0.0,1.297091999470188,0.0006542093493687844,0.03415677899720457,0.725438213542068,2,1.0,0.8880234670335228,0.4149999999999999
+154,37,0.7005656052343392,0.0,1.3115162931441533,0.0006572408066263783,0.034919265958504114,0.7225546790346071,2,1.0,0.9352186841144643,0.4049999999999999
+154,38,0.6985365922769824,0.0,1.3197192016857446,0.0006645357420480278,0.0346801345214174,0.7209043129634928,2,1.0,0.9617886409232748,0.3999999999999999
+154,39,0.77,0.0,1.3147094068525402,0.0006598334947764316,0.03492080365246421,0.7219130617346476,2,1.0,1.0,0.3699999999999999
+154,40,0.71,0.0,1.3106773053497425,0.0006607996964222067,0.03460468198255207,0.7227214126515966,2,1.0,1.0,0.3649999999999999
+154,41,0.72,0.0,1.305513334759218,0.0006560116138325556,0.03429706362570675,0.7237569709035919,2,1.0,1.0,0.35499999999999987
+154,42,0.7,0.0,1.3132508231747417,0.0006643087980049327,0.0350720177115565,0.7222039885919909,2,1.0,1.0,0.34499999999999986
+154,43,0.71,0.0,1.318575221862182,0.0006726080826498809,0.03475890101060913,0.7211311782967509,2,1.0,1.0,0.33999999999999986
+154,44,0.6362722966471004,0.0,1.3135911579372839,0.0006664855869652601,0.0352704984375236,0.7221348300638901,2,1.0,0.9542409888236681,0.31999999999999984
+154,45,0.7186836218601425,0.0,1.018068622167099,0.000737022658628727,0.03157085379891254,0.7773790175825402,2,1.0,0.9956120728671417,0.30999999999999983
+154,46,0.71,0.05,1.001502209627977,0.000715896951485041,0.031011323317824007,0.7671103624074018,2,1.0,1.0,0.3049999999999998
+154,47,0.6382541457049071,0.05,1.0367482454565873,0.0007141463477395146,0.031685058292863014,0.7607550422445399,2,1.0,0.9608471523496905,0.2849999999999998
+154,48,0.5995381079668982,0.0,1.0565669021925845,0.0007110504484260703,0.03161770867844762,0.7706545783501141,2,1.0,0.8984603598896609,0.2649999999999998
+154,49,0.7000886530600755,0.0,1.0619797392114974,0.0007029868403513719,0.03206092399133888,0.7696993379959702,2,1.0,0.9336288435335851,0.2549999999999998
+155,0,0.09859526445056643,0.0,1.3663334963077545,0.000701280488144549,0.03608963314435489,0.711414521267837,2,0.14865188769356874,0.1552236791927246,0.06
+155,1,0.18343009789287656,0.0,1.3861543496179367,0.0007001688757298041,0.036520175680344893,0.7073286935508961,2,0.18935960411266473,0.19051412151147978,0.055
+155,2,0.2798133918461833,0.0,1.3859880051021058,0.0007001597437592492,0.03663752114322322,0.7073631319226926,2,0.25545655948792734,0.23467865341802915,0.025
+155,3,0.2512283230897826,0.0,1.383026444543201,0.000698038083489229,0.03664462634875197,0.7079766771230862,2,0.32188330450268887,0.26189722171280494,0.02
+155,4,0.1848963852474974,0.0,1.3826806548765063,0.0006980331672333253,0.036638000974677266,0.7080481645412613,2,0.35065206504698965,0.20722720827017022,0.0
+155,5,0.265987377562827,0.0,1.3828341795101535,0.0006984999424562762,0.036660893349345164,0.7080162345432678,2,0.39511031556177767,0.2256625570540161,0.0
+155,6,0.3051173228666047,0.0,1.3823859325949348,0.0006986660160426298,0.03660342782196789,0.7081088229972704,2,0.4423795564660484,0.2676149270116259,0.0
+155,7,0.3247317660913965,0.0,1.3844207511747864,0.0007001384005373157,0.036552932421309046,0.7076874576826788,2,0.4959635416587404,0.3038150883694578,0.0
+155,8,0.33553087262011,0.0,1.3837152172022198,0.0007002717520522518,0.03646788671987193,0.7078333320721599,2,0.5563416555444948,0.3360376439317896,0.0
+155,9,0.398190274530131,0.0,1.3827603734686178,0.0007003448588045409,0.03637760599765008,0.7080307294028473,2,0.5947526205577368,0.4000895244497438,0.0
+155,10,0.40757367159049873,0.0,1.3748749949765449,0.0006950996185253497,0.03653005940897993,0.7096603036491661,2,0.6407308202960282,0.44439294828962966,0.0
+155,11,0.4402994759340453,0.0,1.3095373330962505,0.0006594878748304933,0.034650004024129134,0.7229503250745647,2,0.693476750998637,0.49194204361507465,0.0
+155,12,0.4826567864341721,0.0,1.3041467514235072,0.0006571412907054602,0.03450355707670796,0.724029660753695,2,0.752256879438278,0.5312229287692493,0.0
+155,13,0.5230262174098886,0.0,1.3171530697350344,0.0006589481092957136,0.03469214925509956,0.7214225751326105,2,0.8019542442391338,0.5744741064206396,0.0
+155,14,0.5415038648684647,0.0,1.2824349448477728,0.000768385737605462,0.03594740791001486,0.7283027206086765,2,0.8522908008995322,0.6106736151787615,0.0
+155,15,0.6372141569419676,0.0,1.2063409158169693,0.0006245031491373056,0.03272137929696779,0.7431508448642347,2,0.9101304877145912,0.6622282874728692,0.0
+155,16,0.6645116797069518,0.05,1.2029322750549345,0.0006257327741505509,0.03212755809606184,0.7292491187117813,2,1.0,0.7150389323565061,0.0
+155,17,0.549074395651902,0.05,1.2055320709680375,0.0006273115310047896,0.03209555074270133,0.7287348724116515,2,0.9857993962695493,0.6801486898585327,0.0
+155,18,0.6924939096341385,0.0,1.222872099223931,0.0006393556751535837,0.03325783952197305,0.7399770333704518,2,1.0,0.7416463654471285,0.0
+155,19,0.6586024285870862,0.05,1.2106783263873904,0.0006347719991864069,0.03222382369844111,0.7277134056052177,2,1.0,0.7953414286236207,0.0
+155,20,0.5748346727864335,0.0,1.2398815669888048,0.0006352840510480068,0.03347032355139433,0.7366924694529154,2,1.0,0.7494489092881117,0.0
+155,21,0.7085819090939587,0.0,1.2489804038313561,0.0006447116364017074,0.03322446158346763,0.7349200370853677,2,1.0,0.795273030313196,0.0
+155,22,0.705342394035001,0.05,1.2429642066102853,0.0006402064148361775,0.033555928504403545,0.7212670657790451,2,1.0,0.8511413134500034,0.0
+155,23,0.6759553003288042,0.05,1.2048772970541481,0.0007031307861238008,0.032900719177442916,0.7288343209513451,2,1.0,0.8865176677626809,0.0
+155,24,0.7490097687120361,0.05,1.2286002368533882,0.0006947798919584428,0.034103057156120636,0.7241238090861261,2,1.0,0.9300325623734537,0.0
+155,25,0.7441853030857355,0.1,1.2250496966680784,0.0007014048937046455,0.03319931289445657,0.7096217078402559,2,1.0,0.9806176769524519,0.0
+155,26,0.75,0.1,1.2255900060789593,0.0007061621079305202,0.03372159028445564,0.7095083987763368,2,1.0,1.0,0.0
+155,27,0.6306903683998262,0.1,1.2208964477485376,0.0007095924576523581,0.03411847623206689,0.7104734070497254,2,1.0,0.9356345613327541,0.0
+155,28,0.72,0.05,1.2173810057539463,0.0007005062017939626,0.033230288073841784,0.7263571370437344,2,1.0,1.0,0.0
+155,29,0.7,0.1,1.218484640371673,0.000716556270500655,0.03411907761195201,0.710966404133477,2,1.0,1.0,0.0
+155,30,0.77,0.1,1.2268085772614699,0.0007303900769701573,0.033804750708409714,0.7092471872877549,2,1.0,1.0,0.0
+155,31,0.75,0.15000000000000002,1.2226793959567757,0.000734918192604724,0.034241131898513966,0.6944169046188985,2,1.0,1.0,0.0
+155,32,0.72,0.15000000000000002,1.2223484293265146,0.0007373602173758309,0.03458264997031589,0.6944860956295604,2,1.0,1.0,0.0
+155,33,0.71,0.10000000000000002,1.2254592308010692,0.0007532735831973794,0.03400415265728507,0.7095159323810634,2,1.0,1.0,0.0
+155,34,0.77,0.10000000000000002,1.2446743863148069,0.0007427363111790454,0.03506328179327535,0.7055441227305654,2,1.0,1.0,0.0
+155,35,0.72,0.15000000000000002,1.239204337140446,0.0007458624294133913,0.03415914385920259,0.6908943816332129,2,1.0,1.0,0.0
+155,36,0.7,0.10000000000000002,1.2452616062430006,0.0007598421946078677,0.034609602233701145,0.705415002804626,2,1.0,1.0,0.0
+155,37,0.77,0.10000000000000002,1.2415181767092167,0.0007754323928813775,0.034689754556446795,0.706185836850121,2,1.0,1.0,0.0
+155,38,0.71,0.15000000000000002,1.2363897208561632,0.0007795293715051111,0.035133885921203326,0.6914807815349596,2,1.0,1.0,0.0
+155,39,0.6351381723281933,0.05000000000000002,1.263682324785118,0.0007630945238236552,0.03563230550931119,0.7170329806420953,2,1.0,0.9504605744273108,0.0
+155,40,0.6038805080109022,0.0,1.2551379889257355,0.0007552555898145757,0.03538284845283554,0.7336755307195362,2,1.0,0.9129350267030076,0.0
+155,41,0.5882555980221629,0.0,1.2495046585515224,0.0007458462242871007,0.034414638441290654,0.7347784769389928,2,1.0,0.8608519934072095,0.0
+155,42,0.7422097013128779,0.0,1.2474248400827972,0.0007356231112216065,0.03500625923041018,0.735187572688443,2,1.0,0.9073656710429266,0.0
+155,43,0.70570650095492,0.05,1.2427939720344245,0.0007396491622758558,0.034039552135344535,0.7212613057363969,2,1.0,0.9523550031830669,0.0
+155,44,0.7079422918824273,0.0,1.2486346328314881,0.0007523118730088271,0.034542102222336564,0.7349454730857871,2,1.0,0.9931409729414244,0.0
+155,45,0.69,0.0,1.2674667885397273,0.0007419024241777425,0.03468220255775389,0.7312648544571927,2,1.0,1.0,0.0
+155,46,0.72,0.0,1.2890177465945258,0.0007307931955371467,0.035530910845721395,0.7270130958464528,2,1.0,1.0,0.0
+155,47,0.77,0.0,1.288852791089201,0.0007422428972110819,0.03513774254983702,0.7270412881092391,2,1.0,1.0,0.0
+155,48,0.71,0.0,1.2841280837294062,0.0007466029243572395,0.035340293579096446,0.7279761836697919,2,1.0,1.0,0.0
+155,49,0.72,0.0,1.3046221033220593,0.0007350973773078947,0.0357163588447767,0.7239035095942793,2,1.0,1.0,0.0
+156,0,0.0918682658963515,0.0,1.3553249330584545,0.000704238000999055,0.03588167618079098,0.7136681429321815,1,0.12387243642600944,0.16170971049082736,0.06
+156,1,0.18291924159960352,0.0,1.344379238460081,0.0007469613929129198,0.0363894599993138,0.7158822307861307,1,0.16168106200798288,0.22110289965603172,0.06999999999999999
+156,2,0.20179493125280676,0.0,1.3559389965496276,0.0007040332385886104,0.03594245339222644,0.7135427288048319,1,0.22420832572996396,0.27774005749106456,0.07999999999999999
+156,3,0.23862455367617405,0.0,1.3817896161250263,0.0006976956398016958,0.036613259307127666,0.708232461814947,1,0.2807259457774607,0.33456824218020925,0.08999999999999998
+156,4,0.2847989631073176,0.0,1.38211346796083,0.0006984575293220974,0.036639943736581096,0.7081652218894153,1,0.3444137227485559,0.41418053381774367,0.09999999999999998
+156,5,0.2445380561120645,0.0,1.3800909504666665,0.0006962056782584419,0.03659611660523726,0.7085839639324671,1,0.3825201020386923,0.3688534013284074,0.15999999999999998
+156,6,0.3673233882996157,0.0,1.3820241051604185,0.0006981798893224294,0.036553969990555914,0.708183804663114,1,0.44213610675711545,0.4419191697820844,0.15999999999999998
+156,7,0.2843850009711577,0.0,1.3788888454430055,0.0007059314854968733,0.0364863622885145,0.7088281130077917,1,0.475811772228791,0.3928362689702697,0.21999999999999997
+156,8,0.40430355658800476,0.0,1.3590130699045222,0.0006835772966425999,0.03628368759523562,0.7129223507585418,1,0.5433230582997146,0.4471349539436822,0.21999999999999997
+156,9,0.4195006049859347,0.0,1.3797320340609434,0.000705711939601131,0.03625033337268627,0.7086541466366857,1,0.5884521411899277,0.5118078518982,0.22999999999999998
+156,10,0.4372080436339941,0.0,1.3813756992917723,0.0007036612744874837,0.036550463347998836,0.7083155208534058,1,0.6496383740745048,0.5661153756930584,0.24
+156,11,0.47068938323894904,0.0,1.3286043250534378,0.0006742389439559949,0.035109438016074836,0.7191091909037124,1,0.6965982786299038,0.6229332857282759,0.25
+156,12,0.5068975495782898,0.05,1.24253672989675,0.0006221830827905924,0.03356362946594692,0.721360243371189,1,0.7537093058519402,0.6436643084337025,0.3
+156,13,0.5686501834432486,0.05,1.262456699304836,0.0006594323228086559,0.03435487411262226,0.7173236309822077,1,0.8078029784114827,0.6863971366640987,0.3
+156,14,0.4803191750983999,0.1,1.1733061694722768,0.0005412169832460944,0.03047705274442015,0.7202317385598653,1,0.828592239328436,0.6343729711114912,0.36
+156,15,0.5518717048619302,0.0,1.3220842034633273,0.0007441933246623783,0.03645503778416959,0.7203961340448478,1,0.866182161367153,0.6623598279447553,0.41
+156,16,0.5534267821124998,0.0,1.3082199649201212,0.0007454838697596683,0.035531206908892145,0.7231796774888043,1,0.9137819951841367,0.6786769459935068,0.45999999999999996
+156,17,0.5251708967605051,0.0,1.3003872373353533,0.0007431141086359154,0.03619895221406545,0.724745918916792,1,0.9521833360901014,0.6396890970965652,0.52
+156,18,0.601840234830116,0.0,1.3011090615483876,0.0007633652427688445,0.03539806349417929,0.7245938169098292,1,0.9953658881956726,0.6782072465387687,0.5700000000000001
+156,19,0.5960655156698379,0.0,1.2924875069402595,0.0007611287701102397,0.036242807160474545,0.7263118672938514,2,1.0,0.7202183855661265,0.6200000000000001
+156,20,0.6945099348449022,0.0,1.193932116100866,0.0007537808174579804,0.033991164878261565,0.7454631952389333,2,1.0,0.7483664494830075,0.5900000000000001
+156,21,0.6876566316580184,0.05,1.1875332445554339,0.0007536588087057936,0.03405005137401302,0.732228660580743,2,1.0,0.792188772193395,0.56
+156,22,0.6560743001482188,0.05,1.186247440840449,0.0007521165402379097,0.03403648131963594,0.7324812970526265,2,1.0,0.8202476671607292,0.555
+156,23,0.6467494070800504,0.0,1.265168175811998,0.0006729259582327971,0.03335772613257475,0.7317434100770933,2,1.0,0.8558313569335015,0.55
+156,24,0.5898761653096274,0.0,1.2556737316641318,0.0006641462937476143,0.034012729223891806,0.7336064478989186,2,1.0,0.7995872176987581,0.53
+156,25,0.6785333707513335,0.0,1.1673341523687117,0.0006937174244180227,0.03235245317528229,0.750499564999948,2,1.0,0.8617779025044452,0.52
+156,26,0.744885226272805,0.05,1.2474167519709394,0.0006657392281517024,0.034024336749690846,0.7203607542294383,2,1.0,0.9162840875760169,0.49
+156,27,0.6962582455177839,0.1,1.2493524620368859,0.0006732785164217573,0.033641064280313396,0.7046002258556539,2,1.0,0.9541941517259465,0.485
+156,28,0.77,0.05,1.2488413432361454,0.0006659805392348012,0.03311999868378544,0.7200735955959081,2,1.0,1.0,0.45499999999999996
+156,29,0.71,0.1,1.2405366737929975,0.0006708003616596055,0.033699574703389704,0.7064328453208123,2,1.0,1.0,0.44999999999999996
+156,30,0.77,0.05,1.2401902048029192,0.0006635352747786382,0.03333582176304368,0.7218150424218149,2,1.0,1.0,0.41999999999999993
+156,31,0.637541148412083,0.1,1.2311757086072506,0.0006678070547015765,0.03364464303790263,0.7083716519768333,2,1.0,0.9584704947069431,0.3999999999999999
+156,32,0.7698553568595428,0.0,1.2580252031790513,0.0006641427960129232,0.03381761181396008,0.7331466534649863,2,1.0,0.999517856198476,0.3699999999999999
+156,33,0.75,0.05,1.2434208615679463,0.0006654166579005709,0.0336247808000658,0.7211651114457593,2,1.0,1.0,0.33999999999999986
+156,34,0.71,0.05,1.2437281448634119,0.0006684736079509532,0.03375439331383727,0.721102087291488,2,1.0,1.0,0.33499999999999985
+156,35,0.72,0.0,1.2391851222411396,0.0006620276670056973,0.03342880145640909,0.7368171692324177,2,1.0,1.0,0.32499999999999984
+156,36,0.77,0.0,1.20698234355892,0.0006160769555490853,0.0320379289857892,0.7430316092739142,2,1.0,1.0,0.2949999999999998
+156,37,0.72,0.05,1.1966911858405007,0.0006093320063084172,0.03229260943932582,0.7304860829138213,2,1.0,1.0,0.2849999999999998
+156,38,0.6329653231922441,0.0,1.2271868777863857,0.0006198787523725182,0.032518610120574484,0.739153473761007,2,1.0,0.943217743974147,0.2649999999999998
+156,39,0.7044171182797592,0.0,1.2161537187650016,0.0006199188345717348,0.032906404646726575,0.7412750936999218,2,1.0,0.981390394265864,0.2599999999999998
+156,40,0.77,0.05,1.236490661414926,0.00062445951591001,0.0326414258254149,0.722572960333657,2,1.0,1.0,0.2299999999999998
+156,41,0.72,0.1,1.2332811257802672,0.0006203820481353632,0.03280032037299182,0.707956132550486,2,1.0,1.0,0.21999999999999978
+156,42,0.77,0.0,1.2594993171626112,0.0006316043936887435,0.03344827219681325,0.7328708951699261,2,1.0,1.0,0.18999999999999978
+156,43,0.72,0.05,1.2374936295222625,0.0006205821633607332,0.03284175150734961,0.7223734143993605,2,1.0,1.0,0.17999999999999977
+156,44,0.77,0.0,1.2623528944516507,0.0006365941627339924,0.033721985279611,0.7323099196706864,2,1.0,1.0,0.14999999999999977
+156,45,0.6343986604386412,0.05,1.2455007408762981,0.0006277626533888598,0.033270326387742244,0.7207618415834138,2,1.0,0.9479955347954709,0.12999999999999978
+156,46,0.7050612248699608,0.0,1.2491297502609287,0.0006316346200044955,0.03320356211376855,0.7348960369626442,2,1.0,0.9835374162332027,0.12499999999999978
+156,47,0.72,0.0,1.2626943186771122,0.0006310157720309669,0.033500260708927185,0.7322451716825006,2,1.0,1.0,0.11499999999999978
+156,48,0.71,0.0,1.2795913732159774,0.000644165031617181,0.03408832261292261,0.7289141294670776,1,1.0,1.0,0.10999999999999978
+156,49,0.6799999999999999,0.0,1.1303023795870228,0.000611467384771449,0.03091314517418191,0.7573994793916025,1,1.0,1.0,0.15999999999999978
+157,0,0.16842577334655787,0.0,1.3555048275727637,0.0007062374829117932,0.035880300304544525,0.7136305635728776,1,0.1396687298460701,0.23180572633477783,0.05
+157,1,0.11704689851180808,0.0,1.3549946475335324,0.0007046518035314802,0.03635667861494674,0.713735461575981,1,0.169393408439998,0.19253068519269595,0.11
+157,2,0.21235114537225228,0.0,1.3376845330461826,0.0007526694363638158,0.03655055823884874,0.717239614009795,1,0.22013292776800605,0.25101540217816715,0.12
+157,3,0.2702735087325433,0.0,1.3801199115080014,0.0006981764121179717,0.03658327851572922,0.7085771697569216,1,0.2747076949636943,0.31375271831750096,0.12
+157,4,0.2869307297345651,0.0,1.3791825642333744,0.0006980932150021576,0.036544275245013,0.7087707243083726,1,0.33313707080637306,0.36777584984111533,0.13
+157,5,0.3412521239250761,0.0,1.3796855190990631,0.0006999234246859354,0.036633710335348076,0.7086661403641616,1,0.3893376358305132,0.4166131712813216,0.13
+157,6,0.3590352729149707,0.0,1.3789583083982473,0.0006950874724998026,0.03641348977728669,0.7088182526026333,1,0.4618475942557051,0.45796204975158006,0.13
+157,7,0.39533004616073286,0.0,1.381395890938009,0.0007036216975835517,0.03652300891907624,0.7083113655016624,1,0.5031242295990191,0.530788552670254,0.14
+157,8,0.4066183678250257,0.0,1.3821717349887046,0.0007019511130511335,0.03651370858391306,0.7081517358017562,1,0.5360074144235032,0.5967192425893321,0.15000000000000002
+157,9,0.481923680963149,0.0,1.382332632463867,0.0007004346355616108,0.036398998822652365,0.7081191084186245,1,0.5856098011871406,0.6565341684921661,0.15000000000000002
+157,10,0.40130055426757094,0.0,1.3607336769512117,0.00071355460127458,0.03613984690111454,0.7125577956442923,1,0.6240429269692935,0.6096184327610606,0.21000000000000002
+157,11,0.4692157133197451,0.0,1.264530637762874,0.0006532146211048797,0.03350869481946665,0.7318762732279935,1,0.6451780391179309,0.6446779987615643,0.26
+157,12,0.4155630221890547,0.0,1.2741767937578146,0.0006839214092342749,0.03492080545518368,0.7299670413024483,1,0.6808246319987237,0.5909146699650047,0.32
+157,13,0.5141505129758752,0.0,1.3475513832591037,0.0006755634865460713,0.035363125145159234,0.7152656740199115,1,0.7393078141355124,0.6513092600948196,0.33
+157,14,0.5282154595417915,0.0,1.2929360986289646,0.0006948834928142811,0.034923416586685914,0.7262490272865892,1,0.7788553052388079,0.6853870090273626,0.38
+157,15,0.5318656606674212,0.0,0.997811223355044,0.0003838959198650339,0.025631045551463318,0.7809859000361478,1,0.8171205312063629,0.7195782491506477,0.43
+157,16,0.6167846205374706,0.0,1.1045908049205635,0.0006196361197356023,0.030627622638519113,0.7620895856701467,1,0.863722711038896,0.7816055722461902,0.43
+157,17,0.6319639785008015,0.05,1.1304871348426198,0.0006169456262986487,0.03195752693143713,0.7433166626658677,1,0.9217542990953421,0.8311665793914396,0.43
+157,18,0.6718798632510152,0.05,1.2237235071360741,0.0007934862388687974,0.03534881140275314,0.7250576082917152,1,0.9871867160284447,0.8878817088035322,0.44
+157,19,0.674297591451464,0.1,1.223187937757702,0.0007793711935288512,0.034687163292064935,0.709973082530683,1,1.0,0.9143253048382131,0.49
+157,20,0.6671970281503101,0.1,1.2239454947681105,0.0007813996946136951,0.03430946145561345,0.7098162325201143,1,1.0,0.9573234271677008,0.54
+157,21,0.6228810110606091,0.1,1.2200392892127634,0.0007847933354866472,0.03528323540045127,0.710618765958527,2,1.0,0.9096033702020303,0.6000000000000001
+157,22,0.760611447639308,0.05,1.185285392699868,0.0006205419812569907,0.03176685641317502,0.7327213090589576,2,1.0,0.9687048254643603,0.5700000000000001
+157,23,0.72,0.1,1.1714510000170606,0.0006197653087788451,0.03166016504780507,0.7205737688109782,2,1.0,1.0,0.56
+157,24,0.6372974464918494,0.05,1.1990359752568227,0.000629397964045979,0.03199339893554486,0.730016290728857,2,1.0,0.9576581549728314,0.54
+157,25,0.77,0.0,1.2142097117694806,0.000627498103674024,0.03284564487346695,0.7416448482728922,2,1.0,1.0,0.51
+157,26,0.72,0.05,1.2003732485493335,0.0006251206054010664,0.032394253883144354,0.7297543302314602,2,1.0,1.0,0.5
+157,27,0.7,0.0,1.22553505040314,0.0006372219121978295,0.03327879498454489,0.739465147033941,2,1.0,1.0,0.49
+157,28,0.77,0.0,1.2344069985361454,0.0006484884929162976,0.03320337143237191,0.7377479216736372,2,1.0,1.0,0.45999999999999996
+157,29,0.75,0.05,1.2273429555954984,0.00064775299494229,0.03337052282617793,0.7243936815106946,2,1.0,1.0,0.42999999999999994
+157,30,0.6371637525113646,0.05,1.2262204126184684,0.0006476018154035585,0.03276257982102917,0.7246177982557807,2,1.0,0.9572125083712154,0.4099999999999999
+157,31,0.6019632158891985,0.0,1.2477073949928519,0.0006444004129956605,0.033438907615038496,0.735168082228147,2,1.0,0.9065440529639954,0.3899999999999999
+157,32,0.7066554154207361,0.0,1.261236062539024,0.0006415647527213673,0.033548834569272504,0.7325268499828546,2,1.0,0.9555180514024535,0.3799999999999999
+157,33,0.7,0.0,1.2748711773471504,0.0006550147613572025,0.0340941509612408,0.7298415452800836,2,1.0,1.0,0.3699999999999999
+157,34,0.77,0.0,1.2855116563070592,0.0006694927688845896,0.03439349276147664,0.7277326706839554,2,1.0,1.0,0.33999999999999986
+157,35,0.75,0.0,1.277948539973761,0.0006675716271901248,0.0343360853625408,0.7292293851039257,2,1.0,1.0,0.30999999999999983
+157,36,0.75,0.0,1.222660239527879,0.0006513436837289274,0.03283635527154647,0.7400131826314038,2,1.0,1.0,0.2799999999999998
+157,37,0.6362503920728794,0.0,1.2120840277101559,0.0006469753173793743,0.03315378457054388,0.7420444802202176,2,1.0,0.9541679735762646,0.2599999999999998
+157,38,0.6012536426090015,0.0,1.2094578794455808,0.0006452521397190872,0.03245498230752451,0.7425475022269031,2,1.0,0.9041788086966718,0.2399999999999998
+157,39,0.6942772235323316,0.0,1.2059064113469222,0.0006429319438818107,0.03309124271950638,0.7432267394338354,2,1.0,0.9475907451077721,0.2349999999999998
+157,40,0.6189320858728369,0.05,1.2301330085733453,0.0006390115084088115,0.03277624161381036,0.7238398006674469,2,1.0,0.8964402862427898,0.2149999999999998
+157,41,0.6827306124999863,0.0,1.2320566018284147,0.0006383472275970324,0.03277133105692205,0.7382063324478768,2,1.0,0.9091020416666215,0.2099999999999998
+157,42,0.7097670994144312,0.05,1.2476187437055783,0.000636264126792938,0.033164697978123533,0.7203319388722352,2,1.0,0.9658903313814373,0.1999999999999998
+157,43,0.77,0.0,1.2683233578286834,0.0006500210472429784,0.03366899535894759,0.7311326162557861,2,1.0,1.0,0.1699999999999998
+157,44,0.6321408205630257,0.0,1.254879441623681,0.0006462388136111094,0.03348416512229776,0.7337686422201354,2,0.9964747946861423,0.9445821414095864,0.1499999999999998
+157,45,0.7131977638366875,0.0,1.2505225957772454,0.0006434148101257606,0.03327381288155135,0.7346199955150523,2,1.0,0.977325879455625,0.1399999999999998
+157,46,0.71,0.0,1.2643390735659825,0.0006572162530348986,0.034001159914754484,0.7319122924796684,2,1.0,1.0,0.1349999999999998
+157,47,0.69,0.0,1.2843239374067488,0.0006554869822023401,0.03405159314146912,0.7279734861805175,2,1.0,1.0,0.12999999999999978
+157,48,0.72,0.0,1.3013314560179046,0.0006561727955467767,0.03453752021967939,0.7245922185352359,2,1.0,1.0,0.11999999999999979
+157,49,0.77,0.0,1.3117727775835952,0.0006673515527507701,0.03486698317770396,0.722499204542511,2,1.0,1.0,0.08999999999999979
+158,0,0.22133449785899784,0.0,1.3564335942278465,0.0007042302448400931,0.03586269537427745,0.7134415420557086,1,0.164036897124119,0.2797386128851872,0.0
+158,1,0.23915509838268598,0.0,1.3557171038722813,0.0007052123491724576,0.03636342268789846,0.713587599434846,1,0.22290903423134042,0.3371231213390561,0.0
+158,2,0.17717371481640112,0.0,1.3805764623015722,0.0006997724068600129,0.0365088877331318,0.7084822258088436,1,0.24582935802668876,0.3037781316902002,0.06
+158,3,0.15664238921490267,0.0,1.382152684119933,0.000699596026191704,0.03664350618125264,0.7081566465399545,1,0.2794463216416188,0.2627872554677869,0.12
+158,4,0.2748285936812434,0.0,1.3832568904550273,0.0006994783645715642,0.03668727264848991,0.7079284355367039,1,0.328163305378958,0.333238122662027,0.13
+158,5,0.28837609280100607,0.0,1.3834416996786345,0.0007004657320392755,0.03672239797979994,0.707889813508618,1,0.36618478811271576,0.4007047232051853,0.14
+158,6,0.3207158403512316,0.0,1.3821359804178415,0.0006987023683017447,0.03656661765359116,0.7081604680788954,1,0.40039698892536896,0.43525631409117505,0.19
+158,7,0.3670437630518833,0.0,1.3806817199578028,0.0007008861025184477,0.0364745484008187,0.7084600258697364,1,0.4444764289436972,0.5049233764052977,0.2
+158,8,0.3046773192049994,0.0,1.3802866444907844,0.0006992945626541537,0.03640511943325393,0.708542277119667,1,0.4724769718330182,0.4643679302114769,0.26
+158,9,0.3861542896337199,0.0,1.3793066371425318,0.0006994207911555177,0.03643411146568219,0.7087445650707908,1,0.5256777418563617,0.5072235999466445,0.31
+158,10,0.39435381784911167,0.0,1.3795075945842785,0.0007015250673106396,0.03646767062728108,0.7087022117217765,1,0.5721996939298067,0.5469464165789312,0.36
+158,11,0.4088382030310901,0.0,1.3087115030572218,0.000750956199222702,0.036173487897884125,0.7230790737600425,1,0.5917930717153723,0.5723687597690327,0.41
+158,12,0.43364128452284967,0.0,1.3227765165402052,0.0007397259247826515,0.035854394669642534,0.7202584634738064,1,0.6402271488115723,0.5985392747959979,0.45999999999999996
+158,13,0.4063726418555735,0.0,1.2733342857177878,0.0006579584384646133,0.03405869033924523,0.7301433115309236,1,0.6757693595685098,0.5661778866886502,0.52
+158,14,0.5293834240268767,0.0,1.2908384937372377,0.0006574223213421615,0.03418795534315258,0.7266807380495689,1,0.7442787679250563,0.6296195175103566,0.52
+158,15,0.520695377233728,0.05,0.724879225239354,0.00018703424486183663,0.017635370413657474,0.8130188835802349,1,0.7683189771987388,0.6726124507138984,0.5700000000000001
+158,16,0.5227583821191892,0.05,0.7310280001283863,0.00019072224170545783,0.017731521214038544,0.8120812266846297,2,0.8018356654143418,0.7070529974138986,0.6200000000000001
+158,17,0.5979990785602123,0.05,1.1944640189141487,0.0007553968204725333,0.034448020177941296,0.7308668756852386,2,0.8500336492478195,0.7682910044115848,0.6100000000000001
+158,18,0.6069394388601862,0.1,1.195450591709643,0.000765088985197264,0.03378887248456609,0.7156568950633841,2,0.8941182397996417,0.8133268497677055,0.6000000000000001
+158,19,0.642502401683984,0.05,1.3245994989799619,0.0006576603698515709,0.03462145826956854,0.7045553073955451,2,0.9551616548457437,0.8273194082932457,0.5950000000000001
+158,20,0.7329726744472369,0.05,1.3156271925739393,0.0006498925939331249,0.03484900492536815,0.7064227448733034,2,1.0,0.8765755814907897,0.5650000000000001
+158,21,0.6916526806523464,0.05,1.316717810578026,0.0006546682906132383,0.034537828983095986,0.7061945293218573,2,1.0,0.9055089355078213,0.555
+158,22,0.6899693013262236,0.0,1.320324236073667,0.0006607594219839029,0.035354686541181686,0.7207840830032325,2,1.0,0.9332310044207456,0.55
+158,23,0.680827653839061,0.0,1.3107789436058663,0.0006519853382966052,0.03447233788259228,0.7227045772303822,1,1.0,0.96942551279687,0.545
+158,24,0.71,0.0,1.165192117445374,0.0008530987596657213,0.03468336478819391,0.7508408167167698,1,1.0,1.0,0.555
+158,25,0.7,0.0,1.1721616324799407,0.0008326818357973744,0.03512970661352101,0.7495423552417584,2,1.0,1.0,0.6050000000000001
+158,26,0.77,0.0,1.3516196755985033,0.0007140099229314897,0.03639282895368217,0.7144207099760037,2,1.0,1.0,0.5750000000000001
+158,27,0.72,0.0,1.3485763665292998,0.0007169077345328869,0.03598674074040038,0.7150400310440981,2,1.0,1.0,0.5650000000000001
+158,28,0.7,0.0,1.3472282795705939,0.0007228578353224858,0.03635725158813178,0.7153122112511154,2,1.0,1.0,0.555
+158,29,0.77,0.0,1.3453182465332276,0.0007277437898632099,0.03622435079544188,0.7156990232853337,2,1.0,1.0,0.525
+158,30,0.72,0.0,1.3423035745469023,0.000731753471069575,0.036179898783703035,0.7163104017558435,2,1.0,1.0,0.515
+158,31,0.71,0.0,1.3399669150134117,0.0007372371079682668,0.036203366079585526,0.7167827673917014,2,1.0,1.0,0.51
+158,32,0.72,0.0,1.3401775497972073,0.0007292977435490607,0.036145653338704155,0.716743229224461,2,1.0,1.0,0.5
+158,33,0.71,0.0,1.337741691631489,0.0007336937899769932,0.03631097304688752,0.717235718621123,2,1.0,1.0,0.495
+158,34,0.72,0.0,1.3373807144870442,0.0007259617673131394,0.03582081221417703,0.7173120579041639,2,1.0,1.0,0.485
+158,35,0.71,0.0,1.3347644588104037,0.0007297276876591875,0.03633254774930926,0.7178407430895294,2,1.0,1.0,0.48
+158,36,0.77,0.0,1.333882835355519,0.0007219868571509639,0.0357404947166922,0.7180224120985862,2,1.0,1.0,0.44999999999999996
+158,37,0.6334881852675409,0.0,1.331966089340443,0.0007279879285056932,0.036207129949671346,0.7184078982053883,2,1.0,0.9449606175584697,0.42999999999999994
+158,38,0.7678252131554067,0.0,1.3445168064123525,0.0007213657173516151,0.03606875763644478,0.7158646619016236,2,1.0,0.9927507105180227,0.3999999999999999
+158,39,0.72,0.0,1.3421457517961162,0.0007258093426937777,0.03609610320533413,0.7163448874313949,2,1.0,1.0,0.3899999999999999
+158,40,0.7,0.0,1.3399092984487453,0.000730372100580281,0.03610137746033344,0.7167972508965782,2,1.0,1.0,0.3799999999999999
+158,41,0.7,0.0,1.3373407606363887,0.0007341434201324344,0.03609189113892008,0.7173168414634818,2,1.0,1.0,0.3699999999999999
+158,42,0.77,0.0,1.3342203355667557,0.0007375164682279714,0.03628687941156557,0.717947785264643,2,1.0,1.0,0.33999999999999986
+158,43,0.6285625587370223,0.0,1.3317277505080465,0.0007446051755454285,0.03606185091996424,0.7184493885420069,2,1.0,0.928541862456741,0.31999999999999984
+158,44,0.5938336620433486,0.0,1.2799049131929021,0.000659290220645711,0.03461719130824173,0.7288461917241162,2,1.0,0.8794455401444958,0.2999999999999998
+158,45,0.695325474434066,0.0,1.2705614914968217,0.0006537489703192948,0.033853610367426575,0.7306909543534219,2,1.0,0.917751581446887,0.2899999999999998
+158,46,0.6149535750894888,0.0,1.2729144000993662,0.0006526419587832335,0.034242730183070606,0.7302281299473545,2,1.0,0.8831785836316296,0.2699999999999998
+158,47,0.7486014272522257,0.0,1.2634187279693332,0.0006470182489583664,0.03380102897211611,0.7320968414056229,2,1.0,0.9286714241740858,0.2399999999999998
+158,48,0.7430322065455187,0.0,1.2827040149540958,0.0006445031576653953,0.034240895071875596,0.7282985048107962,2,1.0,0.9767740218183959,0.2099999999999998
+158,49,0.71,0.0,1.2983526060768211,0.0006444584862924872,0.03444693005442022,0.7251909440834955,2,1.0,1.0,0.2049999999999998
+159,0,0.009536921889757397,0.0,1.3544473956277727,0.0007066943327357594,0.03593806999388548,0.7138464269943958,1,0.12884873532601804,0.14813288175217032,0.06
+159,1,0.1898290015983328,0.0,1.3285900690861838,0.0007569379455723555,0.03617975896687832,0.7190786605371642,1,0.18788755825703746,0.21356118736123228,0.06999999999999999
+159,2,0.20331677644621063,0.0,1.3555954970442878,0.0007062826105471877,0.03597271703073453,0.7136120153755768,1,0.23885790979287647,0.2657216933956795,0.07999999999999999
+159,3,0.2808039497371669,0.0,1.3833822218540808,0.0006999831612620202,0.03667507184347908,0.7079023118584333,1,0.3123097035164549,0.3049851783546923,0.07999999999999999
+159,4,0.19778918291704117,0.0,1.3826588771603006,0.0007000381548183948,0.036682644387768804,0.7080518374033514,1,0.3467211476223487,0.2547892708307305,0.13999999999999999
+159,5,0.17096494855734343,0.0,1.3836856658977803,0.0006997987136624902,0.03671721481330191,0.7078396390524412,1,0.3638992047203197,0.21200075635077167,0.19999999999999998
+159,6,0.30638849608717217,0.0,1.3843297592823536,0.0006996577410222431,0.03665549810327298,0.7077064793050785,1,0.4212635118652396,0.26315422311446107,0.19999999999999998
+159,7,0.3265755917753838,0.0,1.363712610183565,0.0006842864800614846,0.03579116218333901,0.7119592712067472,1,0.48434005784942513,0.3235219050936168,0.21
+159,8,0.3463395526200228,0.0,1.3640336663222241,0.0006843132759627657,0.03635296042463725,0.7118934157034402,1,0.5395010597232652,0.3917139390562668,0.22
+159,9,0.4218919117383013,0.0,1.36366168518872,0.0006842966189097713,0.03576894969889668,0.7119697102907793,1,0.5921886483799026,0.4487529493511181,0.22
+159,10,0.3395322968164069,0.0,1.3794156220867377,0.000702559045301716,0.03648326115867577,0.7087207715715704,1,0.6201567834170597,0.40825807540145337,0.28
+159,11,0.4702653776701534,0.0,1.3581616686188391,0.0006805671312631377,0.03558981145720187,0.7130978021165627,1,0.7092082797340072,0.4734749325441698,0.28
+159,12,0.46780988712980853,0.0,1.357105331009896,0.0006810152808596505,0.03596242780215746,0.7133136855686633,1,0.7565767238678394,0.5100267792535494,0.33
+159,13,0.5369065655711234,0.0,1.3531920277383935,0.000677637816369526,0.03555860910990969,0.7141146559761695,1,0.8115322316391153,0.57623428165811,0.33
+159,14,0.5570049590339856,0.0,1.3859664704389851,0.0007001599956734421,0.0367636520917275,0.707367589485207,1,0.8739966511986212,0.6370204370482275,0.33
+159,15,0.5002137840842225,0.0,1.2394244502604916,0.0008352092731159078,0.03626636181554388,0.7367035776257356,1,0.9117019166668063,0.6037270441694677,0.39
+159,16,0.5951382690261104,0.0,1.1799882115398024,0.0006205106311949862,0.03185252080431893,0.7481501783899781,1,0.9630063475121444,0.6602868246561996,0.4
+159,17,0.6072974030249764,0.05,1.2046073082285043,0.000615016470639902,0.03291158453138014,0.728922500067615,1,1.0,0.690991343416588,0.45
+159,18,0.5988996130940182,0.05,1.1997308064270413,0.0006104614140143933,0.03212206173670518,0.7298867896520865,1,1.0,0.7296653769800607,0.5
+159,19,0.606924820258422,0.05,1.1858829618300282,0.000599201378105072,0.032174345943266604,0.7326126253363047,1,1.0,0.7564160675280736,0.55
+159,20,0.5627192742496369,0.05,1.1713281196921952,0.0005871895385074936,0.03158816161811178,0.7354587968554023,2,1.0,0.7090642474987895,0.6100000000000001
+159,21,0.6298959336182904,0.0,1.1850490411516357,0.0008086094693753093,0.034241636779721904,0.7471243440849545,2,1.0,0.7329864453943015,0.6050000000000001
+159,22,0.6497370309579542,0.05,1.1806377624038773,0.0007967481777091101,0.034525822659871544,0.7335616466523099,2,1.0,0.765790103193181,0.5950000000000001
+159,23,0.5654102861850302,0.05,1.1817081346042295,0.0007984049114293973,0.0337677017505001,0.7333517432904877,2,1.0,0.7180342872834342,0.5750000000000001
+159,24,0.701568290506808,0.0,1.2026464294365322,0.0007871047770579896,0.03502650895700497,0.7437934387162335,2,1.0,0.7718943016893601,0.545
+159,25,0.5705283666981649,0.05,1.1987231572110404,0.0008026668062547016,0.03410296980619522,0.7300096447892314,2,1.0,0.7350945556605497,0.525
+159,26,0.7046531310069107,0.0,1.2245698968865848,0.0007877111231092198,0.035192214821859726,0.7395930842927447,2,1.0,0.7821771033563694,0.495
+159,27,0.7007903977039094,0.05,1.219385471186275,0.0008016589378007214,0.03445805148022079,0.7259182948282557,2,1.0,0.8359679923463648,0.46499999999999997
+159,28,0.6686484726318066,0.0,1.2781662126762947,0.0007808067454120289,0.035513250414061656,0.7291416784253216,2,1.0,0.8621615754393555,0.45999999999999996
+159,29,0.7401773630690918,0.0,1.2749541641892264,0.0007724676629168646,0.03529275358951495,0.7297788608972633,2,1.0,0.900591210230306,0.42999999999999994
+159,30,0.7063090999162058,0.0,1.2722747355759585,0.0007794705933230049,0.03570293332100687,0.7303041646914477,2,1.0,0.954363666387353,0.41999999999999993
+159,31,0.709663254477564,0.0,1.269486731296021,0.000785219093155747,0.03566468367146061,0.7308506757296406,2,1.0,0.9988775149252133,0.4149999999999999
+159,32,0.77,0.0,1.269792678428756,0.0007727623234264304,0.03517530346945573,0.7307953905969073,2,1.0,1.0,0.3849999999999999
+159,33,0.72,0.0,1.2670433942649368,0.0007799505672355848,0.035867779500915076,0.7313330987837638,2,1.0,1.0,0.3749999999999999
+159,34,0.71,0.0,1.26431522622409,0.0007861934191084525,0.03511918545005156,0.7318663542873836,2,1.0,1.0,0.3699999999999999
+159,35,0.69,0.0,1.2644414150249714,0.0007737791310838743,0.03585295729264985,0.73184646309275,2,1.0,1.0,0.3649999999999999
+159,36,0.72,0.0,1.2637386256100487,0.000762755880398849,0.03472041686549781,0.7319886862175894,2,1.0,1.0,0.35499999999999987
+159,37,0.6288559253065025,0.0,1.2612281384541784,0.0007682326379090572,0.03563739160497037,0.73247876341729,2,1.0,0.9295197510216751,0.33499999999999985
+159,38,0.6924686469421808,0.0,1.2814863377107835,0.0007561848755011857,0.035135890344845704,0.7284952147514989,2,1.0,0.9415621564739362,0.32999999999999985
+159,39,0.6162547285531694,0.05,1.1725244474109444,0.0005886500918383595,0.031217010032391718,0.7352254061418914,2,1.0,0.8875157618438982,0.30999999999999983
+159,40,0.7036278822564446,0.0,1.1702713457073628,0.0005814447207631657,0.031329450349199865,0.7499912766828538,2,1.0,0.9454262741881485,0.2999999999999998
+159,41,0.6998318352519861,0.05,1.1647727263836223,0.0005943942497954793,0.031074146642551842,0.7367294436586445,2,1.0,0.9994394508399537,0.2899999999999998
+159,42,0.7,0.05,1.1722350941487993,0.0006123676892202526,0.0315021126078428,0.7352724974121881,2,1.0,1.0,0.2799999999999998
+159,43,0.6357089582850886,0.05,1.1701838312639339,0.0006238195316630506,0.031920301756078164,0.7356671226878694,2,1.0,0.9523631942836285,0.2599999999999998
+159,44,0.7616745795421198,0.0,1.1622509051583163,0.0006143293980522429,0.031228633600751877,0.7514798442144416,2,1.0,0.9722485984737328,0.2299999999999998
+159,45,0.71,0.05,1.1717903851903664,0.0006266867611551263,0.03167842727722358,0.7353534763582371,2,1.0,1.0,0.22499999999999978
+159,46,0.77,0.0,1.204586448198622,0.0006262912494533027,0.03205677528106016,0.7434849086260402,2,1.0,1.0,0.19499999999999978
+159,47,0.72,0.05,1.2108367184644024,0.0006390922597259323,0.032471502669188156,0.7276803074041652,2,1.0,1.0,0.18499999999999978
+159,48,0.6408378346252774,0.0,1.214545857030598,0.0006508179713728809,0.03268570285289854,0.7415714969103925,2,1.0,0.9694594487509248,0.16499999999999979
+159,49,0.7095930345430599,0.0,1.2015045955369748,0.0006390630337576983,0.032420448531496344,0.7440673590254497,2,1.0,0.9986434484768663,0.15999999999999978
+160,0,0.16680168956099722,0.0,1.3551142847186968,0.0007088941750200512,0.03594725572250963,0.713709283351621,1,0.1361727852184732,0.23047071578177197,0.05
+160,1,0.16667184263185364,0.0,1.3546083441593713,0.0007070074385658726,0.03636419863655131,0.7138134210287918,1,0.1655268817482873,0.2624581133998436,0.1
+160,2,0.1937464285169107,0.0,1.3540814047734329,0.0007053088140797952,0.0359230538927705,0.7139217479369193,1,0.22324824911840524,0.28536513775156286,0.15000000000000002
+160,3,0.26005265619526774,0.0,1.3840688394911722,0.0006996199739125137,0.03668426729589765,0.7077604653540039,1,0.26096519407629915,0.36238279422854347,0.16000000000000003
+160,4,0.3181302570574093,0.0,1.3843607794793253,0.0007005659571899556,0.0367412710326331,0.7076996867386799,1,0.3217830379013016,0.4183539793065126,0.16000000000000003
+160,5,0.3333757413675388,0.0,1.3848202268657415,0.000699152216848268,0.03673721406180253,0.7076052210038895,1,0.37809844471073994,0.47013761906259943,0.17000000000000004
+160,6,0.3421651791795499,0.0,1.3841177525233603,0.0006987336479072101,0.03663352572151775,0.7077507149502098,1,0.4183838318842005,0.4857694600669324,0.22000000000000003
+160,7,0.3515655225568452,0.0,1.380372599276497,0.0007018982819971508,0.03646903321453042,0.7085234508399931,1,0.46866000756897785,0.5251150663590098,0.27
+160,8,0.447497460805907,0.0,1.3798924646096462,0.0007031743726325402,0.0364355867187355,0.708622070382524,1,0.5445751398557142,0.5896538728546901,0.27
+160,9,0.441183529349897,0.0,1.3826524024044187,0.0007021841332315214,0.03645505931242154,0.7080522886192157,1,0.5905297394574601,0.61499373513262,0.32
+160,10,0.4440293996867757,0.0,1.3726326290396662,0.0007021056768807904,0.03619244398890279,0.7101192247717114,1,0.6279852115863042,0.6474485854385642,0.37
+160,11,0.42210249396941146,0.05,0.3254432944031679,2.7641091433237563e-05,0.006683057843007029,0.8664005774611742,1,0.6812387516625384,0.6122297696250768,0.43
+160,12,0.5200904121698777,0.1,0.37875469313931925,4.3200361368316706e-05,0.008182768743526433,0.8508342082663276,1,0.7361243383735411,0.6748229791304611,0.44
+160,13,0.5360146736290285,0.2,0.44478876461573924,6.393962942219552e-05,0.010014474492648879,0.8212858112997478,1,0.7908915271856791,0.6973421303801364,0.49
+160,14,0.5791638299983459,0.25,0.4771099861101268,7.537911352305399e-05,0.010992403526894335,0.804983758352926,1,0.8398190423760071,0.7507572172224785,0.5
+160,15,0.5210321508964586,0.3,1.2475850034724503,0.0007991997840498336,0.03533071230794359,0.6389515792763804,1,0.8685989122292421,0.7234084387207461,0.56
+160,16,0.5986268820457183,0.19999999999999998,1.252639111703199,0.0008185004670541566,0.03630189484713388,0.6716646938312483,2,0.9053223187793574,0.7725469015764774,0.6100000000000001
+160,17,0.5363998741653808,0.25,1.2168456363554836,0.0008239442543838545,0.03508711622400589,0.6629585333711374,2,0.9176507011346114,0.7174070958942229,0.5900000000000001
+160,18,0.6974617000733074,0.2,1.2427816432084926,0.0008058983284717052,0.03572122695334742,0.6738404229962326,2,1.0,0.758205666911025,0.56
+160,19,0.5594537253531786,0.25,1.2337318099899246,0.0008116247124222396,0.035032351726158026,0.6591806247694527,2,1.0,0.6981790845105956,0.54
+160,20,0.530435519810239,0.15,1.2595505843828436,0.0007931314926279765,0.03555190762035598,0.6865121139412544,2,1.0,0.6681183993674632,0.52
+160,21,0.6187762300995351,0.09999999999999999,1.2721136317460886,0.0007847050118050258,0.03543588832995078,0.6997939701445443,2,1.0,0.6959207669984504,0.515
+160,22,0.6909222303413034,0.09999999999999999,1.2702986707848924,0.0007749882948554813,0.035847661280664786,0.7001792027695076,2,1.0,0.7364074344710115,0.485
+160,23,0.5512964305924287,0.09999999999999999,1.264791996955701,0.0007766895060894287,0.03515662491955404,0.7013332208819805,2,1.0,0.6709881019747624,0.46499999999999997
+160,24,0.5166616372527018,0.0,1.2849328468356456,0.0007630282566784981,0.035682007240350255,0.7278102819748972,2,1.0,0.622205457509006,0.44499999999999995
+160,25,0.6745531818290206,0.0,1.2959151884641957,0.0007551136342170934,0.035844584776422404,0.7256323695074944,2,1.0,0.6818439394300687,0.4149999999999999
+160,26,0.6396148603090046,0.0,1.289564927245296,0.0007555755120556289,0.03578664697731647,0.7268946467186213,2,1.0,0.732049534363349,0.4049999999999999
+160,27,0.6998556563586393,0.0,1.2894048098540505,0.0007709538538349661,0.03585637373091772,0.7269203264998042,2,1.0,0.7661855211954645,0.3749999999999999
+160,28,0.6703956092631203,0.0,1.2826602652218018,0.0007716849805250024,0.03586692119717332,0.7282568265694135,2,1.0,0.8346520308770679,0.3649999999999999
+160,29,0.6669059834446955,0.0,1.2528315415912554,0.0008607914521467515,0.036594145740882954,0.7340847576778831,2,1.0,0.8896866114823186,0.35499999999999987
+160,30,0.6781441049778162,0.0,1.247447138211573,0.0008644822469295033,0.03627408558466416,0.7351330535998858,2,1.0,0.9271470165927207,0.34499999999999986
+160,31,0.6907014215261292,0.0,1.2413844598531902,0.0008671737105462424,0.03635572752062422,0.7363108033809546,2,1.0,0.9690047384204309,0.33499999999999985
+160,32,0.626952635391662,0.0,1.2345813316710181,0.0008687449280333657,0.03627982850726456,0.7376289463857473,2,1.0,0.9231754513055402,0.31499999999999984
+160,33,0.7647557229711338,0.0,1.1193779089519769,0.0006566775790358153,0.03135303088548018,0.7593846320870127,2,1.0,0.9825190765704462,0.2849999999999998
+160,34,0.72,0.05,1.1318790650433317,0.0006755727467652479,0.0316771399974106,0.7430286090780318,2,1.0,1.0,0.2749999999999998
+160,35,0.71,0.0,1.1358224546009557,0.0006887458691527641,0.03206224007204196,0.7563552688339172,2,1.0,1.0,0.2699999999999998
+160,36,0.6395108985322535,0.0,1.1515037083295474,0.0006808523036852441,0.03197936890005436,0.753456825034085,2,1.0,0.965036328440845,0.2499999999999998
+160,37,0.77,0.0,1.145577090001765,0.0006687286291338255,0.03214241089846198,0.7545605876384421,2,1.0,1.0,0.2199999999999998
+160,38,0.71,0.05,1.1556891921192836,0.0006872034262626599,0.03214576032283428,0.7384516370595587,2,1.0,1.0,0.2149999999999998
+160,39,0.6410398528711465,0.0,1.1837684705444165,0.0006816531065752743,0.0322726136152532,0.7474141433925081,2,1.0,0.9701328429038218,0.1949999999999998
+160,40,0.71,0.0,1.1722215643087015,0.0006680426524858781,0.03230958198271747,0.749592915895054,2,1.0,1.0,0.1899999999999998
+160,41,0.77,0.05,1.1967180673509001,0.0006617036789807562,0.03242494371896924,0.7304601683307756,2,1.0,1.0,0.1599999999999998
+160,42,0.75,0.1,1.2087441438064603,0.0006795660588504437,0.033363022957399555,0.7129790288389245,2,1.0,1.0,0.1299999999999998
+160,43,0.6358939927115086,0.1,1.2170964923318348,0.0006948055884781349,0.03396432803065871,0.7112605094380303,2,0.9979412077950376,0.9553818999441513,0.1099999999999998
+160,44,0.77,0.05,1.2118375938142725,0.0006837111523102132,0.032757453513743436,0.7274642351493786,2,1.0,1.0,0.07999999999999981
+160,45,0.72,0.1,1.2092040409923397,0.0006966478300745585,0.033778552156518066,0.7128779136466996,2,1.0,1.0,0.06999999999999981
+160,46,0.71,0.05,1.214298874126734,0.0007086907846371109,0.033730463867272895,0.7269660724389502,2,1.0,1.0,0.06499999999999981
+160,47,0.6346594932044841,0.05,1.233673451661249,0.0006998952901922117,0.034346645867265276,0.7231071405677525,2,1.0,0.9488649773482806,0.044999999999999804
+160,48,0.7091231131439184,0.0,1.228726448932774,0.0006892273930057925,0.03286749977766716,0.7388297643337781,2,1.0,0.9970770438130616,0.03999999999999981
+160,49,0.6355059640719639,0.05,1.2482805628550127,0.0006813853440017881,0.03405789065716461,0.7201804080787306,2,1.0,0.9516865469065464,0.019999999999999806
+161,0,0.1848908358338091,0.0,1.3544974455116612,0.0007023945156655005,0.03579759919003675,0.7138379598890292,1,0.1309976712574101,0.2634721696457186,0.01
+161,1,0.1928237492199589,0.0,1.3527601168385117,0.0007043409494948581,0.03633180654793332,0.7141919232942057,1,0.17046767883728214,0.31053353875636724,0.02
+161,2,0.1441046048819233,0.0,1.352317131307963,0.0007059303783767655,0.035907098815201696,0.714281688975054,1,0.18883270077633113,0.2600438653673581,0.08
+161,3,0.12872758774247653,0.0,1.359055065457023,0.0007038589376979071,0.036230332486089145,0.7129054536342069,0,0.2341590582764554,0.22257305781905717,0.14
+161,4,0.21484813932271565,0.0,1.3848763307093388,0.0006991979429139019,0.03674020539100785,0.7075935940575033,0,0.3236433067183385,0.23857660657099053,0.2
+161,5,0.22728182336663802,0.0,1.3843970590733796,0.0006989092397504688,0.03670212828667116,0.7076928672846046,0,0.40739723891447577,0.24897596582190504,0.26
+161,6,0.2580663143944974,0.0,1.3859278569757463,0.0006999430666933747,0.0367168704023957,0.7073756721638156,0,0.49329921877686345,0.2513719594086507,0.32
+161,7,0.28533149132179175,0.0,1.3860878570885242,0.0007000389074244486,0.03661694123404854,0.7073425121089061,0,0.5782125512046342,0.20985699466723273,0.4
+161,8,0.2889727333549985,0.0,1.3853555429486695,0.0007003635446440677,0.03647811354133661,0.7074939504007826,0,0.5655487474336776,0.23676890584403798,0.4
+161,9,0.28288277932915173,0.0,1.3857526779632305,0.0007001433458292078,0.03635416616000782,0.7074118491764119,0,0.575331384370904,0.27172264933111795,0.4
+161,10,0.33103598158848296,0.0,1.3858536906956158,0.0006999522112299049,0.03654305430920969,0.7073910202157313,0,0.6478494062980122,0.24762896461392897,0.46
+161,11,0.3388319722898657,0.0,1.385074916100978,0.0006995956981639566,0.03664315300587515,0.7075523394645437,0,0.7278594974881148,0.2136038272300851,0.54
+161,12,0.3656953391338778,0.0,1.3853232879714872,0.0007002804039715744,0.036738431364534044,0.7075006598138606,0,0.7562695002974408,0.23667004676591197,0.55
+161,13,0.36802500378389624,0.0,1.3850842205978215,0.0006996369102850604,0.036747772519556396,0.707550397100027,0,0.7764296351834694,0.25424877156560655,0.55
+161,14,0.3854094346429519,0.0,1.3857516055702597,0.0006998186035929678,0.036747423075743205,0.7074122055710372,0,0.7864674962192383,0.26715270322072826,0.56
+161,15,0.38174684250781565,0.0,1.3853310743677296,0.0006995264820716634,0.03668019576247919,0.7074993605067001,0,0.8211561106358306,0.28114067928425013,0.5700000000000001
+161,16,0.3959949011587532,0.0,1.2462037654718356,0.0006693416053829806,0.03337036218251487,0.7354510241608979,0,0.8335677619047683,0.31415394830694765,0.5800000000000001
+161,17,0.4398128930403722,0.0,1.2629792131776036,0.000663493988437397,0.03466250550549461,0.732176573572783,2,0.9427073808138219,0.29955103251844833,0.66
+161,18,0.4026182325732728,0.1,0.6465624541258219,0.00021109624426543272,0.016606150119088347,0.813515272308272,2,0.9786963973284443,0.2669149783610576,0.64
+161,19,0.5005203102989242,0.05,0.7020900866113686,0.0002372694221855002,0.017951474144883135,0.8164435276248496,2,1.0,0.3017343676630806,0.635
+161,20,0.42586879011318657,0.15000000000000002,0.6694294919219246,0.00021511961665832667,0.016940559204186963,0.7982093719516956,2,1.0,0.25289596704395534,0.615
+161,21,0.495608650050701,0.10000000000000002,0.7313608498701905,0.0002444684973625079,0.01870851044514572,0.800296771008331,2,1.0,0.28536216683567006,0.61
+161,22,0.42258225987571124,0.2,0.6983367632842508,0.00022236030445642763,0.017433548807378636,0.7809512664178682,2,1.0,0.24194086625237082,0.59
+161,23,0.507051503853166,0.15000000000000002,0.7656648738949225,0.00025681706844343165,0.019155973043864717,0.7822491015077258,2,1.0,0.2901716795105535,0.58
+161,24,0.41860304368650764,0.2,0.7839491318623182,0.00025161338703195247,0.01974460666705745,0.765943817913453,2,1.0,0.22867681228835884,0.5599999999999999
+161,25,0.3853962178332055,0.15000000000000002,0.8344978143086639,0.0002806545299270495,0.020939278931465945,0.7702884876805737,2,1.0,0.18465405944401847,0.5399999999999999
+161,26,0.4890260365234279,0.05000000000000002,1.383158008403563,0.0006999447239196971,0.036537128456451504,0.6922037055875485,2,1.0,0.23008678841142644,0.5299999999999999
+161,27,0.4067017367026204,0.10000000000000002,0.7394319932585041,0.00022490000243143048,0.018336135310784908,0.7990099840983651,2,1.0,0.18900578900873471,0.5099999999999999
+161,28,0.4993419507866376,1.3877787807814457e-17,1.2732912724004941,0.0006450269957214598,0.03457955943897872,0.7301568822734095,2,1.0,0.26447316928879216,0.4999999999999999
+161,29,0.4938378735264193,0.10000000000000002,0.6990541791991118,0.0002057082262523761,0.01732107212246804,0.8054221804804474,2,1.0,0.3127929117547312,0.4899999999999999
+161,30,0.5156017525716449,0.10000000000000002,0.7787133909811461,0.0002422159104234549,0.019268885066492675,0.7926218282355973,2,1.0,0.35200584190548284,0.4849999999999999
+161,31,0.5847439603711376,0.10000000000000002,0.7636034842292254,0.00023105240681230794,0.018781283923265817,0.7950981384006945,2,1.0,0.38247986790379207,0.45499999999999985
+161,32,0.4534220268896721,0.15000000000000002,0.7994013175104386,0.00027759507833747025,0.02009093126637333,0.776440686847083,2,1.0,0.34474008963224045,0.43499999999999983
+161,33,0.5391421243108352,0.10000000000000002,0.843772734752749,0.0002981696627635809,0.02154840041511121,0.7817051456318267,2,1.0,0.39714041436945063,0.4249999999999998
+161,34,0.6047966681086547,0.15000000000000002,0.8628925301520596,0.0003000023550011468,0.02114249138987531,0.7652187417435315,2,1.0,0.44932222702884944,0.3949999999999998
+161,35,0.6032429281335285,0.2,1.0906361459743446,0.0006006920943797552,0.030035616235977648,0.7064412950370041,2,1.0,0.5108097604450953,0.36499999999999977
+161,36,0.5954418078101609,0.2,1.1113555422994483,0.0006213435198354339,0.030672603011114907,0.7021175240881647,2,1.0,0.5848060260338694,0.35499999999999976
+161,37,0.5935772223847096,0.2,1.113130505691224,0.0006360137259552788,0.030883741124515036,0.7017400190757125,1,1.0,0.6119240746156986,0.34999999999999976
+161,38,0.5681839883530382,0.2,1.0808353637457158,0.0006937989672468631,0.0317999843030481,0.7084312183819993,1,1.0,0.6272799611767943,0.39999999999999974
+161,39,0.6419398538284354,0.2,1.0676176418756242,0.0006792964654157145,0.031386156343173384,0.7111598412432442,1,1.0,0.7064661794281181,0.39999999999999974
+161,40,0.6151981033350726,0.25,1.094090858712335,0.0006732084359438053,0.032054566201900385,0.6898809358706693,1,1.0,0.7173270111169089,0.44999999999999973
+161,41,0.6594895276134949,0.25,1.0914388119645442,0.0006653201298284867,0.031596341552033565,0.6904514146284506,1,1.0,0.7649650920449832,0.44999999999999973
+161,42,0.5677691209997917,0.3,1.114394772202067,0.0006620640213268648,0.03156240971343459,0.669136262706774,1,1.0,0.7258970699993057,0.5099999999999998
+161,43,0.6233707832025596,0.25,1.1372135756580712,0.0007207890183800273,0.03315295385297952,0.6805596348564341,1,1.0,0.7445692773418653,0.5599999999999998
+161,44,0.6166305472491308,0.3,1.1143448069402835,0.0007038217316299699,0.03222719772333669,0.6691288348968415,2,1.0,0.7887684908304362,0.6099999999999999
+161,45,0.7205252247235447,0.25,1.2923013741028382,0.0008014781049101794,0.03622550115391041,0.6459069381592809,2,1.0,0.8350840824118162,0.5799999999999998
+161,46,0.6770748758325043,0.3,1.2142162720730652,0.0008843748649671596,0.036149878666746606,0.6465743318621077,2,1.0,0.8569162527750143,0.5699999999999998
+161,47,0.6710061170922803,0.25,1.2139602434340564,0.0008797624485636376,0.03622767697440209,0.6635780336424527,2,1.0,0.9033537236409347,0.5599999999999998
+161,48,0.6885009158273805,0.25,1.2021400020962676,0.0008851617509964401,0.03592996638531433,0.6662092863935197,2,1.0,0.9616697194246018,0.5499999999999998
+161,49,0.7,0.25,1.1952463058623672,0.0008842253466440316,0.03609467146427041,0.6677409234363745,2,1.0,1.0,0.5399999999999998
+162,0,0.19482543913134653,0.2,1.3552762033194599,0.0007053264589521275,0.035803476167380936,0.6486962040129516,1,0.1565483263500304,0.26677841636278626,0.01
+162,1,0.2118660844535104,0.1,1.3535934041867363,0.0007069002469985349,0.036331122793175,0.682436740819507,1,0.20174079491984087,0.30418935410522036,0.060000000000000005
+162,2,0.25045323858191415,0.05,1.385130979917133,0.0007004479642562305,0.03668917566455215,0.6917829748149398,1,0.2450641201273408,0.3489359884578163,0.07
+162,3,0.2607175005524623,0.05,1.3850485893418725,0.0007010413696053231,0.03674544051440979,0.6918002887543633,1,0.2804018918767702,0.37525612798530905,0.12000000000000001
+162,4,0.20487583509388935,0.0,1.385039293444274,0.0007004576031452339,0.03675895939841667,0.7075593538332512,1,0.29618229426453746,0.3373734403376708,0.18
+162,5,0.3077778626299066,0.0,1.3855317111496492,0.0007003345413812874,0.036765474963765456,0.7074575037228629,1,0.3663047303289617,0.39857069004923346,0.19
+162,6,0.36549047739351614,0.0,1.3854275746265525,0.000700797496051333,0.03670216847318106,0.7074788638769662,1,0.42941240756449495,0.45065378248647636,0.19
+162,7,0.2865501681413555,0.0,1.3830686708631024,0.0007001805634135424,0.03652539660571135,0.7079670610228967,1,0.45504543349915133,0.4242808880555085,0.25
+162,8,0.27656492675955924,0.0,1.3823735245477604,0.0007003556821452638,0.036445772866539314,0.7081106891453417,1,0.49559370635475686,0.4103570984513146,0.31
+162,9,0.39073387176347707,0.0,1.381568670719036,0.0007004834118503015,0.03640999061098823,0.708276963683978,1,0.5460627421855491,0.4653730399951164,0.32
+162,10,0.3290608608572262,0.0,1.3811887638822757,0.0006989713298647787,0.036449933395489895,0.7083560788469986,1,0.5806283757647192,0.4194697644652483,0.38
+162,11,0.40294385811077893,0.0,1.3537253002234433,0.0007112068655540123,0.03638625023571274,0.7139920634486806,1,0.6259510072511368,0.44620335190960364,0.43
+162,12,0.35285453784400617,0.0,1.2742577748549047,0.0006582554895227856,0.034018302864030535,0.7299611969444334,1,0.6554387168920934,0.41150328977257833,0.49
+162,13,0.44822375995365304,0.0,1.2904893888862068,0.0006572883822181132,0.034415082455112725,0.7267501235129533,1,0.7058276990375032,0.4706135509684231,0.5
+162,14,0.45866089717310166,0.0,1.2992760362357902,0.0006681079059066839,0.03452581217986285,0.7249974461512706,1,0.7470903034831065,0.5239309698467147,0.51
+162,15,0.4305162074326947,0.0,1.305957039632796,0.0006791273198448515,0.03491277812957923,0.7236590058237599,1,0.8055579208768171,0.4952364504193623,0.5700000000000001
+162,16,0.50376519006936,0.0,1.1121820833057652,0.0009829023696297323,0.03599071619008075,0.760578205174962,2,0.852208490509744,0.5183073946364988,0.6200000000000001
+162,17,0.6127630313719461,0.05,1.1189088028092893,0.0006799153140850988,0.03188101706525562,0.7454956491589667,2,0.9336975173599863,0.5532296676531698,0.5900000000000001
+162,18,0.48383518344558224,0.1,1.1333336792403428,0.000697982492060233,0.03195258629912555,0.7281527175027069,2,0.9532653155384964,0.5006410766903618,0.5700000000000001
+162,19,0.5662433969964771,0.05,1.1569369608453766,0.0006935531717839954,0.03230572214398049,0.7382081160379621,2,1.0,0.5208113233215905,0.5650000000000001
+162,20,0.5937668850771579,0.1,1.147474172405085,0.0006820831181859222,0.03222732743978989,0.7253509809776036,2,1.0,0.5792229502571931,0.555
+162,21,0.657084488268292,0.1,1.1511780522817026,0.0006917813028403031,0.032090169912001344,0.7246086192778489,2,1.0,0.6236149608943067,0.525
+162,22,0.6043933555813245,0.15000000000000002,1.2408174086711847,0.0008360535494960612,0.035877021192457094,0.6905112417692738,2,1.0,0.6479778519377482,0.52
+162,23,0.6296813501669916,0.05000000000000002,1.2545594259168986,0.0008150702031991016,0.03559757237261782,0.7188593079475156,2,1.0,0.6989378338899721,0.51
+162,24,0.6937025026188469,0.05000000000000002,1.242716949336951,0.0008396784281255647,0.036087592323846604,0.7212365695163425,2,1.0,0.7456750087294899,0.48
+162,25,0.6618198565440047,0.10000000000000002,1.235554911647756,0.0008401476925897733,0.035930189367993345,0.707394826331923,2,1.0,0.8060661884800157,0.47
+162,26,0.6550643899500731,0.05000000000000002,1.1329618375440687,0.0005590181912824042,0.03003907577995859,0.7428663433216154,2,1.0,0.8502146331669105,0.45999999999999996
+162,27,0.661970505980378,0.05000000000000002,1.1474956081387493,0.0005771647198079322,0.031195201102430688,0.7400733952716846,2,1.0,0.8732350199345936,0.44999999999999996
+162,28,0.5968845703713763,0.05000000000000002,1.1695440650242477,0.0006054004908711758,0.03158496736470332,0.7357986748642568,2,1.0,0.8229485679045879,0.42999999999999994
+162,29,0.7275544424438898,1.3877787807814457e-17,1.1941753904240213,0.0006007421350021928,0.032186064509728336,0.7454751117954747,2,1.0,0.8585148081462994,0.3999999999999999
+162,30,0.5902547877626342,0.05000000000000002,1.171346171266624,0.0005845520201466943,0.031164319403737532,0.7354563110555442,2,1.0,0.800849292542114,0.3799999999999999
+162,31,0.6644168520849671,1.3877787807814457e-17,1.203759374670899,0.0005888428888252201,0.03192687529571525,0.7436568901900266,2,1.0,0.8480561736165574,0.3749999999999999
+162,32,0.6930792810721274,0.05000000000000002,1.2002109894733453,0.0005918841343300264,0.03202326091492502,0.7297994367763546,2,1.0,0.9102642702404247,0.3649999999999999
+162,33,0.6864005323265484,0.05000000000000002,1.2275186233845028,0.0006213157183842827,0.03252001781657121,0.724369165475632,2,1.0,0.9546684410884949,0.35499999999999987
+162,34,0.7,0.05000000000000002,1.2429835878218654,0.0006478978265480101,0.033427195459641026,0.7212600767329008,2,1.0,1.0,0.34499999999999986
+162,35,0.6333039219690064,1.3877787807814457e-17,1.2551136780791714,0.0006755406821623164,0.034106170213280225,0.7337114313217772,2,1.0,0.9443464065633547,0.32499999999999984
+162,36,0.7186884986514648,0.0,1.2139091355426728,0.0009175112439745616,0.03673546038336512,0.741591299856361,2,1.0,0.995628328838216,0.31499999999999984
+162,37,0.7,0.05,1.2062850395454277,0.000921673950705904,0.036181169945311696,0.7284695645954359,2,1.0,1.0,0.3049999999999998
+162,38,0.77,0.05,1.2053862303981646,0.0009160918098457119,0.03589411629552341,0.7286495214228094,2,1.0,1.0,0.2749999999999998
+162,39,0.71,0.1,1.1996362826991844,0.0009328718247174485,0.03678537003460135,0.7147359586517229,2,1.0,1.0,0.2699999999999998
+162,40,0.69,0.05,1.2295007630812034,0.0008995554135003371,0.036811493768768216,0.723862020062068,2,1.0,1.0,0.2649999999999998
+162,41,0.6355442084950276,0.05,1.243852231594538,0.0008827678066618851,0.03681831529577362,0.7209909230780202,2,1.0,0.9518140283167584,0.2449999999999998
+162,42,0.6031129681135634,0.0,1.2608300424367367,0.0008607456495317061,0.0365502422883154,0.7325205131867364,2,0.9987374395403432,0.9118495475814776,0.2249999999999998
+162,43,0.5896473440181086,0.0,1.2697476903087495,0.0008469434236708375,0.036706721398576406,0.7307750529683162,2,1.0,0.8654911467270289,0.20499999999999982
+162,44,0.7443519749618894,0.0,1.2812635619666717,0.000828560187127083,0.03626441247160913,0.7285106470600847,2,1.0,0.9145065832062983,0.17499999999999982
+162,45,0.7371574814994022,0.0,1.2758857343055428,0.0008391641877296915,0.036653157976662944,0.7295687969929869,2,1.0,0.9571916049980077,0.14499999999999982
+162,46,0.72,0.0,1.270050668029666,0.0008471821262756833,0.036267059770001976,0.7307153461535881,2,1.0,1.0,0.13499999999999981
+162,47,0.77,0.0,1.2642465654948947,0.0008546566540246741,0.03667979989227109,0.7318529577433567,2,1.0,1.0,0.10499999999999982
+162,48,0.6307417953758729,0.0,1.2578548281639894,0.0008630122756777215,0.03659437170750864,0.7331021690252583,2,1.0,0.935805984586243,0.08499999999999981
+162,49,0.7122139590235006,0.0,1.269428507872907,0.0008434417814189583,0.036443964274989644,0.7308392228537065,2,1.0,0.9740465300783355,0.07499999999999982
+163,0,0.1675969980711859,0.0,1.3470030102252244,0.0007062172209412504,0.0355886839446264,0.7153648597273392,1,0.14476756094019677,0.22309450580705675,0.05
+163,1,0.22724254932581528,0.0,1.346438215043651,0.0007046462295068761,0.03626148266840341,0.7154804877979305,1,0.19752697835313182,0.2603603563407305,0.05
+163,2,0.2425291030652971,0.0,1.345731355227619,0.000706329768250638,0.03573724333853183,0.715623674808377,1,0.24243633736307083,0.325587949960741,0.05
+163,3,0.18437032473498793,0.0,1.384463991276825,0.0007013725723164037,0.036713147759425344,0.7076780020732711,1,0.2865946567505187,0.28020731624102135,0.11
+163,4,0.3108647369401912,0.0,1.3850253807390516,0.000700981937090069,0.03676823586167578,0.7075620156413596,1,0.35871464511729556,0.35104870383045916,0.11
+163,5,0.30507906453542705,0.0,1.3843557474394823,0.0007011402472357848,0.03675404034139037,0.7077004900737788,0,0.40120307345612344,0.3821932960859463,0.16
+163,6,0.2870042599642758,0.0,1.3859037791316873,0.0007000175847563945,0.036722498921583545,0.7073806252907454,0,0.472410657466496,0.37220176617000733,0.22
+163,7,0.30903799542993926,0.0,1.3859306525296353,0.0007002938940259603,0.03660932811151144,0.7073749482574497,0,0.49384256924464487,0.3873103206477121,0.22
+163,8,0.3515409152066293,0.0,1.3857767685779572,0.0006999303594631513,0.03646831310443065,0.7074069510370836,0,0.5782602618098641,0.3971660785772562,0.28
+163,9,0.3647186561848751,0.0,1.3856330246880966,0.0007001445203283389,0.036420787954269195,0.7074366139493512,0,0.6011105440417505,0.4477665525675415,0.28
+163,10,0.35137833406744295,0.0,1.3852523933211622,0.000699440077447908,0.036509771662471616,0.7075156785732446,0,0.6044148909506533,0.46611040744904786,0.28
+163,11,0.3992255865623187,0.0,1.3856191392445025,0.0006998161094726515,0.03666802305548524,0.7074396237536666,0,0.7082698655603623,0.4377704453873064,0.36000000000000004
+163,12,0.4085053782360415,0.0,1.3839711060746125,0.000701683446994492,0.03673850169908206,0.7077798261269087,0,0.8123086396958487,0.4139911811416483,0.44000000000000006
+163,13,0.4376880289604067,0.0,1.2333654495237742,0.000643056427037859,0.03344992641000847,0.737951487328203,0,0.9184434441577503,0.38744274501731396,0.52
+163,14,0.488045531480623,0.0,1.2680752577326824,0.0008532716795504058,0.036623939310550115,0.7311014769762161,0,0.9467612236927413,0.4222636772938785,0.53
+163,15,0.48839391678590804,0.05,1.2427537499812853,0.0006744218928055453,0.03437763229057343,0.7212956178488215,0,0.9648501964764742,0.43565449339714035,0.53
+163,16,0.47849888361924664,0.0,1.2635702267472848,0.0006723313731342498,0.03350309583772035,0.7320571965510202,0,0.9710450978835806,0.4621103311999783,0.53
+163,17,0.4947955471382836,0.0,1.2679272623220348,0.0006653887279377617,0.034687959253491475,0.731204431852434,2,1.0,0.4159851571276121,0.61
+163,18,0.4313282404290525,0.0,1.1614524799101607,0.0007607015113977411,0.032614745818634445,0.751574272123713,2,1.0,0.33776080143017506,0.59
+163,19,0.5367989689902353,0.0,0.9417275303154495,0.0005339039184571623,0.026584011313081808,0.7903778771610983,2,1.0,0.3893298966341175,0.58
+163,20,0.4540658502652129,0.05,0.9737589049890288,0.0005337385266914122,0.027346862505459202,0.77209410151917,2,1.0,0.3468861675507097,0.5599999999999999
+163,21,0.5222198673996282,0.0,1.0083908926855694,0.0005372808122803858,0.02775514264060336,0.7791181131185433,2,1.0,0.37406622466542755,0.5549999999999999
+163,22,0.550741748583395,0.05,0.9861242195006233,0.0005215846300890464,0.027319602208103172,0.7699152299288086,2,1.0,0.43580582861131684,0.5449999999999999
+163,23,0.6193133036983312,0.05,1.1483052487485237,0.0007672854787026343,0.032613083317911955,0.7398444384994188,2,1.0,0.4977110123277707,0.5149999999999999
+163,24,0.5694487295296115,0.1,1.1479458709299413,0.0007751060126851571,0.034108386162635736,0.7252199277507183,2,1.0,0.5314957650987049,0.5099999999999999
+163,25,0.6442846485253539,0.05,1.1493866423812729,0.000764283502239495,0.03360426101726971,0.7396373998714723,2,1.0,0.5809488284178468,0.47999999999999987
+163,26,0.6130427346757557,0.1,1.1452031762408938,0.0007719745802428437,0.033845170447276564,0.725767389683251,2,1.0,0.6434757822525191,0.46999999999999986
+163,27,0.678288338745481,0.05,1.225766515766865,0.0008870147075349628,0.03629805133559556,0.7246128237380721,2,1.0,0.694294462484937,0.43999999999999984
+163,28,0.672888497173982,0.1,1.2151462527391985,0.000898873588753942,0.03638108065836105,0.7115771065007391,2,1.0,0.7429616572466069,0.4099999999999998
+163,29,0.5573522249031951,0.1,1.2158047788645474,0.0008960606587615614,0.03625933940904671,0.711443089923081,2,1.0,0.6911740830106505,0.3899999999999998
+163,30,0.6911494555200335,0.05,1.2377149103560574,0.0008756424637010149,0.03643886844501642,0.7222267079400314,2,1.0,0.7371648517334449,0.35999999999999976
+163,31,0.5564524082033655,0.1,1.2257952354866608,0.0008852214303149361,0.03620193525454483,0.7093922755300814,2,1.0,0.6881746940112182,0.33999999999999975
+163,32,0.5195244378216839,0.0,1.2524997418457124,0.0008584310811025396,0.03635454655041378,0.7341504427580141,2,1.0,0.6317481260722799,0.31999999999999973
+163,33,0.6233255451662297,0.0,1.2055777005595283,0.0006113090960945034,0.0324027246199627,0.7433015335728722,2,1.0,0.6777518172207657,0.3099999999999997
+163,34,0.6161918444103798,0.05,1.228915927251875,0.0006169068532469076,0.032664043751549944,0.7240918561007514,2,1.0,0.7206394813679327,0.2999999999999997
+163,35,0.6311562697368619,0.0,1.2554700729141315,0.00062811681936456,0.03319007731185093,0.7336603273942464,2,1.0,0.7371875657895398,0.2949999999999997
+163,36,0.5580285178035241,0.0,1.2456636872670839,0.0006274696090749808,0.03315530313619855,0.7355723789353423,2,1.0,0.6934283926784139,0.2749999999999997
+163,37,0.6428847452003106,0.0,1.2620341856098447,0.0006325102055167512,0.03313557629542654,0.7323739931419537,2,1.0,0.7429491506677021,0.2649999999999997
+163,38,0.5593179198642391,0.0,1.2799911304190466,0.0006402986229234385,0.03398146016186081,0.7288366591553589,2,1.0,0.6977263995474635,0.2449999999999997
+163,39,0.6309988601844236,0.0,1.293287353165248,0.0006453168638016189,0.034154122847339,0.7261988998488098,2,1.0,0.7366628672814124,0.23999999999999969
+163,40,0.7102988846447106,0.0,1.2891902951785457,0.0006457503226960828,0.034227454640885537,0.7270126070588352,2,1.0,0.8009962821490353,0.2099999999999997
+163,41,0.6563239964687174,0.05,1.2157204683634377,0.0005840200012220105,0.03215891874668862,0.7267333343282986,2,1.0,0.8210799882290583,0.20499999999999968
+163,42,0.6769650988046876,0.0,1.2417816405712312,0.0005937881911981435,0.03243628777279696,0.7363398463926701,2,1.0,0.8565503293489587,0.19499999999999967
+163,43,0.678799962571603,0.0,1.2545766458203045,0.0006106458675096142,0.03358287124440743,0.7338416939879058,2,1.0,0.8959998752386767,0.18999999999999967
+163,44,0.7084922889470686,0.0,1.2697382471528993,0.000613751777650281,0.03273112978222675,0.730868658151195,2,1.0,0.9616409631568956,0.17999999999999966
+163,45,0.7,0.0,1.2862228932878905,0.0006360020089062751,0.034589303110836474,0.7276050005774302,2,1.0,1.0,0.16999999999999965
+163,46,0.71,0.0,1.2989819503514555,0.0006597005146637225,0.03409546445996669,0.7250594279927688,2,1.0,1.0,0.16499999999999965
+163,47,0.77,0.0,1.310758795902984,0.0006578713164683346,0.03509549148500496,0.7227062557492314,2,1.0,1.0,0.13499999999999965
+163,48,0.75,0.0,1.2980470474772272,0.0006494605686322515,0.03449415752459119,0.7252498409223365,2,1.0,1.0,0.10499999999999965
+163,49,0.75,0.0,1.2847596124495837,0.0006404067870164061,0.0341426309579149,0.7278931754652348,2,1.0,1.0,0.07499999999999965
+164,0,0.21209162728219377,0.0,1.3446569260626215,0.0007083655206048196,0.03565456734128194,0.715841449193657,1,0.14389233554028555,0.2724310328103129,0.0
+164,1,0.23028402052708344,0.0,1.343909251585908,0.0007095174737379456,0.03626211312767845,0.7159930424659433,1,0.1966464719413971,0.3381925178253149,0.0
+164,2,0.24058667121597926,0.0,1.3429979996734898,0.0007107542847230321,0.035719241999854524,0.7161778035306399,1,0.23265592672250776,0.36385698954367185,0.05
+164,3,0.24470438422498267,0.0,1.3803324885062833,0.0007046759459427955,0.036638865483414274,0.7085305871083875,1,0.2755256319081149,0.39423471019047485,0.1
+164,4,0.2109161647568028,0.0,1.3820564367424217,0.0007035138534178377,0.03674755718694962,0.7081749183261403,1,0.31614522509786736,0.33421778657516416,0.16
+164,5,0.2862386284932292,0.0,1.3823134644851587,0.0007023987069088063,0.036720818271348155,0.7081222582760357,1,0.3548725489444846,0.37344412120886517,0.21000000000000002
+164,6,0.3573678755989752,0.0,1.3836671827003042,0.0007016382540994677,0.036679950334052726,0.7078427005740752,1,0.4254840114651332,0.42816157195392873,0.21000000000000002
+164,7,0.37047208711938084,0.0,1.381004456323933,0.0006989800801203992,0.03646131806131307,0.7083941494524216,1,0.48003719238769677,0.47486356594562346,0.22000000000000003
+164,8,0.3800162339030496,0.0,1.3803326453208147,0.0006976649558971324,0.03637841118956764,0.7085334504646944,1,0.5181330816117414,0.4955655177964672,0.27
+164,9,0.42541588569287947,0.0,1.3806996572374834,0.0006991545308045528,0.036494525254656365,0.7084570363086733,1,0.5788265327140057,0.5427553308099249,0.28
+164,10,0.3629657133906302,0.0,1.379788700202841,0.0006975242251274661,0.036381252910667024,0.708645828007272,1,0.6060297555745975,0.5028509964650703,0.34
+164,11,0.4377016549901689,0.0,1.327479325844457,0.0006764714165998875,0.03511944717439998,0.7193354733418186,1,0.6580379385865068,0.5246279216163051,0.39
+164,12,0.4446351318941614,0.0,1.3247030000344409,0.0006729412069123867,0.03520581207870945,0.71989707339886,1,0.7065066093532426,0.5578593954017551,0.44
+164,13,0.4649661739772117,0.0,1.3216624185979904,0.0006695663643699386,0.03486203538907972,0.7205111413656615,1,0.7388924257435774,0.5878460832231988,0.49
+164,14,0.487418194254703,0.0,1.3183358218535186,0.0006661693993833869,0.03481887051089177,0.7211819086993458,1,0.7729403042055851,0.6229636259424943,0.54
+164,15,0.5114970947530746,0.05,0.5071679654817743,0.00010879897412705807,0.012163059123897998,0.8439101773953811,1,0.813937082168988,0.655397053313096,0.5900000000000001
+164,16,0.5960148203037365,0.05,0.8512183638263339,0.00043221306331882504,0.024601853660227165,0.7929692662393418,1,0.8696485791207456,0.7054593920382521,0.5900000000000001
+164,17,0.5127585515670464,0.1,0.8872993874166324,0.00044737070100997196,0.02552829049349446,0.7741344876635524,2,0.9008097172376398,0.6582505017795751,0.6500000000000001
+164,18,0.6734631961783248,0.05,1.1945334964276688,0.0009125828563609209,0.035965021946033085,0.7307913655947329,2,0.9757633662689472,0.7064867266139777,0.6200000000000001
+164,19,0.6794944413444504,0.1,1.181577650959729,0.0009209032159697357,0.03602089907730373,0.7184084257589566,2,1.0,0.7649814711481681,0.5900000000000001
+164,20,0.5668007140358474,0.1,1.1813927852028305,0.0009144485667090166,0.035958272315838875,0.718448433481271,2,1.0,0.7226690467861583,0.5700000000000001
+164,21,0.5290341176286839,0.05,1.2052973858675053,0.0008933319878695154,0.036383413769380715,0.7286760870101091,2,1.0,0.66344705876228,0.55
+164,22,0.5157612634659927,0.0,1.2215114450979425,0.0008785745360889776,0.03589009851175588,0.7401467455906108,2,1.0,0.6192042115533091,0.53
+164,23,0.6203409003628673,0.0,1.2365472984445571,0.0008640225863040731,0.036408620355278205,0.7372501198003758,2,1.0,0.6678030012095575,0.52
+164,24,0.6152511619322002,0.05,1.2331827298147107,0.0008797600661920296,0.03604836555742398,0.7231333674981141,2,1.0,0.7175038731073342,0.51
+164,25,0.5540833466353492,0.05,1.2354406944999243,0.0008851526846864008,0.03663195820863716,0.7226789078044357,2,1.0,0.6802778221178309,0.49
+164,26,0.6844792117383407,0.0,1.2549531076173637,0.0008644025263362008,0.03642110099456523,0.7336690019955513,2,1.0,0.714930705794469,0.45999999999999996
+164,27,0.6320857672093124,0.05,1.242513442438579,0.000873688635138062,0.036710671431927064,0.7212638088509643,2,1.0,0.7402858906977082,0.45499999999999996
+164,28,0.6581929546690233,0.0,1.2622547869256895,0.0008468888144280305,0.03659283326918438,0.7322466981545142,2,1.0,0.7939765155634109,0.44499999999999995
+164,29,0.7240620074064827,0.0,1.252788848883833,0.0008649350227360859,0.036637805804871346,0.7340914737391694,2,1.0,0.846873358021609,0.4149999999999999
+164,30,0.6725587114682747,0.05,1.1949954425200562,0.0006967006793762814,0.033198753988221266,0.7307854277386345,2,1.0,0.8751957048942492,0.4099999999999999
+164,31,0.5972564038749735,0.0,1.2056225887761278,0.0006933413627640178,0.033562403209399,0.74326166244952,2,1.0,0.8241880129165784,0.3899999999999999
+164,32,0.6616238871845037,0.0,1.2230143439051715,0.0006812213606144535,0.03359733721859409,0.7399335507291411,2,1.0,0.8387462906150124,0.3849999999999999
+164,33,0.6854206330156287,0.05,1.2241394667065046,0.0006770326556301389,0.033713165050450404,0.7250211154613803,2,1.0,0.8847354433854291,0.3749999999999999
+164,34,0.6787030428263339,0.05,1.2403940524226431,0.0007022645648873727,0.034176504575951824,0.7217585531505761,2,1.0,0.9290101427544462,0.3649999999999999
+164,35,0.6863770467153469,0.05,1.2474470217114644,0.0007250213622363808,0.034468595013805864,0.720330771954076,2,1.0,0.9545901557178234,0.35499999999999987
+164,36,0.7023624051209302,0.0,1.2520654245400085,0.0007464328285496811,0.03481294217301835,0.7342789084078439,2,1.0,0.9745413504031006,0.34999999999999987
+164,37,0.72,0.0,1.247854091851992,0.0007362941763742123,0.0348777624493659,0.735103733248463,2,1.0,1.0,0.33999999999999986
+164,38,0.7,0.0,1.2512272910212539,0.0007557221141496571,0.034734514235190875,0.7344387838487301,2,1.0,1.0,0.32999999999999985
+164,39,0.71,0.0,1.3674584298835168,0.0007110502946940461,0.03652582921201335,0.7111794996187185,2,1.0,1.0,0.32499999999999984
+164,40,0.69,0.0,1.3659184878865152,0.0007156329249820836,0.03654903938064756,0.7114938244151234,2,1.0,1.0,0.31999999999999984
+164,41,0.6372478806000953,0.0,1.3637693264438282,0.0007193531300354768,0.03644238485427563,0.7119332570535668,2,1.0,0.9574929353336511,0.2999999999999998
+164,42,0.72,0.0,1.361558839984234,0.0007226077843026208,0.03648536674602884,0.7123850469406507,2,1.0,1.0,0.2899999999999998
+164,43,0.71,0.0,1.3620329696491633,0.00071595862634738,0.036462352422319634,0.712290616770593,2,1.0,1.0,0.2849999999999998
+164,44,0.69,0.0,1.3597647814088478,0.0007198832377884857,0.03621409709965456,0.712753611770156,2,1.0,1.0,0.2799999999999998
+164,45,0.69,0.0,1.356987461167006,0.0007231135435584169,0.03641931224089349,0.7133205716207514,2,1.0,1.0,0.2749999999999998
+164,46,0.6244816620177025,0.0,1.3535076671962398,0.000725966691319404,0.03634639509812968,0.7140304760450229,2,1.0,0.914938873392342,0.2549999999999998
+164,47,0.7118404908753558,0.0,1.3516499144597705,0.0007317924870172974,0.03641382087252017,0.7144072842092833,2,1.0,0.9728016362511862,0.24499999999999977
+164,48,0.71,0.0,1.3525206603373634,0.0007236983206056968,0.03632338404177938,0.714232897305479,2,1.0,1.0,0.23999999999999977
+164,49,0.72,0.0,1.349004294562353,0.0007268953563349096,0.036359815926697826,0.7149487584749439,2,1.0,1.0,0.22999999999999976
+165,0,0.1703309654568516,0.0,1.3419280395332613,0.0007072501001793513,0.03562182677277605,0.716396664882259,1,0.14427349549120322,0.23278414011643495,0.05
+165,1,0.23910851939800984,0.0,1.341299624241456,0.0007054358776399089,0.0361906971785728,0.7165250612125994,1,0.20964656675468152,0.2857740701129044,0.05
+165,2,0.25964215093893117,0.0,1.381782289068648,0.0007019887758184856,0.03662753800708389,0.7082322016115106,1,0.27436522151993165,0.34538107802318363,0.05
+165,3,0.2735946908086029,0.0,1.3807683253314766,0.0007020868090205001,0.03661813965260387,0.7084416416737234,1,0.32082276141211996,0.371022414381203,0.1
+165,4,0.3182902738253742,0.0,1.3819871983699503,0.0007010465521351955,0.036699576381851715,0.7081902469140706,1,0.3780232152266415,0.41994049498683234,0.11
+165,5,0.3299870222918443,0.0,1.384022196204362,0.0006990421330020723,0.03669498261279371,0.7077703517836547,1,0.422688859852082,0.4734864044787188,0.12
+165,6,0.3604303339444238,0.0,1.3605833524256568,0.0006957139168027667,0.03615573996968705,0.7125958917134175,1,0.45422674611403685,0.5048365760150364,0.16999999999999998
+165,7,0.3618774685049684,0.0,1.3625174191925584,0.0007025890166459386,0.03608924850169161,0.7121968078472606,1,0.48354874537921066,0.5421180254074821,0.21999999999999997
+165,8,0.4501149823835924,0.0,1.3634195231602477,0.0007089861998394162,0.03646634471191754,0.7120092424344083,1,0.5525716748478302,0.5890496539561727,0.21999999999999997
+165,9,0.46570743305504014,0.0,1.3693593197324996,0.0007055101510771675,0.03619247771817043,0.7107911717897428,1,0.601381317417135,0.6507465731968098,0.21999999999999997
+165,10,0.41656269016687997,0.0,1.3001607747713602,0.0007845911331131787,0.03655768725037804,0.7247745464026027,1,0.6433732401709754,0.6379401870234619,0.27999999999999997
+165,11,0.5346398440158702,0.0,1.2940650517437462,0.0007842958056591601,0.035876100015981946,0.7259889492766343,1,0.708467618893429,0.6889205913439,0.27999999999999997
+165,12,0.5485315690542547,0.0,1.3086188281928435,0.0007690367847242815,0.03634334984680018,0.7230903896778496,1,0.7522198164788292,0.7508487776222149,0.27999999999999997
+165,13,0.4919485310572758,0.0,1.3202311429151272,0.0007555424952274109,0.036308118679153706,0.7207646669774773,1,0.7871373964724864,0.7215014743063521,0.33999999999999997
+165,14,0.6056198437671544,0.0,0.33164294049412957,3.8809952886691116e-05,0.007277405089934248,0.8741630001261458,1,0.8394701291387714,0.772684328561948,0.33999999999999997
+165,15,0.518585821880621,0.05,0.9712546461651571,0.0007788632289880452,0.03179672447212282,0.7724483020620135,1,0.8636103124651471,0.7210740417260649,0.39999999999999997
+165,16,0.6180626913391998,0.0,0.9967632128313569,0.0008555864793054343,0.032442083770664355,0.7810037960478498,1,0.9162283016747172,0.7912759525101627,0.41
+165,17,0.5490004015166718,0.05,1.0121212343436476,0.0008358699639082483,0.033294137071390326,0.7651647607930482,1,0.9301247099129928,0.7448558434904147,0.47
+165,18,0.6618875871960694,0.0,1.0329405040512925,0.0009007160905429893,0.03349000208382433,0.7747375332129702,1,0.9840483034634887,0.7915689366128279,0.47
+165,19,0.5796700285493988,0.05,1.0505547972310567,0.0008776468304798672,0.0342870719995597,0.7581731671744854,1,1.0,0.7655667618313291,0.53
+165,20,0.6610166604904059,0.0,1.0666186873826222,0.0009287454339199906,0.03469917245956352,0.7687957519884193,1,1.0,0.8367222016346862,0.54
+165,21,0.6601889431978091,0.05,1.1420021879488715,0.0009271026881303177,0.035254556969184746,0.7409944425777651,1,1.0,0.8672964773260304,0.5900000000000001
+165,22,0.7059438958070103,0.05,1.1415382243451104,0.0009216721824152675,0.035615039490956235,0.741085561286541,1,1.0,0.9198129860233677,0.5900000000000001
+165,23,0.7025122918903306,0.1,1.165068643125886,0.0009051012131860741,0.035886410710781656,0.7217424339948699,1,1.0,0.9750409729677687,0.5900000000000001
+165,24,0.71,0.1,1.195962196012715,0.0008809693968879496,0.035456565461839055,0.7155056018829332,1,1.0,1.0,0.5900000000000001
+165,25,0.6390624219586949,0.1,1.2210131551558765,0.0008606136617368835,0.03596897860972704,0.7103872622258127,2,1.0,0.9635414065289833,0.6500000000000001
+165,26,0.7048418825803884,0.05,1.2172697524518188,0.0006477278942236028,0.032695163471170026,0.7264002285983678,2,1.0,0.9828062752679615,0.6450000000000001
+165,27,0.6297997267764814,0.1,1.2078211175224502,0.0006442103109102284,0.033130930307911935,0.7131823442244153,2,1.0,0.9326657559216048,0.6250000000000001
+165,28,0.7108159736059123,0.05,1.2367557394119748,0.0006417350909706801,0.033035917175479844,0.7225128922866411,2,1.0,0.9693865786863743,0.6150000000000001
+165,29,0.6297431747352134,0.1,1.245372025293608,0.000656593831599493,0.03376518624501854,0.7054349678008546,2,1.0,0.932477249117378,0.5950000000000001
+165,30,0.767691278183698,0.0,1.2706847495651146,0.0006545616897041156,0.03398044173671173,0.7306663788586751,2,1.0,0.9923042606123267,0.5650000000000001
+165,31,0.72,0.0,1.2514609697421044,0.0006474458007252912,0.033798305355559444,0.7344354435883769,2,1.0,1.0,0.555
+165,32,0.71,0.0,1.2644518849544295,0.0006658172984724483,0.03400922457909966,0.7318867808961006,2,1.0,1.0,0.55
+165,33,0.69,0.0,1.2618378824203065,0.000661683785491046,0.034002950684185,0.7324010319779825,2,1.0,1.0,0.545
+165,34,0.72,0.0,1.258326724856704,0.0006575325670581764,0.033590870828282826,0.733090245662681,2,1.0,1.0,0.535
+165,35,0.71,0.0,1.269059111360507,0.0006729493675269374,0.034323807596714793,0.7309789413606831,2,1.0,1.0,0.53
+165,36,0.6395935101089885,0.0,1.265129995516992,0.0006670692216445361,0.03387319756257329,0.7317532038606708,2,1.0,0.9653117003632949,0.51
+165,37,0.77,0.0,1.2842131308949385,0.0006638652948762435,0.03442358137430396,0.7279921103005293,2,1.0,1.0,0.48
+165,38,0.6346815628686384,0.0,1.2777846171345635,0.0006630997250996755,0.034237222991992534,0.7292635169423428,2,0.9978595605329931,0.951435722273636,0.45999999999999996
+165,39,0.77,0.0,1.2951798103749164,0.0006613017544366542,0.03440734905218855,0.7258160917019445,2,1.0,1.0,0.42999999999999994
+165,40,0.72,0.0,1.2881315069886874,0.0006591339711875685,0.03439937475380053,0.7272173793778286,2,1.0,1.0,0.41999999999999993
+165,41,0.77,0.0,1.2978668720933064,0.0006732858039924232,0.0346498418275061,0.725276247380764,2,1.0,1.0,0.3899999999999999
+165,42,0.72,0.0,1.2904903421924494,0.0006713693432429485,0.034502945274776556,0.7267443416451803,2,1.0,1.0,0.3799999999999999
+165,43,0.6359361365886493,0.0,1.298384380607187,0.0006873209704046022,0.034990146096757636,0.7251675271017912,2,1.0,0.9531204552954979,0.3599999999999999
+165,44,0.6018206529845637,0.0,1.3146180215960852,0.0006827132971102389,0.03521158410946201,0.7219222212010634,2,1.0,0.9060688432818791,0.33999999999999986
+165,45,0.6909738421646787,0.0,1.3279631338568576,0.0006800376461012984,0.03545435115202414,0.7192363457405127,2,1.0,0.9365794738822623,0.33499999999999985
+165,46,0.7145604147315328,0.0,1.3258809182665612,0.0006760678002322043,0.035326475226335155,0.7196582286587137,2,1.0,0.9818680491051092,0.32499999999999984
+165,47,0.71,0.0,1.2477528321240188,0.000861397910287706,0.03613324695790372,0.7350747282002772,2,1.0,1.0,0.31999999999999984
+165,48,0.72,0.0,1.2402695584500174,0.0008645499994309714,0.03634771514348345,0.7365282307687142,2,1.0,1.0,0.30999999999999983
+165,49,0.71,0.0,1.263035255362999,0.0008424300466869614,0.036417230877905986,0.7320953996459022,2,1.0,1.0,0.3049999999999998
+166,0,0.19318321219664786,0.0,1.3398504117248806,0.0007072831010261801,0.03561848181859799,0.7168185784394214,1,0.17133416564216034,0.2440541807396392,0.01
+166,1,0.20890398016812395,0.0,1.339572811233789,0.0007100081871244363,0.036207231127199355,0.7168738188921814,1,0.21124918607795912,0.2832225501361275,0.060000000000000005
+166,2,0.2587741810285449,0.0,1.3817618665893754,0.00070019967315078,0.03658519326579051,0.7082371610725964,1,0.27851704306792,0.3376440531825763,0.07
+166,3,0.31754443595740195,0.0,1.3821327457797803,0.0007019609663651211,0.0366583826876873,0.7081597896747185,1,0.33992038531368574,0.39524100365870657,0.07
+166,4,0.34042554679956516,0.0,1.3808561366259147,0.0007020268074918853,0.03669126210445088,0.708423528523844,1,0.3982221195992739,0.4701593497993978,0.07
+166,5,0.27282332196368064,0.0,1.3793480817869086,0.000695437185412541,0.036522918094390996,0.7087376544197601,1,0.428501355794414,0.4094928247854525,0.13
+166,6,0.3461498130916407,0.0,1.3741586206314684,0.000702340203804983,0.03650763045009512,0.7098049022286977,1,0.4706923809880704,0.4380249324860535,0.18
+166,7,0.290306787465054,0.0,1.3746863266427798,0.000706492021302196,0.036404095326647574,0.709694481526738,1,0.4957396657821469,0.38932634813767536,0.24
+166,8,0.4158072580537986,0.0,1.366307058689636,0.0006874645093268529,0.036400174142209696,0.711425621835727,2,0.5736348570004977,0.45011686034541487,0.24
+166,9,0.4236882441782638,0.0,1.3773087642051145,0.0006941014511189519,0.03606200183997993,0.7091589996029684,2,0.6282192155255704,0.4793717291477141,0.235
+166,10,0.4610002594783996,0.0,1.1624151861194747,0.0005459590619584165,0.03062076444335521,0.7514747008126178,2,0.6701557491516865,0.5214858242510312,0.22499999999999998
+166,11,0.5532502920177762,0.05,1.1487211763138956,0.0005345898101020913,0.030409929729399255,0.7398539589084094,2,0.7472475781145589,0.5723787989256022,0.19499999999999998
+166,12,0.5241320962475369,0.1,1.1828926420959103,0.0005782863396940656,0.0317316324975004,0.7182810097300437,2,0.7975836928302619,0.6165926791898175,0.18999999999999997
+166,13,0.4550401522142159,0.05,1.2559809074170818,0.000676321494789144,0.03359771217622316,0.7186280501989303,2,0.8086504480825041,0.5733749846177981,0.16999999999999998
+166,14,0.6182880232362771,0.0,1.304510839716939,0.0007211981928303512,0.03554920916442022,0.7239313026587992,2,0.8967559369818073,0.6147448176421484,0.13999999999999999
+166,15,0.49501242041313087,0.05,1.2304198874759107,0.0006029012421257462,0.03265576608346464,0.7237968893112614,2,0.9214020286942897,0.5750723679004319,0.11999999999999998
+166,16,0.5788236370045543,0.0,1.224598067609894,0.0006876548222345787,0.034032227418441925,0.739626198101054,2,0.954102729617736,0.6162922721278226,0.11499999999999998
+166,17,0.6162144936195844,0.05,1.2105924408508242,0.0006002938536900146,0.0322807017854593,0.727744085905811,2,1.0,0.6540483120652811,0.10499999999999998
+166,18,0.5328151079926795,0.1,1.238032283802674,0.0006213982506332863,0.033057783476829236,0.7069724197392573,2,1.0,0.6093836933089317,0.08499999999999998
+166,19,0.49954691123972284,0.0,1.2623077861928547,0.0006251761830359324,0.033620183761334396,0.7323232387083102,2,1.0,0.5651563707990764,0.06499999999999997
+166,20,0.48893000250082586,0.0,1.228638857240199,0.0006675287053302026,0.033590634429073944,0.7388550392386034,2,1.0,0.529766675002753,0.04499999999999997
+166,21,0.4734420616152953,0.0,1.2508934824396438,0.0006610232628855774,0.03362742487767456,0.7345408166772278,2,1.0,0.4781402053843178,0.02499999999999997
+166,22,0.630664720457378,0.0,1.270811254052735,0.0006566128573732414,0.034135929692309504,0.730640675573019,2,1.0,0.53554906819126,0.0
+166,23,0.5814811869428914,0.0,1.261457176140631,0.0006522716322061267,0.03377219461320173,0.7324793286108401,2,1.0,0.5716039564763049,0.0
+166,24,0.661097342064164,0.0,1.259494603620348,0.000650362621462503,0.03390309318930888,0.7328644732569389,2,1.0,0.6369911402138804,0.0
+166,25,0.6103757584643651,0.05,1.2310400593644288,0.0006179637462148705,0.03293530133074256,0.7236668663199161,2,1.0,0.667919194881217,0.0
+166,26,0.6865242215495069,0.0,1.2369697222860654,0.0006243911531557426,0.032698776472697755,0.7372611300747045,2,1.0,0.7217474051650232,0.0
+166,27,0.6352274388945104,0.05,1.218885901691476,0.0006143564664201202,0.03243676474155998,0.726092187028752,2,1.0,0.7507581296483681,0.0
+166,28,0.7086264452511188,0.0,1.2243579882049727,0.0006210331023291356,0.03253813506594831,0.739698085915865,2,1.0,0.7954214841703964,0.0
+166,29,0.6688982743304039,0.05,1.2057456958331312,0.0006112619086940464,0.03251170666544263,0.7286989868720709,2,1.0,0.8296609144346798,0.0
+166,30,0.7339304474396595,0.0,1.2639906906477094,0.000625124726747559,0.03328598776961855,0.7319932370624413,2,1.0,0.8797681581321988,0.0
+166,31,0.7351102320716388,0.0,1.2614194126307126,0.000624863827180655,0.03358003411180576,0.7324974694101752,2,1.0,0.9503674402387963,0.0
+166,32,0.7191450513858233,0.0,1.2621496310881435,0.0006282427532971508,0.03354926195532677,0.732353037900087,2,1.0,0.9971501712860776,0.0
+166,33,0.71,0.0,1.2792704218723392,0.0006306925086601979,0.03409764908836256,0.728982867734751,2,1.0,1.0,0.0
+166,34,0.72,0.0,1.2951606078018925,0.0006463110531438456,0.03406018863767968,0.7258258795532283,2,1.0,1.0,0.0
+166,35,0.77,0.0,1.3086641971686437,0.0006481573976757365,0.03500975970731455,0.723129711217413,2,1.0,1.0,0.0
+166,36,0.6357397550266518,0.0,1.307917322631265,0.0006494371501841433,0.034293338590791214,0.7232787081091127,2,1.0,0.9524658500888395,0.0
+166,37,0.7171569397265962,0.0,1.300121624173074,0.0006440794919741738,0.034578403076307225,0.7248384089401881,2,1.0,0.9905231324219878,0.0
+166,38,0.77,0.0,1.3115305108858983,0.0006484164776374286,0.03444122973394478,0.7225553668278515,2,1.0,1.0,0.0
+166,39,0.75,0.0,1.309939021162966,0.0006507053305672856,0.034513118517862755,0.7228733812837501,2,1.0,1.0,0.0
+166,40,0.71,0.0,1.3067473428243166,0.0006522025822439739,0.034621512800289043,0.7235117080219157,2,1.0,1.0,0.0
+166,41,0.77,0.0,1.3210379348581893,0.0006592471329427395,0.03470684685424864,0.7206410342611346,2,1.0,1.0,0.0
+166,42,0.6422297844451665,0.0,1.3168305008900332,0.0006583665570329373,0.03505274076590712,0.72148763154005,2,1.0,0.9740992814838888,0.0
+166,43,0.7085765225630496,0.0,1.311300136764252,0.0006547421946958086,0.034506847877800936,0.7225990113859786,2,1.0,0.9952550752101652,0.0
+166,44,0.72,0.0,1.3236806836346613,0.0006629881516501872,0.03520766135820289,0.720107184473133,2,1.0,1.0,0.0
+166,45,0.77,0.0,1.3341446193935087,0.0006668616398738927,0.03523677825063224,0.7179917306479237,2,1.0,1.0,0.0
+166,46,0.6438178997489136,0.0,1.330086848903749,0.0006655134688059539,0.03520973212136934,0.7188131641506729,2,1.0,0.9793929991630453,0.0
+166,47,0.71,0.0,1.3252040376090446,0.0006622685168090391,0.03486180025941345,0.7198003355310563,2,1.0,1.0,0.0
+166,48,0.69,0.0,1.3358635264928977,0.0006695749880317788,0.03502006741337695,0.717642457019345,2,1.0,1.0,0.0
+166,49,0.69,0.0,1.3437153078825685,0.000677551563278938,0.03558425402366456,0.7160454777607195,2,1.0,1.0,0.0
+167,0,0.21185011515664254,0.0,1.338380973056862,0.0007063943856048554,0.03551801054486522,0.7171171248736371,1,0.16085399479321033,0.25183738993006316,0.0
+167,1,0.22706409458765828,0.0,1.337548647353899,0.0007075070089612082,0.0361540740148118,0.7172854888263608,1,0.2187707948699896,0.3016477212772064,0.0
+167,2,0.2690261771518596,0.0,1.3819956214344056,0.0007019688721815679,0.036625289592327324,0.7081881250183529,1,0.3024927107806112,0.3438457612621525,0.0
+167,3,0.30854113485875845,0.0,1.3809250539636184,0.0007020465200858778,0.03663063372945004,0.7084092846355144,1,0.3664573843019767,0.400936834510222,0.01
+167,4,0.24113600701857107,0.0,1.379547661099986,0.0006960435468881948,0.03652971929089448,0.7086962034653641,1,0.3950374435962221,0.34290967253297777,0.06999999999999999
+167,5,0.3175955539500748,0.0,1.3808466409398221,0.0007015560552744566,0.036676404606663396,0.7084256844213966,1,0.4516364022047073,0.3650760439280909,0.12
+167,6,0.38151950051633454,0.0,1.3648764069796604,0.0006853563499101086,0.0361866758078959,0.7117201097146906,1,0.49219567496195443,0.43083671426550163,0.12
+167,7,0.3005308639206212,0.0,1.3778610528499264,0.0007059892161538704,0.03647215993463722,0.7090401706050142,1,0.5223293537893204,0.3923853003145302,0.18
+167,8,0.42054742590776023,0.0,1.3666356418748868,0.000689204756317141,0.03641298794253022,0.7113574446400218,1,0.5863356171185554,0.45109986638755284,0.18
+167,9,0.43718403976576137,0.0,1.3801161207862147,0.0007053444279259041,0.03631237864341679,0.7085749921924287,1,0.6366744399852812,0.5144932859030433,0.19
+167,10,0.37153168009057214,0.0,1.3538474083880199,0.0006767219262772486,0.03613342808490723,0.7139812120942323,1,0.6566515372695787,0.4723454734873987,0.25
+167,11,0.3626837006149771,0.0,1.3605348810210813,0.0006825456619277394,0.03571249241633959,0.7126112123540452,2,0.701944050027694,0.4566776103509475,0.31
+167,12,0.47664144884178455,0.0,1.1869739587585801,0.0005705720453695398,0.03146361568928084,0.746850516867707,2,0.7429608697562641,0.4886838147569739,0.3
+167,13,0.48625511803610977,0.05,1.173011530844343,0.0005590145832029936,0.03102991012522205,0.735142115942685,2,0.7978365246020371,0.5233744480846559,0.29
+167,14,0.5161513566517302,0.05,1.1691153737124726,0.0005556079921663696,0.031369364325902586,0.7359013584491668,2,0.8392592235960737,0.5747020946436812,0.27999999999999997
+167,15,0.4591961763223841,0.05,1.183127305475564,0.0006022091316904399,0.03194899585138277,0.7331509116116803,2,0.870259463400499,0.5153512137740314,0.25999999999999995
+167,16,0.43304010976321183,0.0,1.2063658241599051,0.0005992019722382269,0.03231083644131699,0.7431557492464341,2,0.9013984722799849,0.45850214821739044,0.23999999999999996
+167,17,0.5411483956874604,0.0,1.2188825409870332,0.0005934997101048174,0.03220729728682742,0.740761545291637,2,0.9581100559535471,0.48603292034572976,0.23499999999999996
+167,18,0.5485413615693853,0.05,1.222464904866055,0.0006010306147855697,0.03259547697867523,0.7253851199724946,2,1.0,0.5284712052312843,0.22999999999999995
+167,19,0.4940977426309487,0.05,1.2307389861080895,0.0006112548189092125,0.03245740206612615,0.7237297516686936,2,1.0,0.48032580876982905,0.20999999999999996
+167,20,0.6259212542034231,0.0,1.2488020311970296,0.000613555361393271,0.03312480218020087,0.7349669229349416,2,1.0,0.5197375140114108,0.17999999999999997
+167,21,0.4957860065196874,0.05,1.2308051879382629,0.0006009555495638401,0.032403137084417444,0.7237206334256292,2,1.0,0.48595335506562465,0.15999999999999998
+167,22,0.4614521365342351,0.0,1.2537051322073909,0.0006094602881804548,0.032885184933573,0.734012344584606,2,1.0,0.4381737884474505,0.13999999999999999
+167,23,0.5488921759370551,0.0,1.2606218490005061,0.0006114998039759383,0.03343067079343217,0.7326589542253252,2,1.0,0.4629739197901837,0.13499999999999998
+167,24,0.4751013245786252,0.0,1.2612992316044345,0.0006186467441774537,0.033181595824806884,0.7325234538830995,2,1.0,0.417004415262084,0.11499999999999998
+167,25,0.5433815619126274,0.0,1.2719731869875797,0.0006262653892911212,0.0340083314896383,0.730423891523058,2,1.0,0.44460520637542467,0.10999999999999997
+167,26,0.6195581061725232,0.0,1.2712618966176363,0.0006324055701012387,0.033209047707397014,0.7305615077988005,2,1.0,0.4985270205750774,0.07999999999999997
+167,27,0.5797687150710576,0.0,1.2622976960642511,0.00062381803122103,0.03369586154473724,0.7323257490934088,2,1.0,0.5325623835701923,0.06999999999999998
+167,28,0.5757553172334776,0.0,1.2822306275485977,0.0006311824617206037,0.033437273348797175,0.7283974391095798,2,1.0,0.5858510574449254,0.05999999999999998
+167,29,0.5101959575178258,0.0,1.2992234268294767,0.0006410031068835398,0.03446538954623598,0.7250187428011599,2,1.0,0.5339865250594193,0.03999999999999998
+167,30,0.6481950181717563,0.0,1.308468682500727,0.0006457485439834618,0.03446639624313129,0.7231698185967693,2,1.0,0.5939833939058545,0.009999999999999981
+167,31,0.5150658066508136,0.0,1.2993110539323152,0.0006381840639364557,0.03415530292382457,0.7250023966308898,2,1.0,0.550219355502712,0.0
+167,32,0.6457308838877734,0.0,1.3069201858577422,0.0006437482631640943,0.03480787025412147,0.7234805134259299,2,1.0,0.585769612959245,0.0
+167,33,0.6132190730985809,0.0,1.2975708290721961,0.0006353219689324525,0.03359071011788148,0.7253503565578548,2,1.0,0.6440635769952698,0.0
+167,34,0.5307102631285282,0.0,1.2443075851352978,0.000652709714169649,0.03352227774131761,0.7358262516621406,2,1.0,0.6023675437617607,0.0
+167,35,0.6654047658256895,0.0,1.2646599874530895,0.0006486147537912663,0.03369278123247357,0.7318526951375744,2,1.0,0.6513492194189653,0.0
+167,36,0.625318060433288,0.0,1.2542895904670417,0.0006428191438162562,0.03365279879983134,0.7338851907738415,2,1.0,0.6843935347776267,0.0
+167,37,0.5425042636494597,0.0,1.2675067236757072,0.0006645229808804332,0.03394941957024336,0.7312874186272748,2,1.0,0.6416808788315325,0.0
+167,38,0.6779805404103614,0.0,1.28591858874089,0.0006601601583007862,0.03431600406118483,0.7276557334587953,2,1.0,0.693268468034538,0.0
+167,39,0.6725983376420859,0.0,1.2753713692245645,0.0006543239070471664,0.034090703062007524,0.7297431821754538,2,1.0,0.7419944588069529,0.0
+167,40,0.6425395410479622,0.0,1.2641196636023742,0.0006475206432613591,0.033791691126650945,0.7319591466620093,2,1.0,0.7751318034932074,0.0
+167,41,0.6337983229752449,0.0,1.2655246806093439,0.0006472422430448498,0.03393560354748669,0.7316835089047588,2,1.0,0.8126610765841498,0.0
+167,42,0.5798180692905096,0.0,1.2248864613668768,0.0006564570001031146,0.03332970552000496,0.7395826731891443,2,1.0,0.7660602309683655,0.0
+167,43,0.6460575381451984,0.0,1.257608305983505,0.0006428870765738285,0.03349849531626274,0.7332365237545848,2,1.0,0.7868584604839948,0.0
+167,44,0.5761532656240163,0.0,1.2528369272842017,0.000640328032533782,0.033319350109333776,0.734169768525384,2,1.0,0.7538442187467211,0.0
+167,45,0.6627561035009931,0.0,1.2712074698988627,0.0006417042300964959,0.03372738071790435,0.7305685604492381,2,1.0,0.8091870116699771,0.0
+167,46,0.661942987427663,0.05,1.2389872604666299,0.000678044796681671,0.03376496376132237,0.7220507029830464,2,1.0,0.8731432914255435,0.0
+167,47,0.6782360819208679,0.0,1.251001388981543,0.0006930452900418835,0.03440099933394412,0.7345072865742212,2,1.0,0.9274536064028932,0.0
+167,48,0.6909342156050373,0.0,1.2514349557682944,0.0007073198230421338,0.034200652204445535,0.7344171612913346,2,1.0,0.9697807186834579,0.0
+167,49,0.6989894721851098,0.0,1.2546633415544273,0.000720878709366235,0.034742732047525135,0.733781695505958,2,1.0,0.9966315739503661,0.0
+168,0,0.1911934433930887,0.0,1.336126554051473,0.0007091490371229302,0.03558687914777596,0.7175731162002087,1,0.1573350069109675,0.2537539699141669,0.01
+168,1,0.138037972064405,0.0,1.3358771082894776,0.0007121908448336791,0.03617447750614718,0.7176224338331728,1,0.1999256558733762,0.2268799750290777,0.06999999999999999
+168,2,0.264915306155328,0.0,1.345246055231716,0.0007085429251275587,0.035730589646292256,0.7157215255473182,1,0.27907507196028264,0.2907967698974302,0.06999999999999999
+168,3,0.28636326643318016,0.0,1.38121891259089,0.0007011734610731302,0.0366278506060773,0.7083489405752608,1,0.33077771428501224,0.3686368881114197,0.07999999999999999
+168,4,0.22651955087932255,0.0,1.3814654434924551,0.000703172848825522,0.03672426618246984,0.7082971807676871,1,0.3681001161084879,0.32561503413783927,0.13999999999999999
+168,5,0.3485156782364551,0.0,1.3822049678364645,0.0007020558996191382,0.03671546476159606,0.708144824113043,1,0.4422336281047591,0.379113027999298,0.13999999999999999
+168,6,0.2659395889410884,0.0,1.3648592036307683,0.0006925182517901906,0.036191775951332016,0.7117207005238371,1,0.46435261177889503,0.34472058272825046,0.19999999999999998
+168,7,0.38364011094120537,0.0,1.370211367889954,0.0006929706415448092,0.03618466032591799,0.7106211445280591,1,0.5244809231128215,0.4002392928390595,0.19999999999999998
+168,8,0.40480388189764427,0.0,1.3796999744696254,0.0007062122300681743,0.0365374481110225,0.7086605591454754,1,0.5795922258258935,0.4731553428619387,0.19999999999999998
+168,9,0.4357119035352538,0.0,1.381492738362055,0.00070422959717499,0.03627067344584461,0.708291104600723,1,0.6223510882401533,0.5262967421706674,0.21
+168,10,0.49719967552449323,0.0,1.3662952470474563,0.000689825516936376,0.03642431501396323,0.7114270773283342,1,0.6940369034273811,0.5809558644163662,0.21
+168,11,0.519607420072973,0.0,1.3666408985422926,0.0006883477551798826,0.0359240875195299,0.7113567172310228,1,0.75795279586345,0.647746471735885,0.21
+168,12,0.45688564409072424,0.0,1.185870721689267,0.0006800729583542785,0.03350599185872678,0.7470176581534056,1,0.7792882219088118,0.6137825547421338,0.27
+168,13,0.5303590677769646,0.0,1.173066881881113,0.0006691439812313733,0.03299412784905054,0.749433799837291,1,0.8277238843023411,0.6355190275704842,0.32
+168,14,0.5729595373938445,0.05,1.0743619994758193,0.0008521134367555108,0.03376465750553228,0.7537908888544054,1,0.8758114391477605,0.6880851123070946,0.33
+168,15,0.5867946485888799,0.1,1.115122903164447,0.0008315749486957952,0.034641486611433375,0.7316900095004385,1,0.9181988694569208,0.7180834809298589,0.38
+168,16,0.6387806924980391,0.1,1.124225399561643,0.0008902809501669065,0.0344309139471322,0.7298760975272637,1,0.9708546085012437,0.7966052650753462,0.39
+168,17,0.5751577669872489,0.15000000000000002,1.1518722297729236,0.0008675961933169646,0.03535537098649773,0.7091774681275554,1,0.9909324624719174,0.7611046837402592,0.45
+168,18,0.548359658931895,0.10000000000000002,1.1613285309233687,0.0008997384179744319,0.03600479525047499,0.7224950889671631,1,0.9948450284681416,0.7338796632268181,0.51
+168,19,0.6304086879534507,0.10000000000000002,1.1516042869925713,0.0009343351558447718,0.03565825829037628,0.7244267227954715,1,1.0,0.7680289598448358,0.56
+168,20,0.6810416317967569,0.15000000000000002,1.1418459870435456,0.0009284335037770256,0.03609723347509281,0.7112159935582795,1,1.0,0.836805439322523,0.56
+168,21,0.6770896496183962,0.2,1.1664978861810043,0.0009134658709443817,0.03556325662156719,0.69033270473183,1,1.0,0.8902988320613208,0.56
+168,22,0.6989138933313229,0.2,1.1990924504121288,0.0008858667170285836,0.03571983076014325,0.6833339237752108,1,1.0,0.9630463111044099,0.56
+168,23,0.71,0.2,1.223726051995768,0.0008634452214273839,0.03634393723336394,0.6779893712295415,1,1.0,1.0,0.56
+168,24,0.71,0.2,1.2465156117912806,0.0008415072414724097,0.03567416506812256,0.6730035684364792,1,1.0,1.0,0.5700000000000001
+168,25,0.73,0.15000000000000002,1.2605002313524443,0.000821750328166621,0.03635416063153208,0.6862953783603304,1,1.0,1.0,0.5700000000000001
+168,26,0.71,0.10000000000000002,1.276124431350699,0.0008062663517818324,0.03577329263534745,0.6989416233549438,1,1.0,1.0,0.5700000000000001
+168,27,0.6369088868371637,0.05000000000000002,1.2895797564631797,0.0007918509439867573,0.036485047141719434,0.7117372745898114,2,1.0,0.9563629561238793,0.6300000000000001
+168,28,0.72,0.0,1.2742805020530419,0.0006383658929886515,0.033852498426591104,0.7299645581837961,2,1.0,1.0,0.6200000000000001
+168,29,0.7,0.0,1.2870726648030837,0.0006425112335829335,0.034073156163499554,0.7274339655124716,2,1.0,1.0,0.6100000000000001
+168,30,0.77,0.0,1.3017636050364516,0.0006508046052922673,0.034257572409346175,0.7245081141717868,2,1.0,1.0,0.5800000000000001
+168,31,0.72,0.0,1.2942446917112884,0.0006464962918830944,0.03429431159262548,0.7260080379020198,2,1.0,1.0,0.5700000000000001
+168,32,0.6317798136579444,0.0,1.307067826661329,0.0006579194609203367,0.03480545022766406,0.723445305465481,2,1.0,0.9392660455264816,0.55
+168,33,0.5931093051488119,0.0,1.3191362266103481,0.0006595098872238636,0.034610092146573936,0.7210236150820617,2,0.9984650069431246,0.878821842395728,0.53
+168,34,0.7504603703235566,0.0,1.328381099155554,0.000662312453941512,0.03542486425895121,0.7191590959515055,2,1.0,0.9348679010785219,0.5
+168,35,0.702401850598759,0.0,1.3214729585207077,0.0006576830270977781,0.034713336027293276,0.7205540778489675,2,1.0,0.9746728353291967,0.495
+168,36,0.6313866548392129,0.0,1.3193582762870029,0.0006576808944852278,0.035140062941748526,0.7209796837871444,2,1.0,0.9379555161307095,0.475
+168,37,0.7010053601499973,0.0,1.327674238237378,0.0006619485858695528,0.03483446994016501,0.719301984965696,2,1.0,0.9700178671666577,0.47
+168,38,0.77,0.0,1.3249546226022553,0.0006623849029331549,0.03506033837721191,0.7198505897981515,2,1.0,1.0,0.43999999999999995
+168,39,0.71,0.0,1.318708962131674,0.0006575012580414886,0.03482508081477885,0.7211103585130735,2,1.0,1.0,0.43499999999999994
+168,40,0.72,0.0,1.3155337194624166,0.0006578583071946433,0.03464084410897483,0.7217483402699237,2,1.0,1.0,0.42499999999999993
+168,41,0.71,0.0,1.3279806778522467,0.000663650002417368,0.03523672061253933,0.7192394214676566,2,1.0,1.0,0.41999999999999993
+168,42,0.69,0.0,1.3244240036731616,0.0006625712820399741,0.034891099034169586,0.7199575098063085,2,1.0,1.0,0.4149999999999999
+168,43,0.6366457621576651,0.0,1.3205832469197365,0.0006612261847080412,0.035119666628332005,0.7207317650553335,2,1.0,0.9554858738588837,0.3949999999999999
+168,44,0.77,0.0,1.3287703643771804,0.0006671462449987287,0.03515213684512432,0.7190785167321598,2,1.0,1.0,0.3649999999999999
+168,45,0.6344361435459644,0.0,1.3240541891928088,0.0006634053543243771,0.03518963747483766,0.720031728978835,2,1.0,0.9481204784865485,0.34499999999999986
+168,46,0.72,0.0,1.330882029513443,0.0006695637252219223,0.03514644353506423,0.7186507757941869,2,1.0,1.0,0.33499999999999985
+168,47,0.633369928851367,0.0,1.342055015360693,0.0006728010604935052,0.035421006245694706,0.7163848649336573,2,1.0,0.9445664295045568,0.31499999999999984
+168,48,0.702965268369919,0.0,1.136614672689848,0.0006135094580495336,0.031500302839895106,0.7562369872929908,2,1.0,0.9765508945663969,0.30999999999999983
+168,49,0.69,0.05,1.1620402532118026,0.000615087154775259,0.030889671636449356,0.7372510721078884,2,1.0,1.0,0.3049999999999998
+169,0,0.09186691793470418,0.0,1.345345879499512,0.0007096202732407073,0.03582536600976298,0.7157007760201466,1,0.11706998031243022,0.16964141608451203,0.06
+169,1,-0.011317646057942055,0.0,1.3197071729393595,0.0007587287687109644,0.03601772409570304,0.7208688282644787,1,0.14377528274674092,0.12787001660232875,0.12
+169,2,0.1560704286087326,0.0,1.3286310077242427,0.0007507449843556561,0.03646471742582076,0.7190728927228853,1,0.16882457437943493,0.1566060919197679,0.16999999999999998
+169,3,0.20074525204554286,0.0,1.3324763414184777,0.0007434862226047258,0.03608340004010826,0.7182983917457064,1,0.20617547062524366,0.2286127910890253,0.18
+169,4,0.13413362495461684,0.0,1.3823404909377006,0.0007020346872193299,0.03672736486075138,0.708116822755458,1,0.22375180687315882,0.18606830849670422,0.24
+169,5,0.23297605195381915,0.0,1.3328544353145064,0.0007373831150445668,0.03620658979679835,0.7182243499926652,1,0.2811096451206716,0.24862558720528027,0.25
+169,6,0.244775460474408,0.0,1.3804956877911276,0.000704381878995975,0.03663035297925258,0.7084970043287877,1,0.3068237013358361,0.2912905500228846,0.3
+169,7,0.24664451485535357,0.0,1.381152223455883,0.000702928608208132,0.036610664460911026,0.7083619925655809,1,0.343584717951781,0.32129954524076737,0.35
+169,8,0.21122228417021888,0.0,1.3810050839414552,0.0006976559415260459,0.03641334372203757,0.7083945668637089,1,0.3648224821877909,0.27844805134830697,0.41
+169,9,0.29134475925726155,0.0,1.380521535366178,0.0006969653461653303,0.036436965701278426,0.7084947295079629,1,0.4268902219929921,0.30644393853238094,0.45999999999999996
+169,10,0.3433977765540609,0.0,1.3565125740967692,0.0007124513166360854,0.03624437467542226,0.7134220333237355,1,0.47802281779056516,0.38696596775787706,0.47
+169,11,0.27977968755313576,0.0,1.353815094023198,0.0007130484353439742,0.036295712545968375,0.7139729743844091,1,0.5106526919798697,0.33683748453393786,0.53
+169,12,0.39317950304467914,0.0,1.361193251678983,0.0007091656594746553,0.03619662755161607,0.7124654549561835,1,0.5674366343598776,0.3819222700624066,0.53
+169,13,0.4081067724406728,0.0,1.3612097787081692,0.0007152405661713089,0.03647872307316339,0.7124595802274291,1,0.6324380004470521,0.422511574280682,0.54
+169,14,0.4200130025869765,0.0,1.2847729662216332,0.0006367065589296628,0.03388161880930187,0.7278919963219087,1,0.6653956661718538,0.4570817314227591,0.5900000000000001
+169,15,0.42480339198643824,0.0,1.278925629394028,0.0006318181358755889,0.03390911228664882,0.7290505372156854,2,0.7010845281077239,0.4980793571624496,0.6400000000000001
+169,16,0.5528375150862923,0.0,1.1680894175510617,0.0005992651149023433,0.03178200747751353,0.7503934989575467,2,0.7799148854123735,0.5328910173065384,0.6100000000000001
+169,17,0.5214137007508475,0.05,1.1526051429518236,0.0005867074084283726,0.03131401402988161,0.7390856154204491,2,0.8363119373124701,0.5623484089716099,0.6050000000000001
+169,18,0.45125077734376057,0.0,1.1368592290337067,0.0008230744203163958,0.033936772603312695,0.7561146208312137,2,0.8633369090969022,0.49694286386614944,0.5850000000000001
+169,19,0.6143812524956536,0.0,1.1487591922112435,0.0008174823815926744,0.03465620466656568,0.7539155970582886,2,0.9445605432676056,0.5459502078399722,0.555
+169,20,0.4835469736944945,0.05,1.1500018621187535,0.0008310572983129694,0.03412049826221113,0.7394931809433494,2,0.9583879037359668,0.49370402462302054,0.535
+169,21,0.5653031754494513,0.0,1.1715490172264418,0.0008196315596198721,0.034208006360371426,0.7496622413617322,2,1.0,0.5176772514981711,0.53
+169,22,0.6360088408622331,0.05,1.1676903659856086,0.0008079496282864695,0.03450604330649537,0.7360801851753168,2,1.0,0.5533628028741104,0.5
+169,23,0.58287475920151,0.1,1.171847924158307,0.0008172669307382079,0.03372856707455206,0.7204142885900466,2,1.0,0.5762491973383668,0.495
+169,24,0.5073966236379094,0.05,1.1753638547517962,0.0008021097209281857,0.03459309353673661,0.7345890652324535,2,1.0,0.5246554121263647,0.475
+169,25,0.5947027140000859,0.0,1.1907971644935857,0.0007941547952301083,0.033973573510890816,0.7460422891293119,2,1.0,0.5823423800002864,0.46499999999999997
+169,26,0.5946690827029388,0.05,1.1843852890156392,0.0008005453744457122,0.0349986639540448,0.7328270687676307,2,1.0,0.6488969423431297,0.45499999999999996
+169,27,0.614547709724475,0.05,1.222236032122538,0.0008625929858580754,0.035991020755955457,0.7253265006317424,2,1.0,0.6818256990815835,0.44999999999999996
+169,28,0.5416054581484486,0.05,1.2372182632601851,0.0008422908018521635,0.03614842957953917,0.7223397104980324,2,1.0,0.6386848604948286,0.42999999999999994
+169,29,0.6238756948396944,0.0,1.2575094587552684,0.0008233178856155642,0.03573095286891061,0.7331852704183698,2,1.0,0.6795856494656483,0.41999999999999993
+169,30,0.616200285865508,0.05,1.2495764951979618,0.0008470474683563772,0.03623802327186113,0.7198523649115124,2,1.0,0.7206676195516935,0.4099999999999999
+169,31,0.5499344980490951,0.0,1.2522089737255173,0.0008568069576780732,0.036031846603906036,0.7342078230313501,2,1.0,0.6664483268303171,0.3899999999999999
+169,32,0.6241827876773284,0.0,1.265180732897044,0.0008430542439224354,0.03663875633173579,0.7316741488610344,2,1.0,0.7139426255910947,0.3849999999999999
+169,33,0.6462701673888137,0.0,1.2779434222416488,0.000824530114273137,0.036065159711187615,0.7291684071767698,2,1.0,0.7542338912960459,0.3749999999999999
+169,34,0.7155918973014428,0.0,1.2743307677762874,0.0008368686005090488,0.036658742057514154,0.7298763846832864,2,1.0,0.818639657671476,0.34499999999999986
+169,35,0.7123405900673703,0.0,1.2816295847624102,0.0006604215340337701,0.03437312999236711,0.7285047638713812,2,1.0,0.874468633557901,0.31499999999999984
+169,36,0.6976218954664537,0.0,1.0477980882663425,0.0006260327184344188,0.029585682795643043,0.7722306615342598,2,1.0,0.9254063182215122,0.3049999999999998
+169,37,0.6109667146270769,0.0,1.074394903258006,0.0006322422755879458,0.030605412768402285,0.7675164802573108,2,1.0,0.869889048756923,0.2849999999999998
+169,38,0.5782688521218772,0.0,1.0695047141471588,0.000628765234870156,0.0298353911881852,0.7683891566655118,2,1.0,0.8275628404062574,0.2649999999999998
+169,39,0.7317713692103814,0.0,1.0646198816437449,0.0006249946855550737,0.030409095975214323,0.7692586955021461,2,1.0,0.8725712307012715,0.2349999999999998
+169,40,0.6801246533065614,0.05,1.0588072728307214,0.0006294106012018389,0.029571911833811398,0.7567482842156011,2,1.0,0.9004155110218713,0.2299999999999998
+169,41,0.6726058731601532,0.0,1.0934612796638834,0.0006238018828090454,0.030219666196939315,0.7641000779280975,2,1.0,0.9420195772005105,0.22499999999999978
+169,42,0.6170283349518253,0.0,1.110594553839484,0.0006190020120733962,0.030402673443152776,0.7609995700752812,2,1.0,0.8900944498394179,0.2049999999999998
+169,43,0.7541153419575958,0.0,1.1051267912613765,0.000616494761777564,0.030710608916359065,0.761993532276793,2,1.0,0.9470511398586526,0.1749999999999998
+169,44,0.72,0.05,1.0983783829564078,0.0006191180573323961,0.030548709681499735,0.7493940912194414,2,1.0,1.0,0.16499999999999979
+169,45,0.71,0.0,1.1319979853809077,0.0006266559242520009,0.03082746874889856,0.7570821969124177,2,1.0,1.0,0.15999999999999978
+169,46,0.69,0.0,1.1498585049175196,0.000621991399265161,0.031774468628110106,0.7537841590387248,2,1.0,1.0,0.15499999999999978
+169,47,0.69,0.0,1.1754521164315763,0.0006201545101854212,0.031194470134650078,0.7490040476273424,2,1.0,1.0,0.14999999999999977
+169,48,0.6333610085153512,0.0,1.1994403698793428,0.0006210762690077251,0.03266740195242791,0.744467097269036,2,1.0,0.9445366950511705,0.12999999999999978
+169,49,0.7178816610790815,0.0,1.1937250464134523,0.0006193582177212273,0.031667868302607136,0.7455534885013965,2,1.0,0.992938870263605,0.11999999999999979
+170,0,0.1664828712828298,0.0,1.3455805244253431,0.0007094215976360336,0.03583307665252611,0.7156531105141543,1,0.1485833359342239,0.21492901235283815,0.05
+170,1,0.10927292418241755,0.0,1.3449263930264352,0.0007071116336230037,0.036233793030289466,0.7157871432369448,0,0.17081020804855646,0.16496450455140932,0.11
+170,2,0.16411607586074495,0.0,1.3862724314691444,0.0007001728945569554,0.036651995833979524,0.7073042465961396,0,0.2502372565366576,0.15511012024304924,0.16999999999999998
+170,3,0.18007148106219115,0.0,1.3861880132915338,0.0007001106029900028,0.03673715170421703,0.7073217487501456,0,0.35492770695993603,0.11948927875404514,0.25
+170,4,0.2070679270739226,0.0,1.3862184279868957,0.0007001232325625982,0.03678269123020225,0.7073154471012355,0,0.37799998031011467,0.14922644655127493,0.26
+170,5,0.2330547927612805,0.0,1.386096721791517,0.0007000478681039005,0.036774232226376935,0.7073406733216008,0,0.4539985005622662,0.14718439188162452,0.32
+170,6,0.24367505062469505,0.0,1.3862943611198844,0.0007001722195526527,0.03672626550780782,0.7072997068701548,0,0.494261919809504,0.16894459563789552,0.32
+170,7,0.26264515854550397,0.0,1.3862386654413619,0.0007001719114190489,0.03662886733447089,0.7073112373644611,0,0.5070208453444138,0.1839595422498639,0.33
+170,8,0.2844322332595454,0.0,1.3862052650381704,0.0007002928696479261,0.03646929697915543,0.7073181018552002,0,0.6125184067815687,0.16683596961998806,0.41000000000000003
+170,9,0.32353253332054654,0.0,1.3854381055494644,0.0007012056017975555,0.036413197048609416,0.707476515553366,0,0.6913287236670486,0.17189160012359858,0.47000000000000003
+170,10,0.3432780910135647,0.0,1.3858354820382612,0.0007007218442116544,0.03653309086333971,0.7073944705838697,0,0.7152423541601666,0.2098108901916882,0.48000000000000004
+170,11,0.36730743446214775,0.0,1.381423408972625,0.0006981149508095116,0.036564316386612165,0.7083079555465377,0,0.7710317335825418,0.22482109236086023,0.54
+170,12,0.37629487563074,0.0,1.381379796365117,0.0006973166773622777,0.036565731477043936,0.7083172960223074,2,0.8582523781441572,0.21968847760094984,0.6000000000000001
+170,13,0.43482857340736375,0.0,1.103613235664326,0.0005819455321954717,0.029640906132627785,0.7622804424237162,2,0.9157113918927888,0.24776528748295906,0.5950000000000001
+170,14,0.4593625491229212,0.05,1.0960622336163384,0.000571075223370256,0.029694787282597872,0.7498468426015469,2,0.9516317734933651,0.2876380946674779,0.5900000000000001
+170,15,0.570913468783418,0.05,1.09590033196812,0.0005653649998663157,0.02970472694737537,0.7498793523552336,2,1.0,0.3363782292780601,0.56
+170,16,0.5665289701021664,0.1,1.1019386789787602,0.0005869709389528416,0.030025880637015966,0.7343658553853937,2,1.0,0.38842990034055497,0.53
+170,17,0.5830608692802645,0.1,1.1123260331944946,0.0006097027132890406,0.03043615609663248,0.7323257282178746,2,1.0,0.443536230934215,0.5
+170,18,0.46947216041379286,0.1,1.1459161735270786,0.0008011591203536984,0.034075255698509374,0.725613838607353,2,1.0,0.398240534712643,0.48
+170,19,0.5518581148284389,0.05,1.0457208171388692,0.0006568378483204982,0.02991644664657257,0.7591391123492874,2,1.0,0.4395270494281299,0.47
+170,20,0.6179279263017475,0.1,1.1195802726462427,0.0008122497750817916,0.03385177560149725,0.7308216401107381,2,1.0,0.49309308767249194,0.43999999999999995
+170,21,0.6136770547848374,0.15000000000000002,1.1302892055200007,0.0008386374835056275,0.03406651976928689,0.713620513364267,2,1.0,0.5455901826161247,0.4099999999999999
+170,22,0.4951321569000242,0.15000000000000002,1.1381149909995636,0.0008598584587523593,0.03475905122048546,0.71200981404604,2,1.0,0.483773856333414,0.3899999999999999
+170,23,0.5629336347520348,0.10000000000000002,1.1577157321496285,0.0008486160046708536,0.03493756187547732,0.7232393240837605,2,1.0,0.509778782506783,0.3849999999999999
+170,24,0.6402151383360482,0.15000000000000002,1.15731222820561,0.000834000839388719,0.03465054064668405,0.7080681104381606,2,1.0,0.5673837944534937,0.35499999999999987
+170,25,0.5854050641548898,0.2,1.1634231444992245,0.0008503100689726427,0.035343165018963466,0.6910165877231714,2,1.0,0.584683547182966,0.34999999999999987
+170,26,0.5119432010743571,0.15000000000000002,1.170835581001508,0.0008311701026866582,0.03465146713001703,0.7052660617010497,2,1.0,0.539810670247857,0.32999999999999985
+170,27,0.5831259024367245,0.05000000000000002,1.343079256470741,0.0006772715795762213,0.03534446838486417,0.7006859024333701,2,1.0,0.5770863414557484,0.32499999999999984
+170,28,0.6111587272629769,0.05000000000000002,1.3401104781725401,0.0006730261353683263,0.03565239780644809,0.7013099373960695,2,1.0,0.6371957575432564,0.31499999999999984
+170,29,0.6117986988672738,1.3877787807814457e-17,1.3024293276538639,0.0006687833888148816,0.03464990315348047,0.7243680394782162,2,1.0,0.6726623295575794,0.30999999999999983
+170,30,0.6003180195243248,0.0,1.2946234705571547,0.000662905130730625,0.03446851232817155,0.7259261553546817,2,1.0,0.7010600650810831,0.3049999999999998
+170,31,0.6084759327564352,0.0,1.2903017723194181,0.0006583726775775739,0.03437075201826651,0.7267869490359474,2,1.0,0.7282531091881176,0.2999999999999998
+170,32,0.5525867525681825,0.0,1.2856351233606336,0.0006537752464002087,0.03399755196578387,0.7277144352792375,2,1.0,0.675289175227275,0.2799999999999998
+170,33,0.6448581758863762,0.0,1.3018370031907147,0.0006554753344780218,0.03455265180578716,0.7244915993604725,2,1.0,0.7495272529545873,0.2699999999999998
+170,34,0.5627004436256333,0.0,1.3105840376380629,0.0006641925470110466,0.03460321738445963,0.7227387428951806,2,1.0,0.7090014787521111,0.2499999999999998
+170,35,0.527387662170796,0.0,1.3243447307047551,0.0006660743799280759,0.03534637904114528,0.7199720799070101,2,1.0,0.6579588739026534,0.22999999999999982
+170,36,0.6329932429676137,0.0,1.3353823784474428,0.0006692331523975776,0.0352583070762973,0.717740081189117,2,1.0,0.7099774765587126,0.2199999999999998
+170,37,0.6968716607046019,0.0,1.3417320355963487,0.0006751299943963316,0.03572115212103286,0.7164495363543966,2,1.0,0.7562388690153399,0.1899999999999998
+170,38,0.5572097500075344,0.0,1.3378084772117145,0.0006748912421683627,0.03510301576904817,0.7172460251442705,2,1.0,0.6906991666917812,0.16999999999999982
+170,39,0.6424912143233399,0.0,1.3472472683798349,0.0006769684808278623,0.03563222970981231,0.7153270340014195,2,1.0,0.7416373810777998,0.1599999999999998
+170,40,0.55958905145066,0.0,1.3521491407638844,0.0006826719358531497,0.03559986202668326,0.7143254643591526,1,1.0,0.6986301715022001,0.13999999999999982
+170,41,0.6414313387752268,0.0,0.9985866386193957,0.0010116047464017572,0.03450702118002699,0.7806383340985249,1,1.0,0.771437795917423,0.14999999999999983
+170,42,0.6440054482148694,0.05,1.0310000465125446,0.0009834863433880736,0.03535223861179219,0.7617019217695616,1,1.0,0.8466848273828983,0.15999999999999984
+170,43,0.6644483345443577,0.05,1.1191323312100674,0.0006187750242701932,0.03070359138346388,0.7454764387414065,1,1.0,0.9148277818145261,0.16999999999999985
+170,44,0.6810439967564412,0.05,1.1263135441632417,0.0006386881238645483,0.030966607426472854,0.7441038822325142,1,1.0,0.9701466558548041,0.17999999999999985
+170,45,0.6256172359173378,0.05,1.1305270995687613,0.0006568983388991567,0.03174741430888906,0.7432937911333489,1,1.0,0.9187241197244594,0.23999999999999985
+170,46,0.7031178635290196,0.0,1.1221555097100402,0.000640816860030534,0.030970409680377,0.7588825487935227,1,1.0,0.9770595450967324,0.24999999999999986
+170,47,0.7,0.05,1.1193943649693892,0.0006554500911200964,0.031082509716773798,0.7454127973205729,1,1.0,1.0,0.2999999999999999
+170,48,0.73,0.05,1.1463380089152655,0.0006531897957265527,0.031382833932427266,0.740266780781794,1,1.0,1.0,0.2999999999999999
+170,49,0.71,0.1,1.1554494297398816,0.0006721568389773732,0.032427004361085324,0.7237632916487571,1,1.0,1.0,0.3099999999999999
+171,0,0.09465250598012831,0.05,1.335934392761089,0.000710850939580803,0.03560474599065537,0.7021681637202604,1,0.1357620027985176,0.1571193500021572,0.06
+171,1,0.17075821392785945,0.0,1.323266669393228,0.0007420053248396127,0.03582414680134603,0.7201587750376748,1,0.19081343884493318,0.1799117011071094,0.11
+171,2,0.22160282255699976,0.0,1.3240031968911037,0.0007363297606238197,0.03622958258121906,0.72001260683151,2,0.255812773379567,0.24022783958050442,0.12
+171,3,0.15699920060752737,0.0,1.3840693548098633,0.0006989836074628084,0.03668944091871723,0.7077606220141931,2,0.273058411498419,0.20476252194360242,0.09999999999999999
+171,4,0.25948158935891363,0.0,1.3841886438008235,0.0006993306413738061,0.03670535339007912,0.7077358046367542,2,0.3200175469016525,0.258251493144451,0.09
+171,5,0.2790032364380968,0.0,1.3850745702211718,0.0006995091650068829,0.03673559690587316,0.707552446845915,2,0.3693301968922392,0.299125558419377,0.08499999999999999
+171,6,0.3861760418835937,0.0,1.384694895794868,0.0006994974663928473,0.036675073055567255,0.7076310084798813,2,0.4481556869227112,0.3644051715354828,0.05499999999999999
+171,7,0.34332069213048555,0.0,1.3822763071829371,0.0006986177477799174,0.03646150991996215,0.7081315009877136,2,0.4787675694705884,0.3858401427192655,0.049999999999999996
+171,8,0.44879068857878246,0.0,1.3812450124244102,0.0006985374653033915,0.03647771060566751,0.7083446377177396,1,0.5622121505244096,0.44005478631746364,0.019999999999999997
+171,9,0.41708759976815457,0.0,1.3809797487232263,0.0007048312655321944,0.036266787329272784,0.7083968359599075,1,0.6092513478222684,0.4794987601012022,0.03
+171,10,0.34885017992531164,0.0,1.3595703750015382,0.000682700487087079,0.036059871528148005,0.7128086358822326,1,0.6244576764452666,0.4342999772315613,0.09
+171,11,0.46503800094032477,0.0,1.3638600929600417,0.0006854103565566343,0.03599930459027871,0.7119285645033732,1,0.6818220660246957,0.48800092610560425,0.09
+171,12,0.489218650708638,0.0,1.3613407643659732,0.0006835880170188251,0.035960052860183805,0.7124457149259167,1,0.7511725671085963,0.5543608407354312,0.09
+171,13,0.524335874291529,0.0,1.3581793235156745,0.000681552028885808,0.035612982952520425,0.713093787097232,1,0.8034728217048701,0.610401288982748,0.09999999999999999
+171,14,0.534864995007996,0.05,1.1048550277284768,0.0009115743425421288,0.03459830108956767,0.7480655783427784,1,0.8452106282080734,0.6301375837839013,0.15
+171,15,0.5771594819985101,0.05,1.1031384197117247,0.0008981440653607833,0.03521831800890395,0.7483940163466679,1,0.9072557998368268,0.6653998401854025,0.16
+171,16,0.6285144857925178,0.1,1.1250801585257884,0.000874791210926859,0.034674712778155835,0.7297136528993605,1,0.9462590613655117,0.7244127143819625,0.16
+171,17,0.6188485200522241,0.15000000000000002,1.1613738087981025,0.0008523139035057366,0.03494640208852203,0.7072202579285388,1,0.9840162943736749,0.7481427234047932,0.21000000000000002
+171,18,0.6560510103688274,0.15000000000000002,1.156946128727231,0.0008407295985410557,0.03519276419836462,0.7081409988842067,1,1.0,0.820170034562758,0.22000000000000003
+171,19,0.6516038616177039,0.2,1.1335090858568178,0.0005986262929015707,0.030611398717890214,0.6974730818643601,1,1.0,0.8720128720590131,0.23000000000000004
+171,20,0.5973965983387797,0.2,1.1523626848504034,0.0006206129486187055,0.03134781848201555,0.6934707948246993,1,1.0,0.8246553277959325,0.29000000000000004
+171,21,0.6985797052464569,0.15000000000000002,1.1433787662821708,0.0006069392883149452,0.031013516509359147,0.711033207037726,1,1.0,0.8952656841548562,0.29000000000000004
+171,22,0.6755338240935802,0.2,1.1407388672693888,0.0006219958636152555,0.031040888641128427,0.6959355015512793,1,1.0,0.918446080311934,0.34
+171,23,0.6098905907265075,0.2,1.1778583787523211,0.0007193913880524583,0.03411338589224482,0.6879822237052248,1,1.0,0.8663019690883583,0.4
+171,24,0.5820924923286535,0.15000000000000002,1.1660103037800666,0.0007090387773136544,0.032372668680515575,0.7063187482000219,1,1.0,0.8403083077621785,0.46
+171,25,0.6579662408589462,0.15000000000000002,1.1443293100600882,0.0006940281122259284,0.03326958070884619,0.7108020613273713,1,1.0,0.8598874695298206,0.51
+171,26,0.6453474491100307,0.2,1.1545049543800041,0.0007498848765926837,0.03279456365485811,0.692960219289789,1,1.0,0.884491497033436,0.56
+171,27,0.6012678081026925,0.2,1.1701355178764064,0.000800370516170818,0.034468382063441716,0.689602956059051,2,1.0,0.8375593603423086,0.6200000000000001
+171,28,0.6721484300622743,0.1,1.3124867786401169,0.0006438599889315098,0.035025756633617525,0.6913045988308858,2,1.0,0.8738281002075812,0.6150000000000001
+171,29,0.5984345263848967,0.1,1.297342164068085,0.0006312873520865486,0.034666029175029374,0.6945324350472092,2,1.0,0.8281150879496556,0.5950000000000001
+171,30,0.5615436349931078,0.0,1.3112160970477333,0.0006441013903124618,0.034153014557172956,0.722620122516985,2,1.0,0.7718121166436926,0.5750000000000001
+171,31,0.7139329832197301,0.0,1.2330346070108702,0.0008376311462456837,0.035760654308321004,0.7379402118315901,2,1.0,0.8131099440657673,0.545
+171,32,0.708302537682306,0.0,1.2999837292578513,0.0006342250815472605,0.03409296686176124,0.7248698415273721,2,1.0,0.8610084589410203,0.515
+171,33,0.7204354247855992,0.0,1.305555671447979,0.0006384036681244412,0.034829388867543595,0.7237555472202443,2,1.0,0.9014514159519975,0.485
+171,34,0.7068093845692776,0.0,1.3086429507153972,0.0006426468058680433,0.033830184516456405,0.7231361715755361,2,1.0,0.9560312818975918,0.475
+171,35,0.77,0.0,1.3144567984586628,0.0006480609710355447,0.03518132040052767,0.7219684974088175,2,1.0,1.0,0.44499999999999995
+171,36,0.72,0.0,1.315869763309357,0.0006530049294193599,0.03408166460098201,0.7216827980086896,2,1.0,1.0,0.43499999999999994
+171,37,0.6374645408760067,0.0,1.3198387738251662,0.0006591996256847628,0.03530503753384179,0.7208824016352948,2,1.0,0.9582151362533557,0.4149999999999999
+171,38,0.7049160487524645,0.0,1.3336200025703642,0.0006637940874853388,0.0348672068225842,0.7180991846539375,2,1.0,0.9830534958415484,0.4099999999999999
+171,39,0.77,0.0,1.3271805645341743,0.0006579412021088255,0.03520413454269757,0.7194032680534219,2,1.0,1.0,0.3799999999999999
+171,40,0.6347133616207883,0.0,1.3279212987557507,0.0006617766946410201,0.035188796113835345,0.7192521685235768,2,1.0,0.9490445387359612,0.3599999999999999
+171,41,0.7014998013030009,0.0,1.3399853782656863,0.000667235633944102,0.035117579097709226,0.7168074399357149,2,1.0,0.9716660043433366,0.35499999999999987
+171,42,0.72,0.0,1.3338595950933863,0.0006621592598348523,0.0355717586810742,0.7180513427013252,2,1.0,1.0,0.34499999999999986
+171,43,0.6350406037751839,0.0,1.3377516068217068,0.0006660989889759397,0.03481626885462878,0.7172611246630886,2,1.0,0.9501353459172799,0.32499999999999984
+171,44,0.7199080497997989,0.0,1.073028266406637,0.0006272322335491903,0.03023358797739061,0.767762033474332,2,1.0,0.9996934993326632,0.31499999999999984
+171,45,0.77,0.05,1.099767972608994,0.0006215650062972231,0.030428959367960706,0.7491321125333211,2,1.0,1.0,0.2849999999999998
+171,46,0.6357774726798143,0.1,1.102224241657733,0.000618947593534111,0.03072130154971142,0.7342976687920441,2,1.0,0.9525915755993811,0.2649999999999998
+171,47,0.7085019413083906,0.05,1.1059798162530248,0.0006207279602761271,0.03104966661100848,0.747963210843155,2,1.0,0.9950064710279686,0.2599999999999998
+171,48,0.6325733636106015,0.1,1.1213994979761759,0.0006281780528048315,0.030878505553989254,0.7305360856997991,2,1.0,0.9419112120353386,0.2399999999999998
+171,49,0.706101904915162,0.05,1.1243534832314648,0.0006296427580612147,0.03123169521436759,0.7444803666906012,2,1.0,0.9870063497172069,0.2349999999999998
+172,0,0.16890469059966196,0.05,1.3378859915294492,0.0007099222600956809,0.035641483192370794,0.7017602574758449,1,0.13066819711431008,0.2439027386988448,0.05
+172,1,0.12074869080469408,0.0,1.3371912163326796,0.0007076742595366571,0.03613746119226136,0.7173578977450984,1,0.1764574323326254,0.19662863162758404,0.11
+172,2,0.09876049986196182,0.0,1.3395658014898784,0.0007353598271117429,0.036338771746204986,0.7168649505169739,1,0.19867745752256263,0.16407796576354974,0.16999999999999998
+172,3,0.2304086420800021,0.0,1.3476025989767344,0.0007292992693797348,0.03619763757277929,0.7152333545544033,1,0.2409099518236848,0.22030052980570816,0.16999999999999998
+172,4,0.2536135459579693,0.0,1.3768254202629535,0.0007087224291714175,0.036719516622075406,0.7092526503821834,1,0.31211579498534237,0.28124339237699836,0.16999999999999998
+172,5,0.286736930478281,0.0,1.375541006556963,0.0007091459387936164,0.03668408885144673,0.7095172678309025,1,0.36409065918436756,0.3310173325458414,0.16999999999999998
+172,6,0.32166508039985264,0.0,1.3739220684972564,0.0007095825218133161,0.036574653531813314,0.7098506419833286,1,0.42177416813226826,0.3801470718451959,0.18
+172,7,0.3833657402770466,0.0,1.366117972195816,0.0006942881611550481,0.03616049684674467,0.7114616380262273,1,0.4814306718174343,0.44955001713648207,0.18
+172,8,0.3114143976751861,0.0,1.3804124264017315,0.0007054134563114389,0.03653653785194113,0.7085137738350393,1,0.5311326155235576,0.41839327413980326,0.24
+172,9,0.28717314162893093,0.0,1.379109014437305,0.0007058474121080421,0.03624609130912625,0.7087827047666645,1,0.560294578938262,0.37023346333513085,0.3
+172,10,0.4233197776762898,0.0,1.3599594118059366,0.0006945520071785804,0.036186106335279494,0.7127241354623375,1,0.6222217738719993,0.4184738560703001,0.3
+172,11,0.41481135094374744,0.0,1.368815337605628,0.000693828799477095,0.03612489404551409,0.7109077852618066,1,0.6553137249997664,0.4515051573127642,0.35
+172,12,0.42040457623507144,0.0,1.3153332643136293,0.0006631897326583555,0.03496731000791925,0.7217864542113852,1,0.6968484723597446,0.4883587030305363,0.39999999999999997
+172,13,0.4897606991519333,0.0,1.3118000797417624,0.0006599091656501456,0.034609381049762564,0.7224967149233607,2,0.7599225210535028,0.5459593892773579,0.41
+172,14,0.5150374629020119,0.05,1.0493104892832463,0.0005446804953553649,0.028408028411230003,0.7585232305788538,2,0.8100597055041114,0.571721886585243,0.40499999999999997
+172,15,0.447250351239863,0.05,1.140360427794954,0.0008476971352342403,0.035035737034451606,0.7413398612564078,2,0.8347607413413722,0.5169469725679424,0.38499999999999995
+172,16,0.605604036309483,0.0,1.158092710740118,0.0008384166954330757,0.03422909533824793,0.7521720730407558,2,0.9132667872063837,0.5532022026241626,0.355
+172,17,0.6188412299444648,0.05,1.1544437223031407,0.0008567351494606082,0.03533123517274216,0.7386266632850338,2,0.9833757093187299,0.582199105609698,0.32499999999999996
+172,18,0.6109391792350721,0.0,1.3553141729962852,0.0007174253129589974,0.036291930334740985,0.7136649521494765,2,1.0,0.6364639307835738,0.31499999999999995
+172,19,0.6713008003472833,0.0,1.2805183978706167,0.0006937460831157492,0.03496758297716461,0.728711309059928,2,1.0,0.6710026678242778,0.2849999999999999
+172,20,0.6630659133859973,0.0,1.2762134615783824,0.0006963016116411514,0.03434911585120826,0.729560509971646,2,1.0,0.710219711286658,0.2549999999999999
+172,21,0.5500311350712751,0.0,1.27124056860588,0.0006981201147352853,0.03468068282709895,0.7305398347993903,2,1.0,0.6667704502375839,0.2349999999999999
+172,22,0.6877094843930791,0.0,1.2909063532686218,0.0006913353726067195,0.034666203635786,0.7266537879041337,2,1.0,0.7256982813102636,0.2049999999999999
+172,23,0.6480772022263472,0.0,1.2849609898731962,0.0006920082301569584,0.03446459931140486,0.7278328446701532,2,1.0,0.7602573407544907,0.1949999999999999
+172,24,0.6479659574912978,0.0,1.2898471508423655,0.0007070110750503437,0.03511886176415201,0.7268579003896118,2,1.0,0.7932198583043261,0.1899999999999999
+172,25,0.7265353105915912,0.0,1.2868996236208792,0.0006983991821258828,0.034619630668614884,0.7274461126435696,2,1.0,0.8551177019719707,0.1599999999999999
+172,26,0.6728882611899648,0.05,0.9761985344511936,0.0006243997644725038,0.028312115581245374,0.7716325773661492,2,1.0,0.8762942039665494,0.1549999999999999
+172,27,0.5958748422871405,0.0,1.015476614222907,0.0006183795260924687,0.029004393967814873,0.7778682734419515,2,1.0,0.819582807623802,0.1349999999999999
+172,28,0.6800775928109611,0.0,0.9991313405657752,0.0006185708373888335,0.028889368497252176,0.780679663303696,2,1.0,0.8669253093698706,0.1249999999999999
+172,29,0.5983097221151549,0.05,1.0283948415481747,0.000613632414350766,0.02895343850015946,0.7623085323597686,2,1.0,0.827699073717183,0.1049999999999999
+172,30,0.7322544810256294,0.0,1.032911531990225,0.0006098998395704346,0.029391724164692594,0.7748440776096903,2,1.0,0.8741816034187648,0.0749999999999999
+172,31,0.5954466804285323,0.05,1.0172077560386632,0.0006168430142480168,0.029000973861743846,0.7643284592127936,2,1.0,0.8181556014284412,0.054999999999999896
+172,32,0.6641207415780586,0.0,1.0222456123975743,0.0006135215361439295,0.028919589123527267,0.776698149065137,2,1.0,0.8470691385935288,0.0499999999999999
+172,33,0.734746697105753,0.05,1.0402282648305992,0.0006124032497647836,0.029056664726925047,0.7601581814922116,2,1.0,0.8824889903525104,0.0199999999999999
+172,34,0.6824024450480721,0.1,1.0453443489674055,0.0006151165148145143,0.029282757966273786,0.7452477896457258,2,1.0,0.9080081501602407,0.014999999999999899
+172,35,0.7560662850755188,0.05,1.0834217444373548,0.0006143346711403176,0.030224765346072473,0.7521942793725418,2,1.0,0.9535542835850627,0.0
+172,36,0.7437594438005364,0.1,1.0671274719173227,0.0006149075697457939,0.029462932235036914,0.7410902203682869,2,1.0,0.9791981460017882,0.0
+172,37,0.75,0.1,1.070433052247814,0.0006129216955258272,0.029503256164947755,0.7404562184717466,2,1.0,1.0,0.0
+172,38,0.71,0.1,1.0629296483201935,0.0006101999090194212,0.03008992341941198,0.7418966672750036,2,1.0,1.0,0.0
+172,39,0.6285133090013508,0.05,1.0908680586054493,0.000610358628747706,0.029647099965132945,0.7508051838020864,2,1.0,0.9283776966711693,0.0
+172,40,0.759317104518941,0.0,1.0764615336418424,0.0006143838577780574,0.03019555150248892,0.7671538974671958,2,1.0,0.9643903483964701,0.0
+172,41,0.72,0.05,1.0584992432744653,0.0006109023518300881,0.029987578995341203,0.756811794776291,2,1.0,1.0,0.0
+172,42,0.77,0.0,1.0968252730419095,0.0006086756602706166,0.030690724418507665,0.7634986383197938,2,1.0,1.0,0.0
+172,43,0.75,0.05,1.07755164758169,0.0006038670440465349,0.029990862289501707,0.7532907241015259,2,1.0,1.0,0.0
+172,44,0.71,0.05,1.0780244416110465,0.0005981706263313879,0.030178568330347193,0.7532049655251636,2,1.0,1.0,0.0
+172,45,0.69,0.0,1.106064411600958,0.000598390995730416,0.03018376231629889,0.7618300139946371,2,1.0,1.0,0.0
+172,46,0.72,0.0,1.1225062805302646,0.0006008803333384114,0.030918956564570214,0.7588329764910642,2,1.0,1.0,0.0
+172,47,0.6321777035213544,0.05,1.1502745702539154,0.0006015111450352731,0.03048806786182373,0.7395290849495362,2,1.0,0.9405923450711814,0.0
+172,48,0.7672920476898009,0.0,1.1548691495331667,0.000609311036906459,0.03105483987766596,0.7528577520927864,2,1.0,0.9909734922993361,0.0
+172,49,0.72,0.05,1.136071040965765,0.0006010152058129655,0.030485344925890095,0.7422559188334165,2,1.0,1.0,0.0
+173,0,0.09935410591546598,0.0,1.3398276588711557,0.0007067449886711812,0.03562759218046403,0.7168234154720093,1,0.1438183229783592,0.1633923095768009,0.06
+173,1,0.22038173378444742,0.0,1.3448816079792802,0.0007443210411794219,0.03631869454449024,0.7157811146258787,1,0.20071442153368388,0.23377228749219356,0.06
+173,2,0.24362486286884635,0.0,1.373861965625028,0.0007105111755865286,0.03662669565360718,0.7098626382509308,1,0.2730717033082616,0.29349922236984927,0.06
+173,3,0.27695543165464387,0.0,1.372414074456071,0.0007108653570592318,0.036555813896092845,0.710160606106456,1,0.3264781194771036,0.342293632792192,0.06999999999999999
+173,4,0.2889860496218434,0.0,1.372040315994784,0.0007143180625627087,0.03670721279073847,0.7102361105720386,1,0.3605900988782648,0.3759317167148357,0.12
+173,5,0.33673522324805083,0.0,1.374864766940592,0.0007111818681165703,0.03671237139005912,0.7096557837834016,1,0.4142669045751469,0.4391393554891647,0.13
+173,6,0.3992549069922605,0.0,1.380577885112615,0.0007053601721088833,0.0367210623970482,0.7084796238015044,1,0.48238598581875547,0.5013993731856538,0.13
+173,7,0.31031009080438676,0.0,1.3814193665261703,0.0007033153580243904,0.036509584095069644,0.7083066418564065,1,0.4879812307691243,0.46505553345064415,0.19
+173,8,0.40729894509410336,0.0,1.38027177541482,0.000703641566814254,0.03652931058098009,0.7085435523319767,1,0.5435764743761793,0.523490596874802,0.2
+173,9,0.47011169888677895,0.0,1.3821613917452997,0.0007022089225201239,0.03627247961101323,0.7081537669008066,1,0.614020793044019,0.5840147377379077,0.2
+173,10,0.48793855541549513,0.0,1.3394394661946167,0.0006673932109755752,0.03577850065634511,0.7169181800254945,1,0.6806581465632324,0.6323606803945462,0.2
+173,11,0.42608156605033487,0.0,1.1787014952662989,0.0006940102258727538,0.032883247439493654,0.7483648648388974,1,0.7124665271650497,0.589060938475225,0.26
+173,12,0.5020251250908254,0.0,1.3330157951610704,0.0006675304974733324,0.03534087817918902,0.7182199675521239,1,0.7667951255833768,0.6121561037888117,0.31
+173,13,0.5148725758782265,0.05,1.2068774240446907,0.0007171058965580227,0.03413091037420627,0.7284333162423702,1,0.8134734955138365,0.6671895081612793,0.36
+173,14,0.49076652886958827,0.05,1.1828119049328838,0.0008776355820688905,0.03531756543607819,0.7331048450300786,1,0.8488846741719573,0.6455229763646774,0.42
+173,15,0.6035169622403246,0.05,1.1817488602913937,0.0009017523970183424,0.03623039670455011,0.7333033581386216,1,0.8915836593722917,0.7048756048667416,0.42
+173,16,0.5850774480392562,0.1,1.1986650802692123,0.0008782972959503463,0.0356948699576751,0.7149561787511299,1,0.9173710614659988,0.713325255087189,0.47
+173,17,0.6512919542725435,0.1,1.1977498339942794,0.0008707033898586279,0.03590509162034879,0.7151457575578197,1,0.9822872458702395,0.7583047273931987,0.47
+173,18,0.5672391249011238,0.15000000000000002,1.2119419839505707,0.0008492944474768559,0.03541274844698645,0.6966422967959607,1,1.0,0.7241304163370796,0.53
+173,19,0.5377596086051148,0.10000000000000002,1.2166783426404855,0.0008649728076145051,0.035919627809402443,0.7112764900158005,1,1.0,0.6925320286837164,0.5900000000000001
+173,20,0.6556133461252132,0.10000000000000002,1.2083937201524324,0.0008866282733820753,0.036165060209912656,0.7129659929397191,1,1.0,0.7520444870840438,0.5900000000000001
+173,21,0.6514377796479639,0.15000000000000002,1.2201129059435698,0.000864558440572601,0.036090683998808507,0.6949062795165709,2,1.0,0.8047925988265464,0.6000000000000001
+173,22,0.5732956731756988,0.10000000000000002,1.2865316800638633,0.0006622229770268086,0.03448939270521213,0.6968080497848238,2,1.0,0.7443189105856631,0.5800000000000001
+173,23,0.7013046635685721,0.05000000000000002,1.198732488405087,0.0008058586207297278,0.03533760015294328,0.7300065474561451,2,1.0,0.771015545228574,0.55
+173,24,0.6678609760279481,0.10000000000000002,1.1782100208040551,0.0007978480862958185,0.0339992514455884,0.7191389000111893,2,1.0,0.8262032534264939,0.54
+173,25,0.5824631293007146,1.3877787807814457e-17,1.2853362018829932,0.0006605685954993308,0.034410755665461944,0.7277709695895488,2,1.0,0.7748770976690489,0.52
+173,26,0.6654867750367418,0.0,1.1730555247824999,0.0008992505413423439,0.035146564532460796,0.749349502969508,2,1.0,0.8182892501224728,0.51
+173,27,0.6568939666350532,0.0,1.280289981864745,0.0006569968172385623,0.033145152593697366,0.7287709907666298,2,1.0,0.8563132221168441,0.5
+173,28,0.6739744055982724,0.0,1.2819994964627601,0.0006657307748407391,0.03470898673621677,0.7284294939473059,2,1.0,0.8799146853275744,0.495
+173,29,0.6649374066720193,0.0,1.2760514934438718,0.0006573114392354625,0.033763878062456294,0.7296078496720318,2,1.0,0.9164580222400642,0.49
+173,30,0.7610997799240229,0.0,1.2696997870922668,0.0006487378633600136,0.033998963111561635,0.7308624596845384,2,1.0,0.9703325997467434,0.45999999999999996
+173,31,0.75,0.0,1.2713688833659889,0.0006588551345115474,0.034076252908477475,0.7305300344801665,2,1.0,1.0,0.42999999999999994
+173,32,0.6344737970547484,0.0,1.2711879945188231,0.0006676386024611675,0.03393039644691203,0.7305621841519956,2,1.0,0.9482459901824948,0.4099999999999999
+173,33,0.597729260544966,0.0,1.29135562823297,0.0006651802718450464,0.03480265373788745,0.7265749324693661,2,1.0,0.8924308684832202,0.3899999999999999
+173,34,0.7517953090937703,0.0,1.309012517469877,0.0006647041609013838,0.03411907693239456,0.7230533406618231,2,1.0,0.9393176969792347,0.3599999999999999
+173,35,0.745721124497525,0.0,1.3073926721364908,0.0006698155921944407,0.03524559041759344,0.7233755473143197,2,1.0,0.9857370816584172,0.32999999999999985
+173,36,0.6311608039524852,0.0,1.0384346543742544,0.0006097373579811857,0.029077263164616545,0.7738791040348999,2,1.0,0.9372026798416173,0.30999999999999983
+173,37,0.7601987886632886,0.0,1.0355360256163935,0.0006198608953196568,0.02969826313779861,0.7743823956193794,2,1.0,0.9673292955442957,0.2799999999999998
+173,38,0.75,0.05,1.0267585979602747,0.0006106071268584001,0.02893592298318521,0.7626059783894044,2,1.0,1.0,0.2499999999999998
+173,39,0.72,0.05,1.0267127308999138,0.0006014870444692635,0.028922802411255784,0.7626175840442627,2,1.0,1.0,0.2399999999999998
+173,40,0.71,0.0,1.0511601709421157,0.0005978989755903625,0.029506630213658108,0.7716486769332376,2,1.0,1.0,0.2349999999999998
+173,41,0.69,0.0,1.0688894122175345,0.000602167690926314,0.029997205501959646,0.7685081059024406,2,1.0,1.0,0.2299999999999998
+173,42,0.6327250092385013,0.0,1.0930595773398013,0.0006118338777048607,0.030316355223534715,0.7641767911022712,2,1.0,0.942416697461671,0.2099999999999998
+173,43,0.713444024282342,0.0,1.090615554929388,0.0006230409647102356,0.030446748515480522,0.7646129114177709,2,1.0,0.9781467476078067,0.1999999999999998
+173,44,0.7,0.05,1.115582971316599,0.0006184796408237124,0.03078826325574081,0.7461494238929216,2,1.0,1.0,0.18999999999999978
+173,45,0.7,0.05,1.1500983687015116,0.0006165316715284234,0.031165883916125812,0.7395572382495289,2,1.0,1.0,0.17999999999999977
+173,46,0.71,0.05,1.1765405163400897,0.0006148962126622679,0.03178241489465922,0.7344326257533442,2,1.0,1.0,0.17499999999999977
+173,47,0.72,0.05,1.1950647629167184,0.0006254947364188453,0.03208570317015315,0.7307998073757894,2,1.0,1.0,0.16499999999999976
+173,48,0.77,0.05,1.220307362352056,0.0006250103623684217,0.03268123718146983,0.7258051523068682,2,1.0,1.0,0.13499999999999976
+173,49,0.6327135059991104,0.1,1.2107086080235674,0.0006161912771286793,0.03253124323405246,0.7126028118913877,2,1.0,0.9423783533303679,0.11499999999999976
+174,0,0.19583582855978224,0.0,1.3437439397537663,0.000705605539720188,0.0356986262778652,0.7160282477755084,1,0.15799605709434492,0.26845736192253844,0.01
+174,1,0.20380273919946415,0.0,1.3399015186657963,0.0007093474578677173,0.03620162849232517,0.7168073660359635,1,0.19092962264637606,0.3232579042441085,0.02
+174,2,0.2365931224032745,0.0,1.339520457915325,0.0007120349121735479,0.03565439950724271,0.7168836220083394,1,0.22701787570259374,0.3904562196912222,0.03
+174,3,0.2682829640331176,0.0,1.373625062926162,0.0007161387072406928,0.03667466159690684,0.70990910991202,1,0.2674569739619619,0.4489100771547698,0.04
+174,4,0.23222595475555635,0.0,1.3776476510641715,0.0006962364504499007,0.03646022977041734,0.7090882175591098,1,0.3071565499775588,0.4157372075447026,0.1
+174,5,0.359738653870665,0.0,1.3769392037230515,0.0006962537080511904,0.03652892743283058,0.7092343288085249,1,0.36767502049776335,0.5035079889881594,0.1
+174,6,0.3795026309315655,0.0,1.3797560485402145,0.0006966415812627471,0.03647613934541584,0.7086529339179268,1,0.4356077675041467,0.5567997076837139,0.11
+174,7,0.403056719608559,0.0,1.3823578674677597,0.0007017919572388802,0.03651584770890582,0.7081133315720249,1,0.5043539853353766,0.5884427491372574,0.16
+174,8,0.47256006983482024,0.0,1.3823100282263048,0.0007038216568772123,0.036506193773804166,0.7081223802944278,1,0.5665691938546559,0.6475361732856357,0.16
+174,9,0.49057798366941585,0.0,1.3491214996849605,0.0006775562433876986,0.035427791769623476,0.7149449827333598,1,0.6104925966606082,0.7230185827940101,0.16
+174,10,0.4956903715768054,0.0,1.139004317747882,0.0009542105921719377,0.036391211745096366,0.7556704170267952,1,0.6320181937640316,0.7482800125313147,0.21000000000000002
+174,11,0.5647838931960758,0.0,1.1295985599517575,0.0009484504937456349,0.035400750540854176,0.7574049647807816,1,0.6961836143128273,0.8037320939552877,0.21000000000000002
+174,12,0.5564143025259493,0.0,1.2717568780097332,0.000612824543816848,0.03335170599617721,0.7304717742569691,1,0.7376971822273246,0.8274009624879524,0.26
+174,13,0.6010520197795659,0.0,1.2759430862171848,0.000619401982407621,0.0336011230412636,0.7296441923109719,1,0.7902147813007785,0.8815894877476451,0.27
+174,14,0.603927813702732,0.0,1.2935851146042214,0.0006356709695767292,0.034447699959173385,0.7261435271107031,1,0.8259539689703834,0.8828130818769928,0.32
+174,15,0.6449292182643016,0.0,1.2341118924286187,0.0006074917511178332,0.032903116095601405,0.7378208748246727,1,0.8834961187367831,0.9190185890214252,0.33
+174,16,0.6690650192389372,0.05,1.2444620252308851,0.0006203430363088819,0.032426537246269704,0.7209738351471342,1,0.9542742065236238,0.9835634898522297,0.34
+174,17,0.73,0.05,0.9723063571342996,0.0006076892239341415,0.029533939053859214,0.7723235918739576,1,1.0,1.0,0.34
+174,18,0.7,0.1,1.006479666631551,0.0006021473770005346,0.02928249907388288,0.7525606404484831,1,1.0,1.0,0.39
+174,19,0.73,0.05,1.0410172854376651,0.0006937162954124244,0.03107125951375985,0.7599846364824011,1,1.0,1.0,0.39
+174,20,0.7,0.1,1.0583356228996332,0.0006759717203143565,0.031550412978057184,0.742750247253614,1,1.0,1.0,0.44
+174,21,0.71,0.05,1.0855696387370868,0.0007546624313974799,0.03190140764001208,0.7517413252362105,1,1.0,1.0,0.45
+174,22,0.69,0.05,1.1033127326526435,0.0007348153254798162,0.03319978370974154,0.7484227018006406,1,1.0,1.0,0.46
+174,23,0.73,0.05,1.1311763817351947,0.0007214765504444336,0.032121083985830225,0.7431452305925599,1,1.0,1.0,0.46
+174,24,0.6422396474205021,0.1,1.158086567655526,0.0007086691019906,0.03369329867295631,0.723221120441092,1,1.0,0.9741321580683405,0.52
+174,25,0.71,0.05,1.1547886623556218,0.0007005693653909585,0.03319960601640206,0.7386203679295967,1,1.0,1.0,0.53
+174,26,0.7,0.1,1.169176922658928,0.0006855431226577856,0.03340889036481463,0.7210049556521513,1,1.0,1.0,0.5800000000000001
+174,27,0.71,0.1,1.188553997854978,0.000741339541765054,0.03452917334346368,0.7170678444780476,1,1.0,1.0,0.5900000000000001
+174,28,0.6345300117905087,0.1,1.209147837657469,0.0007285193262354765,0.033461084615768084,0.7128763704045628,2,1.0,0.9484333726350291,0.6500000000000001
+174,29,0.6023165787747594,0.0,1.2956752177206214,0.0006361942181609838,0.03457541584007458,0.725727486375789,2,1.0,0.9077219292491981,0.6300000000000001
+174,30,0.7552504790103104,0.0,1.301939132523851,0.0006413015571778887,0.03441445102262998,0.7244768720137028,2,1.0,0.9508349300343681,0.6000000000000001
+174,31,0.7006002838180869,0.0,1.3116349950161168,0.0006455424486053465,0.034738237001416886,0.7225355728605292,2,1.0,0.9686676127269565,0.5950000000000001
+174,32,0.6234131557683897,0.0,1.3034340410726923,0.0006389813188350398,0.03406623445191965,0.7241792999122919,2,1.0,0.9113771858946328,0.5750000000000001
+174,33,0.5868422186548143,0.0,1.3167031052330154,0.0006510961454435891,0.035205947996256086,0.7215161518180593,2,1.0,0.8561407288493812,0.555
+174,34,0.5728532263129889,0.0,1.3269305492475758,0.0006638481871217534,0.03459291087758598,0.7194513493835888,2,1.0,0.8095107543766299,0.535
+174,35,0.7354181083099153,0.0,1.3346057373336895,0.0006769348570576589,0.03587152646547151,0.7178942742048514,2,1.0,0.8847270276997177,0.505
+174,36,0.6846694011492922,0.0,1.342413809566333,0.0006757054814313,0.03514054102522944,0.716310779920988,2,1.0,0.9155646704976406,0.5
+174,37,0.7600132653640653,0.0,1.33550409017054,0.0006716337701719327,0.03575418023934472,0.7177144503168007,2,1.0,0.9667108845468846,0.47
+174,38,0.6268587273043289,0.0,1.3415082334382473,0.0006712168339959323,0.03520190227563271,0.7164965892275725,2,1.0,0.9228624243477632,0.44999999999999996
+174,39,0.7570807701918751,0.0,1.348387704993459,0.0006825478414822044,0.03583652315174026,0.7150924715894384,2,1.0,0.956935900639584,0.41999999999999993
+174,40,0.7488314089422704,0.0,1.3521950845778423,0.0006809761859049756,0.03585715870287472,0.7143167808592108,2,1.0,0.9961046964742349,0.3899999999999999
+174,41,0.72,0.0,1.3539298181152335,0.000679759134701503,0.035669252299962026,0.7139631422244667,2,1.0,1.0,0.3799999999999999
+174,42,0.71,0.0,1.358114370035379,0.0006804329415108316,0.03617010499894671,0.7131075337108451,2,1.0,1.0,0.3749999999999999
+174,43,0.69,0.0,1.3526687645244833,0.0006769212610984979,0.0353465576281385,0.7142217632737695,2,1.0,1.0,0.3699999999999999
+174,44,0.6318896146318094,0.0,1.3468715405857368,0.000673085455189184,0.03603310620207824,0.7154051200410332,2,1.0,0.9396320487726982,0.34999999999999987
+174,45,0.6984451476068485,0.0,1.3537187141817686,0.0006824160974269937,0.035396658095346284,0.7140051667627965,2,1.0,0.9614838253561617,0.34499999999999986
+174,46,0.6879144069422419,0.0,1.3476067693552267,0.0006791788327248536,0.03603785980194653,0.7152529212696963,2,1.0,0.9930480231408066,0.33999999999999986
+174,47,0.6309354304326353,0.0,1.3410591306871142,0.0006755402065084581,0.03528647767143867,0.7165860501833613,2,1.0,0.9364514347754512,0.31999999999999984
+174,48,0.5946798390365087,0.0,1.1059136176750275,0.0004895164560488521,0.02900121088027392,0.761896877843539,2,1.0,0.8822661301216955,0.2999999999999998
+174,49,0.5767777926881354,0.0,1.131304698662882,0.0004972641928839624,0.029194300442590006,0.7572572480847916,2,1.0,0.8225926422937849,0.2799999999999998
+175,0,0.22485413498013665,0.0,1.3386786460218592,0.0007156827275492223,0.035626692197509836,0.7170529660163157,1,0.18661474139243342,0.26512991830928323,0.0
+175,1,0.21532633561047337,0.0,1.3378239225131594,0.0007170894125126107,0.03625234689632494,0.7172257764042671,1,0.23259923413989805,0.2797220122050301,0.05
+175,2,0.260778487667921,0.0,1.3742646859679124,0.0007141450071700161,0.036688134864432634,0.7097781908104461,1,0.2866972137012113,0.3347815429083235,0.060000000000000005
+175,3,0.20115626625017272,0.0,1.3734972311250144,0.0007164730239199461,0.03667669866871417,0.7099352969624849,1,0.31671020893680984,0.3010256437409643,0.12
+175,4,0.27421462286983284,0.0,1.3752674707906416,0.0007137306025883065,0.03676625146866274,0.7095717514005436,1,0.3556194740325676,0.33249268986144725,0.16999999999999998
+175,5,0.2251732637476544,0.0,1.3775151466179478,0.0007110532527889118,0.03677168775287292,0.7091094375176694,0,0.3930651678875783,0.29200151662334,0.22999999999999998
+175,6,0.27768688533105174,0.0,1.3839178804099035,0.0006986660818041998,0.03664447969372305,0.7077920826579532,0,0.43718888330532213,0.31556925391396334,0.24
+175,7,0.2803224827924656,0.0,1.385335130518884,0.0006996558872431461,0.03659282888022598,0.7074984675504421,0,0.4399141852918679,0.35450839313437277,0.24
+175,8,0.31437912943308866,0.0,1.384924072223816,0.000699232872926365,0.03642663731966043,0.7075837015516725,0,0.5138788666203356,0.3484050870532375,0.3
+175,9,0.3249774458890606,0.0,1.3846859711512085,0.0006992610435864691,0.03647591646204278,0.7076329527166694,0,0.5373509830530477,0.3563486727349796,0.31
+175,10,0.33989052111871904,0.0,1.3854702885805594,0.0006996073201566709,0.03653401468973254,0.7074705166664531,0,0.6375908505507175,0.32244574475322646,0.39
+175,11,0.3695140664872071,0.0,1.294693116227415,0.0006483532184421445,0.03407919980045988,0.7259180891817145,0,0.667981756601398,0.35240150558905925,0.4
+175,12,0.37382968599834177,0.0,1.2994221284499192,0.0006485386392435659,0.034640247864458004,0.724976121625107,0,0.7556724624156987,0.29781441384282414,0.48000000000000004
+175,13,0.39066381603913314,0.0,1.3092729176838738,0.0006667037170274883,0.0349363765634775,0.7230003923128224,0,0.7717018566193297,0.33522722074122574,0.48000000000000004
+175,14,0.4343477831935268,0.0,1.319621456748576,0.0006649869368780685,0.03486391865649239,0.7209237973916026,0,0.8564227382995572,0.3486660826289395,0.54
+175,15,0.45666488056275123,0.0,1.286205813774231,0.0008308082956511297,0.03682155497122392,0.7275311597684856,0,0.8897993486132214,0.38411702849374607,0.55
+175,16,0.4763827478610401,0.0,1.2988083112396545,0.0008135449836579193,0.036264909848997204,0.7250327045878034,2,1.0,0.3546091595368004,0.63
+175,17,0.42350196730789913,0.0,1.1240812365750235,0.0008244021965460825,0.03441120643867399,0.7584627457937141,2,1.0,0.3116732243596638,0.61
+175,18,0.4074829661064698,0.0,1.1412322581191257,0.0008160200240219079,0.03379295526199197,0.7553099157374611,2,1.0,0.25827655368823277,0.59
+175,19,0.5106773529459165,0.0,1.1607834450288734,0.0008059509325352244,0.03458888581906768,0.751682275088363,2,1.0,0.30225784315305526,0.58
+175,20,0.42980335179839796,0.05,1.1638271155668682,0.0008260777078766695,0.034401180106071794,0.7368229686068394,2,1.0,0.26601117266132657,0.5599999999999999
+175,21,0.39937155562297605,0.0,1.190111940036092,0.0008112163092947308,0.03450842226041996,0.7461656291211718,2,1.0,0.23123851874325368,0.5399999999999999
+175,22,0.5002930421339236,0.0,1.207212471960077,0.0008003415773926925,0.0347727766671075,0.7429172875656515,2,1.0,0.2676434737797453,0.5299999999999999
+175,23,0.493578158336185,0.05,1.2080676975722036,0.000817088814929743,0.03487569649355447,0.7281582142441615,2,1.0,0.3119271944539501,0.5199999999999999
+175,24,0.5155177145484711,0.05,1.2125574718998364,0.000827334525444378,0.03572137911891821,0.7272645168227693,2,1.0,0.3517257151615702,0.5149999999999999
+175,25,0.49937857529412377,0.05,1.2148059853063766,0.0008118390219566247,0.03459170123906723,0.7268244477947586,2,1.0,0.36459525098041257,0.5099999999999999
+175,26,0.5098025614481851,0.05,1.2157437636612898,0.0007980641222887934,0.03523179759229992,0.7266436839969116,2,1.0,0.3993418714939507,0.5049999999999999
+175,27,0.5542932650724831,0.05,1.2156888226026947,0.0007850898255420313,0.03465310872427907,0.7266597510275277,2,1.0,0.4476442169082771,0.4949999999999999
+175,28,0.6184883030372569,0.1,1.1225375729881772,0.0007178399767199361,0.03292155860967903,0.7302766728847053,2,1.0,0.4949610101241898,0.46499999999999986
+175,29,0.5824703234142252,0.15000000000000002,1.140740019663621,0.0007450043230737018,0.033407104357803474,0.7115183998745237,2,1.0,0.5415677447140842,0.45499999999999985
+175,30,0.581326856187798,0.10000000000000002,1.1404197392056528,0.0007432229520281988,0.03310379517489208,0.7267298238544054,2,1.0,0.5710895206259936,0.44999999999999984
+175,31,0.6569301218366908,0.10000000000000002,1.1350977326514506,0.0007331317111964172,0.03327295719198449,0.7277894623475291,2,1.0,0.6231004061223024,0.4199999999999998
+175,32,0.6065705832321306,0.15000000000000002,1.1790661904887625,0.0009529173244366184,0.03648700618145041,0.7035015261812506,2,1.0,0.6552352774404356,0.4149999999999998
+175,33,0.5360041675325833,0.10000000000000002,1.2048641484413323,0.0009201753356852866,0.036656460258483195,0.713674050525695,2,1.0,0.6200138917752777,0.3949999999999998
+175,34,0.6271367256722044,0.05000000000000002,1.2195942747124282,0.00090510074990788,0.03603180563766835,0.725835581562176,2,1.0,0.6904557522406813,0.3849999999999998
+175,35,0.5437025126814569,0.10000000000000002,1.2085312775236385,0.0009238579983002306,0.03664897893927667,0.7129226026953581,2,1.0,0.6456750422715231,0.36499999999999977
+175,36,0.6262401632639402,0.05000000000000002,1.2349947563060901,0.0008938176408544087,0.03604142380411446,0.7227647987502266,2,1.0,0.6874672108798007,0.35499999999999976
+175,37,0.6262155428070006,0.10000000000000002,1.2241784093056993,0.0009098882688161156,0.03686471396660525,0.7097153156565783,2,1.0,0.7540518093566689,0.34499999999999975
+175,38,0.7125616935585865,0.10000000000000002,1.2260187687320574,0.0009085346599632647,0.03661647583844421,0.7093365776394893,2,1.0,0.8085389785286216,0.3149999999999997
+175,39,0.6809749326030026,0.15000000000000002,1.016803058685562,0.00051436180789068,0.028402492179179284,0.736366527567245,2,1.0,0.8699164420100085,0.3049999999999997
+175,40,0.675930237864395,0.10000000000000002,1.0580331550803008,0.0005699815397742023,0.02967136018648795,0.74284853178348,2,1.0,0.9197674595479833,0.2949999999999997
+175,41,0.6092720189073644,0.10000000000000002,1.070163953441326,0.0006127310427953324,0.030775509068847202,0.7405080040212088,2,1.0,0.8642400630245478,0.2749999999999997
+175,42,0.6764173898991422,0.05000000000000002,1.0992419601853942,0.0006033784644019915,0.030805606711165806,0.7492377886271366,2,1.0,0.8880579663304743,0.2699999999999997
+175,43,0.6641710267901331,0.10000000000000002,1.1023491106108338,0.0006047576189533014,0.03103648918238892,0.73427884291771,2,1.0,0.9139034226337773,0.2649999999999997
+175,44,0.6144573712188701,0.10000000000000002,1.1232634632443075,0.0006194891033101605,0.03138588051367202,0.7301724245183507,2,1.0,0.8815245707295672,0.2449999999999997
+175,45,0.7531616639284772,0.05000000000000002,1.1511505365039065,0.0006109201342275264,0.03125639977885401,0.7393566894686144,2,1.0,0.943872213094924,0.2149999999999997
+175,46,0.7041132842482218,0.10000000000000002,1.1244982196094764,0.0005914301680412759,0.030755186843785705,0.7299401454020105,2,1.0,0.9803776141607394,0.2099999999999997
+175,47,0.72,0.05000000000000002,1.1426202297338695,0.0006070798111614843,0.03100559281699646,0.7409986655940268,2,1.0,1.0,0.19999999999999968
+175,48,0.71,0.05000000000000002,1.154476140814266,0.0006371318369314883,0.031922640318023374,0.7387051890826947,2,1.0,1.0,0.19499999999999967
+175,49,0.636976737422368,0.05000000000000002,1.1593067480514878,0.0006405071941034393,0.03184708375288993,0.7377704054860751,2,1.0,0.9565891247412271,0.17499999999999968
+176,0,0.18599647407266948,0.0,1.3387844526229806,0.0007123253559643225,0.035589060023815025,0.7170328610340493,1,0.13940120407917553,0.25735350881652685,0.01
+176,1,0.12643364394709694,0.0,1.3363307362617665,0.000715070480213602,0.036220003520193174,0.717529334077617,1,0.18994585993087676,0.19984197657096692,0.06999999999999999
+176,2,0.24839792908861444,0.0,1.3392993145025418,0.0007567137787917715,0.03663002851219429,0.7169103686622988,1,0.2607048054876401,0.2571708238931347,0.06999999999999999
+176,3,0.16708800392234785,0.0,1.3695871878970878,0.0007193695451828727,0.03663890854827133,0.7107386286951871,1,0.27686833806065514,0.23394695200372845,0.13
+176,4,0.15295691114918983,0.0,1.3728048547638374,0.0007163608921370859,0.036746995202535854,0.7100779015092432,1,0.3250002920739937,0.1973560297443068,0.19
+176,5,0.2875493363162317,0.0,1.3109138587155837,0.0007331854771927291,0.03585116137966961,0.7226449904875046,1,0.3777923057729832,0.25107343098562523,0.19
+176,6,0.2029142746538436,0.0,1.3697617077691646,0.0007192122575224017,0.036587115475368345,0.7107028126475193,1,0.4039499391851463,0.20510598646347467,0.25
+176,7,0.2710684527835227,0.0,1.3585322855882684,0.0006944586929825882,0.036154119994451166,0.7130162867903674,1,0.4329789324339268,0.23175275477216115,0.3
+176,8,0.2688889901228629,0.0,1.35750105032952,0.000691896523516356,0.03609785775230826,0.713228304076259,1,0.46680162024202937,0.2516947434605088,0.35
+176,9,0.23713984398604737,0.0,1.3060241746355898,0.0007054813789362461,0.03578383455733126,0.7236350393556393,1,0.49790522945650867,0.20957671225423116,0.41
+176,10,0.3102833328768224,0.0,1.3171323736020482,0.00069917036897983,0.03489719852497136,0.7214105672184632,1,0.5371472188350574,0.24093935428184102,0.45999999999999996
+176,11,0.3805093634890126,0.0,1.3219367601198966,0.0006943802832412914,0.035828148594098955,0.7204458974284389,1,0.591690947971648,0.311391772329786,0.45999999999999996
+176,12,0.293165496763151,0.0,1.3257267422377612,0.0007106389567559717,0.03545169184358924,0.7196753839127528,1,0.6185660300974094,0.25555795409685905,0.52
+176,13,0.3820333568495923,0.0,0.8953890797157851,0.0003276818543203192,0.023104830653693485,0.7980184815420306,1,0.669423503137921,0.2924504358377331,0.53
+176,14,0.45014709915034845,0.05,0.8809906827714122,0.0003162911689169848,0.022946516727396706,0.7880776572267608,1,0.7380545541236436,0.3727600173569106,0.53
+176,15,0.4636974575915668,0.1,0.936262672765193,0.0003888313140986473,0.02485029787804373,0.7654795419823265,1,0.7878627810836089,0.42648494737434556,0.54
+176,16,0.47706785677193586,0.05,1.3095760769796883,0.0006558926564431389,0.03449582837292124,0.7076736317483616,1,0.8436387218289368,0.4726476804393601,0.55
+176,17,0.5581279780100412,0.05,0.888619059608863,0.0006848549587931234,0.02948727275553948,0.7866771568456897,1,0.898286954874044,0.545758479347086,0.55
+176,18,0.5511858436111203,0.1,0.9131191165009847,0.000677197145758058,0.029393101745739225,0.7695064559056191,2,0.934782035640372,0.5800404371233007,0.6000000000000001
+176,19,0.4948162032268789,0.1,1.1621127730064331,0.000838080990709058,0.0344038246591702,0.7223625562597404,2,0.9653908385624799,0.5230980324333698,0.5800000000000001
+176,20,0.5783401525233128,0.05,1.181913035995073,0.000826825802814746,0.03525381600592967,0.7333005570814944,2,1.0,0.5611338417443761,0.5750000000000001
+176,21,0.652415953054338,0.1,1.1788824346145403,0.000814220667325165,0.03431307656934277,0.7189964513053694,2,1.0,0.6080531768477935,0.545
+176,22,0.5143741688702581,0.15000000000000002,1.2497814918584127,0.0008012524579722833,0.03509608429084636,0.6886072287597462,2,1.0,0.5479138962341936,0.525
+176,23,0.4801948003418619,0.10000000000000002,1.1696440064950833,0.0008690146101493314,0.03535447523889197,0.7208371545596692,2,1.0,0.5006493344728733,0.505
+176,24,0.5812681058001131,0.05000000000000002,1.1856602269082153,0.0008596584037919258,0.035520307400549456,0.732554210567914,2,1.0,0.5375603526670437,0.495
+176,25,0.5839645408575604,0.10000000000000002,1.1792863404190528,0.0008747614978041456,0.03496584436317953,0.7188903703531047,2,1.0,0.5798818028585349,0.49
+176,26,0.6082103973005661,0.10000000000000002,1.1879805127380254,0.0008530357654222558,0.034932361259232436,0.717138866423863,2,1.0,0.6273679910018873,0.48
+176,27,0.6746276144384428,0.10000000000000002,1.2284155845724645,0.0008206861222055384,0.03515047500271334,0.708878418538697,2,1.0,0.6820920481281427,0.44999999999999996
+176,28,0.625433620285964,0.15000000000000002,1.227789117287881,0.0008481609160842495,0.03634573791526399,0.6932833772227278,2,1.0,0.7181120676198801,0.44499999999999995
+176,29,0.6124359254022846,0.10000000000000002,1.2487711538646005,0.0008248818643815557,0.03584854619475509,0.7046581062548988,2,1.0,0.7414530846742825,0.43999999999999995
+176,30,0.7084180876234267,0.05000000000000002,1.2551396182169963,0.000811481381306433,0.03610801035677286,0.7187434868178497,2,1.0,0.794726958744756,0.4099999999999999
+176,31,0.6583193817349045,0.10000000000000002,1.248048558174396,0.0008371031703111977,0.03589669945828093,0.7048033816611282,2,1.0,0.8277312724496815,0.4049999999999999
+176,32,0.6491785197402876,1.3877787807814457e-17,1.2951893903716214,0.00063714279820052,0.03431773276688234,0.7258238007545027,2,1.0,0.8639283991342923,0.3999999999999999
+176,33,0.6932087601887694,0.0,1.278878844979436,0.0006232976254514311,0.03410279735165524,0.7290631448430979,2,1.0,0.9106958672958982,0.3899999999999999
+176,34,0.7571212148744555,0.0,1.283878318663431,0.0006316514133749817,0.03304955034522638,0.7280711604471279,2,1.0,0.9570707162481851,0.3599999999999999
+176,35,0.7083923172587159,0.0,1.2872659034129317,0.000640382789557986,0.03455624284600571,0.7273964937795425,2,1.0,0.9946410575290532,0.35499999999999987
+176,36,0.6367751097260822,0.0,1.2791856116543856,0.0006316821909412006,0.03294425277898615,0.7289992320548417,2,1.0,0.955917032420274,0.33499999999999985
+176,37,0.77,0.0,1.2977580563915936,0.0006375726806209688,0.0346529018249679,0.7253121592410973,2,1.0,1.0,0.3049999999999998
+176,38,0.6385579427104973,0.05,1.0598880544862843,0.0006702198870485695,0.031463645219741085,0.756534245356913,2,1.0,0.9618598090349908,0.2849999999999998
+176,39,0.7045158851408688,0.0,1.091902089142999,0.0006655263171796882,0.03132987199108383,0.7643659783750612,2,1.0,0.9817196171362295,0.2799999999999998
+176,40,0.77,0.05,1.086400495771831,0.0006634987230707855,0.03173579283179987,0.7516202727908081,2,1.0,1.0,0.2499999999999998
+176,41,0.71,0.1,1.0823380970302816,0.0006574383403012198,0.03143652260230778,0.738144547605396,2,1.0,1.0,0.2449999999999998
+176,42,0.69,0.05,1.0926248712674593,0.000661529053659195,0.0311952051810087,0.7504571800352766,2,1.0,1.0,0.2399999999999998
+176,43,0.69,0.05,1.0839577478886528,0.0006590188349765283,0.03152999072571871,0.7520776929116054,2,1.0,1.0,0.2349999999999998
+176,44,0.69,0.05,1.0819389195066724,0.0006573365932312325,0.03037206458873764,0.7524545523641514,2,1.0,1.0,0.2299999999999998
+176,45,0.69,0.05,1.0786606201179176,0.000654292711782031,0.031213476436444603,0.7530658169324057,2,1.0,1.0,0.22499999999999978
+176,46,0.69,0.05,1.0744908271680589,0.0006503059387352088,0.030521074309237804,0.7538418831242951,2,1.0,1.0,0.21999999999999978
+176,47,0.77,0.05,1.0697309039921885,0.0006455855651090721,0.030494939017451744,0.7547258349498429,2,1.0,1.0,0.18999999999999978
+176,48,0.75,0.1,1.0632378700229357,0.0006472868410507808,0.030631918933989456,0.7418234371036813,2,1.0,1.0,0.15999999999999978
+176,49,0.75,0.1,1.0643629981517033,0.0006480573868626056,0.03043373904482307,0.7416075970249053,2,1.0,1.0,0.12999999999999978
+177,0,0.088719551769049,0.05,1.3422923726489109,0.00071259505749848,0.03564953600001915,0.7008360937361066,1,0.11960177392821965,0.15619643631390706,0.06
+177,1,0.1627717837078667,0.0,1.3335713928637818,0.0007632239669348203,0.036310198773016784,0.718068768126638,1,0.1637753527533461,0.18483470081398526,0.11
+177,2,0.2297425938648423,0.0,1.3343635694386138,0.0007588880399056884,0.03652294863828517,0.7179101236226935,1,0.21453737009736412,0.2488483811025496,0.11
+177,3,0.252415541855991,0.0,1.37180894858507,0.0007173316914755061,0.03665848561088083,0.71028248355347,1,0.277764581166374,0.31732646149253385,0.11
+177,4,0.2677180416227581,0.0,1.3705502352633916,0.0007182255081518137,0.03672313630394874,0.7105410669467671,1,0.3207300956518676,0.35154169381534806,0.16
+177,5,0.3275317826371761,0.0,1.3719859581243148,0.0007147559959155786,0.03670964354156838,0.7102471170862539,1,0.37213999807065223,0.39094261104149264,0.16
+177,6,0.34234698650860707,0.0,1.3702538713981103,0.0007157980913839377,0.03653823614273237,0.7106030154081164,1,0.4315787273954313,0.437648106400687,0.17
+177,7,0.40587012976788506,0.0,1.381232103146834,0.0007055572987010105,0.03654519049333011,0.7083444041877365,1,0.48862392803333193,0.5161725165207297,0.17
+177,8,0.3990072085469559,0.0,1.3823738427791579,0.0007036821114317878,0.03650455376894652,0.7081092482890763,1,0.5161978996215727,0.5611264789313517,0.22000000000000003
+177,9,0.446906906325705,0.0,1.3818966117804885,0.0007054474705167502,0.03632615929521613,0.7082071480032962,1,0.5743342403181518,0.6196330740478397,0.23000000000000004
+177,10,0.5063952134560208,0.0,1.3384694466335174,0.0006703199459926036,0.03555188389558088,0.7171138132312633,1,0.6452504694226509,0.6685251638603098,0.23000000000000004
+177,11,0.5059338841845465,0.05,1.128337092839785,0.0009497234188953395,0.03540053970149473,0.7435997959035723,1,0.6886033839681278,0.7164089993190063,0.28
+177,12,0.547020828838007,0.05,1.1282667188984477,0.0009367260023887379,0.035584135648591406,0.7436181690598268,1,0.7317057466439691,0.7697460583753925,0.29000000000000004
+177,13,0.48612134552829545,0.1,1.154741787678204,0.0009107882223932996,0.035935724044084065,0.7238093490042329,1,0.7629496972487624,0.7302965049707622,0.35000000000000003
+177,14,0.5568425203104823,0.1,0.44603290670733176,5.9288407721975436e-05,0.009636905671665214,0.8420882540464516,1,0.7967797965357457,0.7598986384099048,0.4
+177,15,0.5986190673416952,0.2,0.43292508577018235,5.515156528344649e-05,0.009151476581396634,0.8230230356716574,1,0.8329544300826217,0.823616722709259,0.41000000000000003
+177,16,0.6121519339500185,0.25,1.0850572410679857,0.0006081179157692403,0.031027056040160966,0.6918380677243967,1,0.8831523495606373,0.8768287053459854,0.42000000000000004
+177,17,0.6371722409849934,0.25,1.1210095469589483,0.0006160149498250136,0.030861448382487854,0.684117293762525,1,0.9082881177507507,0.9309046659074357,0.43000000000000005
+177,18,0.7199630875785032,0.25,1.1410690979753888,0.0006173276122830633,0.0319357871157818,0.6797659138100686,1,0.9792927472850628,0.9907020867624375,0.43000000000000005
+177,19,0.7,0.3,1.1679986270172396,0.0006109648265966833,0.03189992619803371,0.6571860869445628,1,1.0,1.0,0.48000000000000004
+177,20,0.6799999999999999,0.3,1.1917926825745973,0.000664528226631116,0.03237440957490148,0.6517812808039243,1,1.0,1.0,0.53
+177,21,0.71,0.3,1.2023873264804494,0.0007098344827871529,0.034316276280965126,0.6493522125006262,1,1.0,1.0,0.54
+177,22,0.73,0.35,1.2179337087802804,0.0007016926654086216,0.03357675401519093,0.6284709868197725,1,1.0,1.0,0.54
+177,23,0.71,0.35,1.2465180280731383,0.0006928097247282566,0.03365836787891067,0.6217767210130534,1,1.0,1.0,0.54
+177,24,0.6375912555837989,0.3,1.264968481792792,0.0006841277168937826,0.03497252312079536,0.634985077607843,2,1.0,0.9586375186126631,0.6000000000000001
+177,25,0.6015484772835893,0.19999999999999998,1.2856076575819482,0.000633726758418584,0.03353209681012163,0.6644357829883327,2,1.0,0.9051615909452977,0.5800000000000001
+177,26,0.7144112145188622,0.09999999999999998,1.289671597540353,0.0006444565598772981,0.03415942767153476,0.6961517966000546,2,1.0,0.9813707150628743,0.5700000000000001
+177,27,0.626380014818517,0.09999999999999998,1.2821762163660813,0.0006397065881774862,0.034330476741627036,0.6977369217249135,2,1.0,0.9212667160617236,0.55
+177,28,0.6966868609005241,0.0,1.2941448288200785,0.0006569538544682938,0.03423751344459272,0.726023741940386,2,1.0,0.9556228696684136,0.545
+177,29,0.77,0.0,1.2755391922206702,0.0006462132430532152,0.03378715576724683,0.7297132825456915,2,1.0,1.0,0.515
+177,30,0.6380808089972825,0.0,1.2921202226510662,0.0006448439417318227,0.034288332263823065,0.72643109183524,2,1.0,0.9602693633242748,0.495
+177,31,0.77,0.0,1.303119373837371,0.0006633504702078929,0.03483609853874469,0.7242324143588911,2,1.0,1.0,0.46499999999999997
+177,32,0.75,0.0,1.3162759918388254,0.0006616736350198814,0.03457138549425336,0.721597713948024,2,1.0,1.0,0.43499999999999994
+177,33,0.75,0.0,1.3260509968379204,0.0006615154603809822,0.035513648079121454,0.7196297862583522,2,1.0,1.0,0.4049999999999999
+177,34,0.75,0.0,1.3328932195744572,0.000662379189009573,0.034580762900045206,0.7182468586692446,2,1.0,1.0,0.3749999999999999
+177,35,0.75,0.0,1.3371420928924465,0.0006639587304593903,0.03578325463384833,0.7173855841049365,2,1.0,1.0,0.34499999999999986
+177,36,0.75,0.0,1.3391787957468755,0.0006657078938722362,0.03480482638349369,0.7169717631704676,2,1.0,1.0,0.31499999999999984
+177,37,0.75,0.0,1.0104907348516834,0.00041869464954264206,0.025907405491866466,0.7787973938798675,2,1.0,1.0,0.2849999999999998
+177,38,0.71,0.0,1.0336647816972482,0.0004495233063059531,0.026644876350813057,0.7747686149597643,2,1.0,1.0,0.2799999999999998
+177,39,0.69,0.0,1.0160243717382464,0.0004311162854550925,0.026295524638706408,0.7778383395454374,2,1.0,1.0,0.2749999999999998
+177,40,0.72,0.0,0.9985432069974347,0.00041334582467226284,0.025555679072415533,0.7808505917923494,2,1.0,1.0,0.2649999999999998
+177,41,0.71,0.05,1.022979716772149,0.00044257378918793894,0.026449433239098524,0.7633501355390301,2,1.0,1.0,0.2599999999999998
+177,42,0.77,0.05,1.0182608786997434,0.00043474121298329316,0.02623864252590404,0.7642043413049061,2,1.0,1.0,0.2299999999999998
+177,43,0.72,0.1,1.0401373663301048,0.0004653149030986,0.027007611436023,0.746291821783205,2,1.0,1.0,0.21999999999999978
+177,44,0.6356793158696801,0.05,1.0701579225770073,0.0005007406364157546,0.02812041648290628,0.754700412487665,2,1.0,0.9522643862322671,0.1999999999999998
+177,45,0.77,0.0,1.0860388142509447,0.0004954549510399501,0.028487104360605815,0.765481446913333,2,1.0,1.0,0.1699999999999998
+177,46,0.71,0.05,1.0922295407031648,0.0005138870030504764,0.028875714181123214,0.750586489901304,2,1.0,1.0,0.16499999999999979
+177,47,0.72,0.0,1.0873059839562726,0.0005044891769671109,0.02870882693553879,0.7652506427515242,2,1.0,1.0,0.15499999999999978
+177,48,0.71,0.0,1.0938463757863346,0.000521201191225481,0.028742676533815625,0.7640676501541085,2,1.0,1.0,0.14999999999999977
+177,49,0.6353653846777532,0.0,1.078762921565771,0.0005033003976027436,0.028295900464656354,0.7667822824367835,2,1.0,0.9512179489258438,0.12999999999999978
+178,0,0.19533733684069937,0.0,1.3411090424267151,0.0007130571043049683,0.03563181053531215,0.71656067424761,1,0.15567478890315345,0.2695038690819856,0.01
+178,1,0.21140300569096332,0.0,1.340551902104191,0.0007148216973121259,0.03627174202925486,0.7166731000040221,1,0.19642864734104487,0.3088432637386587,0.060000000000000005
+178,2,0.25515110372535277,0.0,1.3399250400604996,0.0007124104134522613,0.03570351043406631,0.7168013477552904,1,0.22855432536115577,0.3838569661631608,0.07
+178,3,0.1956952348015197,0.0,1.3685592815304204,0.0007208484599453685,0.03663508649680267,0.7109493015531229,1,0.2572882198841777,0.35214785947352506,0.13
+178,4,0.29432882311835473,0.0,1.3721102206742226,0.0007175593008642004,0.03675203511541849,0.7102203897834526,1,0.3222855529486471,0.4050962652877609,0.14
+178,5,0.2259974626208674,0.0,1.3750934382200104,0.0006924314989091055,0.03643640429781291,0.7096163925752995,1,0.33710183942384697,0.3600393960750699,0.2
+178,6,0.32980464546382954,0.0,1.37272069227951,0.0007160511568701432,0.03661435134317344,0.7100953550284129,1,0.3987820319798032,0.43410311423632814,0.21000000000000002
+178,7,0.27068789700962226,0.0,1.3726224597917145,0.0006913219484898167,0.036306174574692686,0.7101257577260028,1,0.4309633649813623,0.3995023975538183,0.27
+178,8,0.3583210065079274,0.0,1.35565655288235,0.0006885678762856671,0.036071063248858885,0.7136067780881511,1,0.4641504535187332,0.45289449258790265,0.28
+178,9,0.36950270377206273,0.0,1.3801484286010972,0.0007069483816539508,0.03637321656954774,0.7085676582667161,1,0.4972783902931737,0.48485089056483976,0.33
+178,10,0.41053357228249754,0.0,1.3792972392892024,0.000708563976928612,0.03660454462682179,0.7087427302487334,1,0.5477812836732503,0.5293670766561996,0.34
+178,11,0.42567274134983896,0.0,1.3573962873011738,0.0006892614055250904,0.035903268182865135,0.7132508090578332,1,0.5863760766814905,0.5681370483710576,0.39
+178,12,0.4663408599374814,0.0,1.3554748596719406,0.0006861981930689702,0.03585657163840241,0.7136448781962772,1,0.625975500797619,0.6241647821943828,0.4
+178,13,0.5246480471218414,0.1,0.6069960305879748,0.00021256787209546988,0.016121737479985042,0.8194430754435887,1,0.6863594727425986,0.6814074388731065,0.4
+178,14,0.5430671767874092,0.2,0.6792970069197506,0.0002352751605224652,0.017628468420373362,0.7841865299274938,1,0.7430591413003781,0.7433215911075897,0.4
+178,15,0.5857768811654578,0.2,0.7533965263015847,0.00026167141022474,0.019226518811349153,0.7713729897069781,1,0.8198617063745106,0.7960842797812635,0.4
+178,16,0.6152653944861397,0.2,1.3247276340437755,0.000767929352668328,0.03655389040613592,0.6555976140727942,1,0.853675554564174,0.8549298346289295,0.4
+178,17,0.5486670668955238,0.2,1.1108650918175622,0.0005625669656359825,0.029915208727301263,0.7022446715021619,1,0.8689897392746321,0.8150688604980085,0.46
+178,18,0.6737339009425676,0.15000000000000002,1.099101573801872,0.0005518645481502514,0.030501691841523033,0.7200671456723962,1,0.9375459970589322,0.8853093399064713,0.46
+178,19,0.6943824032018513,0.2,1.1133355462199628,0.0005434090327853784,0.029538781405573276,0.7017358683818715,1,0.9921087041130124,0.9571478558743233,0.46
+178,20,0.71,0.2,1.1484933883396806,0.0005578585139298302,0.031024375720698865,0.6943193098882859,1,1.0,1.0,0.47000000000000003
+178,21,0.69,0.2,1.1712114778886358,0.0005611148222242658,0.031406759550140356,0.689475057267096,1,1.0,1.0,0.48000000000000004
+178,22,0.73,0.2,1.1898068800952335,0.0005669519281414962,0.031311665794106165,0.6854773180467658,1,1.0,1.0,0.48000000000000004
+178,23,0.6391666222865653,0.25,1.208474001695449,0.0005718447911830606,0.03242882002010511,0.6649389123073972,1,1.0,0.9638887409552179,0.54
+178,24,0.71,0.2,1.2045629714196624,0.0005689866316134337,0.03175253023138829,0.6822863766569023,1,1.0,1.0,0.55
+178,25,0.73,0.25,1.2116239874774983,0.0005691593342383458,0.03234161326626862,0.6642379443568169,1,1.0,1.0,0.55
+178,26,0.71,0.25,1.2343551489035556,0.0005822784272007971,0.032903471044938716,0.6591436341009109,1,1.0,1.0,0.56
+178,27,0.6354725466210347,0.25,1.245540496533018,0.0005896943518228559,0.03193470753804804,0.6566227858733518,2,1.0,0.951575155403449,0.6200000000000001
+178,28,0.72,0.15,1.3195542957996216,0.0006731021716222102,0.03546524270921344,0.6735091152950043,2,1.0,1.0,0.6100000000000001
+178,29,0.7,0.15,1.3143720014321043,0.0006674636891737613,0.03468102029378777,0.6746501227547184,2,1.0,1.0,0.6000000000000001
+178,30,0.77,0.09999999999999999,1.313972507578344,0.0006652899867069168,0.03506378567285806,0.6909782986986661,2,1.0,1.0,0.5700000000000001
+178,31,0.72,0.09999999999999999,1.3235055402938176,0.0006637057234185112,0.03502314461919378,0.6889397178466169,2,1.0,1.0,0.56
+178,32,0.6323341314192238,0.0,1.3220568775863262,0.00066244055796469,0.0350722238817754,0.720434570748811,2,1.0,0.9411137713974128,0.54
+178,33,0.7172680003350504,0.0,1.3249798950888592,0.0006697951698287207,0.035400112167849586,0.7198425043391321,2,1.0,0.9908933344501683,0.53
+178,34,0.77,0.0,1.3226893707025917,0.0006670397505032237,0.035002100875427246,0.720305310282296,2,1.0,1.0,0.5
+178,35,0.71,0.0,1.3342577644927327,0.0006686954349278433,0.03554231087776914,0.7179680778584132,2,1.0,1.0,0.495
+178,36,0.69,0.0,1.328587394388736,0.0006656495616245922,0.03510675643907697,0.7191160806555081,2,1.0,1.0,0.49
+178,37,0.69,0.0,1.3225807322869731,0.0006622132457224161,0.03518224949950847,0.7203291413106572,2,1.0,1.0,0.485
+178,38,0.631407970229307,0.0,1.3160106392980602,0.0006583450097953585,0.034583747224257375,0.7216523559123108,2,1.0,0.9380265674310233,0.46499999999999997
+178,39,0.7000633525695114,0.0,1.325273700310149,0.0006703814631156048,0.03501957234257715,0.7197830125214515,2,1.0,0.9668778418983712,0.45999999999999996
+178,40,0.6223874837373546,0.0,1.3183571688890734,0.0006668971131271113,0.03515045466864612,0.7211773235897138,2,1.0,0.9079582791245154,0.43999999999999995
+178,41,0.7067772379214718,0.0,1.3258511887454956,0.0006803778000194336,0.03493675882157586,0.7196624874904696,2,1.0,0.9559241264049061,0.42999999999999994
+178,42,0.6163279464790813,0.0,1.325300134031498,0.0006767003946383184,0.03545368881159141,0.7197751318938655,2,1.0,0.8877598215969378,0.4099999999999999
+178,43,0.6854222846960722,0.0,1.3309376998344389,0.0006885656560895454,0.035517844700802485,0.7186318352510593,2,1.0,0.9180742823202411,0.4049999999999999
+178,44,0.7583747544087212,0.0,1.3250348925920232,0.0006867938478766188,0.03563153069341077,0.7198245564594031,2,1.0,0.961249181362404,0.3749999999999999
+178,45,0.7189497778497533,0.0,1.3377458198439385,0.0006836327748896135,0.035461608765667195,0.7172551865910034,2,1.0,0.9964992594991776,0.3649999999999999
+178,46,0.626301293871395,0.0,1.336944426980878,0.0006800338852182285,0.03555878717381404,0.7174191401112504,2,1.0,0.9210043129046499,0.34499999999999986
+178,47,0.7610753541156906,0.0,1.341799432816955,0.0006900819003184446,0.035685718732103855,0.7164297692724543,2,1.0,0.9702511803856355,0.31499999999999984
+178,48,0.71,0.05,1.019111166822436,0.0005016217653102957,0.02730520715648787,0.7640269734057717,2,1.0,1.0,0.30999999999999983
+178,49,0.77,0.0,1.0138858109450812,0.00049112214598305,0.027088752724000464,0.7781869610120362,2,1.0,1.0,0.2799999999999998
+179,0,0.184889603272909,0.0,1.3387060269131168,0.0007155636570762251,0.03557742440693057,0.7170474590452771,1,0.1366159042997509,0.25691345589332065,0.01
+179,1,0.25278018228416654,0.0,1.338121640096821,0.0007167781010558718,0.03625666378822303,0.7171655178068161,1,0.2063771271819897,0.33516062590156726,0.01
+179,2,0.2542764001162024,0.0,1.3731035975822992,0.0007148941124120847,0.03665797788422459,0.7100170002789423,1,0.26540216124495764,0.3712854789348907,0.060000000000000005
+179,3,0.2553014512778866,0.0,1.374276872965527,0.0007119427212915647,0.03663660631321614,0.7097765876817179,1,0.2967324551343853,0.4048169732695061,0.11000000000000001
+179,4,0.22103527108141233,0.0,1.370410712720046,0.0006905218806729046,0.03612974620767873,0.7105811569922901,1,0.3339120033918146,0.3472202329809241,0.17
+179,5,0.3224771675008504,0.0,1.374181949450178,0.0007122132228983176,0.03671686724507345,0.7097960295075185,1,0.39097207476138685,0.4187898044478835,0.18000000000000002
+179,6,0.330899887839065,0.0,1.3662274225950422,0.0006889981722069063,0.03603405664305669,0.7114413410887256,1,0.42193136570386897,0.444079699475703,0.23000000000000004
+179,7,0.334434210759985,0.0,1.3799269249844797,0.0007080196216676755,0.03655002504526862,0.7086129541662012,1,0.4654069387098854,0.47180594070508364,0.28
+179,8,0.3038049844760271,0.0,1.3790289934246225,0.0007092269302563176,0.03654373519421612,0.7087978265239464,1,0.49492052509611906,0.4352760023079516,0.34
+179,9,0.28474033943345967,0.0,1.335316181236399,0.0007277918823163892,0.03621800737385558,0.7177297651793701,1,0.5263552846493087,0.40171996602067217,0.4
+179,10,0.3888123622771328,0.0,1.345701326556888,0.000721125974278909,0.03608378812593355,0.7156237635898145,1,0.5706334945553274,0.43030213060922723,0.41000000000000003
+179,11,0.40436727351340324,0.0,1.3417302179196913,0.0007213551452077507,0.03628354077029203,0.7164311240118604,1,0.6115217193777233,0.46778223910400046,0.46
+179,12,0.4743502835597643,0.0,1.3210018135774817,0.0006710393943400032,0.03523268409424306,0.7206435581233406,1,0.6730498366139287,0.5292761358162976,0.46
+179,13,0.3867227461162872,0.0,1.3179952356382687,0.000672287615760767,0.03478030784323735,0.7212479280066108,1,0.6947319491230272,0.4785552130774257,0.52
+179,14,0.5049499259456474,0.0,1.330406399174302,0.0006728108787849517,0.03516846486338501,0.7187456215401592,1,0.759804963685146,0.5300606288528211,0.52
+179,15,0.5220974877030731,0.0,1.3270655171895969,0.0006730074223604008,0.03525028084260519,0.7194204088439242,1,0.8143497981738287,0.5902501944741101,0.53
+179,16,0.5824365009129824,0.05,0.563099977901005,0.00023057402864480454,0.016802201672528293,0.8363666547623934,1,0.8772709549656826,0.6513055555833114,0.53
+179,17,0.5974572493735423,0.05,1.3357904719793459,0.0007183994383125299,0.03591258373469909,0.7021951036832814,1,0.93019565040849,0.7062959057685693,0.54
+179,18,0.610839464254993,0.0,1.348224801687448,0.0007124632096162827,0.0360668081583035,0.7151134706374338,1,0.9741943034280008,0.766238193517309,0.55
+179,19,0.6324054410002639,0.0,1.3571544343291975,0.0007082968343229035,0.03620578744423081,0.7132924855985625,1,1.0,0.8080181366675464,0.56
+179,20,0.6519881461614201,0.0,1.0652284933273033,0.0004352130036099712,0.027305325316352196,0.7692180369741797,1,1.0,0.8732938205380674,0.5700000000000001
+179,21,0.7072926261108358,0.0,1.0871854034453938,0.00045669595549192263,0.02817437586030826,0.7652894732096799,1,1.0,0.9243087537027859,0.5700000000000001
+179,22,0.6163347881927361,0.05,1.1121569838193501,0.0004712687410305268,0.028635856167565477,0.7468534627789628,2,1.0,0.8877826273091205,0.6300000000000001
+179,23,0.7529437845100084,0.0,1.2879246867083318,0.0007108098972833073,0.03523076928181379,0.7272379041614695,2,1.0,0.9431459483666946,0.6000000000000001
+179,24,0.7050662886659601,0.0,1.303787289967464,0.0007026879340831628,0.03516418170591939,0.7240832803643745,2,1.0,0.9835542955532004,0.5950000000000001
+179,25,0.72,0.0,1.2977246356122907,0.0007021261065709275,0.03518779243175001,0.7252930948698798,2,1.0,1.0,0.5850000000000001
+179,26,0.71,0.0,1.2961539329448997,0.0006947643404881513,0.03495387358668367,0.7256088671206563,2,1.0,1.0,0.5800000000000001
+179,27,0.69,0.0,1.2900244485915784,0.0006940571269739396,0.034993726315062396,0.726827843098265,2,1.0,1.0,0.5750000000000001
+179,28,0.6328322348494425,0.0,1.2835830193769338,0.0006928168102552339,0.03459267056595834,0.7281054040116628,2,1.0,0.9427741161648086,0.555
+179,29,0.7173152535202758,0.0,1.2888591342503124,0.0007093299669504601,0.03514435417082119,0.7270530924255598,2,1.0,0.9910508450675862,0.545
+179,30,0.71,0.0,1.2875432590385594,0.0007012261194582112,0.03474973618739616,0.7273173601721196,2,1.0,1.0,0.54
+179,31,0.69,0.0,1.2813181782761565,0.0007006853849312448,0.034576029570138424,0.7285504259548402,2,1.0,1.0,0.535
+179,32,0.6329857448409302,0.0,1.2747876769956048,0.0006995322899600912,0.03465495139010567,0.7298404539849287,2,1.0,0.9432858161364343,0.515
+179,33,0.7621099230507125,0.0,1.2798367980449812,0.0007168118339225028,0.03499630674791019,0.7288369172555297,2,1.0,0.9736997435023748,0.485
+179,34,0.75,0.0,1.300168720836222,0.0007071616192156622,0.03528419444053439,0.724803851104284,2,1.0,1.0,0.45499999999999996
+179,35,0.71,0.0,1.3177463829582179,0.0006996632676416575,0.035562189473719114,0.7212869502870767,2,1.0,1.0,0.44999999999999996
+179,36,0.77,0.0,1.3111587102039326,0.0006982005380445174,0.03536565782050512,0.7226099377401287,2,1.0,1.0,0.41999999999999993
+179,37,0.6351039233867983,0.0,1.3267599385403717,0.0006921877371216774,0.03561350255299312,0.7194743448901414,2,1.0,0.9503464112893276,0.3999999999999999
+179,38,0.5992347329571778,0.0,1.3304954336324935,0.0007054755188893554,0.03560534220133765,0.7187144158022992,2,1.0,0.8974491098572593,0.3799999999999999
+179,39,0.5892019303256504,0.0,1.3324818609799176,0.0007173418410216803,0.035650508176470135,0.7183078552011936,2,1.0,0.8640064344188345,0.3599999999999999
+179,40,0.5754815828978528,0.0,1.3331849312727855,0.0007278736000105679,0.03614885758121242,0.7181613095889761,2,1.0,0.8182719429928429,0.33999999999999986
+179,41,0.7333066449160965,0.0,1.3329107365915163,0.0007370184705192694,0.03599997388277178,0.7182131033011033,2,1.0,0.8776888163869887,0.30999999999999983
+179,42,0.6842711708575333,0.05,0.8209077977795797,0.0003891445017474978,0.022479578634401268,0.7979150384901151,2,1.0,0.9142372361917779,0.3049999999999998
+179,43,0.6752148432655769,0.0,0.8200245230829228,0.00038068073095526143,0.02226623590996932,0.8098774561234402,2,1.0,0.9507161442185899,0.2999999999999998
+179,44,0.6834592518720453,0.0,0.7885759852282479,0.0003541682412900178,0.021350688501874424,0.8146806553482328,2,1.0,0.978197506240151,0.2949999999999998
+179,45,0.72,0.0,0.7719809051520856,0.0003368182897797258,0.020912789125416817,0.8171782269012017,2,1.0,1.0,0.2849999999999998
+179,46,0.71,0.05,0.7993277810702811,0.00039538471117711983,0.022057107497762914,0.8013703954091935,2,1.0,1.0,0.2799999999999998
+179,47,0.72,0.05,0.7979129876576263,0.0003855055189230793,0.022091192981106365,0.8015986427431143,2,1.0,1.0,0.2699999999999998
+179,48,0.77,0.05,0.8202307345062493,0.00044055694476080625,0.02325441020711353,0.7980076166545094,2,1.0,1.0,0.2399999999999998
+179,49,0.6370227202224179,0.1,0.8575737765645158,0.00043812438689048603,0.023716239611240465,0.7792928118877971,2,1.0,0.9567424007413932,0.2199999999999998
+180,0,0.19050059423287288,0.0,1.3407052835938833,0.00071787795567349,0.035660618869347675,0.7166407131854253,1,0.1435622252367801,0.2675127179999995,0.01
+180,1,0.20185815468440232,0.0,1.3362981531223326,0.0007212806387213407,0.036273129591898684,0.7175334206804781,1,0.17998494164614406,0.2962114170275063,0.060000000000000005
+180,2,0.27033234927313327,0.0,1.335766411237872,0.0007185573702417338,0.03573118158511575,0.7176422848817287,1,0.23166785194800427,0.3641620036377726,0.060000000000000005
+180,3,0.2614166001156637,0.0,1.3742693733590368,0.0007119074314424453,0.0366366484323514,0.7097781470905344,1,0.27330867112045093,0.3858618840783528,0.11000000000000001
+180,4,0.21170062789763838,0.0,1.3749659781276375,0.0007092115673719885,0.03665832394508009,0.7096357413101559,1,0.30205589089664087,0.35327022027938026,0.17
+180,5,0.28190561883166304,0.0,1.3778120883241216,0.0007073422147009221,0.036716358082961746,0.7090497137493001,1,0.3256119302672465,0.39313814412708925,0.22000000000000003
+180,6,0.27992117590686605,0.0,1.3781823891706333,0.0007052147710501457,0.03656201717586106,0.7089741933423942,1,0.3605662941741575,0.4124099098197031,0.27
+180,7,0.3010611545022656,0.0,1.3703311241180558,0.0006968736206788544,0.03628220788712511,0.7105949120968554,1,0.3923601368944215,0.44578368863072704,0.32
+180,8,0.3566215614944477,0.0,1.3710465904064357,0.000700116862675117,0.036316943328906115,0.7104464200956697,1,0.4287897677437878,0.4884838092804066,0.33
+180,9,0.3748602167491648,0.0,1.378806663446443,0.0007095838719231832,0.03634517777460168,0.7088435667376849,1,0.4911048937415058,0.5432450131321261,0.34
+180,10,0.4138466496052755,0.0,1.3373825135077388,0.000689315497245577,0.03582875734854389,0.7173265548108978,1,0.5395979219653761,0.5832912563913129,0.39
+180,11,0.4093245843446619,0.0,1.3349447636964147,0.0006852521875408424,0.035376485160503214,0.7178222394109994,1,0.5659193330116851,0.6041760593019072,0.44
+180,12,0.46871797152128175,0.0,1.3588652506714958,0.0006930885851883547,0.035982648359909775,0.7129487100837696,1,0.5999367503372285,0.6624670296775061,0.45
+180,13,0.4820543248301834,0.0,1.3618185248930101,0.0007027669332537004,0.03630512164864747,0.7123399678072638,1,0.6597414470559565,0.7038160612019958,0.46
+180,14,0.5145863892918202,0.0,0.8002860001544875,0.0002627580476745769,0.019643129669368077,0.8129340082227737,1,0.6962996483908874,0.7362717078500322,0.51
+180,15,0.5557175048264128,0.05,0.7850877765007146,0.00025043331048407095,0.019358449604541434,0.8036730825593909,1,0.7456287882934359,0.7824914297457009,0.52
+180,16,0.5688541555332336,0.1,0.8363549296505794,0.00030429583063176877,0.021434074986258735,0.7829662089577072,1,0.7858920073743332,0.8459731765073903,0.53
+180,17,0.603352452445924,0.1,0.7296158070516244,0.00021382585937744183,0.01833206067197348,0.8005853051155766,1,0.8469568512715717,0.8897251816695798,0.54
+180,18,0.5508262091960574,0.15000000000000002,0.9955652437745904,0.0003730420494294593,0.02527983475929655,0.7405230087427329,2,0.8609126824099496,0.8316892345085836,0.6000000000000001
+180,19,0.5308730288732421,0.05000000000000002,1.2833600901924924,0.0007706764731037012,0.03599785183126793,0.713020330111151,2,0.8949747494466698,0.7921062218896922,0.5800000000000001
+180,20,0.7074578948165058,1.3877787807814457e-17,1.2703183661517445,0.0007923544141949372,0.03570890696509318,0.7306842468902071,2,0.9652657291898616,0.8320496320001807,0.55
+180,21,0.7113032146352866,1.3877787807814457e-17,1.2702209630831927,0.0007415177766640741,0.03489184452124006,0.7307234202852176,2,1.0,0.8710107154509553,0.52
+180,22,0.7241893152384176,0.0,1.2912400468943395,0.0007294785357381123,0.035289561328920124,0.7265723468148062,2,1.0,0.9139643841280586,0.49
+180,23,0.7355874724926792,0.0,1.3100572111844795,0.0007191416264708402,0.03532740888127397,0.7228222823347965,2,1.0,0.9519582416422643,0.45999999999999996
+180,24,0.7024706848397876,0.0,1.3263116463113045,0.0007107572193304547,0.03584001582833014,0.7195573208808834,2,1.0,0.974902282799292,0.45499999999999996
+180,25,0.6321119367571162,0.0,1.3199849075251828,0.0007097125548937014,0.035546425757922606,0.7208326677072393,2,1.0,0.9403731225237209,0.43499999999999994
+180,26,0.7647131165991552,0.0,1.3221780161422192,0.0007237679874474279,0.03603093007490427,0.7203854660197613,2,1.0,0.9823770553305172,0.4049999999999999
+180,27,0.75,0.0,1.3366583084405936,0.0007152508394277547,0.03588819734758004,0.7174628635726565,2,1.0,1.0,0.3749999999999999
+180,28,0.75,0.0,1.3481396647720696,0.0007087064144550161,0.03625154616865134,0.7151323455962034,2,1.0,1.0,0.34499999999999986
+180,29,0.75,0.0,1.356914723223802,0.0007036761353876406,0.03614401539939555,0.7133433952542114,2,1.0,1.0,0.31499999999999984
+180,30,0.75,0.0,0.8207896007098284,0.0004300221966350353,0.023165138348606104,0.8097444221607935,2,1.0,1.0,0.2849999999999998
+180,31,0.71,0.0,0.859047421930311,0.0004318886476458105,0.02372054993424667,0.8037799494696841,2,1.0,1.0,0.2799999999999998
+180,32,0.6386304895313413,0.0,0.8435187470105099,0.0004131461656712554,0.0234252901423505,0.8062234053856318,2,1.0,0.9621016317711375,0.2599999999999998
+180,33,0.77,0.0,0.8539739308657227,0.00041344089370413305,0.02330421509999231,0.8045846970341186,2,1.0,1.0,0.2299999999999998
+180,34,0.72,0.05,0.8916501783015867,0.0004215301996682471,0.024456487602486428,0.7862565645719027,2,1.0,1.0,0.21999999999999978
+180,35,0.77,0.0,0.9200791902265921,0.00047455828511939465,0.025440660607164663,0.7939614617743384,2,1.0,1.0,0.18999999999999978
+180,36,0.6324530946671898,0.05,0.9435957135159754,0.0004779933822856453,0.026214492172409648,0.7773774543549604,2,1.0,0.9415103155572996,0.1699999999999998
+180,37,0.7692629205902641,0.0,0.9673606381290885,0.00048554758311512196,0.026553981641055286,0.7861156157126282,2,1.0,0.9975430686342137,0.1399999999999998
+180,38,0.72,0.05,0.9870971956133834,0.0004945794279161518,0.02706082096037108,0.7697523986643562,2,1.0,1.0,0.12999999999999978
+180,39,0.71,0.0,1.0072546436033496,0.0005350839281124754,0.028050820461982144,0.7793143473614813,2,1.0,1.0,0.12499999999999978
+180,40,0.77,0.0,0.9852532034878392,0.0005105916527785291,0.02705354502949135,0.7830832908364763,2,1.0,1.0,0.09499999999999978
+180,41,0.72,0.05,1.0122590335750885,0.0005290382402902009,0.027743314738892067,0.7652502569258067,2,1.0,1.0,0.08499999999999978
+180,42,0.71,0.0,1.0288269889998976,0.0005646662632857722,0.02844869223048166,0.7755716170480855,2,1.0,1.0,0.07999999999999978
+180,43,0.77,0.0,1.0091611308301622,0.0005410670067290193,0.02814482271971594,0.7789842282492212,2,1.0,1.0,0.04999999999999978
+180,44,0.71,0.05,1.0329636861568712,0.0005607239182594966,0.02852623878725032,0.7614989110182252,2,1.0,1.0,0.04499999999999978
+180,45,0.69,0.0,1.0282712927574997,0.0005491455761438522,0.0282180326459615,0.7756737282510974,2,1.0,1.0,0.039999999999999786
+180,46,0.69,0.0,1.0083359428530052,0.0005241521557256578,0.027360957302943252,0.7791320879895058,2,1.0,1.0,0.03499999999999979
+180,47,0.72,0.0,0.9953259852744342,0.0005058237278456183,0.02735804534115337,0.7813690401513441,2,1.0,1.0,0.024999999999999786
+180,48,0.71,0.05,1.0070237830226818,0.0005381917695707407,0.02768683666358232,0.7661861434619741,2,1.0,1.0,0.019999999999999785
+180,49,0.77,0.05,1.0024484399275413,0.0005270793975346821,0.027254072493378308,0.7670087662809035,2,1.0,1.0,0.0
+181,0,0.20980992458778508,0.05,1.3365165960659122,0.0007203558493862321,0.03562866431670629,0.7020424179216557,1,0.16644738289125313,0.23851113525282172,0.0
+181,1,0.21776557459104037,0.0,1.335769905268404,0.0007217502713527243,0.036263148635063455,0.7176402829087754,1,0.20003123508287857,0.29251547437344283,0.0
+181,2,0.23951348842232809,0.0,1.378163085326966,0.0007054138930455459,0.0365769999174705,0.7089780941153283,1,0.2508789037371419,0.33901957371442815,0.05
+181,3,0.28745562099847133,0.0,1.378212257204274,0.0007036796917837344,0.03660482029984842,0.7089686641115805,1,0.3101477691891489,0.39634633927423074,0.060000000000000005
+181,4,0.3077388914012643,0.0,1.3778651856969009,0.0007053729658597248,0.036664035790497145,0.7090395722567906,1,0.3652337038573477,0.43302365017064226,0.11000000000000001
+181,5,0.346341936449353,0.0,1.3678072227801106,0.0006932948740541713,0.03627143517282098,0.7111151462191065,1,0.4056396427814021,0.48122687158620775,0.12000000000000001
+181,6,0.366178148124803,0.0,1.3804211838391423,0.0007079908905203875,0.03675663959790586,0.708510900629395,1,0.45358710344125286,0.5247422064012148,0.17
+181,7,0.3726561763638232,0.0,1.3793464994756872,0.0007091454935901401,0.03655636431125454,0.7087323214517776,1,0.5052321791493888,0.5527497122051238,0.22000000000000003
+181,8,0.45938739218300373,0.0,1.3779974778882222,0.00071023539061868,0.036545684484056914,0.7090102729225314,1,0.5587939289978088,0.6126983901125689,0.22000000000000003
+181,9,0.47957435567273266,0.0,1.308128696150234,0.0006538181192835734,0.03488133811321536,0.7232346465762322,1,0.6160155135515425,0.6798964197656427,0.22000000000000003
+181,10,0.5178905433251989,0.0,1.1080382465000571,0.0010412431866913773,0.03689073929096742,0.7613107763583639,1,0.671180869525089,0.743257463304726,0.22000000000000003
+181,11,0.553244543323609,0.05,1.1341427642691133,0.0010123558475673693,0.0362575533110463,0.7424673759226766,1,0.7117425888721143,0.8137821240612299,0.23000000000000004
+181,12,0.6164612721814041,0.05,1.270529570068027,0.0006411517014590733,0.03357741427758076,0.7156912628563827,1,0.7828148199380713,0.8749202840102638,0.23000000000000004
+181,13,0.6349059981451031,0.05,1.264714169842843,0.0006386842822503558,0.0338349788807087,0.7168740805556897,1,0.8435198583548486,0.9322468257363536,0.23000000000000004
+181,14,0.567651274716799,0.05,1.188758433379593,0.000682931256771029,0.03276677902903986,0.7320161196033852,1,0.8520786473073131,0.8980791605307983,0.29000000000000004
+181,15,0.5536831714110799,0.0,1.1885488340196702,0.0006782812985534528,0.03315998974327704,0.746511885732174,1,0.9060111231140496,0.8552642610705419,0.35000000000000003
+181,16,0.6507353176823641,0.0,0.8041207759850593,0.0002307826107629034,0.01968076002842833,0.8123598933878613,2,0.9536753090400013,0.8898298650612124,0.4
+181,17,0.59149077939043,0.0,1.3026172280263124,0.0007356326570713663,0.03574259411770445,0.724303824734205,2,0.9623258066727168,0.8489224901832637,0.38
+181,18,0.7415566682544228,0.0,1.3032754401129223,0.0007490077981728288,0.03596784322722627,0.7241670250971564,2,1.0,0.9051888941814092,0.35
+181,19,0.735965456787487,0.0,1.3207914047784248,0.0007372432680848806,0.03601396901498578,0.7206592607455616,2,1.0,0.9532181892916237,0.31999999999999995
+181,20,0.7175824868277949,0.0,0.8158480831113476,0.0004957383858165966,0.024304917220029507,0.810484352313305,2,1.0,0.9919416227593164,0.30999999999999994
+181,21,0.6337963658679704,0.0,0.8286892019143102,0.0005390619648003088,0.024851929349114045,0.8084906797784661,2,1.0,0.945987886226568,0.2899999999999999
+181,22,0.5987753473298931,0.0,0.8441703762542994,0.000537806421181313,0.025501868648769743,0.8060826136709074,2,1.0,0.8959178244329772,0.2699999999999999
+181,23,0.6852595341904322,0.0,0.8638399072013974,0.0005365770093337678,0.025432635449028834,0.8029898682347615,2,1.0,0.9175317806347741,0.2649999999999999
+181,24,0.7621364160115763,0.05,0.8517980200672296,0.0005213906292401431,0.025290000007991597,0.7928447966279298,2,1.0,0.9737880533719212,0.2349999999999999
+181,25,0.6310164661841079,0.1,0.898801527596746,0.0005184511496042721,0.025647063406803356,0.7720919815140822,2,1.0,0.9367215539470265,0.2149999999999999
+181,26,0.7008188615871742,0.05,0.9352772275913193,0.0005221005721008902,0.02650192532797182,0.778798547310378,2,1.0,0.969396205290581,0.2099999999999999
+181,27,0.77,0.1,0.9093764100861041,0.0005034174828791551,0.025645587144596565,0.7702311312259013,2,1.0,1.0,0.1799999999999999
+181,28,0.75,0.15000000000000002,0.9568774767047811,0.0005052527275277875,0.02664737192932577,0.7478375057358937,2,1.0,1.0,0.1499999999999999
+181,29,0.72,0.15000000000000002,1.0014795795032987,0.000512485632535786,0.02742198159461861,0.7393312176267903,2,1.0,1.0,0.1399999999999999
+181,30,0.77,0.10000000000000002,1.0075107475716365,0.0005425623891983665,0.027460460356528094,0.7523907915533765,2,1.0,1.0,0.1099999999999999
+181,31,0.72,0.15000000000000002,1.0276015402674803,0.0005442889728033504,0.02829913262018508,0.734253186201963,2,1.0,1.0,0.09999999999999991
+181,32,0.71,0.10000000000000002,1.040195215682986,0.0005720241191479271,0.028625594176962522,0.7462404564175081,2,1.0,1.0,0.0949999999999999
+181,33,0.72,0.10000000000000002,1.0196995874373909,0.0005561233072527512,0.02841492079207688,0.7501079614438796,2,1.0,1.0,0.08499999999999991
+181,34,0.77,0.10000000000000002,1.0216944598010604,0.0005791418789167006,0.028229708588475077,0.7497252058610192,2,1.0,1.0,0.05499999999999991
+181,35,0.75,0.15000000000000002,1.0498883243919381,0.0005862703980291127,0.02939438700332896,0.7298652727378452,2,1.0,1.0,0.02499999999999991
+181,36,0.71,0.15000000000000002,1.0820067102634798,0.0006010310310708598,0.03009326324566914,0.7234802953760282,2,1.0,1.0,0.01999999999999991
+181,37,0.69,0.10000000000000002,1.0724012991745262,0.0005880237763415376,0.029194893446870752,0.7400873589503469,2,1.0,1.0,0.01499999999999991
+181,38,0.69,0.10000000000000002,1.0541990638660605,0.0005708488476137895,0.029092370392502308,0.7435799245444287,2,1.0,1.0,0.009999999999999908
+181,39,0.77,0.10000000000000002,1.0433939826900414,0.0005567401996608885,0.02854814787742687,0.745640040456356,2,1.0,1.0,0.0
+181,40,0.75,0.15000000000000002,1.0674242293546827,0.0005716867325785748,0.02922142336268191,0.7263997526923336,2,1.0,1.0,0.0
+181,41,0.75,0.15000000000000002,1.094064653523942,0.0005943608980491728,0.029788651692048196,0.7210642193445311,2,1.0,1.0,0.0
+181,42,0.75,0.15000000000000002,1.1088791271762495,0.0006137969070928579,0.030520737857031043,0.7180669703635385,2,1.0,1.0,0.0
+181,43,0.72,0.15000000000000002,1.119957627789706,0.0006335572723033715,0.030551536828823535,0.715810715571745,2,1.0,1.0,0.0
+181,44,0.77,0.10000000000000002,1.1239181225179542,0.0006508462935763406,0.03161983249835359,0.7300310637557559,2,1.0,1.0,0.0
+181,45,0.75,0.15000000000000002,1.1275122930816084,0.000666603142086265,0.0317544404532483,0.7142579111802532,2,1.0,1.0,0.0
+181,46,0.6377369505975903,0.15000000000000002,1.1376578676693971,0.0006860829040169171,0.03245468325004271,0.7121747858665722,2,1.0,0.9591231686586346,0.0
+181,47,0.77,0.10000000000000002,1.1573012246765464,0.0006805119897371799,0.0319809109377016,0.7233895652691166,2,1.0,1.0,0.0
+181,48,0.71,0.15000000000000002,1.1554210645790959,0.0006937651725222848,0.032833693996188865,0.7085168011059401,2,1.0,1.0,0.0
+181,49,0.72,0.10000000000000002,1.1538131371509048,0.0006810379136833998,0.032447290490320635,0.7240867671992265,2,1.0,1.0,0.0
+182,0,0.1696734543916858,0.05000000000000002,1.3366307032034537,0.0007224052837585499,0.03573207414025893,0.702017691133343,1,0.14762172310623245,0.22668617101501484,0.05
+182,1,0.23564214157198532,0.0,1.3341725467784489,0.0007207582125276598,0.03623288551011674,0.7179642491954958,1,0.20868074986237165,0.27534626373385085,0.05
+182,2,0.25023444126326366,0.0,1.3778615404227617,0.0007055939159756773,0.036572032353605954,0.7090402331202567,1,0.2629497298884339,0.3273401193410393,0.060000000000000005
+182,3,0.2596311138624525,0.0,1.3773755719796985,0.0007069521982887368,0.036621053772483626,0.7091399189646073,1,0.30537472772216046,0.37583319719898806,0.07
+182,4,0.2241723275123489,0.0,1.3767593368629116,0.0007081734541135618,0.03669773976811481,0.7092665038772438,1,0.3293081127795036,0.36304829346507544,0.13
+182,5,0.3037362051042488,0.0,1.379333719037517,0.0007066471930887092,0.0367288990141623,0.7087359911668982,1,0.38118690215112566,0.4010692978378494,0.18
+182,6,0.3468777896660049,0.0,1.3623981223293344,0.0006865390891040161,0.03580071855305452,0.712227839016372,1,0.4222779996375684,0.46360163264285326,0.19
+182,7,0.28320579969615167,0.0,1.3771086255078118,0.0007116376851465064,0.03653832592066337,0.7091930437520886,1,0.4520622275974006,0.41661340012353815,0.25
+182,8,0.36366863204170885,0.0,1.376315548464393,0.0007134637340790002,0.03657498585671631,0.7093558264967509,1,0.48861569430485646,0.4755104634500304,0.3
+182,9,0.43232151582903666,0.0,1.3747902609274845,0.0007147524442895367,0.036229585103692785,0.7096696637432052,1,0.5460715511273732,0.5373215764481869,0.3
+182,10,0.4188802558968008,0.0,1.3769366874599964,0.0007111467190333938,0.036613828538030385,0.7092287051796048,1,0.5805837172289302,0.5522531828889174,0.35
+182,11,0.36556633083139684,0.0,1.342158273995004,0.0007009187336140405,0.03586143724698615,0.7163524582126781,1,0.6078013248652474,0.5094528904285343,0.41
+182,12,0.34308263609966466,0.0,1.33732057034242,0.0007034762873283796,0.03589726478276154,0.7173333721819511,1,0.6449296804582911,0.45785749313087604,0.47
+182,13,0.34891308349819095,0.0,1.347789546821646,0.0007004480587287032,0.03571708852392042,0.7152070298117857,1,0.6758285408654938,0.4412436473175604,0.53
+182,14,0.49415745872176253,0.0,1.3565836135787785,0.0006984216887738846,0.03607629531706462,0.7134132458913521,1,0.758670852840733,0.49540886742502,0.53
+182,15,0.41614679388729914,0.0,1.354556006315906,0.0006998518547028198,0.036125119713120914,0.7138270361494363,1,0.795393121140137,0.4591973382941707,0.5900000000000001
+182,16,0.5164848610107158,0.0,1.3626961589049762,0.0006980963092863496,0.03607332498363377,0.7121620116286513,2,0.8517892129150925,0.527862121634778,0.6000000000000001
+182,17,0.615245914745425,0.05,1.1439708707458063,0.0008994978092438514,0.03564273335404031,0.7406270363077522,2,0.9257995574985572,0.5707202320697665,0.5700000000000001
+182,18,0.5955521367099177,0.1,1.1485707235243867,0.0009120521105372684,0.035462950394929256,0.7250407932506726,2,0.971848259051183,0.6180174868066787,0.56
+182,19,0.6647349999710597,0.05,1.2579632980866602,0.0008417861788338194,0.036246413755835656,0.7181600562973058,2,1.0,0.6491166665701988,0.53
+182,20,0.6351919172699707,0.1,1.2489251203352723,0.0008519607214717327,0.03602947398582038,0.7046147906329333,2,1.0,0.7173063908999023,0.52
+182,21,0.6290461583626736,0.05,1.250158636473011,0.0008532705994396925,0.03622158892512165,0.7197324417799009,2,1.0,0.7634871945422456,0.51
+182,22,0.6448867307185733,0.05,1.2413803461711517,0.0008648246750485501,0.036305898588104055,0.7214951142993221,2,1.0,0.8162891023952443,0.5
+182,23,0.7250793519950132,0.0,1.2699515941797874,0.0007717666564996468,0.035761845957617326,0.7307645171909218,2,1.0,0.8502645066500438,0.47
+182,24,0.590662217024639,0.0,1.2872305976039524,0.0007598363989292267,0.035648199925625845,0.727356119616958,2,1.0,0.8022073900821297,0.44999999999999996
+182,25,0.6615269069468643,0.0,1.286826209063891,0.0007722858674357025,0.03598298395960425,0.7274313694012006,2,1.0,0.8384230231562145,0.44499999999999995
+182,26,0.7373071455736084,0.0,1.2815591750218607,0.0007734214395691981,0.035819497558692494,0.7284739893060792,2,1.0,0.8910238185786951,0.4149999999999999
+182,27,0.6033417742712518,0.0,1.3016114000996053,0.0007589897729217025,0.036009441777653084,0.7244953068235869,2,1.0,0.8444725809041728,0.3949999999999999
+182,28,0.7371926619368854,0.0,1.3006686326717585,0.0007707613051258741,0.035962771134763774,0.7246787478456341,2,1.0,0.8906422064562849,0.3649999999999999
+182,29,0.6843538125573905,0.0,1.3182816127354327,0.0007571410248817939,0.03609350022526966,0.7211562233777813,2,1.0,0.9145127085246351,0.3599999999999999
+182,30,0.6097583240462938,0.0,1.312905019318778,0.0007583533735615616,0.03596815346613866,0.7222356290568581,2,1.0,0.865861080154313,0.33999999999999986
+182,31,0.5750207384071455,0.0,1.3115487321452073,0.0007693813226150423,0.036274241871980153,0.7225032115795361,2,1.0,0.8167357946904851,0.31999999999999984
+182,32,0.6638193339164595,0.0,0.9692623903423712,0.0005735795881741711,0.027568768084310726,0.7857660484604427,2,1.0,0.8460644463881984,0.31499999999999984
+182,33,0.7364523930105299,0.05,0.9590581609961966,0.0005625696025874172,0.027355249906697715,0.774660497347361,2,1.0,0.8881746433684331,0.2849999999999998
+182,34,0.7002615718635294,0.1,0.9719015214371718,0.0005870952794853546,0.028070765704902096,0.7589486772661462,2,1.0,0.9342052395450984,0.2749999999999998
+182,35,0.6937651252615187,0.05,1.0131432265804166,0.0005870712213248402,0.028685612358389862,0.7650705204305946,2,1.0,0.9792170842050621,0.2649999999999998
+182,36,0.77,0.05,1.0324324379920204,0.0005888157842968762,0.02916945470061617,0.7615851807033728,2,1.0,1.0,0.2349999999999998
+182,37,0.72,0.1,1.0310932562854858,0.0006057711846433768,0.029088940021027986,0.7479474645854063,2,1.0,1.0,0.22499999999999978
+182,38,0.71,0.05,1.0660851549664652,0.0006143723880765105,0.029415902879003225,0.7554116243439575,2,1.0,1.0,0.21999999999999978
+182,39,0.72,0.05,1.0491434587381483,0.0006019428599773766,0.02958527599877772,0.7585328477148849,2,1.0,1.0,0.20999999999999977
+182,40,0.77,0.05,1.0735709539218936,0.0006124843628229908,0.029590686139048677,0.7540265687402039,2,1.0,1.0,0.17999999999999977
+182,41,0.71,0.1,1.0715630096998128,0.0006265630176455666,0.030402771349323603,0.7402337572576894,2,1.0,1.0,0.17499999999999977
+182,42,0.69,0.05,1.0713268954968145,0.0006177933472067476,0.030165861936237087,0.7544405710060461,2,1.0,1.0,0.16999999999999976
+182,43,0.72,0.05,1.0551681423340225,0.0006045901245785477,0.02982073515437459,0.7574266711793177,2,1.0,1.0,0.15999999999999975
+182,44,0.71,0.1,1.0781116061201368,0.0006169833737274444,0.030087645947418758,0.7389762585019077,2,1.0,1.0,0.15499999999999975
+182,45,0.77,0.1,1.0765879545914143,0.0006069135209717729,0.029644530401510556,0.7392739310508308,2,1.0,1.0,0.12499999999999975
+182,46,0.75,0.15000000000000002,1.0758509407541066,0.0006230660310703301,0.030434231421843577,0.7247013094249176,2,1.0,1.0,0.09499999999999975
+182,47,0.75,0.15000000000000002,1.0804815321221595,0.0006368612317189422,0.030761651130060397,0.7237709866543018,2,1.0,1.0,0.06499999999999975
+182,48,0.71,0.15000000000000002,1.0768954713349466,0.0006454866831744119,0.030167598137506146,0.7244839163865399,2,1.0,1.0,0.059999999999999755
+182,49,0.69,0.10000000000000002,1.070725612947628,0.000636763450940142,0.030629804333560356,0.7403908247152856,2,1.0,1.0,0.05499999999999976
+183,0,0.09011067471392441,0.05000000000000002,1.3350493037136162,0.0007213322155845955,0.03570359736668051,0.7023488452189234,1,0.11928404603122546,0.16120419534331834,0.06
+183,1,0.21576229136167913,0.0,1.3278421115015573,0.0007619196949630473,0.0362407904689325,0.7192277145877265,1,0.19336717227176498,0.22694593688853798,0.06
+183,2,0.23949347331350337,0.0,1.3340743093315328,0.0007220347709638267,0.03570533959324207,0.7179836240631562,2,0.25200386465832314,0.3043070689436343,0.06
+183,3,0.27763884757114465,0.0,1.3839273578737408,0.0006985981752998006,0.03667792069846761,0.707790150591088,2,0.2851986527976574,0.3593977303065486,0.049999999999999996
+183,4,0.28498831439352335,0.0,1.3847589838708667,0.0006991102677330237,0.036719116055990646,0.7076179093809518,2,0.3251693372633064,0.40393015450455383,0.039999999999999994
+183,5,0.32618763041759063,0.0,1.3861417216444847,0.0007001709289841332,0.03677525434318462,0.7073313068715088,2,0.375531682391067,0.44917180526905737,0.034999999999999996
+183,6,0.256374186368287,0.0,1.3861090506388842,0.0007004260496600023,0.03673275407969464,0.707337964546856,2,0.4010265069236765,0.38671636315000085,0.014999999999999996
+183,7,0.41309439150876714,0.0,1.383159105867282,0.0006991320553091959,0.03657033268798478,0.7079487968347231,2,0.48045645426509515,0.4164487750532796,0.0
+183,8,0.3939919594042922,0.0,1.3624715988620397,0.000686131240459724,0.03637641008730755,0.712212946269536,2,0.5200497747690146,0.4732484607837903,0.0
+183,9,0.32368075969767307,0.0,1.3636014527039524,0.000685349767479692,0.03568335389537626,0.7119816300138951,2,0.5502540392984611,0.4369728198107057,0.0
+183,10,0.42434130190222613,0.0,1.3676330406728068,0.0006909063279811559,0.036421572691082225,0.7111519084891318,2,0.5989021094456727,0.4824185453208024,0.0
+183,11,0.3441445779764612,0.0,1.3679420089083014,0.0006894862638447358,0.03612151108076136,0.7110890211587949,2,0.6205987120104999,0.4231167625759542,0.0
+183,12,0.31114102179522596,0.0,0.8921416712342018,0.00032280097778648566,0.02323525851808619,0.7985429788846705,2,0.6334301254444473,0.36480159296556486,0.0
+183,13,0.3051482317386097,0.0,1.28409410308144,0.0008037047345001071,0.036341544312296935,0.727960297075969,2,0.6624186481515616,0.3110056829518773,0.0
+183,14,0.49145475361019303,0.0,1.2960914250538125,0.0007891736503988218,0.03634807468343479,0.7255837178572025,2,0.7372747130428794,0.3780286801506176,0.0
+183,15,0.5144160486039663,0.0,1.2883289062792063,0.0007885558229078001,0.03595265692992059,0.7271268640410399,2,0.8092476407989763,0.43726458108108224,0.0
+183,16,0.40497923334980646,0.0,1.3381854823662627,0.0007576910047921174,0.03658433565342843,0.7171359696850034,2,0.8212120869475522,0.3918500097272107,0.0
+183,17,0.49388941252696883,0.0,1.2020432475745326,0.0005774614552485646,0.03196212476922251,0.7439882366063783,2,0.8850228247059386,0.4137714129329679,0.0
+183,18,0.5969407100572193,0.0,1.2900215204067527,0.0008007620476517813,0.03622358067880094,0.7267860501533947,2,0.9711674651295462,0.4567736575395937,0.0
+183,19,0.5719514346886899,0.0,1.2862090040625263,0.0008089970266704669,0.036329650110795204,0.7275391745622711,2,1.0,0.5065047822956331,0.0
+183,20,0.5715730351745516,0.0,1.2818448670274885,0.000813786816349077,0.03632146480827199,0.7284015049501733,2,1.0,0.5385767839151719,0.0
+183,21,0.5629146589408045,0.0,1.2870650483267663,0.0007985362554919041,0.036050697039922266,0.727373600135691,2,1.0,0.5763821964693484,0.0
+183,22,0.5690536024131175,0.0,1.2903906262571092,0.0007848864547719606,0.03591278215485123,0.7267190571580314,2,1.0,0.5968453413770585,0.0
+183,23,0.515661474654098,0.0,1.2921975540575716,0.0007724252627842225,0.035615220374528675,0.7263650106640936,2,1.0,0.5522049155136599,0.0
+183,24,0.6467540144802585,0.0,1.3101052995035045,0.0007599072593059103,0.03617489479242452,0.7227963122710918,2,1.0,0.5891800482675283,0.0
+183,25,0.6124760103700796,0.0,1.3070113803487264,0.0007673004599408693,0.03592892649326708,0.7234128294321455,2,1.0,0.6415867012335987,0.0
+183,26,0.6101453691205866,0.0,1.2573583745050971,0.0006977964806657492,0.03442256056664384,0.7332639289986889,2,1.0,0.7004845637352888,0.0
+183,27,0.5497036229443919,0.0,1.2638625854924475,0.0007180904897946834,0.034569897378017064,0.7319818925826734,2,1.0,0.6656787431479729,0.0
+183,28,0.629899161581819,0.0,1.2846357852965449,0.0007081695810332826,0.035113645103026996,0.7278908584120332,2,1.0,0.6996638719393966,0.0
+183,29,0.6964879423908417,0.0,1.2886642708962799,0.0007260631692370325,0.03495499598713443,0.7270851199750145,2,1.0,0.7549598079694725,0.0
+183,30,0.697602817722876,0.0,1.280806296063341,0.0007253933545175127,0.03503938345661599,0.7286418757924094,2,1.0,0.8253427257429202,0.0
+183,31,0.680737263896168,0.0,0.990996495232861,0.0007038935883340853,0.03093811674238949,0.7820402364483285,2,1.0,0.8691242129872265,0.0
+183,32,0.7500994118268803,0.0,1.0082541260835054,0.0007774843210526952,0.03228043383558624,0.7790589693091275,2,1.0,0.9336647060896013,0.0
+183,33,0.6996498921765774,0.05,0.9909702665705472,0.0007539070962185733,0.03156066298889063,0.7689731150642671,2,1.0,0.9654996405885914,0.0
+183,34,0.77,0.0,1.0289314902768136,0.0007527716217404989,0.031977126395709675,0.7754879330979271,2,1.0,1.0,0.0
+183,35,0.6339223846660025,0.05,0.9999236063788184,0.0007227818111498386,0.03137603558344746,0.7673898062722567,2,1.0,0.9464079488866752,0.0
+183,36,0.7183027405726717,0.0,1.036642877369508,0.0007203973349415298,0.03170142011975129,0.7741538004778176,2,1.0,0.9943424685755726,0.0
+183,37,0.7,0.05,1.0402387595105993,0.0007828178033043826,0.032265257495700445,0.7600941230858939,2,1.0,1.0,0.0
+183,38,0.6328687464158953,0.05,1.0618220361852604,0.0008484395480317608,0.033603581051834044,0.7561121244529488,2,1.0,0.9428958213863177,0.0
+183,39,0.7016070734441835,0.0,1.087951396171333,0.0008329270657437034,0.034144521308110395,0.7650166161989029,2,1.0,0.9720235781472784,0.0
+183,40,0.69,0.05,1.0997325110169756,0.0008142951425687073,0.03361416276293923,0.7490663304293589,2,1.0,1.0,0.0
+183,41,0.69,0.05,1.1264252877883008,0.0008001193007237755,0.033755708696349446,0.7440211186972094,2,1.0,1.0,0.0
+183,42,0.72,0.05,1.139597403381564,0.0007859343311421383,0.03376876651558645,0.7415098253424426,2,1.0,1.0,0.0
+183,43,0.77,0.1,1.1464404433378033,0.0008255843193639336,0.03442403952535451,0.7254997165398758,2,1.0,1.0,0.0
+183,44,0.71,0.15000000000000002,1.1416340372970586,0.0008161390548800233,0.034086701907307254,0.7113056450041775,2,1.0,1.0,0.0
+183,45,0.72,0.10000000000000002,1.1590079776150564,0.0007994848228364067,0.034204532099211205,0.7230002677157532,2,1.0,1.0,0.0
+183,46,0.6301729063676871,0.10000000000000002,1.1575356810729283,0.0008337369936294309,0.03465428988888205,0.7232813183879804,2,1.0,0.9339096878922902,0.0
+183,47,0.5913654944376372,0.05000000000000002,1.1820720845478667,0.0008180802779860796,0.034798983477093676,0.7332728716459952,2,1.0,0.871218314792124,0.0
+183,48,0.6954809105495507,1.3877787807814457e-17,1.2005358931676124,0.0008034571411403187,0.034900095379944984,0.7441891995638625,2,1.0,0.918269701831836,0.0
+183,49,0.7626803899179149,0.05000000000000002,1.1962140744540701,0.0008353635206341512,0.035065104919456094,0.7304910143099845,2,1.0,0.9756012997263828,0.0
+184,0,0.00591498599638951,0.05000000000000002,1.3419302186720046,0.0007060421119438993,0.03559645783215386,0.7009147666149315,1,0.11848701849223212,0.14814843174702758,0.06
+184,1,0.18270515325061049,0.0,1.3176130475259895,0.0007650403954766283,0.036069855163366214,0.7212874691860871,1,0.1816607469627712,0.19707963937880196,0.06999999999999999
+184,2,0.2453416020688703,0.0,1.3132622970476593,0.0007753543438114429,0.03640140697855872,0.7221571270986316,1,0.2525343906206716,0.25651521783878406,0.06999999999999999
+184,3,0.26974882363421376,0.0,1.3793729150931382,0.0007063885699533641,0.03665735154970341,0.7087280066634378,1,0.32282634158441925,0.32253201359889017,0.06999999999999999
+184,4,0.3044377545129072,0.0,1.3786568449298917,0.0007071946915115412,0.03672465509570244,0.7088754720858185,1,0.37730196802979254,0.37460688567493283,0.07999999999999999
+184,5,0.3675282117656756,0.0,1.377917851033311,0.0007085361948411222,0.03672779565013787,0.7090274019545791,1,0.4457252657628108,0.4384145624956395,0.07999999999999999
+184,6,0.35837284238895506,0.0,1.3764177466635101,0.0007115033574164795,0.036723892514492165,0.7093355642053188,1,0.4835430124281835,0.46377596013030276,0.13
+184,7,0.4309128448320927,0.0,1.374749032932786,0.0007124988884007639,0.03650307418378614,0.7096790868516204,1,0.5502319948961504,0.5277721553948004,0.13
+184,8,0.4438604101630838,0.0,1.3762225593561253,0.0007089363958269487,0.036509175823197786,0.709376864428469,1,0.5986591004392406,0.5810990833644986,0.14
+184,9,0.45274294807946774,0.0,1.379429811857439,0.0007063924767757557,0.036295525649024364,0.7087162595628421,1,0.6343920866866494,0.6356857257971351,0.15000000000000002
+184,10,0.415766344435618,0.0,1.1323864929243528,0.001014270551861772,0.03687234310560322,0.7568681115143383,1,0.6681258193560308,0.6064076922033574,0.21000000000000002
+184,11,0.5340527139572988,0.0,1.127045278131518,0.0010156976025142788,0.03619551728018292,0.7578491225544827,1,0.7348792585561643,0.6561499115421376,0.21000000000000002
+184,12,0.543178595472033,0.05,1.1520047677531127,0.0009863752357024665,0.03669850006201448,0.7390472464454066,1,0.7804184357138928,0.7001071432405684,0.22000000000000003
+184,13,0.5937338341312971,0.05,1.1851187055848458,0.0009500031102791144,0.03678024294585426,0.7326248982962914,1,0.8338768068338388,0.7395898391315118,0.22000000000000003
+184,14,0.6109582844608044,0.1,1.1868256735501252,0.0007857761752723209,0.034514547118444414,0.7174003404467053,1,0.8858082230612883,0.8030846879645117,0.23000000000000004
+184,15,0.625880117854425,0.1,0.9848277956364144,0.0004476169686492388,0.025541298312567805,0.7566273349162068,1,0.9318951381889179,0.8323893982943459,0.28
+184,16,0.6945138823978895,0.1,1.0146601239351858,0.0004559305357733741,0.02692278772237755,0.7510888624853937,1,1.0,0.8817129413262983,0.28
+184,17,0.6698044843949998,0.15000000000000002,1.0456203965813642,0.0004658938366294417,0.02732434797534598,0.7307532912543101,1,1.0,0.8993482813166662,0.33
+184,18,0.6593533896957392,0.15000000000000002,1.0882947956233553,0.00048597207081285714,0.028226743965046607,0.7222667199931279,1,1.0,0.9311779656524642,0.38
+184,19,0.6680898467691925,0.15000000000000002,0.9425372775777159,0.000364298934311253,0.024364601398162176,0.7505848872730024,1,1.0,0.960299489230642,0.43
+184,20,0.6769375712815286,0.15000000000000002,0.9753363324349399,0.0004225738010389464,0.026431182467938193,0.744372166070341,1,1.0,0.9897919042717624,0.48
+184,21,0.6799999999999999,0.15000000000000002,1.0048280331786033,0.0004894181243440875,0.02747730136043535,0.738694290082685,1,1.0,1.0,0.53
+184,22,0.71,0.15000000000000002,1.0301875598813623,0.0005618631847426023,0.02944896075568662,0.733741415680048,2,1.0,1.0,0.54
+184,23,0.7,0.15000000000000002,1.305542136342341,0.0006699568593063734,0.034971354901572334,0.6765841666904447,2,1.0,1.0,0.53
+184,24,0.71,0.10000000000000002,1.3060913811258585,0.0006673895490779042,0.034597176479916614,0.6926577025920934,2,1.0,1.0,0.525
+184,25,0.6348512708126111,0.05000000000000002,1.2946333233680125,0.0006617318041967832,0.03464784728541846,0.7107528429297328,2,1.0,0.9495042360420372,0.505
+184,26,0.600053929128183,0.0,1.2993206896568885,0.0006775242057582859,0.03482173932747481,0.7249847883721117,2,1.0,0.9001797637606104,0.485
+184,27,0.6839605246611848,0.0,1.301856370247375,0.0006938874185317423,0.0350315112987132,0.7244723988386375,2,1.0,0.9132017488706162,0.48
+184,28,0.6694845577145192,0.0,1.2941612859459148,0.0006908487290081794,0.03507654210121679,0.7260069838000759,2,1.0,0.9316151923817309,0.475
+184,29,0.6756687771825899,0.0,1.2862014039445735,0.0006872516525114455,0.03458396995182124,0.7275889444374913,2,1.0,0.9522292572752998,0.47
+184,30,0.6857610452266522,0.0,1.2776163459250327,0.0006828730715828055,0.034434846758298734,0.7292889313342519,2,1.0,0.9858701507555073,0.46499999999999997
+184,31,0.72,0.0,1.2683052683655531,0.0006777844421855594,0.034416572513004735,0.7311252568480056,2,1.0,1.0,0.45499999999999996
+184,32,0.7,0.0,1.271797749491364,0.0006739434233550904,0.03428291028473466,0.7304396596520865,2,1.0,1.0,0.44499999999999995
+184,33,0.77,0.0,1.2729795804948862,0.0006702912784077043,0.03444963494983188,0.7302083356211907,2,1.0,1.0,0.4149999999999999
+184,34,0.75,0.0,1.2921948745229332,0.0006652619209933403,0.03431191627054912,0.726408140458585,2,1.0,1.0,0.3849999999999999
+184,35,0.75,0.0,1.3081064318048234,0.0006626949950120766,0.03511158709411981,0.723235549444192,2,1.0,1.0,0.35499999999999987
+184,36,0.72,0.0,1.3208703480058142,0.0006621305390104308,0.03474994761147199,0.7206736103094166,2,1.0,1.0,0.34499999999999986
+184,37,0.6329033325788411,0.0,1.320767428810225,0.0006612092360914415,0.03517826472409437,0.7206946987033073,2,1.0,0.9430111085961375,0.32499999999999984
+184,38,0.72,0.0,1.2007700142340976,0.0006362715671329122,0.032136368879115085,0.7442082838685743,2,1.0,1.0,0.31499999999999984
+184,39,0.7,0.05,1.1903084197899672,0.0006311289654496897,0.032707616142912246,0.7317322898213077,2,1.0,1.0,0.3049999999999998
+184,40,0.77,0.05,1.187583089465067,0.000627853810520603,0.03250957013220092,0.7322682187772157,2,1.0,1.0,0.2749999999999998
+184,41,0.6346889870446906,0.1,1.2065665062243385,0.000651572986577882,0.03265500443959625,0.7134358999189323,2,0.9991864784929106,0.9499123985739061,0.2549999999999998
+184,42,0.702410674026028,0.05,1.236958728909522,0.0006473435830464207,0.03328169831457843,0.7224699444079129,2,1.0,0.9747022467534268,0.24999999999999978
+184,43,0.77,0.1,1.2289866136444312,0.0006441373044717524,0.03293015441674258,0.7088334420231611,2,1.0,1.0,0.21999999999999978
+184,44,0.6368045371443651,0.15000000000000002,1.2497056120534704,0.0006663164993723978,0.03367253743542314,0.6886813625374835,2,1.0,0.9560151238145504,0.1999999999999998
+184,45,0.7689613569116419,0.05000000000000002,1.275336383216528,0.0006626182372090234,0.03424938978784411,0.71470341829454,2,1.0,0.9965378563721398,0.1699999999999998
+184,46,0.75,0.05000000000000002,1.276933784391273,0.0006793651601107144,0.03440355640996299,0.7143707584068918,2,1.0,1.0,0.1399999999999998
+184,47,0.71,1.3877787807814457e-17,1.2849005762237087,0.0006991039207540321,0.034987219341307906,0.7278420008443073,2,1.0,1.0,0.1349999999999998
+184,48,0.6389274079818343,0.0,1.2788506069183332,0.0006910769274781965,0.034605356380254214,0.7290419452869952,2,1.0,0.9630913599394479,0.11499999999999978
+184,49,0.703403472152538,0.0,1.298140586746734,0.0006847288058786359,0.034801256244544936,0.7252171455696115,2,1.0,0.978011573841793,0.10999999999999978
+185,0,0.19431707630328926,0.0,1.3428996453122986,0.0007055226210241637,0.035614477083909676,0.7161999220725214,1,0.1515935329470652,0.2708644659060548,0.01
+185,1,0.13520882218580138,0.0,1.3421649098741812,0.0007064670685688445,0.03620066656869484,0.7163488550935887,1,0.1909832195836404,0.22788231777175752,0.06999999999999999
+185,2,0.2092439609706876,0.0,1.3504753560490947,0.0007037445781579964,0.035891790897429235,0.7146583077293978,1,0.23525980939378746,0.25634342560954,0.12
+185,3,0.1578161119672295,0.0,1.3753978136327383,0.000711098033971321,0.03664516023619051,0.70954597475138,1,0.25800039295554184,0.2250532481092995,0.18
+185,4,0.13791961024165497,0.0,1.377797394819246,0.0007092411033369289,0.036739140319150376,0.7090519615133599,1,0.2945481854438782,0.18275915112099209,0.24
+185,5,0.23916003885700474,0.0,1.3110656534828995,0.0007708289980610942,0.03630983072047017,0.7225994743592798,1,0.3452402079460964,0.2277532202529034,0.29
+185,6,0.18998139864437996,0.0,1.3739427046934614,0.0007121470281302314,0.0365690566427266,0.7098453352824503,1,0.3830776378795058,0.1863474179551765,0.35
+185,7,0.2814282563343462,0.0,1.3839456521941398,0.0007003794201885736,0.03659492098101179,0.7077856300739698,1,0.42624790873224544,0.24080496092686765,0.36
+185,8,0.29830711301785917,0.0,1.3389862504125132,0.000702436519027385,0.03544036041407546,0.7169959282875695,1,0.4615547389314585,0.2892098479728291,0.41
+185,9,0.3402531549423402,0.0,1.34251467745796,0.0006980823537357762,0.03622562293934121,0.716281187267665,1,0.5161222234899272,0.3320345890695524,0.42
+185,10,0.3569904501935665,0.0,1.3379767193300345,0.0006964058370535107,0.035321477482216986,0.7172031764766356,1,0.5712627795468339,0.3901615911739155,0.43
+185,11,0.43835726661332686,0.0,1.3329136862083177,0.0006944790477686697,0.03599853071360258,0.7182297245663173,1,0.6311853283765317,0.4581413389384691,0.43
+185,12,0.35766470991130395,0.05,1.2086315409221482,0.0006601555871099729,0.03290418715775022,0.7281087300384346,1,0.661905454991449,0.4199926688809893,0.49
+185,13,0.47782665295695,0.0,1.236646882144261,0.000657609195429609,0.033456517405110554,0.7373107943538779,1,0.7233704495381796,0.4821566520619571,0.49
+185,14,0.38859424660375097,0.05,1.239257533813366,0.0006901993005496874,0.03427467226020231,0.7219915783565726,1,0.7533413940869667,0.4164158622443755,0.55
+185,15,0.4770417214230952,0.0,1.2632921391925793,0.0006849698741184795,0.03373930829446246,0.7321067822945106,1,0.7850870709477382,0.4742041553046229,0.56
+185,16,0.4927901659279532,0.05,1.246385046684749,0.0006749268461221363,0.034505878532238306,0.7205648349995991,1,0.8388146528270441,0.5306834581282927,0.5700000000000001
+185,17,0.4492855476707673,0.1,0.6522854423331662,0.00025404790859210767,0.018697602082057802,0.8126324106160469,2,0.8688051085320971,0.4840125322817777,0.6300000000000001
+185,18,0.6147359788307138,0.05,1.090814369338403,0.0008732175546977912,0.03427470549078933,0.7507168583283707,2,0.9572857992970997,0.5322864969224299,0.6000000000000001
+185,19,0.5995404788251947,0.1,1.0870838586163853,0.000912186481596646,0.03470631480047311,0.7371275031593566,2,0.996666668292355,0.6023571497429014,0.5900000000000001
+185,20,0.6009243148580349,0.1,1.2096342910781168,0.0008739274161878665,0.035841554631198834,0.7127172497044988,2,1.0,0.6364143828601163,0.5850000000000001
+185,21,0.5267145126524566,0.1,1.220974288469021,0.0008541326505077807,0.03602703747241178,0.7103979252030684,2,1.0,0.5890483755081888,0.5650000000000001
+185,22,0.6111151087511663,0.05,1.0049499740535655,0.0008040605098749902,0.032484754450642625,0.7664622843571757,2,1.0,0.6370503625038877,0.555
+185,23,0.6044268108639677,0.1,1.2075039331934152,0.0008652706890783929,0.035908492689323834,0.7131567873867523,2,1.0,0.6814227028798923,0.545
+185,24,0.5440636008256668,0.1,1.2074654015405677,0.0008594223996493164,0.03543482728831828,0.7131670621739754,2,1.0,0.6468786694188896,0.525
+185,25,0.6116456601075281,0.05,1.230454427386059,0.0008405131450394843,0.03585002013723282,0.7236949682969778,2,1.0,0.6721522003584269,0.52
+185,26,0.6384930371738274,0.1,1.2342055604158368,0.0008271025153990072,0.035570603132294626,0.7076794441556816,2,1.0,0.7283101239127582,0.51
+185,27,0.6365306992406861,0.1,1.233002534691789,0.0008222077518719638,0.035652548780318816,0.707930275125969,2,1.0,0.7884356641356202,0.5
+185,28,0.7218126163288747,0.1,1.22595716525314,0.000820400612416644,0.03573221875711971,0.7093856191295357,2,1.0,0.8393753877629159,0.47
+185,29,0.5894290235752296,0.1,1.274669199260655,0.0006336367351558391,0.03403776436846767,0.6993203509954062,2,1.0,0.7980967452507656,0.44999999999999996
+185,30,0.721893901101532,0.05,1.2153450073841565,0.0008944804652864757,0.036349018954519155,0.7266845852345037,2,1.0,0.8396463370051066,0.41999999999999993
+185,31,0.6873849640125225,0.05,1.263084397110803,0.0006294828462950939,0.033784079875943764,0.7172084839536952,2,1.0,0.8912832133750749,0.4099999999999999
+185,32,0.6034681379059523,0.0,1.2609316043278718,0.0006347991304551852,0.03303106541359883,0.732589149451842,2,1.0,0.8448937930198415,0.3899999999999999
+185,33,0.5648558159340764,0.0,1.2748793042433368,0.0006360516906691572,0.03404462243144209,0.7298474208423619,2,1.0,0.7828527197802548,0.3699999999999999
+185,34,0.718335407372472,0.0,1.1696002535522474,0.0009387065556634572,0.036382916347256065,0.7499831329960014,2,1.0,0.8277846912415735,0.33999999999999986
+185,35,0.584504763528104,0.0,1.2685953093998648,0.000634544655479327,0.0338912362642792,0.7310852386262724,2,1.0,0.7816825450936803,0.31999999999999984
+185,36,0.5545951361489695,0.0,1.1941986341733024,0.0006811230372017923,0.03338718669487149,0.7454401966423461,2,1.0,0.7486504538298986,0.2999999999999998
+185,37,0.7105771408199362,0.0,1.218988423576006,0.0006704455367077488,0.033154406594621405,0.7407116567164939,2,1.0,0.8019238027331208,0.2699999999999998
+185,38,0.7112656715749703,0.05,1.1889744649944833,0.0008035984656600168,0.035033541528733746,0.7319263892652601,2,1.0,0.870885571916568,0.2399999999999998
+185,39,0.6981656431102696,0.05,1.199390492557036,0.0008416405528609219,0.03587904376746342,0.7298627276701555,2,1.0,0.9272188103675653,0.2299999999999998
+185,40,0.6934980158517399,0.05,1.1875301389939352,0.000834239699632433,0.03471038553725145,0.7321976693839791,2,1.0,0.9783267195057995,0.21999999999999978
+185,41,0.71,0.05,1.1751152695932612,0.0008253551224542209,0.035221498587326316,0.7346284652907297,2,1.0,1.0,0.21499999999999977
+185,42,0.6371574273349195,0.05,1.20107193170879,0.0008048924399176366,0.03487583278792107,0.729545583465657,2,1.0,0.9571914244497319,0.19499999999999978
+185,43,0.6035589749116268,0.0,1.2196715185229512,0.000787651629970374,0.035028801394911054,0.7405354033107231,2,1.0,0.9118632497054231,0.1749999999999998
+185,44,0.7603843282460023,0.0,1.2275784099515827,0.0007735675828522863,0.034701138751260775,0.7390186974995321,2,1.0,0.9679477608200078,0.1449999999999998
+185,45,0.75,0.05,1.2300118835652,0.0008099715668065252,0.03582481916327758,0.7237956624837616,2,1.0,1.0,0.1149999999999998
+185,46,0.71,0.05,1.2361770435372066,0.0008366777000260587,0.03624061580202603,0.7225507449695736,2,1.0,1.0,0.10999999999999979
+185,47,0.77,0.0,1.258619525225814,0.0008159758702730484,0.035623048051346265,0.7329709319078138,2,1.0,1.0,0.0799999999999998
+185,48,0.75,0.0,1.2504510595336136,0.0008449271480829172,0.03631967061619534,0.7345553656730723,2,1.0,1.0,0.049999999999999795
+185,49,0.72,0.0,1.2465016993175724,0.0008648210044557555,0.03632537455386752,0.7353169695302951,2,1.0,1.0,0.03999999999999979
+186,0,0.16994622278711036,0.0,1.3489625004741275,0.0006999755850829732,0.03568194866783651,0.7149682479243259,1,0.1504840729761151,0.22425599081823352,0.05
+186,1,0.21332709355533935,0.0,1.3482996176788091,0.0006984982764845052,0.03621296833666066,0.7151039186092426,1,0.19169486889703058,0.28744629813792894,0.060000000000000005
+186,2,0.2309708981737384,0.0,1.347424807475897,0.0006994945042641877,0.03574709972483572,0.7152817046444254,1,0.24117705466163059,0.32186309680722563,0.11000000000000001
+186,3,0.17770307098171725,0.0,1.3622401642840052,0.0007199094933625497,0.036462003447298844,0.7122465344794867,1,0.2696821087877979,0.27771444301995996,0.17
+186,4,0.30404427033744025,0.0,1.3674825695966093,0.0007165157798075786,0.036600537274444074,0.7111722959341229,1,0.3373564474525429,0.3532317124301675,0.17
+186,5,0.3253849814379359,0.0,1.3659871530438963,0.0007177215083405779,0.0366137853711706,0.7114788718145212,1,0.3981437978947201,0.42011550724927976,0.17
+186,6,0.34033537274226644,0.0,1.3547556897066495,0.00067915724769199,0.03546945709399073,0.7137946990373584,1,0.4342016190726725,0.4612160202227703,0.22000000000000003
+186,7,0.4079099748729959,0.0,1.3829968084772615,0.0007011710421828348,0.03652473572029738,0.7079815087773649,1,0.48407366396961926,0.5282806416120972,0.22000000000000003
+186,8,0.4065255637905178,0.0,1.3842785400957078,0.0007005025061910409,0.03650015017490704,0.7077167248062329,1,0.5356846954502726,0.5634530679430746,0.27
+186,9,0.476982483124637,0.0,1.383096624230291,0.000700489510930975,0.036280388952168674,0.7079611538878605,1,0.6105298055902144,0.6109901705602064,0.27
+186,10,0.40216067086409335,0.05,1.1927808167553042,0.0009397962097234523,0.03678569247673945,0.7311253409994922,1,0.6447385850091845,0.5883405537029294,0.33
+186,11,0.4759366706912129,0.0,1.3163591245903838,0.0006544913145286116,0.034544309487033596,0.7215838986055296,1,0.6939793255626049,0.6101463558143374,0.38
+186,12,0.4262850840614566,0.05,0.7599776679414422,0.00022656217849633146,0.018414059172588218,0.8076122530676677,1,0.737133468718597,0.5609612333664924,0.44
+186,13,0.4953639921771636,0.0,1.201063303488112,0.0006389037600264563,0.03266276066061535,0.7441514463632627,1,0.7684800305260412,0.5879866049768306,0.49
+186,14,0.560493878210389,0.05,1.2084295762308352,0.0006314185347828824,0.03298854036425058,0.7281600871651654,1,0.8278140117201597,0.6358632470277772,0.49
+186,15,0.47563081902727133,0.05,1.3819372664916587,0.0006972147237422131,0.036528661543268795,0.6924648958001322,1,0.8479737846220877,0.5961333146984686,0.55
+186,16,0.4582016697024316,0.0,0.8369481126601716,0.0008243656537101269,0.029699654950248733,0.8071198495853523,2,0.8850698075011194,0.5614241235901328,0.6100000000000001
+186,17,0.5864321577698496,0.0,0.8714246421666487,0.0006241325747519427,0.028171743054296972,0.8017593959210855,2,0.9406478058990337,0.6240180856839592,0.6000000000000001
+186,18,0.5143486521240213,0.05,1.1187131381208861,0.0009150909171587643,0.03558686459342812,0.7454435288534583,2,0.9677851931506997,0.5854127817375882,0.5800000000000001
+186,19,0.5951574902203519,0.0,0.7595702170301865,0.00045583857053842626,0.024061463935012527,0.8189897791766727,2,1.0,0.61719163406784,0.5750000000000001
+186,20,0.6158672837688618,0.05,1.1164449871537852,0.0009169186321529041,0.03536687148678033,0.7458729949235459,2,1.0,0.6528909458962061,0.5650000000000001
+186,21,0.6092312555314285,0.05,1.1256323799593906,0.0009436489753841065,0.03594520922727666,0.7441174475159013,2,1.0,0.6974375184380952,0.555
+186,22,0.626453479056802,0.05,1.1242345821930868,0.0009688322443349987,0.035618058875570596,0.7443739230099394,2,1.0,0.721511596856007,0.55
+186,23,0.6566020643530033,0.05,1.1436544177915466,0.0009423270348602603,0.0361335952868931,0.7406713691532171,2,1.0,0.7886735478433445,0.54
+186,24,0.7310473658893574,0.1,1.1411996246768243,0.0009626732735836328,0.03600568169727065,0.7264877138746846,2,1.0,0.8701578862978581,0.51
+186,25,0.6768953432135942,0.15000000000000002,1.1973139067648524,0.0006396273898598686,0.03238558795929624,0.6998128520561243,2,1.0,0.8896511440453142,0.505
+186,26,0.7017030278399184,0.10000000000000002,1.19714972641448,0.000633334334115536,0.032042320874069774,0.7153646662055968,2,1.0,0.9390100927997282,0.495
+186,27,0.6988997972119465,0.10000000000000002,1.188503861458303,0.0006394419218037524,0.03232268493011132,0.7171193596824864,2,1.0,0.9963326573731552,0.485
+186,28,0.6338745142362836,0.10000000000000002,1.185260217925234,0.0006458978991757353,0.03219796658342945,0.7177742832843835,2,1.0,0.9462483807876122,0.46499999999999997
+186,29,0.6026954887629812,0.05000000000000002,1.2089132807682867,0.0006417251941790494,0.0326821368939592,0.7280602495028189,2,1.0,0.9089849625432705,0.44499999999999995
+186,30,0.586872499310487,1.3877787807814457e-17,1.2255138379514905,0.0006376200751689427,0.03290439660973949,0.7394690803128771,2,1.0,0.8562416643682902,0.42499999999999993
+186,31,0.7456499818325422,1.3877787807814457e-17,1.2410436131333689,0.000635230536531329,0.033022783894835324,0.7364670183881522,2,1.0,0.9188332727751406,0.3949999999999999
+186,32,0.7419650361823165,1.3877787807814457e-17,1.2533274666740561,0.0006465277891217682,0.03354847661831377,0.7340716011366246,2,1.0,0.9732167872743887,0.3649999999999999
+186,33,0.72,0.0,1.2626703144213627,0.0006585562022108481,0.03413884949945578,0.7322390786916715,2,1.0,1.0,0.35499999999999987
+186,34,0.7,0.0,1.258990515785158,0.0006625350484245901,0.03357529836422023,0.732958384032071,2,1.0,1.0,0.34499999999999986
+186,35,0.6344487150199651,0.0,1.254976795987687,0.0006653698649631508,0.034014444124304585,0.7337421484021457,2,1.0,0.948162383399884,0.32499999999999984
+186,36,0.7679438053842398,0.0,1.2266207484488105,0.0005843437233764184,0.03274801609849675,0.7392763106598961,2,1.0,0.9931460179474659,0.2949999999999998
+186,37,0.75,0.05,1.2100261815175102,0.000570800269558862,0.031520304638435394,0.7278679499985907,2,1.0,1.0,0.2649999999999998
+186,38,0.6375787550331544,0.05,1.202321700990407,0.0005646102726744204,0.03136754731771088,0.7293937857461946,2,1.0,0.958595850110515,0.2449999999999998
+186,39,0.77,0.0,1.211121271086744,0.0005753241006753673,0.03224636357548793,0.7422561392419429,2,1.0,1.0,0.2149999999999998
+186,40,0.6310140352650546,0.05,1.1854476570579708,0.000554554793781967,0.031114100779421266,0.7327153770028425,2,1.0,0.9367134508835153,0.1949999999999998
+186,41,0.7635570826451665,0.0,1.2017212084737499,0.0005738600327459015,0.0319370163377321,0.7440509421965412,2,1.0,0.978523608817222,0.1649999999999998
+186,42,0.75,0.05,1.1764781924742929,0.0005540772097474703,0.030950400767570524,0.7344685043766012,1,1.0,1.0,0.13499999999999981
+186,43,0.71,0.05,1.215485038264485,0.0006638838475183803,0.03320434087685485,0.7267483679621634,1,1.0,1.0,0.13499999999999981
+186,44,0.71,0.0,1.2393759138833975,0.0006554987272655493,0.033586460289444245,0.736782702072015,1,1.0,1.0,0.13499999999999981
+186,45,0.7,0.0,1.2530167729623545,0.0006455284432510647,0.03308242545103012,0.7341326375046295,1,1.0,1.0,0.18499999999999983
+186,46,0.6799999999999999,0.0,1.2648076328224578,0.000682120144143837,0.03483109258764209,0.7318105679892565,1,1.0,1.0,0.23499999999999982
+186,47,0.6393397420589111,0.0,1.2725837923184564,0.00071711866362487,0.034685339109679705,0.7302678530075264,1,1.0,0.964465806863037,0.2949999999999998
+186,48,0.6053765742933177,0.0,1.2597561587260568,0.0007096448690484297,0.03488907164843383,0.7327900490832236,1,1.0,0.9179219143110594,0.3549999999999998
+186,49,0.6861610831505309,0.0,1.0566806571190392,0.0005382347743515338,0.02916720891704877,0.7706955590310831,1,1.0,0.9538702771684366,0.4049999999999998
+187,0,0.20957596803371106,0.0,1.3457188269980158,0.0006959303479392113,0.035554814078019734,0.7156304570327514,1,0.14616299686030162,0.26139639710868495,0.0
+187,1,0.20098897694905343,0.0,1.3457221006738274,0.0006987426091334452,0.03618575388228839,0.7156286462147461,1,0.18566301009989974,0.2866897447136284,0.05
+187,2,0.15266394635975916,0.0,1.34481957439021,0.0006968498499280171,0.035611517100379686,0.7158130485019868,1,0.22320541488045081,0.24847350383867128,0.11
+187,3,0.24807564020913292,0.0,1.3663806418524604,0.0007174415107146757,0.036532612598696966,0.7113982059876043,1,0.28117880800853234,0.2988768580204887,0.12
+187,4,0.2623135038628661,0.0,1.3655242292002272,0.0007197773851042744,0.036613461740661664,0.7115730461009434,1,0.323746275141767,0.36334102521082573,0.13
+187,5,0.2210494875462229,0.0,1.364514415173144,0.0007219246501262677,0.03663688414314439,0.71177937183998,1,0.3525219405266645,0.32555602787296767,0.19
+187,6,0.3144017839108541,0.0,1.3693328937541993,0.0007183311745785044,0.03655520744720232,0.7107913329401855,1,0.3953951084851048,0.38671165313689154,0.2
+187,7,0.256879315076379,0.0,1.36812428427938,0.0007203419145050224,0.03663125151354531,0.7110388936076346,1,0.4405589805296579,0.34227890630332913,0.26
+187,8,0.24312011696629024,0.0,1.3585884192416906,0.0006975678472318925,0.03626703681753861,0.7130035279092137,1,0.4669889450106528,0.33224662070853933,0.32
+187,9,0.33649309969727587,0.0,1.3648905887786056,0.0006965028794070851,0.03613661863387804,0.7117126259426877,1,0.5087065222973003,0.3614860563107359,0.37
+187,10,0.34279245658586077,0.0,1.3312485663501503,0.0007697123431502733,0.03622929854501823,0.718536152367865,1,0.555631041688319,0.39440530664983037,0.42
+187,11,0.31484821985483813,0.0,1.3363162717168118,0.0007600724494563125,0.036674343801096354,0.7175140234270637,1,0.5990079789647482,0.35065142405725414,0.48
+187,12,0.29388473435222645,0.0,1.34551624346201,0.0007509525537626032,0.036579080243152554,0.7156492886932154,1,0.6490664721000372,0.2890382303907116,0.54
+187,13,0.38538364693564453,0.0,0.7904708556261943,0.0002692292243925715,0.02055281158957041,0.8144200813735788,1,0.6962073743501748,0.30570355304361124,0.5900000000000001
+187,14,0.45414473986047466,0.05,0.8276811851469217,0.00028118742478355324,0.02148070519407209,0.796855602147594,1,0.7533721069081919,0.36821500814202496,0.5900000000000001
+187,15,0.47067160975280986,0.1,0.8862841979465739,0.00035843938753847744,0.023437640028430063,0.7743430249317057,2,0.8099002341080863,0.4240217593832656,0.6000000000000001
+187,16,0.4964903491793027,0.1,0.8593923614621735,0.000509122041985064,0.026054943290200604,0.7789554162235183,2,0.8624700008702969,0.48208616291566286,0.5900000000000001
+187,17,0.610647664672576,0.1,0.8491123572514215,0.0004961693649461307,0.0261379691518833,0.7807248251598364,2,0.9473441533387105,0.5302573700134245,0.56
+187,18,0.5952077267774696,0.15000000000000002,0.8798035018106786,0.0005731882401497602,0.027589362511362375,0.7620678639590104,2,1.0,0.5840257559248988,0.55
+187,19,0.6618627457909027,0.15000000000000002,0.8810053069241738,0.0005701991432681196,0.027406092108708098,0.7618509681554693,2,1.0,0.6395424859696756,0.52
+187,20,0.6302611775899427,0.2,1.1137725733269304,0.0009282786398639188,0.03511937094047861,0.7014832275314481,2,1.0,0.7008705919664757,0.51
+187,21,0.630780998176917,0.15000000000000002,1.1218610088063745,0.0009528510819382228,0.03537145756378943,0.7152933301827319,2,1.0,0.7359366605897234,0.505
+187,22,0.613619237846934,0.15000000000000002,1.1331928692813937,0.0009327304315456218,0.03553582340830217,0.7129882264522326,2,1.0,0.7453974594897801,0.5
+187,23,0.7090232441699575,0.15000000000000002,1.1493726295868902,0.0009090917304833681,0.03525238094661811,0.709675629095749,2,1.0,0.7967441472331921,0.47
+187,24,0.7077216864941198,0.2,1.1409993428133487,0.0009046017965137819,0.03560663886208957,0.6957607501720219,2,1.0,0.8590722883137331,0.43999999999999995
+187,25,0.6781536247063015,0.2,1.2258717225463953,0.0006810359709587726,0.033584191134171035,0.6776004528214529,2,1.0,0.8938454156876716,0.43499999999999994
+187,26,0.7021573954187872,0.2,1.2220891213643017,0.0006743398923522196,0.03313246756087161,0.6784291585510913,2,1.0,0.9405246513959574,0.42499999999999993
+187,27,0.614459619345205,0.2,1.2184710830854284,0.0006776011699602131,0.033432151983197406,0.6792165495333293,2,1.0,0.8815320644840169,0.4049999999999999
+187,28,0.6989385832350856,0.15000000000000002,1.2401747050245544,0.0006714768284903495,0.03382704378080031,0.6907188944788444,2,1.0,0.9297952774502852,0.3949999999999999
+187,29,0.61341506794706,0.2,1.2313146487725457,0.0006728171291344876,0.0336556830999706,0.6764138518868034,2,1.0,0.8780502264902001,0.3749999999999999
+187,30,0.5778885883724147,0.1,1.2569803921469922,0.0006683110441347681,0.034021188121501456,0.7030121583317893,2,1.0,0.8262952945747162,0.35499999999999987
+187,31,0.6796391690023829,0.0,1.2669446522890435,0.0006628243600773296,0.03406586077713396,0.7313985221453232,2,1.0,0.8654638966746097,0.34499999999999986
+187,32,0.6793136841276248,0.0,1.252729755635034,0.00066134175223209,0.03386565760193224,0.7341824821698341,2,1.0,0.8977122804254162,0.33999999999999986
+187,33,0.6028263269306391,0.0,1.248478626337009,0.0006562386914265733,0.03368138940445399,0.7350132879322072,2,1.0,0.8427544231021306,0.31999999999999984
+187,34,0.67591815568259,0.0,1.3152465309314278,0.0006589131987112469,0.03493267145871553,0.7218055883522974,2,1.0,0.8863938522753,0.31499999999999984
+187,35,0.6616033159932456,0.0,1.3241703874098896,0.0006659850718786882,0.03502921231311817,0.7200072643172812,2,1.0,0.9053443866441522,0.30999999999999983
+187,36,0.6692808149612515,0.0,1.3306657598495224,0.0006733792126018545,0.03555750472051359,0.7186929589097721,2,1.0,0.9309360498708384,0.3049999999999998
+187,37,0.7167975312969543,0.0,1.3351709647919567,0.0006809275505456291,0.03510069799751461,0.7177781714460979,2,1.0,0.989325104323181,0.2949999999999998
+187,38,0.7,0.0,1.3473856769912786,0.0006814063189530602,0.0358487469510904,0.7152970409220889,2,1.0,1.0,0.2849999999999998
+187,39,0.71,0.0,1.3569550543003726,0.0006831168695441473,0.035606070324337505,0.7133435562766254,2,1.0,1.0,0.2799999999999998
+187,40,0.69,0.0,1.3601054578260925,0.0006879452994381343,0.035991648060373735,0.7126969374249712,2,1.0,1.0,0.2749999999999998
+187,41,0.69,0.0,1.3616936427772175,0.0006925161976036205,0.036122836384953824,0.7123697576910937,2,1.0,1.0,0.2699999999999998
+187,42,0.69,0.0,1.3620855892846395,0.0006967076047175928,0.03606112500968063,0.712287723605716,2,1.0,1.0,0.2649999999999998
+187,43,0.6329703331648144,0.0,1.3615320456433402,0.0007003942103818101,0.036412874888830375,0.7123996394753338,2,1.0,0.943234443882715,0.2449999999999998
+187,44,0.7069714733490116,0.0,1.359985220164958,0.0007027031929384595,0.035916078063645565,0.7127155132786236,2,1.0,0.9899049111633719,0.2399999999999998
+187,45,0.6333401011146417,0.0,1.3589161390964901,0.0007066809833588825,0.03641236325070604,0.7129327319111203,2,1.0,0.9444670037154723,0.2199999999999998
+187,46,0.7042421332783727,0.0,1.3572498080154252,0.0007092380401709567,0.036130870887701186,0.7132725956997275,2,1.0,0.9808071109279092,0.2149999999999998
+187,47,0.69,0.0,1.3556912496686886,0.0007134507792851909,0.03619767702004825,0.7135895159756084,2,1.0,1.0,0.2099999999999998
+187,48,0.69,0.0,1.353652821630391,0.000716911311612553,0.03624033466818729,0.714004534170354,2,1.0,1.0,0.2049999999999998
+187,49,0.77,0.0,1.3510041505888466,0.0007200279949444255,0.03621159546372178,0.7145438201087145,2,1.0,1.0,0.1749999999999998
+188,0,0.20758094039208175,0.0,1.3538954750190975,0.0006952568957162802,0.0356879168881747,0.7139638258648037,1,0.1470435393838136,0.2537190053591567,0.0
+188,1,0.13189149705682165,0.0,1.3537699225267792,0.0006974792341554601,0.036287465078678485,0.7139885577991433,1,0.17211013663422073,0.23884316411614803,0.06
+188,2,0.11302638316264414,0.0,1.3603336108346669,0.0006964220880169654,0.03597809225931545,0.7126467467809782,1,0.21566267293205635,0.19181482545474812,0.12
+188,3,0.24662508524166302,0.0,1.3246117080864315,0.0007476599210716557,0.03594521217266084,0.7198853484874587,1,0.26533182349398166,0.24586315672923142,0.12
+188,4,0.2678907451782879,0.0,1.3698114575296698,0.0007189809140014838,0.036724452699218695,0.7106926789068253,1,0.32048391376709906,0.31907125119934443,0.12
+188,5,0.19904519696975032,0.0,1.3687606220350772,0.000720327244023976,0.03671895720126815,0.7109081384814929,1,0.34132428273900267,0.2652723267036647,0.18
+188,6,0.31728143808516673,0.0,1.372377276354625,0.0007171948620112515,0.03662326844720039,0.7101655746912837,1,0.41053446384446296,0.31198125246534913,0.18
+188,7,0.32910262414692537,0.0,1.3627138350185293,0.0006924795951749557,0.03604961901031252,0.7121606909582991,1,0.46857076881112575,0.35034285021010464,0.18
+188,8,0.33601274349885324,0.0,1.3611970830620272,0.0006927596052292643,0.036245152123673574,0.7124713918655555,1,0.49262834857242443,0.37864273832834894,0.22999999999999998
+188,9,0.34494422201483366,0.0,1.3596773695744229,0.0006903043958677094,0.03592094331468476,0.712783618876719,1,0.5350329028191342,0.4256090200937889,0.27999999999999997
+188,10,0.30745002361259394,0.0,1.3835462751256795,0.0006982962877123777,0.03648175446086451,0.7078690859781919,1,0.55124293945567,0.38171664934369814,0.33999999999999997
+188,11,0.29219994520629794,0.0,1.357892700269395,0.000737207816892651,0.03675619587492049,0.7131296529538454,1,0.5873666408621074,0.35540540301520124,0.39999999999999997
+188,12,0.38814901623802295,0.0,1.3623640969402913,0.0007313186515631876,0.0366811604115043,0.7122164567241314,1,0.6186261893286473,0.4054328332433214,0.44999999999999996
+188,13,0.33003703430157366,0.05,1.2339853731270183,0.0008787672777908139,0.03649812359077522,0.7229730379767962,1,0.6581913231321244,0.3322335706844338,0.51
+188,14,0.42493763006475543,0.05,0.3560362041284756,4.279467167195762e-05,0.008122934552694607,0.8628159808635563,1,0.7045703782711226,0.3944599922328753,0.52
+188,15,0.3576068597996102,0.15000000000000002,0.34679772238288,4.019435067742583e-05,0.00767823854401526,0.8452892836012987,1,0.7281527778027255,0.34251129189552104,0.5800000000000001
+188,16,0.4789874370966516,0.15000000000000002,0.42831424606465174,6.236373587999325e-05,0.00974849456083015,0.8343203071109156,1,0.7905893657397476,0.4076038636257999,0.5800000000000001
+188,17,0.4771090429639911,0.2,1.248200502794929,0.0008636457011132086,0.03654255735089618,0.6726229170796489,2,0.8418208143373155,0.4415725264864357,0.6300000000000001
+188,18,0.49815357849804787,0.2,0.9557432985831966,0.0008080826238610858,0.0319367966745667,0.7335365883544457,2,0.9037358264671282,0.47282013078184354,0.6250000000000001
+188,19,0.5322735158858833,0.2,0.9813985144748354,0.0007970992874601259,0.03221667968629923,0.7284964003842517,2,0.9663940972531042,0.5134519394909899,0.6200000000000001
+188,20,0.5549954705059671,0.25,1.0039629314240865,0.0007872356289518273,0.03243182498293166,0.7087792590693722,2,1.0,0.5499849016865571,0.6150000000000001
+188,21,0.5024188988498605,0.25,1.0309183563955013,0.0007834046486291061,0.03255041063110928,0.7031858073794042,2,1.0,0.5080629961662018,0.5950000000000001
+188,22,0.46240454129133535,0.2,1.0484595419392146,0.0007758850443747715,0.03251197068127941,0.7150398007917139,2,1.0,0.44134847097111796,0.5750000000000001
+188,23,0.5663741359891876,0.15000000000000002,1.0602322552451582,0.0007621738153060963,0.03249022060516158,0.7277513029622481,2,1.0,0.48791378663062557,0.5650000000000001
+188,24,0.5617952527341856,0.2,1.0415230497145125,0.0007461515090608344,0.03201802679053711,0.7164631355709322,2,1.0,0.5393175091139522,0.555
+188,25,0.5832244620906898,0.2,1.0416346191133798,0.0007405699087817038,0.03229592557688978,0.716442738239903,2,1.0,0.5774148736356326,0.55
+188,26,0.657159714780212,0.2,1.0581973999243492,0.0007355199860871949,0.0319013732330107,0.7130680054129981,2,1.0,0.6238657159340399,0.52
+188,27,0.6505293504913956,0.25,1.1054768773756134,0.0008674007230717283,0.03464749849595934,0.687356243084175,2,1.0,0.668431168304652,0.49
+188,28,0.6355094635121489,0.25,1.1047900950804546,0.0008578044188157343,0.034148511733504736,0.6875079353531308,2,1.0,0.7183648783738298,0.48
+188,29,0.702851797033573,0.25,1.108388099897649,0.0008973794276078161,0.03487448047695836,0.6867173883736764,2,1.0,0.7761726567785767,0.44999999999999996
+188,30,0.6509025186360626,0.3,1.09864897073289,0.0008881297116488797,0.0347490638207233,0.6725133716163433,2,1.0,0.8030083954535424,0.44499999999999995
+188,31,0.6715850343609235,0.25,1.224470754200068,0.0006742619643371234,0.03349117420072446,0.6613196848574283,2,1.0,0.8386167812030787,0.43499999999999994
+188,32,0.5864057939937565,0.25,1.215772216898944,0.0006751517179737188,0.03320569522889747,0.6632648083402101,2,1.0,0.7880193133125216,0.4149999999999999
+188,33,0.6562595967537234,0.2,1.1318152081833566,0.0008503780115795181,0.03465747406849688,0.6977241969858279,2,1.0,0.8208653225124113,0.4099999999999999
+188,34,0.5733181084018301,0.25,1.218412092432077,0.0006721218735836303,0.033366216729065104,0.6626763070668694,2,1.0,0.7443936946727671,0.3899999999999999
+188,35,0.6402545811721982,0.2,1.1549371217017763,0.0008145407178017154,0.03432443747840531,0.6928407425080008,2,1.0,0.7675152705739943,0.3849999999999999
+188,36,0.7158296584152621,0.25,1.155525043573761,0.0008009592605019175,0.03391938791470499,0.6765305732036538,2,1.0,0.8194321947175406,0.35499999999999987
+188,37,0.6759696201261847,0.3,1.2307543072060532,0.0006707478282568556,0.03350620616026955,0.6428841268458233,2,1.0,0.8532320670872822,0.34499999999999986
+188,38,0.7418222670563501,0.25,1.2316150735933864,0.0006722761620060378,0.03372600308669245,0.6597185811373152,2,1.0,0.906074223521167,0.31499999999999984
+188,39,0.6069510451119257,0.25,1.2627743715465147,0.0008427951015935947,0.03628563964597837,0.6526119041403128,2,1.0,0.8565034837064189,0.2949999999999998
+188,40,0.7415125074975208,0.15,1.259114315228197,0.0008501555222844653,0.036427841117493566,0.6865814560164619,2,1.0,0.9050416916584032,0.2649999999999998
+188,41,0.7089289098353593,0.15,1.2711635488635684,0.0008407877121294179,0.03654554685642007,0.683986852175701,2,1.0,0.9630963661178644,0.2549999999999998
+188,42,0.77,0.04999999999999999,1.280120052772574,0.0008227555870097755,0.036423822554219866,0.7136615721670959,2,1.0,1.0,0.22499999999999978
+188,43,0.71,0.04999999999999999,1.2919807624458701,0.0008137029335192462,0.03652921699872636,0.7112354404651868,2,1.0,1.0,0.21999999999999978
+188,44,0.77,0.0,1.286556448628882,0.000818712907417916,0.036315037012300176,0.7274664440925427,2,1.0,1.0,0.18999999999999978
+188,45,0.75,0.0,1.3013000952584681,0.0008048345592305242,0.036237096138305724,0.7245391402777767,2,1.0,1.0,0.15999999999999978
+188,46,0.6354841093751804,0.0,1.3172115067065975,0.0007879570141336089,0.03671295091288279,0.72135897211249,2,1.0,0.9516136979172679,0.1399999999999998
+188,47,0.6038502212808694,0.0,1.313327147007713,0.0007955278540159176,0.03659938017193046,0.722136019229829,2,1.0,0.9128340709362315,0.11999999999999979
+188,48,0.691330228446495,0.0,1.3094142276584757,0.0008012579001046097,0.036744604164428776,0.7229181899708244,2,1.0,0.9377674281549834,0.11499999999999978
+188,49,0.7157463897699188,0.0,1.3045446636800029,0.0008070196436583733,0.0367646209728547,0.7238902372361663,2,1.0,0.9858212992330629,0.10499999999999979
+189,0,0.008858034450976299,0.0,1.3567676545500762,0.0006969745053564227,0.03574059983917631,0.7133762081692724,2,0.12699334643068305,0.1480345440007908,0.06
+189,1,-0.02123205660075421,0.0,1.385901564997676,0.000699893150406536,0.03650264700478896,0.7073811351154856,2,0.13593915299746626,0.10396413283377537,0.039999999999999994
+189,2,0.15739752063434637,0.0,1.3859248671346929,0.0006999128087518947,0.03663756548015793,0.7073763035730586,2,0.1780640592391743,0.11691699966878452,0.034999999999999996
+189,3,0.20071184864314312,0.0,1.385793250181975,0.000699851827000487,0.03673284818047695,0.7074035721340707,2,0.24189346485401592,0.15349711981412512,0.024999999999999994
+189,4,0.224944125301336,0.0,1.3860852497933855,0.0007000412314096382,0.03677583171134795,0.7073430508802181,2,0.295415823342482,0.2051619571048911,0.019999999999999993
+189,5,0.15602796097995686,0.0,1.3849235686320571,0.0006992504606431096,0.03673163455927429,0.7075837984712199,2,0.3113195626705516,0.15688704681754603,0.0
+189,6,0.1263826046163101,0.0,1.3862503903143728,0.0007002300408322658,0.036729509013717354,0.707308785983046,2,0.32687261360810593,0.10659063284491005,0.0
+189,7,0.24615004673019847,0.0,1.3862001392765,0.0007002637193399585,0.03661837421519678,0.707319175054498,1,0.36129811080558866,0.16565235982747475,0.0
+189,8,0.24850650066877966,0.0,1.3194331631818184,0.0007758848711026132,0.0363239686550758,0.7209170569239931,1,0.39895569217280386,0.19624002802766102,0.05
+189,9,0.31610234389627995,0.0,1.3232956617859182,0.0007665994801504335,0.036403590080655183,0.7201430190004539,1,0.456537359589425,0.25438089346660403,0.05
+189,10,0.3268943330891444,0.0,1.353403947815148,0.0006824551231106183,0.03611706653643578,0.7140694223518042,1,0.4960119179120692,0.31096720606640055,0.060000000000000005
+189,11,0.2680506757940827,0.0,1.3551817129784782,0.0006860524797333858,0.03558579106280358,0.7137048402378968,1,0.533620946654126,0.27094448155046214,0.12
+189,12,0.2513893908851873,0.0,1.3620934502600455,0.0006870582963701213,0.03607604214033357,0.7122900675607171,1,0.5754653177542762,0.23325509890396878,0.18
+189,13,0.25974934879764927,0.0,1.3674809807083463,0.000688556316291221,0.036030216125630864,0.7111841082560131,0,0.6258409864591198,0.20235001178985795,0.24
+189,14,0.331664856177642,0.0,1.3862943611198846,0.0007001722195526527,0.03677093273821602,0.7072997068701548,0,0.6944715440773922,0.1953327191685159,0.3
+189,15,0.34345264932855024,0.0,1.3862943611198846,0.0007001722195526527,0.03670703823465997,0.7072997068701548,0,0.78869336726533,0.1580332359522826,0.38
+189,16,0.3575178526295256,0.0,1.3846617847598828,0.0007012272460960178,0.03660377423836046,0.7076371430170467,0,0.8058433839709258,0.18490889413233863,0.38
+189,17,0.38256694355761584,0.0,1.3862943611198844,0.0007001722195526525,0.03643786636773582,0.7072997068701548,0,0.9028582367571766,0.15522186897534662,0.46
+189,18,0.39722318347229657,0.0,1.3861564606232175,0.0007001669523437855,0.03641420703546029,0.7073282573376812,0,0.923061777641021,0.180505204326464,0.46
+189,19,0.40631390145960355,0.0,1.3860860215691815,0.0007000259774147413,0.036577632719345755,0.7073428974311917,0,0.9684793860041909,0.22448705452712248,0.46
+189,20,0.4521974534556542,0.0,1.1578846850267421,0.000789079855629636,0.03384692868982385,0.7522292402214048,0,1.0,0.24065817818551402,0.47000000000000003
+189,21,0.45149289971957407,0.05,1.1802700021216608,0.0007729319763523756,0.03458639883438984,0.7336428268421604,0,1.0,0.27164299906524686,0.47000000000000003
+189,22,0.4628638396576049,0.05,1.2125001962288655,0.000757385892343991,0.03505318928601529,0.7273036244878055,0,1.0,0.2762127988586831,0.53
+189,23,0.4578277099168156,0.05,1.2162546959529448,0.0007958175203884616,0.03440797948420552,0.7265430771180064,0,1.0,0.29275903305605205,0.53
+189,24,0.45165534979164795,0.05,1.2365224392814047,0.000778669503948306,0.03572167589501577,0.7225047586761013,2,1.0,0.2721844993054932,0.61
+189,25,0.5059296473869792,0.05,1.1453386910488388,0.0008294179026564763,0.034500316986301245,0.7403911347526343,2,1.0,0.3197654912899307,0.605
+189,26,0.43195565807530245,0.1,1.1533287502328053,0.0008136452929727637,0.03449340540410625,0.7241305523849625,2,1.0,0.2731855269176749,0.585
+189,27,0.514729353655682,0.05,1.1826144899127455,0.0007985752784511274,0.03471542843551573,0.7331744041230693,2,1.0,0.3157645121856064,0.575
+189,28,0.5110617340680659,0.1,1.1688555336560302,0.0007958343029435449,0.03433931247507041,0.7210252331429311,2,1.0,0.3368724468935531,0.57
+189,29,0.43537268665186724,0.1,1.180800962997938,0.0007815898985527169,0.03444636097598046,0.7186218643223045,2,1.0,0.2845756221728909,0.5499999999999999
+189,30,0.5205528389197278,0.05,1.204464233820385,0.0007677688193550915,0.03437880502401377,0.7288904035442016,2,1.0,0.335176129732426,0.5399999999999999
+189,31,0.5194627266176631,0.1,1.1908208470969146,0.0007649821318024008,0.03433843743804911,0.7165981135499605,2,1.0,0.36487575539221057,0.5349999999999999
+189,32,0.4463280466913301,0.1,1.2008021472444514,0.0007532273931177147,0.03415211354382962,0.7145714786923862,2,1.0,0.3210934889711003,0.5149999999999999
+189,33,0.4099398967060047,0.05,1.224419560819464,0.00074016781138361,0.03432881693633424,0.7249400930080662,2,1.0,0.26646632235334916,0.4949999999999999
+189,34,0.5672219406021374,0.0,1.2414653668706208,0.000728002046773936,0.03446501188472705,0.7363491352743848,2,1.0,0.3240731353404581,0.46499999999999986
+189,35,0.5608837889334873,0.05,1.2410587951711531,0.0007531421173725481,0.03498134201580789,0.7216045964800654,2,1.0,0.3696126297782914,0.43499999999999983
+189,36,0.5420025488372907,0.05,1.249016458298373,0.0007735471958398468,0.035264730974613315,0.7199949274072904,2,1.0,0.40667516279096916,0.4249999999999998
+189,37,0.6082559391200734,0.05,1.0693853519429073,0.0008994462419697439,0.03429843700201212,0.7546958137796844,2,1.0,0.46085313040024456,0.3949999999999998
+189,38,0.5726481120105036,0.1,1.072854955677621,0.0009348688168760255,0.03503115117894997,0.7398665967995092,2,1.0,0.5088270400350122,0.3849999999999998
+189,39,0.4809780294795465,0.05,1.0729068179943966,0.0009261640375719886,0.03476759608400679,0.7540333896468778,2,1.0,0.43659343159848835,0.36499999999999977
+189,40,0.4429129277891122,0.0,1.0848177816896458,0.0009166781772491856,0.034875203884801594,0.7655494037096885,2,1.0,0.3763764259637074,0.34499999999999975
+189,41,0.431702330139038,0.0,0.9926758115682088,0.0005596916336836502,0.028535182862413456,0.7818030578229691,2,1.0,0.339007767130127,0.32499999999999973
+189,42,0.536155953934929,0.0,0.9991324238117205,0.00038672192658952096,0.02530191702126991,0.7807588613897655,2,1.0,0.3871865131164299,0.3149999999999997
+189,43,0.5309441849660039,0.05,1.027753696030531,0.0004076752654320119,0.026153641701936747,0.7624992880168245,2,1.0,0.43648061655334647,0.3049999999999997
+189,44,0.46401077653804423,0.0,1.2678499625484143,0.0007823699472057001,0.035502623032473056,0.7311736395503464,2,1.0,0.3800359217934809,0.2849999999999997
+189,45,0.5298695923891262,0.0,1.105308612193305,0.000539145567930489,0.029524878066906214,0.7619886133137878,2,1.0,0.39956530796375406,0.2799999999999997
+189,46,0.5177657754584479,0.05,1.0925849218760861,0.0005254698404977544,0.028759496039929333,0.7505156167824117,2,1.0,0.42588591819482663,0.2749999999999997
+189,47,0.559694616073825,0.05,1.228758534346037,0.0008114064983227708,0.035594655733841934,0.7240455827180915,2,1.0,0.46564872024608356,0.2649999999999997
+189,48,0.5584785112573158,0.1,1.2212320964115397,0.0008096717696401221,0.035402896563916694,0.7103631785563154,2,1.0,0.4949283708577195,0.2599999999999997
+189,49,0.6365381591206343,0.1,1.2329386653994785,0.0007913429514751897,0.0352161114569756,0.7079562439029579,2,1.0,0.5551271970687812,0.22999999999999968
+190,0,0.17158990277289596,0.1,1.344859569113828,0.0007000246281199634,0.03550207406060331,0.6843294574239096,1,0.13886278663729973,0.24329309149947023,0.05
+190,1,0.16784532048617182,0.0,1.3441561605926018,0.0006984935831331777,0.03615645338039621,0.715947315388363,1,0.16714992226446204,0.26447615897870036,0.1
+190,2,0.1968504536614456,0.0,1.3397647212351955,0.0006970034615988973,0.03546464868382822,0.7168401455516318,1,0.21131087601335755,0.3096388235225682,0.15000000000000002
+190,3,0.28814566619453325,0.0,1.3730573740574483,0.000716365682029049,0.036662246853523074,0.7100259113203019,1,0.2725227153773957,0.3758757193748158,0.15000000000000002
+190,4,0.2833499464385446,0.0,1.3719492748480469,0.0007176693329064562,0.03675108620321447,0.7102534672150019,1,0.30801374190951336,0.4184837892340498,0.2
+190,5,0.35604447608476,0.0,1.3577344546583654,0.0006845044805160174,0.035971668601830285,0.7131835867868427,1,0.35377239467213006,0.5074137931650482,0.2
+190,6,0.35101817781416766,0.0,1.3649591802165117,0.0006865428342083574,0.0359216386156385,0.7117026395615331,1,0.3868835453309186,0.5520297898278207,0.25
+190,7,0.3011996788675446,0.0,1.365353425404959,0.0006882586235735428,0.03632288461479982,0.7116210365810954,1,0.4136275349691786,0.5214334720944404,0.31
+190,8,0.2734957999501928,0.0,1.3833524859790627,0.0006981234118883827,0.036456356577417574,0.7079092295997165,1,0.43345324248720407,0.4726238835989048,0.37
+190,9,0.3845559374777763,0.0,1.3712515855832916,0.0006942351301066161,0.036422917709406456,0.7104066683386159,1,0.4757685610035841,0.526789803755073,0.38
+190,10,0.312089048939259,0.0,1.368705738476189,0.0006934908741884707,0.03606279169926196,0.7109304482176819,1,0.48461343179232225,0.47491449270648733,0.44
+190,11,0.4169841672656164,0.0,1.3721605202711347,0.0006932335190762956,0.03640152452763461,0.7102200506058993,1,0.5459894102369826,0.5529595789422417,0.45
+190,12,0.42685106784261406,0.0,1.3692323084119877,0.0006920826574667006,0.03614539969119067,0.7108228006117246,1,0.5847827613109161,0.6072570046126448,0.46
+190,13,0.5038088209568027,0.0,1.2966855167417726,0.000752539313205854,0.035827103629003196,0.725480003569528,1,0.6394872763104451,0.6666275808271565,0.46
+190,14,0.4965759349880372,0.05,0.7717829148979167,0.00022941778724917757,0.01869510691873456,0.8057704587758192,1,0.682829241080722,0.6919523353659486,0.51
+190,15,0.5357435789630803,0.05,0.776216612300151,0.00023148968292190181,0.018665350452225983,0.8050749743811556,1,0.7263346027421511,0.7384215600110917,0.52
+190,16,0.4660555932905426,0.1,0.8127781345245509,0.0002679495575929706,0.020292024305304027,0.7869580697368384,1,0.7534155916953617,0.6745337873238869,0.5800000000000001
+190,17,0.4518195342132046,0.05,0.8535433396617194,0.00028703410619856565,0.020968488094645948,0.7926350459245319,2,0.788004867587663,0.6533927685250753,0.6400000000000001
+190,18,0.5767213715182731,0.05,1.1562098160506529,0.0005519721588495612,0.03119049524542869,0.7384033178010435,2,0.8471654255167074,0.7007115752914185,0.6300000000000001
+190,19,0.4963318846086241,0.1,1.0956993200146328,0.0007686082002910924,0.03282034286533674,0.7355105390256891,2,0.8641520401137915,0.6462622352293237,0.6100000000000001
+190,20,0.6634194824370474,0.05,1.1264111445702563,0.0007594518295632961,0.03353925024214304,0.7440393024418409,2,0.9497600354149494,0.7033449001393839,0.5800000000000001
+190,21,0.6287842045744734,0.1,1.1078789100738704,0.0007477343043375697,0.03288033802486529,0.7331425664876944,2,1.0,0.7292806819149114,0.5750000000000001
+190,22,0.6181747163039172,0.05,1.1260090991708536,0.0007429120720767341,0.033008620074389435,0.7441221609274928,2,1.0,0.7605823876797241,0.5700000000000001
+190,23,0.7159527335741328,0.05,1.1251872418997457,0.0007335140361985197,0.032552564418580246,0.7442821921467176,2,1.0,0.8198424452471094,0.54
+190,24,0.589588235398477,0.1,1.135819128579378,0.000619689624109345,0.03132013774023647,0.7276914826194456,2,1.0,0.798627451328257,0.52
+190,25,0.6802826021921046,0.05,1.0917863229136768,0.0007012838876098162,0.03240067932328384,0.7505992990969557,2,1.0,0.8676086739736819,0.51
+190,26,0.6764477735403853,0.1,1.147789053842831,0.0006181808597856285,0.03175846645158944,0.7253137105155957,2,1.0,0.8881592451346177,0.505
+190,27,0.6970753571214507,0.1,1.1514621358300803,0.0006183127621785147,0.031125999711308177,0.7245812507245448,2,1.0,0.9235845237381692,0.495
+190,28,0.6929192904652512,0.1,1.1458698694355205,0.0006178097003002761,0.031386713505627536,0.7256960591661074,2,1.0,0.9763976348841708,0.485
+190,29,0.7,0.1,1.1398418312966123,0.0006166092942507681,0.031449754481096034,0.7268948508722093,2,1.0,1.0,0.475
+190,30,0.7,0.1,1.1332262760360177,0.0006146660291014453,0.030514219609564665,0.7282069585594265,2,1.0,1.0,0.46499999999999997
+190,31,0.7,0.1,1.1261168361140599,0.0006119430740888855,0.03133226509332061,0.7296128593889761,2,1.0,1.0,0.45499999999999996
+190,32,0.7,0.1,1.1185183232079081,0.000608447793167507,0.030152709923367448,0.7311106345896686,2,1.0,1.0,0.44499999999999995
+190,33,0.6312659481063856,0.1,1.1104368182113882,0.0006041874989642217,0.03089572513782594,0.73269805887402,2,1.0,0.9375531603546186,0.42499999999999993
+190,34,0.7050142707899909,0.05,1.136543197478069,0.0006005188405699139,0.030798200316804247,0.7421657692268986,2,1.0,0.9833809026333034,0.41999999999999993
+190,35,0.6892660958370329,0.1,1.124180648165809,0.0006048985415389233,0.0311838908795909,0.7299974336728644,2,1.0,0.9975536527901098,0.4149999999999999
+190,36,0.69,0.1,1.1294798791438514,0.0006097068280779701,0.031152107497731764,0.7289497768026403,2,1.0,1.0,0.4099999999999999
+190,37,0.69,0.1,1.125021824579887,0.000611887336545864,0.03035581242691541,0.7298288486615752,2,1.0,1.0,0.4049999999999999
+190,38,0.77,0.1,1.1202400083533042,0.0006128554160332397,0.03118461432239266,0.7307703031696064,2,1.0,1.0,0.3749999999999999
+190,39,0.75,0.15000000000000002,1.1451437735959458,0.0006171887192195354,0.03054219123871927,0.7106662098497585,2,1.0,1.0,0.34499999999999986
+190,40,0.72,0.15000000000000002,1.1750113375141127,0.0006258332809754728,0.03143600557926341,0.7044828251788581,2,1.0,1.0,0.33499999999999985
+190,41,0.7,0.10000000000000002,1.1693187540969536,0.0006254857926303901,0.032229751433914,0.7210005871534138,2,1.0,1.0,0.32499999999999984
+190,42,0.7,0.10000000000000002,1.175270340911523,0.0009477197569969288,0.03630978737419157,0.7196718008926386,2,1.0,1.0,0.31499999999999984
+190,43,0.635589506203935,0.10000000000000002,1.2000880381883072,0.000924894391141194,0.03655844106517928,0.714647095615949,2,1.0,0.9519650206797834,0.2949999999999998
+190,44,0.7045441903603733,0.05000000000000002,1.1953016938248164,0.0009318479234394652,0.03619540762821512,0.7306326242283123,2,1.0,0.9818139678679109,0.2899999999999998
+190,45,0.69,0.10000000000000002,1.182749550657995,0.0009460806387487922,0.03659332000762505,0.7181611004102495,2,1.0,1.0,0.2849999999999998
+190,46,0.69,0.10000000000000002,1.1836468195032566,0.0009425263776586058,0.03639567883151559,0.717980891872138,2,1.0,1.0,0.2799999999999998
+190,47,0.77,0.10000000000000002,1.1769333107354711,0.0009453743575788167,0.036153251002026,0.7193371307156882,2,1.0,1.0,0.2499999999999998
+190,48,0.72,0.15000000000000002,1.1944256901318913,0.0009176589361740941,0.036294757319975744,0.7003025503824503,2,1.0,1.0,0.2399999999999998
+190,49,0.7,0.10000000000000002,1.2252637712961956,0.0008881224763492728,0.03637668889712054,0.7095006314050605,2,1.0,1.0,0.2299999999999998
+191,0,0.09041430606805217,0.05000000000000002,1.3419732992753395,0.0006942279381987996,0.035319428978444964,0.7009106887592543,1,0.12141169816247667,0.15973403903728448,0.06
+191,1,0.16327280146125567,0.0,1.3055392236930854,0.0007739882765619044,0.03594245127008581,0.723704616975754,1,0.1458868607475029,0.2073746673320988,0.11
+191,2,0.117571463706151,0.0,1.3417258966896386,0.0006933064908797315,0.03544847400727418,0.716443398334772,1,0.18475832952869856,0.176353494570355,0.16999999999999998
+191,3,0.09904446671631319,0.0,1.3102726058065377,0.0007607460161418026,0.03605440631389827,0.7227624530941761,1,0.22318934188761247,0.13642732351882947,0.22999999999999998
+191,4,0.20765887360413743,0.0,1.3146727777996108,0.0007836824387163635,0.036523222262130214,0.7218706867119419,1,0.26353699777009765,0.1847364146153443,0.24
+191,5,0.21800847056873238,0.0,1.313125217940854,0.0007859828245160057,0.03651949442856613,0.7221803657752675,1,0.3095707964990988,0.23219563931349266,0.25
+191,6,0.26019245117432016,0.0,1.3722787047733038,0.0007168636107170513,0.036613476409395246,0.7101859996595745,1,0.3692566923627243,0.26984202949122216,0.3
+191,7,0.33111578673280934,0.0,1.3732647938018812,0.0007138564984124477,0.03663475164822606,0.7099842373081564,1,0.4295671208823765,0.3358909814132587,0.3
+191,8,0.31990963002524264,0.0,1.3567108995819186,0.0006861915284188539,0.036203563590317636,0.7133922222270741,1,0.46433904408649074,0.3579698819832362,0.35
+191,9,0.2748429095593029,0.0,1.3695453055147193,0.0006972755859564032,0.03604351307195973,0.710756323501126,1,0.5025494104483106,0.3298353863413141,0.41
+191,10,0.3890401442258985,0.0,1.3740607217047183,0.0006970838761285586,0.03646635481787101,0.7098272325447554,1,0.5537706505564457,0.38406805510380837,0.41
+191,11,0.3837907824152607,0.0,1.3738224837029975,0.0006988690785886707,0.03639407904283935,0.709875565243853,1,0.5935146046351095,0.42020223597657463,0.45999999999999996
+191,12,0.45105795496678935,0.0,1.3776158495439654,0.0006953276733604586,0.036413769364712294,0.7090951525242059,1,0.6486563501527436,0.4800941080444304,0.45999999999999996
+191,13,0.4607750202777128,0.0,1.260843336409097,0.000682607422729184,0.03414686321154293,0.7325877098289458,1,0.6854146967014545,0.5362662547740125,0.47
+191,14,0.47398049507983797,0.0,1.258998428479476,0.0006881261184033993,0.0339165572462637,0.7329468172178013,1,0.7331154549671012,0.5913002861378419,0.48
+191,15,0.5118736003197276,0.0,1.2565816368206941,0.0006927676795493015,0.03450957844671365,0.733417788421649,1,0.7792254730137065,0.6304822825497681,0.53
+191,16,0.5668565543639699,0.05,0.8010544073472375,0.00025666877249385647,0.019774270563527593,0.8011396178580454,1,0.8418500594214317,0.7073634452215626,0.54
+191,17,0.5767071613580843,0.05,1.3522030881696856,0.0006928439285522426,0.036190666097914256,0.6987623528112203,1,0.872801389794824,0.7374222497663199,0.5900000000000001
+191,18,0.6440573227990742,0.0,1.3495721359166806,0.0006886994298217885,0.035681367249060646,0.7148485919463577,1,0.9490257981431126,0.7729943114966161,0.5900000000000001
+191,19,0.6375331362165011,0.0,1.3479092476917436,0.00069287126696352,0.03614770348483702,0.7151857345209306,2,0.9835847057358402,0.8109282973631904,0.6400000000000001
+191,20,0.5797789996844948,0.0,1.1776920850067483,0.0005587371487826586,0.03083787575390366,0.7486058230625624,2,0.997917694387938,0.7683593554957217,0.6200000000000001
+191,21,0.6614805602555098,0.0,1.099822143412198,0.0007744134373764097,0.0330541420241615,0.7628971170088675,2,1.0,0.8049352008516996,0.6100000000000001
+191,22,0.6560216898610252,0.05,1.1863638971221548,0.0005628841041816834,0.031181585526641308,0.7325326351495215,2,1.0,0.8534056328700839,0.6000000000000001
+191,23,0.7411452204960591,0.05,1.197442164382512,0.0005810039823220044,0.031551215518099376,0.7303493654898915,2,1.0,0.9038174016535307,0.5700000000000001
+191,24,0.7343480088362961,0.1,1.2150393837231184,0.000589817678633625,0.03228542163042934,0.7117258752094312,2,1.0,0.9478266961209871,0.54
+191,25,0.7174141183580764,0.1,1.2353234558015083,0.0006046424677158329,0.032768597076804205,0.7075402068081408,2,1.0,0.9913803945269217,0.53
+191,26,0.77,0.1,1.2360813505101613,0.0006146606843687376,0.03260815788897929,0.7073792058162518,2,1.0,1.0,0.5
+191,27,0.75,0.15000000000000002,1.2467425315218756,0.0006264355985929613,0.03347838831943443,0.6893333710966691,2,1.0,1.0,0.47
+191,28,0.6391885782436895,0.10000000000000002,1.259035100879414,0.0006407951947299627,0.033392899503820225,0.7025944842162488,2,1.0,0.9639619274789648,0.44999999999999996
+191,29,0.6016217688842571,1.3877787807814457e-17,1.2753495865275715,0.0006393016142331352,0.03424906660970148,0.7297534033304132,2,1.0,0.9054058962808571,0.42999999999999994
+191,30,0.691809363216501,0.0,1.285572423431724,0.0006371383347231341,0.03410149752281828,0.7277334516917918,2,1.0,0.9393645440550035,0.42499999999999993
+191,31,0.7646336295232383,0.0,1.2778752835149776,0.0006291846493810709,0.03388173614798781,0.7292590081738844,2,1.0,0.9821120984107944,0.3949999999999999
+191,32,0.71,0.0,1.2839519539902937,0.0006387414112634107,0.033742597923359915,0.7280537741099737,2,1.0,1.0,0.3899999999999999
+191,33,0.77,0.0,1.2759964138186244,0.0006300677505882068,0.03413816237781976,0.7296294645322858,2,1.0,1.0,0.3599999999999999
+191,34,0.72,0.0,1.2802676861425777,0.0006397471991994219,0.03308814754522766,0.7287822169299512,2,1.0,1.0,0.34999999999999987
+191,35,0.71,0.0,1.2826361144839658,0.0006486059380457532,0.03456057344461062,0.7283103170661035,2,1.0,1.0,0.34499999999999986
+191,36,0.69,0.0,1.2753891030643874,0.0006399166969064859,0.03303912506830163,0.7297453674605858,2,1.0,1.0,0.33999999999999986
+191,37,0.72,0.0,1.2679046153753561,0.0006311946282987869,0.03396368330685778,0.7312223239340517,2,1.0,1.0,0.32999999999999985
+191,38,0.77,0.05,1.1007493035852456,0.0009959540384390298,0.03593193035112836,0.7488068274963341,2,1.0,1.0,0.2999999999999998
+191,39,0.71,0.1,1.1239190020738494,0.0009589476407099798,0.036109978351242175,0.7299094284004887,2,1.0,1.0,0.2949999999999998
+191,40,0.69,0.05,1.1235406042935483,0.0009544908734029475,0.035846113408481484,0.7445114075925342,2,1.0,1.0,0.2899999999999998
+191,41,0.72,0.05,1.1107049317803706,0.0009591924220964739,0.03575360992191935,0.7469434850549145,2,1.0,1.0,0.2799999999999998
+191,42,0.71,0.1,1.1328690626678115,0.0009438297217527849,0.03579609252898421,0.7281473575010639,2,1.0,1.0,0.2749999999999998
+191,43,0.6360419680274656,0.1,1.1316154182403544,0.0009366279927144144,0.035761739464986904,0.7283982934073003,2,1.0,0.9534732267582189,0.2549999999999998
+191,44,0.7185146427333503,0.05,1.1298009478583282,0.0009562001356545163,0.035879585649248445,0.7433181275959425,2,1.0,0.9950488091111678,0.24499999999999977
+191,45,0.77,0.1,1.1472094467989,0.000944005936185822,0.035880298229890716,0.7252993568651748,2,1.0,1.0,0.21499999999999977
+191,46,0.6322233576148006,0.15000000000000002,1.1686547393261746,0.0009107534505537872,0.03547185100009044,0.7056861244155761,2,1.0,0.9407445253826687,0.19499999999999978
+191,47,0.77,0.10000000000000002,1.17192130256841,0.0009192456997770045,0.03595034702088436,0.7203584248507007,2,1.0,1.0,0.16499999999999979
+191,48,0.75,0.15000000000000002,1.1775705337766331,0.0008995237467337371,0.03550907914247767,0.7038356663121882,2,1.0,1.0,0.1349999999999998
+191,49,0.72,0.15000000000000002,1.190876250851191,0.000871672260077353,0.035197406239704056,0.7010662481447325,2,1.0,1.0,0.12499999999999979
+192,0,0.0941966810852162,0.05000000000000002,1.3499332792829253,0.0006934028203450135,0.035497236081422974,0.6992396821564025,1,0.13112532545927294,0.16100939058156888,0.06
+192,1,0.07503769537210965,0.0,1.3191501322031405,0.0007538337808831431,0.03603487431899017,0.7209828699370266,1,0.15909063201835294,0.1311865805522871,0.12
+192,2,0.21746634602961284,0.0,1.3266311561485153,0.0007473782465310574,0.03632048976712575,0.7194780588428832,1,0.22095112715725942,0.2004448384152402,0.12
+192,3,0.24040180526586238,0.0,1.3733830797751874,0.0007137252694944702,0.03662980781565543,0.709959934882735,1,0.28610118640304,0.26755463341599467,0.12
+192,4,0.24675103403019932,0.0,1.3724739215482535,0.000714663326668756,0.03670360719784698,0.7101467239406117,1,0.30406052847710624,0.30109949687737386,0.16999999999999998
+192,5,0.2934602305737998,0.0,1.3730777142378563,0.0007118897414880988,0.03667295780394586,0.7100235665878062,1,0.35582478227871445,0.36307185592083235,0.18
+192,6,0.30928255919637454,0.0,1.3721926832411744,0.0007137011429163648,0.03655026115183739,0.7102050062110632,1,0.4225081481219383,0.40468235784565393,0.19
+192,7,0.34326753727264764,0.0,1.3834661748293218,0.0006982317963954077,0.036545214899523906,0.7078856763496542,1,0.46833505275521314,0.4311675626944102,0.24
+192,8,0.38929311670700695,0.0,1.382673322010247,0.0006977805605326771,0.03647896151219599,0.7080497847947905,1,0.5248733018225812,0.485291536897012,0.25
+192,9,0.4462037439911274,0.0,1.3835088789161805,0.000698216464645739,0.03633964240676023,0.7078768521095901,1,0.5773457471896684,0.5471091082491449,0.25
+192,10,0.4343845122832536,0.0,1.3828585521195966,0.0006979878167729982,0.03646452284677198,0.7080114077313606,1,0.618892805539748,0.559240101147806,0.3
+192,11,0.48091940486628293,0.0,1.1649883550037847,0.000534440676057234,0.03040498399164194,0.7509981315657599,1,0.6678057806446159,0.6239579388022246,0.31
+192,12,0.41905099723970807,0.05,1.2095161340227483,0.0009281923816815721,0.03682982829721791,0.7278273946338688,1,0.7030022820527272,0.5766673284041787,0.37
+192,13,0.5155827860838382,0.0,1.2386585546194584,0.0006552454139527211,0.03358590247012592,0.7369218969750976,1,0.7565979504124442,0.6359116781316094,0.38
+192,14,0.5338109600935025,0.05,0.9092039760055199,0.00044403707216975676,0.02486459274768584,0.7832840598705412,1,0.8110488001496111,0.6664796001371288,0.43
+192,15,0.6098341823536548,0.05,1.1618674936094049,0.0005138675665390894,0.03058491593382892,0.7373237461169957,1,0.8792957432417622,0.7402689073967933,0.43
+192,16,0.6007851868322918,0.1,1.1771151141869116,0.0005287581921426164,0.03013145726182862,0.7194686296953537,1,0.906436356294853,0.7784415404303107,0.48
+192,17,0.6710932125592506,0.1,1.173846063202749,0.0005256571287870742,0.030720463036862065,0.7201292101356562,1,0.9620248228200188,0.8479484152408133,0.48
+192,18,0.6788918235893565,0.15000000000000002,0.8913863446694782,0.00032498326835594927,0.02242871580901765,0.7600518303933141,1,1.0,0.8963060786311885,0.48
+192,19,0.6033449060721926,0.15000000000000002,0.9424694343846144,0.00035301856217844087,0.024026581876149766,0.7506018111588733,1,0.9966436888889217,0.8483987165369001,0.54
+192,20,0.6635294403714594,0.10000000000000002,0.9287882559919263,0.00034122718490756153,0.02325895070330713,0.7668357138942171,1,1.0,0.8784314679048649,0.5900000000000001
+192,21,0.7082840963974795,0.15000000000000002,0.9433405533360036,0.0003442009764136604,0.023935579125607186,0.750442005907114,1,1.0,0.9276136546582651,0.5900000000000001
+192,22,0.6934892111707406,0.2,0.9910204329810944,0.0003769703749080355,0.025207440965823242,0.726755999966599,2,1.0,0.9782973705691355,0.6400000000000001
+192,23,0.69,0.2,1.2454529709661022,0.0006027495352515283,0.03312752042493798,0.6733424199034194,2,1.0,1.0,0.6350000000000001
+192,24,0.72,0.2,1.2363109146415472,0.0005952538486612985,0.03236395202001612,0.6753533285949741,2,1.0,1.0,0.6250000000000001
+192,25,0.6314044921970652,0.2,1.250917700968695,0.0006017803972644661,0.03325210316934092,0.6721397298459587,2,1.0,0.9380149739902174,0.6050000000000001
+192,26,0.7052472387052817,0.1,1.2695080239784784,0.0006149870558085163,0.03319098953125432,0.7004123076211117,2,1.0,0.9841574623509389,0.6000000000000001
+192,27,0.72,0.15000000000000002,1.2483570112068014,0.0005983420417550743,0.033193878177295695,0.6889995598440348,2,1.0,1.0,0.5900000000000001
+192,28,0.77,0.10000000000000002,1.2670648573361438,0.0006092682202368024,0.0330751418968044,0.7009271157792812,2,1.0,1.0,0.56
+192,29,0.72,0.10000000000000002,1.265078492251928,0.0006128258442643433,0.033728410879441714,0.7013418574741934,2,1.0,1.0,0.55
+192,30,0.6323258238805148,1.3877787807814457e-17,1.2752980926324609,0.0006204764239126994,0.03304520259098398,0.7297709834137035,2,1.0,0.9410860796017162,0.53
+192,31,0.7684132420184759,0.0,1.2834811846651972,0.0006231152964824977,0.03385100229999925,0.7281531587181983,1,1.0,0.9947108067282532,0.5
+192,32,0.6440245067608144,0.05,1.0207224765074336,0.0003973811714027782,0.026224844969100332,0.7637739641272224,1,1.0,0.9800816892027147,0.56
+192,33,0.73,0.0,1.0204646781532198,0.0003974760177304608,0.026288883172826127,0.7770817369982866,2,1.0,1.0,0.56
+192,34,0.71,0.0,1.267470003231141,0.0006076908672230836,0.03254124966526602,0.7313169691092721,2,1.0,1.0,0.555
+192,35,0.72,0.0,1.256188473466687,0.0005985431027149551,0.03356101651669292,0.733531487612967,2,1.0,1.0,0.545
+192,36,0.77,0.0,1.264401877550065,0.0006055678730251369,0.03255529393563882,0.7319202377634614,2,1.0,1.0,0.515
+192,37,0.71,0.0,1.2746170046010887,0.000612383390198453,0.03393722260120976,0.7299084675258184,2,1.0,1.0,0.51
+192,38,0.6353520930808894,0.0,1.264224366620348,0.0006033760137148621,0.03298178312255651,0.7319559263530754,2,1.0,0.9511736436029644,0.49
+192,39,0.602783281503539,0.0,1.2815388781566828,0.0006200806875737227,0.033968799711278606,0.7285386606766305,2,1.0,0.9092776050117969,0.47
+192,40,0.6930350311905769,0.0,1.295513651422465,0.0006381852549238088,0.034513616952294573,0.7257588519432338,2,1.0,0.9434501039685894,0.46499999999999997
+192,41,0.6843274067498123,0.0,1.2856949507268038,0.0006309049076126449,0.03373178356494208,0.7277116440473703,2,1.0,0.9810913558327079,0.45999999999999996
+192,42,0.69,0.0,1.2755546159268925,0.0006233880425196835,0.03420555700859036,0.7297192441699654,2,1.0,1.0,0.45499999999999996
+192,43,0.69,0.0,1.2647747414196742,0.0006153028281594763,0.03264398470511144,0.7318432497700482,2,1.0,1.0,0.44999999999999996
+192,44,0.72,0.0,1.2534922224545166,0.0006065223797544252,0.03368246231630457,0.7340550577033469,2,1.0,1.0,0.43999999999999995
+192,45,0.7,0.0,1.2636453387630202,0.0006109334240766127,0.032663254003533364,0.7320665496151848,2,1.0,1.0,0.42999999999999994
+192,46,0.77,0.0,1.2704386471646494,0.0006160027581251318,0.03386047801911807,0.7307299816084932,2,1.0,1.0,0.3999999999999999
+192,47,0.72,0.0,1.2824631167576148,0.0006205251490991845,0.033683076965210605,0.7283556594532474,2,1.0,1.0,0.3899999999999999
+192,48,0.7,0.0,1.2868152327663698,0.0006257830334434223,0.03392413469385585,0.7274916372498803,2,1.0,1.0,0.3799999999999999
+192,49,0.7,0.0,1.2887488948811843,0.0006307144824281949,0.03418772496711221,0.7271061678596129,2,1.0,1.0,0.3699999999999999
+193,0,0.20928862368498813,0.0,1.347858587017385,0.0006924429852127414,0.03543539915508787,0.7151962282134977,1,0.15259145935068313,0.2529387097074968,0.0
+193,1,0.20306384763221463,0.0,1.3476400770570955,0.0006948033546836172,0.03619082533581483,0.715239773061193,1,0.20522688678451398,0.27078145752544913,0.05
+193,2,0.27247085522830583,0.0,1.3700199738811483,0.0007167800842982895,0.03661786004916588,0.710650709366984,1,0.27388510250864473,0.32203689783426726,0.05
+193,3,0.19059196917177962,0.0,1.3690276059961524,0.0007184689316102043,0.036589886215334724,0.7108540293649155,1,0.3102909283202511,0.2733004808656391,0.11
+193,4,0.2801905747692672,0.0,1.3726992684539747,0.0007156236328314876,0.036737378441988364,0.7100999413345709,1,0.33470689413242083,0.3434772060763997,0.12
+193,5,0.21003949850596657,0.0,1.3716722632311444,0.000716897852266142,0.03672287559408548,0.7103107885733692,1,0.3545561063464625,0.2864828709490157,0.18
+193,6,0.28196718372839363,0.0,1.3748381767416311,0.0007141739029349859,0.03664040163589919,0.70966002954369,1,0.38095611631442355,0.32877514339448466,0.22999999999999998
+193,7,0.31895306429309567,0.0,1.3757951210251067,0.0007114257002342266,0.03663547486724204,0.7094639515816558,1,0.42646874827595604,0.3656300079883701,0.24
+193,8,0.33776202646743325,0.0,1.3537516177810167,0.0006827218301234921,0.036137447828910055,0.7139983228775653,1,0.48839798406313134,0.4227424401511243,0.25
+193,9,0.3707192746249925,0.0,1.3814931284915095,0.0006968118538747295,0.03633068150294484,0.7082940892165478,1,0.5500674709091528,0.4606521993559635,0.26
+193,10,0.3356117326679069,0.0,1.3821418880415843,0.0006975158690639756,0.03650648747997669,0.7081597375801127,1,0.586212671728763,0.4347909918761328,0.32
+193,11,0.45679656570474414,0.0,1.3836443030069405,0.0006983248261818625,0.03657512520141284,0.7078488025326853,1,0.6695732820088333,0.4748197233388416,0.32
+193,12,0.4484773731028625,0.05,1.1949544055254429,0.0005462846971480538,0.031447468749150984,0.7308526810765882,1,0.7160450924031894,0.492871969205821,0.37
+193,13,0.44596418698275075,0.05,1.2302094563339954,0.0006740077229067181,0.03360824235241959,0.723810526937324,1,0.749604861983309,0.512008284295309,0.42
+193,14,0.5365222140080955,0.05,1.2264225186237367,0.0006677864370359472,0.03322035572610027,0.7245694104498476,1,0.8271119987286693,0.5567767148435375,0.42
+193,15,0.5647544862242659,0.1,0.8662170224826025,0.001267798585293283,0.03694300344624697,0.7775157139927926,1,0.9022170872079811,0.6299283523382418,0.42
+193,16,0.5764202795904634,0.1,1.2020458174119566,0.0005957383106886355,0.032000295313106185,0.7143820257866104,1,0.9371412598784106,0.6614027954433992,0.47
+193,17,0.6431154064032831,0.1,1.1936251719370747,0.000587979008526866,0.03160960974790531,0.7161002259711937,1,1.0,0.710384688010944,0.47
+193,18,0.6418990284575065,0.15000000000000002,1.1929352594864548,0.0005989026471886307,0.03199537307074578,0.7007489702934574,1,1.0,0.7729967615250217,0.47
+193,19,0.6571643028330131,0.15000000000000002,1.1978223312066212,0.0006100199139958652,0.03189872078470381,0.6997184759820915,1,1.0,0.8238810094433772,0.48
+193,20,0.6552089763150406,0.15000000000000002,1.119970512991662,0.0004884513028357686,0.029220659248222612,0.7158671275904371,1,1.0,0.8506965877168022,0.53
+193,21,0.5886158180033974,0.15000000000000002,1.1475002044018507,0.0005113903855215357,0.029847432931412905,0.7102249904013878,1,1.0,0.7953860600113248,0.5900000000000001
+193,22,0.5599467646103107,0.10000000000000002,1.2482798264847355,0.0006609816600305298,0.03374818107653149,0.7048285505003924,2,1.0,0.7664892153677022,0.6500000000000001
+193,23,0.5473844103256232,0.10000000000000002,1.1299637528696753,0.0008581893177830834,0.03440201944302985,0.7287559372162544,2,1.0,0.724614701085411,0.6300000000000001
+193,24,0.6478328024859938,0.10000000000000002,1.1524742266565202,0.0008439977576446611,0.03472631614520705,0.7242891017430251,2,1.0,0.759442674953313,0.6200000000000001
+193,25,0.643000346733068,0.15000000000000002,1.154552422527654,0.0008715088446242127,0.03495251487254591,0.7086227668568829,2,1.0,0.8100011557768935,0.6100000000000001
+193,26,0.66023206556886,0.15000000000000002,1.1123201857455205,0.0006644526106437508,0.03197209231114918,0.7173492752597942,2,1.0,0.8341068852295335,0.6050000000000001
+193,27,0.6825059883151059,0.15000000000000002,1.1019160354731699,0.000655196825224011,0.03132579872344505,0.719457771215912,2,1.0,0.8750199610503531,0.5950000000000001
+193,28,0.680759587883851,0.15000000000000002,1.129247849155236,0.0006445637811904987,0.03207119647247635,0.7139125664921466,2,1.0,0.93586529294617,0.5850000000000001
+193,29,0.7,0.15000000000000002,1.1566457374064985,0.0006345439031587018,0.0318036278375582,0.7082882889170122,2,1.0,1.0,0.5750000000000001
+193,30,0.6398017487767789,0.15000000000000002,1.1832063896251637,0.0006260426896730063,0.03221823472325858,0.7027737820178994,2,1.0,0.9660058292559297,0.555
+193,31,0.72,0.10000000000000002,1.1977469348615912,0.0006619921588629262,0.032788955853326474,0.7152313744942397,2,1.0,1.0,0.545
+193,32,0.6308507347405272,0.15000000000000002,1.2145780649784703,0.0006488962595273698,0.032978263864284325,0.6961697025182952,2,1.0,0.9361691158017575,0.525
+193,33,0.5968273670273598,0.10000000000000002,1.2329377521727272,0.0006858424371192387,0.03364957637802429,0.708000056134526,2,1.0,0.8894245567578664,0.505
+193,34,0.6850207465894294,0.05000000000000002,1.2341597273889109,0.0007153483053057983,0.03459499279714669,0.7230035768316323,2,1.0,0.9167358219647644,0.5
+193,35,0.6747336408949961,0.10000000000000002,1.216667261226231,0.0007065747247981659,0.034104197493099744,0.7113438190269409,2,1.0,0.9491121363166539,0.495
+193,36,0.6239390600980237,0.10000000000000002,1.2137104814464355,0.0007014795869377074,0.034213146277976704,0.7119526560153904,2,1.0,0.9131302003267457,0.475
+193,37,0.7632933884594117,0.05000000000000002,1.2210817003837706,0.0007367488732793896,0.034093080990556655,0.7256065303689317,2,1.0,0.9776446281980394,0.44499999999999995
+193,38,0.629857880196321,0.10000000000000002,1.2250931489550356,0.0007257660565632068,0.03453606163229037,0.709602714088765,2,1.0,0.9328596006544037,0.42499999999999993
+193,39,0.6970033423533041,0.05000000000000002,1.2368899218841758,0.000756182448849705,0.03465377522558152,0.722440093782202,2,1.0,0.956677807844347,0.41999999999999993
+193,40,0.72,0.10000000000000002,1.2208806678944353,0.0007510236543694896,0.03488716589210052,0.7104596079131708,2,1.0,1.0,0.4099999999999999
+193,41,0.77,0.05000000000000002,1.2507671424326863,0.0007362305846190687,0.03513957584991489,0.7196569072460768,2,1.0,1.0,0.3799999999999999
+193,42,0.72,0.05000000000000002,1.2535764033336163,0.0007257304170358568,0.03495321241720027,0.719094028949993,2,1.0,1.0,0.3699999999999999
+193,43,0.6353984665650847,0.0,1.2746563378358973,0.0007136378408069187,0.034759850452766985,0.7298607876092407,2,1.0,0.9513282218836159,0.34999999999999987
+193,44,0.703029914562254,0.0,1.273772773352682,0.0007381867463846272,0.03558309059992996,0.7300252828498885,2,1.0,0.9767663818741802,0.34499999999999986
+193,45,0.72,0.0,1.2645752806854345,0.0007339488528333528,0.03474706948534195,0.7318358253582358,2,1.0,1.0,0.33499999999999985
+193,46,0.6312355813404729,0.0,1.284147333381284,0.0007215818216497882,0.03559197271922239,0.7279822813796641,2,1.0,0.9374519378015761,0.31499999999999984
+193,47,0.7647237085930905,0.0,1.1132588076841174,0.0009242073085358669,0.03549041958538897,0.7604034676994675,2,1.0,0.9824123619769681,0.2849999999999998
+193,48,0.75,0.05,1.1211809824943955,0.0008984776247466485,0.03507940402635167,0.7449812659293258,2,1.0,1.0,0.2549999999999998
+193,49,0.72,0.05,1.1296160739607946,0.0008722227519744301,0.034448930209400805,0.7433854402163201,2,1.0,1.0,0.24499999999999977
+194,0,0.08927509130201561,0.0,1.3473715170440999,0.0006916743949939476,0.03535427742697165,0.7152957424241323,1,0.11251764760362246,0.1663130488024925,0.06
+194,1,0.18311686620946932,0.0,1.314290521318712,0.000746850143318856,0.03574635503918699,0.7219622142747943,1,0.1609461709334686,0.222619021275851,0.06999999999999999
+194,2,0.23822877973314285,0.0,1.3488518167774541,0.0006910314306881201,0.03556989955058616,0.7149944487158565,1,0.20620198221650646,0.28686028652455203,0.06999999999999999
+194,3,0.15784884971802085,0.0,1.3760768870152567,0.0007110986233674462,0.03664440745958942,0.7094060040339694,1,0.241403039723249,0.24452595271627905,0.13
+194,4,0.2511637897482592,0.0,1.3783160773503522,0.0007093853076250631,0.036765650988671,0.7089448876072126,1,0.2883085435543644,0.30085266501410557,0.14
+194,5,0.3100339078171697,0.0,1.3775340831806284,0.0007102028761120456,0.03674888272113837,0.7091058822185676,1,0.34818448864592044,0.3605644559703252,0.14
+194,6,0.2952362999287701,0.0,1.3766600556549193,0.000711781960113446,0.036645664625952847,0.709285487841976,1,0.3848487989733812,0.3684640676269555,0.19
+194,7,0.2474419031887145,0.0,1.3774145621330267,0.0007093298124784091,0.036634491770789875,0.7091308959380037,1,0.4181287037409469,0.336989522931277,0.25
+194,8,0.36573608919590633,0.0,1.3555251874916503,0.0006895182702950113,0.03626269864584272,0.7136332363148927,1,0.4817096402957874,0.3904590503079358,0.25
+194,9,0.3864272252116101,0.0,1.3544651378376193,0.0006913786847358599,0.03559145312803679,0.7138490598369738,1,0.5504045684170513,0.4459520875521405,0.25
+194,10,0.3215273879070558,0.0,1.3829115159149235,0.0006980267177233951,0.036461280835802315,0.7080004422544558,1,0.5901535756170299,0.38324545480365124,0.31
+194,11,0.40801207522179717,0.0,1.3500343942854243,0.0006951685599244023,0.03560718731939903,0.7147517179377301,1,0.6342249396923774,0.4201111544315504,0.32
+194,12,0.4277582605428959,0.05,1.0429958843405127,0.00041549244242052074,0.026842520059912202,0.7597251288368614,1,0.6996034370008686,0.47632352530864,0.33
+194,13,0.5125596077021866,0.05,1.0827735331932211,0.00044481104726780987,0.027941434162567134,0.7523782566040157,1,0.7613488079969739,0.5536250830108191,0.33
+194,14,0.5047787952442021,0.1,1.1035464462417823,0.00046590821625715196,0.02845434076463115,0.7340993707731737,1,0.7971211091429469,0.5859546901472359,0.38
+194,15,0.5534755745068574,0.1,1.24312785198932,0.0006945137146409615,0.03433231257763675,0.7058853390695307,1,0.8370380267187444,0.668374217184323,0.39
+194,16,0.5664993045354375,0.1,1.332453168912307,0.0006639304691481487,0.03458486325409692,0.6870188941339014,1,0.8828950051654925,0.6916201757583841,0.44
+194,17,0.6053617199426505,0.05,1.3274806838223663,0.0006596644031566719,0.03527306706875314,0.703954379691458,1,0.919082608658486,0.7456093563739349,0.45
+194,18,0.5427476730030731,0.05,1.329587111524531,0.0006627616322699061,0.03470365603364355,0.7035139140938144,1,0.9412616420771656,0.7110203275868839,0.51
+194,19,0.5328770694680085,0.0,1.3411187010343673,0.0006680445463325922,0.03553554823265005,0.7165769965198489,1,0.980162234618471,0.6994009578384788,0.5700000000000001
+194,20,0.6564566163376243,0.0,1.348386803795321,0.000672966055117973,0.035208755355681395,0.7150965594724764,1,1.0,0.7548553877920811,0.5700000000000001
+194,21,0.6354922657447981,0.0,1.348009123617634,0.00067349731646582,0.035776393442346954,0.7151732828780242,2,1.0,0.7849742191493273,0.6200000000000001
+194,22,0.6725270278499911,0.0,1.1378592251930586,0.0009519551789280815,0.0356651687225967,0.7558826089408498,2,1.0,0.8417567594999703,0.6100000000000001
+194,23,0.6717787009020206,0.05,1.2262379923111788,0.0005869826451583879,0.032233825164200966,0.7246384825302492,2,1.0,0.8725956696734022,0.6050000000000001
+194,24,0.6604612928587196,0.05,1.2229754144417586,0.0005843356446215839,0.03269588012848252,0.7252900667828871,2,1.0,0.9015376428623988,0.6000000000000001
+194,25,0.6681134715370467,0.05,1.2119647233008395,0.000575510772272883,0.031719826647665275,0.7274819337146047,2,1.0,0.9270449051234894,0.5950000000000001
+194,26,0.6761054579341162,0.05,1.2003611271968875,0.0005659577990350809,0.03190477091303479,0.7297800552909507,2,1.0,0.9536848597803876,0.5900000000000001
+194,27,0.72,0.05,1.1881451625105917,0.0005558765095078806,0.031084906266140994,0.7321862380794203,2,1.0,1.0,0.5800000000000001
+194,28,0.6378065176217009,0.1,1.2077282162525873,0.0005615300843215385,0.031701786310646164,0.7132351696003646,2,1.0,0.9593550587390031,0.56
+194,29,0.72,0.05,1.2352804668412327,0.0005942317062037533,0.03313821618198019,0.7228276044436377,2,1.0,1.0,0.55
+194,30,0.7,0.1,1.2432138214914779,0.000592112706590266,0.03212399859710262,0.7059100094299656,2,1.0,1.0,0.54
+194,31,0.77,0.05,1.2613138327647426,0.000603452782537799,0.03347043332863526,0.7175780031232055,2,1.0,1.0,0.51
+194,32,0.72,0.05,1.2648124529075309,0.0006048210166195334,0.032427432753661445,0.7168678785884355,2,1.0,1.0,0.5
+194,33,0.6380567272857285,0.0,1.2736816277350336,0.0006114029446290033,0.033911905846840486,0.7300932164291923,2,1.0,0.9601890909524284,0.48
+194,34,0.77,0.0,1.2850419740188561,0.0006226893619728534,0.033048317469784226,0.7278442652464631,2,1.0,1.0,0.44999999999999996
+194,35,0.6279446486201128,0.0,1.292299307112712,0.0006276622447445107,0.03456618695704851,0.7264023306254417,2,1.0,0.9264821620670425,0.42999999999999994
+194,36,0.7604051736081017,0.0,1.306255585099243,0.0006426599565656412,0.033694743353127124,0.7236138866674773,2,1.0,0.9680172453603388,0.3999999999999999
+194,37,0.72,0.0,1.3106929177217328,0.0006450715959713861,0.03501694716034838,0.7227245876672179,2,1.0,1.0,0.3899999999999999
+194,38,0.7,0.0,1.3178153541730635,0.0006483427189488278,0.0344459748563604,0.7212937189633546,2,1.0,1.0,0.3799999999999999
+194,39,0.6352967985788598,0.0,1.322337524998479,0.0006520762706786132,0.035046699519494386,0.7203822178603463,2,1.0,0.9509893285961992,0.3599999999999999
+194,40,0.596479838917338,0.0,1.3339610569617006,0.000661506554640523,0.035390745187997445,0.7180310652218305,2,1.0,0.8882661297244605,0.33999999999999986
+194,41,0.6960998432229812,0.0,1.3427850259907221,0.000671364900184296,0.03520674838820621,0.7162371034816577,2,1.0,0.9203328107432709,0.32999999999999985
+194,42,0.6041057114212824,0.05,1.1038396357206166,0.0008843915305500131,0.034163218638413734,0.7482671350705559,2,1.0,0.8470190380709414,0.30999999999999983
+194,43,0.6787508013629804,0.0,1.1054704580299113,0.0008928730205581779,0.03489128570039808,0.7618309193173816,2,1.0,0.8958360045432682,0.3049999999999998
+194,44,0.6688454866200976,0.05,1.1005102230950135,0.0008989271638071167,0.034257060841734244,0.7488882891714018,2,1.0,0.9294849554003254,0.2999999999999998
+194,45,0.767064634089268,0.05,1.0990544848630854,0.0008992773085758732,0.03439027516975381,0.749161816674007,2,1.0,0.9902154469642268,0.2699999999999998
+194,46,0.71,0.1,1.104332941216861,0.0008755128788761695,0.03508889067697947,0.7337858235394638,2,1.0,1.0,0.2649999999999998
+194,47,0.77,0.05,1.1025335639313896,0.0008766629195091694,0.03490232524416467,0.7485159811268283,2,1.0,1.0,0.2349999999999998
+194,48,0.75,0.1,1.1043676252825914,0.0008553200532942333,0.034736118985039026,0.73378693730956,2,1.0,1.0,0.2049999999999998
+194,49,0.6377452596758273,0.1,1.1080282157631198,0.000834241180025093,0.03453228731491005,0.7330795017092665,2,1.0,0.9591508655860911,0.1849999999999998
+195,0,0.16663311722775662,0.0,1.3513590175095487,0.0006944171686743516,0.035479622222194473,0.7144818812605875,1,0.12888722052357524,0.23840863348168428,0.05
+195,1,0.21509015343809917,0.0,1.3474348463776673,0.0006926157315832093,0.036170698248940626,0.7152824619596715,1,0.17506255428769246,0.3127275314580228,0.060000000000000005
+195,2,0.1510701426548713,0.0,1.3469682758763017,0.0006946988763161364,0.035577961285902265,0.7153766228029147,1,0.20600888528270406,0.2632234426864163,0.12
+195,3,0.26634225420697527,0.0,1.3782040104731375,0.0007087707992813445,0.0366620145691787,0.7089682647589749,1,0.2642899661889254,0.3128025534695047,0.12
+195,4,0.27990427836786885,0.0,1.3774819945755588,0.0007098155016316904,0.03674783900630591,0.7091167864721099,1,0.3075345345474132,0.37422397092091425,0.12
+195,5,0.2167836781964676,0.0,1.376624588088096,0.0007108122649725846,0.03674186211725858,0.7092932010806056,1,0.33685566282376,0.3296139873605054,0.18
+195,6,0.33528198839472895,0.0,1.3789527654179392,0.000708928834559085,0.036656441837467135,0.7088136830504702,1,0.39268336846251534,0.3928093647761619,0.18
+195,7,0.35050456252026635,0.0,1.377811486926996,0.0007099579218999004,0.036667544610438654,0.7090487585840669,1,0.43600556590395817,0.45967538151293674,0.18
+195,8,0.3952715717979849,0.0,1.3824543357903254,0.0006978403090878405,0.036465605502689846,0.7080950258319822,1,0.509439711527153,0.5232255758782715,0.18
+195,9,0.3972890859742932,0.0,1.381578038992529,0.0006976448197276222,0.03642790429368527,0.7082762010279241,1,0.5316871886638431,0.5373285664731603,0.22999999999999998
+195,10,0.40084049416459255,0.0,1.3806894162804826,0.0006966283192575797,0.036463086984824526,0.7084601950799496,1,0.5629281263534517,0.5793854998029484,0.27999999999999997
+195,11,0.49191457978925296,0.0,1.3795645810539892,0.0006956056262167558,0.03640659167122602,0.7086928912130814,1,0.6168626806037045,0.6533754719265213,0.27999999999999997
+195,12,0.4822952762648869,0.05,1.1522818451970585,0.0009327398352824984,0.036083535448211884,0.7390144968158614,1,0.6477630094067036,0.6852607432418021,0.32999999999999996
+195,13,0.48112168139687517,0.05,1.1587789654343952,0.0009513055419288619,0.036439879534990775,0.7377522553185404,1,0.6811374414497233,0.7090785896315736,0.37999999999999995
+195,14,0.4557991294510102,0.05,0.7092351401446949,0.00024088671809389982,0.01820405573091772,0.8153692338732357,1,0.7096970720982352,0.6913505140554264,0.43999999999999995
+195,15,0.5255688588179482,0.05,0.7282059587999027,0.00024490626350857865,0.018216714816988624,0.8124949969615725,1,0.7407507802935989,0.7210202857172957,0.48999999999999994
+195,16,0.5943395959688242,0.1,0.7136357101195728,0.00023326003676057603,0.018179654427978233,0.803118107871929,1,0.8009825397548603,0.779985690182077,0.48999999999999994
+195,17,0.5140737310677319,0.15000000000000002,1.2074972692599029,0.0005649622870917301,0.0320297375228198,0.6977007375695249,1,0.8226245785851013,0.7538504285431546,0.5499999999999999
+195,18,0.5038930360761404,0.10000000000000002,1.233700774036893,0.0005995440345202312,0.03315690407147244,0.7078779790447716,2,0.8650169021727667,0.7371237343855738,0.6099999999999999
+195,19,0.6024096209673495,0.10000000000000002,1.1297167856173829,0.0009759289633691817,0.035978320244214664,0.7287582080438464,2,0.9011977185287373,0.7566347316076384,0.6049999999999999
+195,20,0.6408765526478939,0.15000000000000002,1.142743184730879,0.0009513351863712014,0.036157450791900116,0.7110222740727788,2,0.9431480239014851,0.8025824809412473,0.5949999999999999
+195,21,0.7281633721945522,0.15000000000000002,1.2988620508006679,0.0006898085930329185,0.03472200895670672,0.6780354948875518,2,1.0,0.8605445739818406,0.5649999999999998
+195,22,0.6958926052566319,0.15000000000000002,1.3002075770025399,0.0006846546718844661,0.03495289072757361,0.677743942966587,2,1.0,0.9196420175221063,0.5549999999999998
+195,23,0.689283836815221,0.05000000000000002,1.3154304529155894,0.0006799545853519951,0.03502160422127989,0.7064510767514675,2,1.0,0.9309461227174036,0.5499999999999998
+195,24,0.6784556129219892,1.3877787807814457e-17,1.3012936577290577,0.000674011993909705,0.03517189427268685,0.7245926415771773,2,1.0,0.9615187097399639,0.5449999999999998
+195,25,0.6818102788250913,0.0,1.2891570427101677,0.0006681642068371906,0.03437525354441186,0.7270103097577054,2,1.0,0.9727009294169708,0.5399999999999998
+195,26,0.72,0.0,1.2806401565144898,0.0006633522780515281,0.034665997939040495,0.7286992554588554,2,1.0,1.0,0.5299999999999998
+195,27,0.71,0.0,1.2969717069646356,0.0006595751454075132,0.03415200785241933,0.7254600350841718,2,1.0,1.0,0.5249999999999998
+195,28,0.69,0.0,1.2877167939558538,0.0006539686986181306,0.034769658908484116,0.7273016880904798,2,1.0,1.0,0.5199999999999998
+195,29,0.69,0.0,1.2783448360845937,0.0006479896173081797,0.03381829040109314,0.7291588622110367,2,1.0,1.0,0.5149999999999998
+195,30,0.72,0.0,1.2684704752832552,0.0006413020647160269,0.034064115562915956,0.7311071233941566,2,1.0,1.0,0.5049999999999998
+195,31,0.77,0.0,1.2840310217715358,0.0006398119211448093,0.034148516386883064,0.7280376951618165,2,1.0,1.0,0.47499999999999976
+195,32,0.6361372520343069,0.0,1.288901391693405,0.000641224474968574,0.03406406010493494,0.7270717368161086,2,1.0,0.9537908401143566,0.45499999999999974
+195,33,0.7023520383614935,0.0,1.3001293451152847,0.0006601369634152842,0.034928528749686334,0.7248304636937709,2,1.0,0.9745067945383118,0.44999999999999973
+195,34,0.6265248332299205,0.0,1.291101953547218,0.0006544919686928747,0.03396851001054045,0.7266295717987818,2,1.0,0.9217494440997348,0.4299999999999997
+195,35,0.7565960429817502,0.0,1.3002665986386062,0.000675269500066019,0.03529236556067022,0.7247970506397992,2,1.0,0.9553201432725007,0.3999999999999997
+195,36,0.749567705278542,0.0,1.3038480081147896,0.0006719561132421815,0.03458439305987274,0.7240834293041947,2,1.0,0.9985590175951401,0.36999999999999966
+195,37,0.72,0.0,1.3051341994213508,0.0006688726289931548,0.035064274986726554,0.7238276242341701,2,1.0,1.0,0.35999999999999965
+195,38,0.71,0.0,1.3188391880832222,0.0006668531270821197,0.03464709069399337,0.7210804062457428,2,1.0,1.0,0.35499999999999965
+195,39,0.77,0.0,1.3113214957734296,0.0006627707238158579,0.03500794108627539,0.7225915112847672,2,1.0,1.0,0.3249999999999996
+195,40,0.6348484410702289,0.05,0.9317376544517262,0.0006474411547194548,0.028766474380844086,0.7793646096821197,2,1.0,0.9494948035674295,0.3049999999999996
+195,41,0.77,0.0,0.9687330422586633,0.0006552963169245815,0.029570057750160757,0.7858276392700091,2,1.0,1.0,0.2749999999999996
+195,42,0.72,0.05,0.9592363717524768,0.0006532741935171056,0.02923405682347958,0.7745977153110227,2,1.0,1.0,0.26499999999999957
+195,43,0.7,0.0,0.9759792533277498,0.000651598508439233,0.029586941612749947,0.7846068074581294,2,1.0,1.0,0.25499999999999956
+195,44,0.71,0.0,0.9813461140825213,0.0006478516178055024,0.029107019044524358,0.7836996985325583,2,1.0,1.0,0.24999999999999956
+195,45,0.637864917266419,0.0,0.9749505989859902,0.0006469665944559627,0.0292774082861523,0.7847821627392794,2,1.0,0.9595497242213968,0.22999999999999957
+195,46,0.6030006356358373,0.0,1.0029402008741155,0.0006561781716203819,0.029483397420175073,0.7800139112020705,2,1.0,0.9100021187861242,0.20999999999999958
+195,47,0.5915213602281106,0.0,1.0277339748757113,0.000669442506607108,0.03083327520585203,0.7757253551928919,2,1.0,0.8717378674270355,0.18999999999999959
+195,48,0.6858891488972274,0.0,1.049302174955557,0.0006861398745548348,0.030411247362158767,0.7719448361479707,2,1.0,0.9196304963240917,0.18499999999999958
+195,49,0.7125729504562471,0.05,1.042804676213711,0.000684791008179021,0.031339075158133355,0.7596617097339015,2,1.0,0.9752431681874906,0.17499999999999957
+196,0,0.20624279134081622,0.0,1.357308384698915,0.0006937773052680602,0.035611372300881766,0.7132669397658751,1,0.1572261979569732,0.23737874018625196,0.0
+196,1,0.12615757342023334,0.0,1.3555841766154624,0.000695207726526059,0.036301024848891576,0.7136188556276882,1,0.19321985545900738,0.19510208003193588,0.06
+196,2,0.22157730961010838,0.0,1.3134515808188443,0.0007672418163116671,0.036368013847233836,0.722122402188014,1,0.22880080298072736,0.2716567618895127,0.06999999999999999
+196,3,0.16312907881014083,0.0,1.3752890735145216,0.0007115898455323151,0.036654679347895576,0.7095681818382022,1,0.28568064015694516,0.21046951585070006,0.13
+196,4,0.2864208795633543,0.0,1.377378139713124,0.0007095357305943815,0.03673735594533106,0.7091383235787602,1,0.3495256105939438,0.28028971951824677,0.13
+196,5,0.29678657593740976,0.0,1.3760283473035213,0.0007101171056101239,0.03672494057912812,0.7094164150210445,1,0.38431857502472594,0.3409169155958522,0.14
+196,6,0.23197930532452826,0.0,1.3754518130292301,0.0007127512418874673,0.0366365921616148,0.709534164426938,1,0.4139607844961543,0.2903101025029142,0.2
+196,7,0.3042913434551622,0.0,1.3495500354323071,0.0007088334133524587,0.03594756112394641,0.7148448886707324,1,0.4589001850717467,0.31225426226683617,0.25
+196,8,0.2519714436215293,0.0,1.3485704039997994,0.0007057457397612131,0.036305470119254515,0.7150457946075065,1,0.49855985211004245,0.2582516512767148,0.31
+196,9,0.37590286833539654,0.0,1.3567860046249578,0.000703225215056676,0.03579454976612285,0.7133698999043906,1,0.5645123728627012,0.3277451261115039,0.31
+196,10,0.40116181159591446,0.0,1.355519566486239,0.0007050595030113644,0.036362360060994144,0.7136280329612235,1,0.626236680898726,0.4065965776045347,0.31
+196,11,0.4208293857297777,0.0,0.9345284253320447,0.0003251995597676967,0.023264579460434892,0.7916369955570517,1,0.670134335164922,0.45427456140684985,0.36
+196,12,0.47231807812526777,0.0,1.1069150518162592,0.000656138083721081,0.03199384150321273,0.7616546693556581,1,0.7228912959436472,0.5310204151499709,0.37
+196,13,0.41222792890398763,0.05,1.0966957188486959,0.000647281960370074,0.030785125600181484,0.749699397485544,1,0.749793589702673,0.4993339083601736,0.43
+196,14,0.5282929093535902,0.0,1.1329833281920536,0.0006425039855091647,0.03180973859950244,0.7568951056582583,1,0.8159421044610246,0.5423772426407719,0.43
+196,15,0.5192596633268267,0.05,0.9354461945575421,0.0012069799959101282,0.03680588252036125,0.7785333551927045,1,0.8561399079469274,0.5653689851513407,0.48
+196,16,0.5929746057545343,0.05,0.9429802823767857,0.001208202489544683,0.03564880037934375,0.777231185140894,1,0.9222980919002884,0.6339009119647778,0.48
+196,17,0.5210049642318182,0.05,1.2703904039775646,0.0007754147158790961,0.03610775971606206,0.7156649403136838,1,0.9633656999918618,0.6127565641155552,0.54
+196,18,0.6134028363916731,0.0,1.270444393900724,0.0007971254402895813,0.03569316553900518,0.730657567982638,1,1.0,0.6780094546389105,0.55
+196,19,0.5413773066459315,0.0,1.2824139201743843,0.0007833127482812972,0.036342659369565336,0.728300973472606,2,1.0,0.6379243554864383,0.6100000000000001
+196,20,0.6280776115958135,0.0,1.0934871767425236,0.0009574186784331083,0.03557721966555633,0.7639751174588112,2,1.0,0.693592038652712,0.6000000000000001
+196,21,0.5393781722450588,0.05,1.086341412609356,0.0009520501768916377,0.03501953835698661,0.751523552510416,2,1.0,0.6312605741501959,0.5800000000000001
+196,22,0.6251586105882229,0.0,1.1163772457577568,0.0009326453465944688,0.035405803083557605,0.7598317784223986,2,1.0,0.6838620352940764,0.5700000000000001
+196,23,0.6934661767960285,0.05,1.1006519820139062,0.0009312750439732776,0.03505363304477238,0.7488494624203117,2,1.0,0.7448872559867619,0.54
+196,24,0.6583443960351967,0.1,1.109045768381045,0.0009573968860108924,0.03557895167364324,0.7328321236075676,2,1.0,0.7944813201173224,0.53
+196,25,0.6499975811459773,0.05,1.1094719967004396,0.0009476025322892672,0.035493831771641074,0.7471808408665573,2,1.0,0.833325270486591,0.52
+196,26,0.6603775580193516,0.0,1.2681276846538174,0.0006857892679703293,0.034796836011982954,0.7311570180708572,2,1.0,0.8679251933978386,0.51
+196,27,0.674049335324679,0.0,1.2722974272043506,0.0006781356822762319,0.0339333437904021,0.7303396117256243,2,1.0,0.913497784415597,0.5
+196,28,0.7581567806851506,0.0,1.2797032984489862,0.0006742335620744142,0.0348215593941404,0.7288801289075213,2,1.0,0.9605226022838353,0.47
+196,29,0.7019886393409506,0.0,1.296046705858636,0.0006688128488333889,0.03449815352485333,0.725640548881726,2,1.0,0.9732954644698353,0.46499999999999997
+196,30,0.72,0.0,1.2864641168404896,0.0006628471932850697,0.034577199656407306,0.7275465459052938,2,1.0,1.0,0.45499999999999996
+196,31,0.7,0.0,1.2922604924889176,0.0006608574845649944,0.03465344073126666,0.7263968501109054,2,1.0,1.0,0.44499999999999995
+196,32,0.6320000115167523,0.0,1.2954341825651379,0.0006594137155443192,0.03430433047451812,0.7257662184761626,2,1.0,0.9400000383891748,0.42499999999999993
+196,33,0.7179793462266069,0.0,1.3041748400071227,0.0006779037355080651,0.035276869951626585,0.724015751019185,2,1.0,0.9932644874220232,0.4149999999999999
+196,34,0.71,0.0,1.3056093049715602,0.0006741828642136775,0.03469492257636169,0.7237305164668388,2,1.0,1.0,0.4099999999999999
+196,35,0.69,0.0,1.2978114082312373,0.0006704733373345214,0.035008058947032475,0.7252884191931427,2,1.0,1.0,0.4049999999999999
+196,36,0.72,0.0,1.289837018541378,0.0006663668654272982,0.03437106149484927,0.7268760502709444,2,1.0,1.0,0.3949999999999999
+196,37,0.7,0.0,1.2907648023106668,0.0006637605391914128,0.0345794790082788,0.7266928564258045,2,1.0,1.0,0.3849999999999999
+196,38,0.77,0.0,1.2900067848985457,0.0006612218399178185,0.034252739297144355,0.7268443887317082,2,1.0,1.0,0.35499999999999987
+196,39,0.75,0.0,1.30626662809556,0.0006597682787051798,0.0345346372755231,0.7236048347912355,2,1.0,1.0,0.32499999999999984
+196,40,0.71,0.0,1.0222239833148183,0.0006902971924711414,0.03123777279047918,0.77667526788452,2,1.0,1.0,0.31999999999999984
+196,41,0.69,0.0,1.0150721615714353,0.0006874759334816336,0.03020676272598402,0.7779142768683044,2,1.0,1.0,0.31499999999999984
+196,42,0.77,0.0,1.0074885422093807,0.0006832232658101,0.030821027429259885,0.7792231521168482,2,1.0,1.0,0.2849999999999998
+196,43,0.6289081198616981,0.05,1.007208657911488,0.0006798145573334382,0.03043830508770191,0.7661022716013651,2,1.0,0.929693732872327,0.2649999999999998
+196,44,0.595814339483902,0.0,1.0341533925077924,0.0007021310518495926,0.030587046251942397,0.774595142719348,2,1.0,0.8860477982796731,0.2449999999999998
+196,45,0.6843504720336993,0.0,1.048006470717084,0.0007210330203293734,0.03192326036354335,0.7721605821534571,2,1.0,0.9145015734456645,0.2399999999999998
+196,46,0.7090768565060712,0.05,1.0415176133946304,0.0007185337279221856,0.031156405558650374,0.7598843045270087,2,1.0,0.9635895216869041,0.2299999999999998
+196,47,0.7,0.05,1.053740835157117,0.0007191330519835044,0.03160444205889894,0.757646754279029,2,1.0,1.0,0.21999999999999978
+196,48,0.71,0.05,1.064868695129286,0.0007157650560913852,0.0320477482298543,0.7555988673199386,2,1.0,1.0,0.21499999999999977
+196,49,0.77,0.05,1.0573046506320667,0.0007121966262250936,0.031125892619612506,0.7569943243342597,2,1.0,1.0,0.18499999999999978
+197,0,0.0897054046546701,0.05,1.3588866765649477,0.0006951322391629964,0.03567257682663143,0.6973526686505449,1,0.11805749387359496,0.16128427266303955,0.06
+197,1,0.15971910682120255,0.0,1.3125194128012334,0.0007856195023575993,0.0362046797286589,0.722302041415884,1,0.15180604398488823,0.1886233047549723,0.11
+197,2,0.23075978636622452,0.0,1.3141609379032932,0.0007797364786268903,0.036430394722982234,0.7219750230012794,1,0.21233465252296657,0.254808859943954,0.11
+197,3,0.23367633642966812,0.0,1.3756620295819522,0.0007125193608795017,0.03667239016400318,0.7094909334346577,1,0.2845063010092208,0.28033043692146953,0.16
+197,4,0.23996953666330798,0.0,1.3769790891608722,0.0007100491185361753,0.03673394825274982,0.7092204135907999,1,0.3279942070763803,0.3172385472885829,0.21000000000000002
+197,5,0.26305830541846714,0.0,1.377808390911183,0.0007078434196286811,0.03672470098177207,0.7090502697233184,1,0.3549778841128595,0.36272015326322105,0.26
+197,6,0.32896059946777734,0.0,1.3782491102086447,0.0007057876813848125,0.03657508475831463,0.7089601901893379,1,0.417225284087766,0.4097725001235309,0.27
+197,7,0.33873421252684904,0.0,1.372732171849761,0.0006932829751625621,0.03638329784920189,0.7101023659077068,1,0.44309888786622126,0.44549867257890546,0.32
+197,8,0.29581922715522346,0.0,1.371785189050285,0.0006918080773656468,0.03623556782459304,0.7102978771425408,1,0.4815641733153816,0.4242392216494663,0.38
+197,9,0.41324947059472183,0.0,1.3668588834373228,0.0007138010766437328,0.036567215735826684,0.7113015030408077,1,0.5389862644039641,0.48201426017778154,0.38
+197,10,0.40879271901566616,0.0,1.3637029043158977,0.0007143336161214837,0.03621194775928613,0.7119489377816478,1,0.5785823276458175,0.5209630144654336,0.43
+197,11,0.358944764430877,0.0,1.3653078891979702,0.0007096259972931393,0.03636232122118693,0.7116216114865817,1,0.6074918240970235,0.48774208665639573,0.49
+197,12,0.43965210093474916,0.0,1.1431336210985537,0.0006831232244550453,0.03280879323780051,0.7550075087508533,1,0.6714462399669904,0.5154863898210085,0.54
+197,13,0.44682671797359735,0.05,1.1495274120058834,0.0006814984251459593,0.03215770349546137,0.7396421757782021,1,0.7151098917900202,0.5551275194903013,0.5900000000000001
+197,14,0.5083758480228235,0.05,1.1614892647039126,0.0006820501925568895,0.03278714830987555,0.7373318540816508,2,0.749382477451514,0.6203066030493124,0.6000000000000001
+197,15,0.5278273786324728,0.1,1.0166520630364584,0.0008217500129581122,0.03189036799179859,0.7505793294957607,2,0.7848391461790747,0.643778924899322,0.5950000000000001
+197,16,0.5832356288181446,0.1,1.0610030317534909,0.0008074517306332651,0.03350284705427543,0.7421899367070511,2,0.8539471425220595,0.7145137631180793,0.5850000000000001
+197,17,0.5106485195249097,0.15000000000000002,1.0559923384457914,0.0008959643308106601,0.033890385843727354,0.7285376268173511,2,0.897765829961121,0.6547682634617248,0.5650000000000001
+197,18,0.5909355603776794,0.10000000000000002,1.0902027652878066,0.0008796169767302662,0.03415884073468351,0.7365353445874228,2,0.9381090217574409,0.6753246758752502,0.56
+197,19,0.5225813678980727,0.15000000000000002,1.1014125139745432,0.0008609471133681809,0.03435607872049905,0.7194763441861242,2,0.9493668972648243,0.6343431795179475,0.54
+197,20,0.6051492984778601,0.10000000000000002,1.1355897835937336,0.0008432164085266541,0.03428020332763056,0.727648340090839,2,0.9885662581889768,0.6638370270390609,0.535
+197,21,0.5278750844809272,0.15000000000000002,1.143882806289569,0.0008268611776607852,0.03472631893473764,0.7108392333458996,2,1.0,0.5929169482697576,0.515
+197,22,0.5947162437716267,0.10000000000000002,1.0782655493429316,0.0009252818680576134,0.03478911505600725,0.7388276013659792,2,1.0,0.6157208125720889,0.51
+197,23,0.6238818247617658,0.15000000000000002,1.129686423839905,0.0008362785485085015,0.03457692489367039,0.7137446496716264,2,1.0,0.6796060825392194,0.5
+197,24,0.6247116678422037,0.15000000000000002,1.1294046413894956,0.0008281930653169271,0.03430168216461787,0.7138055216178946,2,1.0,0.7157055594740124,0.495
+197,25,0.6476326181022155,0.15000000000000002,1.1438087126495209,0.0008126895643536556,0.034288727091834004,0.7108602884630946,2,1.0,0.7587753936740517,0.485
+197,26,0.6434371817048193,0.15000000000000002,1.134947497722186,0.0008054259565871769,0.03420197627847159,0.7126811703979216,2,1.0,0.8114572723493979,0.475
+197,27,0.5772565506181919,0.10000000000000002,1.2506336493984211,0.000679449066692818,0.033923423361769046,0.7043309212260046,2,1.0,0.7575218353939733,0.45499999999999996
+197,28,0.657656560368501,0.05000000000000002,1.0665276417327125,0.0007428462096054122,0.03250479578215803,0.7552823703286184,2,1.0,0.7921885345616699,0.44499999999999995
+197,29,0.5750226245670814,0.10000000000000002,1.0432834039524865,0.0007228596525881057,0.03154858004846592,0.7455979978847221,2,1.0,0.7500754152236048,0.42499999999999993
+197,30,0.6557321909425985,0.05000000000000002,1.0813674262377773,0.0007169962085044383,0.03237965223187552,0.7525387677147408,2,1.0,0.7857739698086617,0.4149999999999999
+197,31,0.5721503138435307,0.10000000000000002,1.0571564436421423,0.0006966963360031369,0.03144589008180254,0.7429675759201487,2,1.0,0.7405010461451023,0.3949999999999999
+197,32,0.6562204206536894,0.05000000000000002,1.0969390564745223,0.0006912847753621773,0.03208855440335938,0.7496372157095968,2,1.0,0.7874014021789646,0.3849999999999999
+197,33,0.6557808309468424,0.10000000000000002,1.0719569836792209,0.0006706743125509031,0.031346146376254644,0.740141026028076,2,1.0,0.8192694364894747,0.3799999999999999
+197,34,0.7350316101835503,0.10000000000000002,1.2409253170901935,0.000670331722989607,0.03354740415766213,0.7063524342869305,2,1.0,0.8834387006118348,0.34999999999999987
+197,35,0.5979333812511305,0.10000000000000002,1.262862754367976,0.0006640474747332739,0.03395989678732051,0.701784322812481,2,1.0,0.8264446041704349,0.32999999999999985
+197,36,0.5575844650847509,0.05000000000000002,0.9070332826976826,0.0007815155032739684,0.0312429130878066,0.7835378537592891,2,1.0,0.7586148836158365,0.30999999999999983
+197,37,0.6500163233887913,1.3877787807814457e-17,1.1205827091629526,0.0005874532123213926,0.0310735512945469,0.7591897348689363,2,1.0,0.8000544112959713,0.3049999999999998
+197,38,0.5814275038493106,0.05000000000000002,0.8555735406501864,0.0006567116300497406,0.028478251367740508,0.7921794596472989,2,1.0,0.7714250128310356,0.2849999999999998
+197,39,0.6643430356453203,1.3877787807814457e-17,1.1591931574315755,0.0006126574927248093,0.031516833896769805,0.7520510870144204,2,1.0,0.8144767854844011,0.2749999999999998
+197,40,0.7212204963932287,0.05000000000000002,0.8307372389934085,0.0005727314293849437,0.026870529055219673,0.7962658732527588,2,1.0,0.8374016546440958,0.2449999999999998
+197,41,0.686081736910759,0.10000000000000002,0.8826731857504578,0.0005964968049635691,0.028164492852829508,0.7748903329047219,2,1.0,0.8869391230358636,0.2349999999999998
+197,42,0.6865761602205789,0.05000000000000002,0.9170028739249672,0.0006056894059009119,0.028641904410592278,0.7819021427899302,2,1.0,0.9552538674019299,0.22499999999999978
+197,43,0.6995833050040137,0.05000000000000002,0.9263201396370806,0.0005854017621340608,0.02828962205025614,0.7803160413384741,2,1.0,0.9986110166800455,0.21499999999999977
+197,44,0.77,0.05000000000000002,0.9544144036855922,0.000578184312563872,0.028435233194091063,0.7754646474608693,2,1.0,1.0,0.18499999999999978
+197,45,0.6293902229268136,0.10000000000000002,0.9851041921977168,0.0005869109738398907,0.0288549979490214,0.7565251241644615,2,1.0,0.9313007430893786,0.16499999999999979
+197,46,0.762163570230023,0.05000000000000002,1.0209557872321768,0.0006672284558821615,0.030694700585700035,0.7636344675281994,2,1.0,0.9738785674334102,0.1349999999999998
+197,47,0.75,0.10000000000000002,1.0331805687627287,0.0006596538897551806,0.030707121577261364,0.7475334188076448,2,1.0,1.0,0.10499999999999979
+197,48,0.72,0.10000000000000002,1.0645401535476076,0.0006700429133713521,0.031217542949290644,0.7415652212352822,2,1.0,1.0,0.09499999999999979
+197,49,0.71,0.05000000000000002,1.0924028909808048,0.0006588129733847163,0.03159647664463326,0.7504997654116574,2,1.0,1.0,0.08999999999999979
+198,0,0.16613255262208698,1.3877787807814457e-17,1.3603698194603149,0.0006949896004146403,0.03570514857148816,0.7126399185744426,1,0.13371121742865588,0.2311120884068581,0.05
+198,1,0.11040733039129469,0.0,1.3584724083909578,0.0006935709873804417,0.03632469199203188,0.713028902231845,1,0.14881462739636397,0.194407369341891,0.11
+198,2,0.09190445167628158,0.0,1.301311481809405,0.0007838694988268244,0.03634527393067432,0.7245452361880603,1,0.18755927009167916,0.1541956904806463,0.16999999999999998
+198,3,0.0883780589111096,0.0,1.3132228466413143,0.000772739430119523,0.03629369200370323,0.7221660919292437,1,0.21345120246661353,0.11223379349264959,0.22999999999999998
+198,4,0.19451798205051443,0.0,1.298582116491866,0.0007987528120339215,0.03650903378091673,0.7250836938443366,1,0.25264269721154614,0.15364346008824425,0.24
+198,5,0.2143668405169309,0.0,1.296470806688285,0.0007998159535502906,0.03636858566738774,0.7255039331960113,1,0.31515037764798765,0.18021402780045062,0.29
+198,6,0.2795743610750129,0.0,1.3017220201708546,0.0007886546428390968,0.036155957554113896,0.7244613832314584,1,0.3620471714101891,0.24285950360482247,0.29
+198,7,0.19863103036892585,0.0,1.3769952959094334,0.0007093830051172848,0.03663298530035512,0.7092173460559613,1,0.39156795492924457,0.20527415381230085,0.35
+198,8,0.2949772231389336,0.0,1.3838809549567952,0.0006993702805754857,0.03642204612690776,0.7077994283282029,1,0.4592049097334491,0.24751834910742151,0.36
+198,9,0.35290287164933376,0.0,1.3722918433927465,0.0006960801520417414,0.03601087133475064,0.7101918507893534,1,0.5127695677808297,0.31144507642014446,0.36
+198,10,0.3665126604283365,0.0,1.3718478070201683,0.0006975803865359585,0.036476043313508275,0.7102826161125612,1,0.5510145621887771,0.37885854554088183,0.37
+198,11,0.38053299628854914,0.0,1.3711611570887867,0.0006990166915220611,0.036332239870983586,0.7104233044103423,1,0.6039722208564914,0.3971423966292572,0.42
+198,12,0.33250551454743915,0.05,0.424454653909233,7.8924303262827e-05,0.010650154271618435,0.8545058535384166,1,0.6434639943139943,0.3576437217918039,0.48
+198,13,0.449699490855366,0.05,0.48717772645974844,0.00010089743650412852,0.012046917280901534,0.8465273946092403,1,0.6983802280088187,0.417554703507598,0.48
+198,14,0.3737686885193784,0.1,1.237780020158022,0.0006978873194613161,0.033758196959602096,0.7069929875422339,1,0.7276555738450144,0.3969641255787445,0.54
+198,15,0.4456080578464395,0.1,0.5960395879408534,0.00021303331144033511,0.016833470047160133,0.8210583414330934,2,0.7537485863073295,0.4393201754629139,0.5900000000000001
+198,16,0.38174723313168857,0.2,0.6500846948323684,0.00018403323432313577,0.01627350899465651,0.7891063689777669,2,0.7701621859703506,0.37396822680688624,0.5700000000000001
+198,17,0.46794938202956626,0.1,1.3238771733848922,0.000727584631890654,0.03587783009666572,0.6888326873879937,2,0.8292783416864529,0.3923398747976928,0.5650000000000001
+198,18,0.5744149422149841,0.15000000000000002,0.9921090301339821,0.0005922919250550501,0.02917229307971893,0.7411024374837628,2,0.9233023182346558,0.43753043610951536,0.535
+198,19,0.5592948434371159,0.2,1.1265735187329784,0.0008304612748299756,0.033769464771635005,0.6988369327279675,2,0.9788080789909713,0.48904005263425293,0.525
+198,20,0.5638695127165192,0.2,1.1263727190125987,0.0008279094945490413,0.03430272213349983,0.6988802661559069,2,1.0,0.5462317090550642,0.515
+198,21,0.6479427081119741,0.2,1.1214654152695904,0.0008257687333423044,0.03415663052832117,0.6999128820177822,2,1.0,0.5931423603732471,0.485
+198,22,0.6140169694976122,0.25,1.125780802475751,0.0008501127958106495,0.03431990319523313,0.6829839533378871,2,1.0,0.6467232316587074,0.475
+198,23,0.6754924163809253,0.2,1.148583397790233,0.000688456371546142,0.03276424264206858,0.694244765015242,2,1.0,0.6849747212697509,0.44499999999999995
+198,24,0.5378868898499198,0.25,1.151742098364652,0.0007290108939918178,0.03350611359315333,0.6773893149539595,2,1.0,0.6262896328330664,0.42499999999999993
+198,25,0.6079498705213753,0.2,1.184982654921616,0.0007180864151491995,0.03348283094711308,0.6864514248402704,2,1.0,0.6598329017379175,0.41999999999999993
+198,26,0.6816998049640961,0.25,1.1875208655193532,0.0007094887155669424,0.03355256407115276,0.6695300148191566,2,1.0,0.7056660165469872,0.3899999999999999
+198,27,0.6791556021198022,0.3,1.2029050591818735,0.0007467947956762435,0.03445064707580954,0.6492174847360208,2,1.0,0.7638520070660073,0.3599999999999999
+198,28,0.6945612429534965,0.3,1.2142876874439683,0.0007783296214951545,0.03459199619842224,0.6466064777091549,2,1.0,0.8152041431783219,0.32999999999999985
+198,29,0.7092283533367906,0.25,1.2775626511927771,0.0006765312183776078,0.03398082533295983,0.6493274576296872,2,1.0,0.8640945111226355,0.2999999999999998
+198,30,0.720117111747594,0.2,1.2687259136340638,0.0006678825655940124,0.03396612438479624,0.6681740970500448,2,1.0,0.9003903724919798,0.2699999999999998
+198,31,0.688159837292303,0.15000000000000002,1.258538070489497,0.000658049498334795,0.034041687954585856,0.6867880971303436,2,1.0,0.9271994576410101,0.2649999999999998
+198,32,0.6122840154242861,0.05000000000000002,1.2600112396762624,0.0006689106287368925,0.03314832621180825,0.7178153944990395,2,1.0,0.8742800514142872,0.2449999999999998
+198,33,0.5768514461612457,1.3877787807814457e-17,1.2489108687662867,0.0006728965786326643,0.03343876606472087,0.7349226018201855,2,1.0,0.8228381538708194,0.2249999999999998
+198,34,0.7285432354166954,0.0,1.241371208074861,0.0006769544996539223,0.033994006455733396,0.7363872340579505,2,1.0,0.8618107847223183,0.1949999999999998
+198,35,0.7255746889398137,0.05,1.2351279006954976,0.0006666044910372788,0.03297207928234756,0.7228291712765762,2,1.0,0.9185822964660458,0.1649999999999998
+198,36,0.6083983598495641,0.05,1.2334606546428126,0.0006573759083228863,0.033103959397234206,0.7231667702394841,2,1.0,0.8613278661652142,0.14499999999999982
+198,37,0.7442197452269874,0.0,1.2307751851422137,0.0006633862365339676,0.03343680893563591,0.7384442283720637,2,1.0,0.9140658174232916,0.11499999999999982
+198,38,0.737695546068165,0.05,1.2179653485933142,0.0006512159082015085,0.03310183066267152,0.72626057513443,2,1.0,0.9589851535605503,0.08499999999999983
+198,39,0.75,0.05,1.2157791589946678,0.0006419423755577268,0.03300633334664689,0.7266986716273689,2,1.0,1.0,0.05499999999999983
+198,40,0.71,0.05,1.206876449758541,0.0006301720761570111,0.03218326912492571,0.7284679017797216,2,1.0,1.0,0.04999999999999983
+198,41,0.72,0.0,1.217182058751628,0.0006448081348823001,0.03311924600584659,0.7410682715144664,2,1.0,1.0,0.03999999999999983
+198,42,0.7,0.0,1.2366077722899687,0.0006396473147404428,0.03260948868546966,0.7373253268749208,2,1.0,1.0,0.029999999999999825
+198,43,0.71,0.0,1.2603982018289994,0.000639005033696126,0.03389022094063253,0.7326919837702613,2,1.0,1.0,0.024999999999999824
+198,44,0.77,0.0,1.2674863213406737,0.0006508868428226041,0.03303033009259381,0.731296786877309,2,1.0,1.0,0.0
+198,45,0.71,0.0,1.2583196131179475,0.0006392202980581301,0.03393161997099466,0.7330988034062357,2,1.0,1.0,0.0
+198,46,0.6376957868625865,0.0,1.2637191943895263,0.0006512660175338737,0.0332517147873589,0.7320362400254125,2,1.0,0.9589859562086219,0.0
+198,47,0.72,0.0,1.263749354720892,0.0006599620054605674,0.03411926145642209,0.7320269121007423,2,1.0,1.0,0.0
+198,48,0.6373141385399628,0.0,1.2859876006628355,0.0006580531455414715,0.03418337773819024,0.7276428920844569,2,1.0,0.9577137951332091,0.0
+198,49,0.72,0.0,1.2846057477722248,0.0006642541790119922,0.03425566835174924,0.7279142034645744,2,1.0,1.0,0.0
+199,0,0.21175260939428447,0.0,1.3607823820386427,0.0006934650161479576,0.035684971699573534,0.7125560493697327,1,0.15597736894026112,0.25720176755064367,0.0
+199,1,0.12036328200963603,0.0,1.3602705407603912,0.000694749104330751,0.036352387840222364,0.7126603473562966,1,0.17281582392887493,0.19959247878176606,0.06
+199,2,0.09638209948168769,0.0,1.3173623231137426,0.0007687769077780004,0.03646188335124559,0.7213363678316342,1,0.21012094612799428,0.14279922778963233,0.12
+199,3,0.2058356472915948,0.0,1.2902849337605713,0.0008143674987999796,0.036312500660719456,0.7267283376472919,1,0.24872402647873024,0.1959407934134641,0.13
+199,4,0.2200064309830866,0.0,1.2886199467382593,0.0008166507305109803,0.03650963616900272,0.7270579634728627,1,0.2858599252870404,0.2331848571087416,0.18
+199,5,0.264964321224241,0.0,1.3643102899632664,0.0007172106466456959,0.03653631083298351,0.7118231801936885,1,0.3292007085827309,0.299146910734284,0.19
+199,6,0.2816462938257549,0.0,1.3633561558203713,0.000718939978103018,0.03640017821479813,0.7120181538713191,1,0.3809959952881753,0.32765898491631174,0.24
+199,7,0.233687283890673,0.0,1.3634963182918638,0.0007155491782634045,0.036414742659481115,0.7119908035765743,1,0.42092552538325023,0.28787783335511813,0.3
+199,8,0.2124770945191207,0.0,1.3438199319055624,0.0007121869973463601,0.03615722870535652,0.7160101193664471,1,0.44825033899018385,0.25196491957518785,0.36
+199,9,0.3258067672571853,0.0,1.3549252622870447,0.0006791237935739853,0.0352670039851707,0.7137600691590795,0,0.4921235171827258,0.31187845414410437,0.37
+199,10,0.297058771380182,0.0,1.385951379146642,0.0007005268914960463,0.03656743698580729,0.7073705614600916,0,0.5148224278331824,0.3229030721285607,0.37
+199,11,0.2909524189900905,0.0,1.385945793006871,0.0007001760708898547,0.03666221641828149,0.7073718630130258,0,0.5361134577028851,0.3443756959802692,0.37
+199,12,0.33932481168914785,0.0,1.3857595449372284,0.0006998635151769307,0.03673688360390257,0.7074105436850741,0,0.5772132420762923,0.3576672565414851,0.38
+199,13,0.3340528396297583,0.0,1.3861371133413385,0.0007000722456407934,0.03678451450326562,0.7073323017101509,0,0.614028739858603,0.3638092689308243,0.39
+199,14,0.376625533425575,0.0,1.3093036376741152,0.0006585723765462315,0.03462962958756546,0.7229974969262308,0,0.6861025295520858,0.35496549360781654,0.45
+199,15,0.37253448698527086,0.0,1.3020485158388608,0.0006538688584424442,0.0350138885046794,0.7244500200633813,0,0.6980001630763542,0.3607814330284897,0.45
+199,16,0.35828050632501895,0.0,1.3111943786335953,0.0006533777694966818,0.03405631368643612,0.7226207570414701,0,0.7065866208544312,0.3699172967532268,0.45
+199,17,0.39511834505720483,0.0,1.31774136280819,0.0006539181211687476,0.03536573777028747,0.7213063515683544,0,0.7975021864560936,0.3199752659919069,0.53
+199,18,0.40619485282171625,0.0,1.3270544253210521,0.0006693373249407298,0.03455362197733074,0.7194241294272099,2,0.909611652691709,0.2927692479320604,0.61
+199,19,0.48583228612675483,0.0,1.0474694794132784,0.0010076694462091878,0.03520340987493893,0.7721541991278561,2,0.9562062219113857,0.30386702819256617,0.605
+199,20,0.4972112849198337,0.05,1.0708591718659788,0.0009797594060553352,0.03565460263942963,0.75439310272865,2,1.0,0.3573709497327791,0.6
+199,21,0.5380904441844764,0.05,1.0989477690326992,0.000948679333737912,0.03529026065796603,0.7491633034400405,2,1.0,0.39363481394825467,0.59
+199,22,0.5326356189176803,0.1,1.0911423864049112,0.0009428264994655782,0.0352451431090876,0.7363284262388987,2,1.0,0.4421187297256011,0.58
+199,23,0.5503515134573856,0.1,1.0130633689078004,0.0007508783129338177,0.03168145016864453,0.7512770516848493,2,1.0,0.4678383781912856,0.575
+199,24,0.570956598819304,0.1,1.0287736897661395,0.0007459329758872147,0.03234549856009787,0.7483317124355888,2,1.0,0.5031886627310136,0.565
+199,25,0.6348876214981498,0.1,1.0197815869627789,0.0007351736731907126,0.03137331105730028,0.7500254573275928,2,1.0,0.5496254049938328,0.5349999999999999
+199,26,0.6282314176704116,0.15000000000000002,1.0349557214998137,0.0007857036458743328,0.032727827680936815,0.732721181345443,2,1.0,0.5941047255680387,0.5049999999999999
+199,27,0.5964839351336463,0.15000000000000002,1.053153041415227,0.0008353631056597284,0.03367801494940117,0.7291227301374344,2,1.0,0.6216131171121544,0.4999999999999999
+199,28,0.5198426086585346,0.10000000000000002,1.1427254309485801,0.0006094813848116965,0.03139462908517349,0.7263248616938371,2,1.0,0.5661420288617822,0.47999999999999987
+199,29,0.6056139669157925,0.05000000000000002,1.0868789355014117,0.0007695059366742597,0.033163571179223535,0.7514913514184104,2,1.0,0.6187132230526419,0.46999999999999986
+199,30,0.668398987341954,0.10000000000000002,1.1034820298569692,0.0006018266533501079,0.03068186607678892,0.7340588808494685,2,1.0,0.6613299578065134,0.43999999999999984
+199,31,0.6189325509287018,0.15000000000000002,1.1333541673418446,0.0006505171014116103,0.03213998006738554,0.7130707139989564,2,1.0,0.6964418364290061,0.43499999999999983
+199,32,0.692271472949292,0.10000000000000002,1.1509382873317506,0.0006568915979126028,0.03234446053574197,0.7246703848597051,2,1.0,0.7409049098309735,0.4049999999999998
+199,33,0.6536442417149292,0.15000000000000002,1.1575336351408332,0.00069087833492028,0.0328926077716414,0.7080815127839368,2,1.0,0.7788141390497639,0.3949999999999998
+199,34,0.6548891850762444,0.10000000000000002,1.1560665349100538,0.0006865003687877549,0.03295316037204464,0.7236341597594943,2,1.0,0.8162972835874814,0.3899999999999998
+199,35,0.6757800206229936,0.10000000000000002,1.1929855645397676,0.0006048419773373336,0.03204313982003042,0.7162233859621778,2,1.0,0.852600068743312,0.3799999999999998
+199,36,0.5869704712184012,0.10000000000000002,1.1900123674351177,0.0006094562666187785,0.032054371713954574,0.7168254187280818,2,1.0,0.7899015707280042,0.35999999999999976
+199,37,0.6722844921627971,0.05000000000000002,1.160151387860968,0.0006781379285628836,0.0322110666419663,0.7375923976474746,2,1.0,0.8409483072093239,0.34999999999999976
+199,38,0.737821664288457,0.10000000000000002,1.1862930275938601,0.0006087443320162756,0.03150602901440889,0.7175800747217785,2,1.0,0.8927388809615233,0.31999999999999973
+199,39,0.7334754403956898,0.15000000000000002,1.1748188975393146,0.000696748439394095,0.03280317594307328,0.7044933613312538,2,1.0,0.9449181346522992,0.2899999999999997
+199,40,0.7483435542726866,0.15000000000000002,1.1736496979796214,0.0006842693345765009,0.03295468679015869,0.7047419033166501,2,1.0,0.9944785142422891,0.2599999999999997
+199,41,0.71,0.15000000000000002,1.166821467885446,0.000670228338919475,0.03199457644787148,0.7061665644146351,2,1.0,1.0,0.25499999999999967
+199,42,0.69,0.10000000000000002,1.1728907071995063,0.0006860271073620401,0.03259602497957627,0.7202570947710106,2,1.0,1.0,0.24999999999999967
+199,43,0.77,0.10000000000000002,1.172053133952173,0.0006991097586091335,0.03201400338120501,0.7204205535491601,2,1.0,1.0,0.21999999999999967
+199,44,0.72,0.15000000000000002,1.1652774589937642,0.0006833625487774022,0.0328184580545619,0.706481389929962,2,1.0,1.0,0.20999999999999966
+199,45,0.7,0.10000000000000002,1.193184439669834,0.0006781602625657104,0.03330030921239739,0.7161531563450173,2,1.0,1.0,0.19999999999999965
+199,46,0.71,0.10000000000000002,1.212354638899612,0.0006701320177541564,0.03306466965615307,0.7122434766635711,2,1.0,1.0,0.19499999999999965
+199,47,0.6353092220847119,0.10000000000000002,1.2145276436570833,0.0006829674375468999,0.03357307167351058,0.7117926419465334,2,1.0,0.9510307402823732,0.17499999999999966
+199,48,0.77,0.05000000000000002,1.2157729823388512,0.0006939869122519136,0.03288055106474578,0.7266792250344779,2,1.0,1.0,0.14499999999999966
+199,49,0.6304710303354244,0.10000000000000002,1.2041720879902023,0.0006788798737400483,0.0326385979630253,0.7139140225228678,2,1.0,0.9349034344514149,0.12499999999999965
diff --git a/Strange/AntiStrange/results/strange_hypothesislab.csv b/Strange/AntiStrange/results/strange_hypothesislab.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5033653d4603c4e2822e0291fafc2d9bfae04ed1
--- /dev/null
+++ b/Strange/AntiStrange/results/strange_hypothesislab.csv
@@ -0,0 +1,10001 @@
+episode,step,reward,T,H_swarm,S_t,diversity,w_t,phase,progress,stability
+0,0,0.16239284849816465,0.75,1.3862943611198846,0.0007001722195526522,0.03633489525742447,0.4262163581318481,1,0.12867895136708699,0.23640422650443282
+0,1,0.20933495617024866,0.75,1.386281331431762,0.0007001717584162999,0.03673146826212116,0.42621317142129245,1,0.17332225763547587,0.3000201770535277
+0,2,0.17801207431534466,0.75,1.3862684578431035,0.000700154176952703,0.036747451665472435,0.4262100145180504,1,0.22279306726676829,0.26298282469545775
+0,3,0.18264295440323697,0.7,1.3862943611198846,0.0007001722195526527,0.03638937495624124,0.40798409882467046,1,0.2565603226413948,0.23339608448893018
+0,4,0.19903005490574757,0.75,1.3862772530362795,0.0007001723700085801,0.036663329245602116,0.4262121743266665,1,0.2743724060020693,0.23093697501639954
+0,5,0.20690411850521087,0.8,1.3862678456368887,0.0007001552885357025,0.03676404512539598,0.4446448750837256,1,0.2889298161734962,0.23777397345270798
+0,6,0.25168856799414946,0.8500000000000001,1.3862175464466147,0.0007001365160199148,0.036377976038477665,0.4632210053799499,1,0.329354949867923,0.2664886268232676
+0,7,0.27108231951048206,0.8500000000000001,1.3862356199957688,0.0007001303025030036,0.03678148944551728,0.4632254962322834,1,0.35270300313305686,0.3000037275241978
+0,8,0.29022787095346414,0.9000000000000001,1.386174993632612,0.0007001259206531205,0.03661655867294898,0.481901721653225,1,0.3836431261106656,0.3225687350306597
+0,9,0.28005755302120494,0.9500000000000002,1.3860439149199868,0.0007001182972983726,0.03669072981772187,0.5006110375744574,1,0.3990658678539922,0.33477068626536016
+0,10,0.28974317569197466,1.0000000000000002,1.3859899091665442,0.0006999826121500312,0.036624207990221196,0.5193378180678181,1,0.416974112105275,0.3431784361662154
+0,11,0.2886679303091198,1.0500000000000003,1.3862943611198844,0.0007001722195526525,0.036728371598992,0.5380996785026854,1,0.45912070333033844,0.31673216325661463
+0,12,0.3115014021845327,1.1000000000000003,1.3862608119778679,0.0007001716097388504,0.03653024600999235,0.5566707315232401,1,0.47782456699341075,0.3345719179572279
+0,13,0.30800691138033337,1.1000000000000003,1.3862428179098751,0.0007001385295675733,0.03678566263451503,0.5566662744633148,1,0.5052339116723695,0.31971115570461855
+0,14,0.36292552387412297,1.1500000000000004,1.3861621423796564,0.0007000954829436889,0.03650844638549437,0.5750687806949815,1,0.5430470256793738,0.3523557120079116
+0,15,0.3516383815576207,1.1500000000000004,1.3861991040524406,0.0007002279219950206,0.03678549623211641,0.5750778775236854,1,0.5976272325147434,0.3419582951724113
+0,16,0.37897093784853514,1.2000000000000004,1.3860593139038158,0.0007002882970907765,0.03643243413340943,0.5932603136197275,1,0.6307782701620871,0.3555320992790008
+0,17,0.4219225461212837,1.2000000000000004,1.3862943611198844,0.0007001722195526524,0.03676137695795967,0.593316973843189,1,0.6607337288308862,0.3920968486297642
+0,18,0.47279262544647843,1.2000000000000004,1.386229093357471,0.0007001695942799111,0.03644447127741131,0.5933012238951778,1,0.7146849494327063,0.4563954855779865
+0,19,0.5040710458633327,1.2000000000000004,1.3862943611198844,0.0007001722195526523,0.036787506764947984,0.593316973843189,1,0.7528437697651345,0.5097784598575962
+0,20,0.4716099418636316,1.2000000000000004,1.3862010453637463,0.0007001725789834356,0.036386056969374574,0.5932944574805368,1,0.7811457506874058,0.49717213862889753
+0,21,0.47915010274505065,1.1500000000000004,1.3861673366976155,0.0007000836765301547,0.03676941601076256,0.5750700442321866,1,0.8244354469820078,0.4645864131741583
+0,22,0.5373316045618527,1.2000000000000004,1.3862943611198844,0.0007001722195526521,0.0367823004872644,0.593316973843189,1,0.8676390568528262,0.5009199394024074
+0,23,0.5605907790312219,1.2000000000000004,1.386188254967173,0.0007001692684897793,0.0367226103761662,0.5932913696058555,1,0.8981593465954251,0.5377568013101728
+0,24,0.5845851849423765,1.2000000000000004,1.3858467930158915,0.0007001548572381312,0.03666095648662952,0.5932089663776962,1,0.9219802761483491,0.585976914943456
+0,25,0.6327442228194576,1.2000000000000004,1.3852321771430578,0.00070012296268094,0.03659605237682663,0.5930606282504965,1,0.9653649959301969,0.6553274148245962
+0,26,0.6201637820249163,1.2000000000000004,1.3862943611198846,0.0007001722195526526,0.03674385636281656,0.593316973843189,1,1.0,0.6672126067497208
+0,27,0.6198903436720586,1.2500000000000004,1.386152780310893,0.0007001716974051672,0.036494931806020404,0.611246090234244,1,1.0,0.6663011455735288
+0,28,0.6506338411092971,1.3000000000000005,1.385739506567511,0.000700145690119139,0.03640131608692197,0.6288157685538307,1,1.0,0.7021128036976568
+0,29,0.6647011634666281,1.3000000000000005,1.3857821555552388,0.0006998666481430653,0.03659183549920321,0.6288255927910008,0,1.0,0.7490038782220936
+0,30,0.6624947135896013,1.3500000000000005,1.3862943611198844,0.0007001722195526524,0.03670404437716347,0.6462725701333374,0,1.0,0.7416490452986708
+0,31,0.6489777423197474,1.4000000000000006,1.386146903082922,0.0007001666849408167,0.03660629424657204,0.6631910463249134,0,1.0,0.7632591410658243
+0,32,0.6687731816749951,1.4500000000000006,1.386091032225803,0.0007000331468817811,0.03653422755469134,0.6797212546206066,0,1.0,0.72924393891665
+0,33,0.6582802978971192,1.5000000000000007,1.3861395348024954,0.0007001682327702499,0.03647383206506106,0.6958344974031908,0,1.0,0.727600992990397
+0,34,0.6544391160629754,1.5500000000000007,1.3859361281974487,0.000700312397604385,0.03645556249702407,0.711429469271515,1,1.0,0.7147970535432513
+0,35,0.6756886925422516,1.6000000000000008,1.3856285959088381,0.000699705040695306,0.03647180847682657,0.7265181099011363,2,1.0,0.7522956418075054
+0,36,0.6874615879635892,1.6000000000000008,1.3862943611198844,0.0007001722195526524,0.036565616580524624,0.7266505561288239,2,1.0,0.7915386265452972
+0,37,0.7241864787108939,1.6500000000000008,1.3861569249762424,0.000700170458399889,0.036709670974368884,0.741265661982668,2,1.0,0.8139549290363131
+0,38,0.7357176766978036,1.6500000000000008,1.3862943611198846,0.0007001722195526521,0.0366263607507312,0.7412920207831094,2,1.0,0.8523922556593457
+0,39,0.7202499127395395,1.7000000000000008,1.3861411333710518,0.000700166768483538,0.036750998920412295,0.7553849001901436,2,1.0,0.9008330424651316
+0,40,0.7058447774394285,1.7500000000000009,1.386080387091801,0.0007004657890249639,0.03678801485168847,0.7689659021541283,2,1.0,0.9194825914647615
+0,41,0.7386201358121676,1.800000000000001,1.386138502747691,0.0007001648365760737,0.036738485158909026,0.782030540027593,2,1.0,0.9620671193738914
+0,42,0.7214911325719527,1.800000000000001,1.385890561252241,0.0007002857126393787,0.03657198705158819,0.7819883144832902,2,1.0,0.9716371085731758
+0,43,0.75,1.850000000000001,1.3857243118474316,0.0006998604819797546,0.036761790441010994,0.7944766646310573,2,1.0,1.0
+0,44,0.75,1.850000000000001,1.3853048828021182,0.0006998440192524237,0.036693520166020045,0.7944081649546788,2,1.0,1.0
+0,45,0.7799999999999999,1.900000000000001,1.3845709050373716,0.0006997863672420006,0.03666617130125145,0.8062726929865461,2,1.0,1.0
+0,46,0.6891136822532088,1.900000000000001,1.3847920099384996,0.0007008648139643359,0.03675176043697787,0.8063075634329013,2,1.0,0.9637122741773626
+0,47,0.724036942327593,1.850000000000001,1.3855558985828065,0.0007004794969806031,0.03663318229048396,0.7944493663308296,2,1.0,0.9801231410919764
+0,48,0.6796257467820309,1.850000000000001,1.3855151684408988,0.0006999366336324275,0.036619626167100204,0.7944425377333623,2,1.0,0.9320858226067696
+0,49,0.7688761728503519,1.800000000000001,1.3859415469088106,0.0006999605429639873,0.0365696944009321,0.7819968956567603,2,1.0,0.9629205761678398
+1,0,0.026497742200462998,1.800000000000001,1.3862845021303956,0.0007001676555638994,0.036350204937139516,0.7820554268396575,1,0.11988466938313413,0.19514624815736456
+1,1,0.019516293771656326,1.7500000000000009,1.3862943611198846,0.0007001722195526526,0.036763890345957194,0.7690038097261824,1,0.15882394684865664,0.15328905010731222
+1,2,0.041675750190347555,1.800000000000001,1.3862942602849189,0.0007001721992953265,0.036628073336070766,0.7820570916100549,1,0.1839544681874597,0.16031320971787894
+1,3,0.14318055949357922,1.800000000000001,1.3862939200448214,0.0007001718633956987,0.03657018689735704,0.7820570335037311,1,0.22159292188893026,0.14847796912669037
+1,4,0.2170658179365072,1.800000000000001,1.3862943611198846,0.0007001722195526524,0.036785422219763,0.7820571088036542,1,0.27245911451881566,0.19360724042993638
+1,5,0.1909365744712999,1.800000000000001,1.3862821702172305,0.0007001722075885436,0.03646591126481613,0.7820550309288111,1,0.3216339943532586,0.17427658909998817
+1,6,0.2737160341318815,1.7500000000000009,1.3862785670794593,0.0007001620781379868,0.036720978553673594,0.7690010005060769,1,0.3808005422415046,0.23798605745093226
+1,7,0.2496855984541225,1.7500000000000009,1.3860488032373928,0.000700005336572403,0.036631516994248624,0.7689601273944519,1,0.3992786126574217,0.23324717797051267
+1,8,0.23822594989390955,1.7000000000000008,1.3859512461583683,0.0006999328728934573,0.036594959170449214,0.7553497249581248,1,0.4199290162913246,0.2008478112579323
+1,9,0.24289387873898127,1.7500000000000009,1.3861160725444894,0.0007001406027927902,0.03670072890763938,0.7689721263347569,1,0.44950041488147957,0.1769790426212981
+1,10,0.32070593062952507,1.800000000000001,1.3862943611198846,0.0007001722195526524,0.03636156741739814,0.7820571088036542,1,0.4951317316255068,0.2421774599310745
+1,11,0.29431621575744027,1.800000000000001,1.3860747346570612,0.0007001458831986667,0.03664403293752468,0.7820196635397523,1,0.5490215313738899,0.21569201069294763
+1,12,0.28961589626279466,1.7500000000000009,1.3859396237589539,0.0007001515687211835,0.03675644623515725,0.7689407819119966,1,0.5695788816140345,0.17261447872393615
+1,13,0.3395641048133106,1.800000000000001,1.3862451381335483,0.0007001729373992025,0.03659905701814719,0.7820487191796685,1,0.599072840982921,0.1997832280671408
+1,14,0.380676534437491,1.800000000000001,1.3862375681479095,0.0007001309698046083,0.03676050324271105,0.7820474145773746,1,0.6362463485421821,0.2539266500687272
+1,15,0.3920312779687041,1.800000000000001,1.3862253851217718,0.0007001261265826501,0.03665664482496947,0.7820453363314404,1,0.6721097213574951,0.27729129808568675
+1,16,0.3647987285932172,1.850000000000001,1.3861303611630107,0.0007000760208544283,0.03655990207612958,0.7945430282253483,1,0.696058227388644,0.2545847921258653
+1,17,0.3843832414402365,1.800000000000001,1.3861813595476518,0.000700203520864321,0.036709845288896724,0.7820378584447276,1,0.7112944599146324,0.2662181915812783
+1,18,0.45462984167944037,1.850000000000001,1.386261154681394,0.0007001678209857771,0.03646637667635692,0.7945644086822337,1,0.7565763283672233,0.3399977011085035
+1,19,0.4285097174001525,1.850000000000001,1.3862279112492293,0.0007001285320626392,0.036403261776481996,0.7945589694168671,1,0.8196799632351822,0.30212577368693194
+1,20,0.4804251476293043,1.800000000000001,1.3862943611198846,0.0007001722195526527,0.03677434774272316,0.7820571088036542,1,0.8477249049568512,0.33778395215521284
+1,21,0.4665775048947026,1.800000000000001,1.3862343732050226,0.0007001697755190121,0.03645504737721418,0.7820468832300799,1,0.8621129238527596,0.3391077845119958
+1,22,0.528218142585106,1.850000000000001,1.386209494628649,0.0007001151765592432,0.03678425917424612,0.7945559588030302,1,0.9113394732555175,0.37894117760966334
+1,23,0.5104302761940477,1.850000000000001,1.386224092253377,0.0007001883935091352,0.03678445835306167,0.7945583655653375,1,0.9381198705267574,0.38394109327781584
+1,24,0.5549828533779508,1.900000000000001,1.3861145118876987,0.0007002714870083165,0.03649274924507934,0.806513837228153,1,0.9781438532551969,0.41241770691957347
+1,25,0.5896254124489322,1.900000000000001,1.3856694820732876,0.0006999150393136094,0.03645832611875234,0.8064442699011807,1,1.0,0.4654180414964402
+1,26,0.5933975148103103,1.900000000000001,1.3855381821546007,0.0006996573317777342,0.03667011327903164,0.8064236937629164,1,1.0,0.5113250493677008
+1,27,0.5710919792390495,1.950000000000001,1.38508341700482,0.0006994757557984327,0.03672310237815745,0.8177954621261926,1,1.0,0.5036399307968317
+1,28,0.5662397951640206,1.900000000000001,1.3854273253511828,0.0006995592110273412,0.03673615326056855,0.806406357290726,1,0.9889366319871671,0.5022171412305124
+1,29,0.621228895073714,1.950000000000001,1.3854359840774169,0.0006996381273048196,0.03672046216036203,0.8178480392427521,1,1.0,0.5707629835790465
+1,30,0.5948265490227556,1.950000000000001,1.3853264656050768,0.0006997753029343274,0.03667380433321295,0.8178317642942842,1,1.0,0.5827551634091851
+1,31,0.6228531334538993,1.900000000000001,1.38521077913032,0.0007000706462320829,0.03672845757951037,0.8063727086098369,1,1.0,0.6095104448463307
+1,32,0.631736628338225,1.900000000000001,1.38592013067118,0.0006999659003098862,0.036760760990561483,0.8064834069898673,1,1.0,0.6391220944607499
+1,33,0.6171507791326635,1.950000000000001,1.3855970535554678,0.0006996782328195618,0.03662321002329932,0.8178720449051342,1,1.0,0.6571692637755449
+1,34,0.6656405111498316,2.0,1.3853933539844114,0.0006996111914655502,0.03671111670165742,0.8287497888191848,1,1.0,0.7188017038327716
+1,35,0.662528092462991,2.0,1.3855146595951005,0.0006999586407258576,0.036761223494817634,0.8287671028733212,1,1.0,0.74176030820997
+1,36,0.6704897286374716,2.0,1.385151930253783,0.0006994824682457794,0.03654581502062994,0.8287154858369031,2,1.0,0.7682990954582383
+1,37,0.7176582686992744,2.0,1.3861384909514982,0.0007003866464242594,0.03659896722125504,0.8288557354211037,2,1.0,0.7921942289975813
+1,38,0.6231760620189759,2.0,1.3858481265320581,0.0007005934075831076,0.036785877125085284,0.8288146008320295,2,1.0,0.7439202067299198
+1,39,0.656831789893944,1.95,1.3859710539008097,0.0007002452798753475,0.036577258933710464,0.8179279172788885,2,1.0,0.7561059663131466
+1,40,0.7157667173154028,1.95,1.3861775022189695,0.0007001431644639983,0.03670687204931881,0.8179586295138098,2,1.0,0.7858890577180093
+1,41,0.7209069939151899,1.95,1.3858110915030988,0.0007000974257602247,0.03643977543009678,0.817904050130978,2,1.0,0.8030233130506329
+1,42,0.6277832898564861,2.0,1.3860759225650887,0.000700203366328362,0.03676613631483859,0.8288468076683793,2,1.0,0.7592776328549535
+1,43,0.7079751535184348,1.95,1.385115739989775,0.0007000195625940541,0.03654426113733762,0.8178004404544588,2,1.0,0.7599171783947825
+1,44,0.7139671006213363,1.95,1.3841688313640386,0.0006998846764800302,0.036385949483654395,0.8176592656602496,2,1.0,0.7798903354044543
+1,45,0.7194555081961133,2.0,1.3829720099826757,0.000699728824322987,0.03669102332860742,0.8284059028643769,2,1.0,0.7981850273203774
+1,46,0.6297186149100319,2.0,1.3816052923784936,0.0006994741120458757,0.036372604056431265,0.8282114648663421,2,1.0,0.765728716366773
+1,47,0.7178437176187876,1.95,1.3821430518133138,0.0006987053633001513,0.036673315687379325,0.8173566904521988,1,1.0,0.7928123920626254
+1,48,0.6644534944811371,1.95,1.3847158779456612,0.0006990921214293877,0.03673473056835509,0.8177405758335945,1,1.0,0.8148449816037904
+1,49,0.6561366690127689,1.9,1.3862943611198846,0.0007001722195526527,0.03662780030410882,0.8065418700441696,1,1.0,0.787122230042563
+2,0,0.1874570822126908,1.95,1.386287261483111,0.0007001685412730096,0.036348244745278604,0.8179749799082152,1,0.14974554683307456,0.2585295449315367
+2,1,0.15591489432773006,1.9,1.3862698574490029,0.000700157277520297,0.036743293178570655,0.8065380419937257,1,0.19029919658221012,0.23265071898282003
+2,2,0.17875085920170838,1.8499999999999999,1.3862634818753845,0.000700150345284038,0.03670387692702051,0.7945647828488852,1,0.2056659551851114,0.25494825709221275
+2,3,0.19440191738419546,1.8499999999999999,1.3860258701409185,0.0006999851468597502,0.03650418363109094,0.7945259404545151,1,0.2359675071633502,0.266716381729518
+2,4,0.2584820089914816,1.9,1.3859422687638898,0.0006999278327314944,0.03677515769320437,0.8064868501304395,1,0.28306768820265704,0.31751644570139603
+2,5,0.26920322751390396,1.9,1.3860900540836347,0.0007000605714201885,0.03663647565532972,0.806509954749688,1,0.3165467058223618,0.3419484839498642
+2,6,0.321282248708434,1.95,1.3860505809575723,0.0007000007081395879,0.03654424974544063,0.8179396874545479,1,0.36956386675737246,0.41152234001828353
+2,7,0.3028275772603417,1.95,1.3862943611198846,0.0007001722195526524,0.03676977664286273,0.8179760380796509,1,0.3937473917662647,0.4177620685127861
+2,8,0.2995445720436919,2.0,1.386272374406062,0.0007001711289895084,0.03667869502668627,0.828874665337209,1,0.43083456265232783,0.39070248994253587
+2,9,0.3524315366916407,2.0,1.38587134249005,0.0007001583923171539,0.03641913478375607,0.8288177712703357,1,0.4672764678842247,0.4184031651265027
+2,10,0.37303137974989814,2.0,1.3862943611198846,0.0007001722195526526,0.03670703823465997,0.8288777842514964,1,0.4938733666095626,0.45160677702024377
+2,11,0.34967736363694013,2.0,1.3862617917780944,0.0007001708908263136,0.03676058703790742,0.8288731642090781,1,0.5457649107344472,0.4045713311438708
+2,12,0.4060085547706524,1.95,1.386249253457403,0.0007002343122145336,0.03641884114442936,0.8179693403381919,1,0.5781215714298436,0.44919975399571654
+2,13,0.37774165051980624,1.95,1.3861600988859117,0.0007003033229341725,0.03678189045639651,0.8179560857994329,1,0.6156424868770527,0.4049488525632839
+2,14,0.4037338484116561,1.9,1.3860946165086188,0.0007000618906944042,0.03662065594754886,0.8065106671343772,1,0.6354437167666318,0.43185453901667786
+2,15,0.44469781419767185,1.9,1.38614810586777,0.0007000687496789601,0.03674072023676971,0.8065190162174296,1,0.6501527880173473,0.4821223299691098
+2,16,0.43660444329511533,1.9,1.386247343600414,0.0007001804533259332,0.03670709756670288,0.8065345362665238,1,0.6613581908703041,0.5068705564899789
+2,17,0.43279119086440865,1.95,1.3862304907262064,0.0007001263197545294,0.03644105277732847,0.8179665144757398,1,0.6976841648765232,0.4790584163793312
+2,18,0.453638928482049,2.0,1.386129351076636,0.0007000902886246181,0.0365820530926957,0.8288543548107195,1,0.7276175269210197,0.4753063923788038
+2,19,0.4532887716479921,2.0,1.3860394172498682,0.0006999927462540126,0.03666282824472393,0.828841569211855,1,0.7770861428009759,0.4415143817586723
+2,20,0.5277828572376878,2.0,1.3858726074749645,0.0006999030222769881,0.036761013467857824,0.8288178782817164,1,0.8173960184933938,0.5027481661344342
+2,21,0.5651571245913667,2.0,1.384964850478913,0.0006995933155649385,0.03646472698272069,0.8286889604264757,1,0.8597472788405286,0.5708607101838505
+2,22,0.5467815823462279,2.0,1.3847736543669198,0.0006998316198188454,0.03661175046307512,0.8286618835081089,1,0.8758015662562915,0.5882031861457042
+2,23,0.5815937214432826,2.0,1.384607726259261,0.0007001805940819811,0.0367379345093594,0.8286384226303705,1,0.894856603129995,0.6121702673042817
+2,24,0.6331495802758568,2.0,1.3846322366398982,0.0006991226202772419,0.03645378134062469,0.8286416025445076,1,0.9520460087881456,0.6744372558686617
+2,25,0.6623593198580671,2.0,1.3846529249779582,0.0006994345931679543,0.036599484566726945,0.8286446287545997,1,0.9911638914969546,0.7196458775309507
+2,26,0.6365055029339999,2.0,1.3844005428415582,0.0006997469868433729,0.03672602865270424,0.8286088780890768,1,1.0,0.7216850097799996
+2,27,0.6156442155002152,1.95,1.3841954772824407,0.0007002180791816451,0.03644568202663263,0.817663337749677,1,1.0,0.6854807183340506
+2,28,0.6090288887041648,1.9,1.3852223074267034,0.0007001516570771021,0.03674456003347302,0.8063745338800362,1,1.0,0.6634296290138828
+2,29,0.6652857909866292,1.95,1.3858682401156366,0.0007001459101127489,0.036740425358683874,0.8179125759618046,1,1.0,0.7176193032887637
+2,30,0.6690682616876438,1.95,1.3856597871066403,0.000700341739007836,0.03669746344845036,0.8178815870034474,1,1.0,0.7635608722921459
+2,31,0.6794002358865838,2.0,1.3854496967987506,0.000699831257162497,0.0367283652991187,0.8287578475074823,1,1.0,0.7980007862886126
+2,32,0.6580846679396125,2.0,1.3850485920954583,0.0006993475357622072,0.03673542365272969,0.828700778578145,1,1.0,0.7936155597987082
+2,33,0.6898440897213075,1.95,1.385003209258416,0.0006995737957788945,0.03651441611312913,0.8177835396011299,1,1.0,0.8328136324043581
+2,34,0.7166897676414805,1.95,1.3861905368191938,0.0007001692425685066,0.036743175424696434,0.8179605781539637,1,1.0,0.8889658921382682
+2,35,0.7379919699265549,1.95,1.3861261911954639,0.0007003986405217854,0.036360325225952755,0.8179510651436555,1,1.0,0.9599732330885161
+2,36,0.7048430587164258,1.95,1.385791152768015,0.000700600682902038,0.03674407049509487,0.8179012304055555,1,0.9903281629001606,0.9623726451878718
+2,37,0.74,1.9,1.3855898504146242,0.0007011417020115576,0.03671428090846787,0.8064322227028523,1,1.0,1.0
+2,38,0.7185310638168525,1.9,1.3858179727326332,0.000700575585902924,0.036779199867063406,0.8064676532301414,1,1.0,0.9951035460561749
+2,39,0.75,1.8499999999999999,1.3854576917719594,0.000700926966163574,0.03649881022108782,0.7944334748885007,1,1.0,1.0
+2,40,0.74,1.8499999999999999,1.3850710220768638,0.0007016060505744663,0.03656127783793452,0.7943705429371016,1,1.0,1.0
+2,41,0.74,1.9,1.385174973411155,0.0007007136531921997,0.036581139374862896,0.8063673187923035,1,1.0,1.0
+2,42,0.72,1.95,1.3849652679622704,0.0006999143137793498,0.03646268208991351,0.8177779872490675,1,1.0,1.0
+2,43,0.7026333871226096,1.9,1.3846819440190372,0.0007002943345914037,0.036637576361213495,0.8062901950318454,1,1.0,0.9754446237420318
+2,44,0.75,1.95,1.3856118737699825,0.0007002004595016023,0.03670953910297908,0.81787440805231,1,1.0,1.0
+2,45,0.72,1.95,1.3854160627354735,0.0007006151667268729,0.036757863870407345,0.8178453625971368,1,1.0,1.0
+2,46,0.7033093862918709,1.9,1.3850437184345585,0.0007010677684089206,0.03666195854418318,0.8063469345300466,1,1.0,0.9776979543062362
+2,47,0.72,1.95,1.385763963765704,0.000700684975739584,0.03664035617154624,0.8178972059823492,1,1.0,1.0
+2,48,0.75,2.0,1.3852593802375446,0.0007009313145520824,0.036779803308466724,0.828731148694295,1,1.0,1.0
+2,49,0.72,2.0,1.3850540188972005,0.0007017257506999617,0.036548643424728154,0.8287022241420784,1,1.0,1.0
+3,0,0.0801158561877828,1.95,1.3862943611198846,0.0007001722195526521,0.03633489525742446,0.8179760380796509,0,0.19650200784608118,0.1717168434978345
+3,1,0.17255209663316076,1.9,1.3862943611198846,0.0007001722195526523,0.0367432071699947,0.8065418700441696,0,0.23822652011954443,0.19087162861780999
+3,2,0.22554813692427222,1.9,1.3862943611198846,0.0007001722195526523,0.03670535651091443,0.8065418700441696,0,0.32525288165611693,0.15148994753941816
+3,3,0.25133887711380765,1.9,1.3862818646891746,0.0007001720403380289,0.03645464992309363,0.8065399201366734,0,0.406719151331212,0.16217072193774276
+3,4,0.24573778858847023,1.9,1.3862943611198844,0.0007001722195526525,0.036778381983893826,0.8065418700441696,0,0.4286974498296124,0.18086269552208423
+3,5,0.2848396856921421,1.95,1.3862795220870692,0.0007001723529354186,0.036643670209743684,0.8179738287069608,0,0.4952477163686592,0.1558019971489279
+3,6,0.2556285335588494,1.95,1.3862693183843815,0.000700154437427695,0.03642998107898363,0.8179723041107478,0,0.5033466276118369,0.18096627504704885
+3,7,0.3440509659776223,1.9,1.3862750625962201,0.0007001678577016235,0.036770291347834536,0.8065388574763374,0,0.617355510474465,0.15702920595945438
+3,8,0.286843270075026,1.9,1.3862943611198844,0.0007001722195526525,0.03656093887374286,0.8065418700441696,0,0.5883612931739216,0.17166250935152458
+3,9,0.37643802272088506,1.8499999999999999,1.3862926888159208,0.0007001737148227538,0.036636898044092675,0.7945695579323364,0,0.7059988838695154,0.1467948972435963
+3,10,0.3580871397072399,1.8499999999999999,1.3862683601419603,0.0007001714871540842,0.03671109655469061,0.7945655860369665,0,0.7289436043223045,0.15503232659439348
+3,11,0.3787734596969062,1.9,1.38625095419129,0.0007002304080299324,0.03647093919392229,0.8065351152396325,0,0.7554936190814466,0.1885867068810916
+3,12,0.39403691394295987,1.9,1.386163459396441,0.0007002818695259715,0.03670443149536033,0.8065214785767166,0,0.7775881709847678,0.21000548516350895
+3,13,0.3817616865989488,1.95,1.3862943611198844,0.0007001722195526526,0.036753785905403825,0.8179760380796509,0,0.7808258504250183,0.2314378214298049
+3,14,0.3899027062835046,2.0,1.3862593712391367,0.0007001729558668466,0.036622729309940955,0.82887282145947,0,0.7886904041441885,0.24808848208609735
+3,15,0.43322640042865956,2.0,1.3861542213816826,0.0007001668703728821,0.036435622131668684,0.8288579044809676,0,0.8223029416306222,0.2810174125880354
+3,16,0.4422811755744461,2.0,1.3862943611198846,0.0007001722195526524,0.03668521484534624,0.8288777842514964,0,0.8354013422008529,0.2937354623136829
+3,17,0.43044493973923736,2.0,1.3862485237435396,0.0007001724522046639,0.03677353809864446,0.8288712826733894,0,0.8483846946515059,0.30363687292878316
+3,18,0.4382037398294668,2.0,1.386228581624985,0.000700262593166165,0.03647731276441573,0.8288684795635516,0,0.8655951841515647,0.30655222056280323
+3,19,0.5051435212627722,2.0,1.3861158764661894,0.0007003447471805831,0.03668041366592027,0.8288525155568697,0,0.9370243206482328,0.30111264334493
+3,20,0.5054315487134239,2.0,1.3861609178885317,0.0007001702125634405,0.036771478814745635,0.8288588553431625,0,0.9800030382600528,0.3114344446980094
+3,21,0.4912900150955099,2.0,1.3861061915071065,0.0007003203722807989,0.03647503733877073,0.8288511347672186,0,1.0,0.3043000503183663
+3,22,0.5150074018329907,2.0,1.385958496214932,0.0007004681591632326,0.036646598279483474,0.8288302240819542,0,1.0,0.316691339443302
+3,23,0.5412249360943253,2.0,1.3858032495199506,0.0007007359057613408,0.036781011636139845,0.8288082739813367,0,1.0,0.30408312031441753
+3,24,0.4950948581013409,2.0,1.3860721258417759,0.0007004689254623078,0.03652264864192638,0.828846344409878,0,1.0,0.3169828603378029
+3,25,0.49997370168652194,1.95,1.3859007055404768,0.0007006648632907214,0.03666000854707555,0.8179175656131795,0,1.0,0.3332456722884064
+3,26,0.5454156585282002,2.0,1.385592946793765,0.0007008684728348057,0.03644995818297518,0.8287784707144374,0,1.0,0.3513855284273339
+3,27,0.503684061076152,2.0,1.385818134642749,0.0007004502528562801,0.03650195427259944,0.8288103048894043,0,1.0,0.34561353692050684
+3,28,0.5009612628524708,1.95,1.3854616610877857,0.0007005563484449627,0.03660390590916782,0.8178521379581429,0,0.9985625990789841,0.3384540774029236
+3,29,0.5083836669219266,2.0,1.3849481584117305,0.0007006467889127835,0.03647208169502831,0.8286868898608157,0,1.0,0.36127888973975525
+3,30,0.5077060188062571,2.0,1.384365264620898,0.0007006972856670813,0.03653622009279141,0.8286041378737254,0,1.0,0.3590200626875237
+3,31,0.5362927573601168,2.0,1.3836163089884155,0.0007007368124597815,0.03660096810174385,0.8284977567570851,0,1.0,0.3876425245337228
+3,32,0.5587801596167855,2.0,1.3837314780249346,0.0007020047060594286,0.036753227369467,0.828514480697462,0,1.0,0.36260053205595144
+3,33,0.5450308324430255,2.0,1.3844101160547277,0.0007012109571349341,0.036506315083411164,0.8286106534482007,0,1.0,0.35010277481008495
+3,34,0.5440697448621713,2.0,1.384847903086977,0.000700574025706419,0.03655033568355974,0.8286726359907932,0,1.0,0.3468991495405709
+3,35,0.5469841688212584,2.0,1.3849641473341965,0.0007000343807832643,0.036749956873251985,0.8286889858359255,0,1.0,0.32328056273752787
+3,36,0.5233987697307034,2.0,1.3854272811139385,0.0006998708942949638,0.0365598786944191,0.8287546775392897,0,1.0,0.3446625657690111
+3,37,0.5078159922215789,1.95,1.3856145288425032,0.0007004239549958493,0.03659113691267998,0.8178748701223942,0,1.0,0.3593866407385962
+3,38,0.5510216846938353,2.0,1.3851325031955581,0.0007004969402866405,0.036331268254224114,0.8287130162278185,0,1.0,0.37007228231278416
+3,39,0.5508477566936262,2.0,1.3852450560119913,0.0007000013443358762,0.036552235158023264,0.8287288515690113,0,1.0,0.36949252231208723
+3,40,0.552509083433898,2.0,1.3850977994863298,0.0006995823504414448,0.03651690856281796,0.8287078304040522,0,1.0,0.3416969447796598
+3,41,0.5414322014937846,2.0,1.3855661891281985,0.0006996874929905283,0.03675631568645296,0.8287743384626893,0,1.0,0.3381073383126151
+3,42,0.5454280255993762,2.0,1.3853240304310355,0.000699494668583406,0.03656812687062956,0.8287399168721409,0,1.0,0.35142675199792067
+3,43,0.5504688839564833,2.0,1.3849530390704656,0.0006993197447993874,0.03651486804886195,0.8286872059555073,0,1.0,0.3348962798549443
+3,44,0.5008637163662257,2.0,1.3852747930798586,0.0006998087251118776,0.03675402853958173,0.8287330176494683,0,1.0,0.3362123878874191
+3,45,0.5428024444833709,1.95,1.3850250665677482,0.0006994389779588628,0.036599674594094606,0.8177867564365081,0,1.0,0.3426748149445695
+3,46,0.5469113625504801,1.95,1.3845905823179128,0.0006993452813771083,0.03658264169995336,0.8177219763820829,0,1.0,0.32303787516826693
+3,47,0.4998557461105516,2.0,1.3847840641154736,0.0006999391888854349,0.03645378152329822,0.82866339203877,0,1.0,0.3328524870351719
+3,48,0.4960834250774321,1.95,1.3845464604706739,0.00069942293519606,0.03656387530081406,0.8177154229570909,0,0.9948111177024961,0.3271965933214455
+3,49,0.5340643391942363,2.0,1.3841216046594331,0.0006988972378994432,0.036560767731344125,0.8285690193151979,0,1.0,0.31354779731412097
+4,0,0.14139891794543563,2.0,1.3862928661589993,0.0007001719671972415,0.0363338218902678,0.8288775721354448,0,0.13277540361233459,0.227629188335006
+4,1,0.20450158065847512,1.95,1.3862895452297124,0.0007001700562619043,0.03673537291350701,0.8179753203905051,0,0.24060522527342046,0.19419830183035647
+4,2,0.2234932335927504,1.95,1.386276035408621,0.0007001973040269888,0.03672760305348685,0.8179733169956959,0,0.31321873372952086,0.19401913366980675
+4,3,0.264054579965666,2.0,1.3862450935555817,0.0007002192609623684,0.036392359704213,0.8288708094014418,0,0.4065599729320915,0.17143530264276471
+4,4,0.2687837225811101,2.0,1.3862488415442484,0.0007001806104260419,0.03672805076501065,0.8288713300657903,0,0.4523416427834937,0.15949021822570886
+4,5,0.3084527749177677,2.0,1.3862420500693688,0.0007002402188468914,0.0367473070001959,0.8288703836462913,0,0.53791242234021,0.17762601993894572
+4,6,0.2817502431436764,2.0,1.386188287122815,0.0007003014226492404,0.03636935004750159,0.8288627749089386,0,0.5568462585746513,0.19670579904605295
+4,7,0.3590511457798984,1.95,1.3862172395583976,0.0007002173042207926,0.036713407793168396,0.817964568499284,0,0.6398668602700452,0.17701467223960107
+4,8,0.34759577858844726,1.95,1.386040045606673,0.0007003232519051249,0.03667123016013557,0.8179382146477251,0,0.666667564140497,0.20309584310749476
+4,9,0.399445014470101,2.0,1.3861594868943634,0.0007003200689791667,0.03646432558369338,0.8288586948687485,0,0.7369905179798134,0.21549602426058542
+4,10,0.44825452251454995,2.0,1.3862005595638092,0.0007001925828634812,0.036701449900923395,0.8288644848613311,0,0.8422137349873102,0.20456342839875288
+4,11,0.4405487174257421,2.0,1.3842110575658255,0.0006989395212069904,0.03668238591694319,0.8285817370585583,1,0.873727965804542,0.23685843701308412
+4,12,0.43630850507286084,2.0,1.386042984343665,0.0007000344154661577,0.03642291235136557,0.8288420870733113,1,0.9082662776502072,0.21000664670925978
+4,13,0.4831927663184678,2.0,1.3862059077126219,0.0007001093710571674,0.03669163947438843,0.8288652198782152,1,0.9325349854925415,0.2339292404048373
+4,14,0.45682325815332386,2.0,1.386052789927029,0.0007000583819878258,0.03676494564778194,0.8288434849170151,1,0.9735899802691476,0.19129088681888262
+4,15,0.5238242650763429,1.95,1.3862943611198844,0.0007001722195526527,0.036447886326105246,0.8179760380796509,1,1.0,0.24608088358780972
+4,16,0.49846318237273585,1.95,1.3861103414221536,0.0007002013358813956,0.036783099182797804,0.8179486462269312,1,1.0,0.2615439412424527
+4,17,0.5487074320113486,1.9,1.3860458827735138,0.000700029510857997,0.036579990118634886,0.8065030519562747,0,1.0,0.329024773371162
+4,18,0.49991231249753043,1.9,1.3843901806372827,0.0006989743063087724,0.036707733191866355,0.8062442090969183,0,1.0,0.33304104165843473
+4,19,0.4978538548866886,1.8499999999999999,1.383878683651736,0.0006985257482271281,0.03657789105196256,0.7941747038652774,0,1.0,0.32617951628896186
+4,20,0.500418620378209,1.9,1.3831584518944184,0.0006979622203021831,0.03664403327810446,0.8060514061992484,0,1.0,0.33472873459402963
+4,21,0.5454126529116329,1.95,1.3824603836572458,0.0006975195974101361,0.03664244726589617,0.8174037045180137,0,1.0,0.31804217637210935
+4,22,0.540406000968799,1.95,1.3828631852455433,0.0006977751315240704,0.03664895611789784,0.8174638931977916,0,1.0,0.301353336562663
+4,23,0.5386037329894852,2.0,1.3828415365807647,0.0006979759712203487,0.03651906747950189,0.8283868569547294,0,1.0,0.2953457766316172
+4,24,0.49147150882164453,2.0,1.3826659263600374,0.0006981753613762693,0.03650087151540894,0.8283619471001122,0,1.0,0.3049050294054817
+4,25,0.5284744268259584,1.95,1.382031524829748,0.000697495583514076,0.03647201840025759,0.8173396793580237,0,1.0,0.29491475608652773
+4,26,0.5310253294469205,1.95,1.3819900786111163,0.0006979492409159704,0.036356068089530486,0.8173336270031156,0,1.0,0.3034177648230681
+4,27,0.536061164662879,2.0,1.3818017584061888,0.0006983743409324286,0.03653972641068169,0.8282391028023224,0,1.0,0.2868705488762633
+4,28,0.5236701369447626,2.0,1.3816655937402362,0.000698955472466391,0.03652877027750788,0.8282198966320973,0,1.0,0.27890045648254197
+4,29,0.5145617055169217,2.0,1.3813751535881114,0.0006994982114310273,0.03663594689425949,0.8281787257410612,0,1.0,0.31520568505640556
+4,30,0.5336566765358133,2.0,1.3831718134044961,0.0006995127188483254,0.036477499933966234,0.8284342415393102,0,1.0,0.3121889217860441
+4,31,0.5157588969254209,2.0,1.3828102663941606,0.0006998733216064105,0.03651567109934356,0.8283829509474872,0,1.0,0.31919632308473633
+4,32,0.5282098777804103,2.0,1.384180034902442,0.000699826915544088,0.03672855285169094,0.8285775828247681,0,1.0,0.2940329259347008
+4,33,0.49265361826158666,2.0,1.3837731500204553,0.0007000385374326674,0.03653664709734849,0.8285198426150571,0,1.0,0.3088453942052887
+4,34,0.5363063411294967,1.95,1.3834502061635956,0.0006993062256829749,0.036523762462555634,0.8175519269438691,0,1.0,0.28768780376498887
+4,35,0.5251906389703781,1.95,1.3833425297732846,0.0006999325256541397,0.03648965471912762,0.8175360521524834,0,1.0,0.2839687965679268
+4,36,0.5281422485570484,2.0,1.382907957593617,0.0007002388813385329,0.03666032647351406,0.8283969426685543,0,1.0,0.26047416185682765
+4,37,0.48362704193658895,2.0,1.3828143813404963,0.0007009705757563707,0.03648030522023707,0.82838384792696,0,1.0,0.2787568064552965
+4,38,0.5249491621708796,1.95,1.3825317772689876,0.0007000934377879328,0.03670289869647246,0.817415128402537,0,1.0,0.2831638739029321
+4,39,0.4871472368750198,1.95,1.3819841976027119,0.0007004692627186709,0.036653326228309045,0.8173335014475681,0,1.0,0.2904907895833993
+4,40,0.5267601810995542,1.9,1.3816033016257272,0.00069950559523307,0.03655303685422127,0.805808652910326,0,1.0,0.25586727033184736
+4,41,0.47687972774168236,1.9,1.3812968899254998,0.0007002882122338223,0.03665976355680932,0.8057609457626598,0,1.0,0.25626575913894106
+4,42,0.4787379779912998,1.8499999999999999,1.3808844676792504,0.0006993190251803582,0.03625899570215259,0.7936850942735908,0,1.0,0.2624599266376659
+4,43,0.5179050169774979,1.9,1.380209228885417,0.0006983391610007294,0.03652832239850106,0.8055900485538418,0,1.0,0.259683389924993
+4,44,0.47734680801553847,1.9,1.3799019532786514,0.0006988573876351724,0.03649672561609853,0.8055420825054199,0,1.0,0.25782269338512814
+4,45,0.5210048717817364,1.8499999999999999,1.3793187380804852,0.0006978480096333358,0.03652388401242515,0.7934281074202967,0,1.0,0.2700162392724545
+4,46,0.5192143889995927,1.8499999999999999,1.378559749072814,0.0006982352910548757,0.03627605398281937,0.7933038084656487,0,1.0,0.2640479633319757
+4,47,0.47787373846192327,1.9,1.3778732099397015,0.000698563677254858,0.036511834392817376,0.8052240028303549,0,1.0,0.2595791282064109
+4,48,0.5232781851903918,1.8499999999999999,1.377445047192641,0.0006974408963375818,0.036275950260087585,0.7931207071435565,0,1.0,0.24426061730130602
+4,49,0.4708335683571624,1.8499999999999999,1.377272056203624,0.0006986762044175043,0.03648431396206499,0.7930927267194908,0,1.0,0.2361118945238746
+5,0,0.19479445907257142,1.7999999999999998,1.3862827929860493,0.0007001716840058076,0.03634355836604481,0.7820551368981143,1,0.1626881527389123,0.2657306599233551
+5,1,0.236078810212491,1.7499999999999998,1.3862593780628236,0.0007001789534732532,0.03676513486460587,0.7689975977765632,1,0.2147379387181846,0.33394544908405727
+5,2,0.2221197177534656,1.7499999999999998,1.386103696349195,0.0007000707392681892,0.036621878365991206,0.7689699028236625,1,0.2460815127977029,0.3456237087812814
+5,3,0.2406730755531066,1.7999999999999998,1.3860178316304639,0.000700045823228657,0.036604385065275455,0.7820099293002927,1,0.2872509047808617,0.3525757121358731
+5,4,0.3056169429840926,1.8499999999999999,1.3859049602143259,0.0007000300300698532,0.03677332034753995,0.7945062153213642,1,0.3352781052076004,0.40501900300350824
+5,5,0.34763369898223967,1.8499999999999999,1.3862422316284706,0.000700138122019356,0.036557602964666785,0.7945613101251126,1,0.3926622012449277,0.4685627282808955
+5,6,0.33161497194646283,1.8499999999999999,1.3862536282544111,0.000700155271174134,0.036650902830009276,0.7945631760301418,1,0.42274217127915853,0.47506034478266457
+5,7,0.3327166440437883,1.9,1.386078361823006,0.0007004693763732303,0.036775306963019096,0.8065082577368688,1,0.4687749808696683,0.4506888389864032
+5,8,0.3899775071109916,1.95,1.3859643340399328,0.0007005777185255599,0.03657645731190186,0.8179270155578608,1,0.523499337657994,0.4685925734926467
+5,9,0.38062322093446854,1.95,1.3858488194257208,0.000700785385943395,0.0364982736221972,0.8179098740682244,1,0.5319576233950107,0.49280057192154736
+5,10,0.3899485210196758,2.0,1.3859797839915458,0.000700526593543347,0.03677955239468085,0.8288332607522547,1,0.5482370565165289,0.5021789947102141
+5,11,0.45326382088495115,2.0,1.3860039494995655,0.0007002908104713585,0.036755322189521836,0.8288366221544795,1,0.5913344223832582,0.5557668397721597
+5,12,0.4351803667416895,2.0,1.386218034052082,0.0007002298135882258,0.036416899765461135,0.828866974133028,2,0.6215389812399748,0.555215914152332
+5,13,0.40934565916761345,2.0,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8288777842514964,2,0.6407214617449136,0.51019024823216
+5,14,0.4824871336019146,1.95,1.386255118383679,0.000700170995926118,0.03676775834370116,0.8179701947427345,2,0.6678111763147413,0.55120887692006
+5,15,0.5129233841906469,1.95,1.3862233916517896,0.0007001258919048167,0.03655189421103734,0.8179654573129593,2,0.7141224672061868,0.590914657693907
+5,16,0.5078492603924003,1.95,1.3860643193073818,0.0007000730194180472,0.036778350740385844,0.8179417548193,2,0.741199638079988,0.6045646838680169
+5,17,0.475711709387744,2.0,1.3862943611198846,0.0007001722195526523,0.036593325623223386,0.8288777842514964,2,0.771149676777222,0.5575061289228507
+5,18,0.5571723369276427,1.95,1.3861256589743967,0.0007000551466678936,0.03646221182886737,0.8179508835947175,2,0.8186156253369867,0.5990869559761599
+5,19,0.5062047701436432,1.95,1.3862943611198844,0.0007001722195526525,0.036787772382363006,0.8179760380796509,2,0.8422922352404796,0.5642929201581709
+5,20,0.5526534401395979,1.9,1.3862327164338395,0.0007001716767306605,0.0365614619847633,0.8065322511443066,2,0.8746385302772322,0.5759934267623501
+5,21,0.6399342572613465,1.9,1.3861917462870177,0.0007003102095021222,0.036787945071792685,0.80652590139894,2,0.9363987393348048,0.6179158717580818
+5,22,0.5552824990237092,1.9,1.3807369131589422,0.00069826955431255,0.03652904082335629,0.8056726565575377,2,0.961463587242797,0.5689902137553011
+5,23,0.600150437432104,1.8499999999999999,1.3860595362419224,0.0007000069778898201,0.036620131238633315,0.7945314436693927,2,0.9845374902709387,0.5877848044124282
+5,24,0.6636688697031929,1.8499999999999999,1.38593569540814,0.00069998365346456,0.036502082846851,0.7945112181476552,2,1.0,0.6122295656773099
+5,25,0.6699620430052261,1.8499999999999999,1.3807310520111553,0.0006977768275332389,0.036501785273931754,0.7936594663566242,1,1.0,0.6332068100174206
+5,26,0.6127704672509049,1.9,1.3846647220684063,0.0006992272146639334,0.03669452075549712,0.8062871718418301,1,1.0,0.642568224169683
+5,27,0.6608355787680839,1.8499999999999999,1.3844423579308445,0.00069941801923,0.03670046694066511,0.7942671190922331,1,1.0,0.7027852625602794
+5,28,0.6335259219652243,1.8499999999999999,1.384296206754487,0.000699903521269658,0.036709422810007504,0.7942433946422579,1,1.0,0.7117530732174142
+5,29,0.6389371947050494,1.7999999999999998,1.383904425347218,0.000700289454534687,0.036609987945755075,0.7816495245319556,1,1.0,0.7297906490168311
+5,30,0.6746193529477889,1.8499999999999999,1.3832257356641149,0.0007006361460938911,0.03671416142304052,0.7940686418746722,1,1.0,0.7820645098259629
+5,31,0.6572478695285171,1.8499999999999999,1.3828954886026934,0.0006994490499183069,0.0366751405254751,0.7940142451183198,1,1.0,0.7908262317617236
+5,32,0.6610416448185925,1.9,1.38215288552025,0.0006996860597871623,0.03645902742880109,0.8058946943911187,1,1.0,0.8034721493953083
+5,33,0.7091644416633369,1.95,1.3847529043517084,0.0007020220561619658,0.03667427924215126,0.8177469675567305,1,1.0,0.8638814722111231
+5,34,0.6796373716563897,1.95,1.3843082271174632,0.0007028030417658708,0.0367607261851283,0.8176809177486322,1,1.0,0.865457905521299
+5,35,0.708907156955332,1.9,1.3836767650091937,0.0007035482142673594,0.03643502672595702,0.8061341685349908,1,1.0,0.8963571898511068
+5,36,0.7404555273233684,1.9,1.3841216807237755,0.0007023151861223211,0.036527881512510754,0.8062033060296185,1,1.0,0.9681850910778946
+5,37,0.7120468859551119,1.9,1.3835295421842382,0.0007032582563429947,0.03657482420712764,0.8061110686009689,1,1.0,0.9734896198503727
+5,38,0.74,1.8499999999999999,1.382809708459316,0.000704177416506812,0.036772062957203706,0.7940017617152403,1,1.0,1.0
+5,39,0.6997253599361122,1.8499999999999999,1.3830512840043923,0.0007026245717491719,0.0367592794746389,0.7940407638170224,1,1.0,0.9657511997870404
+5,40,0.75,1.7999999999999998,1.3845435758519922,0.0007018305097353751,0.036548588619472674,0.781759116822,1,1.0,1.0
+5,41,0.7026258162640042,1.7999999999999998,1.3839285583741556,0.0007027477059661886,0.036674172179032995,0.7816544824776317,1,1.0,0.9754193875466804
+5,42,0.75,1.7499999999999998,1.3849885773536967,0.00070187819563209,0.03659844951985987,0.7687723793216071,1,1.0,1.0
+5,43,0.75,1.7499999999999998,1.3842089076436066,0.0007025343568919931,0.03650116663259984,0.7686339884718643,1,1.0,1.0
+5,44,0.75,1.7999999999999998,1.383140047603681,0.0007030718154429593,0.036763311925617416,0.7815199875449533,1,1.0,1.0
+5,45,0.74,1.8499999999999999,1.3818584160992293,0.0007034695286533138,0.03665083998208764,0.7938458903011585,1,1.0,1.0
+5,46,0.7050066362648927,1.9,1.3827155163809246,0.0007017805973071441,0.03632983247569558,0.8059833457737346,1,1.0,0.9833554542163089
+5,47,0.7179962867022243,1.8499999999999999,1.383978447940881,0.000700890421202244,0.036595060209104406,0.7941917839997705,1,1.0,0.9933209556740809
+5,48,0.74,1.9,1.3839370030680933,0.000702378928518169,0.03664679848851686,0.8061744703672472,1,1.0,1.0
+5,49,0.7197756255143303,1.9,1.3844286408261195,0.0007011955796467828,0.0367668198499041,0.8062509110375697,1,1.0,0.9992520850477675
+6,0,0.1091574195244549,1.8499999999999999,1.3862740183455984,0.0007001609302773419,0.036342948096725905,0.7945665061839087,0,0.1070014683940082,0.2211894405561721
+6,1,0.16943261461320566,1.7999999999999998,1.3862791636001925,0.0007001624076119458,0.036757606426871155,0.7820545151249381,1,0.16123271228913846,0.21646509899183428
+6,2,0.04348379036960209,1.7999999999999998,1.3861799907301808,0.0007001836800318997,0.03664829871702946,0.7820376183594098,1,0.19548272547648804,0.1843023339300229
+6,3,0.19298905849087133,1.7499999999999998,1.3862884118338754,0.0007001702500533057,0.036571007353944654,0.7690027522117534,1,0.2286505385433226,0.2050961435784743
+6,4,0.2078944028727455,1.7499999999999998,1.3859498905505054,0.0007001698536235439,0.03676520147020587,0.7689426125139537,1,0.25252784219222385,0.22294421998618644
+6,5,0.19995788390316846,1.7999999999999998,1.3859213193765316,0.0007000528126714994,0.036404327628827025,0.7819934787531041,1,0.27539739756323306,0.23266308292625082
+6,6,0.23582125906171608,1.8499999999999999,1.385828300236287,0.0007000442150428924,0.036710990669526794,0.7944937036960442,1,0.2939353070845089,0.2608237874263751
+6,7,0.22262030345707826,1.8499999999999999,1.3857794612761405,0.0006999216825961519,0.036759350298414595,0.794485689461676,1,0.3046713687488426,0.2691725198584707
+6,8,0.24375802107636543,1.9,1.3856557967002505,0.0006998919282723312,0.03639231485127542,0.8064421265012591,0,0.3313640414125137,0.3040413483711998
+6,9,0.2560069651890128,1.9,1.3862943611198846,0.0007001722195526524,0.0366359785673994,0.8065418700441696,0,0.3586521862709988,0.3084869689353774
+6,10,0.32380437522984756,1.95,1.3862782530220563,0.0007001725891500446,0.036780268826242093,0.8179736398227804,0,0.46372532562669266,0.29438081659723514
+6,11,0.3164701819188105,1.95,1.3862943611198846,0.0007001722195526527,0.036654967538210355,0.8179760380796509,0,0.4967167821615589,0.3259448968472896
+6,12,0.29807440235177773,2.0,1.386270342811823,0.0007001717994307096,0.03651899116452455,0.8288743773629275,0,0.4997088333345718,0.32730289672649676
+6,13,0.3227689396580516,2.0,1.3862617467413634,0.0007002171177801551,0.036699727142833295,0.828873170934846,0,0.500427931608888,0.3419925567149879
+6,14,0.3641799520234124,2.0,1.3862056366970275,0.0007002616846096157,0.03676499253132464,0.8288652246459295,0,0.5658345117335091,0.32615382443336266
+6,15,0.4073459667185641,2.0,1.3862284189996537,0.0007001746842568261,0.036440681864450465,0.8288684315569005,0,0.6580684255329523,0.3137286550179439
+6,16,0.4235177424241639,2.0,1.3862069991364112,0.0007001340070445747,0.03668613398187745,0.8288653816831876,0,0.72524497423534,0.31139917576675985
+6,17,0.4103122492153116,2.0,1.386217969783375,0.0007002350370990277,0.03676996689306236,0.8288669664986095,0,0.7297859282316792,0.32799292640879985
+6,18,0.46828468536724155,2.0,1.3862777939557704,0.0007001836553810909,0.036464781447401666,0.8288754376061626,0,0.8261690458594135,0.29272355674492045
+6,19,0.42581996481634365,2.0,1.3786358751670191,0.0007004751632931904,0.036477619219007364,0.8277888579680149,0,0.8395359149218486,0.30001866282534717
+6,20,0.48991599470742603,1.95,1.3781921795283898,0.0006993426919203613,0.03657066135516708,0.8167663366322029,0,0.9021291634665778,0.2968810977359829
+6,21,0.5079274209172208,1.95,1.3773663558934712,0.0006997851718569413,0.03641362706481825,0.8166428447994654,0,0.9529273799830483,0.2891882297466713
+6,22,0.4726724621306393,2.0,1.3765817172603794,0.0007001879890133805,0.03649924584199073,0.827495749400623,1,0.9578567793101328,0.29843250135528726
+6,23,0.4971412227769409,1.95,1.3861809998042562,0.0007001748062758931,0.036777882446416145,0.8179591597348157,1,1.0,0.2904707425898028
+6,24,0.528170387935034,1.95,1.386288171361587,0.0007001714746061075,0.036653670229498184,0.8179751162552208,1,1.0,0.2939012931167798
+6,25,0.5526847680175303,1.95,1.3862127497610766,0.0007001390715497943,0.036776333709999255,0.8179638766765667,1,1.0,0.34228256005843405
+6,26,0.5048927772158751,1.95,1.3861418929717926,0.0007000703015662905,0.03647044918155668,0.8179533054552167,1,1.0,0.31630925738625043
+6,27,0.5386631916335589,1.9,1.3862002313376882,0.0007001324789089064,0.03668001693076149,0.8065271699521387,1,1.0,0.3288773054451961
+6,28,0.5623885674582592,1.9,1.3860777619789422,0.0007001654679599189,0.036370519973259074,0.8065080692780711,1,1.0,0.3746285581941968
+6,29,0.5845584826452842,1.9,1.3859411489030145,0.0006999437193860425,0.03672807279653581,0.8064866803171147,1,1.0,0.4485282754842806
+6,30,0.5611101883804143,1.9,1.384154243567271,0.0006994442247615928,0.03663391710290461,0.8062074964834035,1,1.0,0.47036729460138077
+6,31,0.5429080187249429,1.8499999999999999,1.3838546310728161,0.0006997531200629691,0.03647871217030254,0.7941711734338378,1,1.0,0.44302672908314294
+6,32,0.5790386817632979,1.9,1.384913131429062,0.0006997991246594957,0.03652568146452666,0.8063261461168265,1,1.0,0.463462272544326
+6,33,0.5399065043987986,1.9,1.384564760692812,0.0006992327426387797,0.03659417576520089,0.8062715603065665,1,1.0,0.4330216813293285
+6,34,0.530802263033064,1.8499999999999999,1.385373662142707,0.0006995615926465082,0.03651545387538974,0.7944193057824381,1,1.0,0.4026742101102132
+6,35,0.5418091941050032,1.9,1.3858112328844443,0.0006998554780939441,0.03643179841857298,0.8064663765023977,1,1.0,0.40603064701667696
+6,36,0.5465700601867791,1.95,1.3856373355872942,0.0006997250995132591,0.036558079946200715,0.8178780590954633,1,1.0,0.42190020062259714
+6,37,0.5770999174512247,2.0,1.3853345228193756,0.0006995840187034451,0.036690066419257775,0.8287414314151457,1,1.0,0.45699972483741536
+6,38,0.5395526369795366,2.0,1.3850522633157918,0.0006993151066384574,0.03675550678992586,0.8287012905215465,1,1.0,0.4318421232651219
+6,39,0.5782682482187551,1.95,1.385432933084026,0.0006996288056303785,0.03656909653991504,0.8178475819504659,1,1.0,0.4608941607291835
+6,40,0.5403545869628748,1.95,1.3850176980104316,0.0006995127980404192,0.03665065153797474,0.8177856804337835,1,1.0,0.4345152898762491
+6,41,0.5797944794320956,1.9,1.3852203962542067,0.0007000537594390563,0.03641979225598801,0.8063742049091586,1,1.0,0.4659815981069852
+6,42,0.5899344487776359,1.9,1.3846872825626875,0.0007001099183302918,0.036453357799942986,0.8062909712315387,0,1.0,0.4997814959254526
+6,43,0.5932041567870963,1.95,1.3862943611198846,0.0007001722195526526,0.0367411197041468,0.8179760380796509,0,1.0,0.510680522623654
+6,44,0.595516497488339,2.0,1.386209585067098,0.0007001710473835288,0.03647731797253908,0.8288657589989811,0,1.0,0.5183883249611297
+6,45,0.6026631438255412,2.0,1.385959567215085,0.0007001631390559241,0.036626954160400085,0.8288302894786459,0,1.0,0.508877146085137
+6,46,0.5977355451950481,2.0,1.3859744954815088,0.0007005386199851384,0.03655261269267224,0.8288325138893397,0,1.0,0.49245181731682686
+6,47,0.5872199431571938,2.0,1.385780871577745,0.000700869765584986,0.0367871995269961,0.8288051368469719,0,1.0,0.49073314385731254
+6,48,0.576627207866257,2.0,1.3854867486631735,0.0007012216783122732,0.03661859532088311,0.8287635004225891,0,1.0,0.5220906928875232
+6,49,0.5609765391613862,2.0,1.3857315793284999,0.0007007148732256164,0.03649334259962077,0.8287980988393678,0,1.0,0.5365884638712874
+7,0,0.105015737615397,2.0,1.386288228632041,0.0007001799742349331,0.036332453169537635,0.8288769166211752,0,0.09907321342017694,0.2179548408244207
+7,1,0.18828650505992067,1.95,1.3862903934376163,0.0007001731819282968,0.03673412635029168,0.8179754476123552,0,0.18280838209326639,0.21721050740871378
+7,2,0.203074848374209,1.95,1.3862747652269374,0.0007001777505480927,0.036726404019569954,0.8179731220517407,0,0.24757472662366733,0.21348319241580682
+7,3,0.22935393233089188,2.0,1.3862669855245073,0.0007001545269853262,0.03638440931789878,0.8288738962593347,0,0.31387967460462785,0.21267354163013572
+7,4,0.26659025063021574,2.0,1.3862752450144296,0.0007001758984976185,0.036726917291694965,0.828875073861116,0,0.41481241301156024,0.16888428475197212
+7,5,0.24247248730460438,2.0,1.3861599633561905,0.0007002999180622618,0.03674464344630761,0.8288587567388891,0,0.4307678460317499,0.16721782963968151
+7,6,0.28587003350567064,1.95,1.3862334568707706,0.0007002453804827247,0.03637313927639644,0.8179669915817988,0,0.48791269323975883,0.1690165206992236
+7,7,0.2516071329479353,1.95,1.3861862394586302,0.0007003152483861846,0.03676728529465949,0.81795998175246,0,0.49112803108105435,0.18385306838504517
+7,8,0.2922399074783243,1.9,1.3862149360633924,0.0007002315498152874,0.036684509367770256,0.8065294954012681,0,0.5248547738352042,0.20765999314747527
+7,9,0.3580348013564287,1.9,1.3862773350357622,0.0007001595615190295,0.036634745886290634,0.8065392094647919,0,0.6214926416302337,0.19812581568111737
+7,10,0.32313976134448474,1.9,1.3858529389185272,0.0007003651519419035,0.036776885905642105,0.8064730449226026,0,0.6473594644244383,0.2139865852490313
+7,11,0.4092341090637811,1.8499999999999999,1.3855188230779716,0.0007002386984917916,0.0364279023504429,0.7944432332044044,0,0.7458540140316977,0.23630834483700686
+7,12,0.41273442290508505,1.8499999999999999,1.3855603079103365,0.0007007230208436258,0.036770320760408995,0.7944501659056536,0,0.7850901043944806,0.2623279371576425
+7,13,0.4328110274349606,1.9,1.3856990332756174,0.0007003852382120102,0.036611762510943,0.8064490293487936,0,0.816623227375702,0.2872057882822657
+7,14,0.49870548802524634,1.9,1.376739101539603,0.0007015830569802178,0.03638413376986581,0.8050470173767121,0,0.9188109259922184,0.2706037254278633
+7,15,0.5268161850734983,1.9,1.3765503417085376,0.0007032624211220375,0.036555755628304695,0.8050179177107487,0,1.0,0.2560539502449941
+7,16,0.5204973078610995,1.9,1.3761260157393158,0.0007048345631377988,0.03648926340621418,0.8049517988261033,0,1.0,0.26832435953699807
+7,17,0.5208264971275453,1.95,1.375251478534219,0.0007056395730281324,0.03648155515311004,0.8163277122523316,0,1.0,0.23608832375848393
+7,18,0.47060569976321465,2.0,1.3749602831977505,0.0007070937438435948,0.0364311416757551,0.8272661460186743,0,0.9996283024005418,0.23584792934332635
+7,19,0.516171007291086,1.95,1.3750540479877869,0.0007049733206273605,0.03644195392329288,0.8162979084869609,0,1.0,0.22057002430362005
+7,20,0.49260232383125474,1.95,1.3741774308264065,0.0007064271075667033,0.03642731878984551,0.8161668546038998,0,1.0,0.2420077461041824
+7,21,0.4990980709470507,1.9,1.3776470656891435,0.0007050089844730364,0.036548310903278036,0.8051905543138287,0,1.0,0.263660236490169
+7,22,0.5255821024035107,1.95,1.380178398640635,0.0007039823653605754,0.036425189920836536,0.8170647923567423,0,1.0,0.25194034134503523
+7,23,0.48087680995173343,1.95,1.3797559525237386,0.0007047518586505109,0.03644715064335749,0.8170018710064916,1,0.9980441534749626,0.2721971618724947
+7,24,0.5325727144247182,1.9,1.3856172846143535,0.0006997096003737763,0.03662626280047355,0.8064360580330485,1,1.0,0.3085757147490605
+7,25,0.5406786250045592,1.9,1.3854243520974598,0.0006995866000964474,0.03643941826089879,0.8064059016720815,1,1.0,0.335595416681864
+7,26,0.5012178877158077,1.95,1.3850973582333281,0.0006994559461028665,0.03665967061934476,0.8177975335408243,1,1.0,0.3040596257193589
+7,27,0.5621029474770729,1.9,1.385320163936441,0.0006999012452355206,0.036668020250532694,0.8063897340221247,1,1.0,0.3736764915902428
+7,28,0.559162819667612,1.9,1.3849871660262827,0.0006994199590835854,0.03646404313276018,0.8063375889961956,1,1.0,0.39720939889204004
+7,29,0.5862617589848558,1.95,1.3846090557853628,0.0006994063046987921,0.036674726240455105,0.817724748078141,1,1.0,0.4542058632828523
+7,30,0.5354238499915828,1.95,1.3847141465718045,0.0007001100106900265,0.036651866834332726,0.8177406212023434,1,1.0,0.4180794999719424
+7,31,0.5246561728941171,1.9,1.38474326118966,0.0007008422123904918,0.03675000016386791,0.8062999428905414,1,1.0,0.38218724298039036
+7,32,0.5386273383343091,1.95,1.384048066045173,0.0006987342645964117,0.036713795784693845,0.8176409166928926,1,1.0,0.39542446111436347
+7,33,0.5195842470580333,2.0,1.3849073036803303,0.0006991936561474873,0.03667404353874555,0.8286806772446591,1,1.0,0.3652808235267776
+7,34,0.5303645866431853,2.0,1.3852191991026963,0.0006995022771746692,0.03657988150089705,0.8287250398018469,1,1.0,0.3678819554772843
+7,35,0.5356491338609659,2.0,1.3857224751400163,0.0006997678509231809,0.03676579244438976,0.8287965382745226,1,1.0,0.3854971128698861
+7,36,0.5819644607299483,2.0,1.3859543930228015,0.0007000469518534602,0.036579278973122145,0.828829522444202,1,1.0,0.4398815357664942
+7,37,0.5985762899468743,2.0,1.3846435560057189,0.0007013446640585768,0.0365383216030177,0.8286438408596999,1,1.0,0.495254299822914
+7,38,0.5748229477965053,2.0,1.385466269439073,0.0007009337283476303,0.036784149930551006,0.8287605123732263,1,1.0,0.5160764926550175
+7,39,0.6077163056670271,1.95,1.3854724682893098,0.0007003723062223815,0.036592916542192835,0.8178536930684462,1,1.0,0.5590543522234234
+7,40,0.5890554438725755,1.95,1.38504225551925,0.0007005838056654398,0.036666306506586685,0.8177896589564838,1,1.0,0.563518146241918
+7,41,0.5893358258957445,2.0,1.384890551891323,0.0006999345222635364,0.03644289647811198,0.8286785093588989,1,1.0,0.5644527529858149
+7,42,0.6188519791131003,2.0,1.3845904504966937,0.0006993469856684008,0.036539752488405866,0.8286357327714116,1,1.0,0.5961732637103342
+7,43,0.6068371649015425,2.0,1.3841320808989752,0.0006993972723171667,0.03648755968588152,0.8285706494314309,1,1.0,0.6227905496718081
+7,44,0.6051019906922376,2.0,1.3818196108481489,0.0006998222835349276,0.03668040527928908,0.8282420544203909,1,1.0,0.6170066356407917
+7,45,0.5883151778871284,2.0,1.3808437867055146,0.0006999712696242258,0.03648829232545006,0.8281032344036424,1,1.0,0.594383926290428
+7,46,0.597795196957006,2.0,1.3836631073982701,0.0006986940755150836,0.036443944673336094,0.8285038257198477,1,1.0,0.5926506565233534
+7,47,0.582838617888924,2.0,1.383048509242744,0.0006980559413024717,0.03665799200679269,0.8284163013517638,1,1.0,0.5761287262964133
+7,48,0.6362387764556746,2.0,1.3832979657152347,0.0006985979806183788,0.03651527098120801,0.8284519109402291,1,1.0,0.620795921518915
+7,49,0.6536155578430773,2.0,1.3825861073226242,0.0006996031653381833,0.036476769374747864,0.8283510042838695,1,1.0,0.678718526143591
+8,0,0.08011148170943286,2.0,1.3862688121570625,0.0007002033959215904,0.03633648909855731,0.828874169215636,1,0.19390529155835573,0.17516455028696848
+8,1,0.15698767245711923,1.95,1.386267605810853,0.0007001925024826125,0.036732306671126855,0.8179720604546465,1,0.20500589581164402,0.18328438044153872
+8,2,0.15850744357763624,1.95,1.3862264478744823,0.000700143088611988,0.03672090583574894,0.8179659174989652,1,0.25217633349093255,0.1587897006042107
+8,3,0.1563315870768981,2.0,1.3862157256805436,0.0007001229238683875,0.03638027055504615,0.828866616374409,1,0.2752255633106646,0.12080453917544082
+8,4,0.2335721361212973,2.0,1.3861936731204727,0.0007001009880653185,0.03672197321087991,0.8288634820446428,1,0.32775175554049274,0.17490477968366738
+8,5,0.2197063620430218,2.0,1.3861402716590574,0.0007000718176038741,0.036744863376612355,0.828855898701968,1,0.3589468256207146,0.18709210598245316
+8,6,0.28734157366756347,2.0,1.3861833141713005,0.0007001400811249897,0.036384081149931545,0.8288620237257055,1,0.3995542957410875,0.2583995179037616
+8,7,0.25609675041279595,2.0,1.385693845540661,0.0006999206373855948,0.036709184824039856,0.8287925192606455,1,0.3896042679424402,0.26751681078606615
+8,8,0.254885016467764,1.95,1.385530471351075,0.0006998852365819669,0.036728852238474635,0.8178621884577024,1,0.4373848417541201,0.23310359922038662
+8,9,0.30129169881299595,2.0,1.3858891274343392,0.0007003334529367475,0.03648779501818475,0.828820344237657,1,0.45435435394174817,0.2651665241209889
+8,10,0.2915879649184478,2.0,1.3858715862274724,0.0007005364912081773,0.03671168044628744,0.8288179131399693,0,0.46420128650188663,0.2863581677256437
+8,11,0.3378165273537744,2.0,1.3862215148516632,0.0007001502597269603,0.036759735919490485,0.8288674453029218,0,0.530567026013089,0.28529905649512927
+8,12,0.3066303551930203,2.0,1.3862254005309276,0.0007002299616559523,0.03641780491538757,0.8288680190818419,0,0.5509189059206708,0.28754264274917307
+8,13,0.3764943262414689,1.95,1.3862755218966427,0.0007001907928016095,0.03669418925233968,0.8179732385984079,0,0.6200309565415852,0.2949398120827827
+8,14,0.3421486402719642,1.95,1.3852820147951912,0.0006994790735902689,0.03659056385619971,0.8178250535182996,0,0.6206523966584051,0.31295893869534036
+8,15,0.34871687070744917,1.9,1.3856375392465365,0.0006997238142272739,0.03652756868541106,0.8064392241369998,0,0.6228392155034236,0.33193728168693243
+8,16,0.35167502588950816,1.95,1.3858237813379883,0.000699936461903397,0.03669524736602472,0.8179058921629109,0,0.6186466954859461,0.34738782565043236
+8,17,0.3545711849268347,2.0,1.3859084182873387,0.0007001439637717822,0.03659033722575728,0.8288230273844411,0,0.6211294389192664,0.3537313645304271
+8,18,0.42009924162651796,2.0,1.3858948047323991,0.0007003314841586507,0.03647775147325771,0.8288211491565517,0,0.6799555337052124,0.3603900938147766
+8,19,0.41590485245142184,2.0,1.3861503631083507,0.0007002534104623983,0.03667637905362754,0.828857381726551,0,0.700498419022209,0.3856849494751275
+8,20,0.4589589485962123,2.0,1.3860018996988634,0.0007003224075874208,0.036772583384963524,0.8288363403214364,0,0.7576742409228696,0.3862975074235482
+8,21,0.5078437435247081,2.0,1.3861524825676241,0.0007001962679747893,0.036476295249999235,0.8288576661659972,0,0.8637858398133538,0.37443135866455507
+8,22,0.4650820035847896,2.0,1.3798733285197335,0.0007054301017725289,0.03663460906279912,0.8279666024676187,0,0.8658062022519776,0.3958650756133287
+8,23,0.5474799036693788,1.95,1.3798979323119736,0.0007039533439775487,0.03668390975407813,0.8170228586726116,0,0.9652909703996255,0.37121171836509537
+8,24,0.5492883772158375,1.95,1.379056443670595,0.0007048491223943072,0.03650396664073194,0.8168972934729914,0,1.0,0.36429459071945786
+8,25,0.5517483853329482,2.0,1.3784489931535613,0.0007060420512110452,0.03669016272813057,0.8277638028287778,0,1.0,0.37249461777649395
+8,26,0.5552437409204887,2.0,1.377930401837489,0.0007069220949086532,0.0367111247708657,0.8276901052581329,0,1.0,0.38414580306829543
+8,27,0.5252281930942556,2.0,1.37708846623249,0.0007078614586929477,0.0365107506610303,0.8275702640399478,0,1.0,0.4174273103141853
+8,28,0.5744627703575247,1.95,1.3859948093727197,0.0007005104719777378,0.03664389418979397,0.8179315339453278,0,1.0,0.4148759011917489
+8,29,0.5651885996021413,1.95,1.3858000422105603,0.0007008292326229245,0.036409539003659286,0.8179026224642391,0,1.0,0.41729533200713764
+8,30,0.5500928222118123,2.0,1.3855237181047526,0.0007011657227912547,0.03668637245830895,0.8287687309794657,0,1.0,0.43364274070604086
+8,31,0.5705497041565395,2.0,1.3857271457105733,0.0007006587600326124,0.03659655569849927,0.8287974538203253,0,1.0,0.43516568052179816
+8,32,0.5714758257198038,2.0,1.3853693140366874,0.0007008821233749525,0.036776785818650085,0.8287467377126687,0,1.0,0.4382527523993459
+8,33,0.5751746595204331,2.0,1.3848492687585867,0.0007010870861065099,0.036569329503701856,0.8286729755635756,0,1.0,0.4505821984014434
+8,34,0.5718873278271799,2.0,1.384158908046063,0.0007012713430237168,0.03660890786751123,0.828574992342394,1,1.0,0.43962442609059926
+8,35,0.5844803126896293,2.0,1.38457607458265,0.0006990562854828186,0.03672332216612413,0.8286336088439356,1,1.0,0.4816010422987641
+8,36,0.6172458224935478,2.0,1.3842302813882617,0.0006990315153185555,0.03648718864151157,0.8285844936107754,0,1.0,0.5574860749784922
+8,37,0.5874369774184423,2.0,1.3826565426792221,0.0007014702107236206,0.0364788566152041,0.8283615498557517,0,1.0,0.5581232580614742
+8,38,0.6063714917827918,1.95,1.3829883398383305,0.0007004116593408902,0.036704281468588576,0.8174833543721766,0,1.0,0.5212383059426393
+8,39,0.5926551688038413,2.0,1.3830649823710623,0.0007019301424532813,0.03673728184794407,0.8284197442389363,0,1.0,0.5088505626794709
+8,40,0.5919700045331107,2.0,1.382164606342152,0.0007021182542613356,0.03655268266860946,0.8282917800274467,0,1.0,0.5065666817770355
+8,41,0.5916758216945788,2.0,1.380998549834894,0.000702328145456918,0.03671944945462533,0.8281259344735507,0,1.0,0.4722527389819291
+8,42,0.5423799719687374,2.0,1.380982098468422,0.0007043266662876418,0.03650710225483343,0.828124161800271,0,1.0,0.4745999065624582
+8,43,0.586356147055687,1.95,1.3824700689550853,0.0007030811435237941,0.03646618765410648,0.8174068102514377,0,1.0,0.48785382351895634
+8,44,0.584937627325571,1.95,1.3812126693430884,0.000703435178280775,0.03655305991496906,0.8172191705517072,0,1.0,0.48312542441856965
+8,45,0.5417792788635231,2.0,1.3798671856909737,0.0007036491249997712,0.03669760478693664,0.8279652201343329,1,1.0,0.4725975962117434
+8,46,0.595171564459599,1.95,1.3848769182797467,0.0006992498394723024,0.03648285352420376,0.817764623214128,1,1.0,0.517238548198663
+8,47,0.5977920702058441,1.95,1.3843829409328108,0.0006990927941980934,0.03644105694140661,0.8176909495439173,1,1.0,0.5259735673528138
+8,48,0.6270235964955858,2.0,1.3837505966701942,0.0006989589151886319,0.03671973937572227,0.8285163315517458,1,1.0,0.5900786549852858
+8,49,0.5790555080397245,2.0,1.3846268631304715,0.0006991034864227937,0.03645360966195883,0.8286408340994857,1,1.0,0.5635183601324149
+9,0,0.16103180358040106,1.95,1.3861923703607604,0.0007001792561377109,0.03638314439483822,0.8179608541521659,1,0.12731681525815053,0.23368359159046947
+9,1,0.16104481678264285,1.9,1.386219502494808,0.0007001561767619076,0.03674360101657273,0.806530184422407,1,0.15393722408123348,0.26489975716716485
+9,2,0.20537948540589987,1.95,1.3862320269129917,0.0007002072947832514,0.03670045823271069,0.8179667673235868,1,0.18004904899817464,0.31119955268876665
+9,3,0.2550492732288082,1.95,1.386244877757567,0.0007001692083758094,0.03638006982241344,0.8179686694278848,1,0.23286768410771852,0.37300733195240265
+9,4,0.2680248729030071,1.95,1.3856957339498315,0.000699885483570192,0.03673415362777526,0.8178868053545567,1,0.26563588364196133,0.4059017314874086
+9,5,0.2846065145214048,2.0,1.3862171376241328,0.0007001810190455538,0.03670539316427533,0.8288668331351313,1,0.2942230138893694,0.4230576965521901
+9,6,0.2810864077629793,2.0,1.3862737353823174,0.000700169820257923,0.036384960591195,0.8288748580087095,1,0.329252268753388,0.43128500087208027
+9,7,0.35270675590830086,2.0,1.3862177229398869,0.0007001676064156357,0.036718045817911,0.828866912355098,1,0.37317497980528697,0.5114558799539536
+9,8,0.32342079039308835,2.0,1.3862167068438551,0.0007002667365931543,0.03675369835990198,0.8288667963478943,1,0.42162447747865556,0.4825699980054204
+9,9,0.34940089799873847,1.95,1.386194990288147,0.0007001437990317692,0.03640802949268792,0.8179612337022019,1,0.4547371316874959,0.49168681774580025
+9,10,0.3704935883747592,1.95,1.3861102383724768,0.0007000442562137173,0.03677047289760287,0.8179485841008888,1,0.489033530120215,0.5162672544222439
+9,11,0.3680722227170015,1.95,1.3859578974026434,0.0006999451677889235,0.03664600151633314,0.8179258685935331,1,0.5364858650922664,0.4782595889336499
+9,12,0.3714336847217553,2.0,1.3859372390907811,0.0006999307673536679,0.03650253764043728,0.8288270558156642,2,0.560392730897906,0.457588641208643
+9,13,0.4157691084547689,2.0,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8288777842514964,1,0.5953377282049892,0.4921133905759106
+9,14,0.4165724884384194,2.0,1.3859037005135897,0.0006999331653562901,0.03675524627673247,0.8288222982328666,1,0.6228304669956558,0.49146767213385684
+9,15,0.4500477028880099,2.0,1.3860169671368099,0.0006999986271829686,0.03643554288461553,0.8288383860115617,1,0.6407678514491933,0.5124685410277752
+9,16,0.43746989540240555,2.0,1.3862012381265552,0.0007001167844209648,0.03668482991433626,0.828864559610451,1,0.6913867276309402,0.5030506811667648
+9,17,0.444950485759221,2.0,1.386040660336299,0.0007000607869639924,0.03676196962255732,0.8288417648649617,1,0.733120031794525,0.4723415768047034
+9,18,0.49936738878134473,2.0,1.3857826064942866,0.0007000104279573965,0.03644624268074383,0.8288051391514021,1,0.7689441306176147,0.5059657884476627
+9,19,0.49462307061238936,2.0,1.3858990988871414,0.0007003948311661765,0.0366560073900027,0.8288217763708601,1,0.792890884847143,0.5248890555784405
+9,20,0.49883099076091075,2.0,1.3859452405199848,0.0007001413348461342,0.036768864397837685,0.8288282507448443,1,0.8526725340830483,0.49253992375897143
+9,21,0.5062437384621237,2.0,1.3846080862225953,0.000699098632236119,0.03648114791565389,0.8286381664736435,1,0.8956363244671276,0.4599640289175755
+9,22,0.561926218638727,2.0,1.3850538703196893,0.0006997183850688942,0.03662717589272624,0.8287016331394061,1,0.9253747566018979,0.5059210533265596
+9,23,0.5393738766076897,2.0,1.3844671578003487,0.0006996241448836481,0.036714471545036986,0.8286183033960736,1,0.9597043419969907,0.48497379936297774
+9,24,0.5502942534485346,1.95,1.3847162054453737,0.0007004846938787186,0.03644460021694396,0.8177410397445722,1,1.0,0.46764751149511513
+9,25,0.5605080205914779,2.0,1.3846527940911293,0.0007012834812200482,0.03676354031669297,0.8286451352262733,1,1.0,0.46836006863825946
+9,26,0.5644788605738785,2.0,1.3846710408103715,0.0007005020392120305,0.036761715642371136,0.8286475041906735,1,1.0,0.4815962019129283
+9,27,0.6154176159602729,2.0,1.384442767085929,0.0006997866156740873,0.036494023734919834,0.828614885788388,1,1.0,0.5513920532009092
+9,28,0.6302752726305312,2.0,1.385359268018084,0.0006998517023215665,0.03661203205363998,0.8287450194325721,1,1.0,0.6009175754351039
+9,29,0.6501669520838923,2.0,1.3826777884843897,0.0006999312488426603,0.03668138358622389,0.8283641329259671,1,1.0,0.6672231736129742
+9,30,0.6625653143457214,2.0,1.3828485959178765,0.0007013890270334805,0.036509871694911586,0.8283888309298939,1,1.0,0.7085510478190713
+9,31,0.6537980734612305,2.0,1.3826466443656868,0.0007027281492901587,0.03662352952373414,0.8283605002280516,1,1.0,0.7126602448707684
+9,32,0.6601696849120186,2.0,1.382581255484375,0.0007013038684849262,0.036711830131589816,0.8283507980532074,1,1.0,0.7338989497067283
+9,33,0.6813701230222204,2.0,1.382224362374898,0.0007000258026659755,0.036467455267238075,0.8282996834597717,1,1.0,0.7712337434074013
+9,34,0.6807707764103539,2.0,1.3819452777165724,0.0007009741975304127,0.03647681104153455,0.8282602584027313,1,1.0,0.8025692547011792
+9,35,0.6904204434012224,2.0,1.384519871807413,0.0007011519034250251,0.03676228570629654,0.8286262230816477,0,1.0,0.8347348113374081
+9,36,0.6893654257027484,2.0,1.3862943611198844,0.0007001722195526524,0.036578998936567145,0.8288777842514964,0,1.0,0.8312180856758279
+9,37,0.6737376425491969,2.0,1.3861825572755342,0.0007001680076264268,0.03657936114473772,0.8288619242829283,0,1.0,0.8457921418306562
+9,38,0.6935455557066409,2.0,1.3861356665665931,0.0007000613191396758,0.036781228076486025,0.82885524247262,0,1.0,0.8451518523554694
+9,39,0.695988961688486,2.0,1.3858760507587489,0.0006999450951742828,0.03658317894546172,0.8288183787486221,0,1.0,0.8532965389616198
+9,40,0.6806227464147229,2.0,1.3853802135395918,0.0006998044727316026,0.03655284649080767,0.8287479787350088,0,1.0,0.8687424880490762
+9,41,0.6886621782186371,2.0,1.3852266320102702,0.0006994751206366625,0.03676051779735321,0.8287260871158896,0,1.0,0.8955405940621236
+9,42,0.7123298718156595,2.0,1.3848095275745043,0.0006991333799916193,0.03655991296812718,0.8286667785055803,0,1.0,0.9077662393855317
+9,43,0.7122807464219378,2.0,1.3842362187651387,0.0006987821098956768,0.03646593787177575,0.8285852660610593,0,1.0,0.9076024880731257
+9,44,0.7158920016614889,2.0,1.3834192431848211,0.0006983795006890775,0.03666745035090208,0.8284690840323566,0,1.0,0.9196400055382964
+9,45,0.7010256308102125,2.0,1.382332689183817,0.000697938970988918,0.03648888493041165,0.8283144955425954,0,1.0,0.9367521027007083
+9,46,0.7223382440668935,2.0,1.3818564729746794,0.0006972519099281351,0.03648005190724245,0.828246566966538,0,1.0,0.941127480222978
+9,47,0.6869091128378281,2.0,1.3806212527635304,0.0006966378057214675,0.03660244125410898,0.8280706056033079,0,1.0,0.9563637094594268
+9,48,0.7132793200708059,1.95,1.3818217209703083,0.0006970844098360627,0.03650099525568702,0.817308231705443,0,1.0,0.9775977335693525
+9,49,0.6932819807451861,1.95,1.3811168398396534,0.000696602362821303,0.03641132288842476,0.8172028144766408,0,1.0,0.9776066024839537
+10,0,0.08171616569233023,2.0,1.386260558593133,0.0007002119725659601,0.03633556421682378,0.8288730009453186,0,0.19778811729763268,0.1753363959109239
+10,1,0.1384307273362445,1.95,1.3862874148722035,0.00070017243580937,0.036735655990841165,0.8179750039063391,0,0.20752551467206845,0.18473507155805707
+10,2,0.1347446210806429,1.95,1.386211552038192,0.0007002849242410937,0.0367297308114314,0.8179637417714519,0,0.2036140412310858,0.17766334862736186
+10,3,0.180006826156524,2.0,1.3862337425340352,0.0007002425438413734,0.03639316205821123,0.8288692059263585,0,0.23539608876564833,0.21949463550088227
+10,4,0.2516781336401681,2.0,1.3862229732754912,0.0007001956381049868,0.03672776551647777,0.8288676650481941,0,0.3456103295573645,0.21144667272407452
+10,5,0.23869580644208518,2.0,1.386149312422267,0.0007002070340715547,0.03674333223804407,0.8288572195264596,0,0.3763783395917403,0.22714823535129694
+10,6,0.29654313931114973,2.0,1.3861486960929872,0.0007001344264068225,0.03637081802972454,0.828857111499099,0,0.46129401787918445,0.2067517738649199
+10,7,0.2513996065584796,2.0,1.3861774098521837,0.0007002654833143131,0.036711918537637556,0.8288612217744528,0,0.4702172172458487,0.21104239886713358
+10,8,0.2622098878302693,1.95,1.3862002928497286,0.0007001874148766941,0.03675611480401149,0.8179620362445689,0,0.48548709737267437,0.22671682960399836
+10,9,0.2750473554770562,2.0,1.3861752671471455,0.0007001194926289876,0.036475990641026135,0.8288608764131866,0,0.5029880085696518,0.24617384016398505
+10,10,0.3441408621548017,2.0,1.3861184349729019,0.0007000499441906644,0.036699598038896025,0.8288527948571164,0,0.5691990903171753,0.25487075342643867
+10,11,0.3750966992645498,2.0,1.3860301669598525,0.0007000263703716,0.036751329689703474,0.8288402664720231,0,0.6415450914006587,0.26159554234762106
+10,12,0.33498367779185134,2.0,1.3858109782419583,0.0006999068197775294,0.03639967451207397,0.8288091353003322,0,0.642964620809991,0.2593260982261833
+10,13,0.4072550765886523,1.95,1.385918948643472,0.0006999207416438543,0.036684983316849946,0.8179200608746954,0,0.7315513621013529,0.2487817724937039
+10,14,0.4536063438879402,1.95,1.3860834871989078,0.0007001238521522929,0.036623775466221295,0.8179446242900418,0,0.8296965791105047,0.23909237414579432
+10,15,0.41409243608467267,1.95,1.3766409608263503,0.000709460926084096,0.03654803704787172,0.8165371001007917,0,0.8393038970009706,0.2612362576142812
+10,16,0.45294686680027885,1.9,1.3769213169380665,0.00070747408695709,0.036680671425428885,0.8050774627615518,0,0.8733970169453357,0.27862686674048187
+10,17,0.43620203391983836,1.9,1.3794440341318874,0.0007061105829295947,0.03643045897822403,0.8054726151313705,0,0.8666775451801456,0.29843671949260037
+10,18,0.5073636071481926,1.95,1.3795559857349093,0.0007044936200493904,0.036669779044389686,0.8169718948857324,0,0.9425879120242224,0.30109480779501185
+10,19,0.5308693079725517,1.95,1.3789553453577532,0.00070504581322395,0.03671066632224253,0.8168822299408799,0,1.0,0.26956435990850564
+10,20,0.5070257603475984,1.95,1.3784281757794514,0.0007064369021980827,0.03653797677390769,0.8168037760747087,0,1.0,0.2900858678253281
+10,21,0.5252878322869196,1.9,1.3808605988266731,0.0007050688779466825,0.03662328611530408,0.8056941494682357,0,1.0,0.28429277428973165
+10,22,0.536387519493941,1.95,1.3799260807999187,0.0007058943227721037,0.03644039772406305,0.8170276470637156,0,1.0,0.2879583983131365
+10,23,0.5290171493918425,2.0,1.3795089179370128,0.0007070864734076442,0.03639953592198885,0.8279151623555123,0,1.0,0.2633904979728081
+10,24,0.5099909783903914,2.0,1.3789957508629413,0.0007080427889775917,0.036383241808934416,0.8278423108815279,0,1.0,0.29996992796797145
+10,25,0.49430310651107245,2.0,1.3810521721750957,0.0007064639599113093,0.03657722733461029,0.8281347438719133,0,1.0,0.31434368837024135
+10,26,0.5300110915348574,2.0,1.381475230166228,0.0007049536326337905,0.03675978896922079,0.82819451853413,0,1.0,0.30003697178285776
+10,27,0.5150844773979497,2.0,1.3808520572832843,0.0007057131641968401,0.03655249390300985,0.8281060463853238,0,1.0,0.3169482579931658
+10,28,0.5304387307371362,2.0,1.3825530781343154,0.0007044881648122454,0.03666083759268941,0.8283476971363993,0,1.0,0.301462435790454
+10,29,0.5294894396038384,2.0,1.3818666724823203,0.000705109548684633,0.03675400854493014,0.8282502534219833,0,1.0,0.29829813201279465
+10,30,0.49350796801857755,2.0,1.3810426533340894,0.0007056892625113125,0.03644608807501957,0.8281331685508656,0,1.0,0.3116932267285917
+10,31,0.4964231785320123,1.95,1.3815221943407503,0.0007041427129488413,0.03653853567292716,0.8172656117095702,0,1.0,0.3214105951067075
+10,32,0.4977196390904042,2.0,1.381563374415406,0.0007027957071330138,0.036440763515147676,0.8282064460111047,0,1.0,0.3257321303013473
+10,33,0.5429757565524799,2.0,1.3815843581018037,0.0007014803124358126,0.03652853957733722,0.8282090572552662,0,1.0,0.30991918850826605
+10,34,0.5434589953423338,2.0,1.3813216285188212,0.0007025518741886593,0.03655316379771017,0.8281719781516271,0,1.0,0.31152998447444563
+10,35,0.5407719331347852,2.0,1.38088867442149,0.0007035222390918867,0.03671211329990469,0.8281106349147113,0,1.0,0.30257311044928376
+10,36,0.511430013442994,2.0,1.380338590639455,0.0007043494836344671,0.03644481119655105,0.8280325555702518,0,1.0,0.3047667114766467
+10,37,0.5324363398345054,1.95,1.382318789955129,0.0007033903354283257,0.03649575361936079,0.8173843226396988,0,1.0,0.30812113278168485
+10,38,0.5393584819096453,1.95,1.3816943642571573,0.0007042480383526307,0.0364124538608135,0.817291354051958,0,1.0,0.2978616063654841
+10,39,0.4905075805553246,2.0,1.3811138763793813,0.0007050759330524358,0.036732556749315304,0.8281431308113835,0,1.0,0.3016919351844154
+10,40,0.4917768929241886,1.95,1.381359001949156,0.0007035744160374285,0.03656567547489324,0.817241069123373,0,1.0,0.30592297641396177
+10,41,0.5161877127268971,2.0,1.3811504525855511,0.0007023707733296967,0.03647981434666159,0.8281475663600226,0,1.0,0.32062570908965704
+10,42,0.5334779242482866,2.0,1.38307036716579,0.0007017394565856124,0.0365299134977108,0.8284204554266713,0,1.0,0.31159308082762166
+10,43,0.5401667196877548,2.0,1.3826655718786718,0.0007023523563395404,0.036465445158678896,0.8283630844547063,1,1.0,0.333889065625849
+10,44,0.545521558493903,2.0,1.3855575598118524,0.0007000089542399845,0.036764845475938564,0.8287732051310527,1,1.0,0.35173852831300984
+10,45,0.5073074477642086,2.0,1.3854276057915915,0.0006996760605560039,0.036584861315048574,0.8287546683159099,1,1.0,0.32435815921402833
+10,46,0.5614319322502772,1.95,1.3857547001223869,0.0006998018005524041,0.036522815683207886,0.8178955631542567,1,1.0,0.3714397741675904
+10,47,0.5625628050285586,1.95,1.3853585029142164,0.0006995862076300057,0.03648549527262383,0.8178364809163173,1,1.0,0.4085426834285285
+10,48,0.5693782487018139,2.0,1.3857857925845014,0.0006999131315381624,0.03677272566987842,0.8288055636061128,1,1.0,0.43126082900604595
+10,49,0.5549162970516563,2.0,1.3854652007246964,0.0006998552774526469,0.036481408838267566,0.828760054604502,1,1.0,0.4497209901721879
+11,0,0.14129998053806936,2.0,1.38625561738781,0.0007002157159377956,0.036334945156743764,0.8288723011329624,0,0.12801678116549767,0.23364422690623432
+11,1,0.15800954600902692,1.95,1.386273133944968,0.0007001945380082032,0.036733248597820414,0.8179728841640744,0,0.16070775255811032,0.24575481661927598
+11,2,0.16955913898152594,2.0,1.386274231411944,0.0007001714227593197,0.03672575138885455,0.8288749288208006,0,0.1752483916157583,0.26486594111740874
+11,3,0.2337967662828384,2.0,1.3862613310536016,0.0007001525740844266,0.03635984169315219,0.8288730936625965,0,0.27781479085989,0.24223616646294133
+11,4,0.2459329156568931,2.0,1.3860153686823815,0.0007001260963641405,0.03672227700919695,0.8288381954131465,0,0.33205023156259533,0.2437094101061832
+11,5,0.2447755195625517,2.0,1.3860444749706777,0.0007002742637492271,0.03674073928196582,0.8288423665889111,0,0.3750985869780347,0.24912028257112603
+11,6,0.22977910183774344,2.0,1.386033345382166,0.0007001532256943543,0.03637810855140785,0.8288407533678553,0,0.3784336251557787,0.2613521725847731
+11,7,0.26036262310442465,2.0,1.3861534345528983,0.0007001373662336525,0.03670891307805108,0.8288577844968504,0,0.40499354965719037,0.26121734413849496
+11,8,0.31061008406337653,2.0,1.385734624535802,0.0006999709273022147,0.03674201609484847,0.8287983198095636,0,0.49021815161753024,0.24840941138788147
+11,9,0.33649742887929607,2.0,1.385516448294822,0.0006999470333151082,0.036453687448514835,0.828767353417008,0,0.5580294166479011,0.24428554073378564
+11,10,0.3600439007714174,2.0,1.3852263597097403,0.0006999039486238861,0.036682784768412816,0.8287261702007336,0,0.6205036895002334,0.23947474990441364
+11,11,0.3298149858178306,2.0,1.384853371097749,0.000699990972595853,0.036721451129946146,0.8286732467498098,0,0.6321314277238462,0.2565413824276403
+11,12,0.4202224096253475,1.95,1.3850396903758715,0.0006997404800082741,0.03636870839287517,0.8177890253968373,0,0.7355489150761643,0.2533428119829393
+11,13,0.4414815634804947,1.95,1.3844947167412491,0.0006996285395978322,0.03673183070463179,0.8177077713653946,0,0.8064205135412398,0.2297111935466627
+11,14,0.47503823921847527,1.95,1.383124477225956,0.00070150545807058,0.03660189822872515,0.817503992151114,0,0.899529148899868,0.2174219321950935
+11,15,0.5112755967538934,1.95,1.382673433576351,0.0007018959120580204,0.03653637973807415,0.8174368073020096,0,0.995245256266852,0.21059164749050865
+11,16,0.5048237708236822,1.95,1.3820634268153411,0.0007023262989265201,0.03673765649047982,0.8173458845083742,0,1.0,0.2160792360789406
+11,17,0.5087560681337441,2.0,1.3817624455989224,0.0007033521564832222,0.03648944749826464,0.8282349264368715,0,1.0,0.19585356044581356
+11,18,0.46270914241097866,2.0,1.3862943611198844,0.0007001722195526521,0.036468552805060776,0.8288777842514964,0,1.0,0.20903047470326216
+11,19,0.5029853600038278,1.95,1.383082049429108,0.0007016144925032773,0.036600190773516734,0.8174976947461174,0,1.0,0.1766178666794257
+11,20,0.46964183239617546,1.95,1.3849863996200316,0.000700088306231032,0.03650295488850072,0.81778118806237,0,1.0,0.16547277465391808
+11,21,0.47238929326343304,1.9,1.3851392938992464,0.0007008365246663168,0.036589075008611346,0.8063617861366535,0,1.0,0.17463097754477658
+11,22,0.49762959814095387,1.95,1.3850478247740459,0.0007015295391548736,0.036590014118597705,0.8177907706740052,0,1.0,0.15876532713651292
+11,23,0.4748689749783555,1.95,1.3853833357592658,0.0007009316161399031,0.03654053899882993,0.8178405813548343,0,1.0,0.18289658326118485
+11,24,0.4995517138488424,1.9,1.3852267417114308,0.0007014293271408164,0.03666965977818522,0.8063756252002945,0,1.0,0.1651723794961413
+11,25,0.47525893259382923,1.9,1.385328062463497,0.0007008599397134436,0.03643199965468158,0.8063912665306511,0,1.0,0.18419644197943058
+11,26,0.46072490236962316,1.8499999999999999,1.3850992425410524,0.0007012427801626971,0.03666933933584099,0.7943750339227049,0,1.0,0.20241634123207705
+11,27,0.4811676931804214,1.9,1.3831004162945228,0.0007003260858289451,0.03645936566304474,0.8060430723089178,0,1.0,0.2038923106014046
+11,28,0.4871665707246889,1.9,1.3843656659259773,0.0007001243403964527,0.03642403633153269,0.8062407388242873,0,1.0,0.2238885690822961
+11,29,0.5098618041598658,1.95,1.385149712713269,0.0007000203544262507,0.036716412771882104,0.8178055026694154,0,1.0,0.23287268053288612
+11,30,0.5070436577063295,1.95,1.3846910557847414,0.0007000097824843049,0.036650010454631864,0.8177371498288188,0,1.0,0.22347885902109818
+11,31,0.503509400937195,2.0,1.384080431049627,0.0007000068205489116,0.03672461477550596,0.8285634860616065,0,1.0,0.211698003123983
+11,32,0.5099916245560209,2.0,1.3834221878703061,0.0006999507678971123,0.03671768297003241,0.8284699490736431,0,1.0,0.19997208185340284
+11,33,0.4961698063890506,2.0,1.3831021595694628,0.0007026080346933627,0.03648126442928147,0.8284252212659824,0,1.0,0.18723268796350206
+11,34,0.4572023415578113,2.0,1.3840544374929813,0.0007017754615224118,0.03654410676133476,0.828560296213275,0,1.0,0.1906744718593709
+11,35,0.4563710858960112,1.95,1.3833751618992114,0.0007019612195835745,0.03675680348515334,0.817541525094884,0,1.0,0.1879036196533707
+11,36,0.49467851688249465,2.0,1.3824919128760944,0.000702148239757087,0.03670707073477146,0.8283383345635612,0,1.0,0.18226172294164886
+11,37,0.4969854163155302,2.0,1.3833193899018197,0.0007011712987800755,0.03656656618737718,0.8284556871351465,0,1.0,0.15661805438510076
+11,38,0.4907806964421123,2.0,1.3839039457683873,0.0007004748007381403,0.0367381692338878,0.8285385485382112,0,1.0,0.13593565480704095
+11,39,0.46630188357423946,2.0,1.3841367424680944,0.0006998462030890898,0.03650818732655237,0.8285714390989046,0,1.0,0.15433961191413148
+11,40,0.440555982705524,1.95,1.384372846840168,0.0007008145818808244,0.0365188652835504,0.817689958132848,0,0.99488708397857,0.1420038303803199
+11,41,0.46844354246746756,1.9,1.3837047643402665,0.0007008941635724479,0.03650878745969085,0.8061377147381836,0,1.0,0.16147847489155848
+11,42,0.4546342097047896,1.9,1.383684315121344,0.0007020303193955075,0.03633416649452495,0.8061348740407671,0,1.0,0.18211403234929863
+11,43,0.4813662134880288,1.95,1.382981892458807,0.0007022623427966483,0.03668938423135457,0.8174829446548757,0,1.0,0.204554044960096
+11,44,0.46072713830040807,1.95,1.3828531688353394,0.0006988301189450098,0.03652537404540885,0.8174627134228227,0,1.0,0.20242379433469357
+11,45,0.5081965746386525,1.9,1.382755966084358,0.0006982803790980002,0.0366440611829865,0.805988576322306,0,1.0,0.22732191546217484
+11,46,0.5006751788277098,1.9,1.3817759865537227,0.0006979451311049378,0.03664811792952283,0.8058351850901995,0,1.0,0.20225059609236612
+11,47,0.481023356366203,1.95,1.3807687201558816,0.0006975840353597061,0.03651022500055946,0.817151099142904,0,1.0,0.2034111878873433
+11,48,0.4629601574967369,2.0,1.381857147514376,0.0006975929678501567,0.03665073892329814,0.8282467599563889,0,1.0,0.20986719165578965
+11,49,0.4896619934981804,2.0,1.3818651875333754,0.0006972457512846007,0.036357037401247086,0.8282478048933157,0,1.0,0.23220664499393445
+12,0,0.024054299130067805,2.0,1.3861278088465052,0.0007001705329083951,0.03639783501294393,0.8288541588039389,1,0.15193189953412575,0.17760513105472506
+12,1,0.06659518273389162,1.95,1.3862709020065809,0.000700168131232103,0.036732556653816306,0.8179725439796972,1,0.1691500522963323,0.196450539384529
+12,2,0.1917385390704859,1.95,1.3862616304464717,0.0007001710389883777,0.03672714015419504,0.8179711643668482,1,0.20562208008080374,0.23163235679388133
+12,3,0.21221729598031722,1.95,1.3856692377077784,0.0006998170549421968,0.0363778578297269,0.8178828383746551,1,0.2300820466137042,0.2672815911161184
+12,4,0.23625479439074984,1.95,1.3855951276539118,0.0006997196196081813,0.03672807238035238,0.8178717703574897,1,0.2607058480153285,0.3065748506153948
+12,5,0.26846866460640606,1.95,1.3854856980921837,0.0006996148645543153,0.03667179241440188,0.8178554382221456,1,0.31023492735029423,0.3479156455542945
+12,6,0.24045719068896942,1.95,1.385336631496644,0.000699496776424809,0.03640633378658889,0.8178331958432133,1,0.3481233633378833,0.30402615117938697
+12,7,0.2928268494754099,1.9,1.3855415770404949,0.0006996946979007088,0.03675048367456626,0.8064242353854144,1,0.3836400330543332,0.33123612084558873
+12,8,0.26865940788531956,1.9,1.385338482870897,0.0006996037934216629,0.0365345735449532,0.8063925011772755,1,0.4251445822281172,0.29533858331357565
+12,9,0.2788699390480592,1.8499999999999999,1.3858630516003485,0.0007003707026653921,0.036643434932012185,0.7944994842246976,1,0.4786620292274952,0.25801709119020366
+12,10,0.35833895474350885,1.9,1.3857078421054798,0.0007004452139377173,0.03669020315547078,0.806450423029459,1,0.5302279710190344,0.32082588778631704
+12,11,0.395556800292714,1.9,1.3859982556629473,0.0007003175649389575,0.03644570016863335,0.8064957092648404,1,0.5677011567104011,0.39492112536184526
+12,12,0.36104310671737894,1.9,1.3861332493772711,0.0007001967388516766,0.0366914490294217,0.8065167378543603,1,0.5989948933288866,0.37148383128608103
+12,13,0.43388631642016035,1.8499999999999999,1.3859566368843677,0.000700207724641641,0.03675215292183963,0.7945147102620007,1,0.6410345229094455,0.424908357521274
+12,14,0.4450815666724343,1.8499999999999999,1.3850165632129483,0.0007001425403930664,0.03660541585014067,0.7943611690250497,1,0.6666737011097557,0.46137362076177346
+12,15,0.4991264538426799,1.9,1.3851263451119256,0.0007008063888649138,0.03675908860112253,0.8063597548621474,1,0.7203069079012598,0.5366789689405865
+12,16,0.5044041647647568,1.9,1.3855764154661458,0.0007004472805054712,0.03668947284854952,0.8064299087089716,1,0.741423973819765,0.5594485841228357
+12,17,0.48261111523190114,1.95,1.385553367384794,0.0007009725627345312,0.036410356985507576,0.8178659230483165,1,0.775181832947602,0.5417946068428676
+12,18,0.4900919970634326,1.9,1.3851743883543732,0.0007011514848660642,0.03655798223053155,0.8063673641673372,1,0.8315714611278394,0.49154470870765593
+12,19,0.5092206579616333,1.95,1.3854608385682083,0.0007000528881844197,0.03664327674557528,0.8178518654262593,1,0.8407417390825307,0.5097465410954035
+12,20,0.544668311623955,2.0,1.3853785760316504,0.0006997051748248964,0.03653628891745302,0.828747718146255,0,0.8594110606044525,0.5363462912739132
+12,21,0.5362917395261385,2.0,1.3812931843750769,0.0007021192587088926,0.03656015667588813,0.8281678072950843,0,0.8700607592815983,0.5608914527116636
+12,22,0.6040068941503764,2.0,1.3821766696964177,0.000701002951738324,0.03661735399427267,0.8282931784808443,0,0.9818241324039683,0.5375908039626301
+12,23,0.5988979199883595,2.0,1.3823674464811786,0.0007028526096135311,0.036723222115901843,0.8283208358039527,0,1.0,0.5296597332945314
+12,24,0.5942551017453581,2.0,1.3811744833026078,0.0007031161006834676,0.03639080834419184,0.8281511985101706,0,1.0,0.514183672484527
+12,25,0.5941238929282024,2.0,1.3797996912310522,0.0007032666768550528,0.036495368042090436,0.8279554971349018,0,1.0,0.4804129764273411
+12,26,0.5870118980545098,2.0,1.3797979254105859,0.0007057472114707435,0.036735793847162704,0.8279559522822483,0,1.0,0.4900396601816993
+12,27,0.5720615418655285,2.0,1.37836921170714,0.0007061323335874128,0.03655809221247776,0.8277524537641747,0,1.0,0.5068718062184281
+12,28,0.5545878865773124,2.0,1.379484866991751,0.0007041019872825279,0.03659320573707222,0.8279108853263399,0,1.0,0.5152929552577079
+12,29,0.5885327563828896,2.0,1.3811280436484135,0.0007026922095643124,0.036711627648822395,0.8281444686095373,0,1.0,0.49510918794296516
+12,30,0.5703514664189825,2.0,1.379744097956109,0.000702784079671321,0.03637724737641197,0.8279474405034496,0,1.0,0.5011715547299415
+12,31,0.5506661381487394,2.0,1.3805481164247893,0.0007012972447505057,0.0364561007841233,0.8280615197417721,0,1.0,0.502220460495798
+12,32,0.5936029579394914,2.0,1.3818359680367474,0.0007003355657326392,0.036678131642134675,0.8282445273695017,0,1.0,0.47867652646497094
+12,33,0.5866498338852077,2.0,1.382189455355796,0.0007023060203526136,0.036547948424749926,0.8282953675463369,0,1.0,0.4554994462840258
+12,34,0.5853401626372814,2.0,1.3821324694980852,0.0007040627678447965,0.036625345417970565,0.8282877624583529,0,1.0,0.45113387545760447
+12,35,0.574893742601292,2.0,1.3817682192865384,0.0007056131677407251,0.03677031253036345,0.8282363911185177,0,1.0,0.4496458086709732
+12,36,0.5740878207599245,2.0,1.3807642023419773,0.0007062431986414259,0.03649739959353328,0.8280936910939137,0,1.0,0.4469594025330816
+12,37,0.5598071589568943,2.0,1.379588110344355,0.0007067874622783531,0.036474894984214176,0.8279263595383622,0,1.0,0.4660238631896476
+12,38,0.5777113340557721,2.0,1.3806311343561053,0.0007048848748806541,0.036728354712739386,0.8280743606751221,0,1.0,0.4257044468525737
+12,39,0.5627235253741829,2.0,1.3802586154357042,0.0007067337390473814,0.036619446500690475,0.8280218462759044,0,1.0,0.40907841791394267
+12,40,0.5633834224169466,2.0,1.3791389816063964,0.0007073632411095099,0.03659478807686177,0.8278625294059327,0,1.0,0.3779447413898218
+12,41,0.540597254361751,2.0,1.3805336327793993,0.0006970440950321273,0.0365685740209495,0.8280582465089938,0,1.0,0.4019908478725034
+12,42,0.5158534309785321,1.95,1.3774670122826373,0.0007116343585654051,0.036520558264832505,0.816661464613757,0,0.9969356361470442,0.39026392173238145
+12,43,0.5460854471831731,1.9,1.3805128457043558,0.0006969846130470028,0.03653909306233728,0.8056371707998459,0,1.0,0.42028482394391015
+12,44,0.5294735013343339,1.9,1.3804746954407947,0.0007080259931781204,0.03667591678100328,0.8056346548427071,0,1.0,0.43157833778111315
+12,45,0.5705657280625485,1.95,1.3814473447671272,0.0007062257798474624,0.0363340089784543,0.817255055428998,0,1.0,0.43521909354182803
+12,46,0.5322125989463204,1.95,1.380726383248935,0.0007068863701306395,0.03658672310390195,0.8171475531596833,0,1.0,0.44070866315440127
+12,47,0.5728788940898255,1.9,1.3813666282818806,0.0007051305909908871,0.03641655192475492,0.8057733759917302,0,1.0,0.40959631363275156
+12,48,0.5457408188367766,1.9,1.3806288212535105,0.0007065366199141301,0.03657119760727665,0.8056583214842052,0,1.0,0.4191360627892552
+12,49,0.5540952216937554,1.8499999999999999,1.3823629750983657,0.0007051043010800817,0.036778667949793495,0.7939289863730552,0,1.0,0.4469840723125179
+13,0,0.1337202252973953,1.9,1.3862173659395032,0.0007001467944457148,0.03635955445513304,0.8065298481076868,0,0.13306990097338167,0.20164088302680877
+13,1,0.14979621077686214,1.8499999999999999,1.386202430088271,0.0007001215759003642,0.03674879462906427,0.794554807696981,0,0.16063636233307824,0.21847221947876952
+13,2,0.14062558603367653,1.9,1.3861705568622331,0.0007000848298710745,0.03667723152926777,0.8065225246017168,0,0.16918184905640352,0.24317615470371712
+13,3,0.21985335977825604,1.95,1.3862177340374209,0.0007001219663659026,0.03644901505534622,0.8179646137351473,0,0.25985644713772527,0.21970260307721973
+13,4,0.17642272829237465,1.95,1.386085347289435,0.0007000337020699784,0.0367494890056729,0.8179448744295336,0,0.2707096978595998,0.22712949716178246
+13,5,0.181633926988513,1.9,1.386156614726189,0.0007000749510523577,0.03669915411102627,0.8065203459234662,0,0.28432056471070855,0.2263523370140986
+13,6,0.2732082121654195,1.95,1.38618994404511,0.0007001151699317601,0.036554314743187676,0.8179604737862975,0,0.38932544674301517,0.2249267782273781
+13,7,0.3107064094439111,1.95,1.3861297633035479,0.0007000537785884091,0.03676237121320359,0.8179514943507951,0,0.48791532957045486,0.21846759205243038
+13,8,0.3027165288168122,1.95,1.384483795873702,0.0006997878772629911,0.0366439345568195,0.817706190978512,0,0.5185676884472206,0.25096484479307996
+13,9,0.3124368310415758,2.0,1.38481865356434,0.000699622171631798,0.03649007449294763,0.8286682129874232,0,0.5430095311435335,0.2507767286138747
+13,10,0.3021715128698316,2.0,1.3850141668151956,0.0006994960794766921,0.03667512544332903,0.8286959338289436,0,0.5567018244575911,0.264969276955984
+13,11,0.3779397973121242,2.0,1.385095052857498,0.0006993938662169067,0.0367130431459488,0.8287073870053324,0,0.6481248248637026,0.22896622455547705
+13,12,0.32972711506158153,2.0,1.3816444924846734,0.0006989762290968378,0.03625381281820467,0.8282169004060593,0,0.6569036236628195,0.22321888532151243
+13,13,0.3632566979459069,1.95,1.3819451425965306,0.0006984774320950686,0.03654488767759065,0.8173270757104822,0,0.6789238149437109,0.23895723989474188
+13,14,0.4264190893092028,1.95,1.382388419683954,0.0006981437576294511,0.036504701869789734,0.8173931496242374,0,0.7794064402400129,0.21552171071065865
+13,15,0.4125419082487787,1.95,1.381514090176831,0.0006978103152988782,0.03653097661139387,0.8172625100001835,0,0.794669868113446,0.24891320334466752
+13,16,0.4291017922286907,2.0,1.3818577950977493,0.0006975224018909622,0.03663729849020693,0.8282468320011549,0,0.8193499167962001,0.27120608503403554
+13,17,0.444657998991637,2.0,1.3807729521572067,0.0006970739585864,0.03655703231935643,0.8280923260997384,0,0.8533127290919944,0.277776357849464
+13,18,0.47000192216812564,2.0,1.3817852102795887,0.0006972269724091506,0.036283999338764236,0.8282364222170815,0,0.8983254274758932,0.30223917059256117
+13,19,0.4976526310748929,2.0,1.3824004347482632,0.0006974647764481329,0.03654789876870076,0.8283239945333308,0,0.9378231272702621,0.3417446005559601
+13,20,0.48263491214635396,2.0,1.3826800839576707,0.0006976567444646011,0.03663950704121456,0.8283638125248254,0,0.948795467399055,0.34372241728910646
+13,21,0.5222733386226699,2.0,1.3825163762554222,0.0006977381663418217,0.036525861517729505,0.828340558924969,0,0.9980181348476536,0.3435536156120281
+13,22,0.5106061547178732,2.0,1.3825895902878103,0.0006981567507783789,0.03652608815839418,0.8283510881927147,0,1.0,0.36868718239291043
+13,23,0.5605804668903571,2.0,1.3823139627736958,0.0006983984376925258,0.036639026799407254,0.8283119631337914,0,1.0,0.3686015563011903
+13,24,0.5541977560385944,2.0,1.3838392112307913,0.0006987951535173177,0.0364331338783333,0.8285288747470874,0,1.0,0.3473258534619812
+13,25,0.5465601578349213,2.0,1.384853462723716,0.0006991901488928192,0.036596924891881086,0.8286730323660754,1,1.0,0.3218671927830707
+13,26,0.5459352223654852,2.0,1.3850012227197315,0.0006992817291537051,0.03672837458007201,0.8286940354320623,1,1.0,0.3531174078849503
+13,27,0.5042291569366898,2.0,1.384589663406886,0.0006990951427039185,0.0364640775041198,0.8286355494830442,1,1.0,0.3140971897889658
+13,28,0.5463354661440247,1.95,1.3849353087286265,0.0006996216335513508,0.03660220911860945,0.8177734355365014,1,1.0,0.35445155381341575
+13,29,0.5283006253476397,1.95,1.3843941322415316,0.0006995880537170724,0.03641544892258634,0.8176927655119276,1,1.0,0.36100208449213195
+13,30,0.5783565031471903,2.0,1.3850809228174084,0.0006995715599367268,0.03664991661467976,0.8287054316645108,1,1.0,0.4278550104906341
+13,31,0.592687328500903,2.0,1.3851930579226612,0.0006996850958010133,0.036585405543720695,0.8287213811942176,1,1.0,0.47562442833634316
+13,32,0.587236527045162,2.0,1.3856062490649064,0.0006997194897909745,0.0367612100778047,0.8287800322715843,1,1.0,0.49078842348387347
+13,33,0.6106504132795572,2.0,1.3851230818826417,0.0006995236551126232,0.03653905374503757,0.8287114025763034,1,1.0,0.5355013775985238
+13,34,0.5585604660083026,2.0,1.3853121067739658,0.0006994914232798178,0.03657396492225743,0.8287382236188404,1,1.0,0.4952015533610083
+13,35,0.5532426117627403,1.95,1.3857445089575333,0.0006999538802017247,0.03676801029896483,0.8178940905551841,1,1.0,0.4774753725424675
+13,36,0.5924953338726167,2.0,1.3858799990505115,0.0007003988998627825,0.03673083255544587,0.8288190676953646,1,1.0,0.5083177795753888
+13,37,0.5734728696520796,2.0,1.3854567809678866,0.0007004573607616745,0.03655300608561287,0.8287590305884114,1,1.0,0.5115762321735984
+13,38,0.5792107549226506,2.0,1.3856259706547291,0.0007001081059118572,0.03677595327406043,0.828782941110479,1,1.0,0.5307025164088351
+13,39,0.6101143401791339,2.0,1.385547368347801,0.0006997725184064863,0.03657624372499844,0.8287716917692783,1,1.0,0.5670478005971129
+13,40,0.5711285375723542,2.0,1.3850748551423864,0.0006996698732057672,0.03653909846561486,0.8287045982514882,1,1.0,0.5370951252411805
+13,41,0.5606495087218688,1.95,1.3852906770563833,0.0007003045739995806,0.03676275124977219,0.8178265900576575,1,1.0,0.5021650290728957
+13,42,0.6169928001046646,2.0,1.385223804914025,0.0007008850197444261,0.03674691062104902,0.8287260860800135,1,1.0,0.5566426670155487
+13,43,0.5931089637144324,2.0,1.3858258974316429,0.0007005621155037076,0.036535753489983176,0.828811438043278,1,1.0,0.577029879048108
+13,44,0.6214348285824561,1.95,1.3858345495141164,0.0007001706262715166,0.036772913179418984,0.8179075656752653,1,1.0,0.6047827619415203
+13,45,0.648015570125596,1.95,1.3812486681986145,0.0006994464021424993,0.03662047861938298,0.8172233561125503,2,1.0,0.6600519004186529
+13,46,0.685416802669509,1.95,1.3795828333315125,0.0006974580408614384,0.03647972975571645,0.8169738053236999,2,1.0,0.68472267556503
+13,47,0.6658858986985035,1.95,1.377672540993483,0.0006968508798888399,0.03654406345709876,0.8166878091102493,2,1.0,0.7196196623283447
+13,48,0.7029598766215096,2.0,1.3790070581538676,0.000700047519307063,0.036608744063959676,0.8278416434266591,2,1.0,0.7431995887383652
+13,49,0.6842909416377186,2.0,1.377176739137607,0.0006997595476680542,0.03655687417424887,0.8275805478911542,2,1.0,0.7809698054590619
+14,0,0.10952119133515736,2.0,1.3861762772001407,0.0007000908634392775,0.036365858374619406,0.8288610115675598,0,0.10825454020748065,0.2207312508405503
+14,1,0.08639257758819704,1.95,1.386202174928898,0.0007001100914654434,0.03673363322814553,0.8179622934593519,0,0.1998679296196953,0.18815135246772974
+14,2,0.19847323529668498,1.9,1.386283672966055,0.0007001868877483786,0.036723999743460384,0.8065402069212599,0,0.2644032614460601,0.17570643572753647
+14,3,0.19424237958590643,1.9,1.386265649947401,0.000700209448158812,0.03645874409822884,0.806537401758643,0,0.286781936372793,0.19843201678929742
+14,4,0.21316024421141946,1.95,1.3862705858408435,0.0007001766944980019,0.036778116301257796,0.8179724994547106,0,0.32195320159183327,0.21459654524895386
+14,5,0.28630807025068566,2.0,1.3859091263696854,0.0006999389816688212,0.03668617072355422,0.8288230696800725,0,0.42816324580118875,0.21680923976736713
+14,6,0.23592339315058086,2.0,1.385598365154386,0.0007001768490133842,0.03634328313619047,0.8287790433152438,0,0.42840993248097065,0.21519806719397538
+14,7,0.31928317534389045,1.95,1.3856391329476379,0.0007000223508730613,0.03669778178829677,0.8178784153716618,0,0.5321630755789736,0.18805981704100336
+14,8,0.33515339114068055,1.95,1.3862680395216616,0.0007002012305757025,0.03668400127588457,0.8179721276305911,0,0.6041662572345141,0.17828962748958313
+14,9,0.3611346711069775,2.0,1.385833820215172,0.0007007059103480877,0.03645160217343295,0.82881260295283,0,0.6677824527181035,0.1800723000657871
+14,10,0.3321936003128012,2.0,1.385966812726279,0.0007004551045889342,0.03669746347082427,0.8288314002437761,0,0.6906020958459191,0.18650920658144512
+14,11,0.3716407841831015,1.95,1.3858911366798397,0.0007006448391404015,0.03676634800660914,0.8179161345691677,0,0.7298335953844317,0.1990244867644292
+14,12,0.36704306901034306,1.95,1.3857012222796485,0.0007008201877733997,0.03653614626082071,0.8178879012722318,0,0.7577557333579521,0.21313591889054073
+14,13,0.40015476745370293,2.0,1.3813815192383214,0.0006967710852400812,0.03663823441927874,0.8281788554317704,0,0.7829917798397323,0.22319351839269994
+14,14,0.39220830975824383,2.0,1.3810713584429708,0.0006966104302707523,0.03659089349433248,0.8281346697489151,0,0.7913907004521225,0.25217343192464936
+14,15,0.4646121705887978,2.0,1.3816334247227906,0.0006972939638896595,0.03651188620965697,0.8282148470611947,0,0.8739402282897083,0.25012026424304823
+14,16,0.4357860400877651,2.0,1.3841594104232438,0.0006988942489163088,0.03659460816507157,0.8285743884207976,0,0.8883555743985039,0.26814603442787865
+14,17,0.4470773007210693,1.95,1.3838915271746495,0.0006989340753500167,0.03668870109618365,0.8176176345129174,0,0.893748559120522,0.2985929235762017
+14,18,0.45486254994376707,2.0,1.3834688223019345,0.0006989083065416749,0.03651863072450818,0.8284762798000102,0,0.9069348554239669,0.3069620259139343
+14,19,0.5294610892271256,2.0,1.3831020742762374,0.00069896657393082,0.03661060344400911,0.8284241739684363,0,0.9919942667790357,0.27554460838503775
+14,20,0.5230969566090069,2.0,1.3842115812165652,0.0006990890131414715,0.036707983065078734,0.8285818539006454,0,1.0,0.24365652203002278
+14,21,0.5102555068038949,2.0,1.3849053823141828,0.0006992843449836607,0.03644634344607718,0.8286804302200724,0,1.0,0.2341850226796493
+14,22,0.492478116140969,2.0,1.384595517832267,0.0006989854335016311,0.036587256164302064,0.82863634964509,0,1.0,0.2415937204698965
+14,23,0.49751359538642026,2.0,1.3849799572519337,0.0006993758618449345,0.03672745260464113,0.8286910432868076,0,1.0,0.2583786512880675
+14,24,0.5216980093664286,2.0,1.3851376297582625,0.0006997476190350033,0.03648344347031659,0.8287135312023248,0,1.0,0.23899336455476178
+14,25,0.4736260443298884,2.0,1.3857010070058755,0.0006998462713952197,0.03663115785807823,0.8287935143334944,0,1.0,0.24542014776629473
+14,26,0.4722111011618047,1.95,1.385459603132112,0.0006998310321902617,0.03676418912097937,0.8178516152831138,0,0.9926509787817638,0.2505023654969972
+14,27,0.5191638251896342,2.0,1.3850885050366637,0.0006997735851771863,0.03662754807638831,0.8287065653343997,0,1.0,0.2305460839654473
+14,28,0.5171386549869784,2.0,1.3855531517633484,0.0006997820025318893,0.03660182799709264,0.8287725151792036,0,1.0,0.25712884995659446
+14,29,0.5063191715888054,2.0,1.3854066747841434,0.0006995644733276208,0.036747759453677774,0.828751666085749,0,1.0,0.28773057196268453
+14,30,0.49149518277747023,2.0,1.3856665420896412,0.0006998871927382023,0.03652887518147068,0.8287886354981382,0,1.0,0.30498394259156736
+14,31,0.5187642993454463,2.0,1.3853601618708982,0.0006998614269401681,0.03661002800289924,0.8287451490544905,0,1.0,0.3292143311514876
+14,32,0.5329916796150687,2.0,1.385466339210864,0.0007003183358181687,0.036767119415147397,0.8287603476061944,0,1.0,0.30997226538356204
+14,33,0.5325319648333502,2.0,1.3853243135181401,0.0006998846546049078,0.0365291954878295,0.8287400677521444,0,1.0,0.30843988277783374
+14,34,0.48972091902816156,2.0,1.3850505866932825,0.000699472046358698,0.03655131625288417,0.8287010970726384,0,1.0,0.2990697300938718
+14,35,0.5140470216287285,1.95,1.384764672595582,0.0006994716167176196,0.03672950355102359,0.817747961237798,0,1.0,0.31349007209576163
+14,36,0.49722568773815257,1.95,1.3848080086521086,0.0006999202231583843,0.03671769376086106,0.8177545535049939,0,1.0,0.3240856257938418
+14,37,0.5257815808803681,2.0,1.384462328303906,0.0007000334993417029,0.03666874608647728,0.8286177338233434,0,1.0,0.3526052696012266
+14,38,0.5475997813993296,2.0,1.3844480698437505,0.000700627223492477,0.03675825713885209,0.8286158775959444,0,1.0,0.3253326046644319
+14,39,0.5014768597641786,2.0,1.38533255381163,0.000700431661117675,0.03655707923772489,0.8287413925659027,0,1.0,0.33825619921392863
+14,40,0.5314496743658803,1.95,1.384991084852759,0.0007005998521171038,0.03652102224545758,0.8177820386874673,0,1.0,0.37149891455293405
+14,41,0.5516796189937913,1.95,1.3848333515433255,0.0007011988540816034,0.036451387873448225,0.8177587114849629,0,1.0,0.3722653966459708
+14,42,0.5572682040250205,1.95,1.3847646295177385,0.0007004773800404305,0.036741075863171144,0.8177482546078091,0,1.0,0.39089401341673496
+14,43,0.5624083389950529,2.0,1.3845260638593513,0.0006998351692506363,0.03662874628747807,0.8286267284170272,0,1.0,0.374694463316843
+14,44,0.553870218364576,2.0,1.3854125767006782,0.0006998940048627103,0.036758879944580256,0.8287525972333321,0,1.0,0.34623406121525296
+14,45,0.5130475027271262,2.0,1.3859175796706085,0.0006999901184167479,0.03661253908245887,0.828824283502105,0,1.0,0.3768250090904207
+14,46,0.5157829702954453,1.95,1.3857205092009846,0.0006999958272335685,0.03650769526233497,0.8178905284194928,1,1.0,0.385943234318151
+14,47,0.511964347781668,2.0,1.3846511544766922,0.0006990324231993316,0.036441963133514346,0.8286442631456151,1,1.0,0.33988115927222656
+14,48,0.5222082686282625,2.0,1.3850478405892457,0.0006994801729927403,0.036602090276299196,0.8287007095547175,1,1.0,0.34069422876087513
+14,49,0.5742679486084079,2.0,1.3855641382714372,0.0006996679407516976,0.036485576241727886,0.828774041881448,1,1.0,0.4142264953613595
+15,0,0.023569789935362864,2.0,1.386132753094322,0.0007001676284647805,0.03639760405304382,0.8288548593447703,0,0.15966684406090298,0.16567684103667224
+15,1,0.02115239627407589,1.95,1.3862835511717893,0.0007001660228642612,0.03673457084623296,0.8179744267222728,0,0.17334335308069423,0.17271685013932733
+15,2,0.03422742768405049,2.0,1.3862824601707895,0.0007001676304195073,0.03672501482716155,0.8288760949195245,0,0.1961322013417054,0.18591515715789442
+15,3,0.03221321909736963,2.0,1.3862810949706357,0.0007001677457898405,0.036356015987631066,0.8288759013114742,0,0.1922792203521617,0.18433843652168314
+15,4,0.21111109833585423,2.0,1.3862791537401757,0.0007001686118417255,0.036724720157815735,0.8288756262116075,0,0.27071938036908494,0.17607782062740093
+15,5,0.2270010908545481,2.0,1.3862282373839512,0.0007001267601797322,0.03674861934803204,0.8288683921998823,0,0.3460859190122169,0.161889077498871
+15,6,0.2242674621217828,2.0,1.3862183277323756,0.0007001284899830213,0.036375831340576543,0.8288669870457531,0,0.37368492382852503,0.18264497530124268
+15,7,0.24056331235549336,2.0,1.386170152380965,0.000700084599222441,0.03671103920899004,0.828860140980374,0,0.39123568021717714,0.21356346756207503
+15,8,0.29195945384900773,2.0,1.3856307931193177,0.0006998493905484411,0.03674272396798947,0.8287835520015722,0,0.4619842804451125,0.2238858055698758
+15,9,0.26502415562688386,2.0,1.3856980632434384,0.0007001796812864457,0.03643980483555048,0.828793191246873,0,0.4859233444303926,0.235516059515756
+15,10,0.3037786068433573,1.95,1.3856843666873466,0.0006999947516552923,0.03669267316347572,0.8178851447684189,0,0.5111252250956981,0.2644283893502599
+15,11,0.36578769308472986,1.95,1.3858753924978764,0.0006999683954571008,0.03663355084202927,0.8179135883002238,0,0.6019899638615684,0.24997235846700833
+15,12,0.3227862375043883,1.95,1.3841971016117913,0.000698812476133615,0.03643898513948888,0.8176631607981517,0,0.6183554602195096,0.25148017805528144
+15,13,0.332007931918898,1.9,1.384634739670068,0.0006990279453459427,0.036738660503261265,0.8062824266547759,0,0.6375084322546536,0.2566818633901219
+15,14,0.3733737708408609,1.95,1.3848538078303605,0.0006991822018666022,0.03648007218175672,0.8177611589794551,0,0.6645288917051633,0.2918740471959852
+15,15,0.3504492368270846,1.95,1.3846792703442117,0.0006991482554044111,0.036482713060715544,0.8177351364722034,0,0.6611231930303221,0.2866665320498526
+15,16,0.43519454188237017,1.9,1.384824571819861,0.0006994340622431363,0.03673503291266588,0.8063122018673191,0,0.7589921621014332,0.2719922568059896
+15,17,0.3913558003169457,1.9,1.3844460194582866,0.0006990087626431096,0.03638651661403845,0.8062529425451763,0,0.7790881708596507,0.26573510657695143
+15,18,0.40006318519970885,1.8499999999999999,1.3845046317062102,0.0006992926382031529,0.03672766613852049,0.7942772538932719,0,0.7915981115726187,0.2780798019022045
+15,19,0.48019702098825773,1.9,1.3843796000584259,0.0006995122100510553,0.03648919173597002,0.8062427243096373,0,0.8863265221713511,0.25222137373239095
+15,20,0.4701728725030569,1.9,1.3859762517499983,0.0006999513908889075,0.03653753052792468,0.8064921610105705,0,0.9233321646787501,0.26946668877185603
+15,21,0.5066128521699529,1.95,1.385889539702248,0.0006999165382563315,0.036772102965740405,0.8179156798011937,0,0.9723903896322548,0.2588556543901697
+15,22,0.5018471971856378,1.95,1.3856630973335202,0.0006997355852920728,0.03676801195791771,0.817881899491061,0,0.9852433133620853,0.2924995728026787
+15,23,0.532122925589253,2.0,1.3854825898083365,0.0006996385708362495,0.036494817921290654,0.8287624608860238,0,1.0,0.30707641863084323
+15,24,0.5347247565609543,2.0,1.3851853505801839,0.0006994033053784382,0.03647783529045493,0.8287202071975304,0,1.0,0.31574918853651424
+15,25,0.5392235650603997,2.0,1.3847371010807903,0.0006991109605612048,0.03657853939147386,0.8286564889148647,0,1.0,0.29741188353466563
+15,26,0.5303808120768885,2.0,1.3852324367018467,0.0006997093637739797,0.036747478813162995,0.828726977523646,0,1.0,0.30126937358962824
+15,27,0.5328190494917068,2.0,1.3847225069207536,0.0006995945550595964,0.03648727290458311,0.8286545540819115,0,1.0,0.27606349830568894
+15,28,0.5271109215139047,2.0,1.384994948510346,0.0007003430844877113,0.03662227118064275,0.8286934460835408,0,1.0,0.2570364050463487
+15,29,0.5167215403681537,2.0,1.385013155498629,0.0007010334779457901,0.0367725811165598,0.82869622675832,0,1.0,0.22240513456051186
+15,30,0.49076969781452906,2.0,1.384846242302072,0.0007016231747925326,0.0365010259480552,0.8286726981064234,0,1.0,0.23589899271509682
+15,31,0.5175832293466014,1.95,1.3849152078275822,0.0007009645459028979,0.03657299844449253,0.8177708403267027,0,1.0,0.225277431155338
+15,32,0.4644331044139008,1.95,1.3846283951352762,0.000701459948338661,0.03641366720353882,0.8177282427964624,0,1.0,0.21477701471300262
+15,33,0.5004682576712851,1.9,1.3853364535812498,0.0007010986241407125,0.03672847046421613,0.8063926511139664,0,1.0,0.16822752557095022
+15,34,0.478368138772579,1.9,1.3818499501458366,0.0007058978419505638,0.03658988122585459,0.8058492460445498,0,1.0,0.1945604625752631
+15,35,0.4853811027808565,1.8499999999999999,1.3812469301487502,0.000706719403308146,0.03678451749020884,0.7937468639296188,0,1.0,0.21793700926952148
+15,36,0.47026422864546424,1.9,1.3854756672101387,0.0007000094060705672,0.036725847842111,0.806414044635547,0,1.0,0.2342140954848807
+15,37,0.4931930254682397,1.95,1.3858019277062916,0.0006999615288904302,0.03661845225366981,0.8179026448180725,0,1.0,0.24397675156079884
+15,38,0.49830523660997217,1.95,1.3857375082407382,0.0006997961320117211,0.03642649313716026,0.8178930008513705,0,1.0,0.26101745536657384
+15,39,0.5023473707803052,2.0,1.385532613394557,0.0006996508848498085,0.036737611272558035,0.8287695633737105,0,1.0,0.2744912359343509
+15,40,0.4863772849370084,2.0,1.3852507810016452,0.0006995005238587913,0.036530080819044006,0.8287295219875309,0,1.0,0.28792428312336127
+15,41,0.5105352989998199,2.0,1.3855061689729264,0.0006999092440993326,0.036771196542693285,0.8287658839271073,0,1.0,0.3017843299993996
+15,42,0.5331754137704982,2.0,1.3851362451162275,0.0006998746771976074,0.036590319722365615,0.8287133707270637,0,1.0,0.2772513792349936
+15,43,0.525043194761316,2.0,1.3855723797126573,0.0006998326418507715,0.03653607025708342,0.8287752581460921,0,1.0,0.2834773158710533
+15,44,0.5278715135324001,2.0,1.3854521456930613,0.0006996118329390004,0.036752402124125255,0.8287581327695408,0,1.0,0.2929050451080003
+15,45,0.5099473952241393,2.0,1.3851917482328138,0.0006993996498306701,0.03657912743730637,0.8287211142600356,0,1.0,0.2998246507471311
+15,46,0.5327840663291467,2.0,1.3848600915039748,0.0006991987024162671,0.03649627884997732,0.8286739759074698,0,1.0,0.275946887763822
+15,47,0.5083480316248238,2.0,1.3852201036698795,0.0006994375166640609,0.03674550246199226,0.8287251498117535,0,1.0,0.2944934387494126
+15,48,0.5184857103968868,1.95,1.3848358407398877,0.0006991569465847731,0.03659868112520383,0.8177584738398124,0,1.0,0.32828570132295604
+15,49,0.49784418957367665,2.0,1.384272589482948,0.0006988090885127553,0.03654702033816369,0.8285904394584939,0,1.0,0.32614729857892205
+16,0,0.12969183604232873,1.95,1.3861344071658324,0.0007001666244110291,0.036397522685299576,0.8179522194595955,1,0.11979414721466748,0.2059139238548725
+16,1,0.17600289202892463,1.9,1.386145973875737,0.0007002410124531296,0.036744712593757445,0.806518737290116,1,0.15389119334416684,0.24815471563752628
+16,2,0.1517053396618402,1.9,1.3861500829060733,0.0007001729084434606,0.03669720361145641,0.8065193572334399,1,0.1947495489365772,0.2126850669573643
+16,3,0.20683071875334444,1.8499999999999999,1.3862047345060047,0.0007001596676291459,0.03644678744289418,0.7945551963000126,1,0.24448607930504407,0.23012095677108935
+16,4,0.19571248325849605,1.8499999999999999,1.3854275370454299,0.0006997753884392,0.03675543495560862,0.7944281741759047,1,0.2600146778255801,0.23902204042754677
+16,5,0.1962671978025517,1.9,1.3853327709852123,0.0006996327353671642,0.03651625564842792,0.8063916184524327,1,0.30995230416739405,0.20762092045198022
+16,6,0.27226804044996117,1.95,1.3854461050019644,0.0006998218675696706,0.03651601708615002,0.8178496017227683,1,0.35228683244438647,0.271177691574022
+16,7,0.3085730409148421,1.95,1.385771168373969,0.0006998970241018101,0.03675683442917811,0.8178980443278615,1,0.3965109530513043,0.33322886564773463
+16,8,0.3163961061391161,1.95,1.3859698584506397,0.0006999511030135274,0.03666987619046706,0.8179276516313808,1,0.4180861775204397,0.3638721171031342
+16,9,0.33989896858342833,2.0,1.3859800129755375,0.0007000018027999468,0.036469441790685175,0.8288331443351343,1,0.462720406849779,0.3827026861450558
+16,10,0.31848971569781603,2.0,1.3860566697859582,0.0007001730374952224,0.03670541034569253,0.8288440678511395,1,0.49427911625896426,0.36926023064743435
+16,11,0.39577173291266193,1.95,1.3859168739733625,0.0007001935629014076,0.0367495883763579,0.8179198331613445,1,0.5421776208134297,0.42966894862430033
+16,12,0.37614652157080464,1.95,1.3856994672660727,0.0006997548427419203,0.03649454557208341,0.8178873225065203,1,0.5601853785634736,0.4402412338180507
+16,13,0.3727298940949578,2.0,1.385443952073766,0.0006995874060381537,0.036749025149092895,0.8287569630103312,1,0.5951909835553412,0.4155116689094045
+16,14,0.4475576269139437,2.0,1.3853591970994017,0.0006995247167801797,0.036731762808330695,0.8287449165513264,1,0.6371961515682218,0.4755972209555165
+16,15,0.4844041330929241,2.0,1.383946060991555,0.0007014694844972328,0.03650812450405798,0.8285448140524023,1,0.6832907366893372,0.5369594613906309
+16,16,0.5177826913724702,2.0,1.3843821298672758,0.0007007677698722104,0.03666784987161044,0.8286065530712982,1,0.7146836010292357,0.6063641698692532
+16,17,0.49937818814490265,2.0,1.3862943611198844,0.0007001722195526522,0.036773098486905194,0.8288777842514964,1,0.7251100308080497,0.6311139194056091
+16,18,0.5681958704852863,2.0,1.3862358710431395,0.0007001715774218337,0.036472540082810735,0.8288694877121751,1,0.7688549861801768,0.7021795867107185
+16,19,0.5507059883155897,2.0,1.3861946752096643,0.0007003048586844061,0.03667945055780723,0.8288636820273191,1,0.7971437339041554,0.7061616491797584
+16,20,0.586792956287494,2.0,1.386042518927425,0.0007004514158793931,0.03677231743661671,0.8288421393617765,1,0.8189190923966922,0.73075106442939
+16,21,0.6393303156120689,2.0,1.381086967246105,0.0007000258982972391,0.03650446589741822,0.8281378635204857,1,0.8721342451664394,0.8015887251516435
+16,22,0.6757145072775921,2.0,1.3845233488945345,0.0007011427690712844,0.036620979408411636,0.8286267142499256,1,0.9278313691093449,0.8486065321128466
+16,23,0.6518854636191747,2.0,1.3836770188833445,0.0007013666261642755,0.03674504849972793,0.8285065617791683,1,0.9359078523228612,0.8584077423001002
+16,24,0.6924967016251125,1.95,1.3835578428849313,0.0007026736581571787,0.03653917056726474,0.81756898607858,1,0.959988641770148,0.8950041497235104
+16,25,0.6669259371339358,1.95,1.3836833165615872,0.000701430371281646,0.036722471174229346,0.81758732888105,1,1.0,0.8564197904464523
+16,26,0.6563930848820452,1.9,1.384884310376754,0.0007009085610383907,0.03642331589388427,0.8063219917724327,1,1.0,0.8213102829401505
+16,27,0.6483424719813913,1.95,1.3855297744373845,0.000700518208160264,0.036754885403090506,0.8178622732223814,1,1.0,0.7944749066046374
+16,28,0.6632643372358709,2.0,1.3803507181578658,0.0007007506040167537,0.03664103576046407,0.8280332575404119,1,1.0,0.8108811241195696
+16,29,0.7170179007426832,2.0,1.3858067200571704,0.0007001996388193842,0.036776111767857014,0.8288086142220571,1,1.0,0.8900596691422772
+16,30,0.6892688308821363,2.0,1.3852038332313277,0.0007001842617757941,0.036533859426159485,0.8287230523648312,1,1.0,0.897562769607121
+16,31,0.6960858829438736,1.95,1.385294926341746,0.0007010279509052759,0.036630299908991484,0.8178274386876868,1,1.0,0.9202862764795788
+16,32,0.6728485440662777,2.0,1.3850281580646946,0.0007018335317515097,0.03634562597766769,0.8286985836409325,1,1.0,0.876161813554259
+16,33,0.6601173369565676,1.95,1.3853346130576396,0.0007010212067993328,0.0365276371144693,0.8178333493575168,2,1.0,0.8337244565218918
+16,34,0.6374070868199597,2.0,1.3862050973789575,0.0007001269319346995,0.036743080575523786,0.8288651099161862,2,1.0,0.7913569560665326
+16,35,0.7247585778343797,1.95,1.3775590382578986,0.0007011571459041211,0.03662641021285688,0.816672105598817,2,1.0,0.815861926114599
+16,36,0.6310162423927395,1.95,1.3859002143441492,0.0006999970335598406,0.0367250610821457,0.8179172935422725,2,1.0,0.7700541413091315
+16,37,0.6629243669087705,1.9,1.3762564280256304,0.000701023470133855,0.03645667328963743,0.8049710766902912,2,1.0,0.7764145563625683
+16,38,0.6223039998803581,1.9,1.3779123115100032,0.0006995224484833637,0.03659421106225376,0.8052304361180538,2,1.0,0.7410133329345269
+16,39,0.7138223090294612,1.8499999999999999,1.3788282218051564,0.0006982192316650031,0.03656321513566648,0.7933478219794204,2,1.0,0.779407696764871
+16,40,0.6691745737542811,1.8499999999999999,1.376396404389531,0.0006975493288253248,0.03625527589049711,0.7929486282857141,2,1.0,0.7972485791809368
+16,41,0.6751310673517921,1.7999999999999998,1.3778959213457194,0.0006966650408142632,0.036345862221802715,0.7806210551999556,2,1.0,0.8171035578393065
+16,42,0.7060837366257589,1.8499999999999999,1.384949587592026,0.0006998032874662968,0.036512959618939154,0.7943501174017268,2,1.0,0.8536124554191961
+16,43,0.7209824790327805,1.8499999999999999,1.3848900532189579,0.0006993530971691765,0.03638374760471715,0.7943402447251093,2,1.0,0.903274930109268
+16,44,0.6577511388737222,1.9,1.3844538167028122,0.0006988824481059288,0.036656595885463814,0.8062541210803081,2,1.0,0.8591704629124072
+16,45,0.7443974013569612,1.8499999999999999,1.3838752216201433,0.0006986010409778642,0.036419014095498844,0.7941741625716539,2,1.0,0.8813246711898708
+16,46,0.7574379991453027,1.8499999999999999,1.3845261542654033,0.0006989446463410993,0.03648312411224022,0.7942806569535458,2,1.0,0.9247933304843424
+16,47,0.717269966222196,1.9,1.384719269067313,0.000699336506170505,0.036714566208035135,0.8062957254342796,2,1.0,0.9575665540739864
+16,48,0.75,1.8499999999999999,1.3856422368658594,0.0006997217396482842,0.03650537921125068,0.7944632175065346,2,1.0,1.0
+16,49,0.7799999999999999,1.8499999999999999,1.3853422165427207,0.000699676353872965,0.03655622157508921,0.7944142076109459,2,1.0,1.0
+17,0,0.025859096101312568,1.8499999999999999,1.386163311743417,0.0007000849016896607,0.03637637834824755,0.7945484100704571,1,0.15120230348081815,0.18459391569661765
+17,1,0.18394355583737013,1.7999999999999998,1.3861569250085277,0.0007001718623564288,0.0367509267720706,0.7820336826424696,1,0.18696611473032262,0.23052369981747017
+17,2,0.17926974738088627,1.7999999999999998,1.3861701148041428,0.0007000850485583486,0.03665075384031141,0.782035901331301,1,0.2144838035057076,0.24492075326201077
+17,3,0.254093996893149,1.8499999999999999,1.385829294446949,0.0006998853090252507,0.03655626192552031,0.7944938141339654,1,0.27717147261253017,0.31075135949378974
+17,4,0.22914519752787854,1.8499999999999999,1.385951485233804,0.0006999312743482983,0.03677234295345178,0.7945137789292234,1,0.2924444025173863,0.3072247884030801
+17,5,0.23215219084144484,1.7999999999999998,1.3858931271147017,0.0006999005773062486,0.03654758078963176,0.7819886206002755,1,0.3510889762833812,0.2723886677603078
+17,6,0.2814222871055237,1.8499999999999999,1.3860246652173347,0.0006999854161793209,0.036708816752478404,0.7945257438332191,1,0.38157338809414393,0.29597643955955383
+17,7,0.32689328707627424,1.8499999999999999,1.3859111536997324,0.0006999446645749826,0.0367644828403638,0.7945071986311796,1,0.42944470030279647,0.3503846898505188
+17,8,0.3427450724874935,1.8499999999999999,1.3858232591576038,0.0006999799725542979,0.03640477209695766,0.7944928596422216,1,0.46270263261263955,0.39221339814145884
+17,9,0.31418181118128813,1.9,1.3858576999266332,0.0007001681450282507,0.03673099698263345,0.8064737264971465,1,0.504567476315297,0.3411827355172311
+17,10,0.321802475704693,1.8499999999999999,1.3857225183660153,0.000700222316148988,0.0367626527829733,0.7944764899481846,1,0.5380361786896566,0.32196001409610114
+17,11,0.36812228262041946,1.9,1.385500748941684,0.0007002784054030621,0.03643336510963578,0.8064180441113327,1,0.5604100003589828,0.34652760825608786
+17,12,0.4148776545685069,1.9,1.3855025758414592,0.0007006194830341157,0.03667552141309256,0.8064184357945509,1,0.6049345290561863,0.4096794764867746
+17,13,0.386386165828833,1.9,1.3843566878162168,0.0007005901632301298,0.0367339998480557,0.8062394818298476,1,0.6501330886175473,0.38777643460604694
+17,14,0.4104510973185117,1.8499999999999999,1.3862505812309154,0.0007001485513337044,0.036345697813188374,0.794562676462528,1,0.6668968233683593,0.4123078932372266
+17,15,0.42036736126251034,1.8499999999999999,1.384379199433926,0.0007005831043643835,0.0367318127488193,0.7942571791482971,1,0.6881306477205763,0.41705034058093265
+17,16,0.46201026557220776,1.9,1.384882742774864,0.0007002221001354683,0.036396617247700006,0.8063215325597332,1,0.7347205943482154,0.4270734261097389
+17,17,0.4895735954966787,1.9,1.3850435411299031,0.0007009646699310682,0.036393531796451765,0.8063468746456663,1,0.7826523447820078,0.45504219194625206
+17,18,0.5292290419858169,1.9,1.3849541541742263,0.0007016843171041079,0.03676593540945327,0.8063331411082953,1,0.8136645135082712,0.5125441219416945
+17,19,0.5052173672880382,1.9,1.3856982309927202,0.0007002108312123799,0.03664992791164727,0.8064488496751756,1,0.8284433190406032,0.5128001322393233
+17,20,0.5225954468589102,1.8499999999999999,1.3855538453805991,0.0006998488294154704,0.03652628078035687,0.7944488250677769,1,0.8613001049599891,0.5269180162497151
+17,21,0.5361745381897662,1.9,1.385249879339566,0.0006994987396476282,0.036598554778959125,0.8063786348917984,1,0.8917279435973394,0.5316112025027682
+17,22,0.5389818247568398,1.95,1.3848545318567609,0.0006991642141222478,0.03650806613523902,0.817761261518178,1,0.9529681525806691,0.4926485457485735
+17,23,0.5471682448362292,2.0,1.384998690293751,0.0006993689428184706,0.03647003987653688,0.8286937006897694,0,0.9952033874718178,0.46362296615834003
+17,24,0.5786743871048196,2.0,1.382244733327329,0.0007051393904353887,0.0364318539163791,0.8283040350609451,0,1.0,0.462247957016065
+17,25,0.5621737671983457,2.0,1.3814801393737497,0.0007058944806789117,0.03658204359835028,0.8281954847985007,0,1.0,0.47391255732781873
+17,26,0.5464010550964717,2.0,1.3828669337089294,0.0007045015227914343,0.036786229102145365,0.828392322765952,0,1.0,0.48800351698823896
+17,27,0.5512110537685344,2.0,1.3834871579344843,0.0007032390790811141,0.0365589616069303,0.8284801161549286,0,1.0,0.5040368458951147
+17,28,0.5906921383277077,2.0,1.3837541329566165,0.0007021258213752676,0.036635233305310856,0.8285177338614218,0,1.0,0.5023071277590255
+17,29,0.5825157282488429,2.0,1.383059234353114,0.00070256044465876,0.03673712940651438,0.8284191063949198,0,1.0,0.5417190941628097
+17,30,0.5989408177704618,2.0,1.3842700200592866,0.0007017767663113231,0.03648387783149973,0.8285909175156336,0,1.0,0.5298027259015394
+17,31,0.5976889602316795,2.0,1.3834789677715587,0.0007020737030809026,0.03655983163474885,0.8284786211191942,0,1.0,0.5256298674389316
+17,32,0.5961575668401626,2.0,1.3825086771307444,0.0007022977787381581,0.03673630604931568,0.8283407608524282,0,1.0,0.520525222800542
+17,33,0.5578505286036582,2.0,1.3813573017110408,0.0007025011125463127,0.0365469997509378,0.8281770400531739,0,1.0,0.5261684286788607
+17,34,0.6034880831772542,1.95,1.381821271381355,0.000701168536483209,0.036541105919204925,0.8173093842187382,0,1.0,0.5449602772575138
+17,35,0.605440460974937,1.95,1.380425812399893,0.0007012271646718352,0.036291588118201795,0.8171009468584833,0,1.0,0.5514682032497896
+17,36,0.6089769839140158,2.0,1.3789422477592341,0.0007012433328128119,0.036590794692946724,0.8278327473307916,0,1.0,0.5632566130467191
+17,37,0.5700866087791243,2.0,1.3774759240058456,0.000701102464646338,0.036354563838247866,0.8276236178594997,0,1.0,0.5669553625970811
+17,38,0.5934622701683377,1.95,1.3778936133786555,0.0006994780223535469,0.036615015104003557,0.816721689783043,1,1.0,0.5782075672277923
+17,39,0.6015376292160506,1.95,1.3849226858770312,0.0006994930643498571,0.03671167859855183,0.8177715161519735,1,1.0,0.6051254307201683
+17,40,0.6270430383501369,2.0,1.3798427736753944,0.0007019572525591674,0.03659612286270829,0.8279612609030758,1,1.0,0.6234767945004559
+17,41,0.5885272248335781,2.0,1.3795419800849413,0.0007004342232777601,0.036626782543937815,0.8279179772418654,1,1.0,0.5950907494452602
+17,42,0.6475770630110093,1.95,1.3848663319272818,0.0006994072377434693,0.03656003743356786,0.8177630924838931,1,1.0,0.6585902100366973
+17,43,0.6687957091198762,1.95,1.38265100749017,0.000700088505386385,0.036574425873849355,0.8174329210855831,1,1.0,0.7293190303995871
+17,44,0.6668106070264379,1.95,1.3821588909872515,0.0007006777425939155,0.03648621823087239,0.8173596438727012,1,1.0,0.7560353567547928
+17,45,0.6464465573518898,2.0,1.381648999463851,0.000699386629735605,0.036639074829002145,0.8282176584075923,1,1.0,0.7548218578396325
+17,46,0.6250992937970453,1.95,1.3814545011881372,0.0007002017523265942,0.03648811450966571,0.8172543248660891,1,1.0,0.716997645990151
+17,47,0.6680363196974668,1.9,1.3833123260242552,0.0007000351098617564,0.03646121921376663,0.8060761086577576,1,1.0,0.7601210656582225
+17,48,0.6741544317580181,1.9,1.3827024053978703,0.000699004784479728,0.036489257582907296,0.80598042740671,1,1.0,0.7805147725267271
+17,49,0.6553473272749682,1.95,1.3819263812505869,0.000697940016767771,0.036645290974764974,0.8173241140807115,1,1.0,0.7844910909165607
+18,0,0.10485433406360697,2.0,1.3862020147159377,0.0007001056641989609,0.036356514518762525,0.8288646666133892,0,0.10420555332575983,0.21057370911101017
+18,1,0.1724467227237342,1.95,1.386214902814371,0.0007001247396978573,0.036734409838657736,0.8179641929957815,0,0.17052237299771222,0.21412591174883103
+18,2,0.13918051755355912,1.95,1.3862574768372984,0.0007001455344457218,0.03672359465531815,0.8179705383221565,0,0.18344516255796725,0.21934150843457406
+18,3,0.16272975115918056,1.9,1.3862627334659308,0.0007001527151264897,0.03638181411820273,0.8065369289808815,0,0.18818726508496114,0.2248494837506537
+18,4,0.1493857719404421,1.9,1.3862492816898748,0.0007001564911501988,0.0367766533246905,0.8065348312012485,0,0.20424180289456162,0.22563016927539153
+18,5,0.15738216224205023,1.95,1.3857857338413053,0.000700212927311855,0.0366177323764645,0.817900307811545,1,0.22083089607155376,0.23016601271142909
+18,6,0.22401002682361618,2.0,1.3860143755575056,0.0006999737235061181,0.03641885520508984,0.8288380112900837,1,0.2629359972014683,0.2627854264767628
+18,7,0.20094023120895496,2.0,1.3859186005123119,0.0006999300029384508,0.03670600147418038,0.8288244112758482,1,0.3077401495268662,0.22614723799402828
+18,8,0.2797941160831506,1.95,1.38602960808525,0.0007000570000971907,0.036749085387456644,0.8179365810375491,1,0.3660019021537997,0.27797785073876896
+18,9,0.3073896999579362,1.95,1.386083237133775,0.000700037110753493,0.03646977395565644,0.8179445612189961,1,0.3858874014001702,0.343449131326227
+18,10,0.2995544066542025,1.95,1.3860736296144387,0.0007000218584934361,0.036773336729712086,0.8179431260043603,1,0.43114294985811236,0.3569907557031919
+18,11,0.3427341921895639,2.0,1.3854096494632524,0.0007000470190594926,0.03661622221994672,0.8287522252264916,1,0.4724757522061766,0.37914630435697766
+18,12,0.33259809877165303,2.0,1.3853790156015373,0.0007002695015845941,0.036425772905527155,0.8287479407161497,1,0.4896266863564733,0.38915808076354574
+18,13,0.4001311084992068,2.0,1.3857993711812113,0.0007002304468008477,0.03668032470849404,0.8288075802674586,1,0.5440080843597132,0.4417595825177386
+18,14,0.4388585696153222,2.0,1.3858063449198093,0.0006999322767279986,0.03674820486712524,0.8288084851264086,1,0.600293019115177,0.4958045398975048
+18,15,0.45091489320172173,2.0,1.3853168133914848,0.0007004085802179513,0.03645768550491938,0.8287391519789578,1,0.6351502527249405,0.5228493070391518
+18,16,0.49736116866724295,2.0,1.3852151578391783,0.000700795516455409,0.03668207609507583,0.8287248333097923,1,0.6846623035940534,0.5783208240987386
+18,17,0.5341936886013162,2.0,1.3851173607021252,0.0007002565148011119,0.03674149940340433,0.8287107985177974,1,0.7333353887205601,0.6361984437103071
+18,18,0.5536081512693918,2.0,1.385964193740293,0.0006999525435355512,0.03645685763899649,0.8288308860912735,1,0.7775332585815581,0.675316159455895
+18,19,0.5308660500215236,2.0,1.3856778988107288,0.0006997539879051017,0.03665459864460492,0.8287902091857776,1,0.8227064192352121,0.6392782744247959
+18,20,0.6115142712133532,1.95,1.3821750539025959,0.0006978793818628159,0.03662145725248865,0.8173612212190163,1,0.8704307835885654,0.7111398592597568
+18,21,0.567359746757459,1.95,1.3817291636191147,0.0006981606693357756,0.036457756016176096,0.8172947324767464,1,0.8958505682208276,0.6633983982304266
+18,22,0.6221801153619949,1.9,1.3834516290905374,0.000698591525282463,0.03670293344487398,0.8060974319478993,1,0.9401007032801497,0.6871327801664499
+18,23,0.6466896254971356,1.9,1.3826097484128625,0.0006977390166849369,0.03648717885735397,0.8059655417751579,1,0.9706005917471967,0.7281646293275228
+18,24,0.620270723441734,1.9,1.3815896632658382,0.0006968965514726727,0.03660380497884332,0.8058057022162852,1,1.0,0.7009024114724463
+18,25,0.6787106997138149,1.8499999999999999,1.3831769033237902,0.0006980920240528795,0.036524668356638576,0.7940598244449597,1,1.0,0.7623689990460496
+18,26,0.6502495561148961,1.8499999999999999,1.3828094865881437,0.0006977207609972541,0.03663126288279265,0.7939996132776103,1,1.0,0.7674985203829868
+18,27,0.6503154756308149,1.7999999999999998,1.3832579940959295,0.0006982280939655126,0.03631370523757998,0.7815384718349814,1,1.0,0.7677182521027163
+18,28,0.6991261264792752,1.8499999999999999,1.3832101315094372,0.0006986195592817148,0.03653578429916171,0.7940654306888452,2,1.0,0.8304204215975836
+18,29,0.7370232284300329,1.8499999999999999,1.3853988128179613,0.0006998630611966114,0.036639280537668475,0.7944235117602705,2,1.0,0.8567440947667763
+18,30,0.7182139685744688,1.8499999999999999,1.3852943483280127,0.000700301789969258,0.03648093818747746,0.7944065939492819,2,1.0,0.894046561914896
+18,31,0.7043670845459984,1.9,1.3849086338179237,0.0007006606822740204,0.036760383686674905,0.8063257128392683,2,1.0,0.9145569484866612
+18,32,0.7131934689682022,1.95,1.3857576830409992,0.0007004048399312653,0.03676050692558007,0.8178961870727934,2,1.0,0.9439782298940071
+18,33,0.7419981465830932,2.0,1.3861249510847644,0.0007002154390344765,0.03671535071607148,0.8288537661562667,2,1.0,0.973327155276977
+18,34,0.7253321883422885,2.0,1.385709003777085,0.0007002428920640416,0.03658067249925197,0.8287947615871811,2,1.0,0.9844406278076282
+18,35,0.6828023256768716,2.0,1.3858046243271573,0.0006999372687544801,0.036770749907560574,0.828808242416605,2,1.0,0.9426744189229054
+18,36,0.6656984215757336,1.95,1.3859589172616589,0.0006999378670546948,0.03656861254615516,0.8179260182995979,2,1.0,0.885661405252445
+18,37,0.7229067326938485,2.0,1.3858176866156047,0.0006999307878035599,0.036719413600620095,0.8288100939141809,2,1.0,0.9096891089794952
+18,38,0.7086332302605359,2.0,1.3854594742349833,0.0006995806242401407,0.036755884828752174,0.8287591639615928,2,1.0,0.9287774342017863
+18,39,0.7172215936827186,2.0,1.3855130542651355,0.0006997568777588429,0.036577840075745105,0.8287668177919888,2,1.0,0.9574053122757289
+18,40,0.7204148374568866,2.0,1.3852659264052463,0.0006998867487784089,0.03655316027474855,0.8287317813065024,2,1.0,0.9680494581896218
+18,41,0.7768769774405845,2.0,1.3847792475091025,0.0007000121087668877,0.036759839696308846,0.8286627288805587,2,1.0,0.9895899248019482
+18,42,0.6791171238798291,2.0,1.385599722447659,0.0006999327624020186,0.03657979989918224,0.8287791666471163,2,1.0,0.9303904129327637
+18,43,0.6666584909525342,1.95,1.3856860818522672,0.0007004568854214466,0.03652625163500353,0.817885537909005,2,1.0,0.8888616365084473
+18,44,0.7510531036140953,2.0,1.385475690972009,0.0007009300687968056,0.03649474446011212,0.828761848401609,2,1.0,0.9035103453803177
+18,45,0.7375121731200164,2.0,1.3860146354524048,0.0007005478619665679,0.03663775861269939,0.8288382110610784,2,1.0,0.9583739104000544
+18,46,0.7269009739413246,2.0,1.386058126126608,0.0007001955131095691,0.03654229210765315,0.8288442808266708,2,1.0,0.9896699131377484
+18,47,0.75,2.0,1.3858188020949467,0.0007003523554859163,0.03677672705013346,0.8288103718099383,2,1.0,1.0
+18,48,0.73,2.0,1.3856479986092027,0.0006998812691708196,0.0366182904602224,0.8287860025175875,2,1.0,1.0
+18,49,0.684742826305726,1.95,1.3852527187753836,0.0006999078662900664,0.036469449471307085,0.8178208165162836,2,1.0,0.94914275435242
+19,0,0.12972021867957645,1.9,1.3862108868186287,0.0007001578151241202,0.03635093463508209,0.8065288405465417,1,0.11508295300855785,0.212290124920511
+19,1,0.03434041100577853,1.8499999999999999,1.3861995411164436,0.0007001760256016749,0.036749754812739927,0.7945543538846334,1,0.16568311740117952,0.19355721348435576
+19,2,0.18932011475391072,1.7999999999999998,1.3860591853583004,0.0007001766794918194,0.03668451824199522,0.7820170234177909,1,0.20924596733843132,0.21873909272846068
+19,3,0.23679264561073093,1.7999999999999998,1.3860644966441495,0.0007000408885710526,0.03656105277648443,0.7820178825167616,1,0.2652750326713217,0.26894210847400757
+19,4,0.2504963487606395,1.7999999999999998,1.3860262179877303,0.0007000613704268117,0.03677591320484358,0.7820113642232366,1,0.29182531868865197,0.3125540709505956
+19,5,0.26225641593738325,1.8499999999999999,1.3859429953504645,0.0006999630580454167,0.03645908405280173,0.7945124032316992,1,0.31141208580962965,0.32563860537843803
+19,6,0.3057028058086858,1.9,1.3858331246166382,0.0006998495925525667,0.036630634623553864,0.8064697914679473,1,0.3599264767093213,0.372440717083191
+19,7,0.275292699236724,1.9,1.385772025765551,0.0006998565590194961,0.036769079983423957,0.8064602573834755,1,0.4009846741914935,0.34966276520042194
+19,8,0.290895994563276,1.8499999999999999,1.3856654017254857,0.0006999842765087413,0.036555931234147236,0.7944670858422523,2,0.4110999378007643,0.354853398143234
+19,9,0.3223089571658003,1.9,1.3862943611198844,0.0007001722195526525,0.0367391592065816,0.8065418700441696,2,0.4451335616322466,0.3808517750430055
+19,10,0.3448208601266858,1.9,1.3862688006310009,0.000700172753235651,0.03677924378083146,0.806537881923171,2,0.48845059905799054,0.39813540167829864
+19,11,0.3612651369037406,1.9,1.3861843311906397,0.0007001680127266024,0.03645165801503162,0.8065246999532844,2,0.5095514759840589,0.4248151550337234
+19,12,0.4378173209731537,1.95,1.3862007484855665,0.0007001723871403311,0.03669630277015403,0.8179620996135378,2,0.5695795096781333,0.4332850570063344
+19,13,0.40693856114464333,1.95,1.386193825562335,0.0007001015147738412,0.03677971052186489,0.8179610476813857,2,0.6055122502766438,0.4491122034466193
+19,14,0.3735306097184301,1.9,1.3859103515672169,0.0006999492788269577,0.036605981255053495,0.8064818755926741,2,0.640637812208222,0.39091828278380436
+19,15,0.41424243510176995,1.8499999999999999,1.3862943611198846,0.0007001722195526528,0.036747700941451564,0.7945698304121885,2,0.6517008274633895,0.4118736803880471
+19,16,0.38363609058552833,1.8499999999999999,1.3859084496370402,0.0006999102130072945,0.03643825404091091,0.7945067459011298,2,0.6766813464145826,0.37654517339898447
+19,17,0.4932360264754328,1.7999999999999998,1.3862143841702412,0.0007001725492158063,0.03671253160917318,0.7820434770343357,2,0.7313640255527842,0.4023013875143971
+19,18,0.4642633871272087,1.7999999999999998,1.385853132186079,0.0006998714671228763,0.036454741482152074,0.7819817921654701,2,0.7644287588739731,0.4283062785920647
+19,19,0.5418151632987671,1.7499999999999998,1.385880591699714,0.0006999675910705,0.0367073691897745,0.7689302280919815,2,0.8187354702868614,0.4477365839467418
+19,20,0.4984449213860598,1.7499999999999998,1.3852328766992055,0.000699473105649947,0.03647701466478299,0.7688149485126022,2,0.8353759685261594,0.44764844658531994
+19,21,0.4650346645108571,1.6999999999999997,1.3850482233524326,0.0006992942756568908,0.03671114794824421,0.7551825748811599,2,0.8563678277022267,0.408291778099888
+19,22,0.5179047516471462,1.6499999999999997,1.3852223667325616,0.0006995354672717992,0.036427514466439506,0.7410861381429925,2,0.890099318519356,0.4395500807980125
+19,23,0.5987615709113485,1.6499999999999997,1.384889980050731,0.0006995218754220694,0.036554733605235055,0.7410223502987592,2,0.9475968869295379,0.46574272046511134
+19,24,0.5621684821738593,1.6499999999999997,1.384413925990237,0.000698949864043574,0.036587530456176624,0.7409307615284573,2,0.9656667998401661,0.48633920745930914
+19,25,0.609588831818371,1.5999999999999996,1.3839586980966048,0.0006988857213995354,0.03668637345656546,0.7261858673620649,2,1.0,0.5319627727279029
+19,26,0.5957186196159159,1.5999999999999996,1.38485213861478,0.0006991901903242926,0.03672223148315324,0.7263636041602286,2,1.0,0.5523953987197194
+19,27,0.6534237724233073,1.6499999999999997,1.3842749160830816,0.0006989277807841786,0.03642312744692362,0.7409040688754898,2,1.0,0.5780792414110244
+19,28,0.6121317565854992,1.6499999999999997,1.3837943161834672,0.0006984481868075289,0.03644581401874743,0.7408116155509978,2,1.0,0.6071058552849972
+19,29,0.6432854287756954,1.5999999999999996,1.3775190728133997,0.0006955951944502414,0.0364786606982848,0.7249022368536852,2,1.0,0.6442847625856511
+19,30,0.6810249522654207,1.5999999999999996,1.379029420021027,0.000698743725170277,0.036405626409050706,0.7252045813260439,2,1.0,0.6700831742180691
+19,31,0.6948534728755807,1.5999999999999996,1.3767863107555707,0.0006981794700388921,0.0364947380328178,0.7247571171553178,2,1.0,0.7161782429186025
+19,32,0.7059289563505692,1.6499999999999997,1.3741594003755442,0.0006974933165627209,0.036559985122820236,0.7389569612663114,2,1.0,0.7530965211685638
+19,33,0.6121794769261811,1.6999999999999997,1.3715657437399618,0.0006967648117973664,0.03655639794501979,0.7526803997401514,2,1.0,0.7072649230872704
+19,34,0.6759153197146213,1.6499999999999997,1.3737517282940823,0.0006955242153430527,0.036561939680243155,0.738877554010117,2,1.0,0.7530510657154038
+19,35,0.7108946572764779,1.6499999999999997,1.375263642642146,0.0007000319004251626,0.03614447162758096,0.7391708917783673,2,1.0,0.7696488575882598
+19,36,0.6959655230655342,1.6499999999999997,1.3724063111568672,0.0006994204769224049,0.03638486058434532,0.7386193935910434,2,1.0,0.8198850768851139
+19,37,0.6283183653619261,1.6999999999999997,1.3849947172939194,0.000699709056029335,0.036601099356135,0.7551728358217064,2,1.0,0.7610612178730869
+19,38,0.6637182402817188,1.6499999999999997,1.373848065391809,0.0007040163740795283,0.036547334394844366,0.7388994173704069,2,1.0,0.7790608009390625
+19,39,0.7228671762966671,1.6499999999999997,1.3755908680029085,0.0007016873672995053,0.03651394781783954,0.7392346132403276,2,1.0,0.8095572543222236
+19,40,0.6753022905321603,1.6499999999999997,1.3850748273471911,0.0007004927427648645,0.03642906782554363,0.7410581950366391,2,1.0,0.8176743017738676
+19,41,0.7023295050954131,1.5999999999999996,1.3844639641295364,0.0007007827716593886,0.036764965694520965,0.7262870771995712,2,1.0,0.8410983503180436
+19,42,0.6871640701504208,1.5999999999999996,1.3841814664795382,0.0006997714096901374,0.03672191181907266,0.7262305125697686,2,1.0,0.8572135671680692
+19,43,0.6427423182163465,1.6499999999999997,1.3833861821408169,0.0006998966475082935,0.036443440979070076,0.7407337984734697,2,1.0,0.8091410607211551
+19,44,0.6790363082554356,1.5999999999999996,1.383500003269347,0.0007010722104019369,0.036632149491866696,0.7260955207441572,2,1.0,0.8301210275181184
+19,45,0.7394033907161132,1.5999999999999996,1.3824755911581073,0.0007014868181965504,0.03650845434484804,0.725891902638086,2,1.0,0.8646779690537107
+19,46,0.6518869225148121,1.5999999999999996,1.384161180857791,0.0007008151971372985,0.03661141926720456,0.7262268944236528,2,1.0,0.8396230750493734
+19,47,0.7156864542164119,1.5499999999999996,1.3840775882148486,0.0007020081530077738,0.03671552566415013,0.7110484624463987,2,1.0,0.8856215140547059
+19,48,0.6484613559804442,1.5499999999999996,1.3840523810528074,0.000700775914582078,0.03655288990896356,0.71104277703849,2,1.0,0.828204519934814
+19,49,0.7141598269578232,1.4999999999999996,1.3837600333255549,0.0007016930234912753,0.036614302434153964,0.6953312901418749,2,1.0,0.8805327565260772
+20,0,0.1837000354260201,1.4999999999999996,1.386217774746876,0.0007001937701353912,0.036348293818066556,0.6958510673532611,0,0.20038255309397895,0.1784900472947617
+20,1,0.15341794291860855,1.4499999999999995,1.3859518600758096,0.0006999592709933888,0.03677560289965931,0.679690923880891,0,0.23254694246393162,0.20133055311011971
+20,2,0.18948592725364152,1.3999999999999995,1.3857990586877533,0.0007000927948834541,0.03644102025236594,0.663113311357512,0,0.27315162770104,0.20075092057741842
+20,3,0.1995407287225516,1.3999999999999995,1.385833246374235,0.0006999902947643449,0.03677095373432511,0.6631209028452616,0,0.27485625648886614,0.2319940870900172
+20,4,0.24702283996836058,1.4499999999999995,1.385824010657729,0.0006999070572100991,0.03636253003281925,0.6796630662587407,0,0.3503327751162678,0.22296576640617816
+20,5,0.20797814560503308,1.4499999999999995,1.3859557281946515,0.000700107205220002,0.0367606428609121,0.6796918304267664,0,0.34768722143660535,0.2296775234346364
+20,6,0.24837486619983,1.3999999999999995,1.3860643864254028,0.0007000832680842401,0.03651011875533609,0.6631725771732228,0,0.38212394809442823,0.2517509565401957
+20,7,0.26450433564385056,1.3999999999999995,1.386032736794117,0.00070000535076785,0.03677679152588788,0.6631654725996243,0,0.4130692794874244,0.26425541282960263
+20,8,0.33052228695808095,1.4499999999999995,1.385858603786851,0.0007005328950753732,0.0363646617310736,0.6796708703817849,0,0.5126324118745782,0.2515644073608322
+20,9,0.3174482966606096,1.4499999999999995,1.385765796806651,0.0007007566641647011,0.03672813746461021,0.6796507617001687,0,0.5510995190849884,0.2566949634220473
+20,10,0.3881980895054369,1.4999999999999996,1.3860073877588375,0.0007005575548819947,0.036615532834911195,0.6958066927172966,0,0.655677424249037,0.2530903993527404
+20,11,0.42221553916552795,1.4999999999999996,1.380772571557558,0.0006962671222268291,0.03651568263100008,0.6946957385995893,0,0.754662298363229,0.2345020660674547
+20,12,0.439870015926538,1.4999999999999996,1.3797684805877366,0.000695580974831421,0.036532401752968895,0.6944824445705815,0,0.8224010022622044,0.23636538340552082
+20,13,0.47879696132958194,1.5499999999999996,1.3801744973276533,0.0006964778218083139,0.0365234430069276,0.7102436027107762,0,0.9060372927279691,0.22127348079464765
+20,14,0.5129358743223241,1.5499999999999996,1.3804327050848548,0.0006972338250134534,0.03654722757620766,0.7102970495032159,0,1.0,0.20978624774108026
+20,15,0.4646154317067155,1.5499999999999996,1.3802445258085783,0.0006978250650588893,0.036432408097184996,0.7102585686961091,0,1.0,0.21538477235571832
+20,16,0.5039618712397436,1.4999999999999996,1.3823159796361157,0.0006982267843378949,0.0365722464531287,0.6950238178894452,0,1.0,0.17987290413247836
+20,17,0.49999552538981423,1.4999999999999996,1.3737103907680803,0.0007125050666447267,0.03659881559093929,0.6932027461543508,0,1.0,0.16665175129938067
+20,18,0.45636307967482764,1.5499999999999996,1.375263832473812,0.0007094382434246362,0.03669900852811269,0.7092373025268938,0,1.0,0.18787693224942537
+20,19,0.49890396120838165,1.4999999999999996,1.3750903674658235,0.0007117875569482165,0.036674516060169346,0.6934958462234879,0,1.0,0.1963465373612722
+20,20,0.5001607934106076,1.4999999999999996,1.3775812487530392,0.0007094491248176085,0.03666918930632051,0.6940240578592557,0,1.0,0.20053597803535866
+20,21,0.49323240043161326,1.5499999999999996,1.3820978090326836,0.0006973157602741272,0.03649927542609731,0.7106396001992167,0,1.0,0.17744133477204418
+20,22,0.5030731484100978,1.5999999999999996,1.3816711411721085,0.000703187308574256,0.036506141124019106,0.7257324867980178,0,1.0,0.1769104947003256
+20,23,0.4489430678993341,1.6499999999999997,1.3832288266237294,0.0007021289416976148,0.03653272760117242,0.7407044351121631,0,1.0,0.1631435596644469
+20,24,0.47190260251372396,1.5999999999999996,1.3831799924341355,0.0007032436193515386,0.03666872603613218,0.7260327359509471,0,1.0,0.17300867504574632
+20,25,0.4743093544955588,1.5999999999999996,1.3822774463754548,0.000703706444977741,0.036306364532548985,0.7258533588108043,0,1.0,0.18103118165186255
+20,26,0.49871745167870823,1.6499999999999997,1.3813147523061782,0.0007040731305559449,0.036734678561088065,0.7403373935236808,0,1.0,0.1623915055956941
+20,27,0.4866647447131035,1.6499999999999997,1.3826526297896065,0.0007027002708663919,0.03674301325033713,0.7405939741297556,0,1.0,0.12221581571034495
+20,28,0.47939378170523467,1.6999999999999997,1.3833302657120496,0.0007016392233224499,0.0365173369606441,0.7548656842991476,0,1.0,0.13131260568411557
+20,29,0.4778540251843268,1.7499999999999998,1.3841318983694415,0.0007008789020322721,0.03651327025609214,0.7686197043610976,0,1.0,0.12618008394775607
+20,30,0.4784234803925227,1.7999999999999998,1.384522025246682,0.0007002560621541475,0.036503708570010125,0.7817549027664364,0,1.0,0.12807826797507568
+20,31,0.4809363412423184,1.8499999999999999,1.384613931417161,0.0006997188436163916,0.03647225404114311,0.7942952522654292,0,1.0,0.136454470807728
+20,32,0.4473345581061127,1.9,1.3844943441006365,0.0006992738610781055,0.036520256776558555,0.8062605740031774,0,1.0,0.15778186035370895
+20,33,0.47269706310700793,1.8499999999999999,1.3847955401860723,0.0006998753835558607,0.036626103297468494,0.7943249749403006,0,1.0,0.17565687702335972
+20,34,0.4806243197438959,1.8499999999999999,1.3842701691467434,0.0006998956424980316,0.03669968820949722,0.7942391369471768,0,1.0,0.20208106581298618
+20,35,0.4857643660079051,1.9,1.3828852452025395,0.0006978826932996091,0.036260050840360776,0.806008666663237,0,1.0,0.2192145533596836
+20,36,0.49093837282351394,1.95,1.382137776627165,0.0006974565999029298,0.03641145409416162,0.8173555301019756,0,1.0,0.2364612427450464
+20,37,0.5068563109478351,2.0,1.381303063385893,0.0006970809749341817,0.03655595853370265,0.8281677791815957,0,1.0,0.22285436982611684
+20,38,0.46934411807902726,2.0,1.3816498909669563,0.0006969778317631218,0.036606321807612086,0.8282170998292037,0,1.0,0.23114706026342408
+20,39,0.4967486504719234,1.95,1.3828445729240886,0.00069828404294102,0.0364661190416333,0.8174612677905181,0,1.0,0.2558288349064112
+20,40,0.5219109170231111,1.95,1.3818366062773677,0.0006978435888326873,0.03656935647341471,0.8173106810139152,0,1.0,0.23970305674370365
+20,41,0.5195264582927547,1.95,1.3822574034338955,0.0006976221638350772,0.03655425111858546,0.8173734373965836,0,1.0,0.23175486097584896
+20,42,0.5161812905731783,2.0,1.3823237246695232,0.0006974413527420604,0.03664401275864031,0.8283130791658678,0,1.0,0.22060430191059424
+20,43,0.4991022383545405,2.0,1.3822262017416493,0.0006973149511757573,0.036494209865293954,0.8282991739817577,0,1.0,0.26367412784846816
+20,44,0.5137320175231592,2.0,1.3814306623492194,0.000696787278765684,0.036635347950116734,0.8281858529252638,0,1.0,0.245773391743864
+20,45,0.5119388183259181,2.0,1.3818706061870403,0.0006970936583659518,0.03646469634615042,0.8282485324424225,0,1.0,0.23979606108639354
+20,46,0.5132506597649997,2.0,1.3819819890069758,0.0006974389262215443,0.0363993827273575,0.8282644746158863,0,1.0,0.24416886588333223
+20,47,0.4931648198119488,2.0,1.3818431707756207,0.000697693904848525,0.03662864717081556,0.8282448004170277,0,1.0,0.24388273270649605
+20,48,0.5157810428928252,1.95,1.381148895299235,0.0006969713069144502,0.0364768018928721,0.8172077131738404,0,1.0,0.2192701429760838
+20,49,0.48961392751827965,1.95,1.3809662455081322,0.0006973406435868691,0.03646975955744055,0.8171805378564255,0,1.0,0.23204642506093207
+21,0,0.15220194814941718,1.9,1.3862215875695831,0.0007001782291712941,0.03634179213404211,0.8065305166577685,1,0.11679105157397265,0.21828509173276034
+21,1,0.20238231398466838,1.8499999999999999,1.3862014702482317,0.000700136203610806,0.03674822196897037,0.794554655790665,1,0.1719150466882297,0.2787209843645884
+21,2,0.1756584676792744,1.8499999999999999,1.3861715637056176,0.0007001578200957296,0.036675801576070546,0.794549780934141,1,0.22468975761384552,0.25260854877912053
+21,3,0.19569863961850723,1.7999999999999998,1.3859414518054436,0.0006999334477898614,0.03650502616682087,0.7819968702055022,1,0.24556268028175066,0.25824522501935665
+21,4,0.26236280319332217,1.7999999999999998,1.3859690293545617,0.0006999791564077679,0.03677280215404749,0.7820015871122472,1,0.29169162390415343,0.3189538454388693
+21,5,0.23972530218436058,1.7999999999999998,1.3858911139470296,0.000699993225170082,0.036462812952550036,0.7819883089800863,1,0.30370550385101613,0.3274770021465139
+21,6,0.31296379199456387,1.7499999999999998,1.3859006989362743,0.0007000907419937991,0.036711950689054376,0.7689338444183135,1,0.34761007855064296,0.41306586858102234
+21,7,0.28940238096964277,1.7499999999999998,1.3862173368243373,0.0007001750020232679,0.03662955997138086,0.768990128070303,1,0.3610229556541195,0.4166439956933165
+21,8,0.2911610494016763,1.6999999999999997,1.386150013774048,0.0007001998284133756,0.03660101633112311,0.7553865533119117,1,0.4136880309721085,0.3856194567094431
+21,9,0.3063858011902225,1.7499999999999998,1.3857039233617523,0.0006999725022430929,0.036680039146244514,0.7688988385283053,1,0.416217212318429,0.399663054209503
+21,10,0.30212894092043663,1.7999999999999998,1.3860100215773015,0.0007000356774259728,0.036408488558381955,0.7820085944553421,1,0.45784090716725867,0.36330859351177713
+21,11,0.3043488152731466,1.8499999999999999,1.3859313450954867,0.0007000664893738435,0.03664360997232722,0.7945105349492009,1,0.48800703188180494,0.33048667506808194
+21,12,0.3296708205964058,1.9,1.3858124758016368,0.0007000807269672404,0.03676709231239068,0.8064666408076872,1,0.4989280301729365,0.3669986950907705
+21,13,0.40317416312838245,1.9,1.386045705267264,0.0007000848479981594,0.036751958524398096,0.8065030415267528,1,0.5599682499947733,0.4306228771015772
+21,14,0.38807505889134253,1.9,1.3858631025095924,0.0007003158277978465,0.03638782543578787,0.8064746157963811,1,0.5848964969310532,0.44705486706307074
+21,15,0.40304801630561077,1.95,1.385662301807437,0.0007004035427153476,0.036728174769669976,0.8178819799825467,1,0.6118434058671951,0.4610355131957757
+21,16,0.4110134983975011,2.0,1.3850295039501808,0.0007000913507607257,0.03675077614838333,0.8286982800684957,1,0.6270859081723488,0.4672637837618719
+21,17,0.48180276015656404,2.0,1.3856369246872915,0.0007000947241385944,0.036753027040231104,0.8287844917038063,1,0.6841778277817644,0.5271054301461943
+21,18,0.46411509119658767,2.0,1.3854372777609716,0.0006997556362204167,0.03644090333285961,0.82875606354767,1,0.7137914420520661,0.5286617145858706
+21,19,0.5364966049410643,2.0,1.3858931911275,0.0006999094867547553,0.036655223401668116,0.828820800480252,1,0.7718029565213833,0.5925847411083698
+21,20,0.5001102537394366,2.0,1.3855956144139372,0.0006996913426135585,0.03675636474912215,0.8287785151816566,1,0.8089961304517033,0.5550393385291842
+21,21,0.5265782448763482,1.95,1.3853093461453527,0.0006995690589943482,0.03646192841095713,0.8178291523181126,1,0.8422625088419111,0.5655774711319459
+21,22,0.5412772414206855,1.95,1.3848617934492085,0.0006991670880053358,0.03672876147858717,0.8177623445512604,1,0.8675360329826103,0.5808760940921375
+21,23,0.539524920524798,2.0,1.384284059407023,0.0006987743635214418,0.03650293784309226,0.8285920586426461,1,0.9068624919104583,0.5559330792020486
+21,24,0.5584464801334432,2.0,1.3842253630096497,0.0006987435495044643,0.036484913161575996,0.8285837132402276,1,0.9258962788060621,0.5602932287033946
+21,25,0.6056901857699142,2.0,1.3835660546883526,0.0006982556116668307,0.036537446741074286,0.8284899109164964,1,0.9657022076168089,0.5980310090773017
+21,26,0.6099431360768939,2.0,1.3837468148880299,0.0006984838947913569,0.036696062488468156,0.828515659267396,1,1.0,0.6331437869229797
+21,27,0.6549543120662489,2.0,1.3834586726583586,0.000698837249576218,0.03648717010140795,0.8284748173020157,1,1.0,0.6831810402208295
+21,28,0.608276414206019,2.0,1.383089665961701,0.0006991404360048407,0.036518602913569745,0.8284224596987325,1,1.0,0.6609213806867299
+21,29,0.6139175922519884,1.95,1.3844568100709829,0.0006993532603315209,0.03673859911623502,0.8177020387926822,1,1.0,0.6463919741732944
+21,30,0.6404406747005094,2.0,1.384363376850321,0.0006997845948097735,0.036653928008648626,0.8286036105337163,1,1.0,0.668135582335031
+21,31,0.6052734521822758,2.0,1.3839433786428896,0.0006990710454407487,0.0365567473568831,0.8285437515635115,1,1.0,0.6509115072742525
+21,32,0.6637919491889265,1.95,1.3850445065475085,0.0006993963581247906,0.0367369460224002,0.8177896404991212,1,1.0,0.7126398306297548
+21,33,0.6334360798101506,1.95,1.3847447620318103,0.0006994743419657608,0.0366667794752097,0.8177449946359323,1,1.0,0.7114535993671686
+21,34,0.6769183984490388,1.9,1.3847067802728927,0.0006999339230864051,0.0367145084033856,0.8062939615043376,1,1.0,0.7563946614967958
+21,35,0.6918566120304848,1.9,1.3842547171499802,0.0007002291907651458,0.03673095417706597,0.8062234389546988,1,1.0,0.8061887067682825
+21,36,0.7150860666555661,1.95,1.385293686257544,0.0007009969164063966,0.0365403121372851,0.8178272446853756,1,1.0,0.8836202221852199
+21,37,0.6895464222363799,1.95,1.3847723038073405,0.000701371075328432,0.03670113332480857,0.8177496647349785,1,1.0,0.8984880741212659
+21,38,0.7356631924032347,1.9,1.384448776727099,0.0007022177970158418,0.03636628251192609,0.8062543758126938,1,1.0,0.9522106413441156
+21,39,0.7075412546140862,1.9,1.383660450604503,0.0007029262239100405,0.03651066211400186,0.8061314244629205,1,1.0,0.9584708487136206
+21,40,0.75,1.8499999999999999,1.3831151852028143,0.0007040838359334609,0.03671680687841925,0.7940516913023896,1,1.0,1.0
+21,41,0.72,1.8499999999999999,1.3820831634735713,0.0007051270129695706,0.03655496914801286,0.7938832112497882,1,1.0,1.0
+21,42,0.75,1.7999999999999998,1.3813031088720198,0.0007065955834165338,0.0367803159809036,0.7812073790807872,1,1.0,1.0
+21,43,0.72,1.7999999999999998,1.380020618816165,0.0007080081053560653,0.036768326735707686,0.780988576946649,1,1.0,1.0
+21,44,0.7023521443945844,1.7499999999999998,1.3790084655257517,0.0007097685401412178,0.03636377469184289,0.7677104522483995,1,1.0,0.9745071479819477
+21,45,0.6880538514095085,1.7999999999999998,1.379878693237299,0.0007074675239673437,0.036497891910771796,0.7809641153156089,2,1.0,0.9268461713650281
+21,46,0.7414925290192014,1.8499999999999999,1.3840594112379323,0.0007020457412637218,0.03667765145157561,0.7942053948907953,2,1.0,0.9716417633973377
+21,47,0.7799999999999999,1.8499999999999999,1.384046127633116,0.0007008016653089017,0.03674419106635474,0.7942028170926719,2,1.0,1.0
+21,48,0.75,1.8499999999999999,1.385332993939937,0.0007005148090731508,0.036597951239270045,0.7944129752436581,2,1.0,1.0
+21,49,0.75,1.7999999999999998,1.3850563100967523,0.0006997813422740948,0.03652586604390305,0.7818458836734952,2,1.0,1.0
+22,0,0.015516798054678524,1.8499999999999999,1.3862788331058835,0.0007001642468131774,0.036353364652249025,0.7945672931815935,1,0.14080634485173604,0.16398086704661372
+22,1,0.060821879810720264,1.7999999999999998,1.385785851955688,0.0007001653589559321,0.03673899728170401,0.7819704218052377,1,0.16608592500132938,0.18129169936729503
+22,2,0.033572381104887555,1.7999999999999998,1.38572720094393,0.00070017030952484,0.03665568685157397,0.7819604237597425,1,0.19742424828108673,0.14867560597484292
+22,3,0.15558968072065532,1.7499999999999998,1.3857614298056204,0.0007002933352103645,0.036574376308756845,0.7689091709029314,1,0.26327283585441075,0.13426848792963672
+22,4,0.17834107226237683,1.7499999999999998,1.3859987005045213,0.0007001312385000452,0.03676463096565597,0.7689512707372286,1,0.29047857492139234,0.14049880764606631
+22,5,0.1770011011118167,1.7499999999999998,1.3860240913122055,0.0007002581403165359,0.03639460726329581,0.7689558268611609,1,0.3354637994954553,0.1093852710454485
+22,6,0.18390592268649716,1.7999999999999998,1.386013952403048,0.0007001587228630058,0.036765430893390086,0.7820093064982941,1,0.3829871128327815,0.06903692517794854
+22,7,0.2391555373124938,1.8499999999999999,1.3859849014017733,0.0007000573362905833,0.03670676647300382,0.7945192756150616,1,0.41457831523794536,0.11108070405771883
+22,8,0.21964588860518558,1.8499999999999999,1.3861427747714552,0.0007001005535534293,0.03638620550224407,0.7945450626796502,1,0.44528435020421103,0.10510716174500379
+22,9,0.232785894504077,1.9,1.3861808673912261,0.0007000930380472203,0.03673320754307937,0.8065241360538755,1,0.48197076141324147,0.09999196646260126
+22,10,0.24952131784701584,1.95,1.3861785408313194,0.0007000963059551745,0.03677604168732612,0.8179587702108652,1,0.49068139786834314,0.1108291956655953
+22,11,0.31407702866804815,2.0,1.3862481170094956,0.0007001450538593969,0.03665393140541135,0.8288712172081619,1,0.5248304805806053,0.18048278811935337
+22,12,0.29215267998697814,2.0,1.3861698594522325,0.0007001230186632278,0.0364281288884968,0.8288601103278088,1,0.541696755078886,0.18491325985141233
+22,13,0.3280025497212447,1.95,1.3862013874375458,0.0007002286728648762,0.03670064084279824,0.8179622115154271,1,0.5606232909626895,0.21251077778722963
+22,14,0.3064830130263152,1.95,1.385987964421246,0.0006999751369660757,0.03661598223945526,0.8179303551516514,1,0.591188674583955,0.20002514397577734
+22,15,0.3161510883512811,1.9,1.3858619218531438,0.00069994307574594,0.03654409041266189,0.806474315173951,1,0.6380131823916954,0.16981938464867638
+22,16,0.3217579456703401,1.95,1.3862943611198844,0.0007001722195526524,0.036709825353979306,0.8179760380796509,1,0.6777543920465522,0.13552062950573068
+22,17,0.39997974276995535,2.0,1.3862695318186877,0.0007001709894427567,0.03658977065071316,0.8288742621005171,1,0.7268213405334253,0.19750402185528415
+22,18,0.434709687480054,2.0,1.3862485725365523,0.000700142862185966,0.0364676573181415,0.8288712812000556,1,0.7767992597728975,0.2466332785696499
+22,19,0.4084834156267111,2.0,1.3862354174993428,0.0007002032512065605,0.03667677323498579,0.8288694323648386,1,0.7864941445531806,0.24628585935146277
+22,20,0.4752458574475133,1.95,1.3861028320544952,0.0007002212569334986,0.036770292110511436,0.8179475339472608,1,0.8409640768071873,0.29620075574879456
+22,21,0.4898088833798642,1.95,1.3856017438594543,0.000699706576964574,0.03660066182662298,0.817872752003519,1,0.8692364932874422,0.34038095354962433
+22,22,0.5460109564849661,2.0,1.3852809176714893,0.0006995914680519224,0.03675941104989256,0.8287338252668508,1,0.9214029222345816,0.4248326253037781
+22,23,0.5192079536581881,2.0,1.3833536473015904,0.0006981478883167444,0.03668000808010366,0.8284596962969266,1,0.9247322168224744,0.4310502230973276
+22,24,0.563394623270786,1.95,1.3826013134298565,0.0006975656297088586,0.036526577813565726,0.8174247517744543,1,0.9495483663657294,0.478584255748314
+22,25,0.5862491179186539,1.95,1.3824918583327788,0.0006975938884541038,0.036638548328663936,0.817408424396424,1,0.9799712172877673,0.5142021033451565
+22,26,0.571588600497897,1.95,1.3821918248778258,0.0006977067481817727,0.03636951763148859,0.8173636732663786,1,0.9807090005110652,0.5310166676449026
+22,27,0.6295253279618627,2.0,1.381356899070696,0.000696870474107658,0.03648429448791003,0.8281753802733783,1,1.0,0.5984177598728754
+22,28,0.5757359409336212,2.0,1.383143017539674,0.0006979783151035273,0.03651035941703975,0.8284297125357977,1,1.0,0.5524531364454041
+22,29,0.5873710059344904,1.95,1.3834415766334869,0.0006982318003695131,0.03667104169766769,0.8175503192267566,1,1.0,0.5579033531149679
+22,30,0.6373780146473024,2.0,1.3825269532045623,0.0006975135739685696,0.03656195411925515,0.8283419990120895,1,1.0,0.6245933821576743
+22,31,0.6327187090699795,2.0,1.3840468516249111,0.00070038035891344,0.03658549377018361,0.8285588223064246,1,1.0,0.6423956968999315
+22,32,0.6095459078446126,2.0,1.3837059136311747,0.0006994834361293174,0.036697401940893846,0.8285101320746004,1,1.0,0.6318196928153752
+22,33,0.6450374609432034,1.95,1.3836369620531361,0.0007001550291558156,0.0364691177177379,0.8175800351310274,1,1.0,0.6834582031440111
+22,34,0.629746079396837,1.95,1.3831115762840969,0.0006992183567229493,0.036668692295828295,0.8175013849986007,1,1.0,0.6991535979894568
+22,35,0.6093412401798335,2.0,1.3828729545093346,0.0006997785276431233,0.03628344816593484,0.8283918358456076,1,1.0,0.6644708005994447
+22,36,0.6509219006851971,1.95,1.3844145884210683,0.0006998145583527156,0.03654782379662123,0.8176958824513212,1,1.0,0.7030730022839902
+22,37,0.6117363092393462,1.95,1.383880536121814,0.0006990243010453034,0.036634565739867106,0.8176160224408918,1,1.0,0.6724543641311538
+22,38,0.6288694617324035,1.9,1.385017430141618,0.0006993825308893732,0.0364836607394998,0.8063423032252073,1,1.0,0.6962315391080117
+22,39,0.6349065862285019,1.95,1.3847663806229074,0.0006994958380846574,0.03644298646513088,0.8177482230153331,1,1.0,0.7163552874283395
+22,40,0.6158016890037863,2.0,1.384390788163935,0.0006995951566094033,0.03664964212169182,0.8286074496373488,1,1.0,0.6860056300126208
+22,41,0.60876129201737,2.0,1.3853011621799673,0.000699705453892042,0.03675000727487142,0.8287367309897705,1,1.0,0.6625376400578997
+22,42,0.6208668549035211,2.0,1.3857676264447871,0.0006998209456662422,0.036591682405572416,0.8288029598931939,1,1.0,0.6695561830117368
+22,43,0.6467332914032168,2.0,1.3853617483360494,0.0006996643211460065,0.03653967977791948,0.8287453182669509,1,1.0,0.6891109713440559
+22,44,0.6310298015308494,2.0,1.3851170013219947,0.0006993485308074466,0.03674430321252807,0.8287104897286277,1,1.0,0.7034326717694981
+22,45,0.6321399121974687,2.0,1.3845991524398216,0.0006991028342411229,0.03657503328631033,0.8286368990933146,1,1.0,0.7071330406582287
+22,46,0.6614932771938153,2.0,1.3838869484810505,0.0006987918409319796,0.036429154850284556,0.8285356556723563,1,1.0,0.7383109239793844
+22,47,0.675963386870985,2.0,1.3835153317521383,0.0006983016603106904,0.03666866759628702,0.828482716439255,1,1.0,0.7865446229032831
+22,48,0.6323230645042635,2.0,1.3828986058830004,0.0006978167222631499,0.03649560246072103,0.8283949246163166,1,1.0,0.741076881680878
+22,49,0.6432668833987384,1.95,1.3836700532079427,0.0006985097614682791,0.03644302971844532,0.8175844796404018,1,1.0,0.7442229446624611
+23,0,0.138764764471481,2.0,1.386214609198583,0.0007001398040213362,0.03634281328497892,0.8288664627938078,0,0.12089823804475519,0.23468489751192978
+23,1,0.2051915330640079,1.95,1.3862064337123372,0.0007001608211666998,0.03673578467045149,0.8179629426985235,0,0.2210882634410195,0.22252075895866702
+23,2,0.22312494406587777,1.95,1.3860052421699829,0.0006999687477679121,0.03671312801808117,0.8179329262419158,0,0.2950246870439416,0.21705023082767047
+23,3,0.2226524652925981,2.0,1.3860826058570186,0.0007000326804981266,0.03637890582821514,0.8288477073298988,0,0.3267616934479968,0.23982595971133122
+23,4,0.26696698660391277,2.0,1.3860158019504911,0.0006999747170332416,0.036713551055679125,0.8288382139279261,0,0.3999384802827689,0.22330531496935072
+23,5,0.30776442848972385,2.0,1.386056398351578,0.0007000244883540438,0.036741529036766016,0.8288439871981832,0,0.4892732055724747,0.20685048753577995
+23,6,0.3416920345505039,2.0,1.3855419751709452,0.0007008467844945261,0.03634846525723355,0.8287712313239385,0,0.5927999713907084,0.18190681998073518
+23,7,0.36497033115005545,2.0,1.3861965727746277,0.000700232036858716,0.03671254136026917,0.8288639305348992,0,0.6729731975030461,0.1859368404961234
+23,8,0.3824589155758456,2.0,1.3852081721495417,0.0007014904573808811,0.03674181727929736,0.8287240390394639,0,0.7263440753925442,0.17307095139609321
+23,9,0.4233383444235208,2.0,1.3853721982852918,0.0007010152309988957,0.03636881191407963,0.8287471848436229,0,0.8257321960092535,0.14348488673273138
+23,10,0.4438132096131361,2.0,1.3804504526995363,0.000699691884182571,0.03656299276959214,0.8280471572026944,0,0.9031563842783401,0.14183551967266667
+23,11,0.40967598798441957,2.0,1.3805083572140187,0.0006986548195632051,0.03662022279480395,0.8280551064700022,0,0.9081302810983257,0.1547462518169642
+23,12,0.4503454686779221,1.95,1.3810427065860253,0.0007003292698867641,0.03652774150177522,0.8171928535329599,0,0.9360070566049358,0.1864754867864925
+23,13,0.4976045307480198,1.95,1.3799447929989563,0.0007003215626549236,0.03662062757772993,0.8170287782300804,0,1.0,0.19201510249339934
+23,14,0.4591275658037178,1.95,1.3798711798024743,0.0006990326663069388,0.03639008654600955,0.8170173879541717,0,1.0,0.19709188601239258
+23,15,0.4995099991296053,1.9,1.380279182964801,0.0007008112078206011,0.03640729068808078,0.805601778441924,0,1.0,0.19836666376535098
+23,16,0.5056310354807109,1.9,1.379874380953912,0.0006994588109442156,0.03657631800293046,0.8055379518506642,0,1.0,0.18543678493570293
+23,17,0.45701237605773304,1.95,1.3818373300713138,0.0006992212765511542,0.03647494521885376,0.8173112005018014,0,1.0,0.19004125352577675
+23,18,0.48756008293971953,1.9,1.3822148840445014,0.0007004607893349331,0.036512183183779856,0.805904634909524,0,1.0,0.22520027646573162
+23,19,0.47043778000303027,1.9,1.383059457321529,0.0007018254778014532,0.03662263447143096,0.8060371376336829,0,1.0,0.23479260001010088
+23,20,0.49562682520726153,1.95,1.3842847792143194,0.0007014053618632243,0.03655312938286456,0.8176770054009613,0,1.0,0.25208941735753826
+23,21,0.4752440891848232,1.95,1.3842325698044886,0.0007006404746202797,0.036598434873071704,0.8176689937556443,0,1.0,0.2508136306160773
+23,22,0.48028251441688236,1.9,1.3851222294434393,0.0007004883478217774,0.03676102045501263,0.8063590129051486,0,1.0,0.26760838138960785
+23,23,0.4831018868082672,1.95,1.38570250254698,0.0007003778235040127,0.03660829086025467,0.8178879601866524,0,1.0,0.2770062893608906
+23,24,0.48718974484977595,2.0,1.3860749246210962,0.0007002852649869798,0.03664053483007732,0.8288466893364853,0,0.9994025199212243,0.29142912293762074
+23,25,0.5149709500752202,2.0,1.3862473790185699,0.0007002191359435939,0.036643409115214395,0.8288711335449227,0,1.0,0.31656983358406726
+23,26,0.4992657827895117,2.0,1.3862111559116723,0.0007001174606760948,0.036779538639327675,0.8288659666167016,0,1.0,0.3308859426317058
+23,27,0.5422313828667654,2.0,1.386276509147875,0.0007001813898893394,0.036523798355522635,0.8288752547250382,0,1.0,0.30743794288921794
+23,28,0.5197568886521524,2.0,1.3862164175255578,0.0007001223209950743,0.03663260994962887,0.8288667143393212,0,1.0,0.3325229621738413
+23,29,0.5413392798555297,1.95,1.3861396021934267,0.000700083799453928,0.03677966848032318,0.8179529683648529,0,1.0,0.337797599518432
+23,30,0.5393105579231652,1.95,1.386213026220069,0.0007001266386788723,0.03670053864820107,0.8179639141385402,0,1.0,0.33103519307721707
+23,31,0.542558174477351,2.0,1.3861376941762107,0.0007001634815207286,0.0367562084505679,0.8288555590817193,0,1.0,0.3085272482578367
+23,32,0.5211145971618067,2.0,1.3860812746595588,0.0007003168279742424,0.03678636178250384,0.8288475991051434,0,1.0,0.33704865720602223
+23,33,0.5296143512312286,1.95,1.38601603951263,0.0007000832341439998,0.03655852898672197,0.8179345682602118,0,1.0,0.3653811707707619
+23,34,0.512229336171054,2.0,1.3858204464934312,0.0006998609070684907,0.03672809466983548,0.8288104656662457,0,1.0,0.3740977872368468
+23,35,0.5552960067373638,2.0,1.3861064844793087,0.0007000562932774377,0.03677971740402011,0.8288511014044795,0,1.0,0.3509866891245456
+23,36,0.5041855793488795,2.0,1.386040632371414,0.0007000035127690489,0.036566980633761154,0.8288417446475868,0,0.9948372413568173,0.3541689426871752
+23,37,0.5332526545183367,1.95,1.3861754994319713,0.0007001094097469588,0.03658922965558298,0.817958321241686,0,1.0,0.37750884839445575
+23,38,0.5536708802631755,1.95,1.3860063103314746,0.0007000817726332497,0.036364499646892104,0.8179331189740302,0,1.0,0.3789029342105848
+23,39,0.5179379064297234,1.95,1.3861356667617228,0.000700068708468272,0.03675209415183532,0.8179523778607956,0,1.0,0.3931263547657445
+23,40,0.5657491094679363,1.9,1.386220068405768,0.0007002184513061232,0.03670873240398605,0.8065302921612495,0,1.0,0.385830364893121
+23,41,0.5538303871806792,1.9,1.386199883713053,0.0007001095509641331,0.03675435235334527,0.8065271085529997,0,1.0,0.3794346239355971
+23,42,0.558874318577299,1.95,1.3862542923402361,0.0007001735343051397,0.03637040440685101,0.8179700725049046,0,1.0,0.3629143952576631
+23,43,0.5467575861066823,2.0,1.3861457575854408,0.0007002103196783009,0.03668439097035158,0.8288567161940017,0,1.0,0.35585862035560767
+23,44,0.507311387932526,2.0,1.3860935086398665,0.0007004001185129923,0.036785158351704365,0.8288493582323888,0,0.997452963998401,0.36110067444388516
+23,45,0.5502623577320572,1.95,1.3862221361835843,0.0007002635846720382,0.03663193205168516,0.8179653113805958,0,1.0,0.33420785910685735
+23,46,0.5051223934459097,1.95,1.386076677872441,0.000700367481154115,0.03664520623947767,0.8179436828612477,0,1.0,0.3504079781530322
+23,47,0.5512533044514989,1.9,1.3861045555057778,0.0007001725479220699,0.03650092382106575,0.8065122526583702,0,1.0,0.33751101483832924
+23,48,0.5281867282119684,1.9,1.385866125388851,0.0007002102743185056,0.036536572979732965,0.8064750546386124,0,1.0,0.3606224273732279
+23,49,0.5544227565938871,1.8499999999999999,1.3860674714083356,0.0007001051158146772,0.03677944399114537,0.7945327711341539,0,1.0,0.3480758553129568
+24,0,0.1804537300578654,1.8499999999999999,1.3862818424185321,0.0007001649014321931,0.036352695456020524,0.7945677846052985,1,0.1407401609318875,0.24719221895036805
+24,1,0.2132422886940416,1.7999999999999998,1.3862576540075087,0.0007001581684992747,0.03675761678444044,0.7820508474496918,1,0.17126284709124123,0.31579049952515037
+24,2,0.22102565808672434,1.7999999999999998,1.3862056314026925,0.0007001469460420895,0.03664998475351643,0.7820419763802547,1,0.19917584750898387,0.337851063610436
+24,3,0.2756753966617336,1.8499999999999999,1.3861967337452408,0.0007001131346710109,0.036567501859532704,0.794553875082964,1,0.26512155099467866,0.3987559208795403
+24,4,0.2873355711406137,1.8499999999999999,1.3859172332254328,0.0007000884087472132,0.03677468413140534,0.7945082381430252,1,0.2950262952301236,0.431083510161881
+24,5,0.30694315495377805,1.9,1.3860713147086097,0.0007000295639480361,0.03655485728636983,0.8065070207448974,1,0.32852307301721934,0.45177975248963437
+24,6,0.2934787687812365,1.95,1.3861945468283383,0.0007001056898151515,0.03654874500496251,0.8179611563217591,1,0.33285661330902655,0.4677870781920863
+24,7,0.3577866466227835,2.0,1.3861358191782167,0.0007000676167129569,0.03676377090842873,0.8288552659078977,1,0.37564834086736554,0.5250910342527909
+24,8,0.32950155604140346,2.0,1.386184829019736,0.0007001614304426548,0.0367521884341067,0.8288622446632851,1,0.42005960547760474,0.5049257128345385
+24,9,0.32950875179067507,1.95,1.3852408057087118,0.0007005271595890242,0.03636019834982286,0.8178192261208641,1,0.4560578323175405,0.4569520628788628
+24,10,0.3754025029013534,2.0,1.3852085044999114,0.0007001559668978706,0.03674794703068072,0.8287237073766797,1,0.4868503482939789,0.46887454527920625
+24,11,0.3611199357848488,2.0,1.3856441444609557,0.0007000786994537406,0.03675543188157232,0.8287855116449218,1,0.49698853755506267,0.4744150692094124
+24,12,0.40237670779878215,2.0,1.3853579428941314,0.000700056301777788,0.03645559148484229,0.8287448894383033,0,0.5347649210271077,0.4949024646264637
+24,13,0.4318469423181093,2.0,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8288777842514964,0,0.611673401641344,0.49059193887190566
+24,14,0.4780267415070211,2.0,1.3862943611198846,0.0007001722195526525,0.03676835788889028,0.8288777842514964,0,0.7171999323218827,0.4704892285942267
+24,15,0.47015903189349495,2.0,1.3862407843927431,0.0007001716349733162,0.03645190376429853,0.8288701846607625,0,0.7547207510797443,0.4942357715386574
+24,16,0.48710902064678563,2.0,1.3862175583021488,0.0007001177579817775,0.03668159577682902,0.8288668748601418,0,0.7808725545162691,0.5158666628009264
+24,17,0.5119428634217857,2.0,1.3860801217010086,0.0007000665836379692,0.03676696868106317,0.828847364548222,0,0.8258289213748451,0.5387043162394922
+24,18,0.49570804480017244,2.0,1.3793939298967004,0.0006988782050044325,0.03622419307781605,0.8278964401223734,0,0.8294157373631826,0.5464724995163311
+24,19,0.5710996507289992,2.0,1.3794497079379267,0.000697833774030004,0.036484779349426545,0.8279040898326719,0,0.9099239566563476,0.5237668935548666
+24,20,0.6026049247972347,2.0,1.3802781212275326,0.0007000135550453774,0.03664954999428497,0.8280227100006579,0,0.9985840762961412,0.5105709809292606
+24,21,0.5821747220755096,2.0,1.3806090916734728,0.0007021317650998819,0.036511888914869436,0.8280704385792237,0,1.0,0.5405824069183652
+24,22,0.605373145921758,1.95,1.3823851060977317,0.0007012480592695552,0.03660689803969171,0.8173935817386853,0,1.0,0.5512438197391928
+24,23,0.5922336093665923,1.95,1.3810859263792838,0.0007013409831704662,0.036352889410559475,0.8171996122614724,0,1.0,0.5741120312219742
+24,24,0.6117361880605845,2.0,1.3824229663168424,0.0007004817230485637,0.036551125777233025,0.8283280565997247,0,1.0,0.572453960201948
+24,25,0.6150514798782571,2.0,1.381261739621739,0.0007003589366269315,0.03649919769171285,0.8281628314559698,0,1.0,0.5835049329275237
+24,26,0.6012855239989718,2.0,1.379796383783027,0.0007002305415064154,0.03665315365067438,0.8279541610349582,0,1.0,0.6042850799965727
+24,27,0.5835124914077854,2.0,1.3856529904895019,0.0007003725338136623,0.036529815176869075,0.8287868502832357,0,1.0,0.6117083046926179
+24,28,0.6065815409204658,2.0,1.385929098300522,0.0007001548929053025,0.03663104370821956,0.8288259644510854,1,1.0,0.6219384697348859
+24,29,0.6378511894826611,2.0,1.3842919923164074,0.0006994455926739706,0.0367125152490406,0.8285933759936801,1,1.0,0.6595039649422034
+24,30,0.6451739936994325,2.0,1.3835146014071635,0.0006993347208581892,0.03642689329324028,0.8284829062517629,1,1.0,0.6839133123314417
+24,31,0.6078679131203336,2.0,1.3825215962166815,0.0006992136958345767,0.03651261644829632,0.8283417207794632,1,1.0,0.6595597104011118
+24,32,0.667036964123317,1.95,1.3829534464708866,0.0007006976016922237,0.03672100959659051,0.8174782334028929,1,1.0,0.7234565470777233
+24,33,0.6646888745700493,1.95,1.384086701180217,0.0007001989523520808,0.03667722726644289,0.817647114056162,1,1.0,0.7489629152334976
+24,34,0.6485297429991407,2.0,1.3830431896973037,0.0007001568067389464,0.03664951661386599,0.8284161424624878,1,1.0,0.7617658099971355
+24,35,0.6510529975031607,2.0,1.3832078989970678,0.0006992677769566555,0.03668208082873879,0.8284393007320332,1,1.0,0.7701766583438687
+24,36,0.6799559119770474,2.0,1.382934216057628,0.0006984790747049076,0.03643595728609288,0.8284001750959321,1,1.0,0.7998530399234913
+24,37,0.6388357862900522,2.0,1.3818945691050124,0.0006981847303421453,0.036437794052421785,0.8282522516214083,1,1.0,0.762785954300174
+24,38,0.6937961014465746,1.95,1.3825451672933329,0.0006997555509838179,0.03671297144446203,0.8174170259667485,2,1.0,0.8126536714885815
+24,39,0.6364096346797947,1.95,1.385313935169079,0.0007002334838667169,0.036744532767857906,0.8178300339886433,2,1.0,0.7880321155993157
+24,40,0.6721327175413631,1.9,1.3753020678608912,0.0007014225334162786,0.03651112787255208,0.8048213309301985,2,1.0,0.8071090584712102
+24,41,0.7063300027132836,1.9,1.3850379540595419,0.0007005886417957791,0.03674119112547131,0.8063458847790261,2,1.0,0.8544333423776118
+24,42,0.6927557678235572,1.9,1.3847618413233285,0.0006998181916502067,0.03635080712448911,0.8063025248653282,2,1.0,0.8758525594118572
+24,43,0.6989818839330613,1.95,1.3844947056949308,0.0007002210825161496,0.03670443293704613,0.8177079463697403,2,1.0,0.8966062797768707
+24,44,0.7303642142318282,2.0,1.384050568497907,0.0007005904026542808,0.03646830762450249,0.8285594099571396,2,1.0,0.9345473807727604
+24,45,0.7411542598845531,2.0,1.383726416228468,0.0006995380293153774,0.03655731034344819,0.8285130605995253,2,1.0,0.9705141996151766
+24,46,0.6787582591590728,2.0,1.3831006591927797,0.0006985940875805605,0.03646227538013304,0.8284238669431023,2,1.0,0.9291941971969097
+24,47,0.770004604073712,1.95,1.3830359434831796,0.0006991890411909916,0.036683279158264595,0.8174900921052024,2,1.0,0.9666820135790398
+24,48,0.6735780168378871,1.95,1.3846128493762873,0.0006994139912004074,0.03672186407604281,0.817725315807277,2,1.0,0.9119267227929572
+24,49,0.6673767320153722,1.9,1.384377878370721,0.0006997544210191081,0.036596614247953324,0.8062425310296047,2,1.0,0.8912557733845738
+25,0,0.026733922908481367,1.95,1.3860172627046485,0.0007000621259691381,0.03641800795373129,0.8179347441282201,1,0.15938246987254265,0.17660311653154767
+25,1,0.03325935536644775,1.9,1.3858216193520234,0.000700443358927646,0.03672809413952668,0.8064681811097828,1,0.19209059960789598,0.15474371841096446
+25,2,0.15936830107166206,1.95,1.3858083675324142,0.0007005458722159086,0.03671239231501401,0.8179037780113103,1,0.2218797223146195,0.16872137381938085
+25,3,0.1596089497540235,1.95,1.3861262438758546,0.0007000887819198065,0.036375090816757244,0.8179509807078214,1,0.2687875847460366,0.14031305285202955
+25,4,0.24009586208236144,2.0,1.3860908552989626,0.0007000411460468649,0.03674905558988008,0.8288488799876567,1,0.3274907307437347,0.19699856594955853
+25,5,0.21839334052415102,2.0,1.3860234335696358,0.0007000224561395924,0.036741082741090746,0.8288393101331225,1,0.38853293488982577,0.17660055522740228
+25,6,0.24182707134532241,1.95,1.3859619358279434,0.000699953896528129,0.036389681832245245,0.8179264726075616,1,0.4066627664953287,0.19720654915730307
+25,7,0.31671517539979466,1.95,1.3862284506670628,0.0007001329243566421,0.03676763819029426,0.8179662126830707,1,0.4753461344971315,0.25525573866980683
+25,8,0.3091748517890431,1.95,1.3859053560424985,0.00069995711157181,0.03667652898605286,0.8179180473959166,1,0.4995663324098768,0.2978277294169745
+25,9,0.3166744181678162,2.0,1.3860436604140978,0.0006999974908553914,0.03646735663028974,0.8288421725061309,1,0.5138430451913266,0.30379066697095186
+25,10,0.361408203475213,2.0,1.3860960293794427,0.0007000456365346562,0.036696974305388784,0.828849615247282,1,0.5608068343673953,0.3236182324275163
+25,11,0.40737281847536105,2.0,1.386223244315135,0.0007001293181111243,0.036760419368322715,0.828867684679639,1,0.6086138910971582,0.37975754012165924
+25,12,0.4531647288321209,2.0,1.3859150396164137,0.0007006661370383748,0.036448279244056726,0.8288241149526206,2,0.6674704697599696,0.4539218030937768
+25,13,0.5137175444644501,2.0,1.386213339177906,0.0007001174211845999,0.036695040015328945,0.8288662762954255,2,0.7269593108502961,0.47644606708110554
+25,14,0.4793966003860838,2.0,1.3862565346773483,0.0007002174419799734,0.0367663955139393,0.8288724317336857,2,0.7675563282854909,0.4745802302396248
+25,15,0.56728590726607,1.95,1.3862541032718414,0.0007001478325051771,0.03644450395455374,0.8179700366998164,2,0.8489746084142112,0.492320213001285
+25,16,0.5279557529233605,1.95,1.3829386467680982,0.0006981037598803145,0.0366503742132056,0.8174752511145852,2,0.8671960989142384,0.5035910445255503
+25,17,0.5580810336199553,1.9,1.382131467487978,0.0006977982262609088,0.03641944398751856,0.8058907533497659,2,0.9154418794635462,0.5396809394484562
+25,18,0.6018915290649949,1.9,1.380979303897134,0.0006973213434995798,0.03660628061172357,0.8057103065963853,2,0.9657099525111478,0.5520251602017856
+25,19,0.552608721586738,1.9,1.3821081771798096,0.0006974717515766025,0.03653149500288195,0.8058870078582772,2,0.9932008556122819,0.5177612644727507
+25,20,0.5885595663626828,1.8499999999999999,1.3831630367170593,0.0006988286140655848,0.0364951977074484,0.7940577977551331,1,1.0,0.5285318878756092
+25,21,0.5584602544119511,1.8499999999999999,1.383371641133328,0.0006981977001468812,0.03654294620704664,0.7940917024237072,1,1.0,0.4948675147065036
+25,22,0.5695779236515206,1.7999999999999998,1.383520193635193,0.0006982248119629289,0.03649724518058893,0.7815832343335999,1,1.0,0.49859307883840187
+25,23,0.5510706766049269,1.8499999999999999,1.3825468670710999,0.0006975401074888147,0.03642086312093449,0.7939565956965932,1,1.0,0.47023558868308984
+25,24,0.5980542944465255,1.9,1.3825654151196942,0.0006975906928181658,0.03636665361250456,0.80595856222265,1,1.0,0.5268476481550846
+25,25,0.6124173997968645,1.9,1.3828179281778479,0.0006979751832492612,0.03634878970289686,0.8059981697686246,1,1.0,0.5747246659895482
+25,26,0.5732404778879732,1.95,1.3826483383306247,0.0006983134851591874,0.03658324809613115,0.8174319929531013,1,1.0,0.544134926293244
+25,27,0.6112298602373332,1.9,1.3825945880223762,0.0006988043922139477,0.0365712723631162,0.8059635041257358,1,1.0,0.5707662007911102
+25,28,0.6001789425967717,1.9,1.3821742853523296,0.0006992853382884642,0.03651614666545765,0.8058979165446031,1,1.0,0.6005964753225724
+25,29,0.6323067488085818,1.95,1.3829314298529076,0.0006996241341462991,0.03666350058064702,0.8174746279901665,1,1.0,0.6410224960286062
+25,30,0.6426351006584171,1.95,1.3819649918576709,0.0006995431432112319,0.03657597423130333,0.8173303574811455,1,1.0,0.6754503355280569
+25,31,0.6493258491572023,2.0,1.380681644562149,0.0006994424424157004,0.03665383771705373,0.8280800019511974,1,1.0,0.6977528305240075
+25,32,0.6121212282641927,2.0,1.3793412972191113,0.0006992446795000218,0.036618999904852866,0.827889045119515,1,1.0,0.6737374275473088
+25,33,0.6294798128884849,1.95,1.3799571190591793,0.0007017692089043817,0.03652716354692574,0.8170310537010343,1,1.0,0.698266042961616
+25,34,0.6781175069319645,2.0,1.379915575220971,0.0007001629138036916,0.036547847015105564,0.8279711194579018,1,1.0,0.7603916897732146
+25,35,0.684602546493483,2.0,1.3820094275336205,0.0006995696847809678,0.036655873280384485,0.82826898366037,1,1.0,0.8153418216449431
+25,36,0.6434626927943955,2.0,1.3810201941016649,0.0007047831268655096,0.03657818101531828,0.8281297139936338,1,1.0,0.7782089759813183
+25,37,0.6600269557157673,1.95,1.3823228115797477,0.000699593967477839,0.03646022086550266,0.8173837895893422,1,1.0,0.800089852385891
+25,38,0.6916175385796546,2.0,1.3806465259720073,0.0007014463738843089,0.03650403407617041,0.8280755728735953,1,1.0,0.8387251285988482
+25,39,0.7243136016250431,2.0,1.3829993730063483,0.0007009432877816133,0.0365000652850788,0.8284101377356993,1,1.0,0.914378672083477
+25,40,0.7246578088011497,2.0,1.3824146128495338,0.0007016002555197984,0.036459368150208296,0.8283271868413582,1,1.0,0.9488593626704986
+25,41,0.6870957822408919,2.0,1.3841885503530635,0.0007010769714690182,0.03674370398363487,0.828579147434041,1,1.0,0.9236526074696396
+25,42,0.6773448320473185,1.95,1.3839437417413856,0.0007000784815382561,0.0365707661826129,0.8176257618636952,1,1.0,0.8911494401577286
+25,43,0.6903405481424789,2.0,1.383408174059498,0.000699128855188341,0.03657896086400199,0.828467723994776,1,1.0,0.9011351604749298
+25,44,0.673033654902929,2.0,1.383290493192064,0.0006997692749176504,0.03671148389445111,0.8284511818760737,2,1.0,0.8767788496764297
+25,45,0.6490973923187665,2.0,1.3846505590125964,0.0006994397558336865,0.036576791674022176,0.8286442942706338,2,1.0,0.8303246410625551
+25,46,0.6826009736195513,1.95,1.3844253123698531,0.0006997622228924142,0.03650385792078851,0.8176974654545774,2,1.0,0.8420032453985044
+25,47,0.6864046756018898,1.95,1.3841312819121325,0.00070023667300259,0.03645449633783779,0.8176537722110271,2,1.0,0.8546822520062992
+25,48,0.7438491343644796,2.0,1.383667643630321,0.000700661685712185,0.03671498610137846,0.8285050293848221,2,1.0,0.8794971145482656
+25,49,0.7490961630288125,2.0,1.385062933389683,0.0007003988361032152,0.036468031712224284,0.828703112871754,2,1.0,0.8969872100960418
+26,0,0.10224622789794897,2.0,1.386143744399969,0.0007000718324584958,0.03633469150290276,0.8288563913271072,0,0.10377240646040516,0.2024575510459564
+26,1,0.14777245360085625,1.95,1.3861373976604223,0.0007000863048006833,0.03673213411936237,0.8179526408427528,0,0.13648797613560265,0.2439242104887174
+26,2,0.20102402454567028,1.95,1.3861206034108198,0.0007000985534213977,0.036716284467622415,0.8179501437107112,0,0.21019749026833673,0.2564834281277853
+26,3,0.15913154450965472,1.95,1.385919602542949,0.0007000325777432636,0.03638740946836138,0.8179201915686309,0,0.20399613673736466,0.2584436327156962
+26,4,0.24511743079472237,1.9,1.3860488401174451,0.0007000488749964535,0.036749841616812426,0.8065035195105277,0,0.306850666450051,0.24125721404900655
+26,5,0.28197005176355605,1.9,1.3859450399489486,0.0007000302665079904,0.03662378468628488,0.8064873145900794,0,0.41062587636311204,0.2257323373943708
+26,6,0.2670075790849823,1.9,1.3854767541983946,0.0007008921380055514,0.0365243446338635,0.8064144899326949,0,0.4289421792181904,0.251435691325687
+26,7,0.29144465520586266,1.95,1.3856572474881528,0.0007006174985435223,0.036778819665316334,0.8178812908732743,0,0.46744087818834074,0.2815610131017545
+26,8,0.3470357942876609,1.95,1.385750034983984,0.0007003672201846519,0.036686041835843605,0.8178950367466306,0,0.5530994775604172,0.25265334421164665
+26,9,0.36032869842889487,1.95,1.3854988654413956,0.0007004115014581035,0.03648075429099484,0.8178576370711441,0,0.6180056112026046,0.24375484649284349
+26,10,0.3601626514684375,2.0,1.383996969302751,0.0007002962288130691,0.03672734458323469,0.8285517125493161,0,0.6544549549596672,0.2612688982819021
+26,11,0.3517545468791261,2.0,1.3843268125597301,0.0006998818578594382,0.03670388201744764,0.8285984452501381,0,0.6825114468596698,0.26249989378419397
+26,12,0.3824236632836481,2.0,1.3846408621324107,0.0006996084490280312,0.036352631867449976,0.8286429652846184,0,0.7049899560749966,0.26809226951216475
+26,13,0.4278539926406108,2.0,1.3847709242676838,0.0006993959212617891,0.03664731210873785,0.8286613721621311,0,0.7647235278061466,0.27321527172717397
+26,14,0.4518203904441079,2.0,1.3851340806440002,0.0007000396573574513,0.03674131512837233,0.8287131103224913,0,0.8255239820213567,0.27203599211855073
+26,15,0.4479787131519678,2.0,1.3855248242164815,0.0007003174389118138,0.036410268016946135,0.8287686471871719,0,0.8528443155138253,0.2894699564881253
+26,16,0.4605971126311945,2.0,1.385362807154041,0.0007005117055509527,0.03665294957089449,0.8287457090735775,0,0.8753437721945219,0.3015320125112859
+26,17,0.4808525020647004,2.0,1.3851100974971193,0.0007007114498050495,0.036765330530907026,0.8287098966650241,0,0.9177451668234329,0.3125147844510908
+26,18,0.5368276073485196,2.0,1.3847480981657412,0.0007008912331157172,0.036474658200654486,0.8286585558688027,0,1.0,0.2894253578283988
+26,19,0.530219530112986,2.0,1.385432124470649,0.0007005868734640012,0.036671616536842866,0.8287555681324356,0,1.0,0.267398433709953
+26,20,0.5203853791569591,2.0,1.3857993666569643,0.0007003363968795156,0.036766065885618884,0.828807609691107,0,1.0,0.23461793052319685
+26,21,0.5168513998771376,2.0,1.3859258251661422,0.0007001150194835555,0.03646668261330504,0.8288254887656167,0,1.0,0.2228379995904586
+26,22,0.510794683642157,2.0,1.3858749994588684,0.0006999305907837785,0.036641155857989764,0.8288182254760235,0,1.0,0.20264894547385653
+26,23,0.5064478288664932,2.0,1.3856959415198882,0.0006997548429141822,0.03675576618117141,0.8287927696195052,0,1.0,0.1881594295549773
+26,24,0.5014344850858229,2.0,1.3779856773849102,0.0007007666085339325,0.03653749422373035,0.8276962327449122,0,1.0,0.17144828361940956
+26,25,0.48129063084423934,2.0,1.3799864315751607,0.0006998944299557391,0.03651260833454005,0.8279811351648418,0,1.0,0.20430210281413105
+26,26,0.5056118813059401,1.95,1.3858929303861032,0.0007002109128420542,0.03677100169237528,0.8179162724558946,0,1.0,0.185372937686467
+26,27,0.5003200066694383,1.95,1.3724383277438363,0.0006986290706471206,0.03633274683284859,0.8159034360681947,0,1.0,0.16773335556479418
+26,28,0.49725551083156094,2.0,1.374585045765335,0.0006973183753636492,0.036463613398189335,0.8272097247361457,0,1.0,0.1575183694385365
+26,29,0.4530005465578593,2.0,1.376192833450872,0.0006964398427247708,0.036495325097056934,0.827439160169589,0,1.0,0.17666848852619768
+26,30,0.47860595381352483,1.95,1.3775001782040044,0.0006994664605749898,0.03655726469090287,0.8166627867051472,0,1.0,0.19535317937841593
+26,31,0.5008241151867108,1.95,1.3757317305874088,0.0006991035798088116,0.036471468731629667,0.8163977493750015,0,1.0,0.16941371728903584
+26,32,0.496499258040156,1.95,1.376698562441569,0.0006978272393329396,0.03613076861438406,0.816542243460712,0,1.0,0.18833086013385328
+26,33,0.49365569591824493,2.0,1.3780437856157794,0.0006969960984653531,0.03644432873317614,0.8277034442772231,0,1.0,0.1788523197274831
+26,34,0.48051047042445927,2.0,1.3789713277564355,0.000696494662248717,0.036362168794405424,0.8278355383444381,0,1.0,0.20170156808153084
+26,35,0.4953597567953872,2.0,1.3854783261108734,0.0007005561871713595,0.036774151893084604,0.8287621162495743,0,1.0,0.1845325226512907
+26,36,0.4654489056296942,2.0,1.3722318717410322,0.0006937755889141776,0.03650398102558124,0.8268721032840067,0,1.0,0.2181630187656474
+26,37,0.4929173847064765,1.95,1.3852424062202733,0.0007010872566167109,0.036604522487314585,0.8178196314809997,0,1.0,0.24305794902158817
+26,38,0.49513144055677294,1.95,1.384729889414531,0.000701267714987518,0.03632065431557178,0.8177433126048872,0,1.0,0.2504381351892429
+26,39,0.5125761665427854,2.0,1.384129857514474,0.0007014260849552088,0.036718568405378973,0.8285709099692701,0,1.0,0.24192055514261784
+26,40,0.513968619517944,2.0,1.38454807575271,0.0007007056282539952,0.03651210458988573,0.8286301013961672,0,1.0,0.21322873172648002
+26,41,0.5043011113579227,2.0,1.3850356812653346,0.0007003071864126648,0.03676243224291618,0.8286992182612605,0,1.0,0.1810037045264088
+26,42,0.4793823968566814,2.0,1.3754772926251215,0.0007020694881892778,0.03653568826988688,0.8273385771279451,0,1.0,0.19794132285560453
+26,43,0.4999931352765861,1.95,1.373848263941571,0.000701900107418602,0.036558840816324156,0.8161161030162464,0,1.0,0.19997711758862036
+26,44,0.5052337694881945,1.95,1.3747727317028744,0.0007000473190198336,0.036169645195843085,0.8162542421407961,0,1.0,0.18411256496064843
+26,45,0.4990156351042273,2.0,1.3766680299265264,0.0006987232562723533,0.036516200691484264,0.8275076517384904,0,1.0,0.16338545034742438
+26,46,0.45593871595594243,2.0,1.3780439548642693,0.0006977869720857625,0.036267107722317046,0.8277036939873735,0,1.0,0.18646238651980807
+26,47,0.48145753060173,1.95,1.3790364209566919,0.0007003795379071366,0.036601770351384275,0.8168929614275869,0,1.0,0.20485843533909998
+26,48,0.49700702586564116,1.95,1.3845411959907534,0.0007006964419194292,0.03674942641300646,0.8177150178995855,0,1.0,0.19002341955213714
+26,49,0.5035193880547296,2.0,1.3724189573668344,0.0006992701288518833,0.03626218025367234,0.8269004567589917,0,1.0,0.17839796018243206
+27,0,0.07093808328208992,2.0,1.3862458005546578,0.0007001385638734009,0.03634062824659072,0.828870886792204,0,0.17955565684290525,0.19705273514975935
+27,1,0.2167645441590461,1.95,1.3862914616141317,0.0007001713172723664,0.03673437714203211,0.8179756060995644,0,0.2860065499589306,0.17453974725157956
+27,2,0.24900684027284786,1.95,1.3861211705570193,0.0007001379875217195,0.03671616648665964,0.8179502399072138,0,0.3889315433006024,0.14478074317535636
+27,3,0.23088458727411665,1.95,1.3861561980471915,0.0007001039779473538,0.036376919110368465,0.817955445581849,0,0.40857144561419223,0.15818669676146585
+27,4,0.28270240162927357,2.0,1.3860180896182668,0.0007002643593926985,0.03675544264637555,0.8288386206489884,0,0.4774459687003769,0.17241338049707594
+27,5,0.32342245508209483,2.0,1.3858652894565147,0.0007002845560423962,0.03673811840164665,0.8288169482711223,0,0.5756681666546692,0.14385062806742385
+27,6,0.3196756274425408,2.0,1.3858764765650313,0.0007005503660288908,0.03635541551942948,0.8288186109110528,0,0.6165175116814483,0.1768954092332048
+27,7,0.31347715976205603,2.0,1.3860497385317407,0.0007002958352712917,0.036718490791070986,0.8288431194109592,0,0.644005299758276,0.18625013286248537
+27,8,0.38607633519446455,2.0,1.3859070293511195,0.0007003450342102525,0.03674418604434808,0.8288228873823954,0,0.725409972806639,0.18637448690602976
+27,9,0.3774861267279442,2.0,1.3860802927916327,0.000700226569134851,0.03638984771783305,0.8288474342099226,0,0.7518233026134504,0.18918935227521322
+27,10,0.3990627249928778,2.0,1.3860738101910028,0.0007004215404008457,0.03669778312632128,0.8288465699075819,0,0.7816234572214084,0.22137780701438142
+27,11,0.3854987130916875,2.0,1.3843267898441793,0.0007026431467596685,0.036744146732103924,0.8285992263560027,0,0.7841664340053951,0.23944046496509802
+27,12,0.4784740750610709,2.0,1.3848546953016738,0.0007020195635616562,0.03638223626385857,0.8286740107647791,0,0.8998276875059281,0.22847666686233234
+27,13,0.5114238365323597,2.0,1.3843653274978467,0.0007011373897708974,0.03668812959353106,0.8286042718099971,0,1.0,0.20474612177453222
+27,14,0.46609439880449033,2.0,1.3847789768151009,0.0007005543810560851,0.03672936990361216,0.8286628444316925,0,1.0,0.2203146626816343
+27,15,0.4692685646771353,1.95,1.3848262214448663,0.000701320149875822,0.03640090099576012,0.8177576850416912,0,1.0,0.23089521559045081
+27,16,0.4770996028154463,2.0,1.3846599022496031,0.0007020378255204897,0.03677761091311767,0.8286463587493903,0,1.0,0.25699867605148746
+27,17,0.5022722104126257,2.0,1.384441989945157,0.0007026044316043251,0.03677998803716806,0.8286155757525708,0,1.0,0.27424070137541884
+27,18,0.5222079548869434,2.0,1.3839760170110809,0.0007030286061946951,0.03651125127200584,0.8285495124750819,0,1.0,0.24069318295647765
+27,19,0.5160572035298053,2.0,1.384375889098569,0.0007021071742388592,0.03668489517389578,0.8286060472092247,0,1.0,0.2535240117660175
+27,20,0.48281918299478277,2.0,1.385085101343676,0.0007015247756542269,0.03676761496478011,0.8287065793433529,0,1.0,0.2760639433159425
+27,21,0.48489036371057936,1.95,1.3848616376603653,0.000702052647892108,0.03644685602021655,0.8177631813862085,0,1.0,0.28296787903526455
+27,22,0.5294838917921071,2.0,1.3844953368660196,0.0007025826360454456,0.03678703912297637,0.8286231453219609,0,1.0,0.2649463059736902
+27,23,0.4867437921682437,2.0,1.3848621615746917,0.0007017573741560604,0.03678131464657304,0.8286749963268163,0,1.0,0.2891459738941456
+27,24,0.5188520357762754,1.95,1.384507592946484,0.0007021145775831788,0.036536612979160436,0.8177104318467321,0,1.0,0.3295067859209177
+27,25,0.5385100106086298,1.95,1.3841220264344227,0.0007027881309300256,0.03676512330538471,0.8176531530795118,0,1.0,0.32836670202876606
+27,26,0.5053971312397846,2.0,1.3848869963915975,0.0007020747108680722,0.03643811579071848,0.8286786122700477,0,1.0,0.35132377079928173
+27,27,0.536706547102255,1.95,1.3845502376772592,0.0007024297544318975,0.03648308154112046,0.8177168823456618,0,1.0,0.3890218236741829
+27,28,0.5187285564285973,1.95,1.3841231643992644,0.0007031303492524094,0.03678165495197651,0.817653424792991,0,0.9972925915829278,0.3993717326514204
+27,29,0.5612163772836398,2.0,1.3836640913218512,0.0007036731214075526,0.03648906240298973,0.8285053804131003,0,1.0,0.37072125761213237
+27,30,0.5530588934677871,2.0,1.3842289912139947,0.0007025673591656308,0.036579897222243515,0.8285853147704634,0,1.0,0.3435296448926238
+27,31,0.5350172925585394,2.0,1.38442658397864,0.0007016632410798712,0.03662423978738505,0.8286131205892073,0,1.0,0.3833909751951312
+27,32,0.5528705091255757,2.0,1.3840963858577422,0.0007022230431005315,0.03676910745105444,0.8285663819707052,0,1.0,0.37623503041858536
+27,33,0.5154932528638352,2.0,1.3849952055522374,0.0007016536405824647,0.03652425215358604,0.8286938546676877,0,1.0,0.38497750954611715
+27,34,0.5218012519089904,1.95,1.3846603056043294,0.0007020578677032407,0.0365647269200217,0.8177331771988045,0,0.9985158483920308,0.40798304184059336
+27,35,0.5277959525200242,2.0,1.3790064958358823,0.0007006558648558832,0.03618586591484144,0.8278417366878014,0,1.0,0.4259865084000806
+27,36,0.5566514633917916,2.0,1.3796759129042098,0.0006993912701210841,0.03635647834667797,0.8279367606330846,0,1.0,0.4555048779726388
+27,37,0.5657966485840554,2.0,1.3810708470228559,0.0006987179149453817,0.03641086123847459,0.8281351968656911,0,1.0,0.48598882861351794
+27,38,0.5851397912138354,2.0,1.3818711494052789,0.0006982320441424516,0.036656305452282614,0.8282489335937796,0,1.0,0.4837993040461179
+27,39,0.5826638578230201,2.0,1.3805831994977842,0.0006977834715602839,0.036518793597001345,0.8280655141285443,0,1.0,0.47554619274340004
+27,40,0.5489462268566772,2.0,1.379121717090647,0.0006972953326825216,0.03653448410371782,0.8278571995627282,0,1.0,0.4964874228555905
+27,41,0.584869659925265,1.95,1.3796604852303778,0.0006966691149779895,0.036565949143005025,0.8169851802196039,0,1.0,0.48289886641754975
+27,42,0.5446078288731369,1.95,1.3779157555650943,0.0006958947834493617,0.03648955888018557,0.8167239314468675,0,1.0,0.4820260962437896
+27,43,0.5686843727195965,1.9,1.3781148436212265,0.0006952608123780156,0.036454167190846855,0.8052608615723913,0,1.0,0.4956145757319883
+27,44,0.555041277355539,1.9,1.378941154728995,0.0006952025962549261,0.036445602804933766,0.8053903892817794,0,1.0,0.5168042578517965
+27,45,0.5596443872837074,1.95,1.3788611247369453,0.0006949326683286503,0.03618280906162872,0.8168651097042318,0,1.0,0.532147957612358
+27,46,0.5985728995608036,2.0,1.378641344811507,0.0006948755755769253,0.03635307554934193,0.8277880411962648,0,1.0,0.49524299853601195
+27,47,0.5922855330515557,2.0,1.3808431448669483,0.0006964769931029331,0.036559331157623574,0.8281021482278966,0,1.0,0.5076184435051856
+27,48,0.561843230144027,2.0,1.3796719707960672,0.0006958550383077437,0.03637224216041263,0.8279351915192681,0,0.9992998210329719,0.5404110057694611
+27,49,0.5627572210197912,1.95,1.379200097638845,0.0006952877171062422,0.03629143514514612,0.8169159196234771,0,1.0,0.5425240700659707
+28,0,0.10927390599076628,2.0,1.3862419234759042,0.0007001363879626775,0.036340727313973295,0.8288703362340963,0,0.11160248932936556,0.21544303419673347
+28,1,0.14604889942050062,1.95,1.3862406931913727,0.0007001470469328479,0.036734907835874325,0.8179680397626856,0,0.15014555199788673,0.2199689287378198
+28,2,0.15686387174758784,1.95,1.3862284510902083,0.0007001545108896586,0.03672094323830384,0.8179662191744369,0,0.15808041986454335,0.24543901267256837
+28,3,0.20085916297956338,2.0,1.3862059954651844,0.0007001666136665402,0.03637576164153689,0.8288652485651707,0,0.2153724865977534,0.24903389446820673
+28,4,0.17404349197046232,2.0,1.3857329082908478,0.0007000110622297476,0.036713176454017296,0.8287980876782083,0,0.2354550837897812,0.2662048615151661
+28,5,0.2118961388203798,1.95,1.385867192931596,0.0006999856585480828,0.03673091427160609,0.8179123722698854,0,0.25792783694281785,0.29575001347750896
+28,6,0.2606554031453413,1.95,1.3858272484795435,0.0006999006646467703,0.036415625983609125,0.8179063978810285,0,0.31588917622572965,0.31433244218349815
+28,7,0.23319178334450405,1.95,1.3859357317190644,0.0007000708047573582,0.03675579098421837,0.8179226050080547,0,0.34239565466638067,0.32077840492650594
+28,8,0.3131643671355883,1.9,1.3860597419578404,0.0007000675660863158,0.03668026459407941,0.8065052266316647,0,0.43812584366392165,0.29304676556673215
+28,9,0.26923321286497504,1.9,1.385301842510077,0.0007013344581043834,0.036653181600162336,0.8063873210936124,0,0.4439523903775402,0.30550752237986306
+28,10,0.33414405940898034,1.8499999999999999,1.3856171153673937,0.000701050560002517,0.036774119422548476,0.7944595493271838,0,0.5060158462818565,0.30579240298745936
+28,11,0.2977376593069731,1.8499999999999999,1.3854333743248286,0.0007013339548628067,0.03643172587311614,0.7944296365354719,0,0.5151727981288566,0.3055618001847681
+28,12,0.30276546643589974,1.7999999999999998,1.3856708656412375,0.0007010187412897388,0.03677984512198827,0.7819511078541714,0,0.5204842265584112,0.31523925270845093
+28,13,0.3145440646546794,1.8499999999999999,1.3857821668641392,0.000700748452267295,0.0363636381427879,0.7944864012111353,0,0.5454681981041584,0.3211892847100533
+28,14,0.3945354832716349,1.9,1.385830689124451,0.0007004771021408643,0.03662178646327323,0.8064696072240599,0,0.6283720304639748,0.3106222369534831
+28,15,0.3590547480719374,1.9,1.3813651937524078,0.0007049099187130779,0.03673378486405729,0.8057730824123193,0,0.6591398390129768,0.31799604155582223
+28,16,0.3689582687312832,1.8499999999999999,1.3821381718523464,0.0007037046799756117,0.03665048292659652,0.7938917468059181,0,0.6657127756391726,0.3422438615853803
+28,17,0.3733675385024049,1.9,1.3824956124276333,0.0007026621378661304,0.03663428134504403,0.8059492318942025,0,0.6679676496428183,0.3539349288175919
+28,18,0.43756591465286393,1.95,1.3827897393961806,0.0007016340338938428,0.036698859535665075,0.8174540852727676,0,0.7390798365673096,0.3397799334198004
+28,19,0.4441285392226091,1.95,1.3827843277515819,0.0007026579136268418,0.03674114326843313,0.8174535833035242,0,0.7810064262906107,0.3724198956878825
+28,20,0.4883272437079672,2.0,1.383945058018411,0.0007019563207351686,0.03656580812631696,0.8285448098899989,0,0.8515172321934076,0.3590678361020138
+28,21,0.5305512501178729,2.0,1.38530928439169,0.0007008799177695795,0.03644876958503749,0.8287382171761163,0,0.9555885559981451,0.3277194257287158
+28,22,0.4846922568511531,2.0,1.3853171761524297,0.0007003593063171024,0.03662246218961177,0.8287391894788764,0,0.9711811314441804,0.3207326809116031
+28,23,0.5342398282081852,1.95,1.3852272071672889,0.0007007600706682263,0.036769183028309185,0.8178172694565159,0,1.0,0.3141327606939504
+28,24,0.521973312334402,1.95,1.3857796755836023,0.0007005482141445429,0.03665885749608942,0.8178995053717734,0,1.0,0.3399110411146732
+28,25,0.507376067850831,2.0,1.3854900716555083,0.0007007261954760328,0.03676937878229465,0.8287638313708748,0,1.0,0.35792022616943675
+28,26,0.5503173552220426,2.0,1.3853762508352707,0.0007011404714130357,0.03677296394118157,0.8287477955516476,0,1.0,0.36772451740680867
+28,27,0.5292381328360964,2.0,1.3858138808867033,0.0007007822922592621,0.03650578965068511,0.8288097955718152,0,1.0,0.3641271094536547
+28,28,0.5165919340152147,1.95,1.3855129360114042,0.0007009866064134956,0.036608482619147766,0.8178599044468295,0,1.0,0.3886397800507156
+28,29,0.5447972252080429,2.0,1.3853125789478444,0.0007014853240898308,0.036469320294387986,0.828738856627499,0,1.0,0.41599075069347596
+28,30,0.5442637468106064,2.0,1.3798266278619145,0.0006961897498143422,0.03627530839710939,0.8279573179723599,0,1.0,0.414212489368688
+28,31,0.5677225102833195,2.0,1.3806746528775802,0.0006963430519693339,0.03643033372748726,0.8280781241020788,0,1.0,0.39240836761106485
+28,32,0.55537764135448,2.0,1.385746575531799,0.0007006252063260314,0.036779033735014593,0.8288002012215603,0,1.0,0.38459213784826624
+28,33,0.5605648502414684,2.0,1.3859272045505953,0.0007003272785527357,0.036546125496947586,0.8288257446919766,0,1.0,0.3685495008048945
+28,34,0.5506713567037942,2.0,1.386091507943399,0.0007001624781387702,0.03659107751828196,0.8288490069946803,0,1.0,0.33557118901264726
+28,35,0.5407920830208279,2.0,1.3860631414474396,0.0007000307207595063,0.036783571672608775,0.8288449455509168,1,1.0,0.33597361006942617
+28,36,0.5220226514366779,2.0,1.3844671432316,0.0006989358257135395,0.036533136076596806,0.8286181058306498,1,1.0,0.3400755047889263
+28,37,0.5071200225475146,2.0,1.3849482322153708,0.0006994894082573131,0.03654581226978304,0.8286865717231862,1,1.0,0.32373340849171534
+28,38,0.5459214802481918,2.0,1.3854259325152314,0.0006996015400607902,0.0367512599259818,0.8287544096918058,1,1.0,0.3530716008273058
+28,39,0.5063338366706096,2.0,1.3851685597574193,0.0006993905840101065,0.036548663092168185,0.8287178202327348,1,1.0,0.3211127889020319
+28,40,0.5186160187145513,1.95,1.3854427863046082,0.00069967150939096,0.03654790367521426,0.817849062532185,1,1.0,0.3287200623818378
+28,41,0.5011584399943186,2.0,1.3858282665319768,0.0006998496462993847,0.03640840083053689,0.8288115720037988,1,1.0,0.30386146664772895
+28,42,0.49310538283838024,2.0,1.3859653032497368,0.0007000150053592074,0.03659368143531867,0.8288310612205316,1,1.0,0.2770179427946007
+28,43,0.5058272724430228,2.0,1.3859325374477929,0.0007001627637610049,0.03653425280764548,0.8288264546076691,1,1.0,0.28609090814340954
+28,44,0.5341826797519724,2.0,1.3862015229650633,0.0007001656155718054,0.03678468778367619,0.8288646138674578,1,1.0,0.3139422658399078
+28,45,0.4927644399054395,2.0,1.3860893660860059,0.0007002312438744544,0.036628242094434584,0.8288487226641637,1,1.0,0.275881466351465
+28,46,0.4845928465119357,1.95,1.386016455555645,0.0007004259345729158,0.0365497827649428,0.8179347322845438,1,1.0,0.24864282170645224
+28,47,0.5398088294197804,2.0,1.385825161896749,0.0007006022254390688,0.03649365375985592,0.8288113450651714,1,1.0,0.2993627647326011
+28,48,0.5627275759544277,2.0,1.3858330867409565,0.0007002201460733837,0.03661925143818798,0.8288123610430281,1,1.0,0.3757585865147589
+28,49,0.5592796599223534,2.0,1.3856600439792428,0.0006998731151427142,0.03649496510750414,0.8287877094318998,1,1.0,0.3975988664078444
+29,0,0.17486907278737335,2.0,1.386279111792997,0.0007001636073833799,0.03635581107887284,0.8288756188421121,0,0.18389684927049366,0.20436777693058625
+29,1,0.22100849044977938,1.95,1.3862803876770389,0.0007001635643404587,0.03673432766755881,0.817973954969792,0,0.28789822558935346,0.18616400071346
+29,2,0.20796088564764661,1.95,1.3860363061573888,0.0007000638688679033,0.036712719656545954,0.8179375805334844,0,0.320648267096307,0.1990052626970794
+29,3,0.26876598722257794,2.0,1.3859246499720932,0.0007000455483007695,0.036365675807726226,0.828825302324012,0,0.4153460344093042,0.1754252448628542
+29,4,0.2339944824828159,2.0,1.3859860761232252,0.0007003576882621753,0.036727528671346585,0.8288341054823173,0,0.4472264702325227,0.18367964796602276
+29,5,0.2797724128060082,1.95,1.386089630139245,0.0007002677024826383,0.03674415417680104,0.8179455818826538,0,0.4898662470684566,0.21275304659541835
+29,6,0.33427778244190476,1.95,1.3851029124855527,0.0007009857642070194,0.03638354247330262,0.817798817047411,0,0.5684765533689731,0.22295720364771837
+29,7,0.3339142784183058,1.95,1.3850115800395923,0.0007014284408582254,0.03675095120688064,0.8177853396894027,0,0.5971670199050606,0.2501582348542717
+29,8,0.3985858156598983,2.0,1.3854504078127832,0.0007010767083187603,0.03669336061603788,0.8287583019174569,0,0.6898066936040909,0.24221046072753996
+29,9,0.4282540990729245,2.0,1.381405423924488,0.0007056944996075433,0.03649450491809363,0.828184796534105,0,0.7807353782471105,0.21986649258026766
+29,10,0.4581936187559086,2.0,1.3809679666393904,0.0007067757532622769,0.03672835860591413,0.8281228475282917,0,0.8847247563051908,0.1810123874461076
+29,11,0.47593115160259497,2.0,1.3712879572765275,0.000700725727364097,0.036449944687429806,0.8267389269734314,0,0.9633425436642017,0.1686471137897143
+29,12,0.4432559485779417,2.0,1.37272351397382,0.0006988681444619247,0.03657346364485855,0.8269439304072365,0,0.9728519763506409,0.18038386012561775
+29,13,0.4977817138553506,1.95,1.3737359621417973,0.0007027289915776383,0.036483801435398124,0.8160994980182524,0,1.0,0.1592723795178353
+29,14,0.5008228967609408,1.95,1.3755723228799657,0.0007009648171379412,0.03632873398882455,0.8163744121823143,0,1.0,0.1694096558698025
+29,15,0.4495315433749148,2.0,1.3769576640955186,0.0006995168000371189,0.03627877031789527,0.827549216328533,0,1.0,0.16510514458304923
+29,16,0.4924079719479985,1.95,1.3779262066532938,0.000702370896782699,0.03647680319286345,0.8167274345683491,0,1.0,0.17469323982666168
+29,17,0.4557898348867907,1.95,1.3790480466318675,0.0007010015401893206,0.036548892691335745,0.8168948864516441,0,1.0,0.18596611628930224
+29,18,0.48186635854737775,1.9,1.3794566418943168,0.0007034114649694964,0.03654331369691309,0.8054737447642241,0,1.0,0.20622119515792567
+29,19,0.48489058809962904,1.9,1.3841661755000931,0.0006998996068333756,0.036565263515185596,0.8062095029795618,0,1.0,0.21630196033209656
+29,20,0.49166961579916624,1.95,1.3840517865024218,0.0007003606912122096,0.03646368554485651,0.8176419564408051,0,1.0,0.2388987193305539
+29,21,0.4729820337696038,2.0,1.3838795816313494,0.0007007644311183707,0.036551500057504314,0.8285351695746734,0,1.0,0.24327344589867933
+29,22,0.5129760601866782,2.0,1.383668574237377,0.0007011195466864642,0.036584305573582,0.8285052917192961,0,1.0,0.20992020062226047
+29,23,0.4908024284038877,2.0,1.3834625852695241,0.0007003345419519488,0.03672511074029629,0.8284757988419909,0,1.0,0.23600809467962555
+29,24,0.5097338082223605,1.95,1.383213904906214,0.0007007526400695836,0.03647075692651697,0.8175171089815464,0,1.0,0.23244602740786813
+29,25,0.4737261624456831,2.0,1.3843865917176204,0.0007005674540408554,0.03673819622258184,0.8286071298356,0,1.0,0.2457538748189437
+29,26,0.47559034110243426,1.95,1.3841963881064359,0.0007008847922083134,0.0367343263744372,0.817663672344687,0,1.0,0.2519678036747807
+29,27,0.5166696226307463,2.0,1.3838108590916818,0.0007012271368818043,0.03661218755414573,0.8285255377853793,0,1.0,0.22223207543582107
+29,28,0.46872202558309284,2.0,1.3836996855600932,0.0007004017196845492,0.0365599401697453,0.8285095081240157,0,0.9888119418807786,0.24399082943593794
+29,29,0.4784588838078204,1.95,1.383332170093684,0.0007006437445658664,0.036723438790527994,0.8175347189726975,0,1.0,0.26152961269273467
+29,30,0.5040230560006725,2.0,1.3827737722711262,0.0007009231657475383,0.03664327270706422,0.8283780612199109,0,1.0,0.2800768533355749
+29,31,0.5243910021448928,2.0,1.382704571826659,0.000701754304982934,0.03658255354551375,0.8283684592511826,0,1.0,0.28130334048297573
+29,32,0.5115935158029407,2.0,1.3840836270785926,0.0007012868468155987,0.03674725215981371,0.8285643036886178,0,1.0,0.30531171934313533
+29,33,0.5316663277720299,2.0,1.3838469642034643,0.0007019289974803479,0.03649138190550506,0.8285308666360367,0,1.0,0.27222109257343297
+29,34,0.5096205771005029,2.0,1.3837830305763152,0.0007010402871364654,0.0365255760326256,0.8285215310322067,0,1.0,0.2987352570016762
+29,35,0.49504368740936894,1.95,1.3834906746074602,0.0007015512944876215,0.03674641681863619,0.8175586329049259,0,1.0,0.316812291364563
+29,36,0.5315711157660254,2.0,1.383066243584277,0.0007020626619737991,0.0367067129997958,0.828419961181043,0,1.0,0.30523705255341793
+29,37,0.5343608269972177,2.0,1.384389810085907,0.0007015245814148781,0.036596569030645995,0.8286078587559143,0,1.0,0.2812027566573919
+29,38,0.5256583397306148,2.0,1.3843216082328873,0.0007007489944989048,0.03674394862837575,0.8285979524219446,0,1.0,0.2855277991020494
+29,39,0.5244814478479585,2.0,1.3852193419883176,0.000700553545190444,0.03655655666964726,0.8287253585164203,0,1.0,0.2816048261598614
+29,40,0.49005468515351647,2.0,1.3857938537655867,0.0007004095772294909,0.03655190195918242,0.8288068482565752,0,1.0,0.30018228384505474
+29,41,0.5379956079667542,1.95,1.38556106668361,0.000700546830741011,0.036774107600168054,0.817866943108166,0,1.0,0.32665202655584713
+29,42,0.541849645997377,1.95,1.3859424169463912,0.0007003636324848422,0.03676645672213292,0.8179236878233493,0,1.0,0.3061654866579232
+29,43,0.4955300424405029,2.0,1.38593164845256,0.000700095923837288,0.03666548258926577,0.8288263095174722,0,0.9954784998480981,0.32446214167087895
+29,44,0.5219102501834492,1.95,1.3857009019064006,0.0007001095884222067,0.036769135311580915,0.8178876418696793,0,1.0,0.33970083394483047
+29,45,0.543904793794794,1.95,1.3857058807504075,0.0007004932856992303,0.03676954887120352,0.8178884977556803,0,1.0,0.34634931264931285
+29,46,0.5412442208357037,1.95,1.3860470723096818,0.0007003205366185623,0.03666114694973805,0.8179392602202235,0,1.0,0.3374807361190121
+29,47,0.5054062432726099,2.0,1.3861654222455144,0.0007001799897775552,0.03651731051370658,0.8288594970674253,0,1.0,0.3513541442420329
+29,48,0.5003905723234554,1.95,1.385963062884291,0.000700184748662366,0.03663827746899714,0.8179267092100548,0,1.0,0.3346352410781845
+29,49,0.5228830078656618,2.0,1.3856393093594952,0.0007001753418953439,0.036598358503564944,0.8287848529697388,0,1.0,0.3429433595522058
+30,0,0.07616258374958298,2.0,1.3862724015416994,0.0007001711070040318,0.03635094487476577,0.8288746691799302,0,0.18158256245919938,0.17843186255301072
+30,1,0.19362481157062436,1.95,1.386257132147658,0.0007001749081966763,0.03673274785492946,0.8179704957468731,0,0.25660965497555877,0.16993649860133617
+30,2,0.23522004441487082,1.95,1.3859288679910047,0.0006999483038716538,0.03670910352380507,0.8179215463365278,0,0.3552781227661738,0.14369598436133763
+30,3,0.26486027836193055,1.95,1.3858811649193559,0.0006998919916036229,0.03637828564918557,0.8179144252331485,0,0.4590764385375193,0.10409900982307603
+30,4,0.3043389282387632,1.95,1.3860896775858815,0.0007000579698941997,0.03675104207119188,0.8179455264851406,0,0.5579239438112129,0.10389783571426012
+30,5,0.3211375224853079,1.95,1.3861203000181674,0.0007001649918209366,0.036698737337744355,0.8179501183195852,0,0.6374101915628766,0.08724481953385757
+30,6,0.2982906100154672,2.0,1.3854612591947078,0.0007009960876783801,0.036457309147497806,0.8287598190352796,0,0.66249453901717,0.11097598136199727
+30,7,0.37694274140345446,1.95,1.385389394313983,0.0007013069028363188,0.03672890034482386,0.8178415957586017,0,0.7558580699544537,0.08199837807224324
+30,8,0.36157323728662294,1.95,1.3855806444546506,0.0007009267027793603,0.03666431153318594,0.8178699725771678,0,0.7847893543153522,0.09219165186827348
+30,9,0.3856427524945753,2.0,1.385323720058405,0.000701083627875837,0.03643711570999684,0.8287403238627469,0,0.8204569927495301,0.12486651798254406
+30,10,0.3772073336047212,2.0,1.3734902238693298,0.0007033328542558694,0.03643964659279,0.8270549021926032,0,0.8316237627484082,0.1485260950178596
+30,11,0.443365266414124,2.0,1.3739086300745598,0.0007066887438630226,0.036611756775866075,0.8271157005280445,0,0.8999978341093894,0.14455377590122737
+30,12,0.4405279899668348,2.0,1.3754156919121514,0.0007044883791875707,0.03660253832751943,0.8273304684234758,0,0.9204023698296451,0.1745568067832558
+30,13,0.43119592415686503,2.0,1.3739999791172839,0.0007045019534503516,0.03652557351242623,0.8271281372580719,0,0.928084418121045,0.19987385636148985
+30,14,0.4956368268539237,2.0,1.3742395489355652,0.0007078048772727837,0.036578478725138176,0.8271633343881364,0,0.9962099943973963,0.1905094303165505
+30,15,0.4980879388677007,2.0,1.3754255514407632,0.0007053955376755876,0.036247709846711065,0.8273321360815649,0,1.0,0.1936264628923356
+30,16,0.49973184662543907,2.0,1.3760345739946354,0.0007031924835276238,0.0364653955872242,0.8274184906682823,0,1.0,0.19910615541813018
+30,17,0.5023096073305101,2.0,1.3761876691003234,0.0007012825952437461,0.03660947205701106,0.827439805715331,0,1.0,0.2076986911017003
+30,18,0.484026546907395,2.0,1.3821946050840748,0.0006979439918995307,0.03652861439544605,0.8282948591970324,0,1.0,0.21342182302464988
+30,19,0.46911065561513254,2.0,1.38362684131109,0.0006984641795528169,0.036580589560663054,0.8284986074516743,0,1.0,0.23036885205044175
+30,20,0.5059045959934686,2.0,1.383074694377063,0.000697953683436124,0.036654614581140534,0.8284199942763849,0,1.0,0.21968198664489508
+30,21,0.4915659712473561,2.0,1.3829264036797628,0.0006980731901776767,0.03639468451627735,0.8283989491413002,1,1.0,0.23855323749118706
+30,22,0.47221947792817304,2.0,1.3856280226706903,0.000699770998529729,0.0366399129742085,0.8287831366228295,1,1.0,0.20739825976057677
+30,23,0.4619456669264992,2.0,1.385406971225384,0.0006997443919093068,0.03674451009344667,0.828751759226297,1,1.0,0.1731522230883305
+30,24,0.4757750545456824,2.0,1.3861837254732747,0.0007001705088402402,0.036512273513811394,0.828862090701114,1,1.0,0.18591684848560797
+30,25,0.4768028160668917,2.0,1.3861730764308355,0.0007003328458383856,0.036655450908037714,0.828860626187314,1,1.0,0.1893427202229722
+30,26,0.4547327007472733,2.0,1.386043823939986,0.0007004772791028326,0.036781200157106994,0.8288423318325496,1,1.0,0.14910900249091086
+30,27,0.44510470504726146,1.95,1.3861229281087806,0.0007002713696138915,0.03651405086476732,0.8179505413431398,1,1.0,0.11701568349087138
+30,28,0.48678347873890626,2.0,1.3860674278934464,0.0007000930767518556,0.036767803390017034,0.8288455713213008,1,1.0,0.15594492912968755
+30,29,0.45251723480423295,2.0,1.3862427093844225,0.0007001353236091077,0.03678280899109028,0.8288704474087678,1,1.0,0.1417241160141097
+30,30,0.49381079499796965,1.95,1.3861360043950175,0.000700085833637384,0.0365387547906321,0.8179524332365995,1,1.0,0.1793693166598989
+30,31,0.4582471965693742,1.95,1.386185345109423,0.0007002478485254912,0.036760186540541584,0.8179598285106421,1,1.0,0.16082398856458058
+30,32,0.510051165856983,1.9,1.3860156877920808,0.0007003055825112875,0.03640213766785633,0.8064984259750811,0,1.0,0.20017055285660984
+30,33,0.48793449412712375,1.9,1.3780861845850165,0.000696811689297011,0.036443086222537883,0.8052568537552797,0,1.0,0.22644831375707902
+30,34,0.5096474620014261,1.8499999999999999,1.3806031054235248,0.000697280987710536,0.0365184126278453,0.793638350095515,0,1.0,0.19882487333808674
+30,35,0.45760552260514886,1.8499999999999999,1.373587167603322,0.0006954275230789444,0.03641034300228353,0.7924863272498792,0,1.0,0.19201840868382955
+30,36,0.48349246344603586,1.7999999999999998,1.3742282052793384,0.0006974539886442956,0.036403383158783664,0.7799925764812716,0,1.0,0.2116415448201194
+30,37,0.46554501154080574,1.7999999999999998,1.379942203925578,0.0006961230714123568,0.036455320759186075,0.780971098175698,0,1.0,0.21848337180268568
+30,38,0.5031581554858261,1.8499999999999999,1.3791181914175534,0.000695334767793144,0.03651612649540799,0.7933944119602909,0,1.0,0.17719385161942028
+30,39,0.4582839297357562,1.8499999999999999,1.3681656682237453,0.0006978347571255204,0.03622877628953659,0.7915941326177014,0,1.0,0.19427976578585404
+30,40,0.5015979973184261,1.7999999999999998,1.368938731353391,0.0007014030790551708,0.036278328747203596,0.7790848959574949,0,1.0,0.1719933243947537
+30,41,0.48126301115068515,1.7999999999999998,1.3729782201264302,0.0007000764497488217,0.03641283845417707,0.7797788994404438,0,1.0,0.20421003716895036
+30,42,0.46507366482428025,1.7499999999999998,1.3784652286438548,0.0006947403160254553,0.03649254550606018,0.7676082005198794,0,1.0,0.21691221608093417
+30,43,0.5069871762366159,1.7999999999999998,1.377233573729832,0.0006938216130454592,0.03616922846410643,0.7805066316325385,0,1.0,0.18995725412205292
+30,44,0.45958955113637795,1.7999999999999998,1.3653587781943115,0.0006995831601662024,0.03610907494178661,0.778467501146045,0,1.0,0.1986318371212598
+30,45,0.49806139840927205,1.7499999999999998,1.366349842193155,0.0007044471442114735,0.03634877865221013,0.7654434693181165,0,1.0,0.16020466136424016
+30,46,0.49393112918013615,1.7499999999999998,1.3704023028546857,0.0007023091764711703,0.03639123910013938,0.7661694982946278,0,1.0,0.17977043060045386
+30,47,0.45923471626399487,1.7999999999999998,1.3706820031436595,0.0006998819726355043,0.036210868369389415,0.7793842642204437,0,1.0,0.19744905421331618
+30,48,0.5022378687692525,1.7499999999999998,1.3717588131370955,0.0007035313313829231,0.036454455906935676,0.7664128721026323,0,1.0,0.17412622923084137
+30,49,0.4809444693828863,1.7499999999999998,1.3750421432235673,0.0007019300421074671,0.03657460301438869,0.7669995810129109,0,1.0,0.20314823127628762
+31,0,0.158589043240457,1.6999999999999997,1.3860076919960986,0.000700049191537555,0.03642051845833745,0.7553601987913626,1,0.1136191788615576,0.2438045723194465
+31,1,0.18072519346600444,1.6499999999999997,1.3859856074185302,0.0006999899842485222,0.03676376839602392,0.7412327342470719,1,0.1431868101923672,0.2781682312968585
+31,2,0.23272411081652689,1.6499999999999997,1.3859333349891287,0.0006999236063950605,0.03654474149961772,0.7412226824508228,1,0.20065092007736915,0.34154580928526407
+31,3,0.26451217502667645,1.6499999999999997,1.3858753314100236,0.000700086471765126,0.036685495908608944,0.7412116190155108,1,0.2445777551307936,0.38893690991453006
+31,4,0.24481373506417833,1.6499999999999997,1.385775021790492,0.0007001249900553378,0.036702958222864776,0.7411923922418375,1,0.2761001804758877,0.38124554291274426
+31,5,0.24182524557530954,1.6999999999999997,1.3857488031926888,0.0007002837911806376,0.0365458626806506,0.7553124419794466,1,0.32068973188309696,0.3451645094069026
+31,6,0.2586109072832226,1.7499999999999998,1.3860107825375136,0.0007002378593879316,0.036780296540953515,0.7689534551726275,1,0.33464713911750504,0.3491735054540686
+31,7,0.2567800880878133,1.7999999999999998,1.3859687336858681,0.000700342775943445,0.03662189634880918,0.7820016606842437,1,0.3796636430083076,0.3163821029483007
+31,8,0.2606277344755268,1.8499999999999999,1.3861454398628872,0.0007002828560512746,0.03645097618132477,0.7945455572565671,1,0.4114831622063415,0.2867815653099671
+31,9,0.31012036423350064,1.9,1.3861953589919163,0.0007001031477359234,0.03673502809354111,0.806526400511074,1,0.4382835889940586,0.31602309545292406
+31,10,0.3318169532544444,1.9,1.3862440275728267,0.0007001544167557334,0.03677784489975587,0.8065340107190689,1,0.46640349107713924,0.35085185607862895
+31,11,0.36061631287691615,1.9,1.386225740039688,0.0007002010889883884,0.03645358615750509,0.8065311717384321,0,0.5110000838997988,0.38738759772332204
+31,12,0.41211277157390197,1.9,1.384023615229022,0.0007016361280402129,0.03664577736594148,0.8061877716579302,0,0.620494894607573,0.3797160457695758
+31,13,0.44008483490497347,1.9,1.3790871493468027,0.000709543052496027,0.03676910752003488,0.8054177658892844,1,0.7106385648002326,0.352764696616268
+31,14,0.40933496031443084,1.9,1.3856750327382614,0.0007008502675943588,0.036311738343501127,0.8064454282755769,1,0.770338945807373,0.3039979399716054
+31,15,0.42121838535729705,1.8499999999999999,1.3858367108544263,0.0007005283268761339,0.03673533683078624,0.7944952350077529,1,0.7756484827520982,0.30319664085485926
+31,16,0.4891192960097785,1.9,1.3857173996122354,0.0007008473768596997,0.03647537205299271,0.8064520403834823,1,0.824490621559703,0.36441015795299087
+31,17,0.4700170409580214,1.9,1.3855796528507438,0.0006997411327478796,0.03643087166602971,0.8064301936065157,1,0.8397780891198785,0.3803526843668998
+31,18,0.47997809875919917,1.95,1.3859313998611955,0.0006999223695763368,0.03676859969103649,0.8179219156726829,0,0.859878999682798,0.38675499628693305
+31,19,0.5013484207526085,2.0,1.3775897513217334,0.000694176376932796,0.03652270211300381,0.82763788012231,0,0.8994649100306676,0.4052081891344714
+31,20,0.48567398384097116,2.0,1.3833949130188286,0.0007005290971404011,0.03672069760313509,0.8284662374508851,0,0.8961947469042654,0.4239869502642166
+31,21,0.5589699949159105,2.0,1.3835341123328828,0.0006998094038008151,0.036508260520146926,0.8284858136187965,0,0.9754855050676637,0.4292526429628165
+31,22,0.5661305025033028,2.0,1.38263778056411,0.0006997197289067158,0.036578536082552196,0.8283583844971832,0,1.0,0.4204350083443422
+31,23,0.552193382510699,2.0,1.3815698650386843,0.0006995828164213067,0.03663450734559212,0.8282064552368378,0,1.0,0.44064460836899677
+31,24,0.5628704922271113,2.0,1.3826015049007823,0.0006991049874815557,0.03637369843898397,0.8283530519209,0,1.0,0.47623497409037074
+31,25,0.5714528816115109,2.0,1.383142549548425,0.0006986662665395448,0.03652437399022972,0.8284298415808008,0,1.0,0.504842938705036
+31,26,0.5771000828001015,2.0,1.3832879226659762,0.0006983279057628633,0.03667673163058062,0.8284504068577249,0,1.0,0.523666942667005
+31,27,0.5968413503886785,2.0,1.3831218428514835,0.0006979970800121507,0.03648856944129466,0.8284267082076814,0,1.0,0.5228045012955945
+31,28,0.5836854212389985,2.0,1.3822094721136846,0.0006974757901781126,0.03650186172808971,0.8282968404362484,0,1.0,0.5456180707966614
+31,29,0.5886333416788265,2.0,1.3818521604027856,0.0006971052707441874,0.03665464649681828,0.8282459117640434,0,1.0,0.5621111389294217
+31,30,0.6118660802397825,2.0,1.3812774045372374,0.0006966913621793195,0.036379059033854064,0.8281640168547848,0,1.0,0.539553600799275
+31,31,0.5596847022312723,2.0,1.3825594096479967,0.0006976815704485685,0.036458621657447864,0.8283466617686432,0,1.0,0.5322823407709075
+31,32,0.594636787232538,1.95,1.3834182444262648,0.000698168489409547,0.036663797224592225,0.8175468200396324,0,1.0,0.5154559574417933
+31,33,0.5826038935419623,1.95,1.3825992635015472,0.0006976015288176485,0.03659919954556522,0.8174244565551134,0,1.0,0.5420129784732076
+31,34,0.566918630821908,2.0,1.3820704673897684,0.0006972640961241329,0.03662409800859852,0.8282770098973082,0,1.0,0.5563954360730264
+31,35,0.6080008265905238,2.0,1.3828385903818468,0.0006979830638631709,0.036670930855783164,0.8283864401331943,0,1.0,0.5600027553017458
+31,36,0.5746355246805243,2.0,1.382088013329521,0.0006973197718556129,0.036458241406924524,0.8282795213535251,0,1.0,0.5821184156017474
+31,37,0.6209967169433203,1.95,1.382487006552543,0.0006978823157773799,0.03644829940377349,0.8174077863548255,0,1.0,0.569989056477734
+31,38,0.6139400480022581,1.95,1.3838777466973688,0.000698503100920846,0.0365084101668688,0.8176154510382593,0,1.0,0.5464668266741933
+31,39,0.5861588632817758,2.0,1.3848018427854014,0.0006991916647630179,0.03671754202264784,0.8286657039811055,0,1.0,0.5538628776059193
+31,40,0.5699171165905844,1.95,1.3845560819346736,0.0006989504122378482,0.036510764349180325,0.8177167162335952,0,1.0,0.5663903886352815
+31,41,0.573157123251511,2.0,1.3848592592669642,0.0006992972414235629,0.03638337367478413,0.8286738857317576,0,1.0,0.5771904108383701
+31,42,0.6032821191879711,2.0,1.3849648111127866,0.0006996317802338267,0.03657643828326361,0.828688965759083,0,1.0,0.6109403972932369
+31,43,0.586472065074866,2.0,1.3852646593551088,0.0006995983685043981,0.036522091191465114,0.8287315196043071,0,1.0,0.6215735502495536
+31,44,0.5890227501733251,2.0,1.3855312279977243,0.0007001448976936169,0.036765683277125955,0.8287695069825358,0,0.9979754107493624,0.6327752862452671
+31,45,0.6154550698643364,2.0,1.3855223353404988,0.0007006440123139425,0.03659717908785881,0.8287683866765271,0,1.0,0.6515168995477878
+31,46,0.6330728083663576,2.0,1.3850690157098455,0.000700878327374908,0.036499920246857845,0.8287041124123808,0,1.0,0.6435760278878585
+31,47,0.5983835512261765,2.0,1.3850274491349026,0.0007001642794305006,0.036750736287726696,0.8286980090775422,1,1.0,0.661278504087255
+31,48,0.6477995267901875,1.95,1.382321684744942,0.0006995236674300844,0.036496836020269006,0.8173836004023889,1,1.0,0.6926650893006249
+31,49,0.6088417478323742,1.95,1.3809436985505577,0.0006993301135015344,0.03652343901926415,0.8171777638431064,1,1.0,0.662805826107914
+32,0,0.1632889726504037,1.9,1.385781331573051,0.000699874752710743,0.0364373863941571,0.806461715528796,1,0.1345656783223561,0.23154233773820418
+32,1,0.15833473699216358,1.8499999999999999,1.3857208531580252,0.0006997943907953929,0.03672904698512069,0.7944760783003469,1,0.16750316978845153,0.23777823025594325
+32,2,0.19669782426536905,1.9,1.385821163506947,0.0006999219890402442,0.03665950077140308,0.806467947214667,1,0.19641406424817096,0.26044066188700216
+32,3,0.24789531294469153,1.9,1.3857678521368753,0.0006998436130644384,0.0364364773785277,0.8064596019125951,1,0.2488923257000009,0.32779460888230394
+32,4,0.2586065227464661,1.9,1.3862313198455052,0.0007002390941541129,0.036776259018107785,0.8065320542627662,1,0.2796564903940551,0.35581308862948036
+32,5,0.30679132153550764,1.95,1.3862272816144174,0.0007001741481250644,0.03664476781955537,0.817966050890244,1,0.3350359875516773,0.4092564217161224
+32,6,0.3169042103926046,1.95,1.386049518456642,0.0007000052105255014,0.036424415455912115,0.8179395305737943,0,0.35937988978069974,0.44384084826774894
+32,7,0.3595975088002153,2.0,1.3862943611198846,0.0007001722195526524,0.03676977664286273,0.8288777842514964,0,0.45631707483150374,0.4235689295587128
+32,8,0.3105151257328484,2.0,1.3862506694407342,0.0007001709233706811,0.0367565053898431,0.8288715865930494,0,0.4591374163237304,0.4228671973445208
+32,9,0.3193520190473609,1.95,1.386245765174042,0.0007001402941068228,0.03640507747149493,0.8179687929501156,0,0.4740052162103454,0.4324997752107423
+32,10,0.33201673547912747,2.0,1.3861863404847854,0.0007001057096023976,0.03677350030326426,0.8288624432559822,0,0.5011949619135282,0.4384625023790539
+32,11,0.33745224708368415,2.0,1.386079429590821,0.0007000754785216944,0.03675759290498141,0.8288472688895032,0,0.49918544317284264,0.459260232715157
+32,12,0.37219104672280434,2.0,1.3859136552490146,0.0007000381907003614,0.036423692018994085,0.8288237403661856,0,0.5204086243731763,0.4800919899117795
+32,13,0.41507162455307883,2.0,1.38599526303275,0.0007002863163365779,0.03669726775134998,0.8288353885573826,0,0.5872276329587938,0.46726857123187115
+32,14,0.4151731847939053,2.0,1.3859841357943012,0.0007000952272384512,0.03676124613388548,0.8288337557414859,0,0.6273706221100919,0.4807497864995618
+32,15,0.4750800254874646,2.0,1.3842049170864081,0.0006997253029156305,0.03637332066612688,0.8285810881159766,0,0.7304982489911536,0.4429357529700106
+32,16,0.5072683326279953,2.0,1.3843023070171943,0.000699279992802971,0.036601847249484384,0.8285947939096742,0,0.8257562481972347,0.42321944449700477
+32,17,0.48995700766140693,2.0,1.3849922256880323,0.0006992679073105184,0.03672335800010932,0.8286927542832588,0,0.8449924748151544,0.439866725784484
+32,18,0.46760879268904615,2.0,1.3850954510157303,0.0006994279264012902,0.036427923367675655,0.8287074531942475,0,0.8417051136987929,0.4364224906984299
+32,19,0.5042019955484095,1.95,1.384929992262957,0.0006995093722832543,0.0366446256451982,0.8177726098167432,0,0.8664555937428577,0.4587325268375547
+32,20,0.5652879282326839,1.95,1.3848692152433486,0.0006997880551183655,0.03649789646328081,0.8177636356779535,0,0.9669642683401632,0.4283407363220621
+32,21,0.5706893721617877,1.95,1.385623241583309,0.0006998959132403964,0.036591532587999756,0.8178760106213467,0,1.0,0.40229790720595876
+32,22,0.5580817678633724,2.0,1.3860554401842302,0.0007000244854341557,0.03677763098797686,0.8288438512701282,0,1.0,0.39360589287790765
+32,23,0.5414732746567545,2.0,1.3755601671766056,0.0006927652239111873,0.03634790358249588,0.8273477573012307,0,1.0,0.40491091552251507
+32,24,0.5679233457579205,2.0,1.3837086873945381,0.0006990526928795893,0.03641144391888783,0.828510403772817,0,1.0,0.42641115252640144
+32,25,0.5534788440877219,2.0,1.3827684826093602,0.0006987362150723486,0.03651661462969374,0.8283766873675702,0,1.0,0.4449294802924059
+32,26,0.5598825965522811,2.0,1.3830932750853586,0.0006983848521116371,0.036677638340631605,0.828422757899222,0,1.0,0.466275321840937
+32,27,0.5836580151358441,2.0,1.3830768597301712,0.0006980459120293713,0.036502191906376616,0.8284203282788846,0,1.0,0.4455267171194803
+32,28,0.5582478384586598,2.0,1.383967918566909,0.0006991404310860923,0.03657478343236026,0.8285472573659447,0,1.0,0.46082612819553254
+32,29,0.5750349474442089,1.95,1.3837894767716754,0.0006986810308836462,0.03671762973085728,0.8176023408893209,0,1.0,0.45011649148069605
+32,30,0.5720012360625777,2.0,1.382938211129205,0.0006983229321853364,0.03656248265076555,0.8284006986156506,0,1.0,0.4400041202085923
+32,31,0.5786200468539568,2.0,1.3821009359631553,0.000698067802616035,0.03645241052622834,0.8282815721516819,0,1.0,0.42873348951318907
+32,32,0.5301854783476049,2.0,1.3828683405899063,0.0006995297698059568,0.03667980419820087,0.8283911092088965,0,1.0,0.43395159449201615
+32,33,0.5752918906862124,1.95,1.3837824607372244,0.000699288932246099,0.03650144906131799,0.8176014759064028,0,1.0,0.45097296895404126
+32,34,0.5836007685576471,1.95,1.3827856091869688,0.0006990570855530255,0.036647018625931546,0.8174526998674446,0,1.0,0.4453358951921568
+32,35,0.5783952332236204,2.0,1.3833388368648158,0.0007005363784326488,0.03631008499886425,0.8284582703952975,0,1.0,0.4279841107454013
+32,36,0.5738693683542618,2.0,1.3835573469733635,0.000701878865309931,0.0365160329227385,0.8284897032869966,0,1.0,0.41289789451420605
+32,37,0.5536031563464192,2.0,1.383403400212155,0.0007030528335446359,0.03652362541895481,0.8284681608528027,0,1.0,0.4453438544880638
+32,38,0.5626358090048722,1.95,1.3836896205414673,0.0007019540585311647,0.03674923844015064,0.8175884252469009,0,1.0,0.475452696682907
+32,39,0.5883291438316525,2.0,1.3836254348032806,0.000700980719380425,0.03672975236568811,0.8284991227458122,0,1.0,0.4610971461055082
+32,40,0.5758133486252511,2.0,1.3834780876367774,0.0007017927223696869,0.03656524305451006,0.8284784161946372,0,1.0,0.4527111620841704
+32,41,0.5761632363691018,2.0,1.3828945552982446,0.0007022611538772081,0.03675348808071198,0.8283956124092806,1,1.0,0.420544121230339
+32,42,0.5340197812581997,2.0,1.3815248167583625,0.0006980057832113934,0.03647609574424095,0.828199596873246,1,1.0,0.4133992708606654
+32,43,0.5427917036299719,1.95,1.3813441596325582,0.0006985559965188218,0.03650080640114282,0.8172373531905281,1,1.0,0.40930567876657276
+32,44,0.5218942845919433,2.0,1.380532014511883,0.0006975091570108451,0.036300059973001085,0.8280581485326146,1,1.0,0.37298094863981096
+32,45,0.5107912464344461,1.95,1.3837337809696337,0.0007008293010103448,0.03654817822975095,0.8175946756563726,1,1.0,0.3359708214481533
+32,46,0.5229392184817391,2.0,1.3838504263111164,0.0007000624392701446,0.03661756015465508,0.8285308281345033,1,1.0,0.34313072827246355
+32,47,0.5296766112019673,2.0,1.383121953446576,0.0007000505326461383,0.03671946584426503,0.8284273076650492,1,1.0,0.36558870400655763
+32,48,0.5765864215828302,2.0,1.3821793314023554,0.00069996187184478,0.03656862271872448,0.8282932609059621,1,1.0,0.421954738609434
+32,49,0.5507263220205686,2.0,1.380662956620608,0.0006975984991812896,0.03651443850741131,0.8280768164263458,1,1.0,0.4357544067352284
+33,0,0.1947989256150236,1.95,1.3855645949497897,0.0006997847854255967,0.03644002865653204,0.8178672416511812,1,0.16062212329568548,0.26850025432249797
+33,1,0.21017684294557631,1.9,1.385407397007305,0.0006997326751331061,0.03671407794048746,0.8064033003168538,1,0.19460294786689533,0.30778554599606056
+33,2,0.19086363612241197,1.95,1.3853000688343253,0.000699572774169223,0.03666059212136144,0.8178277712443013,1,0.24214130440393863,0.2800237145361217
+33,3,0.2660334999706242,2.0,1.3862244427835089,0.0007001781191261576,0.03637786781608717,0.8288678685220227,1,0.28814802240203014,0.3359143033660405
+33,4,0.296962463454747,2.0,1.3861821515402355,0.0007002047417386815,0.03671966347947768,0.8288618771508935,1,0.3346441967486454,0.37701594918429615
+33,5,0.3162322794469165,2.0,1.386094424205527,0.0007002392495638805,0.03675246097205838,0.8288494424716502,1,0.3827314298765575,0.4104656916543117
+33,6,0.2971101044174246,2.0,1.3861330449420628,0.0007000664557258798,0.03637689800552123,0.8288548720410671,1,0.4274998164586556,0.38703392611320786
+33,7,0.31947406772219367,2.0,1.3860181032317251,0.0007002855697520085,0.036706034607665826,0.8288386285982858,1,0.4583846441184933,0.38706736691598786
+33,8,0.32624533102845954,2.0,1.386127500780116,0.0007001927047122934,0.03675485986136361,0.8288541213935556,1,0.466579816386092,0.39871134824674237
+33,9,0.33309631106328563,2.0,1.386148231255506,0.0007001149333570142,0.03640779303782228,0.8288570400302007,1,0.48912470254888213,0.3914881001457759
+33,10,0.35021486783368533,2.0,1.3860991955783504,0.0007000379983460941,0.03669940546578535,0.8288500622301683,1,0.5377106822058814,0.38376864983777587
+33,11,0.4188955191127603,2.0,1.385991799788722,0.0006999665431952066,0.03675129770576791,0.8288348065048657,1,0.5897530596205287,0.44331431754849615
+33,12,0.3851318034743746,2.0,1.385472321334742,0.0007000133602863742,0.03645521441105762,0.8287611100055301,1,0.6157845415993324,0.4293932894488055
+33,13,0.4086718860914763,1.95,1.3851086324996569,0.00069955010047759,0.03666245708591303,0.8177992415124805,1,0.6426946132480739,0.43864680264082245
+33,14,0.4469662035208691,1.95,1.3855098783123547,0.0006996508840977246,0.036600323706420426,0.817859051002922,1,0.6590700274749954,0.47779397510290306
+33,15,0.42756064010330835,1.95,1.3857027248971914,0.0006999513903070693,0.03654388784872871,0.8178878662729855,0,0.7026473058367376,0.45500572589537774
+33,16,0.42856162292977285,2.0,1.3823166437602963,0.0006975139893784872,0.036622841154070565,0.8283120928432122,0,0.7160763534708433,0.4737702718047849
+33,17,0.4644737445420951,2.0,1.3831538939526127,0.0006979743460904379,0.0366388091407171,0.8284312573092699,0,0.7327711015392215,0.5045510130880214
+33,18,0.44849118401000077,2.0,1.3827291134261817,0.0006977511566435373,0.03639602061106863,0.828370810131127,0,0.7456866360128973,0.5007217653494727
+33,19,0.4587737307115919,2.0,1.3832223950029479,0.0006983055821364222,0.0365774674386726,0.8284410874986234,0,0.7605954162155886,0.5151185474178548
+33,20,0.5281272416404849,2.0,1.383453843139176,0.0006988720695784175,0.036697094295126145,0.8284741409016861,0,0.8418472255582552,0.5046278380572756
+33,21,0.4882183172993385,2.0,1.3829991091132607,0.0007016942091814988,0.036468990853153596,0.828410313706195,0,0.8326744192292331,0.5171618320254843
+33,22,0.5274360010411081,1.95,1.3841973308214246,0.0007012020091155203,0.036661263652371934,0.817663907481355,0,0.864657403218883,0.5385767991785161
+33,23,0.5464105119147034,1.95,1.3840991223781447,0.0007003987052668504,0.03644286155478522,0.8176490256192939,0,0.8994278917295376,0.5554645174096275
+33,24,0.5861271264372016,2.0,1.383854143127535,0.0006996423167728762,0.03655582807327345,0.8285312368014134,0,0.9569841578678727,0.5444448776335079
+33,25,0.6009590964866123,2.0,1.3833350024582003,0.0006997529961547902,0.0365361559532592,0.8284575028056058,0,1.0,0.536530321622041
+33,26,0.6037472919665303,2.0,1.382573791736517,0.0006998358336780467,0.036674439206628814,0.8283493193422753,0,1.0,0.5124909732217676
+33,27,0.5805627384943772,2.0,1.3826962700430596,0.0007011077477343128,0.0364853120665304,0.8283670951003558,0,1.0,0.5352091283145907
+33,28,0.5995524278643345,1.95,1.382449045355534,0.0006999823317094275,0.036564940758885646,0.817402747369375,0,1.0,0.49850809288111464
+33,29,0.5756790533483489,2.0,1.3822700158136634,0.0007010416615760742,0.03647606824602085,0.8283064651040443,0,1.0,0.5189301778278295
+33,30,0.5827282514188551,1.95,1.382017786087678,0.0006999042965868917,0.03646542018079739,0.8173383474416823,0,1.0,0.5424275047295167
+33,31,0.5905773564148086,2.0,1.3814053132984945,0.0006988526963899512,0.03660595750306718,0.8281828336785114,0,1.0,0.5685911880493617
+33,32,0.6114731281890949,2.0,1.3808813114382725,0.0006978906152338182,0.036607343891423755,0.8281079835772578,0,1.0,0.5715770939636495
+33,33,0.6166109090611449,2.0,1.3803114691778395,0.0006981841220003662,0.03638156312313702,0.8280269377177867,0,1.0,0.5553696968704829
+33,34,0.5688017736321105,2.0,1.380286787468882,0.0006992317536480788,0.036486149882787484,0.8280237214218567,0,1.0,0.5626725787737014
+33,35,0.6142018263974782,1.95,1.382396043318866,0.0006992163764489058,0.03667218911661986,0.817394607737152,0,1.0,0.5473394213249273
+33,36,0.6078734855983643,1.95,1.382113250297889,0.0006999281862532431,0.036609449699593614,0.8173526066031218,0,1.0,0.5262449519945475
+33,37,0.5967686791994221,2.0,1.3817401480829263,0.0007005739743600938,0.036647498335282046,0.8282309638565821,0,1.0,0.5225622639980736
+33,38,0.5980175132164793,2.0,1.3814537653333896,0.000701219059544013,0.036675206572046336,0.8281904015266703,0,1.0,0.5267250440549309
+33,39,0.5903720553367915,2.0,1.380913751595585,0.0007018488730687495,0.03652939997443401,0.8281137280779063,0,1.0,0.5679068511226384
+33,40,0.5792267771807932,2.0,1.3805462753261133,0.0007004821621327763,0.03647033182603839,0.8280610255177908,0,1.0,0.5974225906026438
+33,41,0.625802614987767,2.0,1.3826276850132864,0.0007002410051449237,0.03671097699582894,0.8283570973310691,0,1.0,0.5860087166258899
+33,42,0.621793566803148,2.0,1.3823341535095428,0.0007009827019832358,0.03648803506429989,0.8283155694765825,0,1.0,0.5726452226771597
+33,43,0.5733178245662097,2.0,1.3818798612535477,0.0007016365279265539,0.036444030953512244,0.8282511414595217,0,1.0,0.5777260818873656
+33,44,0.5979845922812816,1.95,1.38358866655359,0.0007011914586156715,0.03674125271171645,0.817573141250178,0,1.0,0.5932819742709387
+33,45,0.6158958825563579,1.95,1.3832638670486441,0.0007002271525012752,0.036700875497632325,0.8175244055772981,0,1.0,0.5863196085211926
+33,46,0.6231418325117529,2.0,1.3829411043762814,0.0007008315276347231,0.03656511823792048,0.8284018231050697,0,1.0,0.6104727750391762
+33,47,0.60950369219982,2.0,1.3836958245881141,0.000702068593786964,0.03674393244724373,0.8285094332152564,0,1.0,0.6316789739993999
+33,48,0.595247411152457,2.0,1.3833409371926073,0.0007030542552479245,0.03665348052045785,0.8284592845383065,0,1.0,0.6508247038415232
+33,49,0.6358805373456872,2.0,1.3826511946142148,0.0007036511497025129,0.03654328157912161,0.8283614096409211,0,1.0,0.6196017911522904
+34,0,0.18280820817613913,2.0,1.3855958624662446,0.0006996959010656825,0.036445788600537786,0.8287785516751702,1,0.14481378364823655,0.24960898238948176
+34,1,0.1544616590366612,1.95,1.3854767314830374,0.0006996283476834038,0.03670453949789311,0.8178541064983514,1,0.18422860654794157,0.2359007213916152
+34,2,0.16319769262545825,1.9,1.3855661428716224,0.0006996584879025694,0.036693416727888006,0.8064280588807726,1,0.2357861651614443,0.1962774218696018
+34,3,0.20776453959044633,1.95,1.3859991464184818,0.0007000211981410301,0.03643572826016058,0.8179320340907832,1,0.24518227800458642,0.23230542796203915
+34,4,0.2345951492909876,1.95,1.3860896106747487,0.0007002159117488671,0.036749416417377376,0.817945563559804,1,0.2876852870062837,0.2650701149615804
+34,5,0.27508228552516917,1.95,1.3860678335819445,0.0007001196677541355,0.036705486836991846,0.8179422920330854,1,0.3273152329627339,0.31385397446691865
+34,6,0.24077856626614846,1.95,1.3859628946352376,0.000700122295096886,0.036432081357041304,0.8179266655524674,1,0.3723182789152682,0.272837515666804
+34,7,0.31796465656280887,1.9,1.3860944137912596,0.0007001070867425743,0.0367639592587111,0.8065106496058833,1,0.4223490071679743,0.3300835123187305
+34,8,0.36022794567042626,1.9,1.3860779129417717,0.0007000878772701532,0.03654774926196925,0.8065080686197545,1,0.47935974060040853,0.3949468314342095
+34,9,0.3367131988633083,1.9,1.3860886200909421,0.0007002237743851218,0.03662354991954586,0.8065097819088902,1,0.49922048113421824,0.3900833546987366
+34,10,0.3783802337141361,1.8499999999999999,1.385972434105271,0.000700281420524074,0.03677543525947398,0.7945173133845477,1,0.5335334483566956,0.41655618123819294
+34,11,0.37918055846773796,1.8499999999999999,1.3853080286526192,0.0006996154263140262,0.036434553324244945,0.7944086040773415,1,0.5675080742099698,0.44059109594583334
+34,12,0.41705488100509996,1.9,1.3849785181777072,0.0006995141378532145,0.03673583131957782,0.8063362679816485,1,0.5906559814950402,0.4693082946902798
+34,13,0.3976969863756785,1.9,1.3853579400215414,0.0006995630522274854,0.03671272538429444,0.8063955261590803,1,0.6267622233409117,0.45664032346437944
+34,14,0.46952056806321313,1.95,1.385599010776515,0.000699936365617849,0.036415093690647986,0.8178724133488924,1,0.6678929255746467,0.5078779927778482
+34,15,0.45360488544474853,1.95,1.3854240739173858,0.0006996551400531045,0.03652796840313103,0.8178462700171494,1,0.6851201547541159,0.531856078477007
+34,16,0.4976134425166384,2.0,1.3857887431435776,0.0006998185290195421,0.0367659508689455,0.828805955405725,1,0.727222382118432,0.5557482988975521
+34,17,0.4702298412160424,2.0,1.38594109742811,0.0007000025630740203,0.03675956141642396,0.8288276235796262,1,0.7630588086270564,0.516687725884066
+34,18,0.49314536792146546,1.95,1.3857543433391573,0.0007000105846855745,0.03643913302034281,0.8178955722077264,1,0.7802233528860175,0.5368534225568614
+34,19,0.5049459066431516,1.95,1.3860280050619351,0.0007000194051830926,0.0367774310911451,0.8179363311240728,1,0.7946017829514938,0.5570173115418471
+34,20,0.5474194373004472,2.0,1.3861135366692572,0.0007000493155443307,0.036552119207482345,0.8288520998246676,1,0.8284010594363325,0.5868633784197137
+34,21,0.5758773261394129,2.0,1.3820785451654825,0.0007000067193717097,0.036421704312740784,0.8282789390143972,2,0.8640443522100308,0.6341986175180016
+34,22,0.643641965114629,2.0,1.3766981423907403,0.0006994078483623713,0.03635734314820041,0.8275121453429224,2,0.9195434149021302,0.6527486638459232
+34,23,0.6484783163061966,2.0,1.3746060715053767,0.0006990575143013985,0.03648222072148692,0.8272132271603624,2,0.9631189065248147,0.710769178987569
+34,24,0.6665319135230717,2.0,1.3755992972093056,0.0007030905182156921,0.03656147228015514,0.8273562964040652,2,0.9823106038575292,0.7453589066002
+34,25,0.7194413466179279,2.0,1.3758860859561084,0.0007068277689549329,0.036583636306066224,0.827398324286511,2,1.0,0.7981378220597599
+34,26,0.6258236896704934,2.0,1.3736335046717794,0.0007071825259649515,0.036625068111711505,0.8270764965851531,2,1.0,0.7527456322349779
+34,27,0.7149751072586941,1.95,1.3763480638161523,0.0007047289807280587,0.03629818399946914,0.8164918008133107,2,1.0,0.7832503575289804
+34,28,0.6179254989000666,1.95,1.3736698664012321,0.0007048923091141869,0.03658328161512086,0.8160902274614935,2,1.0,0.7264183296668889
+34,29,0.6730663973742348,1.9,1.3757218576670136,0.0007025776128014678,0.03659698121223419,0.8048876275315584,2,1.0,0.7435546579141156
+34,30,0.7119834383660391,1.9,1.3758744842379913,0.0007066387178408883,0.036529323562145874,0.8049128708510773,2,1.0,0.773278127886797
+34,31,0.6246923922962119,1.9,1.3734828829636443,0.0007068975152420452,0.0361715186507363,0.8045371296620171,2,1.0,0.748974640987373
+34,32,0.691032552680536,1.8499999999999999,1.3751384085443816,0.0007041682048400819,0.03657444755679794,0.7927441880084902,2,1.0,0.803441842268453
+34,33,0.6782137171071099,1.8499999999999999,1.3844397921436398,0.0007005204329224456,0.03659579547532118,0.7942670601089151,2,1.0,0.8273790570236996
+34,34,0.7147942995453842,1.9,1.3837830566109286,0.0007008260260722692,0.03671865347882461,0.8061499286414666,2,1.0,0.8826476651512803
+34,35,0.7498201072804345,1.9,1.3835557863335293,0.0006997056558447888,0.03670293762845965,0.8061140599247683,2,1.0,0.8994003576014483
+34,36,0.7343113543025193,1.9,1.3848928533232079,0.0006997101197100564,0.03653939183147799,0.806322951581971,2,1.0,0.9477045143417306
+34,37,0.7238465457310546,1.95,1.3844261986123516,0.0006990494335858834,0.03657997437897746,0.8176973850566348,2,1.0,0.9794884857701815
+34,38,0.75,2.0,1.3838742555640604,0.0006989619899163352,0.03643541087727579,0.8285339007987768,2,1.0,1.0
+34,39,0.6827049590710723,2.0,1.383290892940987,0.0006982380929217035,0.03648141303343294,0.8284508034653655,2,1.0,0.942349863570241
+34,40,0.7474408737678295,1.95,1.3836657974428517,0.0006989173779390571,0.036500906653534906,0.8175839665185384,2,1.0,0.991469579226098
+34,41,0.7799999999999999,1.95,1.3828131688196326,0.0006979894145896241,0.03651622148285102,0.8174564937456765,2,1.0,1.0
+34,42,0.75,1.95,1.3843059290268558,0.0006987819530399017,0.036690547479019675,0.8176793762284577,2,1.0,1.0
+34,43,0.75,1.9,1.3833651099647784,0.0006981935243979079,0.03655838404004001,0.8060837838478213,1,1.0,1.0
+34,44,0.7155131376261159,1.95,1.3825290328747997,0.0006986815023542623,0.03660179110778623,0.8174142973506707,1,1.0,0.9850437920870531
+34,45,0.7155604097515231,1.9,1.382208198839614,0.000699248832068566,0.03666797209885184,0.8059032100356479,1,1.0,0.9852013658384106
+34,46,0.74,1.95,1.3814317429026721,0.0006996545837948287,0.03663201038319714,0.8172507624572709,1,1.0,1.0
+34,47,0.7035742878436257,1.95,1.383579573542908,0.0006996076564198552,0.036455312272031686,0.8175713126054239,1,1.0,0.9785809594787525
+34,48,0.691719199911055,1.9,1.3830054810328636,0.0006986238010664453,0.03666160027437275,0.8060276976292923,1,1.0,0.9390639997035168
+34,49,0.7050699851994611,1.95,1.3821234047727822,0.0006976259270244825,0.03664269194542502,0.8173534351398021,1,1.0,0.9502332839982037
+35,0,0.14077304393814627,2.0,1.386275944945686,0.0007001693017710423,0.03635190010342188,0.8288751712687984,0,0.1271598793824028,0.23303030728395047
+35,1,0.12060480626708739,1.95,1.3862649301395278,0.0007001543118422173,0.03673423479136844,0.8179716506908037,0,0.12911789468696916,0.22985882797433246
+35,2,0.160587418677033,1.9,1.386282219415165,0.0007001633640183532,0.036724367782089776,0.8065399727781376,0,0.15776171928917734,0.25827576987120693
+35,3,0.1414085010928121,1.9,1.3862606768913417,0.0007001575730856324,0.036450287056066025,0.8065366095988609,0,0.15199614556650307,0.2687001428873696
+35,4,0.20995887212529796,1.95,1.3862711304177848,0.000700182054409262,0.036777027905525186,0.817972582134769,0,0.21545191079587622,0.2792603593564915
+35,5,0.20599664535052778,1.95,1.3858193711760092,0.0007000087978424526,0.03668250214526183,0.8179052568776821,0,0.24083918424752704,0.29886990550505654
+35,6,0.2501660467649935,2.0,1.385805343181007,0.0006999207846657318,0.03641361606304868,0.8288083397335674,0,0.29713571990240817,0.3043725293467674
+35,7,0.21560402844933307,2.0,1.3859175971553241,0.00070010861676828,0.03670035805242333,0.8288243196065492,0,0.3111202768962142,0.30385305896949133
+35,8,0.2990295551022728,1.95,1.3860375945976338,0.000700088428543037,0.036754480298174366,0.8179377797170163,0,0.4101504358503043,0.2832312692071702
+35,9,0.2882831378190225,1.95,1.3819825227062597,0.0007019409274295109,0.03655177552821006,0.8173336908238351,0,0.4447800511239226,0.30123705789817795
+35,10,0.2952123952023738,2.0,1.3826241666885535,0.0007011641410269609,0.03671055763474046,0.8283568595957445,0,0.456253620961249,0.30903648939291395
+35,11,0.31642942775959026,2.0,1.3830839125074645,0.0007004963160733011,0.03667918384120043,0.8284220273558922,0,0.4885143599653164,0.33674561257821234
+35,12,0.30847108472121426,2.0,1.3832453013560175,0.0006998675452181306,0.03632094974422463,0.8284447870582272,0,0.505172090326803,0.35467416196831014
+35,13,0.3789736075202616,2.0,1.3838683323030134,0.0006996170215715509,0.03662623380828163,0.828533245421651,0,0.567473450213076,0.37328075811677064
+35,14,0.4082942232353309,2.0,1.3841794034643904,0.0007005307749394648,0.036731074317209414,0.8285776930851505,0,0.6434312409561913,0.36973908950951456
+35,15,0.36867963123987335,2.0,1.3806251722058847,0.0007074248275339193,0.036516814821197216,0.8280742350723354,0,0.6385885478935605,0.3774807069414972
+35,16,0.40428615741741836,1.95,1.3811975627827515,0.0007060105323010158,0.03670378056657041,0.817217683421463,0,0.6589703880195209,0.4023266740320332
+35,17,0.4601178645001368,1.95,1.3858074121877322,0.0007001713329932264,0.03657023365845457,0.8179035241591851,0,0.750533969289521,0.3996809226144281
+35,18,0.5011976992868582,1.95,1.3806723426099337,0.0007064602776315193,0.03650161706804478,0.817139351072233,0,0.8542149467115255,0.36503906867415986
+35,19,0.4508610998443201,1.95,1.3742640625282887,0.0006920227223251568,0.03641167841303365,0.8161755301123464,0,0.8473895808361686,0.37301755836617556
+35,20,0.48671784249758704,1.9,1.3731491938042617,0.0006910663016098766,0.03611270799914641,0.8044796691250281,0,0.8708892015542112,0.3945405395863416
+35,21,0.5436422305651651,1.9,1.3758035945176905,0.0006929242845635184,0.03636719387205727,0.8048974316033043,0,0.967342450686721,0.3890175009682555
+35,22,0.5610898902399712,1.9,1.375161796138093,0.000692474538054942,0.036408822872453686,0.8047964841221291,0,1.0,0.3702996341332374
+35,23,0.5532700220781603,1.95,1.3764763468088121,0.0006935517898746478,0.03642770208889913,0.8165076718764211,0,1.0,0.3442334069272007
+35,24,0.5086789189116148,2.0,1.377431353367963,0.0006947590824743457,0.036453633261132504,0.8276154492069475,0,1.0,0.36226306303871575
+35,25,0.5512966317728535,1.95,1.3766408798201124,0.0006938817857579212,0.03643396275528884,0.8165324202761276,0,1.0,0.37098877257617796
+35,26,0.5534459489968738,1.95,1.375822519517572,0.0006938890955028049,0.03619758971777292,0.8164097944214003,0,1.0,0.3448198299895792
+35,27,0.5091594526493766,2.0,1.3762994316767205,0.0006950654987872359,0.036322338914867434,0.8274539876758901,0,1.0,0.36386484216458864
+35,28,0.5516338707561235,1.95,1.375575854933406,0.0006941025246762371,0.03626112734530447,0.8163728842432126,0,1.0,0.3721129025204114
+35,29,0.515817646273259,1.95,1.3746805829273891,0.0006942804420873117,0.036487335133310914,0.8162386909877183,0,1.0,0.38605882091086335
+35,30,0.5187210993182181,1.9,1.373635614973639,0.0006930423492136828,0.03634430993834006,0.8045567894645618,0,1.0,0.3957369977273934
+35,31,0.5365192410096095,1.95,1.3721108325116342,0.0006916181804584114,0.03603228136632025,0.8158521329643955,0,1.0,0.38839747003203134
+35,32,0.5579608782320135,2.0,1.3760299262905227,0.0006932386023633507,0.03613968808715165,0.8274149841899088,0,1.0,0.3598695941067112
+35,33,0.5308684654216064,2.0,1.376857453874003,0.0006943981897182649,0.036275095986261066,0.8275334536369597,0,1.0,0.3695615514053543
+35,34,0.5337430228241729,1.95,1.3795407869398386,0.0006955423271627996,0.03633744601536351,0.816966945223453,0,1.0,0.37914340941390956
+35,35,0.5517266038223445,2.0,1.3813536814399727,0.0006967067404286915,0.0365465280331699,0.8281748758020738,0,1.0,0.3724220127411481
+35,36,0.5386703499501524,2.0,1.3811662544898102,0.0006966135912361096,0.03647177341577063,0.8281481765583287,0,1.0,0.3955678331671745
+35,37,0.5444480396359591,2.0,1.38258833388069,0.000697648125053141,0.03646867518812797,0.8283507649110496,0,1.0,0.4148267987865304
+35,38,0.569196416770025,2.0,1.3833268983988187,0.0006987998364551359,0.036694842146196296,0.8284560801692523,0,1.0,0.39732138923341653
+35,39,0.5178092602486858,2.0,1.3820861852183564,0.0006972247062107388,0.03644616577770025,0.8282792342935522,0,1.0,0.3926975341622859
+35,40,0.5442928451365211,1.95,1.381270149791273,0.000696745569444887,0.03636864767012672,0.8172257579484588,0,1.0,0.41430948378840365
+35,41,0.5648644755848028,1.95,1.3805776644667718,0.0006986379969553566,0.036386250536988816,0.81712286578659,0,1.0,0.4162149186160091
+35,42,0.5469666485523691,1.95,1.381023595861404,0.0007003542476153668,0.03666069684316014,0.8171900060523385,0,1.0,0.4232221618412301
+35,43,0.5296794257918082,2.0,1.3806944115552542,0.0006991120128950119,0.03656128595164144,0.828081725416118,1,1.0,0.4322647526393606
+35,44,0.5342511681089155,2.0,1.3820476509629975,0.0007000495499309309,0.03666685152593785,0.8282745569807183,1,1.0,0.4141705603630517
+35,45,0.5345634924518184,2.0,1.3816605556876,0.0007005660817664042,0.03654720977723748,0.8282196381478771,1,1.0,0.41521164150606144
+35,46,0.5473452045116193,2.0,1.3811520116431688,0.0007010060467993718,0.036466829285496924,0.8281473997902452,1,1.0,0.42448401503873084
+35,47,0.5263749714303815,2.0,1.3807405813112308,0.0006998253906132579,0.036662041767115336,0.8280885012630216,1,1.0,0.38791657143460495
+35,48,0.5180506368450666,1.95,1.3825386148381398,0.0007026571657646587,0.036630433860699974,0.8174169141474699,1,1.0,0.36016878948355513
+35,49,0.5586436966846181,2.0,1.3826702524409935,0.0007015056256940559,0.03651928878669032,0.8283635091533984,1,1.0,0.39547898894872685
+36,0,0.1892386834300891,2.0,1.386265203768601,0.0007001532202090922,0.03635105946339703,0.8288736431607242,0,0.2141467748554528,0.17859991162635994
+36,1,0.20440717220779225,1.95,1.3857887853855746,0.0006998270788991226,0.03672248008052294,0.8179006473703962,0,0.26942401531867155,0.1887918869344121
+36,2,0.2511373517976223,2.0,1.3858658951149918,0.0006999054859587216,0.03671118313791871,0.8288169266371083,0,0.3751961662670128,0.17019628430272404
+36,3,0.22805996582583601,2.0,1.3857765349751128,0.0006998992960980745,0.03640798845436004,0.8288042461424451,0,0.3817519591614193,0.1845306072042276
+36,4,0.24423533796415972,1.95,1.3856858027188075,0.0006997814278148372,0.0367023377499278,0.8178852951151103,0,0.40406979790181263,0.2086913960114489
+36,5,0.3086142364080447,2.0,1.3841203807743434,0.0007023404850420219,0.03666404737104174,0.8285698236442992,0,0.5094539779495565,0.18277548409407363
+36,6,0.34247829167839705,2.0,1.3859690405774185,0.0007001999262354681,0.03636719100819116,0.8288316439044193,0,0.6103127166348917,0.16117735008146783
+36,7,0.3645589771017278,2.0,1.381969301435478,0.0007018196592067174,0.03666614100690271,0.8282639161563574,0,0.693318659832109,0.15743837722961398
+36,8,0.4113749817808346,2.0,1.3827081846256024,0.0007010238648515511,0.036676763764139135,0.8283687651981864,0,0.8067011865662559,0.1289816905144406
+36,9,0.42572317835279555,2.0,1.3816681604142054,0.0007010635903108376,0.03643403332038733,0.828220861646033,0,0.8783165910328514,0.11465513979884996
+36,10,0.41082387445610136,2.0,1.3814503322154654,0.0007000904291869259,0.036589788035866475,0.828189591835148,0,0.8903116125414668,0.11566409813171538
+36,11,0.431744051430726,2.0,1.380873430596488,0.0007002160453386276,0.036651718882637234,0.8281075238045552,0,0.918206212761607,0.14820522108694384
+36,12,0.42107254105926495,2.0,1.380179957803982,0.0007003754211307329,0.036470538054683144,0.828008834037755,0,0.9309396032982,0.16232233246661643
+36,13,0.4929921183909537,2.0,1.3802523252878918,0.000701720777886495,0.036583206225531774,0.828019522827861,0,1.0,0.14330706130317902
+36,14,0.48248538712393196,2.0,1.3822006108269316,0.0007011057113814631,0.03666013797762139,0.8282966126768168,0,1.0,0.1416179570797733
+36,15,0.4822517385051116,2.0,1.382021138737638,0.0007000824983346679,0.03644266348984085,0.8282707953329594,0,1.0,0.10750579501703866
+36,16,0.4589162871218487,2.0,1.383457043276201,0.0006998537840849458,0.036596913635424264,0.8284748746676445,0,1.0,0.12972095707282874
+36,17,0.47034035138129693,1.95,1.3828638708880703,0.0006999133924866713,0.036714114091993565,0.8174646336343131,0,1.0,0.1678011712709897
+36,18,0.49400648317973717,2.0,1.3820470443661783,0.0006999077705787811,0.03649788013770352,0.8282744303686849,0,1.0,0.1466882772657905
+36,19,0.4476949286817308,2.0,1.3833513472369303,0.0006996089909976635,0.03659794157477874,0.8284597847119539,0,1.0,0.15898309560576912
+36,20,0.4852713345718068,1.95,1.3836359867888588,0.0007006740564032505,0.03670767577342003,0.8175800444957436,0,1.0,0.15090444857268942
+36,21,0.4977974938810261,1.95,1.3835217034796612,0.0006998832264299682,0.036532829866714044,0.8175627634205979,0,1.0,0.15932497960342043
+36,22,0.4512475637032168,2.0,1.3844526679079119,0.0006997395242122059,0.03674838979670456,0.8286162784468448,0,1.0,0.17082521234405584
+36,23,0.48995698335152116,1.95,1.3846858610060095,0.0007004512446698105,0.03675082785242316,0.8177365071757822,0,1.0,0.13318994450507055
+36,24,0.4708943391610711,1.95,1.3852651624780212,0.0007002237011648902,0.03663859931953349,0.8178227646069863,0,1.0,0.16964779720357026
+36,25,0.49058785352854345,2.0,1.3847908637401307,0.0007002302622471057,0.036738272972025136,0.8286644401028941,0,1.0,0.13529284509514472
+36,26,0.47169288477057997,2.0,1.3852145701728287,0.0006999512120125397,0.0367476569691666,0.8287245102150801,0,1.0,0.17230961590193308
+36,27,0.48172174901499143,2.0,1.3847067614317192,0.0006998878692158538,0.03646738766111997,0.8286524017223995,0,1.0,0.2057391633833046
+36,28,0.4669094579742244,2.0,1.381018505695382,0.0006965319055958055,0.03642178954827441,0.8281271248584623,0,1.0,0.2230315265807479
+36,29,0.5050243152636354,2.0,1.3801772656588631,0.0006959995804500519,0.03653680503351263,0.828007204313965,0,1.0,0.21674771754545152
+36,30,0.4950561288561374,2.0,1.3798132489946253,0.0006956565348887089,0.03647694888900369,0.8279552603167409,0,1.0,0.25018709618712465
+36,31,0.5226466547689254,2.0,1.381288338862202,0.0006969791187486678,0.036486950929654705,0.8281656547949903,0,1.0,0.24215551589641782
+36,32,0.5135618048488931,2.0,1.382155743803834,0.0006972810173212967,0.03664143076008504,0.8282891435939785,0,1.0,0.21187268282964372
+36,33,0.4938848555992206,2.0,1.382616761170724,0.000697637765200855,0.03644840512492202,0.8283548038835991,1,1.0,0.24628285199740185
+36,34,0.4711270293496483,2.0,1.3823346499216895,0.000701650740602725,0.036500150883722306,0.8283158300727014,1,1.0,0.20375676449882746
+36,35,0.46076673353710423,1.95,1.3822574928926923,0.0007005989537319723,0.036718635620093414,0.817374339464008,1,1.0,0.16922244512368065
+36,36,0.5009141139407942,2.0,1.382219985952077,0.0006988484697013431,0.03663271907606595,0.8282987261668058,1,1.0,0.20304704646931407
+36,37,0.45835463072076077,2.0,1.3822982956528556,0.0007008643005524109,0.036525359369431964,0.828310436434399,2,1.0,0.1611821024025359
+36,38,0.5121262671542873,1.95,1.3862943611198846,0.0007001722195526525,0.036788073654356365,0.8179760380796509,2,1.0,0.20708755718095775
+36,39,0.45072103693261256,1.95,1.3862943611198844,0.0007001722195526527,0.036756998612821994,0.8179760380796509,2,1.0,0.1690701231087085
+36,40,0.5382288075301336,1.9,1.3862312603196234,0.0007001705743261057,0.03670670984535847,0.8065320235910514,2,1.0,0.19409602510044538
+36,41,0.5437474683757342,1.9,1.3861937562997324,0.0007003090769672408,0.03675620563042452,0.8065262146914478,2,1.0,0.21249156125244717
+36,42,0.45243774221596367,1.95,1.3862323135950627,0.0007001713521479671,0.036376130744771334,0.8179667993062127,2,1.0,0.17479247405321224
+36,43,0.4883530683330578,1.9,1.3860184591960585,0.0007004244148490807,0.03667280630949013,0.8064988955660349,2,1.0,0.19451022777685933
+36,44,0.5163246904856602,1.9,1.386086958200279,0.0007002107351946337,0.03671807130325887,0.8065095184982246,2,1.0,0.22108230161886727
+36,45,0.5546165793076605,1.9,1.3860379727046146,0.0007001685931907931,0.03640995944453062,0.806501860949964,2,1.0,0.24872193102553508
+36,46,0.45987019874400853,1.9,1.3860457024303545,0.0007000180175383271,0.03676174482609449,0.8065030202254622,2,1.0,0.19956732914669498
+36,47,0.4522429285093745,1.8499999999999999,1.3860272176587438,0.0007004240484359036,0.03664661046601249,0.7945263037478746,2,1.0,0.1741430950312482
+36,48,0.5372455296661969,1.9,1.3862029218168115,0.0007002970581324096,0.03664120495514721,0.8065276411392528,2,1.0,0.19081843222065606
+36,49,0.44288963414430993,1.9,1.386033314322232,0.0007004096236753611,0.036783506849594694,0.8065012092065709,2,1.0,0.1429654471476996
+37,0,0.1890970902161716,1.8499999999999999,1.3855691151058378,0.0006996655988725439,0.036457876785426925,0.7944512587584853,1,0.14041639501893421,0.27643510736199306
+37,1,0.15588105323388884,1.7999999999999998,1.3854125448101016,0.0006995614098640284,0.03672557546645776,0.7819065629883826,1,0.19579930958409014,0.225204431334176
+37,2,0.2334113648401434,1.7499999999999998,1.3854494880497334,0.0006995761093014482,0.03662148896979326,0.7688534830635538,1,0.24561134070274512,0.2838894285301512
+37,3,0.2787861456101338,1.7499999999999998,1.385929342931471,0.0007000856067255221,0.03660616414251604,0.7689389318643494,1,0.30471449317820065,0.35633449446284526
+37,4,0.2874437721379541,1.7499999999999998,1.3857464457209057,0.0007000549647433751,0.03675791799432696,0.7689064236905204,1,0.33220692448999245,0.38187000780652375
+37,5,0.3068140949623953,1.7999999999999998,1.3857294757348488,0.0006999053189484575,0.036438122670696585,0.781960721246729,1,0.35055971310554257,0.4219673657339277
+37,6,0.29789804280034005,1.8499999999999999,1.3858178672175523,0.0006999366686049589,0.036702598359120986,0.7944919651365835,1,0.37382714499502745,0.4278906160077635
+37,7,0.30660071100190434,1.9,1.3858025806692735,0.000699846174053718,0.03675152611117043,0.8064650231709279,1,0.3897552399116238,0.4356620501241827
+37,8,0.3454634155059429,1.95,1.3857220905784418,0.0006997692745065983,0.03653711380333804,0.8178906964705966,1,0.42619268686609346,0.44995446919835186
+37,9,0.3949965326619615,1.95,1.38515736125943,0.0006993874458869387,0.03644732087397445,0.8178064536919654,1,0.477733852400619,0.5130099723390463
+37,10,0.43297987699574964,1.95,1.3855056748320886,0.0006996526121133628,0.036749199743665,0.8178584253428571,1,0.5301348862867422,0.5697530749368426
+37,11,0.47449443175543576,1.95,1.3856804372200222,0.0006999437767310653,0.03664913814964985,0.8178845442919528,1,0.5837269961165134,0.6366787776961013
+37,12,0.5161368787549164,1.95,1.3862943611198846,0.0007001722195526523,0.0365171926191442,0.8179760380796509,1,0.6385247968188704,0.7024232000912274
+37,13,0.47831791087511455,1.95,1.385972071323633,0.0007005131123955747,0.03677998709989873,0.8179281485674758,2,0.6702522569822231,0.667390026940751
+37,14,0.47185557530063166,1.9,1.3862138348768596,0.000700170328757865,0.03662679853062205,0.8065293044665879,2,0.6970225077224652,0.6434885740388185
+37,15,0.540006033901876,1.95,1.3860200628776607,0.000700162712800893,0.0367429854748215,0.8179351910808327,2,0.7248032217879523,0.6669491506223169
+37,16,0.5709665359127567,1.95,1.3860399141249602,0.0007000213441234018,0.03677827552167227,0.817938105150691,2,0.7646889115538904,0.7169699043040018
+37,17,0.6408965560105465,1.95,1.385866967344347,0.0006998774989997985,0.036576943978612594,0.8179123064560025,2,0.8424247578829617,0.7464221761912062
+37,18,0.6032525611453161,1.95,1.3755776725094118,0.0007080100824781268,0.036532439034390025,0.8163773263849717,2,0.8598881533795202,0.7643243326450267
+37,19,0.6872913422549625,1.9,1.3780299298943353,0.0007057125378631565,0.03668810950079731,0.8052508235532175,2,0.9260843944458079,0.7895252815887976
+37,20,0.6060089503554622,1.9,1.375752780032585,0.0007060918003753369,0.036324013377598816,0.8048935873810604,2,0.9498195871959425,0.7536037182569509
+37,21,0.6052617161194577,1.8499999999999999,1.3771452411939902,0.0007037647546140817,0.03665833153557475,0.7930735861745963,2,0.989838313717456,0.6977546354415842
+37,22,0.6944674084216528,1.9,1.3775978337292767,0.0007017067577256583,0.036500547457877966,0.8051817957359387,2,1.0,0.7148913614055092
+37,23,0.674451488201042,1.9,1.375795521498586,0.00070164701966597,0.03647011172601265,0.8048989034259149,2,1.0,0.7481716273368064
+37,24,0.661287937757753,1.8499999999999999,1.3762179771311285,0.0007053050517508977,0.03659876537635778,0.7929218793116475,2,1.0,0.770959792525843
+37,25,0.6919809770846573,1.9,1.3787178114289926,0.0007034617037096911,0.03653118302810799,0.8053579701508143,2,1.0,0.8066032569488576
+37,26,0.7069944125721233,1.9,1.382623728930631,0.0006977836801760375,0.036561409860572415,0.8059677420795848,2,1.0,0.8566480419070773
+37,27,0.6439150923436792,1.95,1.381282664149904,0.0006971610879769967,0.03661202663311679,0.8172277513126618,2,1.0,0.813050307812264
+37,28,0.730441013091502,1.9,1.3820173818919987,0.0006972191408088022,0.03661213363640787,0.805872725034185,2,1.0,0.8348033769716734
+37,29,0.6858873155188654,1.9,1.3833429952129408,0.0006987560489638392,0.03664909259571192,0.8060805028692779,2,1.0,0.852957718396218
+37,30,0.6439230923247737,1.8499999999999999,1.383420856807771,0.0006983517821069175,0.0366021674236387,0.7940997999520741,2,1.0,0.8130769744159123
+37,31,0.7282716703651062,1.7999999999999998,1.3837573664800944,0.0006983790527734605,0.03669034002117908,0.7816237722693498,2,1.0,0.827572234550354
+37,32,0.710642386070726,1.7999999999999998,1.384759501676146,0.0006993721485385263,0.03666968587941279,0.7817951153243072,2,1.0,0.8688079535690866
+37,33,0.6970549313716874,1.8499999999999999,1.38375928237509,0.0006990484451185747,0.03663511860650618,0.7941553565918792,2,1.0,0.8901831045722912
+37,34,0.6536806257573726,1.9,1.3838770927275372,0.0006986391404861451,0.03666880853917037,0.8061639399907227,2,1.0,0.8456020858579087
+37,35,0.7168282594139901,1.8499999999999999,1.3843118402584316,0.0006987855752391544,0.036717276089491394,0.79424558408241,2,1.0,0.8894275313799666
+37,36,0.7261244655985561,1.8499999999999999,1.383260293882274,0.0006981085030933005,0.03662637984530763,0.7940734662594923,2,1.0,0.9204148853285202
+37,37,0.7377394501252894,1.9,1.3819623906487921,0.0006974384445297317,0.03657167500724857,0.8058641905750954,2,1.0,0.959131500417631
+37,38,0.7781755442186237,1.95,1.3804968390760761,0.0006967323838844461,0.036581524552729186,0.817110217936115,2,1.0,0.9939184807287456
+37,39,0.75,1.95,1.3820977865916106,0.0006991644775137215,0.03663919488730959,0.8173500700300623,2,1.0,1.0
+37,40,0.75,1.9,1.380404420446034,0.0006987550181771825,0.03656002904976308,0.8056207468455899,2,1.0,1.0
+37,41,0.75,1.95,1.3781925334882688,0.0006981887467484734,0.03650915384878138,0.8167660442085707,2,1.0,1.0
+37,42,0.75,2.0,1.3760901174762892,0.0006976683482534215,0.03650799608084726,0.8274248443642492,2,1.0,1.0
+37,43,0.75,2.0,1.3737898579253658,0.0006970001062348997,0.03653268067992221,0.8270959449143577,2,1.0,1.0
+37,44,0.75,2.0,1.3709090530726922,0.000696137692267056,0.03637716334179073,0.8266833306565211,2,1.0,1.0
+37,45,0.6844620896071025,2.0,1.3677067399309988,0.0006950210691214752,0.0360465401095882,0.826223708882641,2,1.0,0.9482069653570083
+37,46,0.6691541817285789,1.95,1.3696442528886401,0.0006935109348641726,0.035985587578457365,0.8154818412509091,2,1.0,0.8971806057619298
+37,47,0.7051032528722732,2.0,1.3701600673665897,0.0006919496513706955,0.036484459938390126,0.8265747905236238,2,1.0,0.9170108429075772
+37,48,0.7349274006977664,2.0,1.3726761192731938,0.0006918487552047552,0.036442369064877064,0.8269351386288167,2,1.0,0.9497580023258879
+37,49,0.7468241470687388,2.0,1.369895931045317,0.0006904162160575231,0.03647751623648358,0.826536483895855,2,1.0,0.9894138235624624
+38,0,0.1793496814251614,2.0,1.3852062247052224,0.000699420934606473,0.036486980193381015,0.8287231751182828,1,0.13866969526048956,0.2462726777365519
+38,1,0.14377352058866877,1.95,1.3850426486233982,0.0006993273885200649,0.036693284687864355,0.8177893430958493,1,0.15490257973558638,0.23937496231478067
+38,2,0.1576134237772952,1.9,1.3850555590070013,0.0006992965353049799,0.036674768080095024,0.8063482302889506,1,0.19917574088468504,0.22647709141140387
+38,3,0.2336854552642914,1.95,1.3850213490131629,0.0006992925788335065,0.036410383779139764,0.8177861588467444,1,0.25618311911641417,0.27070735872575247
+38,4,0.20954893188158993,1.95,1.3857811464828587,0.0006999130539631026,0.036737363899669764,0.8178995352459727,1,0.27555437226754204,0.2644239432485771
+38,5,0.2118877799762539,1.9,1.3858673091911586,0.0007000976206539061,0.036703641134313104,0.8064752042337945,1,0.3268651100262979,0.2371391198857824
+38,6,0.2295373199195349,1.95,1.3859994226931913,0.0007000695278645275,0.036550573690745256,0.817932089627841,1,0.34850559415981264,0.2337836075186995
+38,7,0.27427619015204924,2.0,1.386054326744051,0.000700213135929668,0.03676617988590693,0.8288437468401304,1,0.3855901438706684,0.2668004420126062
+38,8,0.26333548253276223,2.0,1.3860381080590845,0.0007000946726019231,0.03674560336902226,0.8288414124049751,1,0.4075313971617402,0.26774307889355375
+38,9,0.275535189125324,2.0,1.3859599620651972,0.0007001345030851122,0.03639272383630146,0.8288303373710719,1,0.43404885958154604,0.2730521509756852
+38,10,0.2740543029852713,2.0,1.3858447769127475,0.0007001566319419868,0.036687633252931715,0.8288140016437068,1,0.4822379065289871,0.2371971345789213
+38,11,0.2955539547230636,2.0,1.3860378111082936,0.0007001296766366235,0.03675763538040147,0.8288413802101237,1,0.5123856098491191,0.23533236927805323
+38,12,0.30930704018561317,2.0,1.38589432845548,0.0007001287382169339,0.036426535041434824,0.82882102405411,1,0.5333837374709383,0.25317848399079274
+38,13,0.3727010951037242,2.0,1.3856998924612636,0.0007001170193001529,0.036687508781415,0.8287934330208195,1,0.57091262963687,0.31445347749658736
+38,14,0.41628236633344523,2.0,1.385757415610589,0.0007004652364966457,0.03675916013462756,0.8288016939234375,1,0.623663100539271,0.38939042039245625
+38,15,0.37978515820573816,2.0,1.3848753731220431,0.0007013424938413526,0.03640258573617826,0.8286767541959335,1,0.6595243300595901,0.3532514206063403
+38,16,0.3974168437870883,1.95,1.3850433378326155,0.0007008091118246224,0.036645852781868125,0.8177898873772189,0,0.7201882652290312,0.33113845898491934
+38,17,0.45459863163220177,2.0,1.3742045883365763,0.0007117970346425152,0.036427692532984786,0.8271594777124802,0,0.7866145204434248,0.3331760781827728
+38,18,0.49248162533489687,2.0,1.3739390161268215,0.0007139211773995011,0.036314158608035454,0.8271221139054438,0,0.8765078354017344,0.3062616372473437
+38,19,0.4502232663976308,2.0,1.3782346789934632,0.0006959640014717325,0.03644313319870156,0.8277303716262322,0,0.8858816257159047,0.31956872037089645
+38,20,0.5320703986370544,1.95,1.3774567207974315,0.0006950523379215251,0.03647192837121237,0.8166549581230609,0,0.9928320743373809,0.2831252296736735
+38,21,0.48809593521356515,1.95,1.3772589128417057,0.0006957808801864808,0.03634677093380877,0.8166255567503448,0,1.0,0.2936531173785505
+38,22,0.5133323290451888,1.9,1.3763564732841786,0.0006946814945538308,0.03642068689460354,0.8049847914073747,0,1.0,0.31110776348396263
+38,23,0.5331099855216271,1.9,1.3790827100402645,0.0006955581953093633,0.03646964309406481,0.8054126866976321,0,1.0,0.3103666184054237
+38,24,0.5363328124219291,1.95,1.3788451744196761,0.0006959323836770565,0.036547563751791336,0.8168630226911715,0,1.0,0.32110937473976364
+38,25,0.524494805541762,2.0,1.3785800261858714,0.0006962892338306161,0.036529858887688296,0.8277797028078216,0,1.0,0.3483160184725398
+38,26,0.5479202602048058,2.0,1.3810504981464349,0.0006970477588919261,0.03662717112974275,0.8281318252214162,0,1.0,0.3264008673493523
+38,27,0.5435037470748284,2.0,1.3812203637777105,0.0006976966808141323,0.036376997327114836,0.8281561854659186,0,1.0,0.31167915691609455
+38,28,0.4992007322181154,2.0,1.381131078233825,0.000698330935541262,0.03649761643123532,0.8281436590903148,0,1.0,0.33066910739371796
+38,29,0.502863980055771,1.95,1.3805284159934097,0.0006974648829795092,0.03657987092285059,0.8171151557048989,0,1.0,0.34287993351923657
+38,30,0.547655373286277,2.0,1.3796516207108491,0.0006965106760424362,0.03645530361387488,0.8279324792618621,0,1.0,0.32551791095425653
+38,31,0.5055665384397553,2.0,1.3796043857900169,0.0006971240814006266,0.03647759708828817,0.8279259248343075,0,1.0,0.35188846146585095
+38,32,0.512996797081378,1.95,1.378840233424834,0.0006961642413666196,0.03651504026686213,0.8168623528989525,0,1.0,0.3766559902712602
+38,33,0.5178361791131245,2.0,1.377741350924814,0.0006950881601996937,0.036448356573653654,0.8276597653619339,0,1.0,0.39278726371041495
+38,34,0.5462503409597875,2.0,1.3769258523511327,0.0006941442889532023,0.036272452106658734,0.8275431429034206,0,1.0,0.42083446986595835
+38,35,0.567437322559074,2.0,1.3797230862191148,0.0006992483162973752,0.036577713676090765,0.8279434399923106,0,1.0,0.39145774186357957
+38,36,0.558863000758167,2.0,1.3763041925982211,0.000693911425959984,0.036484449794990645,0.8274543378679479,0,1.0,0.39621000252722316
+38,37,0.5203828274522302,2.0,1.376244048653239,0.0006945995119908531,0.03647791222062883,0.8274459472166518,0,1.0,0.4012760915074339
+38,38,0.5614166236365817,1.95,1.3750847537107416,0.0006994672672699878,0.036532486194918126,0.8163008616372566,0,1.0,0.4047220787886057
+38,39,0.5619664950735508,1.95,1.3753321576239812,0.0007024290992384242,0.036515826134617305,0.8163388460174088,0,1.0,0.37322165024516907
+38,40,0.5526076922687753,2.0,1.3777110763751013,0.0006965982728810946,0.03641455535544015,0.8276558777955163,0,1.0,0.3753589742292508
+38,41,0.5564864266634404,2.0,1.3774915871315125,0.0006972615201220227,0.03649194563833256,0.8276247564818067,0,1.0,0.35495475554480094
+38,42,0.5021698631827876,2.0,1.3772872351207983,0.000698240183691599,0.03647422999580241,0.8275958805329736,0,0.9909626018155328,0.352616074855248
+38,43,0.5378807963673629,1.95,1.376600352672625,0.0006970913569578779,0.0365032101763987,0.8165273105953047,0,1.0,0.3262693212245428
+38,44,0.5235415945705371,1.95,1.3758927914758892,0.0006977316189931318,0.03619102888859522,0.816421478706607,0,1.0,0.34513864856845694
+38,45,0.5453709446838346,2.0,1.379001807658266,0.0006978501008751431,0.03655541034331186,0.82784026877091,0,1.0,0.31790314894611543
+38,46,0.532835537349638,2.0,1.3789791904590676,0.0006987007500216829,0.0363517327964626,0.8278372878004145,0,1.0,0.27611845783212624
+38,47,0.5204698977287106,2.0,1.3786222716964736,0.0006994370305573752,0.03659394420131824,0.8277866227401539,0,1.0,0.26823299242903503
+38,48,0.5187218295378325,2.0,1.3782542136068314,0.0007001628497860547,0.03643549209008402,0.8277343545361623,0,1.0,0.2624060984594417
+38,49,0.5199231722959504,2.0,1.3777917690725023,0.0007008065651195067,0.0364928195587692,0.8276685881172384,0,1.0,0.2664105743198347
+39,0,0.012216534860174336,2.0,1.3847143592262139,0.0006990661500522993,0.03650706484590083,0.82865324716548,1,0.13126555489218358,0.16570104301100302
+39,1,0.06025234347519762,1.95,1.3858813005614268,0.0007003984257875691,0.036720577682941416,0.817914596281226,1,0.16554002544888893,0.1801211109854735
+39,2,0.14367629648298463,1.95,1.3858358779653135,0.0007004206030251766,0.03672964498935136,0.8179078379881588,1,0.21169713450882024,0.16332480893152174
+39,3,0.19889950598677217,1.95,1.3862017101934214,0.0007001119120293636,0.03638276691566813,0.8179622248024025,1,0.25659242330351034,0.18754178888456002
+39,4,0.22201875054552903,1.95,1.3862181817446806,0.0007001412301825782,0.03675579639525053,0.8179646861347846,1,0.2862108610669096,0.22511468706255047
+39,5,0.27246608804096883,1.95,1.3860461393787165,0.0007001916316564595,0.036707224169746894,0.8179390829014213,1,0.3449330934247073,0.28164283557028646
+39,6,0.23474451792451223,1.95,1.3859422482517543,0.0007002189469812996,0.03643607840884282,0.8179236196061294,1,0.3878301648092726,0.2320415066693438
+39,7,0.28362227318544253,1.9,1.3860917047488501,0.0007001809442054786,0.03676615780062386,0.8065102499072865,1,0.40944133066302696,0.2661524697341059
+39,8,0.2651828081375553,1.9,1.3857128824763787,0.0007006454504618955,0.036535134633328414,0.8064512722792451,1,0.4808235305852652,0.20951131967816394
+39,9,0.2770582434652174,1.95,1.3859230884108564,0.0007004860669999446,0.036620611320630665,0.817920845780066,2,0.5403443926067083,0.16973495474178021
+39,10,0.31211354470487607,2.0,1.3862943611198844,0.0007001722195526521,0.03677866945806729,0.8288777842514964,2,0.5677215172832611,0.18341645930523873
+39,11,0.32879901406206113,2.0,1.386271583464544,0.000700171193846629,0.036761086517789435,0.8288745531672833,2,0.5977186163284289,0.19903855843563187
+39,12,0.2965141332517665,2.0,1.386197889421204,0.0007001725299352905,0.03641875288871946,0.8288641004172566,2,0.6229099808504817,0.1578338030385794
+39,13,0.3805208761671136,1.95,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8179760380796509,2,0.681251998573726,0.19340025579207737
+39,14,0.33011676888098657,1.95,1.3862596005075731,0.0007001706726508898,0.03662151647388359,0.8179708620111522,2,0.7178175146763387,0.143299210034837
+39,15,0.443270300255106,1.9,1.3862499747191295,0.0007001420239019848,0.036553625816762844,0.806534934824181,2,0.7807833046457024,0.16985659465608344
+39,16,0.35975616537553445,1.9,1.3862509643152439,0.0007001847741548541,0.03671215773793665,0.8065351025782607,2,0.8105291586987664,0.11848167298675957
+39,17,0.4319474796007454,1.8499999999999999,1.386102414928263,0.0007002770546173046,0.0364529148916099,0.7945385317576925,2,0.8387802194198404,0.1547846394426975
+39,18,0.37854814151816074,1.8499999999999999,1.38603638476517,0.0007004847394738291,0.0367271971447755,0.7945278201290098,2,0.8601412024912918,0.11497220173881326
+39,19,0.4629219047485034,1.7999999999999998,1.3860627430734698,0.0007002771063695011,0.03639260293604455,0.78201766412682,2,0.9111828072259683,0.16149593952705354
+39,20,0.5229251810768595,1.7999999999999998,1.38591490087527,0.0007004265891832947,0.03672311095788552,0.7819925119701288,2,0.9640098476246651,0.19107080675664465
+39,21,0.4954857844507492,1.7999999999999998,1.3857447866214385,0.0007007099300924969,0.03648174966579337,0.7819636060802558,2,0.9899666441050861,0.23166375602904932
+39,22,0.5388923813111506,1.7499999999999998,1.385777617745025,0.0006999264713720415,0.03676430338221074,0.7689119169172957,2,1.0,0.2963079377038351
+39,23,0.47966321962366265,1.7499999999999998,1.38590354221758,0.0006998996997859597,0.03656980940367352,0.7689342817101658,2,1.0,0.26554406541220876
+39,24,0.5140755280498184,1.6999999999999997,1.3855717070172031,0.0006997335708053585,0.03675730965211878,0.755279506974249,2,1.0,0.280251760166061
+39,25,0.5214874073787514,1.6999999999999997,1.3858384652736744,0.0007001767340496139,0.03670384522716058,0.7553289729777042,2,1.0,0.30495802459583804
+39,26,0.5303603473317958,1.7499999999999998,1.3858675376878733,0.0007006117090417143,0.0367068496531681,0.7689281375831041,2,1.0,0.33453449110598577
+39,27,0.48651532901501665,1.7999999999999998,1.3857099305158285,0.0007009773315770377,0.03668168153095105,0.7819577543607986,2,1.0,0.2883844300500555
+39,28,0.4771875068701605,1.7499999999999998,1.3854430892664134,0.0007012453946696497,0.03667602311673952,0.7688529392088441,2,1.0,0.2572916895672016
+39,29,0.5444431678253191,1.7999999999999998,1.3850074540922437,0.0007015519750312511,0.03677190509852017,0.7818381545615837,2,1.0,0.3148105594177303
+39,30,0.5578350010787118,1.7999999999999998,1.3853594929915403,0.0007008797391308231,0.036770786284208226,0.781897965635013,2,1.0,0.3594500035957055
+39,31,0.542888375507135,1.8499999999999999,1.3853921619512817,0.0007003103616576298,0.03642153517950904,0.7944225716753109,2,1.0,0.3762945850237831
+39,32,0.5519760599388152,1.9,1.3853135972194566,0.0007007716563049705,0.03651571648934854,0.8063889805765811,2,1.0,0.4065868664627171
+39,33,0.5587812155998111,1.95,1.3795498772152803,0.0006978020884610133,0.036405755930560134,0.8169689803143904,2,1.0,0.4292707186660369
+39,34,0.5707887832589333,2.0,1.3782106293698688,0.0006974684055960692,0.036480725270070326,0.8277273713366947,2,1.0,0.46929594419644416
+39,35,0.6054016371385814,2.0,1.3767312192301349,0.0006970172412526026,0.03648183880245182,0.8275161841040388,2,1.0,0.5180054571286046
+39,36,0.6196221293041859,2.0,1.3781386352065312,0.0006963699271656833,0.036298494020424434,0.8277167918137378,2,1.0,0.5654070976806195
+39,37,0.6049431285042403,2.0,1.3788421292620403,0.0006957722964814786,0.03629756519647721,0.827816917770139,1,1.0,0.5831437616808007
+39,38,0.5756977274868246,2.0,1.3807199163251602,0.0006998352690244413,0.03663523624346467,0.8280855622309039,1,1.0,0.5523257582894151
+39,39,0.5897768010597371,1.95,1.3800803158962944,0.0007002394960365798,0.03645617026718765,0.817049012516136,1,1.0,0.5659226701991232
+39,40,0.589218302902591,2.0,1.3793491960209299,0.0006988829249818771,0.03651615096775797,0.8278900675157819,1,1.0,0.5640610096753031
+39,41,0.5687366022414422,2.0,1.3788201405511082,0.0006976405715377612,0.03656342270423084,0.8278143161633291,1,1.0,0.5291220074714738
+39,42,0.5816928139815778,1.95,1.3781190155365595,0.000697990131369271,0.036458634612874415,0.8167549818570745,1,1.0,0.538976046605259
+39,43,0.5622686180100827,2.0,1.3771148138485865,0.0006966188188506873,0.03638772162228303,0.8275708151858585,1,1.0,0.5075620600336086
+39,44,0.6236756495719481,2.0,1.3765390234294905,0.0006969313112544174,0.036438181687249584,0.8274887251321137,1,1.0,0.5789188319064935
+39,45,0.5811014141191366,2.0,1.3794983863465706,0.000697194397029762,0.03639993787347405,0.8279108431787336,1,1.0,0.5703380470637889
+39,46,0.5925405876850707,1.95,1.3786581534791615,0.0006971944108934327,0.036358172345518316,0.8168354207447839,1,1.0,0.575135292283569
+39,47,0.6237976351992421,2.0,1.3776374316158204,0.0006958985909691,0.03644044225178998,0.8276451731165855,1,1.0,0.6126587839974735
+39,48,0.5840197420253641,2.0,1.3799913822995136,0.0006971864047795276,0.03640024670855625,0.8279810688892058,1,1.0,0.5800658067512138
+39,49,0.6478997538384244,1.95,1.3784135479313036,0.0006977070902246654,0.03647110320140338,0.8167989746052221,1,1.0,0.6596658461280809
+40,0,0.10510549923304875,1.95,1.386276297498603,0.0007001698288953797,0.036349284530004064,0.8179733478373417,0,0.09617963790683653,0.2221121469010471
+40,1,0.1882136059572354,1.9,1.386287388622564,0.0007001689377626049,0.03674245719599123,0.8065407810844377,0,0.1955158230586748,0.20002425577921837
+40,2,0.14377164347310328,1.9,1.3862845422871135,0.0007001813307479107,0.03670660909771734,0.8065403408299338,0,0.20947491698822124,0.1999389222593826
+40,3,0.18272552840071957,1.8499999999999999,1.3850457807283043,0.0006993293756570717,0.03640107668703811,0.7943656760501052,0,0.23785892486072785,0.2252731948547614
+40,4,0.2455213271335051,1.8499999999999999,1.385484996477727,0.0006999988850106874,0.03676621800978686,0.7944376308317342,0,0.3319633933235209,0.20911989934698924
+40,5,0.26449680961819283,1.8499999999999999,1.3852508051114634,0.000699954708704042,0.03651360792103436,0.7943993687959765,0,0.41043602778708344,0.20107466167786495
+40,6,0.23054843106426529,1.9,1.3843583849264511,0.0007022434925345504,0.03661450555561268,0.8062402635043074,0,0.41126569939654695,0.22014050435215501
+40,7,0.26792017914415367,1.8499999999999999,1.3848713869176186,0.0007017447911538988,0.036779461862453525,0.7943379767500764,0,0.44055576116184375,0.23899291559805372
+40,8,0.28311788360305745,1.8499999999999999,1.3850442152137385,0.0007013279494114063,0.03643649322662215,0.7943660732542628,0,0.4626159159805764,0.26023839070275623
+40,9,0.33781565546708375,1.9,1.3851377987065865,0.0007008968685567609,0.036732039116961324,0.8063615715179956,0,0.5597624582883234,0.21303557383918129
+40,10,0.31845908879699614,1.9,1.3848702978594056,0.0007010124546062494,0.03675139328360152,0.8063198359222584,0,0.580217460304906,0.22124034891677916
+40,11,0.37915520173946204,1.95,1.3848888783433173,0.0007005505621012192,0.03640208338868502,0.817766793242321,0,0.6761562136440031,0.1956423876062026
+40,12,0.37202640396750175,1.95,1.383178873446119,0.0006985325775031293,0.03646780790606806,0.8175112204227666,0,0.7150237396939527,0.22005636029973538
+40,13,0.39203410806000877,2.0,1.3614207240410474,0.0007179747703309155,0.03648991736486773,0.8253259413671868,0,0.7571949471915655,0.23052043061127497
+40,14,0.44399648624406457,2.0,1.365948897960585,0.0007137029738153156,0.036553506716928696,0.8259765472502013,0,0.8272837620977446,0.2102766046832223
+40,15,0.4040867593653204,2.0,1.3777482278475794,0.0006948416778493054,0.036290537602456825,0.8276606759619224,0,0.8486097122891725,0.21547624816550467
+40,16,0.4215184421076526,1.95,1.377102444809044,0.0006942485668209131,0.03642075041951402,0.8166016658059645,0,0.8815536094702794,0.22965666106513616
+40,17,0.4181849984211489,2.0,1.3761020093788043,0.0006933708874285728,0.036422346116356204,0.8274253151494352,0,0.8757946193650681,0.22622383558373885
+40,18,0.5037785581298496,2.0,1.3755317191584124,0.0006928696458269586,0.036477777146028595,0.8273437234829701,0,0.9759113214731716,0.21138009846860312
+40,19,0.4563257475067763,2.0,1.3747802466087888,0.0006926072657132973,0.03630959858735443,0.8272362771659579,0,0.9792019878091236,0.21548317461042282
+40,20,0.4895659931179949,1.95,1.3738511388660257,0.0006918009633444935,0.03625686624492096,0.8161135032742632,0,1.0,0.23188664372664963
+40,21,0.4765720716600334,1.95,1.3762226769992936,0.0006932514550704003,0.03632142494179428,0.8164695732715548,0,1.0,0.255240238866778
+40,22,0.5174049941510163,2.0,1.3751966531019444,0.0006925336771319976,0.036418583829934806,0.8272957593535022,0,1.0,0.22468331383672058
+40,23,0.4717700541486155,2.0,1.3746998107697967,0.0006922390407139006,0.03643535885876774,0.8272246760049512,0,1.0,0.23923351382871821
+40,24,0.5204765725983919,1.95,1.3736806071696557,0.0006915102831712445,0.03640181270244169,0.8160878225632793,0,1.0,0.23492190866130613
+40,25,0.47229005359923554,1.95,1.372450811978367,0.0006907363275425649,0.03619076318841743,0.8159029402031062,0,1.0,0.240966845330785
+40,26,0.4772155577394183,1.9,1.37137370460181,0.000690018482129272,0.03617288077377778,0.8041999176785556,0,1.0,0.25738519246472763
+40,27,0.481613921994001,1.95,1.3697677063821991,0.0006889108126149508,0.03622129548982655,0.8154990324556224,0,1.0,0.27204640664667
+40,28,0.5274405679560548,2.0,1.3688632454005254,0.0006883977557051591,0.0362481118077622,0.8263877945906933,0,1.0,0.25813522652018234
+40,29,0.4826941652770384,2.0,1.3682985233276537,0.0006879543512470212,0.0362027223990193,0.8263066311333019,0,0.9998347357514066,0.2758675699215859
+40,30,0.5214515123387629,1.95,1.3669900974153224,0.0006871493384901105,0.03630413768568374,0.8150802151260396,0,1.0,0.27150504112920953
+40,31,0.5264466290461465,1.95,1.3690313175308582,0.0006884400069584987,0.036050286505457385,0.8153880676399992,0,1.0,0.2548220968204883
+40,32,0.5187477631893096,2.0,1.3680088072399448,0.0006880217169749047,0.03607339075973907,0.826265065336443,0,1.0,0.22915921063103198
+40,33,0.513091501530488,2.0,1.3673602841474108,0.0006879622726337607,0.036057834808817704,0.8261719323555067,0,1.0,0.21030500510162653
+40,34,0.47003672844338423,2.0,1.3662212797353157,0.0006875277347416874,0.03608525395747152,0.8260081721242684,0,1.0,0.23345576147794733
+40,35,0.4974585088169192,1.95,1.365153869941611,0.0006866319880023233,0.03615958999651143,0.8148031344606006,0,1.0,0.2581950293897306
+40,36,0.5137986989906226,1.95,1.368458582048,0.0006881840396932892,0.03601936251602984,0.8153017608944993,0,1.0,0.21266232996874163
+40,37,0.5060440260461075,2.0,1.3673185209653806,0.000687564654724575,0.03594324095954525,0.8261658203766705,0,1.0,0.2201467534870252
+40,38,0.4925034718086389,2.0,1.370082418126763,0.0006899493185361104,0.036117582088828586,0.8265630857868821,0,1.0,0.24167823936212957
+40,39,0.49210888345408876,2.0,1.3730717322416734,0.000691272370783843,0.03621376532114305,0.8269915838950426,0,1.0,0.2403629448469625
+40,40,0.5149589476726927,2.0,1.3752929864938106,0.0006927011435536225,0.03635923795726913,0.8273095706437157,0,1.0,0.21652982557564202
+40,41,0.49009150314926075,2.0,1.3743974657986922,0.0006920313150866297,0.03640092138271415,0.8271813999838361,0,1.0,0.233638343830869
+40,42,0.5113676176156607,1.95,1.376113702593331,0.0006934049991697061,0.03632022642755672,0.8164532892390006,0,1.0,0.20455872538553568
+40,43,0.4997438000947254,1.95,1.374920268389428,0.000692457721538412,0.036271176036028266,0.8162740927171729,0,1.0,0.1991460003157513
+40,44,0.48389662293971203,2.0,1.3806542225672875,0.0006991619482966645,0.03629098449086646,0.8280760181588646,0,1.0,0.21298874313237326
+40,45,0.5094261236740678,2.0,1.3725558480234294,0.0006913801106612301,0.036311289500616836,0.8269177913734748,0,1.0,0.1980870789135593
+40,46,0.5021761600890985,2.0,1.37190160050483,0.0006969516749418547,0.03611006005153643,0.8268257278610167,0,1.0,0.173920533630328
+40,47,0.4798222437246611,2.0,1.373255737236145,0.0006956081591499981,0.0363742037052282,0.8270191496484377,0,1.0,0.1994074790822034
+40,48,0.4799598480910059,1.95,1.3715034903129455,0.0006950262047973951,0.03646328237832095,0.8157618943453883,0,1.0,0.19986616030335289
+40,49,0.46325346600478745,2.0,1.3691853602453825,0.0006941828946722906,0.03612144159586274,0.826435663517577,0,1.0,0.21084488668262474
+41,0,0.07789363410561137,2.0,1.3862907276686756,0.0007001702066401728,0.036344191795168915,0.8288772683133082,0,0.18152561268018663,0.18427796344512237
+41,1,0.19617964416580816,1.95,1.3862452745912899,0.0007002355558107359,0.03673164718655793,0.8179687482725213,0,0.2536726409608723,0.18236862593819744
+41,2,0.16748660202656554,1.95,1.3847246854277924,0.0006991483263245801,0.03666588794610911,0.8177419052587827,0,0.28172087012566327,0.18266084658766746
+41,3,0.1731367055504332,1.9,1.385028451249974,0.0006995286382178275,0.03635969925370734,0.8063440698441754,0,0.2895872671550126,0.19100599562809384
+41,4,0.2137959684333869,1.95,1.3851985333416006,0.0006998473964017655,0.03673752941109936,0.8178127252739146,0,0.3176336975519807,0.22247496470864875
+41,5,0.2329658068355108,1.95,1.3854660318658911,0.0007006711572327219,0.03667857971274702,0.81785282327817,0,0.35350207464356387,0.23854992326028418
+41,6,0.29650342090504683,2.0,1.3855452710081688,0.0007004257371749325,0.03640117862133935,0.8287715795329854,0,0.44632191664328835,0.2265821808257716
+41,7,0.28529707084667316,2.0,1.3848493452135275,0.0007005566370845386,0.03667487294691525,0.8286728357981311,0,0.4797883101646348,0.24460582260273075
+41,8,0.3374444741738918,2.0,1.3847897421266557,0.0007001797008527181,0.03673810509640112,0.8286642664991138,0,0.5587367200734631,0.24649928714835528
+41,9,0.327999062977386,2.0,1.3847736307962943,0.0007005866121212153,0.0364049034457806,0.8286620945510935,0,0.5747586297965351,0.26031870352923986
+41,10,0.3892413793864064,2.0,1.3846660689216737,0.0007001614291677529,0.03667695608729562,0.8286467014996414,0,0.66598631514613,0.24282284442651467
+41,11,0.3842652244111281,2.0,1.3488512447665495,0.0007124111049718095,0.036138697989725986,0.8235048536513981,0,0.7094682738625382,0.26825971622037587
+41,12,0.4556039153020386,2.0,1.3532668397600836,0.0007080549601467706,0.0356678294477421,0.8241444574129169,0,0.8155255065434218,0.2646457089488994
+41,13,0.4625659432700134,2.0,1.3754665952208653,0.0006945520629818224,0.03629181291453689,0.8273349012584034,0,0.8775843829240487,0.2384406336679796
+41,14,0.4742014455763773,2.0,1.3778498047873171,0.0006950979645644118,0.0364181036815669,0.8276752373679483,0,0.9270383826154778,0.2779536417672871
+41,15,0.4612070548556324,2.0,1.3787978728931023,0.0006965191574557996,0.03642597899565422,0.8278108224651167,0,0.9411584919110857,0.2824788603039937
+41,16,0.5347288254190298,2.0,1.3780618444162345,0.0006964398044594968,0.03645415491230209,0.8277058609708289,0,1.0,0.2824294180634324
+41,17,0.5252659375100974,2.0,1.3773543344670607,0.0006953690310028569,0.036504043398983006,0.8276046348372179,0,1.0,0.2842197917003247
+41,18,0.5280966507189214,2.0,1.379497508032844,0.0006959708184099574,0.0364312373140956,0.8279103693834738,0,1.0,0.26032216906307143
+41,19,0.5066054120531407,2.0,1.3787906452829164,0.0006952364474256097,0.03636408286318111,0.8278094265614707,0,1.0,0.28868470684380215
+41,20,0.4973598624975567,1.95,1.3797019911805073,0.0006963651509243919,0.03651190624663343,0.8169912952287564,0,1.0,0.32453287499185557
+41,21,0.5247115558206543,2.0,1.3788691052394237,0.0006961587339142838,0.03640881785444952,0.8278208729464631,0,1.0,0.3490385194021808
+41,22,0.5353072968479021,2.0,1.3796831858225207,0.0006975216478672525,0.03644701371014799,0.8279372640307702,0,1.0,0.38435765615967377
+41,23,0.5222786167759006,2.0,1.3799789619696403,0.0006987583051317025,0.036635643786567126,0.8279797476438078,0,1.0,0.40759538925300204
+41,24,0.5264149968926533,2.0,1.3700293583700585,0.0007026795379499457,0.03620093565256521,0.8265591292082013,0,1.0,0.42138332297551084
+41,25,0.5516590316895904,2.0,1.373669949611557,0.0007010255712981161,0.03636537273571404,0.8270799478011833,0,1.0,0.43886343896530117
+41,26,0.5784168626774695,2.0,1.3739147245506684,0.0006989654200229134,0.03650487685675175,0.8271143632072011,0,1.0,0.42805620892489804
+41,27,0.5517989281437139,2.0,1.3721040762494217,0.0006987573854947261,0.03650081958750567,0.8268552344527067,0,1.0,0.439329760479046
+41,28,0.5755531939040188,1.95,1.37200482531567,0.0006967896504392653,0.03634777558688707,0.8158377601781474,0,1.0,0.4185106463467294
+41,29,0.5664394000927034,1.95,1.369749443229089,0.0006963189688826427,0.03616686300239829,0.8154985138421827,0,1.0,0.4214646669756781
+41,30,0.5651284218409851,2.0,1.3710149650469845,0.000700507705290727,0.03637252074071485,0.8266997571507239,0,1.0,0.41709473946995035
+41,31,0.552163835261518,2.0,1.371962565989783,0.0007041606753259283,0.0363058535030561,0.826836521375241,0,1.0,0.4405461175383933
+41,32,0.5815281457577144,2.0,1.3718736466675971,0.0007017279158928448,0.03652910108352656,0.8268230930481456,0,1.0,0.4384271525257143
+41,33,0.5332906100762606,2.0,1.3702193109772454,0.0007018654091957323,0.036400488863973984,0.8265861255637655,0,1.0,0.4443020335875351
+41,34,0.5760067372128592,1.95,1.3742114739583131,0.0007005043550550125,0.03641435182821984,0.816170185079612,0,1.0,0.4200224573761971
+41,35,0.5532608610641468,1.95,1.372167443605044,0.0007004618298637736,0.03627622738968124,0.8158632951019529,0,1.0,0.44420287021382276
+41,36,0.5531540585245325,1.9,1.3720251839683688,0.0006982661474750722,0.03637844134946881,0.8043050772121589,0,1.0,0.4438468617484415
+41,37,0.5778406726219807,1.95,1.3711389130034894,0.000696235350096351,0.03627546242439539,0.8157074576389295,0,1.0,0.4261355754066019
+41,38,0.5306670680411495,1.95,1.3698420807920484,0.0006961371110534505,0.03636806525915576,0.8155123970245297,0,1.0,0.4355568934704982
+41,39,0.557272469077538,1.9,1.3735807955923656,0.0006956908188815995,0.0363256943896501,0.8045490021827079,0,1.0,0.4575748969251266
+41,40,0.5622881845266116,1.9,1.3726311800963216,0.0006940451320613036,0.03631315535739582,0.8043991141805383,0,1.0,0.4742939484220385
+41,41,0.5822380661489559,1.95,1.3717501922964344,0.0006925444734093016,0.03633561972895058,0.815798223524371,0,1.0,0.4407935538298527
+41,42,0.58233103319619,2.0,1.370596480982332,0.0006923515518439879,0.03633734794588218,0.8266374562134076,0,1.0,0.44110344398729956
+41,43,0.5351978984495128,2.0,1.369336204607603,0.0006920069299753936,0.036185123875698846,0.8264566753517987,0,1.0,0.450659661498376
+41,44,0.5807726570700199,1.95,1.3726939916279624,0.0006924032764545656,0.03640367819750905,0.815939964968963,0,1.0,0.4359088569000662
+41,45,0.5693962726864624,1.95,1.3706099378848988,0.0006914696659880071,0.03618019355935213,0.8156264908410839,0,1.0,0.39798757562154113
+41,46,0.5594736059541208,2.0,1.3810320514071919,0.0006981239662920052,0.036507936381044534,0.8281295060458795,0,1.0,0.3982453531804023
+41,47,0.5596904289542438,2.0,1.3829667154937653,0.0006985253974486382,0.036687001640750116,0.8284048081191149,0,1.0,0.36563476318081245
+41,48,0.5180982206448562,2.0,1.3823606958069594,0.0006977981816442605,0.03651011881875554,0.8283184382739666,0,0.9980011826089953,0.39632582533752686
+41,49,0.5618050029520039,1.95,1.3820031391053642,0.0006979242591066239,0.0363812789168796,0.8173355694591115,0,1.0,0.3726833431733461
+42,0,0.07271450435558144,1.95,1.3862907473915336,0.0007001699204461998,0.03634542467289701,0.817975499341905,0,0.1870217747102722,0.15968598157157515
+42,1,0.15838741537489734,1.9,1.3861317868278047,0.0007003169918060762,0.0367364673584018,0.8065165471574598,0,0.2168103245557655,0.17221095184197044
+42,2,0.14296223912643452,1.9,1.3847979556412247,0.0006997823981000584,0.03665196799141157,0.8063081539123033,0,0.22679340726378056,0.17414958740307426
+42,3,0.22609388999105506,1.95,1.3849395706804222,0.000700188442312711,0.036394384018483064,0.8177742395830983,0,0.3340346112852772,0.14160015158981382
+42,4,0.2583061005299399,1.95,1.3849634959333086,0.0006998973405959988,0.03670821826239593,0.8177777181276151,0,0.42770750816952907,0.12407699087376091
+42,5,0.24213587892317787,1.95,1.3858668808264663,0.0007005682955319632,0.03669257493033731,0.8179124993337565,0,0.4475215635802649,0.14375751163690642
+42,6,0.2614025815775726,2.0,1.3858707959459875,0.000700381505971387,0.03640873566061325,0.8288177570375072,0,0.48678027791350803,0.15563490137389793
+42,7,0.27234850031237995,2.0,1.3858440005930857,0.0007001992401551242,0.03669782858422983,0.8288139035890228,0,0.49738831134893685,0.17797725257601718
+42,8,0.3380603060816255,2.0,1.3857721826057787,0.0007000394323680934,0.03674740163783195,0.8288036683609474,0,0.595737786389156,0.16588397175321035
+42,9,0.36072103604574557,2.0,1.3856837504299686,0.0007001293869965709,0.03640283546450325,0.828791146046958,0,0.6759147839545055,0.16785040821314448
+42,10,0.323435925492951,2.0,1.3797859779727526,0.000697616356283353,0.036469589918595974,0.8279519339959656,0,0.6911185190006599,0.15662839297562353
+42,11,0.35599557577744145,1.95,1.3805371214250406,0.0006992741308041309,0.03659839828302348,0.8171169973604755,0,0.7058618241354175,0.17883615374424805
+42,12,0.33560200954390307,1.95,1.379556368370576,0.0006991280321517541,0.036526417226351485,0.8169703474756846,0,0.699253058005534,0.18633595447229837
+42,13,0.40103224198822124,1.9,1.3800638835669374,0.0007009657864405843,0.036683001024536886,0.8055681071342959,0,0.7605287167471944,0.18940251763114505
+42,14,0.44598822948319045,1.9,1.381385833825779,0.0007002280437788733,0.036278603234608894,0.805774847182685,0,0.861347197348042,0.17149783514657874
+42,15,0.40109036554463934,1.9,1.3639787921596778,0.0006863151634775902,0.03597077364116836,0.8030317054477648,0,0.8754913629044465,0.16964606794286913
+42,16,0.4327091067168881,1.8499999999999999,1.3672905267310476,0.0006912166199073506,0.036309678428960046,0.7914475364296001,0,0.8999636880991245,0.17574543825746075
+42,17,0.4860678022435506,1.8499999999999999,1.3647809572549017,0.0006900379541690263,0.03627870376648884,0.7910326184356681,0,0.9857843644618733,0.17251352152933752
+42,18,0.49741439914745555,1.8499999999999999,1.3667220917377891,0.0006893057023626291,0.03608757301366179,0.7913530649175246,0,1.0,0.15804799715818513
+42,19,0.4702260070427964,1.9,1.3680012134983357,0.0006886967243225113,0.03571713004634529,0.803667915136754,0,1.0,0.16742002347598772
+42,20,0.4934047113135159,1.8499999999999999,1.3665054909198546,0.0006880150010210763,0.035840343949037345,0.7913168726866383,0,1.0,0.14468237104505294
+42,21,0.4817342670424694,1.8499999999999999,1.36667267035779,0.0006871444869084951,0.03632077757439846,0.79134419095568,0,1.0,0.13911422347489794
+42,22,0.4651707291278655,1.9,1.3682685273449748,0.0006874627030092346,0.03640015963555889,0.803709700682252,0,1.0,0.1505690970928848
+42,23,0.43994510429359385,1.95,1.3669046809882628,0.0006866355670828337,0.03636534621872829,0.8150671855506543,0,0.9893029952508227,0.14741302064421594
+42,24,0.4895884838232909,1.9,1.370872576716371,0.0006908261802124425,0.03640615500743638,0.8041212512862744,0,1.0,0.1319616127443029
+42,25,0.48117117250442926,1.9,1.3709676496537524,0.0006901168791133665,0.03595879986766803,0.8041360023852266,0,1.0,0.1372372416814308
+42,26,0.491834866487217,1.95,1.3722339323507569,0.0006902895830931488,0.036152742108016896,0.815870227269397,0,1.0,0.13944955495739
+42,27,0.4720992611460407,2.0,1.3727234291112023,0.0006905610433692993,0.03616195143278439,0.8269415406299945,0,1.0,0.17366420382013573
+42,28,0.45653579167901914,2.0,1.3715987388622108,0.0006897336481051129,0.03604950999742118,0.8267802908967864,0,1.0,0.18845263893006384
+42,29,0.4799799382690654,2.0,1.3746249015022807,0.0006926001616537095,0.03636148791690289,0.8272140726402518,0,1.0,0.19993312756355108
+42,30,0.5072620686208986,2.0,1.3731154989403644,0.0006917593811157782,0.03647667897054675,0.8269979851471068,0,1.0,0.19087356206966188
+42,31,0.49539028025764464,2.0,1.3731438852722486,0.0006912675491711531,0.03642705235670984,0.8270019056751976,0,1.0,0.18463426752548207
+42,32,0.4832990523740326,2.0,1.3744034591732581,0.0006917804966160013,0.03639081707983544,0.8271821850391229,0,1.0,0.21099684124677523
+42,33,0.5086707087823477,2.0,1.382121033632132,0.0007048438399776584,0.03649110073800969,0.8282863581425545,0,1.0,0.19556902927449216
+42,34,0.48359163699915036,2.0,1.3665191936834034,0.0006867267606208031,0.03587038025955984,0.8260507535776118,0,1.0,0.21197212333050106
+42,35,0.48638797190136207,1.95,1.3814266822901708,0.0007057002618796371,0.03676911693229671,0.8172518125102317,0,1.0,0.2212932396712067
+42,36,0.5128637294085308,2.0,1.3808667259991672,0.0007071017691542013,0.03676464434732963,0.8281085297362302,0,1.0,0.24287909802843557
+42,37,0.5007119433577266,2.0,1.3818247970558981,0.0007053593009513467,0.03662349689517614,0.8282443675438733,0,1.0,0.2690398111924219
+42,38,0.5209052608088252,2.0,1.381346529377792,0.0007063747508406121,0.03678026613267858,0.828176609587697,0,1.0,0.2696842026960836
+42,39,0.5173691907347167,2.0,1.381874918056303,0.0007048774566099116,0.03651579240889489,0.8282513603356416,0,1.0,0.25789730244905557
+42,40,0.4806757578359259,2.0,1.382104520280026,0.0007035569479632139,0.03647307555621345,0.8282836433990658,0,1.0,0.2689191927864197
+42,41,0.5207442406111762,1.95,1.3815852730309057,0.0007040661475325317,0.036734299946803585,0.8172750089842922,0,1.0,0.26914746870392037
+42,42,0.5091339549702102,1.95,1.3815203426140403,0.0007028010444247114,0.036708944252958134,0.8172649344306931,0,1.0,0.29711318323403385
+42,43,0.5190192012124563,2.0,1.38113683735334,0.0007036889425748456,0.03658801703654181,0.8281460038473,0,1.0,0.2633973373748542
+42,44,0.48317090051831585,2.0,1.381172235131426,0.0007023289869927511,0.036695037732254396,0.828150654517991,0,1.0,0.27723633506105283
+42,45,0.5294034072505092,1.95,1.380708165862663,0.0007028557140002927,0.03650274572055963,0.817143626631373,0,1.0,0.26467802416836383
+42,46,0.5256943067497212,1.95,1.382536220301041,0.0007022090073841697,0.036629926851673336,0.8174164229985277,0,1.0,0.2523143558324039
+42,47,0.4786207624309792,2.0,1.3839455060103627,0.0007016428399418053,0.03651934821486792,0.828544784465874,0,1.0,0.26206920810326395
+42,48,0.5231487885433904,1.95,1.3835641149450284,0.0007019158599458038,0.03663020351701941,0.8175696955037757,0,1.0,0.27716262847796796
+42,49,0.5266289494189869,1.95,1.3834563360091152,0.000701003608907166,0.036544735667055794,0.8175533476380624,0,1.0,0.2554298313966227
+43,0,0.15285286692353697,2.0,1.3846696965389587,0.0006990478136966905,0.03651063054280618,0.8286469003422909,1,0.11446288795051987,0.22355903914443004
+43,1,0.028559233357997982,1.95,1.3847325842671967,0.0006990789182510568,0.03668082216195071,0.8177430618104308,1,0.16256289318580497,0.17844692027891992
+43,2,0.13830838957551936,1.9,1.3858269200414377,0.0007005582424219421,0.03673223191505702,0.8064690442867684,1,0.2112129907968429,0.14607731085594067
+43,3,0.21279874381892194,1.9,1.3861058574880691,0.0007002350022908947,0.03646225897235149,0.806512475324959,1,0.2540820668378919,0.20388639027921718
+43,4,0.2142416311712242,1.9,1.3860572790370245,0.000700067573716389,0.03676846506179214,0.806504842283766,1,0.2797368076238788,0.20782302707224215
+43,5,0.1987352434793165,1.95,1.386003875434681,0.0006999981278638804,0.036638665261867945,0.8179327314599413,1,0.28544187564917883,0.21519497739881663
+43,6,0.2084009563317308,2.0,1.386042290981261,0.0007000642327907695,0.036428428082466754,0.8288419971708471,1,0.3044136178072956,0.22211836402937524
+43,7,0.270717777769641,2.0,1.3860470355162808,0.0007001350985507901,0.036715125723610485,0.8288426903498746,1,0.33469117415782434,0.28947102702170424
+43,8,0.25483872704201205,2.0,1.3859753208726522,0.0007001707254299823,0.036743818801589105,0.828832526601106,1,0.36103792533169204,0.3014118563644507
+43,9,0.2494094564035675,2.0,1.3859480992853943,0.0007002798163014248,0.03638710150040249,0.8288286956163758,1,0.3972558265235815,0.2683570859804496
+43,10,0.3074985082134494,2.0,1.3861233932824157,0.0007002449498963172,0.036700430540985644,0.8288535535463358,1,0.4421286241509133,0.30215686184361346
+43,11,0.28912832882997025,2.0,1.38585714360711,0.000700542724680263,0.036764124755306285,0.8288158657976927,1,0.4917975457465823,0.27469770177112446
+43,12,0.3390769589888998,2.0,1.3860117225553585,0.0007003881905957097,0.03643882573437443,0.8288377525175006,1,0.5228922947346856,0.2997334703167518
+43,13,0.38408395654777155,2.0,1.3860800041097328,0.000700234564416351,0.03669711459287052,0.8288473955260992,1,0.5631137826590682,0.3627948116138143
+43,14,0.34609214529856547,2.0,1.3860536355061326,0.0007004222692960688,0.03676429528616086,0.828843708115946,1,0.6013261031447649,0.31853901346886504
+43,15,0.35192915459596563,1.95,1.3843924487795023,0.0006990563872967164,0.0364821095057424,0.8176923560432698,1,0.6400737497796318,0.28633218228037616
+43,16,0.4242150820340063,2.0,1.3840227820023396,0.0006986946887016631,0.036699392731345384,0.8285549243071763,1,0.6859747693023266,0.33275058104358557
+43,17,0.39798344079709574,2.0,1.383770994398256,0.0006986717931257429,0.03667244079963759,0.8285191479949257,1,0.740650695769643,0.3057438749641284
+43,18,0.459786812118434,1.95,1.3833797309628346,0.0006982807246071161,0.036362389745968796,0.8175411086301795,1,0.7957250280467582,0.3383226696657691
+43,19,0.5131448511769438,1.95,1.384253004393806,0.0006987349383950908,0.036715596581094925,0.8176714720830147,1,0.8585597258604938,0.39906986944248757
+43,20,0.5167399542868704,1.95,1.3822186148579545,0.0007019627800543484,0.036436034095804135,0.8173689431069979,1,0.8752923093158951,0.42207676853504106
+43,21,0.5352248609934876,2.0,1.3763706118784862,0.0006976340594836298,0.036405747382683665,0.8274648835243861,1,0.9018824350679787,0.4482396232209871
+43,22,0.5105074092986899,2.0,1.3766415535287972,0.000699027565294082,0.03643665954591063,0.8275039593729807,1,0.9370427587618336,0.41896768597985473
+43,23,0.591634993459512,1.95,1.375960912122637,0.0006995112647241482,0.03653666074410073,0.8164322216691388,1,0.9786644446261382,0.5005640520301885
+43,24,0.5930055777371988,1.95,1.379024378884081,0.0006991558304501042,0.036404299004792535,0.8168907940967397,1,1.0,0.5100185924573292
+43,25,0.5758437207558498,2.0,1.3789510784897199,0.0007005084395378665,0.036586712864627065,0.8278337964518717,1,1.0,0.5194790691861657
+43,26,0.5805763691020648,2.0,1.3785487224179795,0.0006991082188963487,0.03656478438927552,0.8277760438489402,1,1.0,0.5352545636735493
+43,27,0.6296107515022671,2.0,1.3778522142733851,0.0006977834194896709,0.036284150069733595,0.8276763470747326,1,1.0,0.598702505007557
+43,28,0.6325504488462179,2.0,1.3807103140540726,0.0006980306369837588,0.03650000087941798,0.8280836814304037,1,1.0,0.6418348294873928
+43,29,0.6114385362060628,2.0,1.3809549934613903,0.0006990500699117476,0.03662005871890976,0.8281188016717047,1,1.0,0.6381284540202091
+43,30,0.5972526151275134,1.95,1.3808290891901984,0.0006979635515260685,0.036319893260401845,0.8171602324269363,1,1.0,0.6241753837583779
+43,31,0.6102189714223252,2.0,1.381409904665266,0.0006997527999559642,0.03667415923416245,0.8281837431721808,1,1.0,0.6340632380744173
+43,32,0.6573291204044633,2.0,1.3812050268292784,0.0006985673965520792,0.03664864484739362,0.8281542506314402,1,1.0,0.6910970680148778
+43,33,0.6298847943207616,2.0,1.382877277539011,0.0006986161723289533,0.03649592321696372,0.8283921199240635,1,1.0,0.6996159810692052
+43,34,0.6150555439898926,1.95,1.382401880801869,0.000697842502323912,0.03645678747383048,0.8173950689125574,1,1.0,0.6835184799663087
+43,35,0.631559020580094,2.0,1.3829117243192741,0.000698851097857777,0.03645622848714792,0.828397083567117,1,1.0,0.70519673526698
+43,36,0.6304352383702154,2.0,1.3824238096993544,0.0006980488529990902,0.03643005378538272,0.828327484616956,1,1.0,0.7014507945673846
+43,37,0.6586084250044488,2.0,1.3817093945656709,0.0006972432266029288,0.03645464227010204,0.828225640965585,1,1.0,0.7286947500148291
+43,38,0.6227018260880393,2.0,1.3809674409020378,0.0006971171043186513,0.036640913788016274,0.8281200231436052,1,1.0,0.7090060869601307
+43,39,0.6845392549191105,1.95,1.3814813030955653,0.0006981793474170191,0.036470164699773606,0.8172577236071003,1,1.0,0.7817975163970349
+43,40,0.684140720776218,1.95,1.3831841845884338,0.00069848134884767,0.03657854338647569,0.8175119974876175,1,1.0,0.813802402587393
+43,41,0.7112666037306292,2.0,1.3825734435001942,0.0006976272545695524,0.03628600004189995,0.8283486417653746,1,1.0,0.8708886791020971
+43,42,0.6811937129748653,2.0,1.382673581617436,0.0006980865825506942,0.036499880167841156,0.8283630102651247,1,1.0,0.8706457099162176
+43,43,0.7124775714318463,1.95,1.3824406207564488,0.0006984637362931809,0.03643606437858947,0.8174010366280127,1,1.0,0.9082585714394873
+43,44,0.6704424211866808,1.95,1.3840935407644577,0.0006988858139656778,0.03649363007097537,0.8176477422607747,1,1.0,0.8681414039556026
+43,45,0.6830876151105896,1.9,1.3833378922660342,0.0006981716574027354,0.03668131451172542,0.8060795225036365,1,1.0,0.8769587170352984
+43,46,0.7320227277285019,1.95,1.3829145411918284,0.0006981561321536231,0.036640450760071594,0.8174716699360387,1,1.0,0.9400757590950062
+43,47,0.6861952884888828,1.95,1.383095620480486,0.0006988905273638104,0.03643410848062925,0.8174989066737811,1,1.0,0.9206509616296091
+43,48,0.7232640272667946,1.9,1.3823154126928294,0.000697887960059605,0.036635235309006156,0.8059195545060124,1,1.0,0.9442134242226486
+43,49,0.7091033023654514,1.9,1.3839700543602849,0.0006985727582108463,0.036698984323206715,0.8061784453554707,0,1.0,0.9636776745515048
+44,0,0.13515884517051582,1.95,1.386289615900414,0.0007001697526621844,0.036346012458575654,0.8179753308223786,0,0.1329098131161603,0.2066497330801724
+44,1,0.1456181098225486,1.9,1.3862898104485646,0.0007001759016541212,0.036743784667663336,0.8065411611415141,0,0.148615751258872,0.22057269772999943
+44,2,0.12335910832329383,1.95,1.386279544427444,0.0007001823839066865,0.03670329707966332,0.8179738350203538,0,0.14908335015315158,0.21241922754011067
+44,3,0.16963120377022883,1.9,1.3862743353107816,0.0007001974832811322,0.03637964544984005,0.8065387532403027,0,0.18952912807345584,0.246065175136155
+44,4,0.18614236271865867,1.9,1.3862528727612276,0.0007002152370536449,0.036776635859694574,0.806535409871425,0,0.2118844788214573,0.27129523730025257
+44,5,0.24028655046282574,1.95,1.3848721259144385,0.0007005113671301282,0.036590019888568484,0.8177642850285005,0,0.29070096977595283,0.28002054184148195
+44,6,0.27037449778478995,1.95,1.3849483495775432,0.000700989132006479,0.03638631587961128,0.8177757864419499,0,0.36359047800221267,0.28312768861301635
+44,7,0.30600996040202066,1.95,1.3849031085296337,0.0007014384413874069,0.03674838400831977,0.8177691785043638,0,0.4516106043013464,0.28455239560494033
+44,8,0.3486245844550057,1.95,1.3822932984081084,0.0007007170062025947,0.03664026569942451,0.8173797194623161,0,0.5397274068537917,0.27577873904496336
+44,9,0.3017259005030366,1.95,1.381676854349998,0.0007007557174214685,0.03650170485383649,0.8172876963456869,0,0.5516806505909186,0.27017880088889706
+44,10,0.3422261457185521,1.9,1.3827761206457625,0.0007002998072263952,0.03669045217023718,0.8059923594429991,0,0.5803944711179444,0.30022785757124765
+44,11,0.3833494715765806,1.9,1.3827044461153948,0.0006996081579605408,0.03635947135572285,0.8059809352316405,0,0.6354322818937439,0.2972551960636101
+44,12,0.4158179023310078,1.9,1.3263459433024318,0.0006997476347705144,0.03535118240619063,0.7970156510213117,0,0.7174687710352957,0.29610131305629844
+44,13,0.46259812244033355,1.9,1.329049893253106,0.0007133913660475202,0.036055783838635315,0.7974571568285413,0,0.8143907506152545,0.2894727406474391
+44,14,0.41468995724276314,1.9,1.372693798685996,0.0007041104789049818,0.03650408633803949,0.8044121337224133,0,0.8224620825428267,0.2856837474187748
+44,15,0.4330616501284721,1.8499999999999999,1.3720608105229766,0.0007047117599826941,0.03641723262277671,0.7922382594245714,0,0.851297955377847,0.30847489325777755
+44,16,0.4992076449026581,1.9,1.3709534008254722,0.0007054653783045114,0.036262535909660734,0.8041385929803101,0,0.912919313043703,0.31346639895058986
+44,17,0.49935141015828344,1.9,1.3708650624516827,0.0007032144913429546,0.036255925292888416,0.8041239702705076,0,0.943259085491751,0.34015925320527673
+44,18,0.5499166372047039,1.95,1.3704961843752406,0.000704953378595857,0.03647696468261906,0.8156134395993063,0,1.0,0.3330554573490126
+44,19,0.5457186895003238,1.95,1.3751793459164978,0.0007034456904278572,0.03658598599206353,0.8163162387549133,0,1.0,0.31906229833441224
+44,20,0.5389598504836127,2.0,1.3785223903348947,0.0007024264593742624,0.03645407336882811,0.8277732359693443,0,1.0,0.32986616827870907
+44,21,0.5228632434758069,2.0,1.3783275428705986,0.0007009201827140406,0.0365009815897763,0.8277450262847499,0,1.0,0.34287747825268944
+44,22,0.5326211044720371,2.0,1.3780326697068956,0.000701979198125926,0.0364414980185949,0.8277032803165603,0,1.0,0.37540368157345705
+44,23,0.5149321377354481,2.0,1.3776057940568496,0.0007029256643632166,0.03660712869934054,0.8276426648522912,0,1.0,0.38310712578482675
+44,24,0.5577020340673967,2.0,1.3770728895217845,0.0007036734083369012,0.03640353001786156,0.8275668460015018,0,1.0,0.39234011355798876
+44,25,0.5472370970648182,2.0,1.3766978022457683,0.000702008502655724,0.03647576832649126,0.8275128392038692,0,1.0,0.42412365688272713
+44,26,0.5711719018259038,2.0,1.3645000512907155,0.0006889294701550741,0.036144130171993825,0.8257610639953559,0,1.0,0.4039063394196793
+44,27,0.5647502526286474,2.0,1.3621259351509865,0.0006879417005459324,0.03632567795713718,0.8254189279026514,0,1.0,0.38250084209549107
+44,28,0.5565856847017278,2.0,1.3770620545655068,0.000700744146001115,0.03642265044335024,0.8275644638293885,0,1.0,0.3552856156724256
+44,29,0.5411751020833997,2.0,1.3799335504991428,0.0007002942458502594,0.036623442777518486,0.8279737171626633,0,1.0,0.33725034027799866
+44,30,0.5297570002150966,2.0,1.3794497242587067,0.000699127782606023,0.03637075751446646,0.8279044608955793,1,1.0,0.36585666738365547
+44,31,0.5798550908337248,2.0,1.384335228201997,0.0007008209813652603,0.03660687276949202,0.8285999072148659,1,1.0,0.4328503027790822
+44,32,0.5965678994078845,2.0,1.3806131504802588,0.0006989219178622162,0.03661034459902037,0.8280701024598851,1,1.0,0.488559664692948
+44,33,0.6169561905438817,2.0,1.3827292128038549,0.000699056204396658,0.036477279198170044,0.8283711953436608,1,1.0,0.5565206351462723
+44,34,0.6333514533112392,2.0,1.3842464337367413,0.0006992591179975934,0.036547109244953205,0.828586852405819,1,1.0,0.6111715110374639
+44,35,0.6486721330947125,2.0,1.383228364855822,0.0006985219535555706,0.03666945708674518,0.8284419974749223,1,1.0,0.6622404436490417
+44,36,0.6218998740296873,2.0,1.3843569202462276,0.0006988996919264521,0.0364931490262494,0.8286024422185679,1,1.0,0.6729995800989574
+44,37,0.650372051319375,1.95,1.3838221508222879,0.0006984392709844251,0.03650265061308385,0.8176071413739621,1,1.0,0.7012401710645831
+44,38,0.6164616316361061,1.95,1.3831688054205946,0.0006980981443024302,0.036444805885215745,0.8175095887791073,1,1.0,0.6882054387870205
+44,39,0.6714617717996902,1.9,1.38373345222324,0.0006988420067670721,0.03666066588489715,0.8061415566221052,1,1.0,0.7382059059989674
+44,40,0.6240678758383547,1.9,1.3847178490061098,0.0006991297251592515,0.03663332980578968,0.8062954390534733,1,1.0,0.7135595861278489
+44,41,0.6637445138295153,1.8499999999999999,1.3850305369781444,0.0006996576058724711,0.03673401060929292,0.7943632932228897,1,1.0,0.7458150460983839
+44,42,0.6433688703007838,1.8499999999999999,1.3844693094577396,0.0006996529544117551,0.03671354644462978,0.794271599900571,1,0.9995600061160914,0.745149559514491
+44,43,0.6458902969244338,1.7999999999999998,1.3840674545781133,0.000698958134494903,0.03645694782022652,0.7816768936303193,1,1.0,0.7529676564147791
+44,44,0.6184997885755087,1.8499999999999999,1.383402000433387,0.0006982814059043361,0.036391459828661106,0.7940966938036595,1,1.0,0.6949992952516955
+44,45,0.6625022234182162,1.7999999999999998,1.3837701249517487,0.0006988756939808263,0.03665097396809449,0.7816261195203575,1,1.0,0.7416740780607205
+44,46,0.6687275639883614,1.7999999999999998,1.3831679593228556,0.0006989626243748476,0.03660279017698058,0.7815233500946167,1,1.0,0.7624252132945377
+44,47,0.6970842915945747,1.8499999999999999,1.3824249921924654,0.000699041263770815,0.036461035177227555,0.7939371487110664,1,1.0,0.8236143053152488
+44,48,0.7108769023309149,1.8499999999999999,1.383869029865542,0.0006985018257085531,0.03654529422850336,0.7941731180200453,1,1.0,0.869589674436383
+44,49,0.7087721478069113,1.9,1.383687727728183,0.0006983748518457711,0.0364898560663421,0.8061342648036902,2,1.0,0.8959071593563709
+45,0,0.18775130510086413,1.95,1.3861064293714238,0.0007002663703757734,0.03639563150632932,0.8179480830564272,0,0.20208864798447806,0.1897194863569096
+45,1,0.2167365792111547,1.9,1.384912172583195,0.0006997079882928724,0.03671964811931073,0.8063259679147856,0,0.29407384758166527,0.16369013392829532
+45,2,0.22981636026448818,1.9,1.384770931685323,0.0006994445116123467,0.03664992649556185,0.80630382786172,0,0.3420957744947881,0.17659350155524303
+45,3,0.27566128109392296,1.95,1.385158226033861,0.000699524154349669,0.036400033598951234,0.8178066232813438,0,0.4422914408000043,0.1624823492464041
+45,4,0.26375155810963824,1.95,1.3853560015262265,0.0007005025699008246,0.03674615166921126,0.8178363812988348,0,0.4639395422682781,0.1939191373410899
+45,5,0.2519073973164283,2.0,1.3852919034035085,0.0007002251877175972,0.03667645647427349,0.8287355644023517,0,0.4689604784635604,0.21441068643668035
+45,6,0.3376803721059414,2.0,1.382834629318199,0.0007031889370102649,0.036404610555025384,0.8283873571754297,0,0.5637942285822588,0.20720893557679282
+45,7,0.2955821787280105,2.0,1.3824217606680664,0.0007035026160502691,0.0366525123322166,0.8283287443006702,0,0.5736730265574645,0.22037656035008232
+45,8,0.3420557403728126,1.95,1.3834955239023956,0.0007028196537166226,0.03675810943165939,0.8175597345743569,0,0.6175376485508974,0.2501356031748453
+45,9,0.4053811905250242,1.95,1.3018159693891602,0.0007012005208696099,0.0357416825692123,0.8050589611500633,0,0.7288298585539164,0.21283082367819217
+45,10,0.3691011105642294,1.95,1.2979336992933024,0.0006991442138128137,0.0353245882174828,0.8044483128151575,0,0.7495166185126528,0.23098154386389416
+45,11,0.4429445663039438,1.9,1.3066644009176773,0.00069384072280695,0.03487075489478737,0.7938109850416776,0,0.835237776966645,0.22949818505761915
+45,12,0.4366117892715291,1.9,1.3765009713016563,0.0006936513600221446,0.03642093471510864,0.805007150922963,0,0.8505093357039205,0.2546935166332028
+45,13,0.43229341246391684,1.95,1.3776736583575917,0.0006948531356170375,0.03647181595213556,0.8166873782292103,0,0.8837108111746792,0.2626969599801505
+45,14,0.4822179997966017,2.0,1.3772601163002745,0.0006948406528817092,0.036389467680913015,0.8275910410439257,0,0.9368762889995714,0.2915582806559103
+45,15,0.5254562218694189,2.0,1.3783263092948308,0.0006963086181255172,0.03645234152516601,0.8277435353292114,0,1.0,0.28485407289806264
+45,16,0.514389937470049,2.0,1.3776068147405642,0.0006953914386384812,0.036326466094206644,0.8276406609250085,0,1.0,0.31463312490016343
+45,17,0.5395996102572853,2.0,1.378182877942448,0.0006966565910011119,0.03648759871879031,0.8277231825669265,0,1.0,0.2986653675242844
+45,18,0.49189867265034765,2.0,1.380474542725294,0.0006970567819677846,0.036335007200056724,0.8280498368475896,0,1.0,0.3063289088344921
+45,19,0.533476666430807,1.95,1.3798952837997804,0.0006970511747514643,0.03651814670782451,0.8170203990160793,0,1.0,0.31158888810269003
+45,20,0.5163088090048098,1.95,1.3790583847097526,0.0006960780966401739,0.0364466843711593,0.816894959922787,0,1.0,0.3210293633493658
+45,21,0.5281890163719183,2.0,1.379556461738738,0.0006971891164654552,0.0364189147509783,0.8279191157777664,0,1.0,0.2939633879063943
+45,22,0.5271512956338636,2.0,1.3790487310977726,0.0006963687494926736,0.036403024224860324,0.8278465339981442,0,1.0,0.25717098544621214
+45,23,0.47954702605562266,2.0,1.38113501684257,0.000696985392151909,0.03657171967590349,0.8281438366397378,0,1.0,0.2651567535187421
+45,24,0.5072711603795461,1.95,1.3806281536070584,0.00069693694292778,0.03634064648586923,0.8171299020421515,0,1.0,0.2909038679318205
+45,25,0.513244076384633,1.95,1.3809025856241823,0.0006977476413630021,0.03660710514024623,0.8171711487131017,0,1.0,0.3108135879487765
+45,26,0.49449397021978564,2.0,1.381051518745386,0.0006986125734156684,0.03651061272094575,0.8281324159205095,0,1.0,0.3149799007326188
+45,27,0.5365399118222061,2.0,1.3807066119555094,0.0006988424846258988,0.03647421151007914,0.828083385546429,0,1.0,0.2884663727406868
+45,28,0.5256268664797775,2.0,1.382535440200252,0.0006989220295220806,0.03648271554077438,0.8283436063259453,0,1.0,0.28542288826592505
+45,29,0.53231152423644,2.0,1.3820700017081657,0.0006981987833208341,0.036635079896087885,0.828277209550344,0,1.0,0.27437174745480003
+45,30,0.5211308036406167,2.0,1.3834615215059074,0.000698528176562286,0.03644173767747327,0.8284751342940491,0,1.0,0.27043601213538887
+45,31,0.48418766393510837,2.0,1.3829715930690207,0.000698032899165953,0.036529719711554755,0.828405361449566,0,1.0,0.28062554645036125
+45,32,0.5238188663219762,1.95,1.3825689067179565,0.0006979246211053712,0.03666302237141232,0.817420022452564,0,1.0,0.2793962210732536
+45,33,0.4855915897359773,1.95,1.3819047476998838,0.0006973008349212578,0.03653757703908551,0.8173206931831445,0,1.0,0.2853052991199243
+45,34,0.5261892694377485,1.9,1.3814170185269994,0.0006971775679215882,0.036553984379175,0.8057787728030897,0,1.0,0.2872975647924948
+45,35,0.5140768380668425,1.9,1.3806376816631611,0.0006964306753811291,0.03659835840326894,0.8056565441429597,0,1.0,0.31358946022280804
+45,36,0.5155155455657958,1.95,1.3811923772314498,0.0006972606811809028,0.03648641431091574,0.8172142948340321,0,1.0,0.31838515188598604
+45,37,0.5357591665687592,2.0,1.3815516828706134,0.0006980349833047951,0.03656353200415527,0.8282034277943082,0,1.0,0.3191972218958641
+45,38,0.5372427958555379,2.0,1.3810418768461323,0.0006973181601271777,0.036630435304826424,0.8281306751251079,0,1.0,0.3241426528517931
+45,39,0.5273418115621924,2.0,1.3802956179095587,0.0006964817152123194,0.03648295806010449,0.8280241956666039,0,1.0,0.357806038540641
+45,40,0.5171553034699392,2.0,1.3804091453069818,0.0006971061277297008,0.03649409566237026,0.8280405391999232,0,1.0,0.39051767823313044
+45,41,0.5544534494657692,2.0,1.3800600437516812,0.0006974385405467491,0.03657484800536613,0.8279909198303707,0,1.0,0.3815114982192306
+45,42,0.5524920903565131,2.0,1.3792959089954382,0.0006964457130023837,0.03636519557186567,0.8278817800431012,0,1.0,0.3749736345217104
+45,43,0.5350849343528823,2.0,1.3784048005852494,0.0006954863829561306,0.03632016967807463,0.8277544921936921,0,1.0,0.3836164478429409
+45,44,0.5173615138222818,2.0,1.3784722371917693,0.0006961815804970553,0.036515668227503684,0.8277643051192398,0,1.0,0.39120504607427253
+45,45,0.5493632765777052,2.0,1.378123028814051,0.0006966680673718634,0.036475601730724456,0.8277146513356451,0,1.0,0.43121092192568405
+45,46,0.5582356938504629,2.0,1.35322674700959,0.0006838572638603821,0.03614818129476772,0.8241316324256873,0,1.0,0.46078564616820944
+45,47,0.567059261386493,2.0,1.35332471140445,0.0006823339340986,0.03570638290298454,0.8241453892541662,0,1.0,0.4901975379549765
+45,48,0.5715399107893507,2.0,1.3527890043334865,0.000680833071910182,0.035542289793493304,0.8240673006802425,0,1.0,0.5051330359645024
+45,49,0.5761132449534413,2.0,1.3517671978283683,0.0006795110729050841,0.035738167445774675,0.823918726139862,0,1.0,0.5203774831781375
+46,0,0.061167942984974466,2.0,1.3861604501981737,0.0007001808320132379,0.0363893189540358,0.8288587920131865,0,0.16111955724030344,0.18906706696284364
+46,1,0.13350038843074044,1.95,1.3861939756060482,0.0007001882139028695,0.03672940332421575,0.8179610958421402,0,0.17508378115667111,0.21155625322690666
+46,2,0.22870743857045295,1.95,1.3861451252277113,0.0007001856745782215,0.03671737294836887,0.8179538211153619,0,0.2935134174068491,0.20434023869237775
+46,3,0.261556105091724,1.95,1.384505669789704,0.000702436200199154,0.03643121475631376,0.8177102410629349,0,0.3834781913174788,0.19388276188244158
+46,4,0.25294528244759684,1.95,1.385053460555031,0.0006993615680232538,0.03670408968786707,0.8177909643616272,0,0.41725689158709567,0.2201417527091952
+46,5,0.23594698295723365,2.0,1.382950629367498,0.0006992618110030646,0.03658628960714027,0.8284027308245494,0,0.4241633079132269,0.22093886597314294
+46,6,0.30843091798209715,2.0,1.3839412622910885,0.0006993621015114663,0.03648480925558441,0.8285435336108447,0,0.5003600241484369,0.22762302774240792
+46,7,0.33635333445595067,2.0,1.3839344836865435,0.0006996879394121446,0.03663645684769489,0.8285426632228245,0,0.5772565589351483,0.21816903627297124
+46,8,0.34650809467779553,2.0,1.383849079343819,0.000700024931495249,0.036709637818818884,0.8285306261168679,0,0.6225431820598862,0.2583027395128034
+46,9,0.38874486571388406,2.0,1.3155123616491788,0.0007360858226172686,0.03632612372191352,0.8186138848062384,0,0.6737646266443744,0.26413005018711433
+46,10,0.43992122648545584,2.0,1.3160259324847574,0.0007489610235242899,0.03630938855455408,0.8186939522635918,0,0.78083017716182,0.25863051873575943
+46,11,0.4499387423289895,2.0,1.3127058031229868,0.0007483676226075889,0.03597644849151146,0.8182004335451558,0,0.8330653341475671,0.25570869556654224
+46,12,0.4152274999119089,2.0,1.3779589964591534,0.0006956946733754734,0.036210297434958946,0.8276909809066517,0,0.8421821144773609,0.2611821804032149
+46,13,0.44206053661310507,1.95,1.377494693553369,0.0006958158525168989,0.03643091382903138,0.8166608723375948,0,0.8493753566223069,0.2743679798806077
+46,14,0.45687992860215093,1.95,1.3775027485894422,0.0006967557364826976,0.03646664432758197,0.8166623598303059,0,0.8723775191860279,0.29309640309246576
+46,15,0.4822074717314137,2.0,1.3775045428708244,0.0006976805881646927,0.03649249060503724,0.8276267243350266,0,0.9208479039458246,0.31289436717694613
+46,16,0.5282877986581793,2.0,1.3775316782579272,0.0006985752294601593,0.03639706633994044,0.8276308507104018,0,0.9892347352316226,0.3086463485517673
+46,17,0.5363682465724533,2.0,1.376860284478795,0.0006974203826599177,0.03649741450378595,0.8275347202882479,0,1.0,0.3212274885748443
+46,18,0.5360821454895506,2.0,1.3760582391240699,0.0006961753583883611,0.03616138767034709,0.8274198659258674,0,1.0,0.2869404849651683
+46,19,0.5337139014853635,2.0,1.37912216451256,0.0006966956019696998,0.03646350416532709,0.8278570923898089,0,1.0,0.27904633828454467
+46,20,0.5229241445849463,2.0,1.3814084372389612,0.0006972923194002479,0.03659745394136395,0.8281828341319359,0,1.0,0.2764138152831543
+46,21,0.5277995936956951,2.0,1.380654067497915,0.000696543380768732,0.036541197174376136,0.8280752504902497,0,1.0,0.25933197898564997
+46,22,0.5043503431093594,2.0,1.3824299664080617,0.0006974689723018838,0.0365205646631155,0.8283281951870093,0,1.0,0.2811678103645314
+46,23,0.5118564699752621,1.95,1.3824621805290818,0.0006976285054352313,0.03663698743450691,0.8174040052198368,0,1.0,0.3061882332508738
+46,24,0.5342088693541323,2.0,1.3821863924372872,0.000697748826139051,0.03651553296308549,0.8282936356566195,0,1.0,0.314029564513774
+46,25,0.5292138775759374,2.0,1.381594527427667,0.0006970905922535722,0.03646788021768229,0.8282092550064374,0,1.0,0.2973795919197913
+46,26,0.5335243382782751,2.0,1.3807935334154942,0.0006964059895888297,0.036578468911274684,0.8280950657581996,0,1.0,0.2784144609275832
+46,27,0.4921441009403175,2.0,1.3824415335997857,0.0006974784696968108,0.036517513819010874,0.8283298427433723,0,1.0,0.3071470031343917
+46,28,0.49318057828639117,1.95,1.3826503605445066,0.00069762498853713,0.03649325552370333,0.8174320892438287,0,1.0,0.31060192762130384
+46,29,0.5338902785974621,2.0,1.3825277885061862,0.0006977232894996913,0.036311345249319275,0.8283421774243785,0,1.0,0.3129675953248735
+46,30,0.5376471049081294,2.0,1.381895182688871,0.0006971211189197764,0.03637507044908528,0.8282520363054603,0,1.0,0.29215701636043107
+46,31,0.5173235528291795,2.0,1.383292839153069,0.0006981035678824956,0.036517408240655906,0.8284510418236151,1,1.0,0.32441184276393187
+46,32,0.4995757264932058,1.95,1.3840220283818974,0.0007029504693344536,0.03677668608648358,0.8176382916600837,1,1.0,0.2985857549773526
+46,33,0.5087106882570274,2.0,1.3842778682969175,0.0007020860484571484,0.03669396579785243,0.828592120035307,2,1.0,0.2957022941900913
+46,34,0.4768207814610473,2.0,1.3848143983825405,0.0007014073232925042,0.0366214239118626,0.8286681157502688,2,1.0,0.25606927153682424
+46,35,0.5657675906649666,1.95,1.3845579278442675,0.0007019308017510888,0.03677293727960861,0.8177178798651769,2,1.0,0.28589196888322205
+46,36,0.5221548924859966,1.95,1.3852991638907157,0.0007014154154773245,0.03672613357761524,0.817828185474154,2,1.0,0.30718297495332164
+46,37,0.5524239390959339,1.9,1.3849217265534104,0.0007017788106604007,0.036737393859814726,0.806328106673323,2,1.0,0.34141313031977955
+46,38,0.4891308580836505,1.9,1.3850962301913112,0.0007010704474610685,0.036763286836912615,0.8063551350272973,2,1.0,0.29710286027883487
+46,39,0.5211234534878039,1.8499999999999999,1.384863345680163,0.0007015701091524027,0.036435568585570254,0.7943366060147795,2,1.0,0.303744844959346
+46,40,0.5533404602191876,1.8499999999999999,1.384411498064549,0.0007020357023102751,0.0366138332868287,0.7942629318414862,2,1.0,0.3444682007306251
+46,41,0.4919711822285437,1.8499999999999999,1.3844973033988202,0.000701123793568005,0.03661698680048928,0.7942766548654798,2,1.0,0.30657060742847886
+46,42,0.4813254036065574,1.7999999999999998,1.3842268796118153,0.0007016856155660541,0.0367520551264372,0.7817050304348698,2,1.0,0.2710846786885246
+46,43,0.539750346999735,1.8499999999999999,1.3837914363255948,0.0007022135374070949,0.036768822430943225,0.7941616476232903,2,1.0,0.2991678233324499
+46,44,0.47715050000429216,1.8499999999999999,1.3838264856023519,0.0007011562495658162,0.03665712393730104,0.7941670313713134,2,1.0,0.2571683333476405
+46,45,0.5355041953201581,1.7999999999999998,1.3834030524815988,0.0007015492238992468,0.03671040309700049,0.7815643715036671,2,1.0,0.28501398440052705
+46,46,0.5720740913226635,1.7999999999999998,1.383135354320888,0.0007005300765130975,0.0366227896169743,0.781518318192729,2,1.0,0.30691363774221175
+46,47,0.5222238834880041,1.7999999999999998,1.3845342621547263,0.0007003235833865206,0.036435274704420643,0.7817570135892048,2,1.0,0.30741294496001365
+46,48,0.5186703091018386,1.7499999999999998,1.384359341444914,0.0007008842920713618,0.03675147782788229,0.7686601530689586,2,1.0,0.29556769700612884
+46,49,0.5772744310643325,1.7999999999999998,1.3839775664350724,0.0007013892830732278,0.036744938941553375,0.7816623829311438,2,1.0,0.3242481035477752
+47,0,0.0186068891300694,1.7999999999999998,1.3845457190738935,0.0006989462681571623,0.03651311421866148,0.7817584983090198,1,0.14780763039654066,0.16494612323817714
+47,1,0.04618247835286041,1.7499999999999998,1.3857507001352523,0.0007007459382865719,0.036753248928654066,0.768907425210319,1,0.18694299434428507,0.17135093538382132
+47,2,0.14706705682356377,1.7499999999999998,1.385767906487669,0.0007006591386053988,0.036641523400895416,0.7689104517258509,1,0.2344143466543395,0.14433772720609317
+47,3,0.19696355045302727,1.7499999999999998,1.385952164111704,0.0006999649795065186,0.036614608119167155,0.7689429436571971,1,0.2664836487300066,0.1679003032034154
+47,4,0.24966149885308592,1.7499999999999998,1.385889773649654,0.0006999521223778979,0.03675557858908844,0.7689318540081591,1,0.3264994028207845,0.23020579241590702
+47,5,0.22219414606133547,1.7499999999999998,1.3860599710093897,0.0007001244924932022,0.03635457229454762,0.768962153798221,1,0.3370270405889479,0.22461109941918775
+47,6,0.23551967329627163,1.6999999999999997,1.3860299234147022,0.0007001767868653732,0.03676116455612621,0.755364354094311,1,0.3675224242858926,0.22836901193971537
+47,7,0.26970972208324545,1.7499999999999998,1.3859634246672203,0.0007002378771645051,0.03650005083844777,0.7689450412812651,1,0.39239805848936393,0.24250166229166623
+47,8,0.31911024667935517,1.7499999999999998,1.3859134841143255,0.0007000780477706696,0.036593893426902425,0.7689361115008861,1,0.44518014379316007,0.30346063054030387
+47,9,0.35263181616354666,1.7499999999999998,1.3861066794086305,0.0007003883769494609,0.036776548212467744,0.768970545638998,2,0.4808744110098256,0.3676068391987214
+47,10,0.41695304500754743,1.7499999999999998,1.3860127852603772,0.000700167754692234,0.03634443595269172,0.7689537860741278,2,0.5429734002694738,0.3992122829991928
+47,11,0.4559214589756619,1.7499999999999998,1.3860390674906529,0.00070003514770284,0.03675202750519986,0.7689584083253498,2,0.599681511252101,0.4534961815827381
+47,12,0.48745481988595535,1.7499999999999998,1.3859990290579631,0.0007000344905106215,0.03664181308299238,0.7689512947322408,2,0.667678776512068,0.46794436427042724
+47,13,0.4579655516804785,1.7499999999999998,1.3860520754955497,0.00070020118437952,0.036588054083719165,0.7689607783334854,2,0.6976193651423938,0.4963926854117366
+47,14,0.42935611461806045,1.6999999999999997,1.3859913916057915,0.0007000104080103691,0.03676546932376637,0.7553571722768203,2,0.718109965958644,0.47370709411534295
+47,15,0.5020797120361509,1.6499999999999997,1.3861504898297317,0.0007000736341485965,0.03660688242168657,0.7412643906382032,2,0.7505222012999716,0.5062361050538737
+47,16,0.5671420799546861,1.6499999999999997,1.3862194439124664,0.0007001798790052089,0.03659327560390685,0.741277655977085,2,0.8064184370386461,0.5485823504640922
+47,17,0.4938011034038935,1.6499999999999997,1.3714109098186023,0.0006920402365607277,0.03640344990162136,0.7384243239534732,2,0.8521565250823451,0.509794977903185
+47,18,0.5740354633164954,1.5999999999999996,1.3737999372202392,0.0006962630673751408,0.03637726587863111,0.7241602174073767,2,0.8917732460124815,0.5577538830383421
+47,19,0.6367316303337168,1.5999999999999996,1.374287071446273,0.0006947779352987138,0.03632899978823628,0.7242569197254172,2,0.9436929115443956,0.597514885719862
+47,20,0.6362801310844577,1.5999999999999996,1.3760362272998679,0.0006943192646382802,0.03649509565166055,0.7246059214835513,1,0.9971120047732365,0.624784430583877
+47,21,0.6057592186499369,1.6499999999999997,1.3825990976253852,0.0006989165420708021,0.036554914650354355,0.740582235831489,1,1.0,0.6191973954997895
+47,22,0.6593822610027793,1.5999999999999996,1.3821158014143786,0.0006980093692558584,0.03660806386527833,0.7258189243670967,1,1.0,0.6979408700092642
+47,23,0.6851400107173448,1.5999999999999996,1.383549818260469,0.0006984165398969179,0.03645283433318272,0.7261043715773248,1,1.0,0.7838000357244823
+47,24,0.6346571254473123,1.5999999999999996,1.3844956120623264,0.000698910138817556,0.03671659195634677,0.7262926240517806,1,1.0,0.7488570848243743
+47,25,0.6549456334244921,1.5499999999999996,1.3850825032207466,0.000699437704030092,0.036426498379333296,0.7112538312313622,1,1.0,0.7831521114149737
+47,26,0.6537792768022755,1.5499999999999996,1.3845228973395498,0.0006989384034171089,0.0365384480439887,0.7111386852354784,1,1.0,0.7792642560075851
+47,27,0.6791010873447936,1.5999999999999996,1.3837537993444269,0.0006984317217461879,0.036601091941019306,0.726144942852274,1,1.0,0.7970036244826453
+47,28,0.6589905986378444,1.5999999999999996,1.3833230448015743,0.0006981257888395579,0.036649593243817016,0.7260591536229475,2,1.0,0.7966353287928144
+47,29,0.6977222270887126,1.5499999999999996,1.3775243786062157,0.0007080696078310632,0.03651776515164625,0.7097026872548363,2,1.0,0.8257407569623751
+47,30,0.7415801879236154,1.5499999999999996,1.3741855556147355,0.0006922278621999092,0.03631370129570095,0.7090077888889955,2,1.0,0.8719339597453843
+47,31,0.7549019298923997,1.5499999999999996,1.3770402408814442,0.0006960630015588442,0.036557795269577274,0.7095979844133194,2,1.0,0.9163397663079993
+47,32,0.7089001621226938,1.5999999999999996,1.3787319993821674,0.0006998121266047035,0.03661840675948767,0.7251457323949199,1,1.0,0.9296672070756458
+47,33,0.6747326024902995,1.5499999999999996,1.3822784055262123,0.0006976283642394952,0.036644520118930955,0.7106768635689116,1,1.0,0.8824420083009982
+47,34,0.68614525366353,1.4999999999999996,1.3809920390976371,0.0006965104119383523,0.03656595506063994,0.6947423874560077,1,1.0,0.8871508455450997
+47,35,0.6961709760258392,1.5499999999999996,1.3811123741907045,0.0006970554692151055,0.03659656291532078,0.71043681514177,0,1.0,0.9205699200861307
+47,36,0.7058330572821407,1.5999999999999996,1.3804714513811094,0.00069633877812463,0.036518420766646006,0.7254909022603148,0,1.0,0.9527768576071359
+47,37,0.7135960999326115,1.6499999999999997,1.379675620566763,0.000696198438732662,0.03644603598891004,0.7400191360823082,0,1.0,0.9786536664420383
+47,38,0.7347324203008827,1.6999999999999997,1.3786665545041348,0.0006960531631573855,0.03634526648063151,0.7539995972685435,0,1.0,0.9491080676696089
+47,39,0.7092827589327229,1.6999999999999997,1.3811366784919188,0.0006968033324665551,0.036436124531377394,0.7544577566789049,0,1.0,0.9642758631090761
+47,40,0.7150269241744276,1.6499999999999997,1.379846358418518,0.0006962518388679033,0.03652504761266595,0.7400520036761846,0,1.0,0.9834230805814251
+47,41,0.72,1.6999999999999997,1.37800270690887,0.0006955042904646237,0.0365577586012489,0.7538762395808828,0,1.0,1.0
+47,42,0.7,1.7499999999999998,1.376262505083214,0.0006948347124854793,0.03641158706699366,0.7672150679210918,0,1.0,1.0
+47,43,0.7,1.6999999999999997,1.3781757125669243,0.000698050469364596,0.03632498321679845,0.7539092836134337,0,1.0,1.0
+47,44,0.72,1.7499999999999998,1.378785728705475,0.0007008769110851074,0.03645159081948941,0.76766755727315,0,1.0,1.0
+47,45,0.7435081464197973,1.7499999999999998,1.3771115674464856,0.0007009578535235655,0.03653021229061294,0.7673688588872731,0,1.0,0.978360488065991
+47,46,0.6979839741974495,1.7499999999999998,1.3798730495148226,0.0006998575579967505,0.03658227616195512,0.7678610655307433,0,1.0,0.9932799139914984
+47,47,0.744033859193985,1.6999999999999997,1.380380133451183,0.0007025490455911303,0.0365424978536938,0.7543197084000036,0,1.0,0.9801128639799501
+47,48,0.7384204336077657,1.6999999999999997,1.3821621370219552,0.0007013377567661618,0.03659726999971787,0.7546493537152591,0,1.0,0.994734778692552
+47,49,0.7316576000596428,1.7499999999999998,1.3825232192556922,0.0006999659190374521,0.03655483730309086,0.7683331626745028,0,1.0,0.972192000198809
+48,0,0.14255943038282792,1.7999999999999998,1.3860710584446,0.0007000298049104016,0.03638127895287564,0.7820189972992437,0,0.13796884701115986,0.2245729719278799
+48,1,0.20791288192734597,1.7499999999999998,1.3860319295904615,0.0007000268903586881,0.03676015339810815,0.768957137259722,0,0.23613870822901958,0.21152466211912704
+48,2,0.22949822793720973,1.7499999999999998,1.3842566532679534,0.0007027438424252913,0.03665550661208788,0.7686425537494447,0,0.2983741879925765,0.23382850913393033
+48,3,0.19940111047432368,1.7499999999999998,1.3840593762703843,0.0007030478566914459,0.036652988398791296,0.7686075780271604,0,0.3180668992052859,0.24058116930736437
+48,4,0.2931921928387304,1.6999999999999997,1.3845404077751768,0.0007025527368406189,0.03676037617943106,0.755089882001118,0,0.43467965296800315,0.23106777217176364
+48,5,0.25060910665650143,1.6999999999999997,1.3803694358965035,0.0006961730194325229,0.03654610862030664,0.7543153626580742,0,0.44813970588942903,0.23784408100243276
+48,6,0.2923341939527897,1.6499999999999997,1.3818532722228865,0.0006970534810234921,0.03663550411028628,0.7404382058858153,0,0.4889581900161528,0.2558363931544284
+48,7,0.34775791588234556,1.6499999999999997,1.38115676832971,0.0006965284744448416,0.0361657096058741,0.7403041208877406,0,0.573665840686028,0.260971932026448
+48,8,0.3379104716518377,1.6499999999999997,1.3812586388100265,0.0006966796614309416,0.03660111516975133,0.7403237635381699,0,0.593868007261885,0.2678775624902788
+48,9,0.40008963736857883,1.6999999999999997,1.3805758206308854,0.0006961329006133663,0.03650750391465255,0.7543535937639931,0,0.6857486227503107,0.25263396089484863
+48,10,0.4265366787734111,1.6999999999999997,1.2970090342533669,0.0008014527399863439,0.03596840257391944,0.7385820901380652,0,0.780614715047417,0.21430264251481446
+48,11,0.4599381969536278,1.6999999999999997,1.2939303726468576,0.0008019645691100264,0.03648555579685804,0.7379874279811953,0,0.8784176401768117,0.19523713627634368
+48,12,0.4981414523033994,1.6999999999999997,1.351911456811144,0.0006772000898848238,0.035218401477505205,0.74899620477094,0,0.9772965406033245,0.19074278687356522
+48,13,0.48229451178384874,1.6999999999999997,1.3529818589292735,0.0006771533125232703,0.03550937513898741,0.7491973701031232,0,1.0,0.20764837261282904
+48,14,0.490010400912637,1.7499999999999998,1.3766089807029729,0.0006979862530549421,0.03629964467688511,0.7672780668844467,0,1.0,0.23336800304212318
+48,15,0.5127304193900712,1.7999999999999998,1.3792258097584564,0.0006978238735583028,0.03636469242818984,0.780849112628092,0,1.0,0.24243473130023724
+48,16,0.501635441385215,1.7999999999999998,1.3783199134884097,0.000697652891023274,0.03632086679911915,0.7806939942498765,0,1.0,0.27211813795071654
+48,17,0.5196222838717471,1.8499999999999999,1.3801099896483113,0.0006974956308854242,0.036628983082015384,0.7935576479435557,0,1.0,0.2654076129058237
+48,18,0.5231710613317627,1.9,1.3791557768293812,0.0006972060218972125,0.036541548367248364,0.8054246541764974,0,1.0,0.2439035377725422
+48,19,0.5152721159830187,1.95,1.3802727440018012,0.0006993959789195209,0.03655118373601711,0.817077522752687,0,1.0,0.2509070532767289
+48,20,0.49754164065400924,2.0,1.3793438451841533,0.0006992664152542517,0.03651425077562764,0.8278894143698184,0,1.0,0.25847213551336407
+48,21,0.47327139615437996,2.0,1.3809365250677585,0.0006987795387863192,0.036558388592625564,0.8281160958859082,0,1.0,0.24423798718126638
+48,22,0.51615778352316,1.95,1.3810044646942714,0.0006980142721197578,0.036499274021960404,0.817186448870629,0,1.0,0.2538592784105331
+48,23,0.5126882687384123,1.95,1.3798238808746592,0.0006976402686991198,0.03626283696752948,0.8170099003199112,0,1.0,0.24229422912804116
+48,24,0.5137128966696057,2.0,1.378673205193282,0.0006973457321244979,0.03643363035948374,0.8277932872560408,0,1.0,0.2123763222320189
+48,25,0.4568153079888333,2.0,1.3798142900828463,0.000699627212637913,0.036460866193893174,0.8279565398202863,0,0.9824209485378631,0.21282309524562673
+48,26,0.5071156552423525,1.95,1.3798598525307149,0.0006986300375334095,0.03664314950764484,0.8170155741343585,0,1.0,0.22371885080784154
+48,27,0.504325175379194,1.95,1.3786027059327097,0.0006983829075686283,0.036465762583135775,0.8168274804436912,0,1.0,0.21441725126397992
+48,28,0.4688352667917296,2.0,1.3774069886593507,0.0006981412983789979,0.0364763489451974,0.827612938194111,0,1.0,0.22945088930576527
+48,29,0.50537620811611,1.95,1.3775467037488904,0.0006970899579526069,0.036481681025356615,0.8166690410025261,0,1.0,0.18458736038703308
+48,30,0.495274190503634,1.95,1.3396690975447276,0.0006689516354010138,0.035768109921568085,0.8109211961362592,0,1.0,0.18424730167878
+48,31,0.4561800243753442,2.0,1.3434507717269977,0.0006696199750797351,0.03524758621718027,0.8227060694340401,0,1.0,0.18726674791781406
+48,32,0.4585242165736325,1.95,1.350828529654286,0.0006782387945696075,0.03570444689871942,0.8126291438948559,0,1.0,0.19508072191210823
+48,33,0.4572909202968487,2.0,1.354736237833598,0.0006853638886148041,0.035691121526079755,0.8243507453149935,0,1.0,0.19096973432282885
+48,34,0.4806749010920137,2.0,1.3589613476174442,0.0006933093721891933,0.03580741908268081,0.8249639833069407,0,1.0,0.2022496703067122
+48,35,0.5053864620905284,2.0,1.3756538028430054,0.0006940278562422353,0.0363704846282942,0.8273614928275954,0,1.0,0.18462154030176114
+48,36,0.49955670476736375,2.0,1.3404158365706482,0.0006852758523519119,0.03606179131717419,0.8222675338061223,0,1.0,0.1985223492245459
+48,37,0.4638726681564767,2.0,1.3448469793585576,0.0006832101216478772,0.03609636216537855,0.822913590568179,0,0.9943228047116317,0.22047848757274668
+48,38,0.49947869707074755,1.95,1.3739049490272368,0.0006920646533645813,0.03641638829023931,0.8161216576914347,0,1.0,0.2649289902358251
+48,39,0.5218122914447503,1.95,1.3751975409441073,0.0006924469320272996,0.03632291071419406,0.8163156685936471,0,1.0,0.2727076381491674
+48,40,0.5109005175279254,1.95,1.3738281520363034,0.0006915361904054649,0.03619715257408944,0.816109974092558,0,1.0,0.30300172509308454
+48,41,0.5359932704128669,2.0,1.3749692703671523,0.0006921784758234686,0.03606225670627437,0.8272631675465113,0,1.0,0.28664423470955624
+48,42,0.48787781828671145,2.0,1.377856343671195,0.0006944731152613515,0.036267571644497884,0.8276759917575233,0,1.0,0.2929260609557047
+48,43,0.5272456134648521,1.95,1.3776763020227514,0.0006942023925420959,0.036279268371546276,0.8166875791655426,0,1.0,0.29081871154950695
+48,44,0.5283812947633693,1.95,1.3762211283295256,0.000693243955266285,0.036505079316465475,0.8164693389602593,0,1.0,0.2946043158778976
+48,45,0.49097455642750903,2.0,1.3748589043656072,0.0006924117731644082,0.03632663641027339,0.8272474624862105,0,1.0,0.30324852142503
+48,46,0.5160189148298976,1.95,1.3748367595870314,0.0006922272935298436,0.036452700229044496,0.8162614993944277,0,0.9973827484948325,0.32355271810654834
+48,47,0.5361712763367735,1.95,1.3757376662116925,0.0006927444213825647,0.036144459231583624,0.8163967326983168,0,1.0,0.32057092112257835
+48,48,0.49602523197685877,1.95,1.3744120190823492,0.0006918060876248537,0.03639645036751661,0.8161976624459888,0,1.0,0.32008410658952907
+48,49,0.4998637471441938,1.9,1.3740153029019428,0.0006916496946193243,0.036412262349131176,0.8046160487749854,0,1.0,0.33287915714731264
+49,0,0.15987088549716078,1.95,1.384611222193509,0.0006989995021083502,0.03651099855118163,0.817724949714668,1,0.12752626382325521,0.22953459989286232
+49,1,0.15911915070900515,1.9,1.3846168241136916,0.0006989985506899902,0.036680587133370086,0.8062796192069426,1,0.1587172311289414,0.252107527524762
+49,2,0.21908491917658696,1.95,1.3849909346355544,0.000699280276113862,0.03664864782344747,0.8177816230304288,1,0.1935363903605722,0.3055678767745269
+49,3,0.25681379848481056,1.95,1.3848045620651959,0.0006991997677851523,0.03633402450686097,0.8177538251100979,1,0.22703008295455204,0.3866725510099658
+49,4,0.21965162021968615,1.95,1.385913809843464,0.0007001656391102341,0.036742879883128646,0.8179193685120608,1,0.261659536820656,0.3499593516380791
+49,5,0.26787382977547564,1.9,1.3860892260563502,0.0007001678913084567,0.036705737011467496,0.8065098590295388,1,0.28223826218824366,0.3832617496672605
+49,6,0.26189682615547816,1.9,1.386025641498217,0.0007000525294159502,0.036548119808353645,0.806499900351118,1,0.30057233222367136,0.405559644220032
+49,7,0.3393140353668601,1.95,1.385952090427423,0.0007000130906441628,0.03677542475554198,0.8179250240295847,1,0.36012809613096886,0.48420932304824194
+49,8,0.3159498633787574,1.95,1.3861182480270604,0.0007000555974108929,0.036675541193729164,0.8179497801826744,1,0.37264135054796393,0.48964441053190605
+49,9,0.3176783064573748,1.9,1.386037807515426,0.0006999980498080122,0.03646960642590617,0.806501781942243,1,0.38304140385575225,0.481539149716913
+49,10,0.32804772922677816,1.95,1.3859018969770067,0.0006999238651827094,0.036765422295361734,0.8179175223405801,1,0.3985929095815443,0.49536855131386803
+49,11,0.3942274383102046,2.0,1.3857296633283276,0.0006998727845551454,0.03664668725777656,0.8287975880030587,1,0.4507276072940126,0.5464546513086652
+49,12,0.37273938067084555,2.0,1.3857114873819716,0.000699997647883968,0.03642038763899034,0.8287950443982817,1,0.4723350160857678,0.5460179141217948
+49,13,0.4159991736021387,1.95,1.3855078181507265,0.0007000248501087951,0.036679661450823,0.8178588555257388,1,0.5084321198153854,0.5754210855866153
+49,14,0.4078324995986393,1.95,1.3858461918186475,0.0007000061419226704,0.036603985561129516,0.817909250618385,1,0.525933157197412,0.5915307890655818
+49,15,0.4111475692555784,2.0,1.3855794048070675,0.0006999575343033984,0.0365222846431444,0.8287762904986825,1,0.5646270920175401,0.5843224414952077
+49,16,0.4328945387518056,2.0,1.3855107831854134,0.0006997403108083373,0.03666262613467201,0.8287664907953028,1,0.5820770292883746,0.6002124234548526
+49,17,0.5028471687396575,2.0,1.3861765362489522,0.0007001712938378211,0.036772699862741426,0.8288610711319123,1,0.6337416748447905,0.6645016626724711
+49,18,0.5511767676654448,2.0,1.3858794025522976,0.0007006854766120148,0.03644688356189231,0.8288190643832626,1,0.7033151802229004,0.7328356519209487
+49,19,0.5231360021198329,2.0,1.38610055154298,0.0007004209949898485,0.036663784348890074,0.8288503632458933,1,0.7537509705834744,0.7054520462881437
+49,20,0.541179276864683,1.95,1.3859041817468873,0.0007005881156699604,0.03678002119169257,0.8179180604587861,1,0.7673306807867937,0.7141566818332185
+49,21,0.5365460278636933,2.0,1.3860616997713637,0.0007003269463886979,0.036631896603493294,0.8288448250789999,1,0.8075901249914741,0.6783665928903456
+49,22,0.5538648741259055,2.0,1.3842156010138045,0.0006987758652767396,0.03657599357030121,0.8285823358925835,1,0.8269392346479885,0.6769639342223669
+49,23,0.6183529602447368,2.0,1.383730517270625,0.0006983858616058482,0.03667361814652662,0.8285133158739749,1,0.8737851074667258,0.7294630575268216
+49,24,0.5989099377668978,2.0,1.38449879404936,0.0006990441822565534,0.036442493390071454,0.828622631295791,1,0.8879384351309992,0.745781879048327
+49,25,0.6721155289194459,2.0,1.3838956070487924,0.0006988084341157651,0.03657919912771451,0.8285368904569932,1,0.9389136336679702,0.8218335848408592
+49,26,0.6950176045877943,2.0,1.382273282208179,0.0006975373834879573,0.03663454422947138,0.8283059329123752,1,0.985861054294465,0.8689106095666937
+49,27,0.7308715755885655,2.0,1.3838656467536825,0.0006984719203834776,0.03650851388028891,0.8285325385358179,1,1.0,0.9362385852952182
+49,28,0.75,2.0,1.3835696929710342,0.000698350435457556,0.036522395641583785,0.828490454843184,1,1.0,1.0
+49,29,0.74,2.0,1.3829568569490078,0.0006982129182113344,0.036650700480448536,0.8284033178810434,1,1.0,1.0
+49,30,0.72,2.0,1.3842009499302337,0.0006987377918443363,0.03646036668826389,0.8285802441201896,1,1.0,1.0
+49,31,0.7048602456076982,1.95,1.3846708306609914,0.000699311365161266,0.03657421356575479,0.8177339272028935,1,1.0,0.9828674853589943
+49,32,0.6963656653835701,2.0,1.3840509320936254,0.0006986819299719812,0.03650117349564763,0.8285589194127064,1,1.0,0.9545522179452336
+49,33,0.6857563409983474,2.0,1.3833128355355446,0.0006980749597700921,0.03648185338458823,0.8284538755576321,1,1.0,0.9191878033278247
+49,34,0.6743650171084296,2.0,1.3822969877959592,0.0006974173489969643,0.03647287281445743,0.8283092700404535,1,1.0,0.8812167236947651
+49,35,0.6637349173434095,2.0,1.3810661636720125,0.0006967218754667902,0.036592183792234015,0.8281339621117407,1,1.0,0.8457830578113652
+49,36,0.6762522998148015,2.0,1.3796257553010705,0.000695937038477989,0.03630692269049348,0.8279286309928733,1,1.0,0.8541743327160052
+49,37,0.6794095770052397,2.0,1.3803435737606216,0.0006960389966846932,0.03637956745413726,0.8280308983960463,1,1.0,0.864698590017466
+49,38,0.7046836960367653,2.0,1.3804965832960832,0.0006960931247719396,0.03655873475750079,0.8280527006206049,1,1.0,0.8822789867892173
+49,39,0.6837672663143128,2.0,1.3824419490036828,0.0006976166581089439,0.0365027979691256,0.8283299411142325,1,1.0,0.8792242210477091
+49,40,0.7268261908486715,1.95,1.3823004552718638,0.0006973794155576224,0.036506356167721334,0.8173797913631016,1,1.0,0.9227539694955714
+49,41,0.6729006342114581,1.95,1.3826038372942417,0.0006977166009612366,0.036291661321173396,0.8174251735018111,1,1.0,0.876335447371527
+49,42,0.7246431111080153,1.9,1.3815409386326871,0.0006968549698490037,0.03659603571458358,0.8057980645181082,1,1.0,0.9154770370267173
+49,43,0.6961325930569049,1.9,1.381462235028329,0.0006970911394580555,0.03656584466904615,0.805785822006712,1,1.0,0.9204419768563493
+49,44,0.6782672584864837,1.8499999999999999,1.3813239917306024,0.0006975351169369536,0.03655308415045937,0.7937564725596387,1,1.0,0.8942241949549455
+49,45,0.6921342953887366,1.9,1.3800892479834976,0.0006962921290440954,0.036503806639374706,0.8055706158507459,1,1.0,0.9071143179624555
+49,46,0.743589860461578,1.95,1.3798358695422168,0.0006967133718178092,0.03653226469407482,0.8170114155265435,1,1.0,0.9786328682052602
+49,47,0.74,1.95,1.3799900511202856,0.0006977951892673578,0.036347349030726214,0.8170347885656287,1,1.0,1.0
+49,48,0.75,2.0,1.3825207082381734,0.000698238575899602,0.0366478870783133,0.82834131720795,1,1.0,1.0
+49,49,0.7001697282792922,2.0,1.3823450525302734,0.0006988442829173936,0.03643329849433977,0.8283165112077508,1,1.0,0.9672324275976407
+50,0,0.17957804350393713,1.95,1.3859053210753671,0.0006998956457588117,0.03637689092769241,0.817918023880351,0,0.18795339407164507,0.21465561958426366
+50,1,0.22173439391515976,1.9,1.3860037143076416,0.0006999933562635358,0.03673601324774646,0.8064964599496417,0,0.27543648849584323,0.20519932838940827
+50,2,0.183297563557353,1.9,1.3835776989394106,0.00070340535710522,0.03672212909575785,0.8061186411800464,0,0.2991155215836155,0.21217118307968927
+50,3,0.2407553984129642,1.8499999999999999,1.3840400759012392,0.0007028012371410272,0.0364929474387072,0.7942024816077997,0,0.3510983530451238,0.20105352398304885
+50,4,0.2627392009801232,1.8499999999999999,1.3838014955404758,0.0007033725641019335,0.03678691538473312,0.7941636709146631,0,0.40631461918498,0.2007111776871039
+50,5,0.3123260602126909,1.8499999999999999,1.3802410665811247,0.0006970480393133089,0.03646975942118121,0.7935789740114262,0,0.5198495499754232,0.18128746740840523
+50,6,0.35068269355371523,1.8499999999999999,1.3860800878200816,0.000700153353740436,0.03663778178650533,0.7945348465109625,0,0.6211692682096888,0.17404995423279906
+50,7,0.3040869753039343,1.8499999999999999,1.3795561178132918,0.0006958163232639143,0.036549946426258785,0.7934663453410586,0,0.6337892691451358,0.16857089215293336
+50,8,0.3916183077535685,1.7999999999999998,1.380234548079095,0.0006967285477679659,0.03648120407305836,0.7810213081737248,0,0.7354377784346154,0.1581439879324077
+50,9,0.4275505154527641,1.7999999999999998,1.3795092526703518,0.000695996672281132,0.0365108709253922,0.7808969873320463,0,0.8296811492026124,0.15226018590573068
+50,10,0.4589577981587665,1.7999999999999998,1.348251746609261,0.0007056052650985903,0.036390254070927094,0.7755053416320481,0,0.921669685045181,0.13429974713564688
+50,11,0.4882784826032978,1.7999999999999998,1.3525917255114155,0.0007017513827374508,0.036354220156521316,0.7762586758722144,0,1.0,0.1275949420109927
+50,12,0.47700045192229257,1.7999999999999998,1.3556677728024293,0.0006983845458672659,0.036048681136770365,0.7767913057245193,0,1.0,0.12333483974097526
+50,13,0.47197963620446487,1.8499999999999999,1.359793389838007,0.0006959103297312224,0.03565021750931628,0.7902089237595686,0,1.0,0.10659878734821629
+50,14,0.43552693500301803,1.9,1.363306584716674,0.0006940301666439955,0.035925377268861546,0.802927801112173,0,1.0,0.11842311667672678
+50,15,0.4701766628545316,1.8499999999999999,1.3659072428594579,0.0007001573201459942,0.036277283646554664,0.7912220756876106,0,1.0,0.10058887618177192
+50,16,0.47452529542574085,1.8499999999999999,1.3672981536307809,0.0006978148863500801,0.03652101490066096,0.7914509734898267,0,1.0,0.08175098475246953
+50,17,0.45232867262266324,1.9,1.369809875483918,0.0006961937151240663,0.0363693029220314,0.8039555028058953,0,1.0,0.107762242075544
+50,18,0.43216428346523617,1.8499999999999999,1.368410761532757,0.0006957866701250613,0.03631495700446562,0.7916338878108323,0,0.9935265317802536,0.11584556917711566
+50,19,0.45586447812738207,1.7999999999999998,1.369593727865582,0.0007005117504878055,0.03593780331355604,0.7791973011571461,0,1.0,0.11954826042460673
+50,20,0.47294092869017207,1.7999999999999998,1.3671704933313367,0.0007000825066956519,0.03640177893946596,0.7787799564445438,0,1.0,0.10980309563390693
+50,21,0.4396861031346453,1.8499999999999999,1.3689738850180564,0.0006979576519350036,0.036532310762542194,0.7917274755619278,0,1.0,0.13228701044881766
+50,22,0.43955514688397473,1.7999999999999998,1.3707001573917277,0.0007026322454244131,0.03653365290961362,0.7793883315036427,0,1.0,0.13185048961324905
+50,23,0.4425643752508471,1.8499999999999999,1.3709251643672518,0.0007069846850490699,0.03624331969194763,0.7920520223931581,0,1.0,0.14188125083615685
+50,24,0.4669957911651168,1.9,1.3714725363918125,0.0007105970563591648,0.03621796904509538,0.8042219597355024,0,1.0,0.15665263721705588
+50,25,0.4798104664566853,1.9,1.3702661175921327,0.0007106245448488564,0.03616231048646729,0.8040319492476744,0,1.0,0.19936822152228417
+50,26,0.5091599754495605,1.95,1.3685115266373513,0.0007107433511925551,0.03641238956579364,0.8153165272670962,0,1.0,0.1971999181652016
+50,27,0.5019428421145523,1.95,1.3719252491773675,0.0007076101602625987,0.0364313194827698,0.8158290554695293,0,1.0,0.1731428070485074
+50,28,0.4782223127589703,2.0,1.3739426454387618,0.0007050728817306029,0.03657579320442113,0.8271201024001146,0,1.0,0.1940743758632342
+50,29,0.4794426104658615,1.95,1.3726994277048135,0.0007049840558039581,0.03656248004839256,0.8159445601367625,0,1.0,0.19814203488620494
+50,30,0.48052231308970317,2.0,1.3706205710312074,0.0007049782417563064,0.036500095124788794,0.8266445274061451,0,1.0,0.2017410436323437
+50,31,0.4801895181227826,2.0,1.369955058395147,0.0006931650804295225,0.03604012520051239,0.8265457492514784,0,1.0,0.20063172707594187
+50,32,0.4990066081369054,2.0,1.370048601782229,0.0006919222239128484,0.03619164241983061,0.826558803608412,0,1.0,0.1966886937896846
+50,33,0.46321238596575215,2.0,1.359309623907723,0.0007030193921183916,0.03591628574366847,0.8250170717281802,0,0.9979886600414367,0.2133897398305915
+50,34,0.4868282045543373,1.95,1.3746251065071362,0.0006938174285683457,0.036454333785133006,0.8162302308594493,0,1.0,0.22276068184779071
+50,35,0.5082829418290229,1.95,1.3738331977649252,0.000692683695506441,0.03621865834469928,0.8161110757475948,0,1.0,0.19427647276340965
+50,36,0.45918647310851796,1.95,1.360270097848478,0.0007191174056848207,0.036532573883544237,0.8140748788991581,0,1.0,0.1972882436950598
+50,37,0.4978668964836868,1.9,1.3599478353749739,0.000724472747107489,0.03648817465127066,0.8024054430368619,0,1.0,0.1928896549456227
+50,38,0.48864148082702696,1.9,1.3633204402934378,0.0007201005024568844,0.036613171390766336,0.8029382438030855,0,1.0,0.22880493609008978
+50,39,0.5119014104613324,1.95,1.372550745624228,0.0006914506439552209,0.036203290148649064,0.8159181648703494,0,1.0,0.2396713682044414
+50,40,0.5152039799811627,1.95,1.3715168818068206,0.0006909253078541278,0.03622547614349119,0.8157626743270914,0,1.0,0.21734659993720917
+50,41,0.49320337388494573,2.0,1.3737633356337995,0.0006939216292623781,0.036232227919814626,0.827091271462925,0,1.0,0.24401124628315227
+50,42,0.5158988312223283,1.95,1.3734973356307734,0.0006929707980883351,0.03621495816755939,0.8160607524848894,0,1.0,0.21966277074109403
+50,43,0.5079000551614241,1.95,1.3747947451917004,0.0006954055979864158,0.03628475493326663,0.8162561514269502,0,1.0,0.19300018387141346
+50,44,0.48181106647301586,2.0,1.3533911777840684,0.0007204436602786259,0.03595079974136075,0.8241660677220616,0,1.0,0.20603688824338612
+50,45,0.5080362610810173,1.95,1.3744586101231409,0.0006944176579498913,0.036324814476277695,0.8162054354323064,0,1.0,0.19345420360339083
+50,46,0.4809904851873642,1.95,1.3412203985512823,0.0007189423829894539,0.03638743052148907,0.8111742540137001,0,1.0,0.20330161729121385
+50,47,0.5003713239628037,1.9,1.3738013577212154,0.0006936948322525194,0.03624081107907162,0.8045830555729927,1,1.0,0.2012377465426791
+50,48,0.48254266268033075,1.95,1.384608487441979,0.0007017438243956565,0.0364838563073054,0.8177253601844253,1,1.0,0.20847554226776893
+50,49,0.45909475642931163,2.0,1.3842679874670965,0.0007020895727126153,0.0365802656370164,0.8285907176850602,1,1.0,0.1636491880977053
+51,0,0.1865586451294058,1.95,1.3843425744621547,0.000698973811562679,0.03652034453374993,0.8176848964626614,1,0.14756587815455682,0.25844097955861023
+51,1,0.21985856717419006,1.9,1.3840465595482674,0.0006988337453779302,0.03666928357940838,0.8061904809323475,1,0.18985355817012867,0.3130571463537952
+51,2,0.26248938183392745,1.9,1.3836658844771978,0.0006986440137282257,0.036597727766560006,0.8061309352093456,1,0.24407092303554986,0.38287004206569164
+51,3,0.24108811746284034,1.9,1.3860342737323101,0.0007000311952990927,0.03644175766042701,0.8065012408164349,1,0.2524161541336017,0.4004055193646655
+51,4,0.3019417703645722,1.8499999999999999,1.3858726991624548,0.0007002297555864461,0.03677075122193334,0.7945010133535898,1,0.28974011871428446,0.45348574292952804
+51,5,0.27380145562334346,1.8499999999999999,1.3858530680165626,0.0007004441351576112,0.03656961160922552,0.7944978781784373,1,0.29012392856542335,0.4591729473239136
+51,6,0.26531630068425593,1.7999999999999998,1.3857011863566842,0.00070052489181046,0.036653904399077154,0.7819561091969193,1,0.32025804435561267,0.4240436098067029
+51,7,0.3498951496898124,1.8499999999999999,1.3856839259985922,0.0007002863856889225,0.03669776447943081,0.7944702092994911,1,0.3842634280032925,0.487299261628318
+51,8,0.3944780687385521,1.8499999999999999,1.385649528144897,0.0007005404154339726,0.036388026634594076,0.7944646754714144,1,0.43418616323944753,0.5693453448092437
+51,9,0.41077741902607645,1.8499999999999999,1.3854664372727294,0.0006997112360683294,0.03671672150067344,0.7944345060257876,1,0.47021206876455274,0.6089753050675178
+51,10,0.4294016963793285,1.9,1.3858369627764393,0.0007001580271048628,0.03670780220636173,0.8064704867912785,1,0.5090776980680068,0.6192353905070861
+51,11,0.4678880705677187,1.95,1.385899929833005,0.0006999921503485534,0.03645573321380332,0.817917249715924,1,0.5320339672868323,0.6835816121766193
+51,12,0.4317509270935642,1.95,1.3855930777148708,0.0006999259919987929,0.036503586949032815,0.8178715264849372,1,0.5655102372101376,0.6518227740316972
+51,13,0.45651883357035516,1.9,1.385740250127497,0.0006998474858134143,0.0367689582217797,0.8064552948941388,1,0.5915661240298637,0.6663079465280323
+51,14,0.5176055664949305,1.9,1.385934464938618,0.0007001837562918673,0.03632061051714402,0.8064857120994143,1,0.6300611792060475,0.7186036493750381
+51,15,0.4897902341138518,1.9,1.3827146809528386,0.0007005292400749682,0.03668092016185061,0.805982823773857,1,0.6742195877126719,0.7003413300959433
+51,16,0.5375101690083406,1.8499999999999999,1.3816957965240668,0.0007004877426983551,0.036594558609403346,0.7938182995281676,1,0.6949200172374018,0.7318072070445992
+51,17,0.5076062164142792,1.8499999999999999,1.3819166650168846,0.000702444432265605,0.03661898731563672,0.793855087328712,1,0.7209831092186736,0.6973765757560323
+51,18,0.5247499987414149,1.7999999999999998,1.3807807921600599,0.0007025902974605578,0.036673283620345706,0.7811167207454363,1,0.746968076743451,0.6865425601467817
+51,19,0.5579988713235944,1.8499999999999999,1.3813644267250547,0.000701277444159717,0.03666355716332602,0.7937643172376331,1,0.769583945756316,0.7005509767368934
+51,20,0.5831955216709018,1.8499999999999999,1.3816544581842476,0.0007031872884035125,0.036729180254401514,0.7938124172602687,1,0.8107382833904437,0.7296673610490809
+51,21,0.5526110272917605,1.8499999999999999,1.3837553994878815,0.0006987771727649966,0.036553343952801035,0.7941546331539601,1,0.8379242007811817,0.6914711565976259
+51,22,0.635696417293204,1.7999999999999998,1.3844511449508121,0.0006989485941622617,0.03652486835116588,0.7817423631784448,1,0.8931558273171062,0.7614469545545383
+51,23,0.6470401384368396,1.7999999999999998,1.3850050085837102,0.0006996821326957711,0.036519544990058814,0.7818370995683203,1,0.9359923103138411,0.775477381037677
+51,24,0.629677946498949,1.8499999999999999,1.3847239542063354,0.0006992012206780725,0.03658619795644953,0.7943130592021481,1,0.9307246511542375,0.79129362012418
+51,25,0.6974376606254606,1.9,1.3841641515539926,0.0006990215241236839,0.03659663558898328,0.8062089123903566,1,0.9767815790784735,0.8557500966469042
+51,26,0.6736182721174195,1.9,1.3831778311274316,0.0007013672801604589,0.03661661942168437,0.8060555004143803,1,0.9858777535567383,0.8642239023157472
+51,27,0.7289382217448825,1.8499999999999999,1.3827009147416172,0.0007021699377773673,0.036713322733699844,0.7939833097819982,1,1.0,0.9297940724829414
+51,28,0.6841730065351759,1.8499999999999999,1.3819326712535753,0.0007031504932175838,0.03672970395682129,0.793857937814356,1,1.0,0.9139100217839198
+51,29,0.7396122568774339,1.7999999999999998,1.3817786974045752,0.0007015450050504353,0.036554202475018546,0.7812869308902167,1,1.0,0.9653741895914463
+51,30,0.7128021367524644,1.7999999999999998,1.3808066328056965,0.0007023525298538306,0.036676978485434296,0.7811210574734121,1,1.0,0.9760071225082145
+51,31,0.6919404470744539,1.7499999999999998,1.380273244638201,0.0007038109081386012,0.03644534352579475,0.7679338019121253,1,1.0,0.9398014902481797
+51,32,0.75,1.6999999999999997,1.37986072945862,0.0007019679495711881,0.0365028672822158,0.7542232235296773,1,1.0,1.0
+51,33,0.72,1.6999999999999997,1.3787345241621245,0.00070301000567943,0.03662451493432683,0.7540147850194068,1,1.0,1.0
+51,34,0.6958869306496276,1.6499999999999997,1.3780738792207325,0.0007046976877093166,0.03634212690411355,0.739714130164444,1,1.0,0.9529564354987587
+51,35,0.75,1.5999999999999996,1.3774980852892165,0.0007025286387000393,0.03649971326084233,0.7249008168614787,1,1.0,1.0
+51,36,0.75,1.5999999999999996,1.376212367019451,0.0007038191915122451,0.036415746414825936,0.7246448603040276,1,1.0,1.0
+51,37,0.75,1.6499999999999997,1.3748116277136857,0.0007049644452892333,0.03657659109466159,0.7390856374759062,1,1.0,1.0
+51,38,0.74,1.6999999999999997,1.3733984886696646,0.0007057844194970048,0.036482963743503946,0.7530247669056764,1,1.0,1.0
+51,39,0.74,1.7499999999999998,1.3779447402288505,0.0007038167719584222,0.03647724573452296,0.7675185789277919,1,1.0,1.0
+51,40,0.75,1.7999999999999998,1.3810790506530228,0.0007023745668022533,0.036494286888757305,0.7811676369791719,1,1.0,1.0
+51,41,0.6959827354130539,1.8499999999999999,1.379639644545544,0.0007026522260981486,0.03656382710997559,0.7934822735405038,1,1.0,0.9532757847101798
+51,42,0.75,1.7999999999999998,1.3798951066035559,0.000700708423300943,0.036617155472990395,0.7809646105597031,1,1.0,1.0
+51,43,0.701054268575316,1.7999999999999998,1.3779999992659198,0.000700863978318467,0.03663217848558501,0.780640316277012,1,1.0,0.9701808952510533
+51,44,0.75,1.7499999999999998,1.3777374964780322,0.0006988468687447937,0.036383434085146514,0.7674798237866727,1,1.0,1.0
+51,45,0.7197997686041375,1.7499999999999998,1.3755848274008786,0.0006987580068310254,0.03645599286320026,0.767095417283431,1,1.0,0.9993325620137915
+51,46,0.7025094081270802,1.6999999999999997,1.3762313556732675,0.0007021037375702385,0.03659674141679563,0.7535498743533047,1,1.0,0.9750313604236003
+51,47,0.75,1.7499999999999998,1.3755548634005463,0.0006996966758260087,0.03643150882355623,0.767090399281624,1,1.0,1.0
+51,48,0.72,1.7499999999999998,1.373941306863719,0.0006999361922357865,0.03633787979134971,0.7668020783124552,1,1.0,1.0
+51,49,0.72,1.6999999999999997,1.3742961849989161,0.0007033077943269467,0.036514534106672804,0.7531907603885672,1,1.0,1.0
+52,0,0.16643158261841445,1.7499999999999998,1.3856251663619379,0.0006998494516556631,0.03636288038484521,0.7688847998992965,0,0.1618895250273615,0.20558590869156618
+52,1,0.18530037340509173,1.6999999999999997,1.3857472314836752,0.000700071329612945,0.03675667598039537,0.7553120729705758,0,0.213437249669724,0.19975157845734043
+52,2,0.22996846147429212,1.7499999999999998,1.3837100659193833,0.000698815689182643,0.036501546735019354,0.7685439416954978,0,0.3224978130509617,0.16989778751302473
+52,3,0.20992150095787207,1.7499999999999998,1.3836256558897824,0.0006985895735480412,0.03650563927137977,0.7685288457002216,0,0.34238035933352456,0.17656452408154086
+52,4,0.1968193735430565,1.6999999999999997,1.3833390745833638,0.0006984727556392917,0.03665693621595153,0.7548661424546698,0,0.3589094315153148,0.1775186697897686
+52,5,0.2576513302142211,1.7499999999999998,1.3836630941268422,0.0006990456215437697,0.0364767827053307,0.7685356678573458,0,0.41312538435946955,0.17467058823477755
+52,6,0.2617307686308232,1.7499999999999998,1.38590588169119,0.000700473487479911,0.036759756755610294,0.7689349012687562,0,0.44295554686718974,0.21516183294649094
+52,7,0.3109971441941299,1.7999999999999998,1.3805439099978536,0.0006967392624918833,0.036449030890627516,0.7810742164867067,0,0.5077720226023644,0.22629445051061375
+52,8,0.3442505977381406,1.7999999999999998,1.3808028856160175,0.0006973596732121209,0.03629752858220677,0.7811187095368677,0,0.5904048459316233,0.2269621978849709
+52,9,0.31395058898894324,1.7999999999999998,1.380756998252019,0.0006978174767272597,0.03659551039396429,0.7811110205162348,0,0.6130321867106153,0.2291257143489903
+52,10,0.3465601668503898,1.7499999999999998,1.287945575469973,0.0007980903633651847,0.035833605629931334,0.7511101262946198,0,0.6361849301805602,0.24028731592721897
+52,11,0.3319044491688681,1.7499999999999998,1.2969814016993908,0.0007869962460599917,0.036226999018848724,0.7527913524756015,0,0.6447010866430596,0.24674671503881412
+52,12,0.4087492689757804,1.7999999999999998,1.3071732173318469,0.0007751628136048571,0.03650373515434779,0.768297631059702,0,0.7214642779069297,0.2672118593766952
+52,13,0.3768928494207986,1.7999999999999998,1.3079217746163523,0.0007836251788972189,0.036673463328904594,0.7684338714105886,0,0.7404176798251194,0.26908592496916944
+52,14,0.46118683778032915,1.7499999999999998,1.3163030974923564,0.0007725722694851625,0.036539062798081286,0.7563641489723748,0,0.8342277396889288,0.25831913968252534
+52,15,0.4873020547579832,1.7499999999999998,1.3800761101266685,0.0006960031176328827,0.03656241679821505,0.767895885242514,0,0.9171634960741072,0.2681221877611346
+52,16,0.5178886490924429,1.7499999999999998,1.3799208111014147,0.0006957335002709707,0.036512182408121666,0.7678681087501911,0,0.9967770086660442,0.26392615208675063
+52,17,0.5225580743039213,1.7499999999999998,1.3795192214219387,0.0006954417256201629,0.036367298811857886,0.7677964149863002,0,1.0,0.24186024767973743
+52,18,0.5151908988688484,1.7999999999999998,1.3802169613846906,0.000696159845229382,0.03641261035611219,0.7810181058298568,0,1.0,0.2506363295628277
+52,19,0.5017890741310682,1.8499999999999999,1.379899042141647,0.000696202888330507,0.03651266774671541,0.7935226639416858,0,1.0,0.27263024710356076
+52,20,0.5069179176869755,1.9,1.3792826400728406,0.0006955836785606234,0.03656219438937581,0.8054440264236772,0,1.0,0.2897263922899183
+52,21,0.525376283384012,1.95,1.3785814566837158,0.0006948930026281488,0.036520335977630984,0.8168232567643139,0,1.0,0.28458761128003984
+52,22,0.5278991142958596,2.0,1.378229546770517,0.0006949488883946987,0.03654107680671702,0.8277293503101376,0,1.0,0.2929970476528652
+52,23,0.524454753200364,2.0,1.377767434227274,0.0006949106424737536,0.0365001610457381,0.8276634351872854,0,1.0,0.2815158440012135
+52,24,0.4822091838348551,2.0,1.3770307403580002,0.0006948037347672732,0.036451165836170286,0.8275582997456511,0,1.0,0.27403061278285024
+52,25,0.5098660364021568,1.95,1.3791173684811242,0.000695506508066467,0.03634575750045276,0.8169036114205708,0,1.0,0.29955345467385575
+52,26,0.5285364266831227,1.95,1.3782176957420593,0.0006947355818822817,0.03631536926587152,0.8167687763610977,0,1.0,0.2951214222770757
+52,27,0.5301078138655598,2.0,1.377455530133986,0.0006944481990608566,0.036432699895500305,0.827618809728406,0,1.0,0.26702604621853265
+52,28,0.5231104378743483,2.0,1.3786764540404637,0.0006958089713786089,0.03640814159893307,0.8277933122489901,0,1.0,0.2770347929144943
+52,29,0.5283357043932083,2.0,1.3779630354674242,0.000695717610632846,0.03655548333509686,0.8276915634862219,0,1.0,0.2611190146440275
+52,30,0.48826133700395313,2.0,1.3786537489408333,0.0006971014473704215,0.03644055512019199,0.8277904440719525,0,1.0,0.2942044566798437
+52,31,0.48762908886816503,1.95,1.3806908766441581,0.0006973882152509776,0.03638522424869599,0.817139409333524,0,0.9979349405503685,0.29485037549339216
+52,32,0.5328205402050701,2.0,1.3820690656507852,0.0006976746850291034,0.03644193911162919,0.8282769273216357,0,1.0,0.2760684673502336
+52,33,0.48491894133387214,2.0,1.382672845847154,0.0006985949789363004,0.03644463945249766,0.8283630502202615,0,1.0,0.28306313777957365
+52,34,0.5143088202636621,1.95,1.3837778359573782,0.0006988100936212933,0.03655076005208703,0.8176006433969938,0,1.0,0.31436273421220706
+52,35,0.4967289282260464,1.95,1.3833102189986102,0.0006982753532977838,0.03646987477351215,0.817530737862828,0,1.0,0.32242976075348806
+52,36,0.49555524481211244,2.0,1.3841409673332052,0.0006986829440914066,0.0366494177124632,0.8285717087414972,0,1.0,0.31851748270704144
+52,37,0.5265774454746325,2.0,1.3847041392614308,0.0006990919204665906,0.036524061072940664,0.8286518033762043,0,1.0,0.35525815158210816
+52,38,0.5475182473366347,2.0,1.3843288613905007,0.0006989338442130362,0.036706837162652786,0.828598466951755,0,1.0,0.35839415778878203
+52,39,0.5085715146862768,2.0,1.3839464764055194,0.000698566622396957,0.03649313674796062,0.8285440483127098,0,1.0,0.36190504895425585
+52,40,0.5148993434576732,1.95,1.3843479264292151,0.0006990095421358552,0.03649824728254434,0.8176857049659143,0,1.0,0.38299781152557705
+52,41,0.5360372025272082,2.0,1.384482716466368,0.000699433708737371,0.03638515019329978,0.8286204587839722,0,1.0,0.3867906750906938
+52,42,0.5215399535130173,2.0,1.384179946940098,0.0006994901448807182,0.036564098856754754,0.8285774746632177,0,1.0,0.4051331783767242
+52,43,0.5447297806476069,2.0,1.3530820890298019,0.0006842306849605288,0.035556071130397215,0.8241107731617,0,1.0,0.4157659354920228
+52,44,0.5718309708146088,2.0,1.3533666783654843,0.0006827441653852139,0.03585843118579947,0.8241515903394783,0,1.0,0.4061032360486955
+52,45,0.5653764130386536,2.0,1.3503891070887222,0.000681232391015927,0.03604544425107049,0.8237192079770302,0,1.0,0.3845880434621785
+52,46,0.557183677915294,2.0,1.3832058390713897,0.0006980743985697427,0.03644738455694321,0.8284386687346909,0,1.0,0.357278926384313
+52,47,0.5539751789993538,2.0,1.3838851611624428,0.0006984987996043527,0.0367010893573238,0.82853531849645,0,1.0,0.3799172633311791
+52,48,0.5524357209081864,2.0,1.3834513995420967,0.0006983214070608235,0.03655659615758292,0.8284736371508685,0,1.0,0.37478573636062096
+52,49,0.5600342229243539,2.0,1.3829298914795747,0.0006981018784850011,0.03640670822239693,0.8283994531021847,0,1.0,0.36678074308117936
+53,0,0.1720011292832031,2.0,1.3858609534956914,0.0007002903831976283,0.03636551426510098,0.8288163347401736,0,0.16714417541463816,0.21714486372449276
+53,1,0.21628152870346473,1.95,1.3858543610010052,0.0007004397955066705,0.03672458069793953,0.8179105964524145,0,0.2682342822266337,0.19662605270937084
+53,2,0.24181407020185486,1.95,1.3844296734365071,0.0006992038720156005,0.03665895631767231,0.8176979490861055,0,0.3482643240717658,0.20836113524382843
+53,3,0.24533105778119518,1.95,1.3829983631937168,0.0007046569273201354,0.03645246534515999,0.8174861167085029,0,0.38496310641286896,0.23781938405349204
+53,4,0.2914783590707016,2.0,1.3835493433777992,0.0007038637435213343,0.03677217243777601,0.8284891300998212,0,0.4608015803964549,0.22385908970706553
+53,5,0.2813085227883824,2.0,1.3850587773289895,0.0006993085471781296,0.03670690095084819,0.8287022133570223,0,0.4644791537465932,0.2517228709658171
+53,6,0.2721502461583576,2.0,1.3848000796524502,0.0006991297381086871,0.036502559788803235,0.8286654360687907,0,0.4764871300266583,0.2718513138256474
+53,7,0.31202993681719177,2.0,1.3852277430545454,0.0006995222849745346,0.036680871614763626,0.8287262582054455,0,0.5055421744335853,0.2993768901458587
+53,8,0.33283446092402813,2.0,1.3849228539331113,0.0006994065095985149,0.0367130353114989,0.8286829453239678,0,0.5428252311521086,0.31901456154394897
+53,9,0.34902516906324665,2.0,1.3845465329938984,0.0006992431830212292,0.036327798659285766,0.8286294669789575,0,0.5677399932350147,0.3397639058974693
+53,10,0.3938569611154265,2.0,1.3840945786273253,0.0006991009840733397,0.036629945401340507,0.8285652383208696,0,0.6299972033896211,0.33952693253192695
+53,11,0.3541219128162106,2.0,1.2945892751087826,0.0007648562428591619,0.03589756271703255,0.8154950391420872,0,0.6307533400352191,0.33940192267374314
+53,12,0.44071750849076763,1.95,1.3029819692232965,0.0007547117217035378,0.035496830897543095,0.8052586704417585,0,0.731219125122608,0.32743286147241485
+53,13,0.4587153169430393,1.95,1.2973369208750472,0.0007547319349850124,0.03572008210423204,0.8043719107223778,0,0.8046458300586281,0.32285661639862684
+53,14,0.4895007977533055,2.0,1.370708263070127,0.0006937966064445239,0.036352503353044976,0.8266538890378969,0,0.8801064246376537,0.3248607596608135
+53,15,0.4606147767831853,2.0,1.3701793419354331,0.0006927285062022902,0.036423583112391626,0.8265777767876448,0,0.9062607045827681,0.32703498316692686
+53,16,0.4953164722176899,1.95,1.3706240029095629,0.0006943710744361069,0.0363400117450305,0.8156294785467386,0,0.92522229795467,0.350758510119406
+53,17,0.5458780945576871,1.95,1.369468190774907,0.0006947247070324239,0.03618183369735045,0.8154557128163169,0,0.9835301406523659,0.3748867943224691
+53,18,0.5381642893493374,1.95,1.368450315404559,0.0006931592273757656,0.035987933904589944,0.8153020144387991,0,0.9975541559900318,0.39714208984441535
+53,19,0.5577802037395995,2.0,1.3675158947344794,0.0006936006934684291,0.036134102244150965,0.8261958980667128,0,1.0,0.3926006791319982
+53,20,0.5189315420772962,2.0,1.3668767245614692,0.0006921580611256332,0.036056184886895486,0.8261036820123223,0,1.0,0.3964384735909871
+53,21,0.5638377570908344,1.95,1.3673645988422456,0.0006942508088271767,0.03640496473758051,0.8151387952059631,0,1.0,0.37945919030278125
+53,22,0.5544992239800371,1.95,1.3718529861673496,0.000694373583534713,0.03638078323882883,0.8158142197001099,0,1.0,0.38166407993345697
+53,23,0.5621954384609881,2.0,1.3707909162468805,0.0006929005775957539,0.03606698427891424,0.8266654759067631,0,1.0,0.3739847948699599
+53,24,0.5149831453235123,2.0,1.3751085331684494,0.000693926290057948,0.03619764871730084,0.827283566604481,0,1.0,0.3832771510783744
+53,25,0.549984083415489,1.95,1.3755094683261724,0.0006951160365367652,0.0362734282427686,0.8163632360175666,0,1.0,0.36661361138496323
+53,26,0.5547739192170987,1.95,1.3742280727928653,0.0006937630633379512,0.03648588550301385,0.8161706526302944,0,1.0,0.38257973072366214
+53,27,0.5384605545350833,2.0,1.3730662630244395,0.0006924816551166441,0.03639785996360033,0.8269911474184748,0,1.0,0.3948685151169445
+53,28,0.5578829579388642,2.0,1.3727771326612503,0.0006929909844204803,0.03639998702044887,0.8269499214371496,0,1.0,0.39294319312954723
+53,29,0.5624654015973,2.0,1.3715881256960931,0.0006916940103772948,0.036329338837511,0.8267793324390696,0,1.0,0.37488467199099973
+53,30,0.5120580884701014,2.0,1.3753583868912955,0.000693000531893264,0.036181860725884904,0.8273189996394075,0,0.9935879801325119,0.38207632139032177
+53,31,0.540790312970049,1.95,1.375903002944098,0.0006940520239620989,0.03625481058035031,0.8164219061983903,0,1.0,0.4026343765668297
+53,32,0.5444679715823177,1.95,1.3304414091508017,0.0006705899152802276,0.03572500348334922,0.8095027773684919,0,1.0,0.41489323860772553
+53,33,0.5680025500202601,2.0,1.331385057871178,0.0006694596801441442,0.03544468868799831,0.8209392499091696,0,1.0,0.4266751667342004
+53,34,0.5750433617508304,2.0,1.3389163768377337,0.000680631317413904,0.03582924418341207,0.8220469325502218,0,1.0,0.41681120583610115
+53,35,0.5724861999949362,2.0,1.3352398993292256,0.0006789394998925003,0.03531086524258892,0.8215079831231212,1,1.0,0.408287333316454
+53,36,0.5214762648705893,2.0,1.3853264219395935,0.000699575543930393,0.03653772401140974,0.8287402792560937,1,1.0,0.37158754956863094
+53,37,0.5107716138890983,1.95,1.3840365634031038,0.0007029059078280211,0.0366194511060773,0.8176404456190778,1,1.0,0.33590537963032746
+53,38,0.5648799551063161,2.0,1.3842809585197484,0.000702026614947227,0.036387193997236174,0.8285925420482966,1,1.0,0.38293318368772
+53,39,0.5853551397426047,2.0,1.383955848072206,0.0007026677026675599,0.03654609734337823,0.828546544815249,1,1.0,0.45118379914201545
+53,40,0.5326680119203067,2.0,1.3853758426107645,0.0006995697947450203,0.036547380521329914,0.8287472917776257,1,1.0,0.4088933730676889
+53,41,0.545090211803291,1.95,1.3852161183919771,0.0006995905561744376,0.036749983823000855,0.8178152688100994,1,1.0,0.41696737267763656
+53,42,0.526003342683612,2.0,1.384802996283074,0.0006991748217845063,0.03670590897210941,0.8286658629706322,1,1.0,0.3866778089453735
+53,43,0.5146382735012859,2.0,1.3823901879206728,0.000704119533107498,0.03658105905046283,0.8283244300570777,1,1.0,0.348794245004286
+53,44,0.5744098397615212,2.0,1.3827060774805782,0.0007028224206727888,0.03675974221853977,0.8283689770325283,1,1.0,0.414699465871737
+53,45,0.5254128315405113,2.0,1.3848834964355448,0.0006992158763508447,0.03657622530577269,0.8286773036364403,1,1.0,0.38470943846837097
+53,46,0.5892928743674263,1.95,1.3805134094716738,0.0007037903010191637,0.036392582782717335,0.8171148036757345,1,1.0,0.46430958122475396
+53,47,0.5315404365786439,1.95,1.3848510703360277,0.00069918490526854,0.03646552255263864,0.8177607518219826,1,1.0,0.40513478859547974
+53,48,0.5908270872929142,1.9,1.3846162141321996,0.0006991598901709071,0.0367193287682414,0.8062795743323535,1,1.0,0.46942362430971407
+53,49,0.5969833708283141,1.9,1.3853204959748173,0.00069948425293106,0.03675133261338537,0.806389655655591,1,1.0,0.5232779027610468
+54,0,0.18511417520501522,1.95,1.3856458542947248,0.000700526969233655,0.036358765835065684,0.817879566864902,0,0.2004684564365993,0.18308930876791835
+54,1,0.21706615432231557,1.9,1.384903185199603,0.0006992789258570504,0.03670678982643982,0.8063244303922131,0,0.29776294252440966,0.1598699243751724
+54,2,0.2533874131218807,1.9,1.3847801520215783,0.0006991227299811804,0.03664873333037266,0.8063051673611535,0,0.40595439964821683,0.13668551087531317
+54,3,0.24803829629961313,1.9,1.3855391936351356,0.0006996798038542463,0.03643153535430096,0.8064238586755315,0,0.44672273600207835,0.16449733966260596
+54,4,0.2969775908469934,1.95,1.3853685103290458,0.0006995235629841971,0.036739908717788664,0.8178379531504734,0,0.5153585054233611,0.16944729559216312
+54,5,0.2919484385758136,1.95,1.38539081785536,0.0006996035928644545,0.036673862342689184,0.8178413003258751,0,0.5354548798362141,0.1925549554710931
+54,6,0.3570248032130529,2.0,1.3851771109085387,0.0006994068998646013,0.03647972254581038,0.8287190386508709,0,0.6332074705148419,0.17913938335705362
+54,7,0.30509013283457387,2.0,1.369476675738741,0.0006888361718633811,0.036141445887767944,0.8264759121888322,0,0.6298399065081083,0.1771805674377685
+54,8,0.34884137504996726,1.95,1.370939921779132,0.0006893832954947175,0.03626210941778367,0.8156754812573389,0,0.6652614057490929,0.2091227091677671
+54,9,0.36234499940498294,1.95,1.2940591095092806,0.0008029600855704332,0.03666036964890283,0.8038708150835421,0,0.6898797962090429,0.22131026973788587
+54,10,0.43029622463074696,2.0,1.3061780367924332,0.0007898426580697018,0.03656244980276464,0.8172398102294388,0,0.7879349576862597,0.21707413852081034
+54,11,0.46880996610922016,2.0,1.305357446543307,0.0007884977186637497,0.03640776320783838,0.8171168138959337,0,0.8950402295760611,0.20264624759598557
+54,12,0.4953523965448031,2.0,1.376284579216016,0.0006932808498658113,0.03608075236461007,0.8274513575139705,0,0.9763996133210147,0.21597517072132416
+54,13,0.48865239509037084,2.0,1.3751343263847584,0.0006922930688099233,0.0362746888507768,0.8272867853293474,0,0.9865413319502161,0.24678620770094783
+54,14,0.515058499949117,2.0,1.3751869130322898,0.0006926873444705272,0.036358921669633844,0.8272944116238824,0,1.0,0.25019499983039006
+54,15,0.5136456188148667,2.0,1.373956293527689,0.0006916151103798448,0.036504291227056264,0.8271182052463116,0,1.0,0.24548539604955572
+54,16,0.5144089742281658,2.0,1.3726177931453205,0.0006905083076552231,0.03637063559878931,0.8269264075312703,0,1.0,0.2480299140938857
+54,17,0.4751494357486935,2.0,1.371163815122081,0.000689406934079044,0.036246177826958395,0.8267179009893374,0,1.0,0.2504981191623117
+54,18,0.5184198635952089,1.95,1.371578322899555,0.0006899283958551245,0.03592117927114779,0.8157716087232336,0,1.0,0.2613995453173629
+54,19,0.4835067204735934,1.95,1.3696822472792642,0.0006884511419763695,0.03619478275523004,0.815486035569578,0,1.0,0.27835573491197796
+54,20,0.5198782534354642,1.9,1.3697952861245286,0.0006889639957751606,0.03641840090590141,0.8039509243538349,0,1.0,0.2662608447848807
+54,21,0.5226046673500401,1.9,1.3677848224416553,0.000687285852865582,0.03607289944546248,0.8036333241678787,0,1.0,0.2753488911668001
+54,22,0.521051989290454,1.95,1.3660555412057735,0.0006858905415877837,0.03582527845132436,0.8149389334813395,0,1.0,0.27017329763484654
+54,23,0.5196015119639552,2.0,1.3647572984627736,0.0006847337550080807,0.03569352646256797,0.8257968663894912,0,1.0,0.265338373213184
+54,24,0.48477922374303234,2.0,1.3634198100397172,0.0006837236996941249,0.0356646592088231,0.8256040854093114,0,1.0,0.2825974124767744
+54,25,0.525063716993998,1.95,1.3635366570958884,0.0006841403750844318,0.03583893227369868,0.8145582217009624,0,1.0,0.28354572331332645
+54,26,0.5257972971931392,1.95,1.3610188256595919,0.0006821869657193801,0.03629750255933687,0.814177003063329,0,1.0,0.2859909906437972
+54,27,0.5127393700081933,2.0,1.3589411095257178,0.0006805337434996135,0.036137776080872354,0.8249573712993704,0,1.0,0.3091312333606442
+54,28,0.5346026763097623,2.0,1.3608559879046103,0.0006823103528542023,0.036217719978502066,0.8252342253368802,0,1.0,0.2820089210325409
+54,29,0.4847585275888171,2.0,1.3662855791826858,0.0006857842043698746,0.0360516339930808,0.8260169118264274,0,1.0,0.28252842529605704
+54,30,0.5320973688309208,1.95,1.366465829943192,0.0006860591200939668,0.03576902122432252,0.8150008533881209,0,1.0,0.27365789610306945
+54,31,0.49956602450368387,1.95,1.3703158558726638,0.0006889476992103891,0.03625008583126613,0.8155815040588408,0,1.0,0.26522008167894606
+54,32,0.5009127191492293,1.9,1.3713060297048087,0.0006894460870191046,0.03648219629116528,0.8041890809378822,0,1.0,0.2697090638307643
+54,33,0.48469277491764257,1.95,1.371382395177952,0.0006896720795780845,0.03609827092368782,0.8157420842067801,0,1.0,0.2823092497254751
+54,34,0.5125000024419238,2.0,1.3719088459466242,0.0006905381503243685,0.03622667231925123,0.8268249286574122,0,1.0,0.3083333414730794
+54,35,0.5445440706898722,2.0,1.372391336768433,0.0006914878796124911,0.03627886433048743,0.8268942753257552,0,1.0,0.315146902299574
+54,36,0.519519513302953,2.0,1.376041352916686,0.0006931401950431367,0.03622663391141871,0.8274165877946761,0,1.0,0.33173171100984317
+54,37,0.49758219130002135,1.95,1.3759476442997194,0.0006934547991648985,0.0362001115564725,0.8164284178085074,0,0.9952399177346539,0.3316207473538658
+54,38,0.5468021202824316,1.9,1.3758267290476114,0.0006940306561649221,0.03652951399026273,0.8049014120463698,0,1.0,0.32267373427477164
+54,39,0.5381480139828088,1.9,1.3786291583073416,0.0006950903969872373,0.036226715087906994,0.8053414481514857,0,1.0,0.3271600466093626
+54,40,0.538383468127081,1.95,1.3775500913476715,0.0006941127533224531,0.03635896755133196,0.8166686566975047,0,1.0,0.32794489375693675
+54,41,0.5366763316304524,2.0,1.3765940745465763,0.0006933563327928517,0.036084370845116905,0.8274955629698233,0,1.0,0.3222544387681744
+54,42,0.5033303847729755,2.0,1.3755751172472712,0.0006925207642457392,0.036205778993910954,0.8273498229721388,0,1.0,0.3444346159099183
+54,43,0.529233263616071,1.95,1.3757429967271282,0.0006928677679558205,0.03619638712143538,0.8163975686819673,0,1.0,0.3641108787202366
+54,44,0.5477796226798374,1.95,1.3756343334566032,0.0006931930321226131,0.03652337244686443,0.8163813778202196,0,1.0,0.35926540893279096
+54,45,0.5471504300388751,2.0,1.3743672203329425,0.0006920299513588992,0.03633057218724214,0.8271770758912999,0,1.0,0.32383476679625034
+54,46,0.5376834291304119,2.0,1.3776849173653216,0.0006940642241838388,0.036530166508484174,0.8276514234646064,0,1.0,0.2922780971013728
+54,47,0.5266869486702399,2.0,1.3798557202319963,0.0006958756663088589,0.03654964157119038,0.8279613724893842,0,1.0,0.2889564955674661
+54,48,0.51374060570558,2.0,1.378728696827644,0.0006952935807895397,0.03637479305597944,0.8278006124769898,0,1.0,0.3124686856852667
+54,49,0.5390348197607036,2.0,1.3789265749154407,0.0006950610580344357,0.03622060322803378,0.8278287512452347,0,1.0,0.3301160658690118
+55,0,0.1657803749284855,2.0,1.3831982494445128,0.0006984892750828567,0.0365487689985844,0.8284377079649308,0,0.14972847401674746,0.21962995107262162
+55,1,0.1626280790718869,1.95,1.3855033453195216,0.000700574621675597,0.03671799909852862,0.8178583530208193,0,0.17841675316294364,0.23753792602236484
+55,2,0.1844932558637045,2.0,1.3855062872495583,0.0007003695909158104,0.036717914859961766,0.8287660313704373,0,0.21623729491393845,0.25999445966043044
+55,3,0.17093764328419894,2.0,1.3823388062053659,0.0007048671401047122,0.03649328832094136,0.8283173359273149,0,0.23730635136486114,0.25338367579418164
+55,4,0.2492232969611522,2.0,1.382955908140364,0.0007040600659039719,0.03673759122780261,0.8284048453601414,0,0.3363006172590033,0.2156768335251697
+55,5,0.26305984418894196,2.0,1.3827351480846375,0.0007047021490813304,0.03672254548200603,0.8283736445572092,0,0.40318214528677343,0.20595662024744193
+55,6,0.22465142964707274,2.0,1.3834405651372699,0.000698343563170596,0.03646582202487542,0.8284721038185721,1,0.4042979085799502,0.20977422071697552
+55,7,0.23381389947849046,1.95,1.386143253824244,0.0007003112590083691,0.03672230931614523,0.8179535798536077,1,0.4350565142854475,0.1659709792143714
+55,8,0.2879844762283454,2.0,1.386039983122308,0.0007001003631231402,0.03666957639455566,0.828841680022066,1,0.4737773731707893,0.19491175653343235
+55,9,0.25442687511659173,2.0,1.3860125413154711,0.000700003097084674,0.036388172506675115,0.8288377594083574,1,0.4934579612706156,0.15681230202781837
+55,10,0.3362911745177647,1.95,1.3860996864067001,0.0007000399335654916,0.03670260139146989,0.8179470115287649,1,0.5424987704392098,0.23097222114026933
+55,11,0.29320248287888073,1.95,1.3861018588186622,0.0007003424398181915,0.036661511871615385,0.817947425113838,1,0.5719070212872613,0.18146558121325396
+55,12,0.3544100867754542,1.9,1.3856739726073097,0.0006998527005498644,0.0365010307442609,0.8064449513751453,1,0.5939762561732908,0.22273194768712629
+55,13,0.33776122562886035,1.9,1.386103717716424,0.0007003406730134631,0.036746946830448955,0.8065121743930507,0,0.6209784381133462,0.2312328346117395
+55,14,0.40264969700956027,1.95,1.2674784627792741,0.0007876894812645006,0.036248756568761156,0.7996412759311017,0,0.7301027706396096,0.20202862917905476
+55,15,0.35421336432414874,1.95,1.2667233884835063,0.0007851235661827679,0.036173639660007896,0.7995194516818642,0,0.7296892983853098,0.20779214990008277
+55,16,0.3905252597248283,1.9,1.2778762576344624,0.0007728589341361462,0.035856702293830034,0.7890855222339509,0,0.758815159898366,0.22333065255160608
+55,17,0.4063825818383807,1.9,1.2890207615742217,0.0007614588963123787,0.03514134968223366,0.7909305515087276,0,0.7725382650444077,0.2578909194020587
+55,18,0.4714113482732712,1.95,1.3005738962119207,0.0007505916244480406,0.03580050128514783,0.8048794715927277,0,0.8671009899490302,0.24856984097886373
+55,19,0.42996056557073176,1.95,1.3828672936412945,0.0007042243846354363,0.03677238398507053,0.8174664308974807,0,0.872781183203882,0.26949364096392975
+55,20,0.5154125730949828,1.9,1.3825378694985344,0.00070501216405325,0.036499678485731074,0.8059565756511615,0,0.9636822021734346,0.2664656407520295
+55,21,0.47472076250776624,1.9,1.3829819238044214,0.0007038920997469206,0.03676999576672706,0.8060256618839442,0,0.9849401830874753,0.26914896424258683
+55,22,0.5183945468445726,1.8499999999999999,1.3825912306224637,0.0007045932749905251,0.03660429305076748,0.7939661605928291,0,1.0,0.26131515614857526
+55,23,0.5074433923782881,1.8499999999999999,1.3836161475333864,0.000703703020171484,0.03678174395902273,0.7941334788934273,0,1.0,0.29147797459429364
+55,24,0.5268029849501336,1.9,1.3831346121085861,0.000704219467154845,0.03644110948248553,0.8060496356814637,0,1.0,0.28934328316711166
+55,25,0.4890826143141135,1.95,1.3840300988952672,0.000703142278336011,0.036418430578642545,0.8176395522176982,0,1.0,0.2969420477137116
+55,26,0.49004184272353946,1.9,1.3837423043168546,0.0007036776753369968,0.03642462195296401,0.8061444513983107,0,1.0,0.3001394757451314
+55,27,0.5369417720791682,1.95,1.3832559318184878,0.0007043199438449179,0.03677361074818731,0.8175244429244479,0,1.0,0.28980590693056035
+55,28,0.529096847571364,1.95,1.3839776542668378,0.0007032043154601227,0.03678087137296079,0.817631750825807,0,1.0,0.2636561585712131
+55,29,0.5065596602241311,2.0,1.3843240856672845,0.0007023151291426997,0.03646916863562834,0.8285987491295859,0,1.0,0.2885322007471036
+55,30,0.5121057378925135,1.95,1.384041466582877,0.0007027521588722975,0.036578028424120036,0.8176411308551411,0,1.0,0.30701912630837813
+55,31,0.5165860893164461,2.0,1.3835623407989432,0.0007032690453790989,0.03672884329833975,0.8284908079533234,0,1.0,0.3219536310548205
+55,32,0.5419582770903281,2.0,1.3831156579454122,0.0007036334661306106,0.03677296162889522,0.8284274313748959,0,1.0,0.30652759030109333
+55,33,0.5199380039895874,2.0,1.3834043434963483,0.0007025232693570504,0.03649035100620103,0.8284681443903399,0,1.0,0.3331266799652913
+55,34,0.5348974871360451,1.95,1.3828434310120186,0.0007028895013543737,0.03652075439988518,0.8174624718309569,0,1.0,0.31632495712015013
+55,35,0.5244302830472316,2.0,1.3839303137795347,0.0007021791648734903,0.036475760190295,0.8285427786525532,0,1.0,0.34810094349077203
+55,36,0.541929283116067,2.0,1.3833816565829984,0.0007023813063269308,0.036583836025066,0.8284648800100858,0,1.0,0.3397642770535567
+55,37,0.5447885377920079,2.0,1.3842184757517775,0.0007016316202733209,0.0366006342058028,0.8285835554252688,0,1.0,0.3492951259733594
+55,38,0.5049980498623938,2.0,1.3846935694011755,0.0007009744786712597,0.03675998626363434,0.8286508371821278,0,1.0,0.34999349954131254
+55,39,0.5459986795799564,1.95,1.3846604388933452,0.0007017384049827375,0.03655313724045809,0.8177331018358939,0,1.0,0.35332893193318776
+55,40,0.5073992703319861,1.95,1.384880873209224,0.0007010781918335778,0.036703687739283224,0.8177657575400747,0,1.0,0.3579975677732868
+55,41,0.5512787355384301,1.9,1.3847529292756198,0.0007016899066164536,0.0364570154310425,0.806301717635718,0,1.0,0.37092911846143356
+55,42,0.5598815167653229,1.9,1.3848068945921783,0.0007010101967691904,0.03640848466508868,0.8063099334532591,0,1.0,0.3662717225510764
+55,43,0.538819934228589,1.95,1.3855060076384031,0.0007007065918843253,0.036720484679539166,0.8178587889337539,1,1.0,0.39606644742862973
+55,44,0.5858127248373726,1.9,1.3774803105199602,0.0007045196576062217,0.03627059515024019,0.8051642424532701,1,1.0,0.45270908279124167
+55,45,0.539934860667364,1.9,1.384232187759695,0.0006990767385272753,0.03642866771757784,0.8062195591327241,1,1.0,0.4331162022245464
+55,46,0.5827796503792054,1.8499999999999999,1.3837953183444964,0.0006985563153801236,0.03666993888983919,0.7941610865278738,1,1.0,0.4759321679306846
+55,47,0.5652504272494825,1.8499999999999999,1.3846087788556896,0.0006989854387588514,0.03671735282794505,0.7942941707222485,1,1.0,0.4841680908316081
+55,48,0.5692313804302762,1.9,1.3841444427894605,0.000698723861047994,0.03657937234816116,0.8062057401386514,1,1.0,0.49743793476758735
+55,49,0.6203263306735951,1.95,1.3835971708541888,0.0006984510189719139,0.03669657960575655,0.8175735921848702,1,1.0,0.56775443557865
+56,0,0.19129258948569433,1.95,1.383140343634993,0.0006983228320281943,0.03654563341964549,0.8175054096359873,1,0.15234708800099803,0.26784584761765046
+56,1,0.23359462996837904,1.9,1.3828205211960403,0.000698187772810548,0.03662820926353975,0.8059986417089744,0,0.21320012667218388,0.327715264331685
+56,2,0.2237295801809491,1.9,1.3808448024260986,0.0007060209620336063,0.0367183635072966,0.8056919746149167,0,0.25914343471850443,0.33357402097849115
+56,3,0.24393672027679025,1.95,1.381651516895942,0.0007048859832486231,0.03652317988996412,0.8172851462603599,0,0.2992464668475625,0.3474604451258842
+56,4,0.23138665116542323,1.95,1.3823123017380279,0.0007037580825511698,0.0367426940838509,0.8173834639453456,0,0.31267667380952197,0.3543866054720481
+56,5,0.31030150395721223,2.0,1.3831197823723032,0.0007029900331280467,0.03665625914871877,0.828427834692435,0,0.39248022898557566,0.3443647078766066
+56,6,0.29167444496386746,2.0,1.3830456380736953,0.0007037577415343129,0.036299912807973345,0.8284175141714858,0,0.41336361253163867,0.3544299998373733
+56,7,0.28216097913962285,2.0,1.3829690001109831,0.0006981826241713206,0.03657517336856185,0.8284050354273412,0,0.4308825095430063,0.36602658440806773
+56,8,0.3470963661625022,2.0,1.3837441324665916,0.00069848529124819,0.03665352018357225,0.8285152785522419,0,0.4976684952665872,0.3600965601862246
+56,9,0.3453712126611654,2.0,1.3834269288311811,0.0006983451779709215,0.03643765374439529,0.8284701664668791,0,0.5240414210969401,0.38584881407463106
+56,10,0.38826860183302153,2.0,1.383102893092018,0.0006980445517367887,0.03662160933664367,0.8284240282448924,0,0.5745328016163851,0.39485160395489177
+56,11,0.3585200315534069,2.0,1.3827040021560895,0.0006978443117917172,0.03664137102239458,0.828367266455509,0,0.5758074807212872,0.4273234642163067
+56,12,0.3626278200280859,1.95,1.385963208906448,0.0007003533919816263,0.036438580228160405,0.8179267811856499,0,0.5797715560773142,0.4357306586572008
+56,13,0.3689158909928133,2.0,1.3858113204842404,0.0007004632019925743,0.03677856111953896,0.8288093417432095,0,0.5938534685600063,0.4379150118960359
+56,14,0.43095892275132885,2.0,1.3856157401919589,0.0007005679248200972,0.03675744411711942,0.8287816198838224,0,0.6669324564364202,0.41395313392253597
+56,15,0.42686408308693147,2.0,1.3851136237734791,0.0007008621799479294,0.036459151270441026,0.8287104400108065,0,0.698753464626597,0.4245423241209754
+56,16,0.4917617013173758,2.0,1.3850908901536045,0.0007003436076591313,0.03667137409524572,0.8287070657375811,0,0.8067421621580279,0.39688278818054895
+56,17,0.44202761455049167,2.0,1.3818309364822428,0.0006988494296865384,0.036616067584665304,0.8282433887779138,0,0.8011649793121001,0.40520540941883887
+56,18,0.52767491666619,1.95,1.3498483653164965,0.0006853995907523073,0.03566273319337167,0.8124820373556793,0,0.9165984650612384,0.3701184354723154
+56,19,0.48563444425615127,1.95,1.382637311254629,0.0007034237952371889,0.03676553486571239,0.817431872600077,0,0.9248738698334913,0.3856163210758492
+56,20,0.5518290309094159,1.9,1.3827453617002852,0.0007023360167981527,0.03655085443537206,0.8059881864721344,0,0.9990742576563065,0.37399775948964403
+56,21,0.538799404525703,1.9,1.3820188664374502,0.0007028157601676511,0.03672313554378215,0.8058747083628338,0,1.0,0.3959980150856762
+56,22,0.5423886723511964,1.95,1.3834871588494195,0.0007020732980484972,0.036489081013200045,0.8175582642268844,0,1.0,0.4079622411706545
+56,23,0.5641174375337188,2.0,1.3242448602057648,0.0006733922707457858,0.034877870192607865,0.8198884103490577,0,1.0,0.3803914584457292
+56,24,0.5118477910508425,2.0,1.3806152433348027,0.0007034203336677916,0.03642040087021295,0.8280716812928461,0,1.0,0.3728259701694752
+56,25,0.5512993029585626,1.95,1.3805200722832014,0.000702075759915579,0.036502381193959425,0.817115286917932,0,1.0,0.3709976765285417
+56,26,0.5194952335131345,1.95,1.3796401035611525,0.0007025710890910949,0.036441269949223795,0.8169838976718801,0,1.0,0.39831744504378186
+56,27,0.5616949332863141,1.9,1.3794047002587273,0.0007011614594376922,0.036533215741207235,0.8054649010076813,0,1.0,0.4056497776210471
+56,28,0.5245323761878832,1.9,1.2914182619720729,0.0006541316645623435,0.033960922794508894,0.7912912764097669,0,1.0,0.4151079206262772
+56,29,0.5707754035223388,1.8499999999999999,1.3024580218243997,0.0006527108949479816,0.03439221496699972,0.7805309963668708,0,1.0,0.4025846784077957
+56,30,0.5624569341720773,1.8499999999999999,1.2946097682260862,0.0006474452084426925,0.0348521439362005,0.7791818004162361,0,1.0,0.40818978057359084
+56,31,0.5598899520140652,1.9,1.3037298151441747,0.0006661682383961591,0.03483119271175797,0.793321177895086,0,1.0,0.39963317338021703
+56,32,0.5474311664660084,1.95,1.3813201384512253,0.0006993959204338372,0.03663508115829275,0.8172340162549899,0,1.0,0.42477055488669474
+56,33,0.5731514201304846,2.0,1.319701689392831,0.0007058926406218617,0.03581809467638334,0.8192261651135442,0,1.0,0.41050473376828156
+56,34,0.5498182778425382,2.0,1.316893424359388,0.0007042371509428924,0.03588286813967084,0.8188094119591447,0,1.0,0.43272759280846057
+56,35,0.5747617424650318,1.95,1.3215145543222189,0.000699156813211575,0.03540315619400863,0.8081312389944059,0,1.0,0.4158724748834391
+56,36,0.5660550833702653,1.95,1.3152692408106037,0.0006967720518985472,0.03521817617479151,0.8071602647113287,1,1.0,0.42018361123421755
+56,37,0.5475298813219094,2.0,1.3820904446717706,0.0006972647761617366,0.036550049009303545,0.8282798515249395,1,1.0,0.42509960440636446
+56,38,0.5488806367716195,2.0,1.3813878734740181,0.0006967507701661961,0.036589459743429795,0.8281797538473846,1,1.0,0.4296021225720648
+56,39,0.5798342136124028,2.0,1.3804315300015317,0.0006960962892963336,0.036346673270288135,0.8280434389432946,1,1.0,0.46611404537467616
+56,40,0.5811554578950495,2.0,1.3811447066889693,0.0006966103948828175,0.036410528329000914,0.8281451089702269,1,1.0,0.47051819298349834
+56,41,0.6128806150509661,2.0,1.3814158632343219,0.0006970435332562001,0.03660817359566477,0.8281838200167735,0,1.0,0.5429353835032202
+56,42,0.6050747477048483,2.0,1.3134791414999551,0.0006852090490946066,0.03473546297783707,0.8182966571581761,0,1.0,0.5169158256828272
+56,43,0.5978433783157452,2.0,1.3083756216895996,0.0006824892704824594,0.03466450846802662,0.8175357844512042,0,1.0,0.49281126105248385
+56,44,0.5860725544536625,2.0,1.3031448512094,0.0006797823642514584,0.035054143262434875,0.8167533984032546,0,1.0,0.4869085148455414
+56,45,0.5910622285324768,2.0,1.308617182475924,0.0006982318860238839,0.03568718403757175,0.8175765114742923,0,1.0,0.470207428441589
+56,46,0.5668553834655696,2.0,1.3035514899452445,0.0006958078292161888,0.03559538060669979,0.8168190467709965,0,1.0,0.48951794488523176
+56,47,0.5885178803151543,1.95,1.308157322869782,0.0006912053243514912,0.035156344241677434,0.8060491170403349,0,1.0,0.495059601050514
+56,48,0.5526677956649533,1.95,1.310567362857666,0.0007078185186085222,0.035391330065882035,0.8064307968998208,0,1.0,0.5088926522165107
+56,49,0.5942645123551431,1.9,1.3222530273372002,0.0007014220138969374,0.03595099331869512,0.7963532301773371,0,1.0,0.5142150411838103
+57,0,0.06462618003147819,1.9,1.3853861083290469,0.0006999131803215762,0.03641916269443991,0.8064000331308095,0,0.16563799509826826,0.19456993997390296
+57,1,0.02483347906339743,1.8499999999999999,1.3862507037671699,0.0007001578425599109,0.03674768746643227,0.7945626994977328,0,0.1654924014069184,0.19545506166876694
+57,2,0.17336746151521118,1.7999999999999998,1.3862518895615665,0.0007001548420507639,0.03668334707592995,0.7820498637797633,0,0.21675972742791588,0.22221190181348277
+57,3,0.20195581091196405,1.7999999999999998,1.3834653093171903,0.0007022799056217891,0.03658758625542824,0.7815752493753223,0,0.2714451154736888,0.24459254907496172
+57,4,0.18255434788619557,1.7999999999999998,1.383545150720352,0.0007016613887383305,0.03674056139652939,0.7815886680530266,0,0.2741772461207018,0.24294483145971618
+57,5,0.2694943796931014,1.8499999999999999,1.384270484331921,0.0007013274622034225,0.036405759032771705,0.7942396564407915,0,0.3769094185049314,0.2291020409704295
+57,6,0.23471521708252052,1.8499999999999999,1.3842385690391157,0.0007018094535267488,0.03659800584722807,0.7942345982380057,0,0.39860704851091,0.25090799226052174
+57,7,0.23683462004321493,1.7999999999999998,1.3848310426138013,0.0007014398635059125,0.03676445416285617,0.7818080247950476,0,0.40509934304849343,0.24931627607939177
+57,8,0.24315360188116125,1.8499999999999999,1.3811736297879735,0.0006972523240883111,0.03642750540208019,0.7937317635509593,0,0.4111613019441348,0.26229693701169104
+57,9,0.2867786502117685,1.9,1.3823330960780025,0.000697629039447879,0.036613361081584306,0.8059222394100212,0,0.447733611939903,0.2922840181193575
+57,10,0.3401340782513523,1.9,1.3821146975113034,0.0006974058685999878,0.03666110073066152,0.8058880072396817,0,0.526329743161984,0.2986739366218623
+57,11,0.2978250293605186,1.9,1.3817098398784915,0.0006972033334377778,0.03643406666937769,0.8058246031118954,0,0.5185374444828609,0.301366838557914
+57,12,0.380203625040262,1.8499999999999999,1.3826003253479966,0.0006976377296093661,0.03654303969000345,0.7939653727119226,0,0.6273863025541571,0.2641636800619974
+57,13,0.40209281830461546,1.8499999999999999,1.2563286602376569,0.0007315516458238224,0.03540790153183796,0.7725544747562861,0,0.6984201981586267,0.27574913013721597
+57,14,0.4329367381804084,1.8499999999999999,1.2592751328928284,0.0007560971073336755,0.03573716715299506,0.7730804075960865,0,0.7818719131876325,0.26729324301785123
+57,15,0.463287528112913,1.8499999999999999,1.2608202841167395,0.0007784938512061957,0.03549468629126036,0.7733592058635527,0,0.846629245006619,0.2821194337008848
+57,16,0.49708443881283604,1.8499999999999999,1.3782159218615027,0.0006995488412029707,0.03652340094223093,0.7932478553031884,0,0.9231653310709097,0.2927276879482404
+57,17,0.4635527279595206,1.8499999999999999,1.3778195373547466,0.0007002025414716745,0.036489869084249435,0.7931830529007895,0,0.9357386527932795,0.2975242228073627
+57,18,0.501594421086001,1.7999999999999998,1.377376530388201,0.0006991728127302737,0.03650542613694092,0.7805329547575828,0,0.9724040042615574,0.3087760646045938
+57,19,0.5150622858027508,1.7999999999999998,1.3798946542418538,0.0006990583890462151,0.036559388622827746,0.7809639686724885,0,0.9897617234774807,0.3305253213725283
+57,20,0.5215857111152935,1.8499999999999999,1.382001184441333,0.0006990764361541305,0.03656917013741938,0.7938678162332566,0,1.0,0.3386190370509782
+57,21,0.542638153191284,1.9,1.3836312960716801,0.000699241244764138,0.036545294872884625,0.8061257162219273,0,1.0,0.34212717730427966
+57,22,0.540923703153318,1.9,1.3833830089887285,0.0006994876496948816,0.03645119082885716,0.8060869862492928,0,1.0,0.3364123438443929
+57,23,0.5305808219337108,1.95,1.382981824395676,0.0006996670303491355,0.03651933176520194,0.8174821600332282,0,1.0,0.36860273977903607
+57,24,0.5392113261958846,2.0,1.3842665838126045,0.0006996849679732405,0.03659380392399209,0.8285898352817433,0,1.0,0.3973710873196154
+57,25,0.5643699714019408,2.0,1.3851198003043013,0.000699726397092488,0.03660171248962368,0.8287109943177315,0,1.0,0.3812332380064692
+57,26,0.5545555548852724,2.0,1.3851819100534002,0.0007001707023370665,0.036765685008542916,0.8287199366918722,0,1.0,0.3818518496175747
+57,27,0.5537366252302279,2.0,1.3848418537792864,0.0007002852022210412,0.036515704047721455,0.8286716951315057,0,1.0,0.3457887507674264
+57,28,0.5462205956731121,2.0,1.3847755525251335,0.000700839290959573,0.036628732265422945,0.8286624391515417,0,1.0,0.3540686522437068
+57,29,0.5106181577083028,2.0,1.384380889548189,0.0007010767354821315,0.03674543539546961,0.828606464681166,0,1.0,0.36872719236100915
+57,30,0.5416691849194036,1.95,1.384293968654697,0.0007003986860280292,0.03646929650457424,0.8176780752193011,0,1.0,0.4055639497313454
+57,31,0.5637850756036057,1.95,1.3115168924676273,0.0006695834122233395,0.03522078806007452,0.8065670451578087,0,1.0,0.3792835853453522
+57,32,0.5152758708534217,1.95,1.3821386880080893,0.0007007764680279999,0.0363732057197079,0.8173566573713318,0,1.0,0.38425290284473906
+57,33,0.5437941261499079,1.9,1.3818278816795073,0.0006998707402976533,0.03661855391835511,0.8058439072842876,0,1.0,0.4126470871663595
+57,34,0.5488415213614002,1.9,1.2806776881037834,0.0006503776997212091,0.03359096232029755,0.7895106796415762,0,1.0,0.42947173787133386
+57,35,0.5386262924439716,1.95,1.2858056956250394,0.0006500600995672376,0.03440051314286642,0.8025178370973586,0,1.0,0.46208764147990544
+57,36,0.5823213775723511,2.0,1.2998359394745465,0.0006504113219345304,0.03430944734254196,0.8162488330496483,0,1.0,0.47440459190783685
+57,37,0.5672723243349477,2.0,1.3106541543431367,0.0006691844341833837,0.034541532009923846,0.8178714659355094,0,1.0,0.49090774778315893
+57,38,0.5547429295111387,2.0,1.3140136117546626,0.0006673560738458082,0.03502767560682157,0.8183708052720812,0,1.0,0.5158097650371288
+57,39,0.5971668474414871,2.0,1.3231011544905187,0.000666088478027714,0.035556602883188695,0.8197172972130137,0,1.0,0.49055615813829023
+57,40,0.5912658345424489,2.0,1.3184051070742369,0.000663238867765453,0.03540975908366202,0.8190214243243124,0,1.0,0.47088611514149614
+57,41,0.581928049958155,2.0,1.3135736235101914,0.0006601934537128529,0.034877838818737635,0.8183032663342408,0,1.0,0.4730934998605162
+57,42,0.5880450447196819,2.0,1.3210678222476657,0.0006756177351439494,0.034643662754268716,0.819419434407155,0,1.0,0.46015014906560586
+57,43,0.5638782098351063,2.0,1.3163240473505855,0.0006728824101507184,0.03459879783287445,0.8187156163560821,0,1.0,0.47959403278368734
+57,44,0.5859686465314338,1.95,1.31960004902826,0.0006710161917519617,0.035175930103097816,0.8078254728320278,0,1.0,0.48656215510477924
+57,45,0.5729586007230856,1.95,1.3240995358285355,0.0006847329466716684,0.03541438622564383,0.8085272685350713,0,1.0,0.5098620024102851
+57,46,0.5556412350938662,2.0,1.3262604127341713,0.0006816268205672935,0.03495562576966865,0.8201882868087764,0,1.0,0.5188041169795538
+57,47,0.5980166666687111,2.0,1.3364720671664096,0.0006800991380361344,0.035494643675920784,0.821688927359673,0,1.0,0.49338888889570354
+57,48,0.5514171992577257,2.0,1.3324305666009573,0.0006780039345252417,0.03492465603681415,0.8210953963106065,0,1.0,0.5047239975257524
+57,49,0.5912162414710751,1.95,1.3395019612868428,0.0006767245506513252,0.035137018854973535,0.8108979519822102,0,1.0,0.504054138236917
+58,0,0.0189139064528447,1.95,1.3818403389548584,0.0006977820046011373,0.03656367000711577,0.8173112199632824,1,0.14678227813632763,0.16733665066104553
+58,1,0.16807720885810076,1.9,1.3857607010357738,0.0007007514137151939,0.03673059849516631,0.8064587691330198,1,0.1670964368901166,0.20412878034018042
+58,2,0.16255518446086661,1.9,1.3816411051897022,0.0006977193179686804,0.036523328980910694,0.8058140093591635,1,0.19072657567269194,0.2208818473059661
+58,3,0.22551034730099329,1.95,1.3822953791518233,0.0006988105110982615,0.03632137963547873,0.817379460889543,1,0.23209048957594747,0.2755805049020477
+58,4,0.2717212151458267,1.95,1.3860398095918653,0.0007000165465512195,0.036746261750514424,0.8179380881552425,1,0.28920847445698195,0.35345941787677976
+58,5,0.2824420563812126,1.95,1.3859770320603118,0.0007000312999950217,0.036701894452384885,0.8179287438233847,1,0.32435032481346837,0.3756730881860843
+58,6,0.2714122018815003,2.0,1.3858821887535782,0.0006999071677058988,0.03641808188846579,0.8288192388340635,1,0.3376761178356757,0.3878058491574332
+58,7,0.3410833303996162,2.0,1.3859070727870004,0.0006999981474014511,0.03670903795704032,0.8288227951153784,1,0.38620892409623453,0.45533253587040806
+58,8,0.32362283281237314,2.0,1.3854859716166845,0.0007008456657279579,0.036743133175785085,0.8287632834249473,1,0.4114557369998823,0.4634684600414008
+58,9,0.34005466308426724,2.0,1.3856332484999458,0.0006997699053378104,0.03638761254382182,0.8287838778650942,1,0.44383082211843866,0.4750744474563058
+58,10,0.33794333874099863,2.0,1.38540160237083,0.0006996742520441845,0.036671602556294196,0.8287509773559781,1,0.485886077798403,0.44529635873879136
+58,11,0.3876467957067062,2.0,1.3852744342086347,0.0006995070175277252,0.03673855225214483,0.828732881067688,1,0.5085773995947911,0.48071945289596574
+58,12,0.3727265680527677,2.0,1.385536395104736,0.0006996390701476539,0.03644006290563105,0.8287700966844522,1,0.5066871606253649,0.5001723460087392
+58,13,0.3892167890608189,2.0,1.38528077505917,0.0006994724348363927,0.03665490351179174,0.8287337712355588,1,0.5363709908242004,0.5155613091037959
+58,14,0.4584147854757276,2.0,1.3849416806753627,0.0006992921847086904,0.036715899128345816,0.8286855856329198,1,0.5825206691247904,0.5846883927527049
+58,15,0.4291603027426558,2.0,1.385350439640683,0.0006998115893007998,0.03639963957364902,0.8287437550600723,1,0.6249510396443548,0.5639329562830462
+58,16,0.4355779519250794,1.95,1.3860571843022242,0.0007003816963638849,0.036690547717539844,0.8179407842540216,1,0.6657247322474691,0.5309601967536394
+58,17,0.4680825683535932,2.0,1.3859682011343049,0.0007006182395838592,0.036578235246645545,0.828831643504855,1,0.705173701975135,0.5533769585451305
+58,18,0.5351067699002375,2.0,1.3860884500282034,0.0007003675499600041,0.03645361205206617,0.8288486313859009,1,0.7532575749281745,0.6126791330965591
+58,19,0.5163392972908268,2.0,1.3798392965060324,0.0007085433353693993,0.036614602390047046,0.827962641867635,1,0.7813989108207076,0.612599109875146
+58,20,0.5526877600575668,2.0,1.3805967531794505,0.0007066648002695884,0.036762259497186554,0.8280699726844597,1,0.8102703270097452,0.6285987641788954
+58,21,0.529277231124409,2.0,1.3845226687057373,0.0006994656861068185,0.03643165131576628,0.8286261413527102,1,0.8527521194964592,0.593921277752751
+58,22,0.613825635593939,1.95,1.3852020669303937,0.0007009586238025075,0.03662786658903887,0.8178135828944737,1,0.9211234688898968,0.6512541601266006
+58,23,0.590380732089953,1.95,1.3848870573875367,0.0006994632078183396,0.03647865459911148,0.8177661977906223,1,0.9366299950986993,0.6524291135015776
+58,24,0.6020648591630883,1.9,1.3842630050062408,0.000699314928215795,0.036615724888738724,0.8062244480759592,1,0.9640310316634028,0.6548414883257571
+58,25,0.6626576027122653,1.95,1.3833777707327033,0.000699072416265557,0.036361138164150444,0.8175410524168212,1,1.0,0.7088586757075508
+58,26,0.634420830331159,1.95,1.3839345709965434,0.000700441942976976,0.03640810600737028,0.8176245027693021,1,1.0,0.7147361011038633
+58,27,0.61643795986539,1.9,1.382989921639111,0.0007004574816440472,0.03657085595162694,0.8060258383383312,1,1.0,0.6881265328846331
+58,28,0.6602544768797116,1.95,1.3838775746252658,0.00069993247883352,0.036530032670802945,0.8176158516773366,1,1.0,0.7341815895990386
+58,29,0.6249589463546319,1.95,1.3840442125567942,0.0006992940121275374,0.036501862647821605,0.817640509042521,1,1.0,0.7165298211821064
+58,30,0.6371531754970543,1.9,1.3846234126788939,0.0006991945575348366,0.03664987878586886,0.8062807095207384,1,1.0,0.7238439183235144
+58,31,0.6631330793158938,1.95,1.3837213650739202,0.0006988502767848998,0.03633279599614869,0.8175922337380745,1,1.0,0.7437769310529793
+58,32,0.6879513002538221,1.95,1.3837368759817328,0.0006984789080845362,0.03633612772994268,0.8175944361813947,1,1.0,0.7931710008460735
+58,33,0.6579985002405441,1.95,1.3845194929706848,0.0006995298221094022,0.03665628719981105,0.8177114350954409,1,1.0,0.7933283341351468
+58,34,0.6393356616026604,1.9,1.3836617222956258,0.0006993489961994533,0.03666421354857815,0.8061305050819708,1,1.0,0.7644522053422014
+58,35,0.6956922579528658,1.95,1.3842625968850368,0.0006991176058347027,0.036718213785175535,0.8176730162727388,1,1.0,0.8189741931762193
+58,36,0.7123414582652486,1.95,1.3745913911543552,0.0006978397211614036,0.03647198801830743,0.81622638025307,1,1.0,0.8744715275508286
+58,37,0.6874137196646992,2.0,1.3725944314823004,0.0006977101228784256,0.036398535411390785,0.8269251254617404,1,1.0,0.891379065548997
+58,38,0.6709087754652528,1.95,1.373814359117434,0.0007013813202274874,0.036533439887615454,0.8161108591312836,1,1.0,0.8696959182175095
+58,39,0.7317766985196013,2.0,1.3730514204337507,0.000698998505799998,0.036330699030113926,0.8269908886082451,1,1.0,0.9392556617320038
+58,40,0.689187073599948,2.0,1.3714272388309836,0.0006990951662044959,0.03627431261365769,0.8267584099018614,1,1.0,0.9306235786664934
+58,41,0.7305646476266554,1.95,1.3706878608117672,0.0006966770893041005,0.03626224330318936,0.8156397746978581,1,1.0,0.9685488254221846
+58,42,0.75,1.95,1.3747308985092903,0.0006962559645452208,0.03649866276474471,0.8162468304670906,1,1.0,1.0
+58,43,0.72,2.0,1.372729922085573,0.0006959150352465779,0.036293145467800374,0.8269440022320068,1,1.0,1.0
+58,44,0.74,1.95,1.3741982935607941,0.0006995902919677215,0.03654605252737632,0.8161679332438512,1,1.0,1.0
+58,45,0.72,1.95,1.3775758642832754,0.0006987399358786476,0.03649388399292508,0.8166739009604893,1,1.0,1.0
+58,46,0.75,1.9,1.378169440115442,0.0007015463675759271,0.03649315913372715,0.8052713942985086,1,1.0,1.0
+58,47,0.7049785846189328,1.9,1.3761282984532932,0.0007018225623041793,0.036444484650789075,0.8049512114268027,1,1.0,0.983261948729776
+58,48,0.75,1.8499999999999999,1.3758991848909203,0.000699507950252805,0.03634845159201998,0.7928676256739223,1,1.0,1.0
+58,49,0.6984964865897766,1.8499999999999999,1.373614445696303,0.0006995285509244257,0.03641870394458163,0.7924921619618107,1,1.0,0.9616549552992553
+59,0,0.18580198846744755,1.7999999999999998,1.3853261831670949,0.0006997944173032498,0.036418871647596995,0.781891914964777,0,0.21274264976019902,0.1690164285445597
+59,1,0.2023283167644901,1.7499999999999998,1.384566691871821,0.0006989736818439425,0.036716266732232834,0.768696343003961,0,0.27935147512537717,0.16862575571446403
+59,2,0.24747280498271074,1.7999999999999998,1.3847343783403216,0.0006990963385599102,0.03657380718178694,0.7817907353630655,0,0.37636882296646323,0.1564175859870848
+59,3,0.28398228224640754,1.7999999999999998,1.3846145090269182,0.0006990840349525501,0.036509390103690635,0.7817702814907845,0,0.4704253398357937,0.15270715437363339
+59,4,0.3026003589209755,1.7999999999999998,1.3847035939328705,0.0006994994355189973,0.03672440712924947,0.7817856212170601,0,0.530714182802608,0.16771561933310777
+59,5,0.27903914216765024,1.8499999999999999,1.384728750504777,0.0006997835732880515,0.036455996610480546,0.7943140331081636,0,0.546903872060362,0.20092531114501821
+59,6,0.363279533936045,1.7999999999999998,1.3833712589496887,0.0007010940939416406,0.036571576206573475,0.7815587882117057,0,0.6570055179525198,0.16825775585012356
+59,7,0.32588651226508397,1.7999999999999998,1.3663266152512585,0.0006873532466537002,0.03615838530652715,0.7786301493291377,0,0.6736960894118664,0.1880269216677913
+59,8,0.3639525896620165,1.7499999999999998,1.3678792974352598,0.0006892627065369485,0.036350113121441964,0.7657125078246048,0,0.7033184991009135,0.20875063340550348
+59,9,0.38501783654593447,1.7499999999999998,1.2517807879390357,0.0008464915668036827,0.036268904172449726,0.7443065609513284,0,0.7342482655400047,0.23772843443310865
+59,10,0.44123823204353135,1.7499999999999998,1.265793535786991,0.0008297739385393539,0.035630534712846045,0.7469579258821363,0,0.8185105382078661,0.2461133892012832
+59,11,0.4644372513328678,1.7499999999999998,1.3791824823435956,0.0007000614413434279,0.03656986097630048,0.767738021564744,0,0.8876175125295513,0.23130082107015748
+59,12,0.5018281853999833,1.7499999999999998,1.3786739670836912,0.0007004580694687641,0.036520124239943344,0.7676474741225637,0,0.9755694178039392,0.23866806092802514
+59,13,0.5141569607994415,1.7499999999999998,1.3780145524678302,0.0007008225494311075,0.036422176413915555,0.7675299670560607,0,1.0,0.21385653599813828
+59,14,0.5030333114936638,1.7999999999999998,1.3778394016246591,0.0007021803119694795,0.036575505246736015,0.7806132649957085,0,1.0,0.2101110383122126
+59,15,0.4689526891800931,1.8499999999999999,1.3773588364802132,0.000702613694062655,0.03640688805114388,0.7931082588993037,0,1.0,0.2298422972669769
+59,16,0.5194165539645624,1.7999999999999998,1.3772373121235761,0.0007011286587926694,0.036484761648497926,0.7805097756912576,0,1.0,0.23138851321520798
+59,17,0.4692870881410676,1.7999999999999998,1.3767627049579467,0.0007025135553353166,0.036613748789751197,0.7804289325197328,0,1.0,0.2309569604702253
+59,18,0.5165090966062402,1.7499999999999998,1.3763715377237458,0.0007011166189365616,0.03629624325392507,0.7672367838687281,0,1.0,0.22169698868746723
+59,19,0.4682584205774787,1.7499999999999998,1.3757751196958883,0.0007023276788622494,0.03653499038264158,0.7671306885675049,0,1.0,0.22752806859159552
+59,20,0.4911357734754754,1.6999999999999997,1.3753524726778943,0.0007009999233765628,0.036517687731999524,0.7533862082925342,0,1.0,0.2371192449182512
+59,21,0.49734320459863013,1.6999999999999997,1.378233586648623,0.0007004849087511852,0.036559159077450526,0.75392092413419,0,1.0,0.25781068199543355
+59,22,0.48407106724363985,1.7499999999999998,1.3806925886733885,0.0007001845781792283,0.036363394570028615,0.7680072332162726,0,1.0,0.2802368908121328
+59,23,0.4881068096434298,1.7999999999999998,1.380443507220472,0.0006992689888850024,0.03643965393972322,0.7810579126001664,0,1.0,0.2936893654780993
+59,24,0.5268407712921382,1.8499999999999999,1.3801173495476606,0.0006984403897701292,0.03649294911676643,0.7935591632150943,0,1.0,0.2894692376404607
+59,25,0.5141074232963364,1.8499999999999999,1.3798406806722987,0.0006988762553776494,0.03650591668934544,0.7935139776366056,0,1.0,0.3136914109877878
+59,26,0.49418651659605606,1.9,1.3818989852411458,0.0006989379768535282,0.036606452705037026,0.8058547400034903,0,1.0,0.31395505532018675
+59,27,0.5423516919285574,1.95,1.3815601616837918,0.0006982456209707997,0.03657919087825607,0.8172695204429511,0,1.0,0.30783897309519126
+59,28,0.5160381615373595,1.95,1.381606552577708,0.0006989252130441651,0.03662444101127098,0.8172766513340314,0,1.0,0.32012720512453174
+59,29,0.5241162585411416,1.9,1.38323634008411,0.0006990709724245161,0.03650493854322791,0.8060639290185687,0,1.0,0.34705419513713875
+59,30,0.551069743973182,1.95,1.3843692436429471,0.0006992533074118513,0.03665458919634816,0.8176889555029399,0,1.0,0.33689914657727316
+59,31,0.5274069886367181,1.95,1.384310822779855,0.0006995844851039561,0.0367092606225543,0.8176803450689055,0,1.0,0.35802329545572703
+59,32,0.5391504958663238,1.9,1.3851795252251504,0.0006997009062351792,0.03636280885105949,0.806367713249256,0,1.0,0.39716831955441245
+59,33,0.5622897999623683,1.95,1.3857371230972007,0.0006998557517604605,0.03663361224168822,0.8178929612465453,0,1.0,0.37429933320789405
+59,34,0.5583408177110495,1.95,1.385619253855617,0.0006999268503649265,0.03671773451910579,0.8178754258457381,0,1.0,0.36113605903683127
+59,35,0.5098522146386778,2.0,1.3853818681429146,0.0006999904127567029,0.03642397952027177,0.8287482663429968,0,0.9888839290820793,0.3809954766861535
+59,36,0.5594605847228062,1.95,1.3852134627335346,0.0006996410188784285,0.03653389255156701,0.8178148881712891,0,1.0,0.3648686157426873
+59,37,0.5552715392197164,1.95,1.3848754859480426,0.0006996340820441002,0.0366815629474159,0.8177645242839459,0,1.0,0.3509051307323877
+59,38,0.5057192078122476,2.0,1.384453123860692,0.0006996344172724338,0.036458447791143066,0.828616313344553,0,1.0,0.3523973593741584
+59,39,0.5101753685899676,1.95,1.3842578605773073,0.0006991691122640915,0.03652764712215764,0.8176723255222627,0,1.0,0.36725122863322535
+59,40,0.5304094412119157,2.0,1.3838649844427429,0.000698715079369997,0.03663563361924229,0.8285325135331344,0,1.0,0.36803147070638553
+59,41,0.5471237382526408,2.0,1.3846761610521312,0.0006990539426645137,0.036730805880060315,0.8286478199849318,0,1.0,0.32374579417546945
+59,42,0.539484765278756,2.0,1.384300458882195,0.000698898056447065,0.03655225082929773,0.8285944229377553,0,1.0,0.33161588426252003
+59,43,0.527367239075021,2.0,1.384660548136662,0.0006994144187479853,0.036481583132021364,0.8286457054556232,0,1.0,0.3578907969167366
+59,44,0.5114585110279481,2.0,1.3852585423348134,0.0006995496483918807,0.03674396036717158,0.8287306375493971,0,1.0,0.37152837009316036
+59,45,0.5516092839129982,2.0,1.3850131308641807,0.0006992993210381386,0.03657469326565685,0.8286957309030399,0,1.0,0.3386976130433273
+59,46,0.5082245200835311,2.0,1.3846707130941693,0.0006991315692249505,0.03648880175860419,0.8286470684692334,0,1.0,0.3607484002784372
+59,47,0.5559173098819628,1.95,1.3843612071163591,0.000698852479086342,0.0367326549568318,0.8176876379583202,0,1.0,0.3530576996065421
+59,48,0.5482265356279681,1.95,1.3838864589313773,0.0006985972135214195,0.03668261214448222,0.8176167782747696,0,1.0,0.32742178542656
+59,49,0.5221897596741673,2.0,1.3833575436311378,0.0006983740837522744,0.03651765497413327,0.8284603143110886,0,1.0,0.3406325322472241
+60,0,0.02510832026117621,1.95,1.3820326135087282,0.0006987535341298203,0.036563317707660505,0.8173402175051135,1,0.16373275978249496,0.16538405449392735
+60,1,0.04298842525742971,1.9,1.3853245072065627,0.0007010621058480402,0.03672278638582122,0.8063907745939791,1,0.17448751159836887,0.17731140206027388
+60,2,0.14242275911373342,1.95,1.3853529686630066,0.0007009219067489319,0.03671402728540194,0.8178360544081755,1,0.21666904632297426,0.1525171352818124
+60,3,0.2267244322134831,1.95,1.38560279071628,0.0006996939992030968,0.03636526672963743,0.8178729041929422,1,0.2646198754697792,0.2362549400852381
+60,4,0.1973031952329479,1.95,1.3858958998367936,0.0006999880913061477,0.03674076810561365,0.817916648324353,1,0.3124033407313786,0.20780619646798815
+60,5,0.2162654459384595,1.9,1.386064808966906,0.0007000444052212081,0.03670164143922436,0.8065060101315419,1,0.3357306328595795,0.20657730931542573
+60,6,0.2654142660572578,1.95,1.386045905903912,0.0007000736274056793,0.03654938120136829,0.8179390129884266,1,0.376154659778738,0.24984134048587542
+60,7,0.2432440156808245,1.95,1.3859695237635647,0.0006999783095841458,0.03676154916319149,0.81792760989242,1,0.4157958902316236,0.22308553196058345
+60,8,0.24952183295906,1.9,1.3808721896551415,0.0007004901352807057,0.036526304121893456,0.8056945304104652,1,0.44699107013080996,0.20241801635578663
+60,9,0.3057181505916924,1.95,1.381347494501725,0.0006998189841862932,0.036494723359045814,0.8172382285673416,1,0.49230404801094263,0.2293217712910511
+60,10,0.35227006665958793,1.95,1.3820277467300783,0.0006992280438036188,0.03664629443217702,0.8173396326017814,1,0.5495022652084767,0.2748972019206576
+60,11,0.38880372318637735,1.95,1.3825193232396233,0.0007006726968987311,0.03660466365914221,0.8174134425681545,1,0.5932425603693636,0.3383556634621063
+60,12,0.40700150442999633,1.95,1.3827379017899935,0.0007020434193619128,0.03652512909692348,0.8174464719707215,1,0.6330665973406642,0.37924955164576885
+60,13,0.40580923818324766,2.0,1.3829404910022034,0.0006981622957606126,0.03669622454354189,0.8284009770363214,1,0.6814222899810963,0.3774677406360303
+60,14,0.473442017908258,2.0,1.3835094141065931,0.0006989550891989754,0.03667920622003432,0.8284820612494475,1,0.731887073205984,0.4356239620862148
+60,15,0.4456930844772166,2.0,1.3862254383857362,0.0007002638465128559,0.036456798649849714,0.828868034064239,1,0.7838342610486195,0.40719793352589595
+60,16,0.48722028431505,1.95,1.3861270281957043,0.0007003626222718518,0.03669244343449499,0.8179511790521753,1,0.8096079581003687,0.4112570035830084
+60,17,0.5047907126643497,1.95,1.384856543826602,0.0007020436532344041,0.036621510581302766,0.8177624195875597,2,0.8299063860780144,0.4427605274438131
+60,18,0.45879623887635546,2.0,1.3775306628042165,0.0006940632009774944,0.03622138143655499,0.8276294184889191,2,0.8535139839197592,0.39130215102817256
+60,19,0.5118538427864318,1.95,1.3846490556544107,0.0007011047711877783,0.03662498494060403,0.8177312163250183,2,0.8924661898768695,0.41622455611894627
+60,20,0.5295802180590669,1.95,1.3787486868047902,0.0006950980683936065,0.03646384812674143,0.8168483382736521,2,0.9242616681944162,0.4329185026043344
+60,21,0.5500134796803738,2.0,1.3775040672314103,0.0006943925387866336,0.03644549929140466,0.8276257183265907,2,0.951979038937221,0.4640728803516179
+60,22,0.5961516093617675,2.0,1.3763020652953104,0.0006938204573939735,0.03644415923050584,0.8274540081690536,2,0.981105562065376,0.5123646151187234
+60,23,0.617525327876915,2.0,1.375750551484286,0.0006930531491556055,0.036431324133257295,0.8273750330031346,2,1.0,0.5584177595897166
+60,24,0.5533580430405333,2.0,1.3748809039730066,0.0006923796375983595,0.03627734502928965,0.8272505972228351,2,1.0,0.5111934768017775
+60,25,0.6438354383718159,1.95,1.377074895239852,0.0006942985502496534,0.036254437237213666,0.8165975548248696,2,1.0,0.546118127906053
+60,26,0.5567461247420465,1.95,1.378791969261735,0.0006949923592520931,0.03646545862897919,0.8168547819202181,2,1.0,0.5224870824734883
+60,27,0.6188739844781093,1.9,1.3804294320203843,0.000696553535917446,0.036525873376792445,0.8056239740502856,2,1.0,0.5629132815936975
+60,28,0.6322345544438055,1.9,1.3795294072387905,0.0006956331412681688,0.03639615532439551,0.8054827083975428,2,1.0,0.6074485148126848
+60,29,0.6757094321900928,1.95,1.3772430376705167,0.0007118047277241356,0.036761533121917135,0.816627978545204,2,1.0,0.652364773966976
+60,30,0.6281500694056058,1.95,1.3760882494743454,0.0007127642044678123,0.03672665749260866,0.8164552771316488,2,1.0,0.6605002313520191
+60,31,0.5835588085847077,1.9,1.3784907931771075,0.0007100339249424229,0.03671622685404065,0.8053244418493143,2,1.0,0.6118626952823589
+60,32,0.6680928628160142,1.8499999999999999,1.3797069752280302,0.0007079172124061023,0.03673324939501762,0.7934950321308621,2,1.0,0.6269762093867141
+60,33,0.6458998267066436,1.8499999999999999,1.378114341132867,0.0007090212067141304,0.03666679093843627,0.7932343022005157,2,1.0,0.6529994223554783
+60,34,0.5866075607661119,1.7999999999999998,1.3773413069573124,0.0007113457773157013,0.036720375689308485,0.7805310914221328,2,1.0,0.6220252025537061
+60,35,0.6739897135350034,1.7499999999999998,1.3783014736231292,0.0007089688950538657,0.036735198566613544,0.7675840644216523,2,1.0,0.6466323784500113
+60,36,0.6784897231849407,1.7499999999999998,1.3765926426194688,0.0007102738746936023,0.03671318610859266,0.7672795377285146,2,1.0,0.6616324106164692
+60,37,0.6874186035409626,1.7999999999999998,1.374807195972734,0.0007112489626907707,0.03652506502335665,0.7800966505620439,2,1.0,0.6913953451365421
+60,38,0.5976788963638672,1.8499999999999999,1.373062679257514,0.0007117778785560197,0.03660468075151773,0.7924054402802546,2,1.0,0.658929654546224
+60,39,0.6582862604273421,1.7999999999999998,1.3745593145322428,0.0007083750848135755,0.036632337712034016,0.7800531384309454,2,1.0,0.6942875347578066
+60,40,0.5994605517553039,1.7999999999999998,1.3737186999510236,0.0007118620197039132,0.03663750374908765,0.7799100771029562,2,1.0,0.6648685058510128
+60,41,0.660924637546555,1.7499999999999998,1.374408839059876,0.000708761251040801,0.03660557133764638,0.7668888257579767,2,1.0,0.7030821251551828
+60,42,0.5974299949184727,1.7499999999999998,1.3733275253902644,0.0007117450828762757,0.03648915980194123,0.766696530601322,2,1.0,0.6580999830615758
+60,43,0.6857862973533309,1.6999999999999997,1.3736467310266167,0.0007086790269437343,0.03643400455960755,0.753072008271309,2,1.0,0.685954324511103
+60,44,0.6695301562457626,1.6999999999999997,1.371709175318733,0.0007101518718567765,0.0364419092154636,0.7527120826135054,2,1.0,0.7317671874858752
+60,45,0.7018571853072136,1.7499999999999998,1.3708140756194247,0.0007130308599653995,0.03658220772284475,0.7662471016604846,2,1.0,0.7395239510240457
+60,46,0.6574267422364721,1.7499999999999998,1.3694595387321515,0.0007141470621757287,0.03659276503408977,0.7660047998465342,2,1.0,0.7580891407882405
+60,47,0.6621769689979149,1.6999999999999997,1.3742881493593408,0.0007109663296309791,0.0365120201029911,0.7531921139636077,2,1.0,0.7739232299930497
+60,48,0.7269723744027593,1.7499999999999998,1.3776492672287945,0.0007085768290232563,0.03663178476615253,0.7674675513617518,2,1.0,0.8232412480091978
+60,49,0.6833605824768034,1.7499999999999998,1.3801090623146097,0.0006994536403181122,0.03662056835200752,0.7679029882799737,2,1.0,0.8445352749226778
+61,0,0.13340434445054838,1.6999999999999997,1.3814109250657143,0.0006985372808527605,0.03656867605010434,0.7545091999960841,1,0.12431581739590282,0.2122600583072909
+61,1,0.029805733703857945,1.6499999999999997,1.3817823707331582,0.0006996443119558482,0.03666157610753598,0.7404255750274028,1,0.16739150642534434,0.17616377044573409
+61,2,0.17698803209664402,1.5999999999999996,1.3851492305378503,0.0007013131893527523,0.03658562489176959,0.726423493854756,1,0.18825996158011854,0.20561349154865527
+61,3,0.19748193585040838,1.5999999999999996,1.381507536374967,0.000699617011375844,0.036607363214025884,0.7256984994982438,1,0.212881867102922,0.24109729669746527
+61,4,0.1721309344212541,1.5999999999999996,1.3861719758047375,0.0007000926394145567,0.036657160543363605,0.7266262145017764,1,0.24790148563226017,0.2099011338945001
+61,5,0.22393082408169332,1.5499999999999996,1.3862175832038228,0.0007001616129611345,0.03662175173023607,0.7114871859603252,1,0.276000756024409,0.2451017389064324
+61,6,0.2751069647447161,1.5499999999999996,1.3861346929651492,0.0007001510365578299,0.036694407589965825,0.7114701661777255,1,0.32357751410378255,0.3189198636773436
+61,7,0.28016056518163324,1.5499999999999996,1.386151055424614,0.0007000922701001066,0.03659828929067825,0.711473500930783,1,0.33080564378753746,0.3594610255553942
+61,8,0.26617725050139124,1.5999999999999996,1.3860279544945426,0.0007000623389710294,0.03674812559730556,0.7265975930559126,1,0.33936270854303263,0.3681072236139272
+61,9,0.30910247862558843,1.6499999999999997,1.3860844749783365,0.0007000330492305954,0.036387920870793414,0.741251713781408,1,0.3674223826128403,0.4071117519348411
+61,10,0.3019646184578888,1.6499999999999997,1.3850507519591801,0.000701355945637252,0.036693593375273996,0.7410539064461721,1,0.38901385872934324,0.4211969165538384
+61,11,0.37061516111093484,1.6999999999999997,1.384813709611772,0.0007015819127432673,0.03669359945199695,0.7551400609369168,1,0.43239989882467667,0.492184005270214
+61,12,0.4124940053362391,1.6999999999999997,1.3850013830410222,0.000699368968417276,0.03640785502456545,0.7551739424733899,1,0.4921204033152541,0.5521528133671249
+61,13,0.3988748792797441,1.6999999999999997,1.3852671876981617,0.0006997816296309292,0.03671674880490402,0.7552232353388394,1,0.5288575980260929,0.5577728002310229
+61,14,0.4733961578764732,1.7499999999999998,1.3849259775862703,0.0006997756350451077,0.036634730391833674,0.7687605037773162,1,0.5917208655570225,0.6223593721788808
+61,15,0.514521104440821,1.7499999999999998,1.3851239499534147,0.0007001576074140052,0.036487559837001894,0.7687958308055718,1,0.6479652476217577,0.6844500179737261
+61,16,0.4820629448241408,1.7499999999999998,1.373719048458898,0.0007116831108868265,0.03663386003990251,0.7667665340133267,1,0.685981728042449,0.6589008453572041
+61,17,0.5348931867439686,1.6999999999999997,1.373123054179434,0.0007145100182216704,0.03667582571380388,0.7529767844364423,1,0.709384369770508,0.7037981294525512
+61,18,0.5059639243883333,1.6999999999999997,1.3710754327239618,0.0007157728430707711,0.03669597373131566,0.7525961942294679,1,0.7366076616854155,0.6710695323805571
+61,19,0.5100258001144523,1.6499999999999997,1.3702402624462762,0.0007188435716305213,0.036408691355285835,0.7382085057941189,1,0.7687597354756902,0.6417396864139205
+61,20,0.5356392309416291,1.6999999999999997,1.3687148119533135,0.000722141053667814,0.0367645370683717,0.7521587703005117,1,0.789508090997657,0.6661199818085543
+61,21,0.5333553147830481,1.6999999999999997,1.3709466812614899,0.000717569477832255,0.036718575301759024,0.7525728896426415,1,0.8259802548888231,0.6432107094250626
+61,22,0.5810196511613446,1.7499999999999998,1.3846036054145605,0.0007000794619187125,0.03639145875231884,0.7687032994631418,1,0.8434952522192396,0.6787385009121621
+61,23,0.6226445404492296,1.7499999999999998,1.3847179251870263,0.0006995573730530582,0.03651428398865293,0.7687234390851253,1,0.8884532038087022,0.7242108630858285
+61,24,0.6306577380787461,1.7499999999999998,1.3850071197402913,0.0007004264859603259,0.03675395429876015,0.7687751593147619,1,0.9052804900030867,0.7618184735917044
+61,25,0.612894265548299,1.7999999999999998,1.3848816976912368,0.000699776364788558,0.036431870366823556,0.781816098111792,1,0.9133689225641344,0.7584889884088174
+61,26,0.6281348889531171,1.8499999999999999,1.384324240391868,0.0006997755513096931,0.03646660987277421,0.7942479340593828,1,0.9394702569573841,0.7744892872338779
+61,27,0.647328494303792,1.9,1.3835856765929868,0.0006997645943842502,0.036504551672554474,0.8061187499788482,1,0.9821192567295095,0.7816026387066276
+61,28,0.6332485509817666,1.95,1.382654691861354,0.0006996917929210114,0.03652340199861133,0.8174333525194268,1,1.0,0.7441618366058886
+61,29,0.6239294376400203,2.0,1.3837517498315457,0.0006993637688013441,0.03652419314009452,0.8285166104300837,1,1.0,0.7130981254667342
+61,30,0.6339587351622963,2.0,1.3842929059986204,0.0006991251769800772,0.03649903818877215,0.8285934147456954,2,1.0,0.7131957838743207
+61,31,0.676613060160185,2.0,1.3762103650843451,0.0007086582504509068,0.03658122465143369,0.8274451524933133,1,1.0,0.7553768672006165
+61,32,0.6511987226097394,2.0,1.3848429925024244,0.0006993317780480593,0.03673233212760664,0.8286715860769656,1,1.0,0.7706624086991314
+61,33,0.7006890925959595,1.95,1.384039166758999,0.0006990409118534284,0.03648031405305534,0.8176396812130851,0,1.0,0.835630308653198
+61,34,0.6943792911796126,1.95,1.3829910815450002,0.0006998685014437463,0.03669147547345934,0.8174836013635159,0,1.0,0.8479309705987085
+61,35,0.6789643605680853,2.0,1.3827667442109353,0.000698824159453156,0.0364763523483489,0.8283764652274086,0,1.0,0.8632145352269508
+61,36,0.6828332663950039,2.0,1.3817777906095507,0.0006987104861201993,0.03649923871601444,0.8282357887794274,0,1.0,0.8761108879833461
+61,37,0.6882514954967418,2.0,1.3804502256594473,0.0006984692847803681,0.036466343131189446,0.8280467767154586,0,1.0,0.8941716516558059
+61,38,0.7073207494718483,2.0,1.3788578547031802,0.0006981556309308236,0.036543796960696075,0.8278198386153162,0,1.0,0.8577358315728275
+61,39,0.6843655113083067,2.0,1.3806553291590171,0.000697756416621027,0.036385551079548176,0.8280757754997068,0,1.0,0.8812183710276886
+61,40,0.6904802854330758,1.95,1.3789707889049,0.0006971744533499507,0.03632287279574232,0.8168821851889471,0,1.0,0.9016009514435862
+61,41,0.6950611006785659,2.0,1.3767637764738723,0.0006964448547404094,0.036560139551125886,0.8275206676587787,0,1.0,0.9168703355952194
+61,42,0.7193697298634549,2.0,1.3747609813335042,0.0006957809616243029,0.036494152172685944,0.8272344309805094,0,1.0,0.9312324328781831
+61,43,0.720518683861645,2.0,1.3751227776751835,0.0006944956627377814,0.03648083126119446,0.8272857646365744,0,1.0,0.9350622795388165
+61,44,0.7045619566918051,2.0,1.3748254102034145,0.0006933265607287672,0.03634442035322821,0.8272429372817348,0,1.0,0.9485398556393505
+61,45,0.735007468405612,2.0,1.3726540800949332,0.000692305909002628,0.03607517911904935,0.8269321153555518,0,1.0,0.9833582280187065
+61,46,0.72,2.0,1.371958750080469,0.0006911312079174417,0.03618246880832826,0.8268322439163796,0,1.0,1.0
+61,47,0.72,2.0,1.3696486759019524,0.0006899292947834929,0.03625762326740868,0.8265008914471319,0,1.0,1.0
+61,48,0.72,2.0,1.3670415671812854,0.000688698752117109,0.03633287076491734,0.8261263676357429,0,1.0,1.0
+61,49,0.74,2.0,1.3641326660292852,0.0006872523934551508,0.03629947574513316,0.8257077156663538,0,1.0,1.0
+62,0,0.07960767279781175,2.0,1.385244423782431,0.0006998139034417358,0.0364101323832561,0.8287287086222559,0,0.1945371140512304,0.17264275725773198
+62,1,0.20849241911712224,1.95,1.386074072214222,0.0007001108613269977,0.03673128566715454,0.8179432184200455,0,0.29205627780301235,0.13889969331972424
+62,2,0.22930127872096123,1.95,1.3845282888532233,0.0006990873255666992,0.03666952871016408,0.8177126142852604,0,0.3685909866652845,0.13954961351615805
+62,3,0.22836383842713928,1.95,1.3846792548793359,0.0006993746113342784,0.03640185350627609,0.8177352016414013,0,0.3971031278913268,0.16507529090202855
+62,4,0.24030200859365422,2.0,1.3845220719974034,0.0006991595318670481,0.036689500896155705,0.8286259696663797,0,0.41690190847034786,0.17847081735171688
+62,5,0.23225359303731447,2.0,1.3860641203329334,0.0007000205677445213,0.036740115120519216,0.828845081535917,0,0.4367390191177268,0.19185995130074587
+62,6,0.24890560758771224,2.0,1.3861484004655804,0.0007000730577538554,0.03637705883641049,0.8288570521528011,0,0.45045521688016377,0.22907840278548913
+62,7,0.3247704101152399,2.0,1.3836009691102777,0.0007009828817712866,0.036641468046799,0.8284956470430122,0,0.5387469624264608,0.23090541714885188
+62,8,0.36470416115257837,2.0,1.3833992876608887,0.0007012809045859736,0.036719415022686865,0.8284670728079611,0,0.6306113389396881,0.2081987519223436
+62,9,0.37713405635271424,2.0,1.2661178789411818,0.0008575328278421253,0.036777159977931795,0.811201005529821,0,0.6892997132502428,0.20471390350872382
+62,10,0.4052186854053219,2.0,1.2641158529438514,0.0008608061241123988,0.03684948447845957,0.8108952002062852,0,0.7533873396444409,0.21287916515848507
+62,11,0.45055281435646805,2.0,1.2620691808548152,0.0008637969522701067,0.03661880194085788,0.810582073664886,0,0.8522349460752808,0.1988627864211856
+62,12,0.4338201448965281,2.0,1.329652453060252,0.0007154155436425258,0.03629656815542068,0.820697944302289,0,0.8809221635453465,0.2048375982612982
+62,13,0.4966051283493895,2.0,1.365390786250723,0.0006995415483960948,0.036253606523187945,0.8258922374478623,0,0.9701720932537313,0.19512097015965668
+62,14,0.461807538005445,2.0,1.3010480964375533,0.0007034391729099808,0.03509487198226098,0.8164464649669443,0,0.9874897066196178,0.22270551785865958
+62,15,0.47410622980881134,1.95,1.3687317477373262,0.0006966323481046716,0.03596763336756997,0.81534543587404,0,0.9992015408032273,0.24808537829173483
+62,16,0.47722309624923015,2.0,1.3674999639302803,0.0006952055201681162,0.03625618358542822,0.8261940713497593,0,0.9994149973631129,0.25819032434661654
+62,17,0.5015969901285198,2.0,1.367035027657415,0.0006938664246089613,0.03616018588436833,0.8261269128728569,0,1.0,0.2719899670950659
+62,18,0.4804080860496779,2.0,1.3718871896433367,0.000694202809749898,0.03648828840981447,0.8268228772318635,0,1.0,0.26802695349892625
+62,19,0.5219626458502704,1.95,1.3709608193691718,0.0006929882722510078,0.03637040852487265,0.8156797071606421,0,1.0,0.2732088195009014
+62,20,0.50449334118437,1.95,1.370530824041765,0.0006940643870745823,0.03606880791013416,0.8156153738363261,0,1.0,0.2816444706145665
+62,21,0.5100535867185497,2.0,1.3747001198074287,0.0006946525290225873,0.036277057149826174,0.8272254100634766,0,1.0,0.3001786223951655
+62,22,0.5356537279452422,2.0,1.3781393646202447,0.000695501786687164,0.03638211891105607,0.8277166482327054,0,1.0,0.2855124264841406
+62,23,0.48369711265185,2.0,1.3778413839151347,0.000695972639834993,0.03651510032290217,0.8276742858138161,0,1.0,0.2789903755061666
+62,24,0.4925892638721434,1.95,1.3770751152686638,0.0006950489367929568,0.036510855785897384,0.8165978125423262,0,1.0,0.3086308795738113
+62,25,0.5357171140699492,2.0,1.3759527749273313,0.0006939490874509362,0.036388428799788666,0.8274041696649502,0,1.0,0.2857237135664972
+62,26,0.523378657738579,2.0,1.3757884933754547,0.000694486003527188,0.0364059846448652,0.8273808612947142,0,1.0,0.2779288591285965
+62,27,0.5236760175787581,2.0,1.3759323308636706,0.0006954670356314327,0.036189722108047814,0.8274016836511692,0,1.0,0.24558672526252695
+62,28,0.5234519993545582,2.0,1.375448043921743,0.0006960051509598671,0.03634989247478234,0.8273326663119759,0,1.0,0.24483999784852736
+62,29,0.5145117191386112,2.0,1.3748480896510802,0.0006963944132161771,0.036439856122560954,0.8272470552757267,1,1.0,0.21503906379537044
+62,30,0.5150692168275268,2.0,1.3744920882450977,0.0007046896813069988,0.036546781974153425,0.8271985448962719,1,1.0,0.25023072275842273
+62,31,0.5458132524211317,2.0,1.3769027051029976,0.0007028340307339705,0.03652787435972018,0.8275423197525208,1,1.0,0.31937750807043885
+62,32,0.5152482308545242,2.0,1.3751828461537143,0.0007027866045040051,0.036591892016813676,0.8272967164743247,1,1.0,0.31749410284841406
+62,33,0.5432229011990631,1.95,1.3755826088958267,0.0007062250743282844,0.03634345877548204,0.8163775312111246,1,1.0,0.3440763373302103
+62,34,0.5235660894527631,1.95,1.377314435650485,0.0007042410067149572,0.03664299207029351,0.8166364047237448,1,1.0,0.34522029817587685
+62,35,0.5355924083305363,2.0,1.3773920472054073,0.0007071453384534659,0.0365981913434694,0.8276133757085045,1,1.0,0.38530802776845424
+62,36,0.5202813111176159,2.0,1.377314886164635,0.0007095591374892068,0.03660990181887401,0.8276030556895799,1,1.0,0.3676043703920528
+62,37,0.5773044526754169,2.0,1.3788725142078617,0.0007072990153838887,0.03661143288238759,0.8278245345338116,1,1.0,0.4243481755847226
+62,38,0.5923348464209537,2.0,1.3842666403298345,0.0007025475025025634,0.036778419982071986,0.8285906564314844,1,1.0,0.47444948806984544
+62,39,0.6104177062710954,2.0,1.3837911783565722,0.0007032081384449581,0.03654962830089242,0.828523304598331,1,1.0,0.5347256875703178
+62,40,0.5637333837260123,2.0,1.3831482303793747,0.0007038210967762624,0.03651035079157715,0.8284321143588007,1,1.0,0.512444612420041
+62,41,0.6047282729428753,1.95,1.3835088185490059,0.000702614035451844,0.036755125919850015,0.8175616562020255,1,1.0,0.5490942431429174
+62,42,0.5634842868164179,1.95,1.3845890768649363,0.0007019212393159939,0.03677250178174111,0.8177225198967609,1,1.0,0.5116142893880598
+62,43,0.6026054939290275,1.9,1.3847424082883615,0.0007010930808086517,0.036640969112267434,0.8062998880455488,1,1.0,0.5420183130967583
+62,44,0.6300298619070132,1.9,1.385489527998002,0.0007007426710915643,0.036718992443101395,0.8064164373785482,1,1.0,0.6000995396900437
+62,45,0.6245552512319668,1.9,1.3823505111414462,0.000697395425072627,0.036548058056423124,0.8059248902339377,1,1.0,0.6151841707732223
+62,46,0.6332954087864986,1.95,1.3823006025671016,0.0006974432572521851,0.03664267627616432,0.8173798324091764,1,1.0,0.6443180292883285
+62,47,0.6403731429122105,2.0,1.382043379787397,0.0006975091286788653,0.036499857892316696,0.8282732267847154,0,1.0,0.6679104763740348
+62,48,0.6283153846425525,2.0,1.3834142332001562,0.0007031151870565495,0.036654570338767456,0.8284697180306347,0,1.0,0.6943846154751752
+62,49,0.6332488823758973,2.0,1.38293463245048,0.0007041895641084634,0.03656001938924204,0.8284018578111313,0,1.0,0.7108296079196573
+63,0,0.19284321837227258,2.0,1.3825591270963289,0.0006992231496385044,0.0365442349158616,0.8283470599822595,1,0.1544421211913486,0.2702212329857772
+63,1,0.1714456148104044,1.95,1.3822072826571579,0.0006991565647134278,0.03662411371195802,0.8173664136504223,1,0.16905077152323186,0.2794176873370389
+63,2,0.2123885439492491,1.9,1.382465922134335,0.0007001094361062761,0.03660156930434423,0.805943789960917,1,0.20393673104752857,0.30271283843412555
+63,3,0.25960498442611674,1.9,1.3861509980153666,0.0007000753854896864,0.036450438943459035,0.8065194695963424,1,0.24229156742141597,0.37562785819183453
+63,4,0.29950430739223466,1.9,1.3861409106729052,0.0007000667512994075,0.03677116534547817,0.806517892809227,1,0.30124078090157513,0.43002665010534874
+63,5,0.26836905145691153,1.9,1.3846641128925548,0.000701989960845131,0.036659517432193374,0.8062879397111448,1,0.3331382901843551,0.41704578461056496
+63,6,0.27828313521464254,1.8499999999999999,1.3847578283224358,0.0007015136880731986,0.036573018233559004,0.7943193490990051,1,0.37624453811475517,0.3926177332291349
+63,7,0.3032607090931279,1.9,1.3861407835729362,0.0007000684630242712,0.036766614851529496,0.8065178735099037,1,0.40163234118503904,0.4086925753970409
+63,8,0.2974410154061111,1.9,1.3851260558488643,0.0007000048076171081,0.03650827728101745,0.8063594593716465,1,0.438784879489798,0.37309021203397297
+63,9,0.3539494935747527,1.95,1.382876181399804,0.0007017147638442687,0.03654908159129332,0.8174670081377775,1,0.4778489213656294,0.40936641676166985
+63,10,0.34945717445225677,1.95,1.3848845434936572,0.0006994454451012472,0.03673002434129671,0.81776581786401,1,0.5056435433108455,0.42399919042639517
+63,11,0.35165956030328815,2.0,1.384619318730501,0.0006994354760713919,0.03662543092772127,0.8286398571105522,1,0.554180091657642,0.3999584121341043
+63,12,0.37543886760910783,2.0,1.3832374890865973,0.0007012420175304147,0.03652329275165685,0.8284440674369465,1,0.5849045036119465,0.4049235538810973
+63,13,0.37487045427316423,2.0,1.384206806012035,0.0006988607862088562,0.03661806714126422,0.8285811108261811,1,0.6261045731676239,0.38142875002038223
+63,14,0.3985952398789023,2.0,1.3825907103456547,0.000698831457492968,0.036656124706736876,0.8283514393155931,1,0.6548930237907249,0.3887934345420409
+63,15,0.4385431639074154,2.0,1.3829261110222673,0.0006998540853210421,0.036428747354260084,0.8283994138615296,1,0.6830962920409815,0.417682156970076
+63,16,0.44041770938791547,2.0,1.3848231055461198,0.000701077475851462,0.03668208245186918,0.8286692583048803,1,0.7176678955149223,0.4445018372731553
+63,17,0.49398968349162803,2.0,1.3850996134757645,0.0007005833647516183,0.036745130394051126,0.8287083720915707,1,0.7429595931423256,0.48935282078232584
+63,18,0.5336420759058096,2.0,1.3854618019517717,0.0007002445025886487,0.03642768132104458,0.8287596827363063,1,0.7999270042655627,0.5455709139986148
+63,19,0.5484816248205315,2.0,1.3855735942220915,0.0006999513119669463,0.03664364827199039,0.828775464173377,1,0.832893245322275,0.584414422305405
+63,20,0.5685930639093396,2.0,1.3841517981937153,0.0007011039333855032,0.03674332139063962,0.8285739349100074,1,0.857505832034394,0.6186357703186065
+63,21,0.5575623226807388,2.0,1.3824686563671218,0.0006975381545090026,0.036348135943958956,0.8283337165273694,1,0.8805980321155347,0.6177436994484163
+63,22,0.5517948762735616,2.0,1.3814777328760584,0.0006969233832314761,0.03647471418742376,0.828192589410015,1,0.9197954602589221,0.5795889738999757
+63,23,0.6281748500781079,2.0,1.3849730041864032,0.0007001586379114987,0.03675034318074482,0.8286902784622093,1,0.9616838410263272,0.6450043788919233
+63,24,0.6014852403929507,2.0,1.381511601422854,0.0006969043072584468,0.036538827761939875,0.8281974030707405,1,0.997906565161594,0.6410753810943768
+63,25,0.6586354144040485,1.95,1.3814509125466523,0.0006967634241199919,0.03645261213050239,0.8172527618718677,1,1.0,0.6954513813468279
+63,26,0.6775858636065659,1.95,1.3828948411737512,0.0006980532433473295,0.03634175109175104,0.8174686997388817,1,1.0,0.7586195453552196
+63,27,0.6243828935075082,2.0,1.383832061338862,0.0006993703994241445,0.03659372658053634,0.8285280224179615,1,1.0,0.7146096450250274
+63,28,0.6848452583507737,1.95,1.3837575513938463,0.0006988235800211166,0.03655791590903519,0.8175976223664683,2,1.0,0.7828175278359122
+63,29,0.721576634461267,1.95,1.3742045782320627,0.0007148723460669919,0.03651671976623945,0.8161734618906433,2,1.0,0.8052554482042235
+63,30,0.6763660901634062,1.95,1.379079507800997,0.0007006922806863077,0.03659722418316804,0.8168994997770912,2,1.0,0.8212203005446872
+63,31,0.6856675708196198,1.9,1.3806914440292553,0.000699595127382746,0.03660036857200159,0.8056659527052996,2,1.0,0.8522252360653995
+63,32,0.747060385051424,1.95,1.3814312235585922,0.000698689933102952,0.03664012290947357,0.8172503967470028,2,1.0,0.8902012835047467
+63,33,0.7032940520799231,1.95,1.3823548127818108,0.0007009653547184736,0.036621671203434854,0.8173889756797186,2,1.0,0.9109801735997434
+63,34,0.7329048982165921,1.9,1.3827850019437822,0.0006998772730757269,0.03668596514306196,0.8059936160545097,2,1.0,0.9430163273886402
+63,35,0.745336223936284,1.9,1.3812315974937113,0.0006997019671702619,0.03665197454301671,0.8057505431101074,2,1.0,0.984454079787613
+63,36,0.6795591535045798,1.95,1.3794442901598096,0.0006994164637256098,0.03634092752414485,0.816953674112344,2,1.0,0.9318638450152662
+63,37,0.714202614338558,1.9,1.380964432090836,0.0006986539101441734,0.0365622056870092,0.8057083957419108,2,1.0,0.9473420477951934
+63,38,0.7429325405100318,1.9,1.381221331803423,0.0006977251685377252,0.036626175218038313,0.8057483175458129,2,1.0,0.9764418017001057
+63,39,0.7789329369519854,1.9,1.3794736266934295,0.000697133883239238,0.03656396538844335,0.8054744388242521,2,1.0,0.9964431231732849
+63,40,0.75,1.9,1.3807641008604534,0.0006999540313845979,0.03657452793689582,0.8056774405920262,2,1.0,1.0
+63,41,0.73,1.8499999999999999,1.3788716547541515,0.0006996834291670118,0.0365407141286754,0.7933554226818798,2,1.0,1.0
+63,42,0.75,1.7999999999999998,1.379043250183338,0.0006981581227690436,0.03661549228994136,0.78081798515021,2,1.0,1.0
+63,43,0.6863480864012583,1.7999999999999998,1.3767150965100718,0.0006975967262234249,0.0364852511974903,0.7804190891040563,2,1.0,0.9544936213375279
+63,44,0.75,1.7499999999999998,1.378686001850976,0.0006969216359783455,0.036171545795765106,0.7676483591498905,2,1.0,1.0
+63,45,0.7799999999999999,1.7499999999999998,1.376136638585057,0.0006960335213843573,0.036566248880852956,0.7671930161321443,2,1.0,1.0
+63,46,0.75,1.7499999999999998,1.3778259889644173,0.000700003207461252,0.036552152671775175,0.7674960279871751,2,1.0,1.0
+63,47,0.6848248408689173,1.6999999999999997,1.3753590900191102,0.0006995641788274837,0.03636970324509313,0.7533869042540765,2,1.0,0.9494161362297242
+63,48,0.776262529603195,1.6499999999999997,1.3769581548667023,0.0006981014795370471,0.0365219779431525,0.7394967129491505,2,1.0,0.9875417653439835
+63,49,0.75,1.6499999999999997,1.3779410872361797,0.0007021294860512108,0.03629598021830717,0.7396875729496689,2,1.0,1.0
+64,0,0.1471581082663659,1.5999999999999996,1.3852286411567114,0.0006997532878667848,0.03642221947351209,0.7264386550499025,0,0.14646873691071052,0.22856871167360568
+64,1,0.193897921867477,1.5499999999999996,1.38511283170521,0.0006996065826179193,0.036752061466048286,0.7112601291723822,0,0.21659915278899666,0.2241942025062611
+64,2,0.22103388307263422,1.5499999999999996,1.3854850434399566,0.0007007848475534808,0.03650417411442454,0.711337047853856,0,0.2840447897891395,0.22471989052326138
+64,3,0.19221597690036174,1.5499999999999996,1.3852757082360707,0.000700851115688946,0.03675148687714237,0.7112940889793029,1,0.3008927014195471,0.2395296544418096
+64,4,0.26948389933126304,1.4999999999999996,1.3861146829628483,0.0007000684220266556,0.03660084174159965,0.6958291952642482,1,0.34017546323370473,0.2780457134592706
+64,5,0.27607442754777856,1.4999999999999996,1.3860643799249237,0.0007000999036769015,0.03673813229922326,0.6958185618013027,1,0.3689532530299501,0.2949770877859952
+64,6,0.25275611535412523,1.5499999999999996,1.3859765148050316,0.0006999792646962645,0.03659873013502252,0.7114376236930547,1,0.40409241440005883,0.2703971653136723
+64,7,0.26655882292841065,1.4999999999999996,1.3822171599496742,0.0007015188657435148,0.036487852637687265,0.6950042667694756,1,0.41327773987435573,0.27082575659556113
+64,8,0.3074269537310767,1.5499999999999996,1.3814908567434137,0.0007015734543000004,0.036609875253961366,0.7105165275352298,1,0.45097035937191243,0.2901293666077058
+64,9,0.3584284682452822,1.5499999999999996,1.3819371814046624,0.0007006167710814247,0.03652696720719563,0.7106079267385396,1,0.5089950830741428,0.349434783385417
+64,10,0.3283164553681754,1.5499999999999996,1.3821343066199625,0.0007020540069241297,0.036728512922524256,0.7106490538019374,1,0.5552569107278027,0.320712303590181
+64,11,0.3785761384383428,1.4999999999999996,1.3831706789832845,0.0007013386006122101,0.036297296020197656,0.6952062733948512,1,0.5918752566258489,0.33942011929334426
+64,12,0.3566406650411643,1.4999999999999996,1.3833094769411862,0.0007005448005157208,0.03670062569423044,0.6952353467377229,1,0.6382582523810454,0.30445788029582044
+64,13,0.4347424157541292,1.4499999999999995,1.3837711777962045,0.0006994613088648694,0.036483337483761896,0.6792157620743197,1,0.6765902013708929,0.3803544506859069
+64,14,0.44700307178326976,1.4499999999999995,1.3829398456236888,0.0006993538361377216,0.036583975418326295,0.6790345561717791,1,0.7088130406502466,0.41159285174390375
+64,15,0.5027364734004269,1.4999999999999996,1.3813380783690559,0.0006991123558894024,0.036545728514479806,0.6948168723947264,1,0.7760641979154387,0.4743693141141713
+64,16,0.5147587198244586,1.4999999999999996,1.381719292963647,0.0006983481839358094,0.03667092943847143,0.6948973775362102,1,0.8051818194953839,0.5089533067543501
+64,17,0.5041680283314586,1.5499999999999996,1.3821714117337232,0.000699919517465896,0.036559581405258855,0.71065580575035,1,0.8328167841053616,0.5034710489643794
+64,18,0.5029951983984737,1.5999999999999996,1.3826834892245439,0.0007016474841447132,0.036567927843590545,0.7259333306961266,0,0.8786120199007079,0.4718346347939686
+64,19,0.5270241830826581,1.6499999999999997,1.309815078577578,0.0006447969245181024,0.034475995117015414,0.7263346148093919,0,0.9008580284364471,0.4889365723602641
+64,20,0.5858619496219974,1.6499999999999997,1.3135420820218227,0.0006480860153480388,0.03479356772848953,0.7270761212307885,0,0.9905083211387854,0.46552873722161053
+64,21,0.5828294490061385,1.6499999999999997,1.3086388729777827,0.0006444496175100809,0.03502296341286769,0.7261006169405935,0,1.0,0.47609816335379496
+64,22,0.5648693090654147,1.6999999999999997,1.319603411466227,0.0006563163885258184,0.035063720389807276,0.7428655636262341,0,1.0,0.4828976968847153
+64,23,0.5506885676436714,1.7499999999999998,1.3223128373808273,0.0006578503763672651,0.034871871095176164,0.7574277479760236,0,1.0,0.5022952254789044
+64,24,0.5953530635067662,1.7999999999999998,1.3307319503479944,0.0006609053885222713,0.03497705507170977,0.7724247712753736,0,1.0,0.5178435450225539
+64,25,0.5844852762597282,1.7999999999999998,1.3405193101054764,0.0006708041011414969,0.035110319512080386,0.7741441125239211,0,1.0,0.5482842541990941
+64,26,0.5875705706329589,1.8499999999999999,1.3407346330188488,0.000670405682902369,0.03520432687953333,0.7870233604028436,0,1.0,0.5585685687765296
+64,27,0.593082503418578,1.9,1.3413429057384643,0.0006705836721486082,0.03524691409426715,0.7994217282238647,0,1.0,0.5769416780619266
+64,28,0.6200444568832851,1.95,1.3413298964321339,0.0006707911303139798,0.035346854005370264,0.8111762751487679,0,1.0,0.5668148562776169
+64,29,0.5961699609830508,1.95,1.3393240128877584,0.0006694250765829435,0.03520600097942816,0.8108684245301577,0,1.0,0.5872332032768358
+64,30,0.602532682106116,1.9,1.337883052676176,0.0006688841721053674,0.035254009189463656,0.7988658315372522,0,1.0,0.6084422736870532
+64,31,0.5886508857940218,1.95,1.3826388108404704,0.0007046067337140716,0.036354948134912565,0.8174324494694645,0,0.9961310979085236,0.6339948221020412
+64,32,0.5903643567914748,2.0,1.3820024122274939,0.0007052555006331375,0.03634158992479075,0.8282696033009442,0,1.0,0.6345478559715827
+64,33,0.6165676109656306,2.0,1.3812177372509071,0.0007058456130629627,0.03648567564187535,0.8281581310733522,0,1.0,0.6552253698854351
+64,34,0.6365461081135446,2.0,1.3805810130616318,0.0007073438261598922,0.03652956276177866,0.8280679250987188,0,1.0,0.6551536937118151
+64,35,0.6244865615488789,2.0,1.381288718337664,0.0007053718696794216,0.03675188766532263,0.8281680974828597,0,1.0,0.6816218718295963
+64,36,0.6279130993793645,2.0,1.3805708106300163,0.000706565246266928,0.03661495149411312,0.828066250862339,0,1.0,0.6930436645978816
+64,37,0.6144986279769988,2.0,1.3797058161140068,0.0007075953702241105,0.03661566475149636,0.8279433579397005,0,1.0,0.7149954265899962
+64,38,0.6413666964658945,2.0,1.3788729346844844,0.0007089632424544897,0.036763417286841335,0.8278250688722851,0,1.0,0.7378889882196483
+64,39,0.6637289322265749,2.0,1.3778729010360147,0.0007101962648428423,0.03648616827627178,0.8276828383377483,0,1.0,0.7457631074219164
+64,40,0.6280381069007024,2.0,1.3786173456400896,0.0007076205190907098,0.036441222195183066,0.8277882537051249,0,1.0,0.7601270230023411
+64,41,0.6677201021545801,1.95,1.3777526796563784,0.000709047693861568,0.036731721826130895,0.8167034579993149,0,1.0,0.7590670071819334
+64,42,0.6721826426761477,1.95,1.3779158228132293,0.0007067673043245843,0.03668803908924249,0.8167271964176719,0,1.0,0.740608808920492
+64,43,0.6501276289157458,2.0,1.3807825354043939,0.0007051865266541925,0.03659858235698055,0.8280960000320198,0,1.0,0.7670920963858193
+64,44,0.6715367579004989,1.95,1.3801155412689181,0.0007060701596273954,0.036734846034460755,0.8170560210322583,0,1.0,0.7717891930016628
+64,45,0.6591715832648846,1.95,1.3801434076875456,0.0007041443398058591,0.036678987343537986,0.8170596106255312,0,1.0,0.7972386108829485
+64,46,0.6383517794676672,2.0,1.3792070415269324,0.0007050472948498796,0.036629046159197196,0.827871568102788,0,1.0,0.7945059315588904
+64,47,0.6626618700134713,1.95,1.378728284273573,0.0007064334252656414,0.03669393612351475,0.8168486776096877,0,1.0,0.8088729000449044
+64,48,0.6831989875170666,1.95,1.3636413234449192,0.0006872493264120822,0.03593272542087872,0.8145749705295018,0,1.0,0.8106632917235553
+64,49,0.6726609677428913,1.95,1.3630837027903904,0.0006859333398540502,0.03581575184186072,0.8144903336084152,0,1.0,0.8422032258096376
+65,0,0.18200938257692767,2.0,1.3825075046489868,0.0006994908552538385,0.036526433435125585,0.8283397958862843,1,0.14758444878024335,0.2432520102161011
+65,1,0.21311366966366413,1.95,1.382291754333929,0.0006994723552211322,0.036627743415847416,0.8173791173990302,1,0.1900822337178651,0.29026925392172703
+65,2,0.18890034197784683,1.95,1.381791217225907,0.0006993927092610727,0.036568321148078654,0.8173043663219707,1,0.21591060890294955,0.2751203280555567
+65,3,0.17486345144675491,1.9,1.3862121596580326,0.0007001215225584316,0.036385659466334735,0.8065290278342333,1,0.2302537414731832,0.24253984952493876
+65,4,0.20555819866201439,1.95,1.3862380202277529,0.0007001616155808869,0.03677670540334462,0.8179676461063293,1,0.2671610340064191,0.26231261686482243
+65,5,0.20346738679210108,1.95,1.386264892400669,0.0007001574413723347,0.03670384066394005,0.8179716460036497,1,0.3131856261855399,0.22731045439295028
+65,6,0.2840516943237378,2.0,1.3862760474940568,0.0007001861754108528,0.0364272795192411,0.8288751906011254,1,0.3652201735162298,0.2932120830574861
+65,7,0.29894594184279133,2.0,1.3862706898316102,0.0007001573557784364,0.03671534902714786,0.8288744224873571,1,0.4036542589618627,0.3249474608601542
+65,8,0.2971817047463974,2.0,1.3842942155774265,0.0007003311728330606,0.036702066706727925,0.8285939433061912,1,0.44193631437436265,0.33469059665550777
+65,9,0.33450942364738906,2.0,1.3838928396259877,0.0007003538477805041,0.036337109580867895,0.8285369364009708,1,0.4663688082469417,0.35987300116204135
+65,10,0.3577133582494744,2.0,1.383935952884457,0.0006998113869090021,0.0366191550825698,0.8285429070103623,1,0.4980654915051724,0.39495720549135155
+65,11,0.339793234917452,2.0,1.3838374271943792,0.0006993212428908004,0.0366831393522219,0.8285287707729379,1,0.5156551472586772,0.37843725337993694
+65,12,0.41190927289953666,2.0,1.383393235887503,0.0006992630669554757,0.03649235148522609,0.8284656392821172,1,0.5598937445466767,0.45983925026955325
+65,13,0.3787979729459126,2.0,1.3839696495811629,0.0006986297891136674,0.03660638925887376,0.8285473581878666,1,0.5988986755201585,0.430795009126164
+65,14,0.4023248148748224,1.95,1.3835779244763995,0.0006982891725101499,0.03665253824356873,0.8175706733491281,1,0.6217738229812261,0.44538428560777316
+65,15,0.44182794172103795,1.95,1.377792270396168,0.0006973920722196932,0.03655039847314927,0.8167058950097901,1,0.6444796974174032,0.4801202091802558
+65,16,0.42312899414619864,1.95,1.3764544096750326,0.0006969673932569476,0.036510268052744724,0.8165054086519039,1,0.69306603007132,0.4530086070589023
+65,17,0.4995067865727954,2.0,1.3775947583651094,0.0006998900378195333,0.036366313546868256,0.8276402245280725,1,0.7511939550770735,0.4967640151398866
+65,18,0.46936742517893043,2.0,1.3782530130254536,0.0006985355474667481,0.03622965205477866,0.8277337192694015,1,0.7987478340443652,0.46622763853728105
+65,19,0.5169429609581897,1.95,1.3789995625282807,0.0007010249436290926,0.03646344459883762,0.8168876412043438,1,0.823928243302892,0.4912388787901093
+65,20,0.49268441951691816,1.95,1.3830353564578997,0.0006979230504014485,0.03646435149587744,0.817489626748789,1,0.8700312388243685,0.448906413290569
+65,21,0.5475328803649613,1.9,1.3824432240202358,0.0006974901570785311,0.0364654927661988,0.8059394206728195,1,0.9083056040038224,0.48070212921144084
+65,22,0.5732759036365264,1.9,1.3833409299430217,0.0006983334929536302,0.03643706818550875,0.8060800479333179,1,0.9472226424321497,0.5146228222122214
+65,23,0.5530475720546955,1.9,1.383920062948897,0.0006992507014292671,0.03656049467416796,0.8061708457100454,1,0.9441859616722803,0.517910624619278
+65,24,0.5542598161408532,1.8499999999999999,1.3847581784438519,0.0006993181794358993,0.0367320365140395,0.7943186889123303,1,0.9756422020093242,0.5133431177904116
+65,25,0.6068984231072061,1.9,1.3841065783591036,0.00069912283539519,0.03661549098835284,0.8061999488783024,1,1.0,0.5563280770240202
+65,26,0.5696596681715613,1.9,1.3845717564131295,0.0007000834480542877,0.03665949194592456,0.8062729187751027,1,1.0,0.5321988939052043
+65,27,0.554158783569369,1.8499999999999999,1.383885191437366,0.0007000929850082065,0.036677265073451655,0.7941762799964854,1,1.0,0.4805292785645633
+65,28,0.592767808718707,1.9,1.3829785502164467,0.0007000872366075805,0.036687498306194985,0.8060239446557235,1,1.0,0.5092260290623567
+65,29,0.5987637574360134,1.9,1.3832917607351984,0.0007014823993782721,0.036679689816030855,0.806073346403093,1,1.0,0.5292125247867112
+65,30,0.6210838199176785,1.95,1.3831793975848128,0.0007027782318735135,0.03671802511206616,0.8175125654030915,1,1.0,0.5702793997255948
+65,31,0.6424163975129112,1.95,1.3833905378609024,0.0007014764579585647,0.03672381194899478,0.8175436740557284,1,1.0,0.6413879917097041
+65,32,0.5908088520934884,1.95,1.3835810036623952,0.0006986131974830485,0.03637454672966976,0.8175712292614895,1,1.0,0.6026961736449613
+65,33,0.6495333775966323,1.9,1.3831906832940903,0.0006981263488624755,0.03663524935174148,0.806056496282268,0,1.0,0.665111258655441
+65,34,0.6329528859983716,1.9,1.3760177154713786,0.0007088748685798145,0.03650898686884678,0.8049360634180452,0,1.0,0.6431762866612386
+65,35,0.5964486895786947,1.95,1.376281180156718,0.0007061613607733162,0.03662315978997677,0.816482208479054,0,1.0,0.6548289652623156
+65,36,0.597045824377537,1.9,1.375905257296866,0.0007079053291629649,0.036646687398035914,0.8049181008214407,1,1.0,0.6568194145917899
+65,37,0.6240257016351155,1.95,1.3815216595621413,0.0006968938198629628,0.03646584047287362,0.817263366697582,1,1.0,0.6800856721170515
+65,38,0.6239934738665058,1.95,1.3807112937822488,0.0006963004128415823,0.036349258668283015,0.8171421350149947,1,1.0,0.6799782462216858
+65,39,0.6721132855731156,2.0,1.3795892143537458,0.0006955158754185955,0.0365268225705055,0.8279233052012919,1,1.0,0.7403776185770518
+65,40,0.6859238738232476,2.0,1.3814192132824086,0.0006973128475389582,0.03642342304120086,0.8281843733567904,1,1.0,0.7864129127441584
+65,41,0.6371831359640349,2.0,1.3824124120515258,0.0006988867419133215,0.03667783603554701,0.8283261021522966,1,1.0,0.7572771198801161
+65,42,0.6948935129395085,1.95,1.3820072065002096,0.0006980132163807148,0.03651643061281083,0.8173362032750382,1,1.0,0.8163117097983614
+65,43,0.7055958544921102,1.95,1.373707040752326,0.0007045739960080926,0.03642882507806133,0.8160957112345085,1,1.0,0.8519861816403669
+65,44,0.7246956998628309,2.0,1.3712788432851202,0.0007046423389057124,0.03616216985882652,0.8267387435139563,1,1.0,0.915652332876103
+65,45,0.7015117685611931,2.0,1.3689440212415047,0.0007043905248618927,0.036248213288824035,0.8264039719839834,1,1.0,0.9383725618706436
+65,46,0.6822868573218572,1.95,1.3694523829119023,0.0007098315031159333,0.0361913875464578,0.8154578806914164,1,1.0,0.9076228577395242
+65,47,0.7398101670792774,2.0,1.370271377274407,0.0007064589185418621,0.036536026492998634,0.8265949055304573,1,1.0,0.9660338902642579
+65,48,0.75,2.0,1.3680173711351853,0.0007064654583688793,0.03643607033973819,0.8262715898353258,1,1.0,1.0
+65,49,0.7179470910908659,2.0,1.3650193910938793,0.0007064349026916712,0.03652629994354238,0.8258408094164372,1,1.0,0.9931569703028862
+66,0,0.06334455265913169,1.95,1.3854006040280487,0.0007001418381674676,0.03643019092986072,0.817842918606276,0,0.16175222187735316,0.1954788796939681
+66,1,0.13058227671620493,1.9,1.3861440823898,0.0007000706787014391,0.03674012970357586,0.8065183889706734,0,0.1667402292856435,0.21295395000649173
+66,2,0.2190520747128174,1.9,1.3853655542371393,0.0007000357094358582,0.03668718330949737,0.8063968624846508,0,0.27307673186856374,0.1994046065513063
+66,3,0.20294646669876978,1.9,1.3842874287546958,0.0006989352272836041,0.03638567325409228,0.8062281450492794,0,0.2994970353848913,0.21049217514937757
+66,4,0.2646866718985866,1.95,1.3855232796612114,0.0007005976719008601,0.036768974031561964,0.8178613294098072,0,0.38835417448709053,0.19781667367916797
+66,5,0.21931344337853856,1.95,1.3837338468263578,0.00069840702879647,0.03660261192017615,0.8175939629922853,0,0.3996235949016272,0.19821335139295893
+66,6,0.28930855773673847,1.9,1.3843574414433621,0.0006988282400947015,0.03649811872101918,0.8062390490731073,0,0.46780779082525614,0.2072848046887867
+66,7,0.2854423911796907,1.9,1.378511465644197,0.000704335423058658,0.03668009016732197,0.8053258960243721,0,0.5021413047905721,0.21528623087820623
+66,8,0.307031092867435,1.95,1.3786620360668924,0.0007029985157144887,0.036511849346233714,0.8168377383939552,0,0.5356056624518849,0.24262942628893677
+66,9,0.3726163204823448,1.95,1.3788146622286366,0.0007016711982327962,0.036441235818673,0.8168601751449357,0,0.6420294888947419,0.2193484164148269
+66,10,0.38560070535281216,1.95,1.250525672445311,0.0008752427837525359,0.03675804466889264,0.7969397194310136,0,0.7032215182673414,0.21437366015291884
+66,11,0.3590481731611346,2.0,1.248287483087108,0.000879601445329635,0.036340067638615844,0.8084618809254976,0,0.7289984937307608,0.22482925222943423
+66,12,0.44680309774412247,1.95,1.2653149309184883,0.0008587136723523328,0.035988848838396405,0.799317207557484,0,0.8337973226382553,0.2109472289627344
+66,13,0.46811093455913855,1.95,1.3728629051531331,0.0006910219397594857,0.03634145240903831,0.8159649165161165,0,0.9020315928110297,0.22432765811575545
+66,14,0.49064656663106204,1.95,1.3722347491319016,0.000690563517221878,0.03619682855282317,0.8158704322751291,0,0.9678679267932351,0.21166465304589346
+66,15,0.49948975672898815,1.95,1.3714413400330643,0.0006900074284889958,0.03611351213130073,0.8157510446692284,0,1.0,0.1982991890966272
+66,16,0.5045292290158812,2.0,1.3046880576666562,0.0007477919773123026,0.035859557993386595,0.817004589883631,0,1.0,0.21509743005293702
+66,17,0.5046386860066134,2.0,1.3736350174919556,0.0006918042356404779,0.03627052303609597,0.8270723140742939,0,1.0,0.2154622866887114
+66,18,0.5073056645181937,2.0,1.3731836428748134,0.0006912530692694548,0.036431760965396534,0.8270075895684895,0,1.0,0.22435221506064562
+66,19,0.5132059004298234,2.0,1.3725208262899193,0.0006907482137829576,0.036351668522700664,0.8269125979545715,0,1.0,0.21068633476607793
+66,20,0.5036536934043988,2.0,1.374176913384948,0.0006918146561478301,0.036368698056722555,0.8271498072741706,0,1.0,0.17884564468132935
+66,21,0.48129341620147614,2.0,1.3236382024854345,0.0007278468708800253,0.03551740530039609,0.8198148954219796,0,1.0,0.20431138733825374
+66,22,0.5050011461424828,1.95,1.3716803930115056,0.0006902806302023697,0.03604141918718202,0.8157870540380647,0,1.0,0.18333715380827603
+66,23,0.4807466304740056,1.95,1.294868382380497,0.0007184112506071181,0.035798719704030715,0.8039717270900587,0,1.0,0.20248876824668527
+66,24,0.5016187833156902,1.9,1.3689169274975526,0.000689136475904506,0.03628652567563122,0.8038125003193743,0,1.0,0.1720626110523004
+66,25,0.49212232188154786,1.9,1.2619736350520312,0.000701410256129781,0.03398548236707325,0.7864026865498069,0,1.0,0.14040773960515943
+66,26,0.4831808823459525,1.95,1.2762978928667525,0.0006936704651235571,0.0343693377274376,0.80102057943672,0,1.0,0.14393627448650845
+66,27,0.4846954120779183,2.0,1.288167751870144,0.0006893878266952878,0.0345530479238459,0.8145040765978668,0,1.0,0.11565137359306091
+66,28,0.47921794614263424,2.0,1.3018439508543018,0.0006848419361256719,0.034570649956615504,0.8165601316922738,0,1.0,0.13072648714211413
+66,29,0.4652613960046412,2.0,1.3084773255227227,0.0006811815613683031,0.0352689907075725,0.8175505651066062,0,1.0,0.15087132001547063
+66,30,0.4829438806508322,2.0,1.3045177080524575,0.0006789319001145617,0.035460458710978845,0.8169585264627762,0,1.0,0.14314626883610734
+66,31,0.44603032760375255,2.0,1.3095832834310732,0.0006759937814991863,0.03539697339038678,0.8177139271145076,0,1.0,0.15343442534584176
+66,32,0.4882754884832615,1.95,1.3149003044645402,0.0006920265355310966,0.0352299783503,0.807101354669712,0,1.0,0.12758496161087174
+66,33,0.46739275882305165,1.95,1.32268792226663,0.000686925177445906,0.03515425317771683,0.8083093195063159,0,1.0,0.15797586274350528
+66,34,0.4734064793007492,1.9,1.3190613771818624,0.0006851875409241928,0.035623495846861544,0.7958298598107587,0,1.0,0.17802159766916387
+66,35,0.4894108505061828,1.95,1.3133419412286227,0.0006823805819640656,0.035224894552619145,0.8068556124888776,1,1.0,0.16470283502060945
+66,36,0.5154551400753217,2.0,1.3829529426468168,0.0006981313400243562,0.03661927795797154,0.8284027382643914,2,1.0,0.218183800251072
+66,37,0.4953249375382013,2.0,1.3838419010155432,0.0007017438286634925,0.03651815649287799,0.8285300947074318,2,1.0,0.21774979179400403
+66,38,0.5521546435317558,1.95,1.3832421437768094,0.0007020538757331536,0.036738959554740505,0.8175217099368713,2,1.0,0.2405154784391862
+66,39,0.5339125348959688,1.95,1.3843273160099534,0.0007014260302795466,0.036751115672860095,0.8176833529193046,2,1.0,0.2797084496532291
+66,40,0.5165431615285642,2.0,1.3844318552859018,0.0007006059571807292,0.03665332545562737,0.8286135688881,2,1.0,0.2884772050952139
+66,41,0.581602867729227,2.0,1.383867321616756,0.000700735302341777,0.036753343847268596,0.8285334195766643,2,1.0,0.33867622576409007
+66,42,0.58634430428762,2.0,1.3847602914717776,0.0007003101397887433,0.03655543127724039,0.828660122100655,2,1.0,0.3544810142920665
+66,43,0.5927712232498169,2.0,1.3852239006115499,0.000699991891251122,0.03651373187542946,0.8287258461232896,2,1.0,0.3759040774993896
+66,44,0.6014725779561981,2.0,1.3853477515346255,0.0006996893858430885,0.03675280186080128,0.8287433388553085,2,1.0,0.4049085931873271
+66,45,0.611138863212665,2.0,1.378168386207541,0.0006945675965286308,0.03627790644471407,0.827720520294399,2,1.0,0.4371295440422167
+66,46,0.5211225797648276,2.0,1.379805193146405,0.0006959998286219027,0.0364184687439235,0.827954210597297,2,1.0,0.4037419325494251
+66,47,0.5590564730114619,1.95,1.3812344283578613,0.0006966580807562964,0.036615194941095205,0.8172203961188315,2,1.0,0.4301882433715396
+66,48,0.5196889910367984,1.95,1.380372267239132,0.0006960918777520614,0.03653166856195375,0.8170914095960714,2,1.0,0.39896330345599484
+66,49,0.5036621310281708,1.9,1.384987108814545,0.0006992508618582569,0.03658121054521629,0.8063375272506326,2,1.0,0.3455404367605691
+67,0,0.026357922675752155,1.95,1.3820109381659922,0.0007005438954091512,0.036530457149496,0.8173375160499102,1,0.14308728253849043,0.19707669886785328
+67,1,0.15584764035001672,1.9,1.3847361634942834,0.0007014691988003219,0.03671313530231845,0.8062990302143029,1,0.18535155040927034,0.20569006728769534
+67,2,0.20169799770252347,1.9,1.3820817396406433,0.0007005012778634411,0.03657205822437316,0.8058838199677916,1,0.23389435015624244,0.22713419213342165
+67,3,0.22165434281851887,1.9,1.3861679897528425,0.0007001478985946454,0.036457514900943545,0.8065221437025477,1,0.2620010071377826,0.25617979987801937
+67,4,0.2007822409207916,1.95,1.3860868482084494,0.0007001381752347274,0.03677285099366635,0.8179451290472505,1,0.3044259801248137,0.2300394962362204
+67,5,0.2812620022727722,1.9,1.3861170639619904,0.0007002525404608828,0.03669840080181523,0.8065142295639847,1,0.3620822077388497,0.2880970639241078
+67,6,0.2606153101623361,1.9,1.386109407974839,0.0007001408241086699,0.03654108118966801,0.8065129999852125,1,0.38133457044382824,0.29360493994934916
+67,7,0.3323435851060277,1.8499999999999999,1.3862012220331605,0.0007001358327956766,0.03678517572807698,0.7945546151515787,1,0.43673683872373104,0.35882949872178416
+67,8,0.2960968777473715,1.8499999999999999,1.383353458764141,0.0006996730904473178,0.03638976519480431,0.7940892118944263,1,0.4679517147976605,0.3297206394276909
+67,9,0.3726718189172304,1.7999999999999998,1.3841032562321112,0.0006995579555304195,0.036659416412685414,0.7816832081364119,1,0.5268047550522615,0.3731663896544192
+67,10,0.322835376528228,1.7999999999999998,1.3842992583700968,0.000700334758409446,0.03654288890031214,0.7817169200508468,1,0.5344154092288723,0.3302307094555969
+67,11,0.3969673107153646,1.7499999999999998,1.3848789321143211,0.0007001129087576164,0.036635442769838496,0.7687522604177357,1,0.5790426542249442,0.38450083008462327
+67,12,0.37518807067413673,1.7499999999999998,1.3849556145850244,0.0007007897806023948,0.03660923552526797,0.7687661327980612,1,0.598065824363927,0.3865391364285531
+67,13,0.41715775860867627,1.6999999999999997,1.384522355364506,0.0007008714124699778,0.036541559946679174,0.7550859217107048,1,0.6340574845560367,0.4117825492875385
+67,14,0.4674073802351208,1.6999999999999997,1.3709780435163608,0.0007003149553998539,0.036266543458619446,0.7525723036880545,1,0.6900987764309019,0.47122623220920007
+67,15,0.48181395155322576,1.6999999999999997,1.3716383340361809,0.0006982903636796339,0.03614109794813217,0.752694480315475,1,0.7266315848733572,0.5038710586796096
+67,16,0.5379781131869804,1.7499999999999998,1.3696859693566323,0.0006978478156138177,0.0363050954871821,0.7660395408067666,1,0.7908700096042176,0.5721003644843111
+67,17,0.5455182259735485,1.7499999999999998,1.3703518779692991,0.0006958877156356177,0.03634951504765688,0.7661581634358162,1,0.8182643090376994,0.5940416745282289
+67,18,0.5913402052593424,1.7999999999999998,1.3827346901605622,0.0006999284736330267,0.036521022143217036,0.7814496926072515,1,0.8647919192530196,0.6514114585271151
+67,19,0.5768751101452898,1.7999999999999998,1.3821152732239486,0.0006990409662788389,0.03661138647667274,0.7813435831266766,1,0.893660377225685,0.6647031975167189
+67,20,0.5906424685384081,1.8499999999999999,1.3812320287250863,0.0006990188388124164,0.03660595977335352,0.7937419029703261,1,0.9203777596141776,0.6749712156424567
+67,21,0.6085454838316773,1.9,1.3803026883074958,0.0006990344299309853,0.03654088379809065,0.8056049030233997,1,0.9524988302541182,0.6918198391000999
+67,22,0.6001099528147812,1.95,1.3792041430203354,0.0006989498518303188,0.036472199863999175,0.8169176201112325,2,0.9787160056229525,0.662078501885334
+67,23,0.6628912874856274,2.0,1.3716087560932693,0.0007169193498810252,0.03658602301330803,0.8267895120979817,2,1.0,0.7096376249520912
+67,24,0.7002863106279643,2.0,1.3708330907035726,0.0007193985848970381,0.03659003518952158,0.826679112427934,2,1.0,0.7342877020932144
+67,25,0.7105569780085818,2.0,1.3689647878369682,0.0007209203709318535,0.03667367574060974,0.8264116937916001,2,1.0,0.7685232600286059
+67,26,0.7179226223480067,2.0,1.3667963073850227,0.0007223292242027235,0.036675096688835014,0.8261007981129487,2,1.0,0.7930754078266891
+67,27,0.6290464218964795,2.0,1.3643213766025613,0.0007235476858146609,0.036262075251320317,0.8257453174872413,2,1.0,0.763488072988265
+67,28,0.6866920542770057,1.95,1.3666676566015155,0.0007187781244327782,0.0364266594242913,0.8150411466821214,2,1.0,0.7889735142566856
+67,29,0.7026048545070085,1.95,1.3651139283601286,0.000723481796769529,0.03655392728510033,0.8148082284598932,2,1.0,0.8420161816900282
+67,30,0.7196701239388894,2.0,1.3839497188499492,0.0007015919018892137,0.03669691677734466,0.8285453684616698,2,1.0,0.898900413129631
+67,31,0.6640984854555971,2.0,1.382883762799891,0.0007017377261062641,0.036596695548194995,0.8283939293637352,2,1.0,0.8803282848519903
+67,32,0.7313617223657621,1.95,1.3834893373669273,0.0007007140563807673,0.03673847340966603,0.8175581836873231,2,1.0,0.9378724078858737
+67,33,0.7693014832944786,1.95,1.3821059528575965,0.0007007039877950767,0.03660282240930024,0.817351748820902,2,1.0,0.9643382776482622
+67,34,0.7752868514193866,1.95,1.3823403027966474,0.0007028767061694893,0.03671507672157307,0.8173873804452633,2,1.0,0.984289504731289
+67,35,0.6819295181067213,2.0,1.3820540338412315,0.0007048205253642728,0.03650015868567345,0.8282768220499268,2,1.0,0.9397650603557375
+67,36,0.6734590633707243,1.95,1.3827380007399992,0.0007030958665934054,0.03658137626256406,0.8174468008452151,2,1.0,0.9115302112357473
+67,37,0.7085010369180412,2.0,1.382779022759715,0.0007017271568631315,0.03666101384880568,0.8283790362717582,2,1.0,0.928336789726804
+67,38,0.6641860538458519,2.0,1.3843712484984505,0.0007010782829780924,0.036757047286315014,0.8286050959157846,2,1.0,0.880620179486173
+67,39,0.7274872805380262,1.95,1.3842741881333418,0.0007001818893429516,0.03653666626719991,0.8176750616667785,2,1.0,0.9249576017934206
+67,40,0.7644827231766683,1.95,1.3834288149823497,0.0007003571236728185,0.03664724598707865,0.8175490497066147,1,1.0,0.948275743922228
+67,41,0.7068954600851334,1.95,1.3620378372757522,0.0006963566952497952,0.036422789911865754,0.8143354076132662,1,1.0,0.9563182002837777
+67,42,0.6838511499967384,1.9,1.3639514393465724,0.0007034405281975875,0.03640699701768271,0.8030327965012269,1,1.0,0.9128371666557946
+67,43,0.7467057324554357,1.8499999999999999,1.3641946046555447,0.0006999971970646387,0.036100308714470855,0.7909389714329158,1,1.0,0.9890191081847854
+67,44,0.75,1.8499999999999999,1.3601770902636412,0.0006993819764166097,0.03625081625369539,0.7902736768571711,1,1.0,1.0
+67,45,0.6950395610973499,1.9,1.3563784166775152,0.0006986203935326802,0.03607941751911097,0.8018306817253101,1,1.0,0.9501318703244994
+67,46,0.75,1.8499999999999999,1.3576540974727342,0.0006952567114163184,0.0361170491219872,0.7898538373162713,1,1.0,1.0
+67,47,0.6987131653573284,1.8499999999999999,1.3530478912213288,0.0006941424079764388,0.03575740027455941,0.789087885612977,1,1.0,0.9623772178577611
+67,48,0.7136560127812492,1.7999999999999998,1.3529657534292667,0.000690842211694422,0.03603502566950634,0.7763198420821003,1,1.0,0.9788533759374973
+67,49,0.7130476909762489,1.8499999999999999,1.3548762920992237,0.0006984643047922965,0.03601397356067164,0.7893934592745427,1,1.0,0.9768256365874959
+68,0,0.06239156411973987,1.9,1.385156983273235,0.0007001024894891248,0.036425896154475994,0.8063643189582552,0,0.1568077372972072,0.19889489733619
+68,1,0.21051532986195803,1.8499999999999999,1.3862248804262092,0.0007001909825480304,0.036752612807711804,0.7945584950682356,0,0.2647308705607946,0.1820766054588006
+68,2,0.2110700590065762,1.8499999999999999,1.3844255244342656,0.0006993643787751552,0.03662383347261053,0.7942643508391333,0,0.32387508578524216,0.20506674897493113
+68,3,0.23608054649046586,1.9,1.3855040917360066,0.0007006506662334006,0.03652661005862403,0.8064186821731846,0,0.3660406997064851,0.23221422202623934
+68,4,0.2170178339450985,1.9,1.3857106788216063,0.0007004412624944398,0.036770586178915834,0.8064508645732682,0,0.354405040503897,0.25085272581179896
+68,5,0.2187056386304871,1.95,1.3858039977153185,0.0007002849980700437,0.03662194685260376,0.817903049474184,0,0.34890151457226326,0.26381677600527265
+68,6,0.28192880533046644,2.0,1.3858435823850521,0.0007001324583009345,0.03640565877051742,0.8288138253028521,0,0.4119548522934401,0.25715621471030126
+68,7,0.3241959737018993,2.0,1.3701056374738254,0.0007021195229784211,0.036359392362092055,0.8265699036835694,0,0.5182716024505499,0.222957775738931
+68,8,0.3557167419218932,2.0,1.3689350820142712,0.0007020696071490271,0.036475404486386205,0.8264020236300257,0,0.6094768179301653,0.20642004916609025
+68,9,0.38408026941094836,2.0,1.23489441211215,0.000868564042400214,0.036661094381504125,0.806375928073679,0,0.702549958435972,0.17686762012186522
+68,10,0.3757239672665333,2.0,1.3599222887159292,0.0006888549590680361,0.0358923496671306,0.8251014127251247,0,0.7355833636089993,0.20496873940977842
+68,11,0.41429622318558257,2.0,1.259340364337533,0.0008630165545072687,0.03657326138215929,0.8101624993345811,0,0.7914045229389975,0.19244804669994506
+68,12,0.45941158429066065,2.0,1.342424193463304,0.0006833386236849315,0.03590116815783775,0.8225602869482472,0,0.890631911163352,0.17719606608439947
+68,13,0.4773746732757566,2.0,1.3029053322699842,0.0006925079582244544,0.03554513753123921,0.8167213572916923,0,0.9576899583441465,0.18099563312699327
+68,14,0.46855284757329535,2.0,1.3109696615955435,0.0006877666509108266,0.03502897565351093,0.8179239932205971,0,0.9750105173682555,0.19516213541997707
+68,15,0.47576204845386316,2.0,1.307017689946749,0.0006857595259750708,0.034413750171470456,0.8173341095241107,0,1.0,0.18587349484621032
+68,16,0.4583352368721313,2.0,1.302887342965822,0.0006833631237382487,0.03463133200338032,0.8167159267175338,0,1.0,0.19445078957377093
+68,17,0.4833391098993566,2.0,1.3076541805713813,0.0007017615066554189,0.03557985348441908,0.8174338939677727,0,1.0,0.21113036633118842
+68,18,0.4620292191012041,2.0,1.367550177278313,0.000688853883146428,0.03625708787949029,0.8261994576339965,0,1.0,0.20676406367068026
+68,19,0.4841471067776207,1.95,1.3663246263875022,0.0006883596327502833,0.036230934307896395,0.814980256328788,0,1.0,0.2138236892587355
+68,20,0.4644505592070425,1.95,1.3682588014169936,0.0006913603300715878,0.03617686875320984,0.8152726317938793,0,0.9911746419535291,0.22660234141876948
+68,21,0.4689872593032041,2.0,1.3669888796125609,0.0006910278659369166,0.036067015478195276,0.8261194685166469,0,1.0,0.22995753101068034
+68,22,0.5172414866513108,2.0,1.3661247430754448,0.0006907985775196424,0.035988200972716676,0.8259952377866264,0,1.0,0.22413828883770234
+68,23,0.5156557087005498,2.0,1.369813062688556,0.0006910478897508554,0.0361497101416768,0.8265247835536145,0,1.0,0.21885236233516586
+68,24,0.4686269767126013,2.0,1.372518961028328,0.0006914889690340538,0.036421497491739084,0.8269125430289799,0,1.0,0.22875658904200422
+68,25,0.47284506044074076,1.95,1.3712636706730197,0.000690828667503468,0.03636064484066781,0.8157245861334211,0,1.0,0.24281686813580244
+68,26,0.49931101320145876,2.0,1.3694853807814935,0.0006899316641961989,0.036059632055621176,0.8264774748204702,0,1.0,0.26437004400486236
+68,27,0.5030777395503946,2.0,1.3723392528295761,0.0006935305752143019,0.0361300371822846,0.82688740469947,0,1.0,0.2769257985013153
+68,28,0.48877839248510724,2.0,1.3740019057595054,0.0006968153150329955,0.036198983645300234,0.8271262145532262,0,1.0,0.29592797495035744
+68,29,0.49045265386548464,2.0,1.3726715665484366,0.0006964816666075932,0.03634569488279958,0.826935813135335,0,1.0,0.3015088462182821
+68,30,0.5304049627633828,2.0,1.3712405753529007,0.0006961425145279499,0.03644197312243982,0.8267308267435763,0,1.0,0.3013498758779424
+68,31,0.49445694596279155,2.0,1.3710985677046776,0.0006945647138369724,0.0364130015774328,0.826710031562107,0,1.0,0.31485648654263837
+68,32,0.49723634057314914,1.95,1.3696495343257846,0.0006941138219800788,0.03633161317436416,0.8154828173874428,1,1.0,0.32412113524383035
+68,33,0.5186709171338179,2.0,1.3756366643918745,0.0007083887674179617,0.03656281632252999,0.8273631473258141,1,1.0,0.32890305711272605
+68,34,0.5616874962821952,2.0,1.3755882324645003,0.0007110646348419402,0.03646101531050651,0.8273569939499658,1,1.0,0.3722916542739835
+68,35,0.5345467950196185,2.0,1.373992051983272,0.0007116380958930637,0.03668990649784116,0.8271290445314303,1,1.0,0.38182265006539506
+68,36,0.5822601693556712,1.95,1.3734326135448194,0.000714643383864567,0.03661572623526284,0.8160575436686314,1,1.0,0.4408672311855702
+68,37,0.5366886145460789,1.95,1.3822459741764062,0.0006984166936915909,0.03662599869688375,0.8173719685053172,1,1.0,0.42229538182026266
+68,38,0.5308811438819127,1.9,1.3817412374364815,0.0006985369847744359,0.03635990929246331,0.805829933229812,1,1.0,0.40293714627304217
+68,39,0.5427641867204507,1.95,1.3810138233539704,0.0006986153948891046,0.03646003782274585,0.8171880265880903,1,1.0,0.40921395573483565
+68,40,0.5235566442193734,2.0,1.3828467420297277,0.0006987636106012546,0.036567170186521086,0.8283878209148869,1,1.0,0.37852214739791146
+68,41,0.5824607364469838,2.0,1.368121588175308,0.000716654094705233,0.03664299417754708,0.8262894742293618,1,1.0,0.44153578815661265
+68,42,0.5844459084938335,2.0,1.3833797825741077,0.0006988094374357136,0.03648586157393617,0.8284635984868921,1,1.0,0.4814863616461114
+68,43,0.5467151346471427,2.0,1.3835403839065035,0.0006995154859395988,0.036454326585559936,0.8284866212597919,1,1.0,0.45571711549047556
+68,44,0.6075299188197041,1.95,1.3830597116814358,0.0006996926508635487,0.03671478623799686,0.8174937885694581,1,1.0,0.5250997293990136
+68,45,0.5544826781042083,1.95,1.382500016796318,0.0006987266559347047,0.03664447055350783,0.8174099801927761,1,1.0,0.48160892701402724
+68,46,0.5469272233219351,1.9,1.3819275760713055,0.0006988227507276181,0.036489576856748154,0.8058591770277479,1,1.0,0.4564240777397835
+68,47,0.586914142433954,1.95,1.3810925844590434,0.0006988760286685645,0.03656356877968972,0.8171998704230927,1,1.0,0.48971380811318
+68,48,0.5963296506095447,1.95,1.3814195496279487,0.0007001983294509817,0.03666451500557961,0.8172491037809768,1,1.0,0.5210988353651487
+68,49,0.6251447078208224,2.0,1.3813095589865232,0.0007014191338238422,0.03657764756462638,0.8281699382244819,1,1.0,0.5838156927360745
+69,0,0.022393580206367045,2.0,1.3822794402532028,0.0006997700657396886,0.036509350391900994,0.8283074437175697,1,0.1490087157712223,0.17596697965959376
+69,1,0.20347136825783613,1.95,1.3849107564579277,0.000700636572828584,0.03669708441307254,0.8177700792246195,1,0.21627496578555128,0.22320460647871862
+69,2,0.23583904441369286,1.95,1.3861057561920371,0.0007000423295827777,0.03671645246817488,0.8179479160904989,1,0.2588127105120066,0.2743798673629674
+69,3,0.27476109509416957,1.95,1.386022577532759,0.0007000087487131529,0.03637505989409561,0.8179355197002282,1,0.31992612649487806,0.3226354816540612
+69,4,0.24644049484101624,1.95,1.385892698184091,0.0006999529669401618,0.03674093954808002,0.8179161610428219,1,0.32850915325807406,0.31678944512595536
+69,5,0.2949106633576041,1.9,1.3859862623978851,0.0007001317079014996,0.036705277161379495,0.8064937795741819,1,0.3629460225002901,0.36577418119162686
+69,6,0.2668236925638378,1.9,1.3859385675012557,0.0006999965846691387,0.036545242740106086,0.8064862939489322,1,0.39651948562893774,0.3273863277075422
+69,7,0.26720925954534747,1.8499999999999999,1.386066424854993,0.0007000240599148797,0.036778130316539134,0.7945325738189594,1,0.4255539687904285,0.2899589067639202
+69,8,0.27674274332611304,1.9,1.3845855358167831,0.0006997983731600297,0.03641479705456385,0.8062749820112504,1,0.46834978465571414,0.2646760982127579
+69,9,0.32783045013171286,1.95,1.3851313946945418,0.0006997927067699827,0.0365855800643428,0.8178027054352712,1,0.4927615405137334,0.30241944642073176
+69,10,0.3207308909251827,1.95,1.3850322444383019,0.0006995234207601468,0.0367276181095466,0.8177878511856761,1,0.5048707198119351,0.3292753433346955
+69,11,0.35864625886748064,2.0,1.3847631613835651,0.0006994663527876558,0.036606751864407004,0.828660289971893,1,0.5340932987899826,0.3500297978382921
+69,12,0.4127266050645027,2.0,1.384606718049155,0.0006991854433148515,0.03643716747901295,0.8286379968509315,1,0.5982245319160281,0.4114559743269716
+69,13,0.39678624909772225,2.0,1.3826440712952173,0.0006979448738226548,0.0365557516357506,0.8283587742173039,1,0.6326752692134332,0.41238713804116317
+69,14,0.39115567677572877,2.0,1.3648860740002942,0.0006945166805295227,0.036128386738650986,0.8258182052165688,1,0.6683349568227918,0.37940564682204003
+69,15,0.40602043116287223,2.0,1.3847197880541928,0.0006993412512041906,0.0363900728974188,0.8286540961086423,1,0.6925284786189547,0.36336346571763434
+69,16,0.4428982445254648,2.0,1.3851018162089006,0.0006999811829323256,0.03663735811352544,0.8287085138108792,1,0.7195818619980017,0.3835516657542138
+69,17,0.42579036157418293,2.0,1.3853195813685861,0.0006997799319857801,0.03674996859107375,0.828739366390615,1,0.7209761822713598,0.3913329622187964
+69,18,0.4401694880490153,2.0,1.3855427637620288,0.0007002912670341515,0.0364700392134303,0.8287711855660972,1,0.7518508990883557,0.39809709471224325
+69,19,0.44618609783055574,2.0,1.3855804838003576,0.000700773976626245,0.03668003320766045,0.8287766753304987,1,0.767601845716652,0.3971511984796497
+69,20,0.4352143297287539,2.0,1.385470368763603,0.0007012125995928595,0.03677003221541507,0.8287611732869851,1,0.8004976456227464,0.3500509049321845
+69,21,0.5144305749169188,2.0,1.361956133954049,0.0007176259291831442,0.03609758158872503,0.8254030136945337,1,0.84753577234284,0.41805421993260916
+69,22,0.5362602155051017,2.0,1.3809599211723045,0.0007061143716515438,0.03667802792555947,0.8281215140934135,1,0.8925008731320291,0.4641995541743002
+69,23,0.5812769393235373,2.0,1.3803970612732501,0.0007073743776284172,0.03674685988719872,0.8280417427381969,1,0.9365582235709605,0.5221788329838436
+69,24,0.5969019821250713,2.0,1.380989074400093,0.0007055313496423701,0.03640417584279239,0.8281254976482328,1,0.974992678701377,0.5563497021484015
+69,25,0.5868913426400386,2.0,1.3803209875142624,0.0007066403075976754,0.036565869366722036,0.8280307013737317,1,0.991220193699517,0.5680108838674393
+69,26,0.6165296220932274,2.0,1.3821664474173454,0.000705212946990667,0.03677626580829621,0.8282929221527443,1,0.9989445818385806,0.589839297859317
+69,27,0.5800259864948951,2.0,1.381446163412958,0.0007060719013287236,0.03657629094438222,0.8281907008731512,1,1.0,0.5667532883163168
+69,28,0.5709797882870065,1.95,1.3807782764636063,0.0007071476179336667,0.03667279374167137,0.8171553848501879,1,1.0,0.5365992942900215
+69,29,0.5850717328475696,2.0,1.3798680774232466,0.0007082691611031626,0.036331493634395154,0.8279666632917551,1,1.0,0.5502391094918986
+69,30,0.5631422270203196,2.0,1.3816865708471002,0.0007063362666997791,0.03647716632734677,0.8282249811773751,1,1.0,0.5104740900677318
+69,31,0.5802310863092266,1.95,1.3808813868498053,0.0007070796158134659,0.036551206064157266,0.8171707700036294,1,1.0,0.5341036210307553
+69,32,0.585724746466847,2.0,1.38199486750214,0.0007055421272319754,0.036481717889732326,0.8282686116829759,1,1.0,0.5524158215561566
+69,33,0.5686983388838894,2.0,1.3828254538705274,0.0007039428213203506,0.03659098006162764,0.8283862671220611,1,1.0,0.528994462946298
+69,34,0.6107201631210979,2.0,1.3820341689361997,0.0007044583181783734,0.036624326451210616,0.8282738935221214,1,1.0,0.5690672104036594
+69,35,0.6002337810715775,2.0,1.3815563710840315,0.0007058568854555328,0.03677562918646189,0.8282063206655181,1,1.0,0.6007792702385917
+69,36,0.6058537815701919,2.0,1.37960576167216,0.0006997257241409392,0.036486648842517545,0.827926862130689,1,1.0,0.6195126052339728
+69,37,0.6076199840433757,2.0,1.378185853271495,0.0006996228410585565,0.0364788368472317,0.8277244527975262,1,1.0,0.6253999468112523
+69,38,0.6116625577811213,2.0,1.3765759703093745,0.0006994479596276271,0.03651838752073065,0.8274947177675837,1,1.0,0.6388751926037376
+69,39,0.6113992475119533,2.0,1.374763966418695,0.0006991503015705358,0.03621724929579441,0.8272358206735204,1,1.0,0.637997491706511
+69,40,0.6132716005371712,2.0,1.3727586743645093,0.0006988424326030496,0.036228409574350494,0.8269489547118956,1,1.0,0.6442386684572374
+69,41,0.5966170857510741,2.0,1.3705493014530148,0.0006983365271796102,0.03641261162368599,0.8266324103420589,0,1.0,0.6220569525035802
+69,42,0.6103865986865641,2.0,1.3709777498856202,0.0007140616619625342,0.03653997615639948,0.8266983091081245,0,1.0,0.6346219956218802
+69,43,0.5907611449804501,2.0,1.3699976568151482,0.0007166747143043917,0.03656300405215142,0.8265585971728185,0,1.0,0.6358704832681669
+69,44,0.5884073899403153,2.0,1.3685295891581575,0.0007179664020634502,0.03667359910977033,0.8263484055514012,0,1.0,0.6280246331343841
+69,45,0.5912087961903935,2.0,1.3668775931222716,0.0007191865729505047,0.03641680189296556,0.8261115722820973,0,0.998151759409863,0.6398269747548275
+69,46,0.5967853667098213,2.0,1.3650237546154593,0.0007202648207919044,0.036317032409698205,0.8258454152164164,0,1.0,0.6559512223660708
+69,47,0.6341390211052937,2.0,1.3629520548134773,0.0007212802961008321,0.03654279735649932,0.825547544804323,0,1.0,0.6471300703509789
+69,48,0.6285327658143224,2.0,1.3643072119264832,0.0007165327153559983,0.036441047294885606,0.8257412605268766,0,1.0,0.6284425527144077
+69,49,0.6327041393947296,2.0,1.3648894505600229,0.0007123041937109015,0.036383474009256324,0.8258238080388732,0,1.0,0.6090137979824316
+70,0,0.18671157940726524,2.0,1.3823369164138675,0.0006997567947687461,0.0365100269739317,0.8283156137163259,1,0.1454791046144586,0.2617331252049394
+70,1,0.1758680897213545,1.95,1.3820246486953738,0.0006997415685707148,0.03662366748867631,0.8173393234126924,1,0.1779008353329946,0.28235918529385556
+70,2,0.16861007604638922,2.0,1.3821209449185974,0.0007006176058826468,0.036597097478678134,0.8282851433433812,1,0.20845741136271886,0.2507570383376722
+70,3,0.1993116878010575,2.0,1.3861323066215796,0.0007000721183435569,0.03635718728052913,0.8288547689135145,1,0.23910393761158852,0.27890037585474037
+70,4,0.19192196764212463,2.0,1.3862135358144367,0.0007001137856735894,0.03672197362812233,0.8288663031563478,1,0.27817991293023997,0.23550000823342876
+70,5,0.22202555899965415,2.0,1.3862078890489113,0.0007001177255944627,0.0367471254463365,0.8288655032961028,1,0.30742419286250217,0.2635196061821776
+70,6,0.21831994336296956,2.0,1.3862598597608597,0.0007001502460456808,0.036381506915303854,0.828872884310242,1,0.34859776050576147,0.22960279720221655
+70,7,0.29817615733868424,2.0,1.3862400212688712,0.0007001348598938921,0.036713539646476945,0.8288700659832026,1,0.39876371777977154,0.29556890075591885
+70,8,0.32795132289478734,2.0,1.38618607151857,0.0007001033893116295,0.036754725948979335,0.8288624044449932,1,0.4424912687023239,0.33651605137952595
+70,9,0.3667431244940142,2.0,1.3847282345218896,0.0006993764702347352,0.03644274954982486,0.8286553053907699,1,0.5010575549834924,0.3877336750020575
+70,10,0.35029812440920094,2.0,1.3848811406624901,0.0006997683401495916,0.03665145740402688,0.8286771260522993,1,0.5308071308565381,0.39325090688861897
+70,11,0.3543975793699675,2.0,1.3846111569497883,0.0006997991381806163,0.03671242546640571,0.828638801446046,0,0.5814611609587758,0.3727103832881906
+70,12,0.3526736667465097,2.0,1.3533179419304915,0.0006988877480120348,0.035719912203018796,0.824149206404071,0,0.5908900694527637,0.387725463218014
+70,13,0.3932541087301219,2.0,1.3580780759702733,0.0006964825091740937,0.036014348542220534,0.8248373205909023,0,0.6165228209881993,0.4221499344494739
+70,14,0.4648624451148068,2.0,1.368613364824025,0.0007031577606873002,0.03645146343872683,0.8263561769642833,0,0.7200115044475137,0.42285947778600436
+70,15,0.4167821996815646,2.0,1.3665743718448353,0.0007028747932755738,0.036563898630090706,0.8260633224700261,0,0.7280361836306654,0.4185590874309948
+70,16,0.48836956388087155,1.95,1.3694018041608442,0.0007006540212028023,0.03645874419134039,0.8154475068843784,0,0.7913546617997785,0.4394256638698673
+70,17,0.49570246719564426,1.95,1.3699830566919122,0.0007056214678393942,0.0362235811555984,0.8155364597855195,0,0.8367491042622301,0.4700094183025072
+70,18,0.5442976336966409,2.0,1.3399944307943583,0.000671106695810358,0.03514152269447883,0.8222017970426959,0,0.9030423438958043,0.4769356537943969
+70,19,0.5757424979248886,2.0,1.347090954213519,0.0006808611005333728,0.035486523125893066,0.8232396773143066,0,0.9833805693655401,0.47463423392890863
+70,20,0.5658339131394267,2.0,1.3514759386201962,0.0006899356334978885,0.036003344325388806,0.8238794925116516,0,1.0,0.48611304379808884
+70,21,0.5731472423503022,2.0,1.3524500122870844,0.0006875647555415178,0.03619251703803772,0.824020100428244,0,1.0,0.5104908078343406
+70,22,0.5785529876223406,2.0,1.3526106650007084,0.000685459887972207,0.03600755536073097,0.8240427852270569,0,1.0,0.5285099587411354
+70,23,0.5829803208533795,2.0,1.352128958280989,0.0006835326938733489,0.03550413039702976,0.8239723695979361,0,1.0,0.5432677361779314
+70,24,0.6013452553370531,2.0,1.3511547472636973,0.0006816370333491362,0.035702388284785384,0.8238304733290064,0,1.0,0.537817517790177
+70,25,0.5869826455561907,2.0,1.3550213203349357,0.0006878572383266698,0.03592449610030687,0.8243927423957375,0,1.0,0.5566088185206356
+70,26,0.5906138262714131,2.0,1.353867078635146,0.0006855777882585141,0.03587163971226105,0.8242249205210803,0,1.0,0.5687127542380436
+70,27,0.6097897101384812,2.0,1.352441139570502,0.0006835403709085376,0.035954838475278396,0.8240176466136367,0,1.0,0.5659657004616035
+70,28,0.614468720673648,2.0,1.3554853291737854,0.0006887040948574138,0.03586953320509815,0.8244601516660843,0,1.0,0.5482290689121597
+70,29,0.6096648348136562,2.0,1.3533790498804812,0.0006884039603704924,0.03558981491598646,0.8241550237641834,0,1.0,0.5322161160455203
+70,30,0.5861231099766584,2.0,1.3511092460089396,0.0006880411997135901,0.035894243227040455,0.8238257284299633,0,1.0,0.5537436999221947
+70,31,0.6075738249582334,1.95,1.349738775308271,0.0006855026454166001,0.03587651648792995,0.8124653716047248,0,1.0,0.525246083194111
+70,32,0.563330700725898,1.95,1.3465082805937398,0.0006847635149992889,0.03587033667150878,0.8119724333976917,0,1.0,0.5444356690863266
+70,33,0.5847749150209408,1.9,1.3539158498360035,0.000684664948221868,0.035770242956062556,0.8014346517058932,0,1.0,0.5492497167364694
+70,34,0.6122799734943988,1.9,1.351638965795479,0.0006822520395035165,0.03586454024623737,0.8010712971475685,0,1.0,0.540933244981329
+70,35,0.6056863225586476,1.9,1.3493001925831964,0.0006815751185214968,0.03576449937050839,0.8006981209382971,0,1.0,0.5189544085288252
+70,36,0.5997235985823377,1.95,1.3467994101996348,0.0006806776473727684,0.03583500792909512,0.8120156296680527,0,1.0,0.4990786619411253
+70,37,0.573007022250758,2.0,1.3451653187264736,0.000680257117778637,0.03577514048543264,0.8229591158926671,0,1.0,0.5100234075025263
+70,38,0.5976025656154796,1.95,1.3447007722967483,0.000678671071238619,0.035566511474889345,0.8116944572860415,0,1.0,0.49200855205159855
+70,39,0.5442008198199442,1.95,1.3410867309354653,0.0006772660996570424,0.03538272901095461,0.8111410106608584,0,0.9851432908930599,0.5004783448757341
+70,40,0.5544999759724751,1.9,1.3483576851630292,0.000678117210763784,0.0354549066023207,0.8005465681152567,0,1.0,0.5149999199082506
+70,41,0.5986817182603394,1.95,1.3532390564969203,0.00067893835340311,0.035828797440106426,0.8129961141341651,0,1.0,0.4956057275344644
+70,42,0.5955002605591905,1.95,1.3515534485119156,0.0006780899400996346,0.03572636153585472,0.8127394519043946,0,1.0,0.48500086853063484
+70,43,0.5696182796958277,2.0,1.3488849124652962,0.0006765094959370388,0.03587215924762589,0.8234993107908462,0,1.0,0.49872759898609226
+70,44,0.5939956771403253,1.95,1.3486062438996056,0.0006761402479586513,0.035659040092274885,0.8122898968987632,0,1.0,0.4799855904677508
+70,45,0.5900958307962688,1.95,1.3449993498677641,0.0006740054710143164,0.035442761640665864,0.8117386636145116,0,1.0,0.4669861026542292
+70,46,0.5821463364378084,2.0,1.3421749728472276,0.0006723247623613206,0.03520235069768189,0.8225206934706487,0,1.0,0.440487788126028
+70,47,0.5536301578372039,2.0,1.3403727758390298,0.0006713607924488727,0.03530992323418083,0.8222571733226002,0,1.0,0.44543385945734637
+70,48,0.5380486809097605,1.95,1.3391429699189783,0.0006704232561353904,0.03516684082314169,0.8108409642664456,1,1.0,0.4601622696992019
+70,49,0.5616667380996605,2.0,1.382027866355016,0.0007040877559834673,0.03662853534081957,0.8282728916495321,1,1.0,0.47222246033220133
+71,0,0.1308488368721018,2.0,1.3852293175114487,0.0006999976324467293,0.03642294502106261,0.8287266166227953,0,0.1191064316532395,0.21068754736935336
+71,1,0.1464734418392483,1.95,1.3851682893332762,0.0006998631482596979,0.03670449715532549,0.8178082237164024,0,0.14147039401624223,0.23295094744250475
+71,2,0.19182762981723822,2.0,1.3850622485545716,0.0006996942572959429,0.03669298956054861,0.828702815620354,0,0.20307353376048262,0.23532738771015058
+71,3,0.19173768276248535,2.0,1.3842226564472457,0.0007000412271965936,0.03651808499524618,0.828583697445189,0,0.23679314799323614,0.256734745217303
+71,4,0.17897015017277418,2.0,1.3845116149926762,0.0006998141250156657,0.036682765978094466,0.8286246706267739,0,0.25118247470745125,0.26165720096597894
+71,5,0.1904191985497241,2.0,1.384621400242729,0.0006996125281295092,0.03669399147050365,0.8286402029576747,0,0.26040737330067554,0.28752083076484636
+71,6,0.2556091445515106,2.0,1.384650521181875,0.0006993999723140906,0.03632902359781097,0.8286442776009814,0,0.3267045243757964,0.2830911160039735
+71,7,0.2789291303681742,2.0,1.3843441090148199,0.0006993287696329358,0.0366585119471422,0.8286007446308482,0,0.3837988211503029,0.28469867302684343
+71,8,0.31429151168629016,2.0,1.3839728480589053,0.0006992039688588806,0.0366901345849913,0.828547975684048,0,0.4713898984146542,0.28578517440142837
+71,9,0.3489492585273071,2.0,1.357789563178205,0.0006968092012182315,0.03642439612849471,0.8247957265687093,0,0.5532158560448641,0.2922097203645384
+71,10,0.3494724836194559,2.0,1.3595554622645452,0.0007034436022442206,0.03633142922125345,0.8250526815388749,0,0.5815398315678211,0.32285516997442476
+71,11,0.3619396197996568,2.0,1.3612697378303806,0.0007006802712095146,0.03612769940700021,0.8252991866672605,1,0.5967885171820266,0.3440807097561537
+71,12,0.4377905560819781,2.0,1.3858376213272088,0.0006998538567170972,0.036433890335458116,0.828812900480427,1,0.6571891653206435,0.4163829665124024
+71,13,0.47191676902846047,2.0,1.3649380749551454,0.0006946010204378337,0.03598589546540638,0.8258257092995401,1,0.707249801867001,0.4633894942722002
+71,14,0.4778826737463807,2.0,1.365082114839858,0.0006927026151528163,0.03607166378245868,0.8258458806059885,1,0.7258793028276295,0.4917698420510965
+71,15,0.527606801058877,2.0,1.3630441308794639,0.0006920354410100539,0.03635279268159694,0.8255523818179624,1,0.7715916201320145,0.5632338433535704
+71,16,0.5170749256924527,2.0,1.3627861581423466,0.0006900708009366002,0.03620317830302911,0.8255146606135751,1,0.8011130238037822,0.5887657205697993
+71,17,0.5183755689359307,2.0,1.3797443464576185,0.000708851949453089,0.03674605430250926,0.8279492046373238,1,0.8476801732949395,0.5643449987265163
+71,18,0.5234433017562987,2.0,1.3788425483962254,0.0007096265082367913,0.036365108721144436,0.8278209269246598,1,0.869515002325372,0.5521243360871663
+71,19,0.5468862096796472,2.0,1.37780142712146,0.0007103419632297969,0.03658704218587498,0.8276726857685532,1,0.884896983787351,0.5764247205490226
+71,20,0.6201338854965677,2.0,1.3793379762290647,0.0007080846764518944,0.03676196849624273,0.8278910911067389,1,0.9459885581206258,0.6391282074943909
+71,21,0.5960936768271028,2.0,1.3691653736044485,0.0007009945958970617,0.036018337849637164,0.8264347507742955,1,0.9545575317526918,0.6475688804200869
+71,22,0.5954575787142558,1.95,1.366646875019752,0.0007004229263684143,0.036171438471760756,0.815032479662605,1,1.0,0.6181919290475192
+71,23,0.6064976259975948,2.0,1.3676589178865055,0.0006978932362558721,0.03650860279559149,0.8262176673623717,1,1.0,0.6216587533253158
+71,24,0.635089931423394,2.0,1.3655512932991747,0.0006973058813628682,0.036475842485315484,0.825914673345389,0,1.0,0.6502997714113132
+71,25,0.6358458645503593,2.0,1.3661283746584387,0.0007116240026383593,0.03645360362150994,0.8260017460035849,0,1.0,0.6528195485011973
+71,26,0.6368772218554801,2.0,1.3661331806614747,0.0007079264816400399,0.03646316471352774,0.8260013738991826,0,1.0,0.6562574061849337
+71,27,0.6444800712445671,2.0,1.3656687691932548,0.0007045078582042777,0.036389294860033734,0.8259336341655442,0,1.0,0.6482669041485568
+71,28,0.5974015566346285,2.0,1.371426210567519,0.0007026537604958817,0.0363360464503358,0.826759282010426,0,1.0,0.658005188782095
+71,29,0.6205578753579819,1.95,1.3698914379276868,0.0007031160104332616,0.03638493162017579,0.8155219226881443,0,1.0,0.6685262511932728
+71,30,0.6432950165264986,1.95,1.3694644333526194,0.0007066034211935811,0.03646815466774998,0.8154587225521012,0,1.0,0.6776500550883282
+71,31,0.6409524810176668,1.95,1.3689974321060707,0.0007035445491579049,0.03641174532957484,0.8153875142384904,0,1.0,0.6698416033922225
+71,32,0.6030631961702944,2.0,1.3681999585054792,0.0007007021098720492,0.036434292345880026,0.8262961436856148,0,1.0,0.6768773205676477
+71,33,0.6070501621390969,1.95,1.3672537136171856,0.0007013308265590198,0.036399587831575084,0.8151242194808265,0,1.0,0.6901672071303231
+71,34,0.6444420703152762,2.0,1.3651964327739858,0.00070193738448368,0.03621133048075914,0.8258649778665019,1,1.0,0.6814735677175872
+71,35,0.6075039129298483,2.0,1.363376260201055,0.0006983749872145586,0.036309122049938296,0.8256020340505758,1,1.0,0.6583463764328275
+71,36,0.6451790774753776,1.95,1.364147481851742,0.0006957003803878703,0.036380908116090294,0.814653961944104,1,1.0,0.6839302582512587
+71,37,0.6310698772287583,1.95,1.3679333467156796,0.0006942017703718037,0.0361074754587551,0.8152244682895493,1,1.0,0.7035662574291942
+71,38,0.6781711753220567,2.0,1.3652264607137685,0.0006933340506069896,0.03592514850244595,0.8258668217117792,1,1.0,0.7605705844068554
+71,39,0.6305007629855963,2.0,1.3679945184106577,0.0006995005236587212,0.036043080997761136,0.8262663097464757,1,1.0,0.7350025432853208
+71,40,0.6399611919758895,1.95,1.3686112993854531,0.0006971004279407698,0.0361222990117102,0.8153274417681813,1,1.0,0.7332039732529649
+71,41,0.6442503361489251,2.0,1.3655620324961,0.0006963427360183005,0.036432781392684764,0.8259159404581096,1,1.0,0.747501120496417
+71,42,0.6267986734254192,2.0,1.3633229667432245,0.0006957633794911777,0.036399693219998606,0.8255936084654183,0,1.0,0.722662244751397
+71,43,0.6201093068140782,2.0,1.36023328219897,0.0006905642266879512,0.03590341821474139,0.8251467805938473,0,1.0,0.7336976893802604
+71,44,0.6204352832456739,2.0,1.3587775543327796,0.0006910638651984549,0.03600660666171844,0.8249367936901391,0,1.0,0.7347842774855795
+71,45,0.6638215309704749,2.0,1.3572416616491996,0.0006915160740359376,0.03619057292004814,0.8247150061234072,0,1.0,0.7460717699015829
+71,46,0.6285455204826991,2.0,1.35556203022179,0.0006888513158040433,0.036136746664860275,0.8244712946069475,0,1.0,0.761818401608997
+71,47,0.6659902118780925,1.95,1.353895429745024,0.0006892142163806723,0.0357001445056344,0.8130990075570798,0,1.0,0.7533007062603082
+71,48,0.6637104239719036,1.95,1.3512869429372838,0.0006862938411269942,0.03582549000560127,0.8127013855380066,0,1.0,0.7457014132396783
+71,49,0.6660884142422372,2.0,1.3493035646339537,0.0006836190953315303,0.035983947142138525,0.8235622190529169,0,1.0,0.7202947141407905
+72,0,0.18841875957694088,2.0,1.385045389419654,0.0007002802144243182,0.036443877677558204,0.8287005887379493,0,0.2101440449367915,0.18120380534074745
+72,1,0.21827275193901324,1.95,1.384097064321899,0.0006988649043650881,0.03665459986562895,0.8176482613870651,0,0.297545408379338,0.16418196195759346
+72,2,0.19506268544076422,1.95,1.38402081619719,0.0006989726952319221,0.0366479291512374,0.8176369246928925,0,0.2998370679830557,0.18375952749180646
+72,3,0.24933019612938256,1.9,1.3838320231549677,0.0006987727592593766,0.036320351820403975,0.8061569389186571,0,0.3735324417722714,0.16639073140158003
+72,4,0.2901572763436623,1.9,1.3836911850608453,0.0006988668629235356,0.03668569730537426,0.8061349589057248,0,0.47855637447303706,0.16244908851482484
+72,5,0.24220663005111281,1.9,1.3859059328816201,0.0007002982241623082,0.036643788271490424,0.8064812948917898,0,0.4784273717061481,0.1694522712288452
+72,6,0.2773608929915655,1.8499999999999999,1.385766852805947,0.0007003354236225947,0.03655650409023971,0.7944837658767157,0,0.5129125467889428,0.17398624758662795
+72,7,0.3373938150238183,1.8499999999999999,1.3857421546132074,0.0007005933897065971,0.036759962691918405,0.7944798173857376,0,0.6013299864270527,0.15620606817665744
+72,8,0.37502284810398995,1.8499999999999999,1.3274513963841112,0.0006672651677823099,0.03534960565584652,0.7847873071751391,0,0.711635477195969,0.13456219075200787
+72,9,0.40760430890150173,1.8499999999999999,1.325935171777046,0.0006659829592559056,0.034995332654106356,0.7845306785453283,0,0.8037881079465788,0.12029688574290058
+72,10,0.4482446309277428,1.8499999999999999,1.2758446432755732,0.0006857014893572263,0.03504699862583562,0.7759495136269722,0,0.9159588739491399,0.10620360449362291
+72,11,0.43860758773920583,1.8499999999999999,1.28690977491395,0.000680524832828413,0.03526887653733561,0.77786554298956,0,0.9591296725395908,0.11651906241123157
+72,12,0.46311351073473284,1.9,1.28257051263995,0.0006778098193245759,0.03481157472769706,0.7898341709969515,0,0.9950089914265579,0.15036638054703214
+72,13,0.486904068684056,1.9,1.2807407896785679,0.0006763597970797855,0.034460506353842464,0.7895298010445114,0,1.0,0.15634689561352005
+72,14,0.47522096394506214,1.9,1.290581364304384,0.0006722955555003597,0.03385609369242032,0.7911590319474249,0,1.0,0.18406987981687367
+72,15,0.495377073947587,1.95,1.2859371369997785,0.0006695118676752133,0.03443790908310652,0.8025448324715664,0,1.0,0.18459024649195668
+72,16,0.49184204610352705,1.95,1.2962837501667954,0.0006680229308021832,0.03478694838442083,0.8041788254319765,0,1.0,0.17280682034509023
+72,17,0.4732915449650157,2.0,1.3018789589465518,0.0006660065265498441,0.03523607301560695,0.816559732842919,0,1.0,0.17763848321671877
+72,18,0.48127203802790697,2.0,1.300009603356239,0.0006647989523728349,0.03519813687626608,0.8162791942797882,0,1.0,0.20424012675968986
+72,19,0.4632073599464108,2.0,1.3817336972306844,0.000696976115594299,0.03652394394969448,0.8282290224263562,1,0.9906099273752788,0.223211296654331
+72,20,0.5140557172001103,2.0,1.354810608658172,0.0007177472236349994,0.03637230854938074,0.8243708910411173,1,1.0,0.2468523906670342
+72,21,0.47308030611969004,2.0,1.359193492487588,0.000712967910345266,0.035951416468174166,0.8250031785224026,1,1.0,0.2102676870656333
+72,22,0.48526861548271316,1.95,1.36280320497095,0.000709117397546141,0.03621118426985062,0.8144549549816168,1,1.0,0.21756205160904374
+72,23,0.4644692947603846,2.0,1.3626082821530137,0.0007153275151251404,0.036596497299270024,0.8254963145235189,1,1.0,0.18156431586794872
+72,24,0.5056673518138997,1.95,1.3818327997823716,0.0006976621142628149,0.0365494600343994,0.8173100584569946,1,1.0,0.2188911727129988
+72,25,0.48803126353538867,1.95,1.361583476514151,0.00071663262404768,0.03649313636903369,0.8142728343612518,1,1.0,0.2267708784512955
+72,26,0.46766365073934657,2.0,1.361372498611022,0.000722195531511362,0.036133414984330384,0.8253202059242067,1,1.0,0.19221216913115519
+72,27,0.5014839387946765,1.95,1.380571717651047,0.0006962707861534439,0.03635338547861341,0.8171212696509058,1,1.0,0.20494646264892127
+72,28,0.45988987082827154,1.95,1.3603544269082235,0.0007234805891718728,0.03660552318029805,0.8140889630749901,1,1.0,0.16629956942757163
+72,29,0.47343585086460666,1.9,1.3760459687904516,0.0006943721113855053,0.03632417511844462,0.804935945312825,1,1.0,0.178119502882022
+72,30,0.47709161715039944,1.95,1.3778089495339354,0.0006946844355635677,0.0363740129718335,0.8167075811747284,1,1.0,0.19030539050133127
+72,31,0.45907231647483504,2.0,1.3793546062717892,0.0006953634487182528,0.03648143053604403,0.8278898354450459,1,1.0,0.1635743882494501
+72,32,0.5180076278860559,2.0,1.3810467116169791,0.0006969092575884501,0.0365755278795762,0.8281312468601367,1,1.0,0.22669209295351955
+72,33,0.5368087398642674,2.0,1.3605539996720273,0.0007235061759766977,0.036234379313424,0.825202552262606,1,1.0,0.28936246621422457
+72,34,0.5565942384722842,2.0,1.3581215705176997,0.0007239653307046576,0.03626348997468178,0.8248515457346558,1,1.0,0.35531412824094705
+72,35,0.5774537658094911,2.0,1.3554219419553375,0.0007242117506018157,0.03649897456952751,0.8244612556437703,1,1.0,0.42484588603163675
+72,36,0.5297453600262606,2.0,1.3813156986493746,0.0007055672192455319,0.03649227569958845,0.8281719924987254,2,1.0,0.3991512000875352
+72,37,0.5557987694115651,1.95,1.3849861542067443,0.0006992503225841004,0.03654221913522591,0.817780901747444,2,1.0,0.4193292313718839
+72,38,0.5143978737583773,1.95,1.381006165949887,0.0006966142038134271,0.03641716906866559,0.8171862847057104,2,1.0,0.3813262458612577
+72,39,0.5010667514939406,1.9,1.3840446021464203,0.0006987158044060682,0.03667015066991536,0.8061901382372508,2,1.0,0.3368891716464686
+72,40,0.5889421031699663,1.95,1.384558178998581,0.0006994319833150608,0.03662866880574184,0.8177171723754965,2,1.0,0.3631403438998876
+72,41,0.49764802401818886,1.95,1.3842922051445408,0.0006989548862323293,0.036440853099978736,0.8176773818278562,2,1.0,0.3254934133939628
+72,42,0.5889990043221043,1.9,1.3846196739476364,0.0006995129022436498,0.036713519010545995,0.8062802250057651,2,1.0,0.3633300144070142
+72,43,0.5481856798779989,1.9,1.3841542091183938,0.0006989165909788043,0.03666280814614334,0.8062073262293525,2,1.0,0.39395226625999646
+72,44,0.5770789102668356,1.8499999999999999,1.3836770796283357,0.0006988478340560682,0.03660864438631888,0.7941418527760395,2,1.0,0.42359636755611824
+72,45,0.5832823786280131,1.8499999999999999,1.381305079141654,0.0006970777349571144,0.03653314094914481,0.7937532266615975,2,1.0,0.44427459542671016
+72,46,0.5944316054675328,1.9,1.3805084822116864,0.0006962863387349244,0.0363623278524143,0.8056362688568939,2,1.0,0.48143868489177594
+72,47,0.5306398139159819,1.95,1.3796835804134886,0.0006956162596900555,0.03638987615064427,0.8169883185529584,2,1.0,0.43546604638660635
+72,48,0.5929758005509659,1.9,1.3806371272800289,0.000696518784077581,0.036551060356940696,0.8056564849320013,2,1.0,0.47658600183655264
+72,49,0.5325191741419859,1.9,1.3794341319482966,0.0006955063084230474,0.03657426196551711,0.8054677404538187,2,1.0,0.4417305804732862
+73,0,0.08556814111858838,1.8499999999999999,1.3847835279864826,0.0007004616539933214,0.03643942315278022,0.7943232040291566,0,0.19760690126600805,0.1884179353739506
+73,1,0.17694538985950378,1.7999999999999998,1.386134828891353,0.0007000640246377106,0.03675445631445888,0.7820298794172628,0,0.2303801294923385,0.2159777935418947
+73,2,0.22005961863375798,1.7999999999999998,1.379863936861967,0.0006980315527971994,0.036512332986395175,0.7809583628292861,0,0.2947233566701061,0.2072342532190518
+73,3,0.17958635336096562,1.7999999999999998,1.3792896983463685,0.000697860609658772,0.03653767235023796,0.7808600578607147,0,0.2905012013978168,0.21128624267279628
+73,4,0.21151891092167077,1.7499999999999998,1.379516913273777,0.000697293999541616,0.036548226552374795,0.7677966639434362,0,0.31623050131749925,0.21675570131557037
+73,5,0.20363434412926706,1.7499999999999998,1.3801046378980446,0.0006970014235976507,0.03617541262625121,0.7679013256136433,0,0.33039119345958495,0.2382595558181102
+73,6,0.26677216016871935,1.7999999999999998,1.3802181843166472,0.0006966078637452428,0.03655748478060016,0.7810184682344153,0,0.4017712975380129,0.22021213717838065
+73,7,0.2836366193517491,1.7999999999999998,1.3580589610840055,0.0007010768324709914,0.03629359003455692,0.7772065636186365,0,0.45398120625831656,0.20681378949474163
+73,8,0.28128785069299295,1.8499999999999999,1.3592883947373322,0.0007071409147401904,0.03650036726772711,0.790128918670948,0,0.48130705607026997,0.22921676088294982
+73,9,0.30789990587294036,1.9,1.3613661195765963,0.0007041309085061132,0.03625096869812923,0.8026237719169964,0,0.5094560956613984,0.2803915586946033
+73,10,0.37583622002967,1.9,1.3627739980901057,0.0007014332084489567,0.03615575375638248,0.8028458573877418,0,0.6197586275105392,0.2597758967515143
+73,11,0.4015560691069163,1.9,1.2609773812702574,0.0008456834379554437,0.035816579833991766,0.7862837863621703,0,0.700436643511994,0.27127137234039583
+73,12,0.4310787986803633,1.9,1.258797840419411,0.0008546458842381181,0.03628754523448111,0.7859203201873649,0,0.768409682275479,0.27904975256723896
+73,13,0.4688758918950105,1.9,1.2563840606265444,0.0008625555940345878,0.0367343546228678,0.7855165877686576,0,0.8547909119562592,0.2565317570416894
+73,14,0.45640024039763366,1.9,1.3758215564904042,0.0006979593887671981,0.036491837882522554,0.8049018336708981,0,0.879124624784568,0.28250130161268816
+73,15,0.4812337068796547,1.95,1.3755314606625062,0.000696698310265128,0.036506660045464295,0.8163670073642477,0,0.9106579465160323,0.3232350942441393
+73,16,0.49183008481778956,1.95,1.3753082329755864,0.000695547269878472,0.03647684231829653,0.8163331953521612,1,0.9291124904868815,0.3339502954101232
+73,17,0.49244685168590063,2.0,1.3456727195472498,0.0007246465415285757,0.036520450670739106,0.8230459610020351,1,0.9744049828872676,0.30894952843664525
+73,18,0.5562723412661834,2.0,1.3516495387675955,0.0007184916644683594,0.03655094485245954,0.8239129668303519,1,1.0,0.3542411375539445
+73,19,0.5088828475735662,2.0,1.3484362119963496,0.0007181391037744814,0.03642046483114382,0.8234461882844181,1,1.0,0.32960949191188726
+73,20,0.5504585317101407,1.95,1.3523030186387826,0.000713060941214611,0.03627290188161567,0.8128641447972449,1,1.0,0.36819510570046865
+73,21,0.5145925163067793,1.95,1.3570583581147546,0.0007086307523107582,0.0359950945384397,0.813585088382432,1,1.0,0.34864172102259744
+73,22,0.5739301839123749,1.9,1.3598980868713288,0.0007048794866883676,0.0362520461661213,0.8023913419251856,1,1.0,0.4131006130412494
+73,23,0.526129456856275,1.9,1.3840114634819263,0.0007031665425741508,0.036590492014435434,0.8061863512066846,1,1.0,0.3870981895209167
+73,24,0.5190262384263731,1.8499999999999999,1.3525131240259185,0.000703366734248743,0.036099179111767556,0.7890019428241221,1,1.0,0.36342079475457667
+73,25,0.5774525754442644,1.9,1.3540275615246573,0.0006996939670389173,0.03582775421728356,0.8014572115720793,1,1.0,0.4248419181475478
+73,26,0.5305935162233564,1.9,1.383965758771128,0.0007032492579094509,0.036719840674157,0.8061792355986683,1,1.0,0.40197838741118797
+73,27,0.5212843347299465,1.8499999999999999,1.383503109195452,0.0007039280402641101,0.03673691604936412,0.7941150717301072,1,1.0,0.370947782433155
+73,28,0.581012201578535,1.9,1.3474495998586467,0.0006977038003378916,0.03609674009316043,0.8004077911539209,1,1.0,0.4367073385951162
+73,29,0.6001762669110154,1.9,1.3833987097511287,0.0007040518171563025,0.036719667141679284,0.8060908672747918,1,1.0,0.5005875563700514
+73,30,0.5487915966492647,1.95,1.3839274375900497,0.0007028700466994305,0.03673018683489136,0.8176241632052599,1,1.0,0.46263865549754896
+73,31,0.6045656615534545,1.9,1.3834559618500604,0.0007033172380994502,0.03675958582419052,0.8060995864670775,1,1.0,0.5152188718448482
+73,32,0.5619339240393008,1.9,1.3836510747279829,0.0007021909640367295,0.03675307304365129,0.8061297293439683,1,1.0,0.5064464134643357
+73,33,0.6027301739042097,1.8499999999999999,1.3830238962919479,0.0007026312119095114,0.03657701442270461,0.7940362869655584,1,1.0,0.5424339130140323
+73,34,0.6308250650566324,1.8499999999999999,1.3825496968047672,0.0007038132409707503,0.036753259839104185,0.7939591110377844,1,1.0,0.602750216855441
+73,35,0.630102739614901,1.8499999999999999,1.3604231267351747,0.0006976751903951931,0.03583496981112549,0.7903138866338135,1,1.0,0.6336757987163365
+73,36,0.6394473320416264,1.9,1.36472979467338,0.0006955661970848327,0.03619336163004366,0.8031533909801153,1,1.0,0.6648244401387544
+73,37,0.6224868981596331,1.95,1.3681745138451948,0.0006940269183166259,0.03604921436528994,0.8152607407158581,1,1.0,0.6749563271987767
+73,38,0.6713549815614481,2.0,1.3658934844750052,0.0006932647327700823,0.03574684425569369,0.8259627061641153,1,1.0,0.7378499385381604
+73,39,0.6735180225851742,2.0,1.3687445073437412,0.0006995866662506687,0.03610689106890813,0.8263739692557841,1,1.0,0.7783934086172474
+73,40,0.6989431533421044,2.0,1.3708715780142784,0.0006975193920806537,0.03611210165856503,0.8266783571830251,1,1.0,0.8298105111403481
+73,41,0.7174353796282328,2.0,1.3540041227375084,0.0006885954054725987,0.03566707286023907,0.8242456486363721,1,1.0,0.8914512654274425
+73,42,0.7351901174351378,2.0,1.3504667489253783,0.0006873911873331029,0.03600877392214672,0.823732270234217,1,1.0,0.9506337247837926
+73,43,0.75,2.0,1.3465312277664914,0.0006859497457240009,0.036022209360789974,0.8231596948524638,1,1.0,1.0
+73,44,0.74,2.0,1.3421895493056846,0.0006842972507646332,0.03570389177931894,0.8225263167754007,1,1.0,1.0
+73,45,0.75,2.0,1.349843866784643,0.000682988650740176,0.03553562473461878,0.823640532125105,1,1.0,1.0
+73,46,0.6999966771251556,2.0,1.3454239003062285,0.0006809710633916568,0.035370843709658886,0.8229969954179754,1,1.0,0.9666555904171854
+73,47,0.6946730766428348,1.95,1.3456935314399958,0.0006790008552451772,0.03535155043915006,0.8118462509096269,1,1.0,0.948910255476116
+73,48,0.75,2.0,1.3440333750088416,0.0006766374087553028,0.03557862369084426,0.8227930787922125,1,1.0,1.0
+73,49,0.75,2.0,1.340947933951965,0.0006752177836373138,0.03584451899683055,0.8223423442620228,1,1.0,1.0
+74,0,0.16471085323471374,2.0,1.3849955103648464,0.0007003301158699615,0.03644215427248994,0.8286935221626739,0,0.16011062112469493,0.20222201594945255
+74,1,0.16952287436860314,1.95,1.3849367207297067,0.0007004653796621346,0.03669985204797358,0.8177738974226737,0,0.19622731765586504,0.23677315768752377
+74,2,0.15799326057306567,2.0,1.3848416190392177,0.0007002545480448241,0.036698346835008375,0.8286716531000515,0,0.21354795119121311,0.2419136003219347
+74,3,0.2309890515417694,2.0,1.3769379894662217,0.0006953683626646417,0.03656128081744596,0.8275452244363558,0,0.28601773389990476,0.25527319327269166
+74,4,0.2567360182926344,2.0,1.3762626418892732,0.0006950828490818292,0.036392667332736835,0.8274487399461518,0,0.34397608318256584,0.2638186167320271
+74,5,0.3035614539325818,2.0,1.37547477527507,0.0006947866453348168,0.03638018630048942,0.8273361368119352,0,0.44396503295514417,0.2532514691684139
+74,6,0.3432424520040756,2.0,1.3506445465791097,0.0006986837196458897,0.03576568152300676,0.8237613633999946,0,0.5377468849796544,0.2604789933740461
+74,7,0.33523555267000954,2.0,1.3487026733591998,0.000698036064134549,0.035849287666249494,0.8234790794503378,0,0.5732203809723763,0.28649133427019674
+74,8,0.3839589595408266,2.0,1.3498744886486707,0.000695211204360222,0.03607634548608113,0.8236485308349113,0,0.6433026413766406,0.28879300996723456
+74,9,0.4235741412922565,2.0,1.228957091757489,0.0008571797048263405,0.03648682640715305,0.805443657187728,0,0.7283114147603521,0.274165251293719
+74,10,0.44470026444136074,2.0,1.2253922636990837,0.0008561472679730461,0.036278407186512276,0.8048841011486212,0,0.8093112867156914,0.26991916585028053
+74,11,0.4410258979489821,2.0,1.3739826251571343,0.0007047576349172481,0.036530217524735904,0.8271257289692928,0,0.8368104083636332,0.28767244867842934
+74,12,0.4263390395604184,2.0,1.3752670217607457,0.0007028725914619032,0.03616397245212953,0.8273087674590923,0,0.8448324528812055,0.2946868613597874
+74,13,0.49414238349518275,2.0,1.3770138893052821,0.0007013848276836022,0.036453331628156095,0.8275577733231994,0,0.9178327580341679,0.2900309342717187
+74,14,0.5308277125332446,2.0,1.375673299117691,0.0007012695256852803,0.03656284880955238,0.8273663462331259,0,1.0,0.2694257084441485
+74,15,0.5132370270620156,2.0,1.376247129924896,0.0007045263713819702,0.036598500141525936,0.8274492218305374,0,1.0,0.24412342354005195
+74,16,0.4767968829285309,2.0,1.3748325083658837,0.000704540459834536,0.03654236200339321,0.8272471568568286,0,1.0,0.2559896097617696
+74,17,0.4788435550354181,1.95,1.3764271161059352,0.0007027431740009606,0.03657501773853419,0.816503050104468,0,1.0,0.26281185011806024
+74,18,0.5026932704062564,2.0,1.3771899964058807,0.0007011333759449044,0.0363483275078251,0.8275828316376634,0,1.0,0.2756442346875213
+74,19,0.5235285940834775,2.0,1.3789219337357803,0.0007000279260717278,0.036479869046751844,0.8278295055830466,0,1.0,0.24509531361159173
+74,20,0.4981956515251305,2.0,1.3794886381516345,0.0007024509880723662,0.03666621296852147,0.8279109521698518,0,1.0,0.260652171750435
+74,21,0.5151661971992629,1.95,1.380524595824307,0.0007012559866470343,0.03656883915089485,0.8171157178956149,0,1.0,0.2505539906642096
+74,22,0.5137979001221241,2.0,1.379241464941726,0.0007012266178330824,0.03664465323142414,0.8278753845192229,0,1.0,0.2459930004070802
+74,23,0.5213660490223186,2.0,1.3782200087005128,0.0007010867954175689,0.036594923298609916,0.8277297406942182,0,1.0,0.23788683007439548
+74,24,0.5162269207068989,2.0,1.3786620406332573,0.0007037266915601928,0.03633566493333086,0.8277935149619186,0,1.0,0.22075640235632957
+74,25,0.5016953230975625,2.0,1.378719040701903,0.0007060391755885169,0.036510466398287936,0.8278022995204338,0,1.0,0.2723177436585417
+74,26,0.4783643995243843,2.0,1.379724519844913,0.0007043451734148134,0.03670314364101162,0.8279450963366292,0,1.0,0.261214665081281
+74,27,0.5238159619968956,1.95,1.3810876207784126,0.0007030625006889612,0.03653758487783785,0.8172003797127729,0,1.0,0.24605320665631872
+74,28,0.4761691453213976,1.95,1.3809110857028486,0.0007049083859049354,0.03670592299550613,0.8171745582868402,0,1.0,0.25389715107132527
+74,29,0.5183223046431622,1.9,1.3819052254747388,0.000703634117902584,0.036328883882432314,0.805857185743867,0,1.0,0.2610743488105406
+74,30,0.484019170392159,1.9,1.380871913769154,0.0007039404251948035,0.036680655476333805,0.8056955675098438,0,1.0,0.2800639013071967
+74,31,0.5126912037742242,1.8499999999999999,1.3815855918790614,0.0007026562653569292,0.036541516146579744,0.7938009715537212,0,1.0,0.3089706792474139
+74,32,0.49581736156553075,1.8499999999999999,1.382566588836001,0.0007017453082419485,0.03645132142813874,0.7939611977861301,0,1.0,0.3193912052184357
+74,33,0.5389381149160799,1.9,1.383023255739476,0.0007008287330745367,0.03656427761111424,0.8060311660978797,0,1.0,0.32979371638693306
+74,34,0.5402378527179523,1.9,1.3822501299500023,0.0007008535945398652,0.03642868421089411,0.8059102709819508,0,1.0,0.3007928423931741
+74,35,0.5355707340709578,1.95,1.3824379296608071,0.0007023772407119021,0.03673198575683565,0.8174018031956117,0,1.0,0.28523578023652596
+74,36,0.4866233774491776,2.0,1.3824474813159562,0.0007036873580159364,0.036696888699345474,0.8283324542917831,0,1.0,0.2887445914972587
+74,37,0.5108095388243402,1.95,1.3829132832115976,0.0007024977071695862,0.03650722152308401,0.8174727778559239,0,1.0,0.3026984627478006
+74,38,0.5375701641302854,1.95,1.3838863016533165,0.0007018381001423242,0.0364934875265068,0.8176177213789538,0,1.0,0.29190054710095087
+74,39,0.5153561279463674,1.95,1.3837450025061135,0.0007027911741513525,0.0367545053227825,0.8175969343163826,0,1.0,0.31785375982122455
+74,40,0.5306745216956222,1.9,1.3844924453266605,0.0007020431999888066,0.03667222513366397,0.8062611425717612,0,1.0,0.30224840565207417
+74,41,0.5300283189853232,1.95,1.3838731017206523,0.0007023619705437788,0.03675708112812728,0.8176159092494671,0,1.0,0.30009439661774406
+74,42,0.5355664877544448,2.0,1.3832727465858738,0.000702531558920408,0.03672274725688353,0.8284494448752202,0,1.0,0.2852216258481493
+74,43,0.5286639431457002,2.0,1.3831869451676277,0.0007036006476984216,0.03649530718836959,0.8284375542482185,0,1.0,0.2622131438190005
+74,44,0.5250308162415713,2.0,1.382865462473711,0.0007045681258831108,0.036774554309566304,0.8283921325536915,0,1.0,0.25010272080523754
+74,45,0.5222776325233555,2.0,1.3824328016542182,0.0007054260752035498,0.036672162474574596,0.8283308613538443,0,1.0,0.24092544174451788
+74,46,0.5106537605040208,2.0,1.3819266984249676,0.00070616900459174,0.03659863900378395,0.8282590934572657,0,1.0,0.23551253501340266
+74,47,0.4955944086106794,2.0,1.3813936453662516,0.0007068627937941018,0.036790100055077345,0.8281834529873013,0,1.0,0.2519813620355978
+74,48,0.5215917174428453,2.0,1.382316212133404,0.0007055152108211585,0.03659210215587114,0.8283143071758478,0,1.0,0.23863905814281733
+74,49,0.5135782157617257,2.0,1.3818050600237235,0.0007062533160512942,0.036451273641675115,0.8282418141821534,0,1.0,0.2452607192057523
+75,0,0.16455070972587735,2.0,1.3833196427454253,0.0007002356102527896,0.036516093417937295,0.8284554571141302,1,0.13060133255887713,0.2410339223410883
+75,1,0.18022761942206825,1.95,1.383308980283536,0.0006998050088806665,0.036657708251170415,0.8175310094486922,1,0.15314837932015218,0.26322755898002453
+75,2,0.1743661036392005,2.0,1.3831551199758056,0.0006993766061417059,0.03660752054937637,0.8284318301813559,1,0.16809008775763765,0.29043356178715146
+75,3,0.2465790930448052,2.0,1.3834112311894118,0.0007000187629092863,0.03641639617997076,0.8284684113669303,1,0.2239156225382405,0.35670948009836334
+75,4,0.21116717089639991,2.0,1.3860027581401155,0.0007000338222219581,0.03671177741296428,0.8288363802243425,1,0.2680669950654784,0.31313457623402857
+75,5,0.2607857288719574,1.95,1.3859820822962945,0.0006999769623666246,0.036739707082271776,0.8179294797259442,1,0.2893117933542525,0.35020337176752125
+75,6,0.25657066823385705,1.95,1.3860436641570362,0.0006999977019043384,0.03642570748062386,0.8179386565460441,0,0.32376635972104323,0.35688041448479924
+75,7,0.3047749910698419,2.0,1.3779879199402578,0.0007010140388653615,0.03659805421196871,0.8276966231416366,0,0.40820308250129067,0.33831252689775215
+75,8,0.33667582547500624,2.0,1.3537576371638034,0.0007158731655074425,0.03639995667633959,0.8242178430050138,0,0.48466057998131595,0.3427053116082663
+75,9,0.33615656969939706,2.0,1.3538077190108289,0.0007212448241777941,0.03648103030579626,0.8242266553507588,0,0.5152889267084245,0.3668033300534241
+75,10,0.3839274004870122,2.0,1.3549389166494663,0.0007170652794392807,0.03624678636872682,0.824389269699017,0,0.5900951487744679,0.3596311365907501
+75,11,0.37302725909250234,2.0,1.3547305279868045,0.0007218912713235351,0.03626610155186742,0.8243604964168337,0,0.6054241532416076,0.36952532598619753
+75,12,0.43326901145779734,2.0,1.215547846012352,0.0009118347861966218,0.035799240408021384,0.8033510315951429,0,0.7021809520616835,0.34132210211041314
+75,13,0.452023810321309,2.0,1.212706622500842,0.0009125910800114777,0.036270924629068856,0.8029020328332884,0,0.7794035968398602,0.3342079052845498
+75,14,0.5014237659755857,2.0,1.2100405789771642,0.0009206433778698457,0.036731115872269945,0.8024823424198195,1,0.8830836873950177,0.3273009700585952
+75,15,0.5424373256714168,2.0,1.3441558641868494,0.0006962113914201172,0.035532592598075265,0.8228166450061869,1,0.938195499861619,0.3905304190892305
+75,16,0.5528044524905474,2.0,1.3405323619546134,0.0006947698898627777,0.03542256473034113,0.8222873373709509,1,0.9613977835554982,0.4274844635611603
+75,17,0.5711325360129088,2.0,1.382811079027535,0.0007011315713066267,0.03669310414280205,0.828383424231924,1,0.9751266094118343,0.47027297416058333
+75,18,0.5409273508953931,2.0,1.382460707188116,0.0007018262661384485,0.0364577647120233,0.8283338056911443,1,1.0,0.43642450298464375
+75,19,0.576844414235038,1.95,1.3820174950999267,0.0007023903741869776,0.03657073827288213,0.8173390463219669,1,1.0,0.45614804745012655
+75,20,0.5348123367661682,1.95,1.3814348733958162,0.0007033013269146942,0.03654646081002644,0.8172523192938089,1,1.0,0.4160411225538942
+75,21,0.5505819400012806,1.9,1.380908042427222,0.0007040006138701669,0.03659436128607328,0.8057012422414302,1,1.0,0.4352731333376018
+75,22,0.577573985740544,1.95,1.3826998742180845,0.000703156635922168,0.03648654904727404,0.817441129387065,1,1.0,0.45857995246847966
+75,23,0.5406949133244895,1.95,1.3822810685244176,0.0007038817279829775,0.03642775063815122,0.8173788387012979,0,1.0,0.4356497110816316
+75,24,0.5609492955246433,1.9,1.3319311303025005,0.0006683343671832481,0.03516774328951201,0.7979076026318395,0,1.0,0.4698309850821445
+75,25,0.5460762626148495,1.9,1.3288214200271165,0.0006663674310261791,0.03541029248420728,0.7974050584686068,1,0.9978968112307415,0.48972512707517646
+75,26,0.545961159679704,1.95,1.3744034595784926,0.0007085330153503523,0.03659575133541486,0.8162013970432759,1,1.0,0.45320386559901354
+75,27,0.5907498953825532,2.0,1.3730704381542553,0.0007086686903291024,0.0365523897098335,0.8269963766982074,1,1.0,0.5024996512751772
+75,28,0.5999506623727734,2.0,1.3731411848939339,0.000711971549943562,0.036587724343882466,0.8270074434952234,1,1.0,0.533168874575911
+75,29,0.6104362326250775,2.0,1.3725015001591594,0.0007150784235811837,0.036691462169219126,0.8269167964768979,1,1.0,0.568120775416925
+75,30,0.6190291705560136,2.0,1.3715706828147898,0.0007178565855851789,0.036380059629389214,0.8267843280556407,1,1.0,0.5967639018533786
+75,31,0.6500355221809856,2.0,1.370424915398736,0.0007202751079753435,0.03648745132993035,0.8266208722071114,1,1.0,0.6667850739366183
+75,32,0.6014199686460145,2.0,1.3719780508265984,0.0007009932962586558,0.03647116937953868,0.8268378314602662,1,1.0,0.6380665621533819
+75,33,0.652556424766415,1.95,1.3740915667440325,0.000699202146130544,0.036217453897817456,0.816151803161654,1,1.0,0.6751880825547164
+75,34,0.6262674743669391,1.95,1.37484688823731,0.0007034744059447822,0.036562456481186875,0.8162663920791723,1,1.0,0.6875582478897967
+75,35,0.6578316161152339,1.9,1.3726821296116645,0.000703334931873947,0.036607435566824324,0.8044100537419463,1,1.0,0.7261053870507793
+75,36,0.6876402513859026,1.9,1.3742587291678658,0.0007010864201539247,0.03627895157562065,0.8046572813729239,1,1.0,0.7921341712863418
+75,37,0.7039410990958507,1.9,1.3750000881567908,0.0007053708472862078,0.0363723890636952,0.8047751310559564,1,1.0,0.846470330319502
+75,38,0.7223711781070998,1.95,1.3562071527898358,0.0006822932293795148,0.03560481548526471,0.8134479630573125,1,1.0,0.907903927023666
+75,39,0.6965125944804369,2.0,1.3540574367294584,0.0006814352732113059,0.035488227259730706,0.8242512973818907,1,1.0,0.9217086482681228
+75,40,0.681503515491166,1.95,1.3589608280286187,0.0006874738332763872,0.03592851339361417,0.8138670432728923,1,1.0,0.9050117183038865
+75,41,0.6681098931549585,2.0,1.3568148673295624,0.0006849545866292404,0.03603547944631097,0.8246514025222182,1,1.0,0.8603663105165283
+75,42,0.7250693226276363,2.0,1.3558320340180792,0.0006832989910753203,0.03586864989621203,0.8245087589243832,1,1.0,0.9168977420921207
+75,43,0.7269172847411027,2.0,1.3533095434432096,0.0006824652346815328,0.03592746060351768,0.824143229013372,1,1.0,0.9563909491370087
+75,44,0.7318723183067094,2.0,1.3595820708489614,0.0006838134163150143,0.03601253318122161,0.8250508553628232,1,1.0,0.9729077276890311
+75,45,0.7358625710023807,2.0,1.3642896032946186,0.0006854881135033514,0.03597727316531185,0.825729792297897,1,1.0,0.9862085700079356
+75,46,0.717953329026995,2.0,1.367649031158045,0.0006875135907518628,0.036000635651806806,0.8262132671005873,1,1.0,0.9931777634233169
+75,47,0.7023372291749232,2.0,1.371639461109659,0.0006903353774788742,0.03616965020918971,0.8267862951895053,1,1.0,0.9744574305830777
+75,48,0.75,2.0,1.3704025358696001,0.0006894069521949664,0.03621984646026059,0.8266088164940593,1,1.0,1.0
+75,49,0.75,2.0,1.3683839654509202,0.0006881852655443222,0.03632820778882814,0.8263189600649835,1,1.0,1.0
+76,0,0.13364319543637576,2.0,1.3826854744599644,0.0007000548561581661,0.03650300988999095,0.8283652608401828,1,0.1324292516726453,0.2022383158910588
+76,1,0.14287776257241125,1.95,1.3828040376401116,0.0007007067041792691,0.036663482683578566,0.817455942133245,1,0.15195036922884736,0.20699204960290774
+76,2,0.156293134000117,2.0,1.3827554143968737,0.0007013412658173786,0.03662916978193002,0.8283755701868604,1,0.17683378455242865,0.2185320672638184
+76,3,0.19603952793757265,2.0,1.382816065163812,0.0007018917788663685,0.036414113304417066,0.8283843492294459,1,0.19878237560716278,0.2550885923156917
+76,4,0.1798150144102584,2.0,1.3828011459875715,0.0007012691662011133,0.036642259988718076,0.8283820512258022,1,0.20467998336653945,0.2598100702121421
+76,5,0.1819684858876175,2.0,1.386198487936527,0.0007002358334626045,0.03675181204423764,0.8288642032746837,1,0.25521069640624694,0.23294735775039568
+76,6,0.2264370115896249,2.0,1.3861979953120545,0.0007001814819684211,0.03638717531232865,0.8288641179773671,1,0.2713086765674474,0.25971180320881976
+76,7,0.20916919803436804,2.0,1.3862560175427903,0.0007001684161289576,0.03671702197035774,0.8288723444738504,1,0.28499960041033057,0.2505645262341194
+76,8,0.25001838810415966,2.0,1.3862543835587653,0.0007002073051262218,0.036755258172122454,0.8288721237368349,1,0.30627165110580273,0.29169909220612866
+76,9,0.2735010806228239,2.0,1.3862832643433163,0.0007001820044528052,0.03640094481955951,0.8288762130613774,1,0.3428447365444365,0.3212106200168311
+76,10,0.28369473516648025,2.0,1.3862743183583484,0.0007001593448935249,0.036706798351940115,0.8288749377271099,1,0.35376189717072826,0.34063325432729646
+76,11,0.2701147319378317,2.0,1.3862300124403912,0.0007001332318606607,0.036759148720723334,0.8288686458196033,1,0.4111251365734866,0.31888225769479006
+76,12,0.2811046716370485,2.0,1.3861027830343053,0.000700344848120442,0.03643853010803645,0.8288506581953355,1,0.46454243069761136,0.28429233119334646
+76,13,0.3123466936937012,2.0,1.3861857043317207,0.00070025728880402,0.036699845992745686,0.8288623960208529,1,0.5046629727808571,0.30160501527119443
+76,14,0.38734648893384677,2.0,1.386075547607531,0.0007002929096913145,0.03676299274042551,0.8288467798821849,2,0.559710883355612,0.3782071186386733
+76,15,0.45637118743100274,2.0,1.385968439060176,0.0006999404297654037,0.03643478132763235,0.8288314849378614,2,0.626351323730022,0.41943552646331295
+76,16,0.37837813866961356,2.0,1.3855998732721848,0.0007002658104373888,0.03666024505821622,0.8287792825715974,2,0.6585217719611313,0.383231432950537
+76,17,0.49039079601764857,1.95,1.386181701505396,0.0007000944284934262,0.03676839241768205,0.817959240282665,2,0.7221439758628382,0.4051106855750442
+76,18,0.47722074791002034,1.95,1.3856898373026845,0.0007001756879249166,0.03658688464273132,0.8178860135102476,2,0.7400262844282658,0.4373674471290468
+76,19,0.5336660406793774,2.0,1.3857451587445329,0.000700630003526568,0.03678373734563327,0.8288000015542704,2,0.7904122068835868,0.45833719308647547
+76,20,0.4575638159240727,2.0,1.3853439225206932,0.000700742129559316,0.036757340142647046,0.8287430942388159,2,0.8175658637608307,0.43512490139913473
+76,21,0.5059651795353245,1.95,1.3794261038131757,0.0006953840678532584,0.03624087480127573,0.8169497484747753,2,0.8460548579879336,0.4584774544671701
+76,22,0.5617797989299746,1.95,1.3786588349851137,0.000695061372864273,0.03655627471465596,0.816834884437585,2,0.8980338354939126,0.5085542157746985
+76,23,0.6184006331549295,1.95,1.3775524142201907,0.0006941288359030909,0.03647194121276904,0.8166690092957485,2,0.9507137534769712,0.5270504392138039
+76,24,0.6132291041424694,1.95,1.3797880325222946,0.0006957700765868554,0.036390864007707954,0.8170039815425296,2,0.9843225793008035,0.5650002414071601
+76,25,0.6366412020311257,2.0,1.3785000278441653,0.0006950693582166034,0.036465332921762954,0.8277679500772714,2,1.0,0.6221373401037522
+76,26,0.6172891861593537,2.0,1.3636806276409659,0.0007277116749811786,0.03668304332033861,0.8256542996920871,2,1.0,0.6242972871978454
+76,27,0.674177344233862,2.0,1.3685685031030868,0.0007228742530970766,0.03636374833636263,0.826355397984623,2,1.0,0.6472578141128732
+76,28,0.6350516431297851,2.0,1.3667020835674493,0.0007244994983733902,0.036497647550461074,0.8260878852595566,2,1.0,0.6835054770992836
+76,29,0.6920324444169207,1.95,1.3706994432283142,0.0007199713973945675,0.03676674362147743,0.8156485218045951,2,1.0,0.7067748147230689
+76,30,0.7013339462184375,1.95,1.3682322442729142,0.0007218347654565651,0.03671655829933841,0.8152778112406995,2,1.0,0.737779820728125
+76,31,0.7137798679614585,2.0,1.3658557438174665,0.0007230846642105868,0.03663143608317595,0.8259658541154942,2,1.0,0.7792662265381953
+76,32,0.6707912723406821,2.0,1.3637226487173506,0.000723579072452161,0.0366468309472244,0.8256591587719471,2,1.0,0.8026375744689404
+76,33,0.6790412011829648,1.95,1.3832292992807371,0.0007023647712030973,0.03648215806484388,0.8175198865470865,2,1.0,0.8301373372765493
+76,34,0.7377075676163459,2.0,1.3845486499959652,0.0007017155965565375,0.036739769059677525,0.8286304697752469,2,1.0,0.8590252253878201
+76,35,0.6451172540999163,2.0,1.3841356303103791,0.000702488279809942,0.03677912403711905,0.8285720316917421,2,1.0,0.8170575136663875
+76,36,0.7300173235049742,1.95,1.384248326503404,0.0007014523608808373,0.03657875197675459,0.8176715849334353,2,1.0,0.8333910783499142
+76,37,0.7156715670708507,1.95,1.38360718300469,0.0007020984504111745,0.03667251337650536,0.8175761734600419,2,1.0,0.8855718902361687
+76,38,0.7029873260699546,2.0,1.3831100298039707,0.000703071273166488,0.036412463569759176,0.828426471599438,1,1.0,0.9099577535665155
+76,39,0.6712321345083425,2.0,1.3752752513286577,0.0006931755979468581,0.03639526312349045,0.8273071724041953,1,1.0,0.8707737816944748
+76,40,0.6664389647607254,1.95,1.3736844424504682,0.0006924277675740151,0.036349186663309614,0.8160886736009483,1,1.0,0.854796549202418
+76,41,0.7057441833362402,2.0,1.3715123641350524,0.0006913949572691264,0.036178068741236885,0.8267683962959858,1,1.0,0.885813944454134
+76,42,0.7177675513479881,2.0,1.37414406318132,0.0006950303281888011,0.03620721432246856,0.8271460300578236,1,1.0,0.9258918378266269
+76,43,0.7246138496339475,2.0,1.3755106297724249,0.0006982307386492791,0.03633107720219714,0.8273422425639454,1,1.0,0.948712832113158
+76,44,0.6861287424487504,2.0,1.3761364741671915,0.0007012787153074391,0.03659800620271543,0.8274324947097521,1,1.0,0.9204291414958348
+76,45,0.7442750982846553,1.95,1.3745007371034563,0.0007014944978609736,0.036439914888195424,0.8162138781759052,1,1.0,0.9809169942821843
+76,46,0.696941317948681,1.95,1.3737287292092124,0.0006989935127668329,0.0362790681368607,0.8160972912318709,1,1.0,0.9564710598289365
+76,47,0.687728210494865,1.9,1.3719374932177841,0.0006991339912815033,0.03635322285145684,0.8042915476671797,1,1.0,0.92576070164955
+76,48,0.6765845721707553,1.95,1.369507528075553,0.0006990779407072536,0.03635616440233775,0.8154629427025624,1,1.0,0.8886152405691843
+76,49,0.7154726672471664,2.0,1.3676939952281828,0.0006990124710002473,0.036382577800438354,0.8262230251771988,1,1.0,0.9182422241572212
+77,0,0.13768722983393003,2.0,1.386011762273723,0.0007001796963523113,0.03639361996102636,0.8288376989957915,0,0.13048947762602203,0.21830479594507077
+77,1,0.1363724008813632,1.95,1.3859842440618064,0.0007001150881661728,0.03672487112101257,0.8179298427972332,0,0.1628867563852569,0.2373923277575348
+77,2,0.2054947867585876,2.0,1.3860974912640447,0.0007001193976567171,0.03672140205587329,0.8288498435542857,0,0.23397377437659345,0.23968425669316737
+77,3,0.2427343758160086,2.0,1.3726029833606992,0.0007002159078185893,0.03658103488811839,0.8269270666533396,0,0.32834345487262173,0.20465664622319957
+77,4,0.19620400911694322,2.0,1.3733344116146704,0.0007034014618050162,0.03650110077608665,0.82703263406544,0,0.3427573588283371,0.19700355195202793
+77,5,0.2766806684160006,1.95,1.3837078145015618,0.0006990494122291187,0.03665998727145599,0.8175902722591253,0,0.44083732603314896,0.1678191266758034
+77,6,0.2642849301187177,1.95,1.385274463657593,0.0006995025278454028,0.03639958637319214,0.8178239354812876,0,0.47279818288023645,0.1838855232220769
+77,7,0.3134123581308281,2.0,1.3853039254074893,0.0006995993240687154,0.03673255458860827,0.8287370930538519,0,0.5489274132841507,0.17947130939055925
+77,8,0.33671667153518525,2.0,1.3857286211946591,0.0006997928568438156,0.036736811039329936,0.8287974174501797,0,0.6159420323398934,0.16779952866409295
+77,9,0.3900131119965589,2.0,1.300005283212616,0.0006454475371412284,0.03467088347890476,0.8162727421453633,0,0.7272538120006876,0.16370529065427972
+77,10,0.4099684328382845,2.0,1.2972924491461744,0.0006434546409479349,0.03438774643093907,0.8158649463028463,0,0.8059849173227878,0.15858155303056456
+77,11,0.38176527259289483,2.0,1.2812380817182711,0.0006528126454663096,0.03453744464718567,0.8134437091171104,0,0.8271442670935414,0.16969188585159437
+77,12,0.45339536586548945,1.95,1.2890304166198383,0.0006731169532922166,0.035168182320378216,0.8030356957813569,0,0.9083661993168048,0.1668296204625584
+77,13,0.45185909008147196,1.95,1.2920370171115887,0.0006693002113099013,0.034678051106649746,0.8035096094497648,0,0.9399488020721679,0.1862652308420157
+77,14,0.4712997231397601,2.0,1.2879824417618688,0.000666760571891911,0.03400529661772877,0.8144692387125421,0,0.9677597944387683,0.21398601788084234
+77,15,0.4875642559520756,2.0,1.3751892980124136,0.0006925996458592886,0.03652412477545973,0.8272947273252534,0,0.9939586031331572,0.23326938232937558
+77,16,0.5089160885040027,2.0,1.3750205796027541,0.0006929247311928161,0.036393910810440376,0.8272707127233304,0,1.0,0.19638696168000896
+77,17,0.482383815195269,2.0,1.2690283750904685,0.0006545203410969695,0.03437016597285108,0.811584276224183,0,1.0,0.2079460506508966
+77,18,0.5017835499631054,1.95,1.3770817006982825,0.0006950635874364372,0.0361647713074789,0.8165988032008835,0,1.0,0.20594516654368442
+77,19,0.5025385304526688,2.0,1.3794772006361606,0.0006958030160647722,0.03654580769086402,0.8279074282562868,0,1.0,0.20846176817556253
+77,20,0.5065536270706312,2.0,1.3815343992569593,0.0006968782796004272,0.03662470061393995,0.8282006394630291,0,1.0,0.18851209023543747
+77,21,0.4786739360191651,2.0,1.248683493008436,0.0006402866304328181,0.03300051936107327,0.8084490868328282,0,1.0,0.19557978673055024
+77,22,0.4834880947121123,2.0,1.243458686483601,0.0006366214615102231,0.03310614439010501,0.8076375346385316,0,1.0,0.21162698237370758
+77,23,0.505945633789494,2.0,1.3825422437476869,0.0006977409634232563,0.0366396764508017,0.8283442378519719,0,1.0,0.21981877929831328
+77,24,0.5059676918651779,2.0,1.3837200181774612,0.0006983600785220657,0.03640042584420487,0.8285118168416384,0,1.0,0.1865589728839262
+77,25,0.45842786291609167,2.0,1.2247758455071762,0.0006225942510984551,0.03330566803886621,0.8047138821294514,0,1.0,0.1947595430536388
+77,26,0.46388103677657555,2.0,1.2361312677530922,0.0006527226093965794,0.033425510804820695,0.8065016117400604,0,1.0,0.21293678925525172
+77,27,0.46157801688562883,2.0,1.3841863099991811,0.0006987480735257045,0.036483422905677576,0.8285781676479865,0,1.0,0.20526005628542932
+77,28,0.5014474136136657,2.0,1.3843385728765032,0.0006990098616719354,0.03655688973100171,0.828599867794515,0,1.0,0.20482471204555242
+77,29,0.4608590454053528,2.0,1.3850948750597036,0.0006993456726956448,0.03673516895866184,0.8287073480843928,0,1.0,0.20286348468450924
+77,30,0.46497090481576464,1.95,1.3851467782430147,0.0006994995082056924,0.03651418467878544,0.8178049102217673,0,1.0,0.21656968271921537
+77,31,0.4820974175937109,2.0,1.3850493389251426,0.0006996031633024422,0.03670944976652764,0.8287009571704981,0,1.0,0.20699139197903624
+77,32,0.504294791149966,2.0,1.384978782480112,0.0006998010074147823,0.036752047141354965,0.8286909972228119,0,1.0,0.1809826371665531
+77,33,0.4855142523846746,2.0,1.2475103585946101,0.000692568465254425,0.03364473777387493,0.8082835543203839,0,1.0,0.2183808412822485
+77,34,0.5118189984891832,2.0,1.385147178333255,0.0007001492172841856,0.03655600596311562,0.8287150006045224,0,1.0,0.23939666163061052
+77,35,0.5163046864125805,2.0,1.3857088794808254,0.0007001382944348186,0.03677445666844562,0.8287947142667289,0,1.0,0.2543489547086016
+77,36,0.5176833779161831,2.0,1.3860575014669299,0.0007001370298186858,0.03657778327504569,0.8288441756184768,0,1.0,0.22561125972061047
+77,37,0.5157142274871517,2.0,1.3859342727925192,0.0006999617053820033,0.0365825801481485,0.8288266437568548,0,1.0,0.219047424957172
+77,38,0.4897960438431577,2.0,1.3857234782312569,0.0006997677134546416,0.036764589828646145,0.8287966805669255,0,1.0,0.23265347947719228
+77,39,0.47046479898311366,1.95,1.385637180449118,0.0006997633635728862,0.036574152275903805,0.8178780473862168,0,1.0,0.23488266327704552
+77,40,0.5160308579349892,2.0,1.3856419800240487,0.0006998980916427098,0.03669222071451949,0.8287851532543097,0,1.0,0.2201028597832969
+77,41,0.5139103767852642,2.0,1.3854285233712422,0.0006996233372779728,0.03675230152194301,0.8287547835741068,0,1.0,0.21303458928421398
+77,42,0.5112529986887573,2.0,1.3851103028774503,0.000699356005060186,0.03657123364217478,0.8287095410081976,0,1.0,0.2041766622958574
+77,43,0.49748547569081175,2.0,1.3847038677311296,0.0006990502170656677,0.036490579809076565,0.8286517529793919,0,1.0,0.19161825230270588
+77,44,0.46048800451883354,2.0,1.2324922832116139,0.000682226555727054,0.03396812650949196,0.8059423190792608,0,1.0,0.20162668172944512
+77,45,0.5072353511790042,1.95,1.3845868404999315,0.0006989686590356592,0.036560258612594265,0.8177213063796938,0,1.0,0.19078450393001378
+77,46,0.49816510593640134,2.0,1.2379486073782928,0.0007239259694575048,0.03499071476314447,0.8068072597190616,0,1.0,0.16055035312133775
+77,47,0.48719810087075444,2.0,1.2585890352521953,0.0007141805074973278,0.03476462466658374,0.8100011112726598,0,1.0,0.15732700290251486
+77,48,0.46816715109717677,2.0,1.2688775566392587,0.000706969968808791,0.035247364484303476,0.8115772543789282,0,1.0,0.16055717032392242
+77,49,0.4694145294640485,2.0,1.2644053359339118,0.0007043176485336739,0.03514031986279821,0.810891597517901,0,1.0,0.16471509821349475
+78,0,0.10989466554263104,2.0,1.3855406419332383,0.0007003929797976837,0.036368579082388296,0.8287709133262632,0,0.12063001947343574,0.20547552584418913
+78,1,0.1969587076601949,1.95,1.3857193996102275,0.0007003016841349739,0.03671362722573489,0.8178904542628935,0,0.23155550436801597,0.18112168637662845
+78,2,0.1872509033731402,1.95,1.3834582199155259,0.0006991333569966164,0.03664563421728645,0.8175530707080682,0,0.25367200731084794,0.2192736681626701
+78,3,0.2598895801898088,2.0,1.3727649283344385,0.0007038056464954604,0.03660059265420647,0.8269512701854457,0,0.3542645193463938,0.2272792415041709
+78,4,0.21504683248493395,2.0,1.37346481562549,0.0007067437010187794,0.03656903353201492,0.8270522436475279,0,0.36405251122403476,0.2314194266510668
+78,5,0.2581574120882494,1.95,1.3745158121577385,0.0007049246228859527,0.03651458673386127,0.8162171686413946,0,0.393566184190333,0.26910312804038716
+78,6,0.2521616927032021,1.95,1.3761694360592345,0.0007034027869531614,0.036171735207845765,0.8164646375179145,0,0.4219923853899131,0.27788246182412274
+78,7,0.3183759241190772,2.0,1.3546344938213488,0.0007083612831197985,0.03614459114224292,0.8243426728713833,0,0.4928337738429348,0.2708080486063444
+78,8,0.3693955600300607,2.0,1.3552930389223423,0.0007114823455057293,0.03629453064791639,0.8244389145235431,0,0.6061763699913647,0.2564167067783827
+78,9,0.3588400765653328,2.0,1.221703562581498,0.0009134919020940752,0.036837330785727575,0.8043222063341746,0,0.6364426743119204,0.2808766894685486
+78,10,0.4103113379528422,2.0,1.2371025844986565,0.0008941639197160377,0.03685593890710888,0.8067284482401736,0,0.7142917676780893,0.2819821029386883
+78,11,0.4489403724796355,2.0,1.2348890611390242,0.0008975909640314365,0.036601195336625016,0.8063841566397064,0,0.798344495799126,0.2653419138666169
+78,12,0.4660545134282374,2.0,1.232604434787767,0.0008998392225827133,0.03593549395693326,0.806027914107001,0,0.8690781163510323,0.2614108896260816
+78,13,0.4321927386388368,2.0,1.3850112525394014,0.0006992998712830195,0.03665695782711195,0.8286954644137738,0,0.8855154316324217,0.25995521995289356
+78,14,0.4725807683384293,1.95,1.3849844216691312,0.0006993627942151574,0.03671481691972491,0.8177806770927141,0,0.9234809730782318,0.2772945970237885
+78,15,0.5303066765961297,1.95,1.384885934628889,0.0006994818790677215,0.0364933174595803,0.8177660360368117,0,1.0,0.2676889219870989
+78,16,0.5232195671135941,1.95,1.384522470425745,0.0006990751661560066,0.03672716612334039,0.8177117433715069,0,1.0,0.27739855704531363
+78,17,0.5311345465776665,2.0,1.385254612906623,0.000699437331590036,0.03655079241434543,0.8287300479369795,0,1.0,0.2704484885922213
+78,18,0.47767499096574023,2.0,1.384877142529311,0.0006992000116796832,0.036416713889796226,0.8286763970580001,0,1.0,0.2589166365524673
+78,19,0.5231766798306816,1.95,1.384897976918963,0.0006991951138162088,0.03661723226564803,0.817767745159569,0,1.0,0.24392226610227197
+78,20,0.5151094782315412,1.95,1.3844026665076725,0.0006988469931809987,0.03649304870793097,0.8176938167820532,0,1.0,0.2503649274384706
+78,21,0.5188838884813172,2.0,1.3850487383452197,0.0006994494582644616,0.03659336544912341,0.828700828276121,0,1.0,0.22961296160439026
+78,22,0.5090080959819747,2.0,1.3845928588019698,0.0006992684523087784,0.03660966456633482,0.8286360524437973,0,1.0,0.19669365327324895
+78,23,0.5005720202782046,2.0,1.3339319280376143,0.0007311628659300523,0.036219412264265505,0.8213314388763806,0,1.0,0.20190673426068184
+78,24,0.501291863931234,2.0,1.3857691650067698,0.0006998007951321181,0.03648513353173481,0.8288031724792532,0,1.0,0.20430621310411332
+78,25,0.5057523493436635,2.0,1.3860023032271152,0.000700058760421796,0.03663453346062332,0.8288363227631552,0,1.0,0.18584116447887822
+78,26,0.48791388192930535,2.0,1.3387681600532841,0.000718316189516296,0.035818183282291985,0.8220362758146075,0,1.0,0.22637960643101765
+78,27,0.5059418963471479,2.0,1.3862647463814186,0.0007001772828492747,0.036522090583420326,0.8288735851101379,0,1.0,0.21980632115715978
+78,28,0.4612746884655775,2.0,1.386253965706967,0.0007001448372029655,0.036632372448826916,0.8288720467461247,0,1.0,0.20424896155192504
+78,29,0.4842554745274028,1.95,1.3861854575915507,0.0007001125759554863,0.036781178925313275,0.8179598049748139,0,1.0,0.21418491509134263
+78,30,0.46815749184508704,1.95,1.386210533020313,0.0007002174362847622,0.03670527830972228,0.8179635699427994,0,1.0,0.22719163948362342
+78,31,0.5097621461481581,2.0,1.3860983086975687,0.0007002658270440637,0.036754286974077656,0.8288500010578292,0,1.0,0.19920715382719334
+78,32,0.48515767401493803,2.0,1.3265533833247107,0.0007170282629562564,0.03554019702869159,0.8202419296761404,0,1.0,0.21719224671646006
+78,33,0.466880565875838,1.95,1.3856875814473417,0.000700418326397333,0.036539415928480395,0.8178857497851337,0,0.9932176768403338,0.231978317132348
+78,34,0.5095352945758023,2.0,1.3854384928129875,0.0007005333002423309,0.03673640413458994,0.828756456718128,0,1.0,0.23178431525267415
+78,35,0.4958175749424443,2.0,1.3854003972785003,0.000700122448507803,0.03676109104340215,0.8287509335444916,0,1.0,0.2527252498081475
+78,36,0.5144783138328973,2.0,1.3853590587239095,0.0007004541918972261,0.03657958751605751,0.8287451607468208,0,1.0,0.24826104610965766
+78,37,0.5159891384853748,2.0,1.3852300642933915,0.0007000265683880346,0.036571700626626326,0.8287267308343728,0,1.0,0.2532971282845823
+78,38,0.5158764105090295,2.0,1.385017881127391,0.000699657069155118,0.03675428648310371,0.8286965068160276,0,1.0,0.25292136836343165
+78,39,0.47886644341841245,2.0,1.384718815826077,0.0006992630319475082,0.03653042497165514,0.8286539358531754,0,1.0,0.26288814472804145
+78,40,0.4783860044215201,1.95,1.3845352113761964,0.0006993410692486155,0.03649419144826943,0.8177137217902888,0,1.0,0.26128668140506683
+78,41,0.5064373499453922,2.0,1.3842281762444286,0.0006993889203908928,0.03639800037150383,0.82858429613849,0,1.0,0.28812449981797406
+78,42,0.5178636168189052,2.0,1.3843033684129606,0.0006998202518758403,0.036564410933517255,0.8285950981157716,0,1.0,0.25954538939635086
+78,43,0.5200001274809599,2.0,1.3840167674462918,0.0006993212077344448,0.0365116366068731,0.8285542479245764,0,1.0,0.26666709160319946
+78,44,0.5045980508912594,2.0,1.383641994896355,0.0006987847951749715,0.03669588991080959,0.8285008517044199,0,1.0,0.28199350297086456
+78,45,0.531237926197339,2.0,1.3836044009579085,0.0006991468334460448,0.03653306775819053,0.8284956129058798,0,1.0,0.27079308732446333
+78,46,0.5211741571453034,2.0,1.3846732050638482,0.0006993642698807875,0.036474013227865185,0.8286474883891983,0,1.0,0.27058052381767755
+78,47,0.5098263776487523,2.0,1.3842985726580588,0.0006989318860385654,0.036706142550540374,0.8285941646546311,0,1.0,0.29942125882917403
+78,48,0.4986364054729157,2.0,1.3842144452967657,0.0006991254209433388,0.03658708979829386,0.8285822710391996,0,1.0,0.3287880182430523
+78,49,0.5014187491987682,2.0,1.3841049549064695,0.0006993434044650418,0.036463199393553365,0.828566781081886,0,0.99875753685838,0.33971911485138717
+79,0,0.1727850275096506,2.0,1.385729446156365,0.0007005593128897084,0.0363517785173719,0.8287977520139581,0,0.1780437147243904,0.20522513873298143
+79,1,0.17884270402870853,1.95,1.3856177686326885,0.0007005964114930924,0.03671476179228851,0.8178754040832803,0,0.21909664217167368,0.2373468238667969
+79,2,0.23053231582313008,2.0,1.3775523592167727,0.0006999578850878502,0.03657937681577346,0.8276341954833097,0,0.3009214823846463,0.23387907623090518
+79,3,0.19042162110951938,2.0,1.3771729574956248,0.0006998963737962633,0.03654740706426059,0.8275800473320709,0,0.2911188834964537,0.24658022570312632
+79,4,0.22836574065312745,1.95,1.3772425783150766,0.0006989116664336474,0.03647528127663384,0.8166240483382113,0,0.3162784059696091,0.2728479275509461
+79,5,0.2418325085994002,1.95,1.378690312891216,0.0006984068569048151,0.036448243349626944,0.8168405950296747,0,0.3285581839664423,0.30136411670941093
+79,6,0.23575111244377603,2.0,1.3799258816007438,0.0006980045184188086,0.0362313845169325,0.8279719725830049,0,0.3468394534035232,0.32338443694122254
+79,7,0.24453491791791596,2.0,1.38011647295185,0.0006975155631968795,0.03654166856418613,0.827998978377337,0,0.3626951697326836,0.3315228334161417
+79,8,0.3142432923686698,2.0,1.3800041857448915,0.0006969408640583292,0.036572747861345144,0.827982822512647,0,0.43005088913829254,0.34074312237784277
+79,9,0.34444041713642726,2.0,1.3450857948098118,0.000714457327664805,0.03618000059477592,0.822957495222164,0,0.5077536212321152,0.33779656214527065
+79,10,0.3445805048592816,2.0,1.345261243096341,0.0007199365210669282,0.036020182829068555,0.8229846527517082,0,0.5453471338185802,0.3548055044394982
+79,11,0.39364186378953653,2.0,1.3453873263649436,0.0007158739830153406,0.035916383206900035,0.8230018363543229,0,0.615984435767748,0.3574936316081246
+79,12,0.42232783990382095,2.0,1.2072549108236919,0.0009204007492070031,0.03579546250858865,0.802040352548072,0,0.6890533238524958,0.35568836787607544
+79,13,0.4217386781723752,2.0,1.2044667352331297,0.0009210133853352847,0.0362178284600277,0.8015974914148187,0,0.7145213893685739,0.3864337414164854
+79,14,0.4704652040938328,2.0,1.2210414268457521,0.0009001940166829322,0.03660092852458678,0.8042137855431372,0,0.7962558125613227,0.3732095968976789
+79,15,0.5110713196960929,2.0,1.2178573196199936,0.0009007340958516652,0.036732290772097186,0.8037121199365668,0,0.8901402218434384,0.35005076986239164
+79,16,0.5298173877790334,2.0,1.3716621862877965,0.0006975480984526117,0.03633902557369319,0.8267916154918642,0,0.966099544948116,0.34459189933262346
+79,17,0.4997307286491371,2.0,1.3707100476359584,0.0006978396109460687,0.03639957824253372,0.8266553034594355,0,0.98529605660437,0.3520410200246303
+79,18,0.551068223637867,1.95,1.374557222407454,0.0006974187550108889,0.03641518570551465,0.8162211285623626,1,1.0,0.3368940787928898
+79,19,0.5246253565586881,1.95,1.3469549020664675,0.0006906835373584547,0.035785428728553136,0.8120424181740404,1,1.0,0.3487511885289605
+79,20,0.5112490779599863,1.9,1.3500247343240828,0.0007008006380023418,0.03572582292429342,0.8008198518797739,1,1.0,0.3374969265332876
+79,21,0.5643733677758687,1.95,1.3520135191164124,0.0006970946895046729,0.0358977074617844,0.8128152449173895,1,1.0,0.38124455925289547
+79,22,0.5865654318306976,1.95,1.3495037292219632,0.000696214567093267,0.03591846209457963,0.8124328207954054,1,1.0,0.45521810610232516
+79,23,0.5570293561299127,1.95,1.3718849297248121,0.0007162492686558955,0.03637384175724188,0.8158255934524015,1,1.0,0.45676452043304233
+79,24,0.5822195925865462,1.9,1.3754361714645622,0.0007132526005005724,0.036545325528585845,0.8048461118905231,1,1.0,0.47406530862182056
+79,25,0.5961663278332343,1.9,1.3741561791301902,0.0007153089048994018,0.036557418385903165,0.8046456329832892,1,1.0,0.5205544261107811
+79,26,0.6027315753825071,1.95,1.3730317828446001,0.0007168196687926156,0.03672507214035181,0.8159980218185988,1,1.0,0.5424385846083569
+79,27,0.6274637555525073,2.0,1.37210435405413,0.0007177861386472268,0.03672308380762958,0.8268607226838761,1,1.0,0.591545851841691
+79,28,0.6001221642183477,2.0,1.3737888927321076,0.0007139119794887849,0.036643218578639496,0.8271006439078148,1,1.0,0.600407214061159
+79,29,0.6042811707902493,1.95,1.3756636425378916,0.0007072719247402955,0.036655001025232926,0.816389992109162,1,1.0,0.6142705693008312
+79,30,0.651683473575557,2.0,1.373504479645513,0.0007076787590147464,0.03658887894535823,0.8270581844779771,1,1.0,0.6722782452518563
+79,31,0.6049383578651273,2.0,1.3736965678189363,0.0007114135717808138,0.03661015151695986,0.8270867259545414,1,1.0,0.6497945262170907
+79,32,0.597732238796518,1.95,1.3761423450121975,0.0007085575364816636,0.036682323309134554,0.8164621227873593,1,1.0,0.6257741293217269
+79,33,0.5873390356733457,2.0,1.3775058457712068,0.0007062923390490603,0.03660268425673986,0.8276293673090303,1,1.0,0.5911301189111521
+79,34,0.6033619137781461,2.0,1.3773639787074499,0.0007109311365475167,0.03665624264308753,0.8276104514066315,1,1.0,0.6112063792604866
+79,35,0.6482259102261682,2.0,1.378496543887246,0.000704429891545162,0.036701189232128076,0.8277701223932876,1,1.0,0.6607530340872269
+79,36,0.6209086583427709,2.0,1.3783366806965516,0.0007070142341067146,0.036578536050876444,0.8277480669826115,1,1.0,0.6696955278092362
+79,37,0.6458545983271803,1.95,1.3768903794965508,0.0007075474559304271,0.03654892592838799,0.8165738879291666,1,1.0,0.686181994423934
+79,38,0.6080381218735202,1.95,1.3790866325140771,0.0007055861180441892,0.03624321250851746,0.8169020294289834,1,1.0,0.660127072911734
+79,39,0.6201489407800475,1.9,1.3799942863293992,0.0007036256409081584,0.03664954688672427,0.8055580392673265,1,1.0,0.6671631359334913
+79,40,0.5976956099733831,1.95,1.3783650471892648,0.0007039596657924894,0.036593031463578354,0.8167935882208212,2,1.0,0.6256520332446104
+79,41,0.6744867422789513,1.9,1.3675368023151129,0.0007183806762698739,0.03663560660139271,0.8036039971990314,2,1.0,0.6482891409298379
+79,42,0.5805172880193055,1.9,1.3643710772331514,0.0007194902206954946,0.03607238753410707,0.803104238512337,2,1.0,0.6017242933976849
+79,43,0.5721673643684279,1.8499999999999999,1.3680922264136934,0.0007151590873508095,0.03654220028854097,0.7915877327283988,2,1.0,0.5738912145614261
+79,44,0.6335442343186758,1.9,1.3732462889540091,0.0006923595572661803,0.036289360373043054,0.80449534779005,2,1.0,0.6118141143955858
+79,45,0.6217956272361341,1.9,1.3685424049345118,0.0007145448240175774,0.03663009489998978,0.8037614475426477,2,1.0,0.6393187574537803
+79,46,0.6830547801471634,1.95,1.371514351838301,0.0007108264828582043,0.036654184937389624,0.8157682760739875,2,1.0,0.6768492671572112
+79,47,0.691736032550658,1.95,1.3693692385601155,0.0007108732451300208,0.03660161059731239,0.8154456818273509,2,1.0,0.7057867751688599
+79,48,0.6051016142510646,2.0,1.3665394814048466,0.0007110350487695652,0.036554230085527675,0.8260606542761518,2,1.0,0.6836720475035485
+79,49,0.5978256650399136,1.95,1.370089606641379,0.0007073853785636632,0.036588223765553804,0.8155530189516274,2,1.0,0.6594188834663788
+80,0,0.1568834693959989,2.0,1.3825855172143346,0.0007021595740204833,0.03642966644932634,0.8283516473470994,1,0.12642854680822815,0.22104016890902542
+80,1,0.1813062963153498,1.95,1.382639500665184,0.0007015739345008668,0.036676789516744204,0.817431647205689,1,0.16119740156902945,0.2560911189591268
+80,2,0.22949177906825385,1.95,1.3824658215317809,0.0007010896556961856,0.03662121300850654,0.8174055818371773,1,0.21290865794314065,0.31442771963665866
+80,3,0.20988344433793196,1.95,1.3862520798115827,0.0007002170788847084,0.03639223902795723,0.8179697560373071,1,0.23173599537637077,0.32396348729127894
+80,4,0.2115812686019456,2.0,1.3862727370987127,0.0007001865780096924,0.0367588427750347,0.8288747211646778,1,0.24021706087975342,0.3183148141668141
+80,5,0.27826573883990263,2.0,1.3862671664760815,0.0007001593917166902,0.03674833155614972,0.8288739233059051,1,0.2881811024118339,0.37664432625056354
+80,6,0.2475978993421612,2.0,1.386288572819083,0.0007001695043050513,0.03638276921904328,0.8288769624705421,1,0.34014815710898033,0.3384621216618968
+80,7,0.2594701023520067,1.95,1.386291128074973,0.0007001733181643815,0.03671619393205746,0.8179755570342407,1,0.375120117522327,0.3314068511435862
+80,8,0.339616965923013,2.0,1.3862636756185742,0.0007001769437630046,0.0366833085126829,0.8288734331345707,1,0.4298491047997628,0.3922577466770263
+80,9,0.3253899913081972,2.0,1.3859511133402866,0.0006999957284650608,0.036388686803691235,0.8288290426171127,1,0.4573459722880588,0.4081720079765789
+80,10,0.3182407096077215,2.0,1.3804783627431514,0.0006972980662116417,0.03651918702127292,0.8280504494631867,1,0.5012648720575883,0.35911586928228717
+80,11,0.3405300398499507,2.0,1.3859297408285487,0.0006999866602814484,0.036754970678258836,0.8288260078732741,1,0.5116500749664314,0.38623336621126036
+80,12,0.33596445744669,2.0,1.3857172520855499,0.0006999172511734284,0.03644831419917218,0.8287958395570288,2,0.548596304600108,0.355086452022156
+80,13,0.43685982220867925,2.0,1.3856188577427402,0.0006997738272895759,0.036675876228326326,0.8287818369033373,2,0.6122096135792486,0.3732532559232659
+80,14,0.355029885211775,2.0,1.3858691378944537,0.0006999950966303664,0.03675722746953516,0.8288174121480814,2,0.6327178428567568,0.33980916023024077
+80,15,0.442279554247203,1.95,1.385967526586607,0.0006999582350212898,0.03643052332302884,0.8179273064894774,2,0.6864882105014591,0.3922809001553979
+80,16,0.46733833836128624,1.95,1.386107123398292,0.0007001907755837566,0.03678416743516772,0.8179481638897793,2,0.7122975319368743,0.44139775195512176
+80,17,0.5382544006916821,1.95,1.3855388119904422,0.0006998709960952564,0.03657813658540704,0.8178634266637113,2,0.7921629452682198,0.471297408614647
+80,18,0.5346554232344252,1.95,1.3851141513344756,0.0006998287455275511,0.03656360996866638,0.817800146875475,2,0.8285008115696427,0.5108503286885602
+80,19,0.532137955506611,2.0,1.3669789075835626,0.0006894595860038892,0.036081604574456874,0.8261175855110318,2,0.8664234037559271,0.5185619800141339
+80,20,0.5782175100788767,2.0,1.367445882771529,0.0006887595987430115,0.03605749018937647,0.826184453988897,2,0.8920016827156686,0.5713894566420306
+80,21,0.6036135008639476,2.0,1.3650986992566565,0.0006875131079553162,0.03583373283446799,0.8258467730928466,2,0.9461381411992662,0.5838608146141369
+80,22,0.6025665079199037,2.0,1.3624387576433337,0.0006862241990605077,0.03593296863823046,0.8254635069313522,2,0.974841690279303,0.6087661060272749
+80,23,0.617444787640624,2.0,1.3670521599633843,0.000710808968213301,0.036542503622921566,0.826134240952379,2,1.0,0.6248159588020801
+80,24,0.6470148112685886,2.0,1.3693941990385072,0.0007072548793996974,0.03656931991580127,0.826469366802653,2,1.0,0.6567160375619618
+80,25,0.5893330572772884,2.0,1.369561914112515,0.0007122705618603053,0.03655398732874647,0.826494857318196,2,1.0,0.6311101909242945
+80,26,0.6771324130808091,1.95,1.3729229624587005,0.0007090878635333535,0.03663018415308251,0.8159793604339861,2,1.0,0.6571080436026968
+80,27,0.6299892028389611,1.95,1.3701022956145266,0.0007094746346619937,0.03638934945530499,0.8155555562514019,2,1.0,0.66663067612987
+80,28,0.6541046865630794,1.9,1.3721377217088786,0.0007062950612253477,0.03655487986085457,0.8043253171593173,2,1.0,0.6803489552102646
+80,29,0.6694159811041126,1.9,1.371870009650074,0.0007109634159486374,0.03665922513327388,0.8042846492729043,2,1.0,0.7313866036803752
+80,30,0.7041797405423387,1.95,1.3713948260201543,0.0007150412271390125,0.0365648023631473,0.8157515787769037,2,1.0,0.7472658018077956
+80,31,0.6908650735231283,1.95,1.3694809732541517,0.0007155596142486536,0.03661580537925506,0.8154639070756274,2,1.0,0.8028835784104273
+80,32,0.62948742627206,2.0,1.3851389178480704,0.0007016785019910959,0.036346854667981224,0.8287142622097914,2,1.0,0.7649580875735335
+80,33,0.7240021845901459,1.95,1.3691128957838001,0.0007192707719401639,0.03639130169619627,0.8154096286029814,2,1.0,0.8133406153004864
+80,34,0.7059453289095972,1.95,1.3853407825460329,0.0007009626376636583,0.03674330801238567,0.8178342510467784,2,1.0,0.8531510963653239
+80,35,0.6922463186713588,2.0,1.3849174436079206,0.0007014125201033766,0.03641286590486117,0.8286827468100978,2,1.0,0.874154395571196
+80,36,0.6513950236984625,2.0,1.3856410894208282,0.0007008855796436794,0.036596220236911205,0.8287853071271026,2,1.0,0.837983412328208
+80,37,0.7430622103540018,1.95,1.3857453157068966,0.0007003946744061379,0.03659723833608703,0.817894342021728,2,1.0,0.8768740345133391
+80,38,0.7522142582523762,1.95,1.3855137171517897,0.0007008457209494813,0.03637988793499555,0.8178599788354295,2,1.0,0.907380860841254
+80,39,0.7597235061852555,2.0,1.3850420317886398,0.0007012373101842515,0.036733546417089445,0.8287003838330663,2,1.0,0.9324116872841852
+80,40,0.6683323892566642,2.0,1.3843435352891944,0.0007015772295040656,0.03652424252375393,0.8286013018082419,2,1.0,0.8944412975222137
+80,41,0.6598938173033326,1.95,1.3844606009305886,0.0007006328393006512,0.03674985568689484,0.8177029853587702,2,1.0,0.8663127243444418
+80,42,0.6501668984335305,2.0,1.3842193572550652,0.0006998017402369765,0.03671061181756939,0.8285831608211873,2,1.0,0.8338896614451016
+80,43,0.7099631081855033,2.0,1.3838601798997998,0.0006990451711884355,0.03647702472726889,0.8285319247581774,2,1.0,0.8665436939516779
+80,44,0.720371761729692,2.0,1.3839163305179596,0.0006997355255783141,0.036720214214915683,0.8285400978937418,2,1.0,0.9012392057656397
+80,45,0.7579606048811197,2.0,1.3836786655552924,0.0007003389248169868,0.036534996184959735,0.8285065037052904,2,1.0,0.9265353496037325
+80,46,0.7662380859800542,2.0,1.3831964204814635,0.0007009040743659515,0.03643832005388088,0.8284381344408517,2,1.0,0.9541269532668473
+80,47,0.7731167590227096,2.0,1.3824407739792062,0.0007014501894569669,0.03672216757882263,0.8283308642765275,2,1.0,0.9770558634090322
+80,48,0.75,2.0,1.381395674061355,0.0007019144207865835,0.03659127987970355,0.8281823333952185,2,1.0,1.0
+80,49,0.73,1.95,1.381108885912379,0.0007036270456973052,0.036503388099484974,0.8172037250259535,2,1.0,1.0
+81,0,0.13496882837203472,1.9,1.3853984514889301,0.0006997164977796176,0.03644356285085572,0.8064018987142285,0,0.12747544411746486,0.21326216908349593
+81,1,0.15721475511256894,1.8499999999999999,1.3853073735785584,0.0006996143476481233,0.03671103509193484,0.7944084967359408,0,0.16862030612758322,0.23255544220511884
+81,2,0.22235436489436644,1.8499999999999999,1.3851886514600917,0.0006994879417940574,0.03664031286007545,0.7943890646369972,0,0.2721209528476398,0.21168661251770177
+81,3,0.17716677245647522,1.8499999999999999,1.374451262725897,0.0006949076943186078,0.03649399853492472,0.7926282224023752,0,0.2752668673171204,0.22353341843209013
+81,4,0.2513579629493108,1.7999999999999998,1.3744072748929488,0.0006941772486453345,0.03634751965911374,0.7800221795369722,0,0.3545872874288833,0.23174349325919164
+81,5,0.2755624880750831,1.7999999999999998,1.3732790695577322,0.0006937304977112371,0.03612348741272463,0.779828378947232,0,0.42088952901482657,0.22402225489717487
+81,6,0.2741368580262301,1.7999999999999998,1.3392186397850891,0.0007365990810100352,0.03625330560425523,0.7739396391520422,0,0.45520845988340103,0.24017824690956566
+81,7,0.3319662686595077,1.8499999999999999,1.3395323611108307,0.0007323100410357893,0.03619721675250628,0.7868425350452081,0,0.5371274753396648,0.2237175950788059
+81,8,0.34940474357810886,1.8499999999999999,1.33949493393742,0.0007324192285470643,0.03612090049420439,0.7868362942683276,0,0.6122028567074931,0.21507866965037215
+81,9,0.3740569158859846,1.95,1.1873245303450752,0.000954266532877051,0.03684078531428151,0.7865465386681662,0,0.6734172105205247,0.21563343892591574
+81,10,0.37210944116832567,2.0,1.193275205044842,0.0009473242615128689,0.03679024756892024,0.7998200180933382,0,0.7014028264867809,0.23849436857871098
+81,11,0.4356793362058921,2.0,1.212233766806319,0.0009224711765055415,0.03652289936636577,0.8028303204669006,0,0.7907264159780276,0.23129589938227024
+81,12,0.46944535018183,2.0,1.2101560557068132,0.0009248541725254229,0.03610981575413123,0.8025019801165687,0,0.8894541280956781,0.21221232981186247
+81,13,0.422277929226421,2.0,1.3661258833897438,0.0006865979251508256,0.03590058617935936,0.8259941941830213,0,0.8945418494750943,0.21487063145461086
+81,14,0.48723109712835455,1.95,1.3685040397449664,0.0006882411861905785,0.03602602291926622,0.8153086232448682,0,0.962184993857791,0.20785699861746051
+81,15,0.4953686796908744,1.95,1.366884649388445,0.0006870723561551206,0.036306234491412334,0.815064297793492,0,1.0,0.18456226563624797
+81,16,0.4639650728690733,2.0,1.311087375825461,0.0007133934999065533,0.035495148056104736,0.8179491553050776,0,1.0,0.21321690956357767
+81,17,0.49005906612120775,1.95,1.3703795946444826,0.0006898038482322655,0.036304367552880266,0.8155913482405911,0,1.0,0.23353022040402577
+81,18,0.5014495609926305,1.95,1.3690425626972682,0.0006891607941757552,0.036101507402214385,0.8153899773721105,0,1.0,0.27149853664210144
+81,19,0.4859155285175858,2.0,1.368065806465244,0.0006888170770371949,0.03603308700571985,0.8262734758271998,0,0.9943252806879175,0.2939513874747292
+81,20,0.5304025148357691,2.0,1.370272229233839,0.0006912592375004909,0.036127018866393204,0.8265906702899454,0,1.0,0.2680083827858966
+81,21,0.5099246060657389,2.0,1.373537846254763,0.0006921747871711316,0.036331610640951875,0.827058521844596,0,1.0,0.29974868688579626
+81,22,0.5328649830757464,1.95,1.3726393858558625,0.000691889353618199,0.03628425538689883,0.81593160965754,0,1.0,0.30954994358582105
+81,23,0.5383060962944282,1.95,1.3713438752933504,0.0006906854611852666,0.03624299186472408,0.8157365989743073,0,1.0,0.2943536543147605
+81,24,0.516938393055689,2.0,1.3741096025741204,0.0006919630030618914,0.03621538029935005,0.8271402258545235,0,1.0,0.32312797685229655
+81,25,0.5213177415754617,1.95,1.3735264843984036,0.0006916605344771626,0.03622706827916112,0.8160647344889649,0,1.0,0.33772580525153917
+81,26,0.5025332587358093,2.0,1.3721872568272806,0.0006909161361851936,0.03623711104220542,0.8268648976462863,0,1.0,0.34177752911936443
+81,27,0.5464949685912203,2.0,1.3743992602264432,0.000693185399598278,0.03631032255741398,0.8271819864588229,0,1.0,0.3216498953040674
+81,28,0.5395432450173636,2.0,1.376774313886201,0.0006939180052951049,0.036319006875024006,0.827521450348956,0,1.0,0.298477483391212
+81,29,0.493309172780784,2.0,1.3784539972682595,0.0006947850325028058,0.0365552499373315,0.8277613064091927,0,1.0,0.31103057593594663
+81,30,0.5173288852440052,1.95,1.379909013879528,0.0006960150240551186,0.036438235578927225,0.8170221418249632,0,1.0,0.3244296174800174
+81,31,0.5416847471750834,1.95,1.378926311529732,0.000695537362444223,0.036449963574888146,0.8168750421317066,0,1.0,0.30561582391694453
+81,32,0.48865103029165824,1.95,1.3802926595164646,0.0006960799015859487,0.036337214391819875,0.8170795080998121,0,1.0,0.2955034343055275
+81,33,0.5297481068666965,1.9,1.3814933971325198,0.0006972513902284522,0.03656219405785198,0.8057907488306433,0,1.0,0.2991603562223214
+81,34,0.5110197790660203,1.9,1.3809072208928135,0.0006966409227739584,0.036434338422662645,0.8056988093498785,0,1.0,0.3033992635534007
+81,35,0.5236819954652602,1.95,1.3801703252211623,0.0006962894105269587,0.03653848156243844,0.817061285866671,0,1.0,0.3456066515508672
+81,36,0.5306245040586127,2.0,1.3794832834446096,0.000696008862722764,0.03647288249035186,0.827908353569616,0,1.0,0.3687483468620424
+81,37,0.5133880845501357,2.0,1.3787162089156293,0.0006957112125513362,0.03643828158816655,0.8277989514233751,0,0.9996441377160742,0.3784347648790204
+81,38,0.5611427945898674,2.0,1.3798758070914932,0.0006974563630933253,0.03655197999368551,0.8279646839764119,0,1.0,0.37047598196622433
+81,39,0.5497748023711024,2.0,1.3813393030255257,0.0006975089862284274,0.03639387427632682,0.8281730580492537,0,1.0,0.36591600790367473
+81,40,0.5362611413466544,2.0,1.3810008655628392,0.0006968722433421499,0.036388561633027304,0.8281247109615836,0,1.0,0.38753713782218124
+81,41,0.5628137201906058,2.0,1.3801596986675855,0.00069654683464041,0.03661619134639518,0.8280048584340161,0,1.0,0.376045733968686
+81,42,0.5156279543213989,2.0,1.381296664939708,0.0006968089825071732,0.03646860050126262,0.8281667912303872,0,1.0,0.38542651440466275
+81,43,0.5405095862069776,1.95,1.3823809119669705,0.0006980457006772155,0.03647929187570708,0.8173919997353893,0,1.0,0.4016986206899253
+81,44,0.5463241990285179,1.95,1.3264081272284112,0.0006663405591595716,0.03528810330104402,0.8088787225288245,0,1.0,0.4210806634283932
+81,45,0.5734369654629083,2.0,1.3244318476111137,0.0006648721728610323,0.03485844391286067,0.8199135053279321,0,1.0,0.41145655154302757
+81,46,0.5658360032069262,2.0,1.3232303524786422,0.0006644160704204991,0.035151731000251554,0.8197358951535062,0,1.0,0.38612001068975366
+81,47,0.5582360803493601,2.0,1.3847724356217286,0.0006990994567767542,0.036730780744465154,0.8286615025616474,0,1.0,0.39412026783120035
+81,48,0.5462667552842324,2.0,1.3843840228114113,0.0006988780187220495,0.03658504338583749,0.8286062851464179,0,1.0,0.42088918428077476
+81,49,0.5686113720406845,2.0,1.3058958258870765,0.0006558489755602203,0.0345555744266786,0.8171576188754505,0,1.0,0.4287045734689482
+82,0,0.10632463940122722,2.0,1.3850554698842685,0.0007001780700425452,0.036443844112690485,0.8287019907150562,0,0.10930979857983629,0.208669066564309
+82,1,0.17784742784415333,1.95,1.3853902480953304,0.0007001637790456929,0.03671028293741292,0.8178413823543834,0,0.17252063045917476,0.2294639188682781
+82,2,0.21051874375740093,1.95,1.3853293458404075,0.000700283547795343,0.0367104409000236,0.8178323448392351,0,0.2505347442940965,0.20101615346587437
+82,3,0.19736564934046033,1.95,1.3686715189219751,0.0006920245896396815,0.036454416026613826,0.8153349802969599,0,0.2693365960795645,0.23210336969544842
+82,4,0.25592641701984525,2.0,1.3706978727198806,0.0006917442867579882,0.03621538070647968,0.8266518119361025,0,0.3666147605513529,0.1976017093310137
+82,5,0.29268732822078797,2.0,1.382141969477757,0.0006975221174531027,0.03659449350062972,0.828287253096677,0,0.4753091896245233,0.17521217456992888
+82,6,0.3060075875139229,2.0,1.3859466946350818,0.0007005749838864445,0.03635871977220744,0.8288285800880804,0,0.5377092184443444,0.16974633378728382
+82,7,0.3144505810531412,2.0,1.3857942507869532,0.0007006777181599864,0.036705137360560566,0.8288069806792491,0,0.5829411524041865,0.20424706697155523
+82,8,0.3364572082544529,2.0,1.3362892887356317,0.0007441058632374713,0.036316553764723696,0.8216809032596317,0,0.6180696859525446,0.23076444624478332
+82,9,0.3579110625002887,2.0,1.1833418143304544,0.0009370730658217762,0.03670271062775825,0.798221563413905,0,0.6496814602494281,0.2601282613350582
+82,10,0.3743309113170428,2.0,1.1993769494823499,0.000915890985464519,0.036449675705333494,0.8007851401323682,0,0.6840066197169624,0.2690942114341929
+82,11,0.3612085950549958,2.0,1.213192028517256,0.0008962850854658111,0.036073910169675816,0.8029736778229472,0,0.7006359401023858,0.2698473967134715
+82,12,0.39901814274700986,2.0,1.232902423671974,0.0008767907345128802,0.03597979694983994,0.8060672935941255,0,0.7325777890565243,0.2866234237480005
+82,13,0.4683285077190629,2.0,1.244333160667037,0.0008595523857756951,0.03610769519863801,0.8078425776034349,0,0.8383353844231335,0.27664784649936514
+82,14,0.5003259112679554,2.0,1.3846794974418681,0.0006996304215409857,0.036724776023346783,0.8286484574291817,0,0.9324149520624334,0.25786643480994004
+82,15,0.4845169631974527,2.0,1.384963807284471,0.0007003517285172389,0.03647659949295213,0.8286890276648772,0,0.953210175733619,0.27744297634668347
+82,16,0.5199630087512842,2.0,1.3850351164081798,0.0006999519222401485,0.03666178848225375,0.8286990372115098,0,1.0,0.2332100291709471
+82,17,0.5106928643565988,2.0,1.3851656150592477,0.000700557106341997,0.03675387109204604,0.8287177334118081,0,1.0,0.2356428811886624
+82,18,0.5132593553157975,2.0,1.384743414282167,0.0007006256540909374,0.036408996228992255,0.8286578154173914,1,1.0,0.24419785105265815
+82,19,0.494984501110894,2.0,1.3409265073234473,0.0006928223446752466,0.03607367638873508,0.822344357812167,1,1.0,0.2499483370363131
+82,20,0.5232228300523959,2.0,1.343867203712714,0.0007038000166837231,0.03596810512149734,0.822776770527291,1,1.0,0.2774094335079862
+82,21,0.5030889924555481,2.0,1.349935445008155,0.0006997371913502069,0.035579434280660654,0.8236586994289498,1,1.0,0.27696330818515996
+82,22,0.5308036495270371,1.95,1.3518653624525632,0.0007090235603831156,0.03595803980442106,0.8127963325208682,1,1.0,0.30267883175679
+82,23,0.5097835368359244,1.95,1.3557228997605497,0.0007048814173010079,0.03646971604166278,0.8133813238404074,1,1.0,0.29927845611974785
+82,24,0.5544626228635913,1.9,1.35690661430236,0.0007127868398603136,0.03647132909196397,0.8019190985904385,1,1.0,0.3482087428786374
+82,25,0.5727167865323121,1.9,1.353006211461978,0.0007126204599667142,0.035820581353570864,0.8012987570045136,1,1.0,0.40905595510770676
+82,26,0.5445529568547142,1.95,1.379657982096253,0.0007087382109308839,0.03673004997440088,0.8169884150798156,1,1.0,0.41517652284904705
+82,27,0.5459841363947522,1.9,1.3812629135570615,0.0007067088330051346,0.03671652857546952,0.805757637877415,1,1.0,0.4199471213158403
+82,28,0.5765721559853771,1.95,1.3820768907770336,0.0007052438234843816,0.03632414351388805,0.8173487656707296,1,1.0,0.4552405199512571
+82,29,0.5590582746616367,1.95,1.38133260643837,0.0007057530561667619,0.03633583034723999,0.8172377775120316,1,1.0,0.46352758220545565
+82,30,0.586805229555267,2.0,1.381950373323622,0.0007041440222646481,0.036634802475573776,0.8282618850070075,1,1.0,0.4893507651842231
+82,31,0.5960375728070302,2.0,1.3811431145733246,0.0007045586441657532,0.03653596312093371,0.8281471447717123,1,1.0,0.5201252426901004
+82,32,0.624186657664509,2.0,1.380048750602215,0.0007049971486165396,0.03672760557882944,0.827991464460745,1,1.0,0.5806221922150298
+82,33,0.5989345185424055,2.0,1.3818080951940164,0.0007035377206887688,0.03657401005017019,0.8282414733304604,1,1.0,0.5964483951413516
+82,34,0.5779711043966594,1.95,1.3823706362568609,0.0007021448929101204,0.03657608839235825,0.8173916896687431,1,1.0,0.5599036813221981
+82,35,0.620248121663568,1.9,1.3821536014707125,0.0007036971812154638,0.036353928712087556,0.805896061289379,1,1.0,0.6008270722118934
+82,36,0.6027152072376861,1.9,1.377772876444552,0.0007052478599527223,0.036394080408185564,0.8052103630044961,1,1.0,0.609050690792287
+82,37,0.5886497262767767,1.95,1.3760859175452447,0.0007054194299974197,0.036417375646950266,0.8164527263463155,1,1.0,0.5954990875892555
+82,38,0.5813833672324928,2.0,1.3808023662973248,0.0007042638779537425,0.03653497339893589,0.8280985603206574,1,1.0,0.5712778907749759
+82,39,0.5722908961687017,2.0,1.3806448790339099,0.0007058975966247584,0.03661622100697756,0.828076605811737,1,1.0,0.5409696538956723
+82,40,0.629574930695499,2.0,1.3801259493608398,0.0007074199206548462,0.03661223449792188,0.8280031490271081,1,1.0,0.5985831023183297
+82,41,0.645635156896668,2.0,1.3818863794428315,0.0007057021041780617,0.03677952355319951,0.8282532253357754,1,1.0,0.6521171896555595
+82,42,0.6188977230178084,2.0,1.3774785669387952,0.0007033492712626381,0.03654013668762932,0.8276246359765304,1,1.0,0.6629924100593613
+82,43,0.6168874690370136,1.95,1.3757582115496467,0.0007034055520632874,0.036542112689727645,0.8164030082797512,1,1.0,0.6562915634567119
+82,44,0.6444590404001185,2.0,1.3735272253668762,0.0007034123027484455,0.03616060823313565,0.8270602173684164,1,1.0,0.6815301346670614
+82,45,0.6533086638300285,2.0,1.3763894461683215,0.0007015125700572933,0.03636881152750828,0.8274686798463773,1,1.0,0.7110288794334283
+82,46,0.634660700293677,2.0,1.3780045679353543,0.0006998980124249789,0.03627730745695578,0.8276986790604159,2,1.0,0.7155356676455901
+82,47,0.649161189241668,2.0,1.3667906475532026,0.0007203589081336541,0.036649393066440314,0.8260994189225926,2,1.0,0.7305372974722266
+82,48,0.6108151892221354,2.0,1.3689657229453238,0.0007159230268579007,0.036563134013927495,0.8264103941420581,2,1.0,0.702717297407118
+82,49,0.5947485224262921,1.95,1.372986484829598,0.0007124020467321763,0.036573557878075896,0.8159898938278279,2,1.0,0.6491617414209734
+83,0,0.1269252533596781,2.0,1.38399930581425,0.0007008715854886367,0.03638782146485116,0.8285522079221931,0,0.10157744398130016,0.22098091922386018
+83,1,0.11791643872755675,1.95,1.3840448846958484,0.0007005231729827216,0.03668631839728564,0.8176409758078658,0,0.12064293113551597,0.23219755424450123
+83,2,0.1255726470073505,2.0,1.3845240347658634,0.000700359127995945,0.03669901178789095,0.8286265890856016,0,0.145157453969039,0.225032218065783
+83,3,0.19465835641420623,2.0,1.3849601856737161,0.0007002379460659306,0.03647083162838978,0.8286884812216485,0,0.23308214581227293,0.20475166029765682
+83,4,0.15384213618699044,2.0,1.37074004024275,0.0006914632260075421,0.03628594518240878,0.8266577738505854,0,0.22860454613539596,0.20800105910944022
+83,5,0.22879925417477726,1.95,1.370837369159768,0.0006909339597432179,0.0361706439060001,0.8156605283867266,0,0.31068669807794186,0.181748583145335
+83,6,0.2489988337243439,1.95,1.3818673373196484,0.000697515313628567,0.03653277141051604,0.8173151715116881,0,0.3939157182361624,0.1714418214329297
+83,7,0.28153526086445824,1.95,1.381950857952023,0.0006978630706575947,0.0366150821854692,0.8173277455796027,0,0.4712108231239896,0.17683643871620794
+83,8,0.2727926635263135,1.95,1.3850347544314963,0.00069935593170931,0.03663261289060281,0.8177881752863686,0,0.49336942764305247,0.18481630823030812
+83,9,0.24894021282383896,2.0,1.3847543984576913,0.0006992027131976285,0.03641130328075206,0.8286589709221273,0,0.49306721718801483,0.17237775316211001
+83,10,0.33213186856643034,1.95,1.3851327911588385,0.0006996886996366643,0.03667109475293303,0.8178028825159706,1,0.5927925703900374,0.1500494680347178
+83,11,0.3711764210557052,1.95,1.3850068702222187,0.0006996520263960772,0.036622602526036385,0.817784108448771,1,0.6345334489471957,0.224543471589423
+83,12,0.35205836190036754,1.95,1.3855360703122273,0.0006997730471782978,0.036497397639213044,0.8178629890736259,1,0.6554478307507201,0.2329307653335983
+83,13,0.424372668196681,2.0,1.3855054054929177,0.0006999235766126843,0.03676530011037987,0.8287657796472881,1,0.7082800262303296,0.3035355256818306
+83,14,0.39412964508240134,2.0,1.3853827894828883,0.0007000496577849863,0.03673753801061756,0.8287484139203839,1,0.7479799733426983,0.28312551915107337
+83,15,0.44255265309796715,1.95,1.3852057533618491,0.0006997333284762136,0.036457030495957186,0.8178137670279165,1,0.7743888783807035,0.3093236724856192
+83,16,0.49402192339467377,1.95,1.3857234079991916,0.0006998574783388762,0.036767976024598456,0.8178909189695187,1,0.8352038179091569,0.3664679874367033
+83,17,0.5394964066430611,1.95,1.3456730805940251,0.000710786009893467,0.03639928227209466,0.8118528374016909,1,0.907926156292633,0.42108648042002633
+83,18,0.5055275136474653,1.95,1.383073750056247,0.0007041118127213645,0.036533454953365616,0.8174972016953392,0,0.9477464674169271,0.3880964222689813
+83,19,0.5036965520043009,1.9,1.3835411841744398,0.0006993166303844928,0.03670407010526029,0.8061116560761032,0,0.9621085990579713,0.3961770412703745
+83,20,0.5574762626765073,1.95,1.3834331580409924,0.0006997969334426035,0.03645516174843012,0.8175495304091827,0,1.0,0.3915875422550243
+83,21,0.5252716292647932,1.95,1.3846218567992796,0.0006998201406313242,0.03655999013299207,0.8177267794383773,0,0.9993622734716413,0.4184223995871223
+83,22,0.533638646739412,1.9,1.2809701030137746,0.0006365303489139331,0.033942146389962145,0.7895546684183682,0,1.0,0.4454621557980397
+83,23,0.5796860659875136,1.95,1.2894670057653563,0.0006396116798827228,0.03379747615181516,0.8030941452476574,0,1.0,0.432286886625045
+83,24,0.5713014704768548,1.95,1.2877612267720675,0.0006377193657779117,0.03365014420520403,0.8028236651322634,0,1.0,0.4043382349228491
+83,25,0.5270476447703111,2.0,1.2837022642807816,0.0006346381632969437,0.03407757339690763,0.8138118599095965,0,1.0,0.42349214923437006
+83,26,0.5439307521315337,1.95,1.2951530092980024,0.0006408805934000184,0.034325601890875614,0.8039921459789645,0,1.0,0.4131025071051123
+83,27,0.5674657849707433,2.0,1.2917236757493091,0.0006419180167198392,0.034324439524378574,0.8150264178831229,0,1.0,0.3915526165691442
+83,28,0.5407589766175407,2.0,1.3843537412822846,0.0006989218675914638,0.03654930265301736,0.8286019970390627,0,1.0,0.40252992205846866
+83,29,0.5496433809415473,1.95,1.2756418638863063,0.0006276720056383754,0.03357006444234436,0.8008949488648447,0,1.0,0.4321446031384907
+83,30,0.5572661222693425,2.0,1.2720988491285414,0.0006295750549633746,0.033364520951078766,0.8120457348060702,0,1.0,0.457553740897808
+83,31,0.5804666367165519,2.0,1.2730486488636976,0.0006335888941733062,0.033275492903037024,0.8121918818782567,0,1.0,0.4348887890551728
+83,32,0.5726628395527136,2.0,1.2690779309256417,0.000630368051566011,0.03364371779081192,0.8115844675602355,0,1.0,0.4088761318423786
+83,33,0.5713149381947319,2.0,1.265006527051642,0.0006269686849850993,0.033719144959148496,0.8109600561438782,0,1.0,0.4043831273157727
+83,34,0.5179961303535088,2.0,1.2607864860196027,0.0006234804260295165,0.03350240260982546,0.810311186176654,0,1.0,0.393320434511696
+83,35,0.5396467149517,1.95,1.38487978479786,0.0006991946949177572,0.03673397900092806,0.8177650339625713,0,1.0,0.39882238317233326
+83,36,0.5584046960598038,1.95,1.3846459559129025,0.0006990233093962289,0.03668364390767111,0.8177301338449906,0,1.0,0.39468232019934585
+83,37,0.5577446458097228,2.0,1.3852105949473277,0.0006994602064766338,0.036701113879223174,0.8287238065828009,0,1.0,0.3924821526990761
+83,38,0.5602199541680446,2.0,1.3855225232326172,0.0006998523182190313,0.03676297266179342,0.8287681886397077,0,1.0,0.3673998472268152
+83,39,0.5495432363950357,2.0,1.3851691178440804,0.0006998242473324661,0.03658383942660097,0.8287180225623538,0,1.0,0.36514412131678536
+83,40,0.5523811722786864,2.0,1.3852986844200088,0.0007003303117581968,0.0365645125915265,0.8287365566907285,0,1.0,0.3412705742622878
+83,41,0.5414434859691483,2.0,1.3848939477909512,0.0007004136967330037,0.03675365004904827,0.8286791275325881,0,1.0,0.3048116198971608
+83,42,0.5272181094038927,2.0,1.3843951376383026,0.0007004854514687606,0.03654311042695747,0.8286083202097893,0,1.0,0.2907270313463087
+83,43,0.5134168514526686,2.0,1.3844344740712078,0.0007012649373046837,0.03649713223256327,0.8286141279569048,1,1.0,0.31138950484222844
+83,44,0.5424006824088728,2.0,1.3371069509158005,0.0007080157473081869,0.03593609056305978,0.8217901061230455,1,1.0,0.34133560802957597
+83,45,0.5698652645148726,2.0,1.3424123226281686,0.0007030750678908072,0.03557534902012119,0.822564315566236,1,1.0,0.3995508817162419
+83,46,0.537441962381541,2.0,1.338494376297893,0.0007018187147857509,0.035475691100687434,0.8219913919149788,1,1.0,0.3914732079384699
+83,47,0.5709700672050422,1.95,1.3407025543870705,0.0007134997063434742,0.03602408928054857,0.8110932548802584,1,1.0,0.4365668906834739
+83,48,0.5765510515667113,1.95,1.3720404565974973,0.0007108403237338622,0.03662252195623316,0.8158473355903436,1,1.0,0.45517017188903747
+83,49,0.5592232869970281,2.0,1.3716993338809536,0.0007146567328413611,0.03662901673462492,0.826801835218435,1,1.0,0.4640776233234268
+84,0,0.15794650741873095,2.0,1.3820006693214668,0.0007013900050141992,0.03643191094803374,0.8282682557384403,1,0.12403729983015221,0.22777195828890018
+84,1,0.20770132631141297,1.95,1.3819045233573417,0.0007008541401679189,0.03664018036243821,0.8173217207556571,1,0.17368778822435263,0.29408737007223973
+84,2,0.24373033434671904,1.95,1.381527721640822,0.0007010004953510161,0.03658892471831897,0.817265498637067,1,0.2213783750399419,0.3505966144358076
+84,3,0.20441414936375674,1.95,1.3862463904212459,0.0007001412689340759,0.03638210489826546,0.8179688863371042,1,0.25523975095428963,0.3077274966068029
+84,4,0.2737741100677731,1.9,1.3862181910968312,0.0007001206488424476,0.03675519854882995,0.8065299687052644,1,0.2956501825587775,0.351713456814207
+84,5,0.3050082510624991,1.9,1.3861644089932095,0.0007000846860430633,0.03663785998837542,0.8065215652173049,1,0.3321439268154474,0.4071689344544006
+84,6,0.2698223312266767,1.9,1.3847178748429438,0.0007006563756815442,0.03655172051796389,0.8062959199623314,0,0.36448641571267054,0.38009254980536156
+84,7,0.34175931383473823,1.8499999999999999,1.3695957439354423,0.0006898975675445998,0.03628367483427837,0.7918273412509564,0,0.4632955552614982,0.35480363910046325
+84,8,0.3466018956819616,1.8499999999999999,1.3331346997679772,0.0007252827121497765,0.03563952302117859,0.7857651755791846,0,0.5079156324349059,0.3447854756933309
+84,9,0.38114854901431683,1.9,1.3324077039878954,0.0007266051454566901,0.035855729599240396,0.7980032261946102,0,0.5885419404145229,0.31910590949502554
+84,10,0.3687286853574221,1.9,1.3327540391773858,0.0007278966821267192,0.035994105301576054,0.7980594639038993,0,0.6181948594646983,0.3381691385718092
+84,11,0.4316721254377367,2.0,1.2055845699341698,0.0008604356747348525,0.0354200070841033,0.801755954597621,0,0.7049505944413939,0.3323062922039305
+84,12,0.47040459441066934,2.0,1.209365612922921,0.000854263458707223,0.035367842392662927,0.8023542830047077,0,0.815189658648045,0.31442910317150435
+84,13,0.49412252480145136,2.0,1.378259323392353,0.0007073447769914618,0.03656701673079064,0.8277371312685141,0,0.8961180967210627,0.2855842870434209
+84,14,0.4484930383322214,2.0,1.377454859411547,0.0007078891909105339,0.036697828963486716,0.8276225491498787,0,0.9060609819582135,0.2868954851631201
+84,15,0.519737671447171,1.95,1.3777479127180632,0.0007060770064925337,0.03644056956142354,0.8167018549709827,0,0.9857769514959301,0.2847563028293294
+84,16,0.5338330537892243,1.95,1.3770901956039188,0.0007077842887229183,0.03671252713878774,0.8166038856241884,0,1.0,0.2794435126307474
+84,17,0.5212021287016702,2.0,1.3762070468824963,0.0007084496323177989,0.036421655114972036,0.8274446191480317,0,1.0,0.27067376233890045
+84,18,0.5293825969853324,2.0,1.3758993627422105,0.000709826873162861,0.036426801110463605,0.8274010769376079,0,1.0,0.2646086566177744
+84,19,0.5174787071575105,2.0,1.3750031469600392,0.0007105808237576051,0.03650710366035318,0.8272732675855796,0,1.0,0.2582623571917019
+84,20,0.5189632729833268,2.0,1.3743560061619695,0.0007122021137280961,0.03669934265167704,0.827181240157433,0,1.0,0.2298775766110892
+84,21,0.5042208590654925,2.0,1.373440036085974,0.0007130491831299028,0.03649604072383203,0.8270505030861662,0,1.0,0.21406953021830827
+84,22,0.47003241284339836,2.0,1.37272044787406,0.0007146678214228999,0.03665058935736691,0.8269480136965611,0,0.9980596869819776,0.23602846016869117
+84,23,0.47363312188165696,1.95,1.373290802327952,0.0007121569438176199,0.03666449615147839,0.8160355092336614,0,1.0,0.24544373960552313
+84,24,0.5146770724177459,2.0,1.3732481664793175,0.0007101304714683917,0.03642964681718443,0.8270222216456624,0,1.0,0.21559024139248598
+84,25,0.5032881939500509,2.0,1.372732422371767,0.0007107129698679791,0.03640413683193178,0.8269485953882039,0,1.0,0.2109606465001694
+84,26,0.49110981831845674,2.0,1.3720795578026646,0.0007122233790367838,0.036648478516934334,0.8268555799885176,0,1.0,0.23703272772818895
+84,27,0.5169957176232891,2.0,1.3756507849601238,0.000710000494281204,0.03651033001497268,0.8273656246168526,0,1.0,0.22331905874429703
+84,28,0.5043998905292559,2.0,1.3748460351069858,0.0007108220397480984,0.036622678369311476,0.8272508853144306,0,1.0,0.21466630176418644
+84,29,0.5013442353679808,2.0,1.3741853055856756,0.0007122177862264045,0.036683328226284576,0.8271568412126814,0,1.0,0.20448078455993585
+84,30,0.5044883266900554,2.0,1.3734709314314797,0.0007134482587162461,0.03640642893673483,0.8270550364125536,0,1.0,0.21496108896685132
+84,31,0.5064739747920718,2.0,1.3727204938746451,0.0007145257512621384,0.0364584705441521,0.8269479796175723,0,1.0,0.18824658264023916
+84,32,0.4814120961543116,2.0,1.3159458448439298,0.0007396217871299194,0.03571625037139324,0.8186792915365559,0,1.0,0.2047069871810385
+84,33,0.500988367294486,1.95,1.374611879945455,0.0007104286468819063,0.03655900217006872,0.8162332301905537,0,1.0,0.20329455764828686
+84,34,0.4653929163924607,2.0,1.3733490221856264,0.0007113603852592697,0.036561920248917364,0.8270370011015216,0,1.0,0.21797638797486904
+84,35,0.4919597609920713,1.95,1.3740217147296825,0.0007087421201249174,0.03661310057529086,0.8161441847904579,0,1.0,0.23986586997357084
+84,36,0.47749045897229175,1.95,1.377011465790969,0.0007070904487865484,0.03662581230593992,0.8165918867655113,0,1.0,0.25830152990763905
+84,37,0.5197500617986125,2.0,1.3771715410174827,0.0007052069401278716,0.03663075088128743,0.8275813607523462,0,1.0,0.23250020599537502
+84,38,0.5113133101646756,2.0,1.3770214599655657,0.0007066506854325536,0.036690065127302975,0.8275603566238023,0,1.0,0.20437770054891868
+84,39,0.5025315433809651,2.0,1.3765251947010795,0.0007079855704364098,0.03655671497163878,0.8274899070783214,0,1.0,0.20843847793655007
+84,40,0.502470365243597,2.0,1.3757805857595349,0.0007086939571163426,0.03652885686414943,0.8273837903055399,0,1.0,0.17490121747865656
+84,41,0.453828704453933,2.0,1.2972504657233008,0.0007353395872898696,0.035630271448346316,0.8158862458360735,0,1.0,0.1794290148464432
+84,42,0.49655812917705283,1.95,1.2984766550110998,0.00075030039466976,0.03608548813955672,0.8045498007861729,0,1.0,0.15519376392350934
+84,43,0.4894160559558394,1.95,1.3101435735039162,0.0007404547744629714,0.03545781191195528,0.8063748262126355,0,1.0,0.16472018651946466
+84,44,0.45248852775019577,2.0,1.3150467046666097,0.0007326664319494486,0.03567917638627493,0.8185437156195985,0,1.0,0.17496175916731907
+84,45,0.49615873680952527,1.95,1.3173424550228678,0.0007436983041954092,0.03573465134829411,0.8074973497109385,0,1.0,0.18719578936508416
+84,46,0.4601192464163387,1.95,1.3193374787905157,0.0007367421376877647,0.036171693221322423,0.8078051167423742,0,1.0,0.20039748805446236
+84,47,0.5071004326813048,1.9,1.3763022239294105,0.0007056081323347007,0.03640278562146464,0.8049797056820543,0,1.0,0.1903347756043493
+84,48,0.4952314070041454,1.9,1.3167396038158543,0.000762693515347439,0.03615175909565937,0.7954775685665287,0,1.0,0.18410469001381802
+84,49,0.4964950878430736,1.95,1.3198150526556356,0.0007541825029183582,0.036225210521123014,0.8078846658487349,0,1.0,0.1549836261435787
+85,0,0.018708396865558016,2.0,1.3808344497837453,0.0007012748568233412,0.03645533869565821,0.8281022764336476,2,0.1481543538663404,0.16482218439673957
+85,1,0.03964503732254493,1.95,1.3862943611198844,0.0007001722195526524,0.036734905166597664,0.8179760380796509,2,0.15543390056071865,0.15823825699419156
+85,2,0.062142351161324605,1.95,1.3862939858886205,0.0007001722764262219,0.036725750757192775,0.8179759822279323,2,0.18747412670102598,0.19050900160304743
+85,3,0.24651143321591107,1.95,1.3862918872349141,0.0007001722211735569,0.03638599471596552,0.8179756697400449,2,0.25590487039722676,0.21383161685673444
+85,4,0.28645355018864804,1.95,1.3862943611198846,0.0007001722195526523,0.03675795556484761,0.8179760380796509,2,0.32214746978597397,0.25864854091419487
+85,5,0.20728105058978646,1.95,1.386274692879047,0.0007001716435893809,0.03670544942303188,0.8179731094610712,2,0.3551040544004782,0.21746476276531723
+85,6,0.2581390270324021,1.9,1.386272350032973,0.0007001578577178002,0.03643144653622686,0.806538431103406,2,0.39214164246059324,0.23760790016054928
+85,7,0.3444454507296016,1.9,1.3862761164684736,0.0007001697142907243,0.036788099486178165,0.8065390224954937,2,0.4550523987583226,0.274748304087575
+85,8,0.2616527804026494,1.9,1.3852573052044086,0.0006996406997075999,0.036516616788504444,0.8063798386341191,2,0.48256495295935925,0.22875599739635222
+85,9,0.3437876061526453,1.8499999999999999,1.3854519750172987,0.0006996509317932704,0.036602420924990144,0.7944321245125204,2,0.5326946667065822,0.2690324649000414
+85,10,0.3798130871587118,1.8499999999999999,1.3856894414379473,0.0006999928811850802,0.03669554270844132,0.7944710140483873,2,0.5806240640446865,0.32521153846945744
+85,11,0.3234432378854954,1.8499999999999999,1.38579791074591,0.0007003489129488334,0.03647107793928858,0.794488841354368,2,0.605895331578976,0.2702836841796833
+85,12,0.43906667418889717,1.7999999999999998,1.3860305197325156,0.0007005345891675139,0.03678537613709186,0.782012258877394,2,0.6804294671753415,0.28964962439586855
+85,13,0.47095499289793924,1.7999999999999998,1.3858350135468531,0.0007007211011048519,0.03631121978552611,0.7819789928751657,2,0.7497643910212718,0.30349745496476827
+85,14,0.3911317817459031,1.7999999999999998,1.3855174062818938,0.0007009074614882255,0.03675159132882865,0.7819249034025115,2,0.782668245070508,0.2602149457256663
+85,15,0.47016044870824003,1.7499999999999998,1.3857150574370558,0.0007005530762925474,0.0366619587621613,0.7689010233013122,2,0.8280677621106525,0.29644447954659686
+85,16,0.5364154619851095,1.7499999999999998,1.3847102836714904,0.0006991008525694021,0.03670340796305016,0.7687219181865902,2,0.9019013045478391,0.31884980055324624
+85,17,0.5693648056245274,1.7499999999999998,1.38428584254725,0.0006987808258960171,0.03659618229151952,0.7686463349959787,2,0.954170245934346,0.3589890241692968
+85,18,0.5649009258618722,1.7499999999999998,1.3836835163581045,0.0006984029586094446,0.03647855750741009,0.7685390720770665,2,0.986260766220023,0.4013220645795433
+85,19,0.6094202354365674,1.7999999999999998,1.3579409510116427,0.0006818205126683797,0.03588406491751624,0.777179459514393,2,1.0,0.4314007847885581
+85,20,0.5862494747176883,1.7999999999999998,1.3630674920445096,0.0006873650815502057,0.03617002283702648,0.7780678837693117,2,1.0,0.45416491572562756
+85,21,0.5234296271023093,1.7499999999999998,1.3605374109253006,0.0006862350230500047,0.036211967342285316,0.7643917373183711,2,1.0,0.41143209034103123
+85,22,0.5162630438928213,1.6999999999999997,1.3641048614156501,0.0006863240432780106,0.03576143138725742,0.7512850183756216,2,1.0,0.3875434796427375
+85,23,0.5072275733202138,1.7499999999999998,1.3845958516150114,0.000700093735233465,0.03673850152754176,0.7687019259216247,2,1.0,0.35742524440071255
+85,24,0.5435062801855252,1.7999999999999998,1.3853982043540727,0.000700018759164354,0.03675438254585076,0.7819042735028943,2,1.0,0.3783542672850836
+85,25,0.5988800823595983,1.7999999999999998,1.385206777809431,0.0006995977029248056,0.03672583927898952,0.7818714841554032,2,1.0,0.39626694119866124
+85,26,0.6079211979989144,1.7999999999999998,1.3847406390009036,0.0006995296795726506,0.03644668223805408,0.7817919512423763,1,1.0,0.4264039933297147
+85,27,0.5532672174641117,1.8499999999999999,1.3606999555777257,0.0007255331965170094,0.036564760627337045,0.7903689899309448,1,1.0,0.4442240582137054
+85,28,0.556295993973887,1.7999999999999998,1.3664723363321463,0.0007201534798247043,0.03662277577497887,0.7786665716736154,1,1.0,0.4543199799129562
+85,29,0.5618112322978205,1.8499999999999999,1.3698982501527632,0.0007164621660424023,0.03658865360189649,0.7918859569716501,1,1.0,0.4727041076594016
+85,30,0.566255416163856,1.9,1.3730973527357964,0.0007125605315937394,0.03658850797587627,0.8044782766756186,1,1.0,0.4875180538795201
+85,31,0.5934146708958857,1.95,1.3752595999272752,0.0007093003390162397,0.03659327404771105,0.8163300277034499,1,1.0,0.5113822363196189
+85,32,0.5973729755886305,1.95,1.3750828045472376,0.0007119864336263872,0.0365703203087175,0.8163043239198228,1,1.0,0.5245765852954346
+85,33,0.5827573544358905,2.0,1.374325994489938,0.0007145624949034899,0.036747303567605215,0.8271776247303667,1,1.0,0.5425245147863015
+85,34,0.6130898578771553,2.0,1.3759437666708223,0.0007112424510538031,0.03662427815290442,0.8274078224064835,1,1.0,0.5769661929238507
+85,35,0.5751742666475386,2.0,1.3750979813237856,0.0007133130094039007,0.036750835278791014,0.8272875990228786,1,1.0,0.5505808888251286
+85,36,0.6165304844930666,1.95,1.3739169400949391,0.0007143535152204117,0.036435219722324275,0.8161301466539663,1,1.0,0.5884349483102219
+85,37,0.6035653831805379,1.95,1.372581487851765,0.0007169265800028469,0.03673058875453196,0.8159304346572268,1,1.0,0.6118846106017927
+85,38,0.586513114162156,2.0,1.3802447653234464,0.0007002637361614596,0.03618928373049456,0.8280180312848763,1,1.0,0.5883770472071864
+85,39,0.5755306929423951,2.0,1.373770096019757,0.0007142337598612527,0.03661098510237031,0.8270980478978912,1,1.0,0.5517689764746503
+85,40,0.5829465287212588,2.0,1.3726008468670068,0.0007153841520843961,0.036613114932970384,0.8269311025625374,1,1.0,0.5431550957375293
+85,41,0.5611087654190605,2.0,1.3734723376694427,0.0007122280449362464,0.03668612939185549,0.8270548884871912,1,1.0,0.5036958847302017
+85,42,0.5485767093335677,1.95,1.3722866867096777,0.0007132187623350881,0.03643334719844321,0.8158850410019926,1,1.0,0.4619223644452257
+85,43,0.5818239734475324,2.0,1.3706120189906312,0.0007144472638526647,0.036598443758349225,0.8266460157502353,1,1.0,0.4727465781584414
+85,44,0.594015413083768,2.0,1.3701445391568043,0.0007167119496142365,0.03665161235099205,0.8265796638143665,1,1.0,0.5133847102792266
+85,45,0.580056351761747,2.0,1.3691041126803567,0.0007190237544345752,0.03662099528701805,0.826431135673695,1,1.0,0.5335211725391565
+85,46,0.6094095092151215,2.0,1.3699702403374279,0.0007154801212768884,0.03650331433165517,0.8265543242066912,1,1.0,0.564698364050405
+85,47,0.5651980011217763,2.0,1.368894877065675,0.0007174232210297778,0.03667355651113543,0.8264006610664444,1,1.0,0.5173266704059212
+85,48,0.6019108159824688,1.95,1.3677878186439716,0.0007188233026005498,0.03641361139768485,0.8152099640983679,1,1.0,0.5397027199415625
+85,49,0.6084095489946058,1.95,1.3661454894421468,0.000721332930663596,0.036585591828643335,0.8149631880374494,1,1.0,0.5613651633153525
+86,0,0.002422388867392433,2.0,1.3846847151728063,0.0007018518422476528,0.03637351100570087,0.8286498291313441,0,0.10646518309888428,0.1994543854261291
+86,1,0.1151081606564687,1.95,1.3855549807462246,0.0006999118389088175,0.03672389780178315,0.8178658473631433,0,0.12816208037987925,0.21281109501505666
+86,2,0.12844989513648047,1.95,1.3843971922656508,0.000702029594989151,0.03672807815691666,0.8176939495982295,0,0.16121263796916596,0.2132161331627137
+86,3,0.16963725133772248,2.0,1.384849832314908,0.0007017447806378207,0.03642025363032714,0.8286732423249439,0,0.20081296936777726,0.23104021196870533
+86,4,0.22386658275702034,2.0,1.374506302206883,0.0006970187569672519,0.03637674995689031,0.8271983836748054,0,0.26905363154831563,0.2541504337923136
+86,5,0.2712947778814715,2.0,1.3738105535685208,0.0006968640760094793,0.03634766573178207,0.8270988656355204,0,0.37118483791779155,0.24273614238118285
+86,6,0.22692696837554513,2.0,1.3748327051456686,0.0006996514871340307,0.03619249579260688,0.8272457876148801,0,0.3863678906284142,0.24126604041393146
+86,7,0.2931465442245119,1.95,1.3750028711559346,0.0006984820025651162,0.03644522021213069,0.816288287218076,0,0.44659526739907474,0.24836145754960684
+86,8,0.3178300917144954,1.95,1.327738657130073,0.000704257031803692,0.03529165706276492,0.8090960432560693,0,0.5154422493356932,0.23884397326739382
+86,9,0.2872095571756426,1.95,1.3271180574698442,0.0007060884425991196,0.03516224640120466,0.8090007332446079,0,0.5381989041044523,0.23976665177953907
+86,10,0.3495973653997316,1.9,1.3378974262990095,0.0007026296490670531,0.035613209013428314,0.7988789851513298,0,0.5921174294990675,0.2425013120003486
+86,11,0.3908019974952008,1.9,1.3361766911473054,0.0007043354243194783,0.036130599533369584,0.7986029188168465,0,0.6879957895096077,0.21867893897119234
+86,12,0.42679956528162305,1.95,1.1642648473864374,0.0008349078979435192,0.03455623565503442,0.782608834772791,0,0.7878848039296479,0.20548547903254624
+86,13,0.4638352707607076,2.0,1.1644671928323704,0.0008304634021237164,0.034889534129781255,0.7951296950508381,0,0.8980922294149306,0.18199459664911766
+86,14,0.48118446099822865,2.0,1.296705525109499,0.0007714556198801214,0.03582024237233224,0.8158152269022286,0,0.9689302595215298,0.17870785729872243
+86,15,0.4927253198803788,2.0,1.2985740890954311,0.0007628196579428741,0.03609758496063509,0.8160932407972412,0,1.0,0.14241773293459598
+86,16,0.446001742661393,2.0,1.3138737376940155,0.000752045729280408,0.036062389024790455,0.8183751908921726,0,0.997757411076049,0.15632926076991133
+86,17,0.48575074482955777,1.95,1.3130482492929278,0.0007584490271946591,0.03613753508222687,0.806833551644348,0,1.0,0.15250248276519257
+86,18,0.44810156368598547,1.95,1.3127801458565491,0.0007522061528802039,0.035816716519268724,0.806789817164955,0,1.0,0.16033854561995153
+86,19,0.475765644163446,1.9,1.3118549428680926,0.0007576850569643672,0.03582715749480881,0.7946800869294047,0,1.0,0.18588548054481993
+86,20,0.4866504875778734,1.9,1.308422545129595,0.0007602537211591738,0.03621818143184704,0.7941203178355482,0,1.0,0.2221682919262445
+86,21,0.512022829484667,1.95,1.3761233639531993,0.0007026699097990286,0.0365518723811473,0.8164575138560426,0,1.0,0.20674276494889018
+86,22,0.5046047738048177,1.95,1.3763816823859227,0.0007047671483603441,0.03658535334919898,0.8164968493661567,0,1.0,0.18201591268272566
+86,23,0.481771888212013,2.0,1.2983208864703908,0.0007633883978172879,0.03597080503764061,0.8160554065697162,0,1.0,0.2059062940400433
+86,24,0.4844949894152486,1.95,1.376609681103346,0.0007024760704636331,0.03636618560058332,0.8165303214454961,0,1.0,0.21498329805082844
+86,25,0.4925886616929457,2.0,1.378932656042659,0.0007015051530133304,0.03664727698586615,0.8278314548931378,0,1.0,0.2419622056431521
+86,26,0.4963741468655201,2.0,1.3809550292747321,0.0007007449561384526,0.03669656081218654,0.8281192892623657,0,1.0,0.2545804895517336
+86,27,0.4809063713770047,2.0,1.3822387796583762,0.0007001276035041393,0.03652060702302496,0.8283017628221037,0,0.9969793053515003,0.27371549745468204
+86,28,0.4872448653300418,2.0,1.3823287335296746,0.000699361439887196,0.036531459983944164,0.8283143375880193,0,1.0,0.29081621776680594
+86,29,0.5338272342494103,2.0,1.382208698395837,0.000698660113906424,0.03663952206887318,0.8282970672689078,0,1.0,0.2794241141647006
+86,30,0.5250639539567883,2.0,1.3826582003081045,0.0006998620978490718,0.03640447359373708,0.8283613282563735,0,1.0,0.25021317985596075
+86,31,0.5178155264160146,2.0,1.382815668220514,0.0007009751245368269,0.0365356322880964,0.8283840321683008,0,1.0,0.2593850880533819
+86,32,0.5045000340266436,2.0,1.3821727475815395,0.0007011061498531331,0.036710454238386044,0.828292650017358,0,1.0,0.28166678008881196
+86,33,0.51266579683123,2.0,1.3834209402368063,0.0007006479373866954,0.036548086456611346,0.8284699699215898,0,1.0,0.30888598943743356
+86,34,0.49331146080339666,2.0,1.384258086357421,0.0007002606656279917,0.036576132723837994,0.8285887919277428,0,1.0,0.3110382026779889
+86,35,0.49998919551464394,2.0,1.3842861407002138,0.0006997357097861816,0.03672139109724325,0.8285926273170148,0,1.0,0.3332973183821465
+86,36,0.5426399841167646,2.0,1.3841520310891129,0.0006992672700058113,0.03648656963965027,0.8285734462334423,0,1.0,0.3087999470558821
+86,37,0.5343664692960047,2.0,1.3844124629364807,0.00069996830027807,0.03652074213291213,0.8286106337887796,0,1.0,0.3145548976533491
+86,38,0.5004261637226212,2.0,1.3839190104890062,0.0007000256180644225,0.03674346842900211,0.8285405610355873,0,1.0,0.33475387907540366
+86,39,0.5479979050348831,1.95,1.3837451261571596,0.0006994074660284745,0.03654215935619396,0.8175959435150558,0,1.0,0.32665968344961016
+86,40,0.5323327116592225,1.95,1.3838357184487375,0.0007001712595681485,0.036622908009124724,0.8176096812100986,0,1.0,0.3077757055307415
+86,41,0.5173730988694067,2.0,1.3833328976776575,0.0007003053359346625,0.036433352388984395,0.828457360675539,0,1.0,0.32457699623135566
+86,42,0.5445672897747715,2.0,1.3844073463873703,0.000700083866496428,0.036535460439096105,0.828609939984966,0,1.0,0.3152242992492382
+86,43,0.49378486308559655,2.0,1.3844707057958066,0.0007008139443235239,0.03650364361700825,0.8286191451721692,0,1.0,0.3126162102853217
+86,44,0.49666931877570086,1.95,1.3843794089617332,0.0007002037699217153,0.03673830594945138,0.8176907542559863,0,1.0,0.3222310625856695
+86,45,0.4989220281949369,2.0,1.3841246172500015,0.0006996578884738854,0.03671364054756828,0.8285696633190973,0,1.0,0.3297400939831231
+86,46,0.5368296992545025,2.0,1.3838953147357596,0.0006991570850151892,0.036464541016584376,0.8285369479911119,0,1.0,0.3227656641816751
+86,47,0.5235442986211751,2.0,1.3835252369090514,0.000699224408906626,0.03669224763203302,0.8284843861902415,0,1.0,0.3451476620705836
+86,48,0.5263480314555656,2.0,1.384490039784356,0.0006993397008344118,0.03656076351353533,0.8286214720558275,0,1.0,0.3544934381852185
+86,49,0.5362036419383504,2.0,1.3851294046954667,0.0006994712284153703,0.036471647828386806,0.8287122852064648,0,1.0,0.3873454731278344
+87,0,0.16966060310790168,2.0,1.3847748883687334,0.0007000767973138304,0.036461333967885715,0.8286621283345053,0,0.15998495113366978,0.21888874218144588
+87,1,0.19457420554175178,1.95,1.3847186356120231,0.00070020011972331,0.03669039725441635,0.817741317111757,0,0.22691967468769136,0.21268778555558412
+87,2,0.22913769377363116,1.95,1.3686159131629116,0.0006971574934193548,0.03636546609978985,0.8153281536416921,0,0.30468871374417417,0.2242073609198716
+87,3,0.1921551132451863,1.95,1.3677268684735233,0.0006969128305546609,0.03648292227381403,0.8151941805758058,0,0.3138238775529144,0.2220852074134017
+87,4,0.2592050451735334,1.9,1.3680072174881186,0.0006954708656749719,0.0361984053703275,0.8036710001893405,0,0.3823853913805557,0.22083629540437028
+87,5,0.2202780886608817,1.9,1.3664944807856074,0.0006950720631016099,0.03598119524568162,0.8034320790412219,0,0.37521200513441755,0.23397762202371555
+87,6,0.22037943463734155,1.8499999999999999,1.3665483336648954,0.0006935990341296288,0.03604462632860594,0.7913257915935185,0,0.38016828254499896,0.22770707206447324
+87,7,0.2500439998215272,1.9,1.365833996897913,0.0006921532021845852,0.036265637803419765,0.8033268262770065,0,0.3973898016536558,0.23696026386688282
+87,8,0.2679766287603793,1.9,1.3694969265963934,0.0006921114903133483,0.03639584006966579,0.8039048868550228,0,0.437628817115862,0.24308367304678166
+87,9,0.28147406102921996,1.95,1.3295018879314142,0.0007191509700576924,0.03549446354842635,0.8093728387900818,0,0.4624796508222978,0.2549406690010027
+87,10,0.3317057034967711,2.0,1.330064760375415,0.0007160778109125465,0.03555727931460327,0.8207588033250681,0,0.5277770007047816,0.26864967738286155
+87,11,0.37525003614659946,2.0,1.3307933038790374,0.000718378880794243,0.0359061814084626,0.8208666337967956,0,0.6251097480931423,0.2506871230311418
+87,12,0.33147329922230767,2.0,1.150196379699997,0.0008140255699261481,0.033844448044952985,0.7927898083240777,0,0.6316767315582539,0.26267535533002045
+87,13,0.41286895359755604,2.0,1.1732885556636938,0.000797543629534065,0.034258734910422174,0.796552271291769,0,0.7241694729618299,0.24400388137608028
+87,14,0.4455042052514509,2.0,1.1687555062415247,0.0007938177015507544,0.03468072224611689,0.7958154615640062,0,0.8204588921486337,0.22440216130665802
+87,15,0.39355859381438885,2.0,1.3638180807820597,0.0007019093717509787,0.03601864092886014,0.8256666571811019,0,0.8186615394672895,0.22031326009157673
+87,16,0.47114782322395043,1.95,1.3633065886482703,0.0007006047759510815,0.03612164987149246,0.8145284412947154,0,0.9089771593458082,0.19185653161875704
+87,17,0.42737458791718064,1.95,1.2852620195099465,0.0007641509250395469,0.0359055914037215,0.8024678318291494,0,0.9203299912037667,0.19747530478557992
+87,18,0.43798197136530054,1.9,1.285168518060614,0.0007754240372028921,0.03587390622329031,0.7902974617028286,0,0.9326100112044312,0.21645988961176016
+87,19,0.4424433665567989,1.95,1.3623487937041863,0.0006978217266746093,0.036119122533409466,0.8143828604501376,0,0.9399977305740702,0.2214809144239026
+87,20,0.5084942149644393,2.0,1.3622100034995648,0.0006964222175138186,0.03597581103683118,0.8254334860127659,0,0.9993830155557981,0.22913669580706655
+87,21,0.4668650526504716,2.0,1.3619105258455968,0.0006971200538454991,0.036009774440427696,0.8253905303054306,0,0.9968380273346573,0.22709947238869574
+87,22,0.5107512669052688,1.95,1.3611464801848245,0.0006955896931842591,0.03590028622816569,0.8142003706138538,0,1.0,0.2358375563508961
+87,23,0.5139836920460066,1.95,1.3596518357259229,0.0006961006780497499,0.036297597446085135,0.8139743121546169,0,1.0,0.21327897348668856
+87,24,0.46844054259932266,2.0,1.359852972146289,0.0006987003348556228,0.03630534090627542,0.8250942511538608,0,1.0,0.22813514199774224
+87,25,0.5077981569600019,1.95,1.3596908242332417,0.0006970636143323907,0.0362742241392599,0.8139805073358068,0,1.0,0.2259938565333396
+87,26,0.5153294991615097,1.95,1.3581972171926913,0.0006977420410534379,0.03594422192058882,0.8137544505476968,0,1.0,0.2177649972050323
+87,27,0.4905108359527561,2.0,1.358247472080851,0.000700266801306924,0.03593757912732553,0.8248628871068187,0,1.0,0.2350361198425201
+87,28,0.5077959677659598,1.95,1.3650383929844638,0.000698985600550718,0.036083473617027614,0.8147894370086365,0,1.0,0.22598655921986607
+87,29,0.49130166520540636,2.0,1.3637236553281815,0.0006995838819495655,0.036400409452814725,0.825652395537408,1,1.0,0.23767221735135446
+87,30,0.4699614943055969,2.0,1.347033771199235,0.0007052216909965315,0.03632747862647272,0.8232384459778564,1,1.0,0.19987164768532295
+87,31,0.5281911296860119,1.95,1.3785178145556223,0.0006948852498540721,0.036335856068862186,0.8168137319245735,1,1.0,0.26063709895337295
+87,32,0.48193119243493837,1.95,1.3426712818968545,0.000707228914912995,0.035729003573733494,0.8113928012319577,1,1.0,0.23977064144979443
+87,33,0.5225064963242388,1.9,1.3498124884068314,0.0007028834734741812,0.03594695985809124,0.8007866594596671,0,1.0,0.2750216544141293
+87,34,0.48603974768513314,1.9,1.3433658792514056,0.0007050513053729323,0.03621206017721201,0.7997569486522199,0,1.0,0.28679915895044383
+87,35,0.5327067582560763,1.8499999999999999,1.3424491616862981,0.0007025571398091973,0.035784169553893845,0.7873213716334994,0,1.0,0.27568919418692067
+87,36,0.48795323766733456,1.8499999999999999,1.3413288674679686,0.0007059699970448546,0.03566026373815987,0.7871348656599392,0,1.0,0.29317745889111513
+87,37,0.49353949318956153,1.7999999999999998,1.3404501171622158,0.0007036054407026841,0.036017473695512996,0.7741434847835501,0,1.0,0.3117983106318717
+87,38,0.49661297302838847,1.8499999999999999,1.338477495579034,0.0007013978142895506,0.035600335349756394,0.7866551822898014,0,1.0,0.32204324342796153
+87,39,0.5287156154022744,1.9,1.3384578289780373,0.0006989533227037704,0.03578891785312769,0.7989678297590725,0,1.0,0.29571871800758115
+87,40,0.5250969132439416,1.9,1.3384216157849065,0.00070035741052452,0.03599536774389055,0.7989624642504792,0,1.0,0.2836563774798052
+87,41,0.5352978801088868,1.95,1.3373402827726577,0.0007016397839770367,0.0356563035780742,0.8105739033602426,0,1.0,0.2843262670296225
+87,42,0.4949856437891361,2.0,1.3383056999181835,0.0007048919282431837,0.035889313296309684,0.8219646822808118,0,1.0,0.31661881263045377
+87,43,0.4923162452464062,1.95,1.3384154958395358,0.0007024753495973446,0.0361259336118733,0.8107391970078336,0,1.0,0.3077208174880207
+87,44,0.5371216505462594,2.0,1.3364259440679473,0.0007002936654601374,0.035293998438788984,0.8216880872276473,0,1.0,0.2904055018208645
+87,45,0.4900857249946679,2.0,1.3372410216372206,0.0007034242658237478,0.03555480425426215,0.8218083953410699,0,1.0,0.30028574998222635
+87,46,0.5340546397182678,1.95,1.3362711567190337,0.0007011079871551825,0.035274928496699116,0.8104095277026425,0,1.0,0.280182132394226
+87,47,0.48613790199238505,1.95,1.3348289539087677,0.0007042425067589873,0.03610024839120849,0.8101888039852795,0,0.999271000540037,0.28809833925456735
+87,48,0.5324587141540736,1.9,1.3338339430722987,0.000701871553410715,0.035747588307725744,0.798225062619928,0,1.0,0.2748623805135786
+87,49,0.5309192230867176,1.9,1.3321727893362851,0.0007048485159345348,0.03559291546448677,0.7979583415405934,0,1.0,0.26973074362239163
+88,0,0.10558579023243153,1.95,1.383399263998876,0.0007011794631410226,0.03643321615144324,0.8175448870927575,0,0.10726711553767601,0.20892981339120376
+88,1,0.19620360731901554,1.9,1.3841442448941266,0.0007009219362068154,0.03668483335426788,0.806206396064958,0,0.21664115527901046,0.19849048402470448
+88,2,0.18642298055120474,1.9,1.3817968370172549,0.0006982331648058757,0.03656500889038657,0.8058385375669556,0,0.2505372108141568,0.22069365408514013
+88,3,0.21096398810729258,1.95,1.3740411419938896,0.0006922668957410641,0.03650038539625531,0.8161421555893382,0,0.2942744046599801,0.24418075414433515
+88,4,0.2307538079700431,1.95,1.375319100174043,0.0006926425853322129,0.0363367944717197,0.8163339536880434,0,0.32136398497302693,0.2740273799361078
+88,5,0.24464689062391395,2.0,1.3759450280925707,0.0006928752128879114,0.03632291666843236,0.8274027566493831,0,0.34272583627046627,0.29185518705242486
+88,6,0.2966569868642195,2.0,1.3765343073951561,0.0006932129416223607,0.03600996106113487,0.8274869903029858,0,0.4239075744862063,0.29031319023245655
+88,7,0.2963825986402375,2.0,1.3178130578352518,0.0007281117977965743,0.03587965476100532,0.818952889146363,0,0.4565347043058786,0.31256238972628686
+88,8,0.29271166163029727,2.0,1.3174345373613527,0.0007236924459398257,0.03565150483752363,0.8188954486713305,0,0.4774676806155563,0.3390819646135824
+88,9,0.30223884384384103,2.0,1.329735031765551,0.0007175561367581151,0.03577604951177968,0.8207107256249708,0,0.4886172990665978,0.3559730807240063
+88,10,0.3380464107285853,2.0,1.3403410062084973,0.0007125483270886304,0.035728683103305785,0.8222645692027621,0,0.5176747335570593,0.36992172435253856
+88,11,0.37874560111438416,2.0,1.339791961341636,0.0007091301665443648,0.035817837341380936,0.8221833150884039,0,0.5740152409367691,0.363798349132255
+88,12,0.4149908956718623,2.0,1.3400380891064008,0.0007139606974720686,0.03618509394165068,0.8222207077988648,0,0.6533725280271473,0.37880628153667806
+88,13,0.4595331028497563,2.0,1.1230785112932886,0.0007514729545514676,0.03299258454534543,0.7882787895940472,0,0.7630711473543433,0.3476821463600633
+88,14,0.4455015929085606,2.0,1.1172101045044178,0.0007455346636150163,0.033338365685204166,0.7872957341000495,0,0.7871392281776561,0.3688196721249938
+88,15,0.47761305308557706,2.0,1.1378855693943235,0.0007350713098779707,0.03370238953131902,0.7907340420294777,0,0.8468130513758612,0.3296261084507754
+88,16,0.4452332136173148,2.0,1.323102182942769,0.0006668786418739503,0.03472859606380169,0.8197176827404091,0,0.8489146030724478,0.35222457462778556
+88,17,0.5270937059136416,1.95,1.3215107288539434,0.0006652976688308091,0.03492361796671467,0.8081201455226248,0,0.9621594340167875,0.30743310768975507
+88,18,0.4841767017942352,1.95,1.3246006431419444,0.0006701717444933896,0.035430188824530834,0.808600326315179,0,0.9727812278237329,0.3168807022158068
+88,19,0.5369631400415872,1.9,1.3228068361250775,0.0006682579351594284,0.03508608789351324,0.7964322758120134,0,1.0,0.28987713347195715
+88,20,0.5314502283413931,1.9,1.3250362296368223,0.0006731801535382886,0.03477292282939036,0.7967950777981495,0,1.0,0.27150076113797694
+88,21,0.5265546688830224,1.95,1.327630393185009,0.0006785539054938881,0.03516725705670073,0.8090713794382567,0,1.0,0.2551822296100746
+88,22,0.5149531813140195,2.0,1.3305500971500932,0.0006838067470883054,0.03538196623743729,0.8208206996651575,0,1.0,0.24984393771339825
+88,23,0.5188902018472799,2.0,1.3304570930350788,0.0006855190222086883,0.03543590411123683,0.8208075244545678,0,1.0,0.26296733949093287
+88,24,0.5213535409152958,2.0,1.3290990964619371,0.0006867116310667861,0.035761549924638716,0.8206080509851263,0,1.0,0.23784513638431926
+88,25,0.4980837942043128,2.0,1.3302498064530492,0.0006914639990360056,0.035804597843488016,0.8207787832221284,0,1.0,0.2602793140143759
+88,26,0.5153721837316099,1.95,1.3409757888231668,0.0006897354038964664,0.03558336279168772,0.8111278353222026,0,1.0,0.21790727910536611
+88,27,0.4694709242337164,2.0,1.3406497780493738,0.0006934079627367409,0.03530694981098483,0.8223040968285751,0,1.0,0.23156974744572123
+88,28,0.47032858611574835,1.95,1.3405168977488549,0.0006915333415104894,0.03527246812701311,0.8110580744581987,0,1.0,0.23442862038582774
+88,29,0.47260039594737047,2.0,1.338308029406789,0.0006893397900327154,0.03599414426051689,0.8219604713755109,0,0.9957043141573659,0.2477289009480802
+88,30,0.5171310660505719,2.0,1.3380587865968208,0.000687455144523673,0.03593725400634482,0.8219234422003572,0,1.0,0.223770220168573
+88,31,0.49481142785499066,2.0,1.3385374437760729,0.0006911685939679414,0.03599257010780559,0.8219945769083051,0,1.0,0.24937142618330205
+88,32,0.5209072654399648,1.95,1.3482907363741332,0.0006899935388837127,0.03568976177078427,0.8122460104999543,0,1.0,0.23635755146654933
+88,33,0.46852601977334307,1.95,1.3475684538116752,0.000692780354299188,0.035596006438914654,0.8121366861860932,0,1.0,0.22842006591114353
+88,34,0.4683702517769096,1.9,1.3464142182628547,0.0006908247368885242,0.035925139008367316,0.8002401328452463,0,1.0,0.2279008392563653
+88,35,0.4658468590152377,1.95,1.3442610772066617,0.0006886450457931028,0.03568868158340793,0.811630291983262,0,1.0,0.21948953005079216
+88,36,0.46937984898959295,2.0,1.3438762718848043,0.000686910641477467,0.035907127994489016,0.822773167321709,0,1.0,0.23126616329864313
+88,37,0.5113180468210916,2.0,1.3434323010583686,0.0006851615517486592,0.036010685845243,0.8227079090935706,0,1.0,0.2377268227369721
+88,38,0.471524646045772,2.0,1.3426761333506785,0.0006870439359437003,0.035671536404046925,0.8225981372496108,0,0.9891485707831517,0.2528840591083711
+88,39,0.5185613476885641,1.95,1.3413063005980776,0.0006849907495431101,0.03527292139910065,0.811177010881882,0,1.0,0.2285378256285468
+88,40,0.4700497526357807,1.95,1.340607282016597,0.0006880341053448103,0.03589975982003872,0.8110708524057249,0,1.0,0.23349917545260224
+88,41,0.504586694222211,1.9,1.3392196843409891,0.0006859169173334518,0.03600712253269884,0.7990859838589387,0,1.0,0.2152889807407032
+88,42,0.5045053562602536,1.9,1.3374132931558447,0.0006877496926962524,0.03510490376096494,0.7987964045772487,0,1.0,0.2150178542008452
+88,43,0.4632917711574981,1.95,1.3364545766083482,0.0006896198859798787,0.035217403703648106,0.8104341779936368,0,1.0,0.2109725705249935
+88,44,0.5037069181926209,1.9,1.3362394131966813,0.0006876697646651902,0.0350732128756057,0.7986076458715472,0,1.0,0.2123563939754028
+88,45,0.5088065502539184,1.9,1.3340629431239373,0.0006891386304175838,0.035926224672155026,0.7982578422180974,0,1.0,0.19602183417972777
+88,46,0.497589255858398,1.95,1.2804175042778123,0.0008012464932347194,0.03594755972956275,0.8017105812627995,0,1.0,0.19196418619466005
+88,47,0.49482766934802724,2.0,1.2861532127319568,0.0007884097300174444,0.03594658796300081,0.814229470624637,0,1.0,0.18275889782675753
+88,48,0.48276771021649856,2.0,1.2904887651390982,0.0007769021807451885,0.03592091419850276,0.8148809005475904,0,1.0,0.20922570072166166
+88,49,0.4606946747730208,2.0,1.3349294529949403,0.0006839055677221785,0.03584781599845753,0.8214639136822377,0,1.0,0.20231558257673582
+89,0,0.12343526697911025,1.95,1.3803011700272192,0.000701436153979275,0.03644590330563395,0.8170823811654588,1,0.1005461669376892,0.2107226673467819
+89,1,0.19416432245522125,1.9,1.3801145920520865,0.0007021396909684124,0.036626210042054394,0.8055764171078171,1,0.16202738264274452,0.26451123132707804
+89,2,0.22985749452546483,1.9,1.3796418976617852,0.0007023420689749797,0.03653153159578811,0.8055024349874825,1,0.21266251213207177,0.3159749655754537
+89,3,0.19602300194856204,1.9,1.386228422512803,0.0007001373093808762,0.036452752322669764,0.8065315704034122,1,0.23272238262240047,0.3097801629986727
+89,4,0.25046105768095905,1.8499999999999999,1.386179775799829,0.0007001244638868258,0.0367757084265756,0.7945511105865493,1,0.260891386284849,0.35368167722339827
+89,5,0.308949381302207,1.8499999999999999,1.3862048562954303,0.0007002058617846493,0.03655333765412842,0.7945552312617922,1,0.3307222567411409,0.422201595352502
+89,6,0.32570475433085966,1.8499999999999999,1.3832116713636458,0.0006982746626929174,0.03655436240011006,0.7940655696954848,1,0.3628663867947685,0.4685273320431742
+89,7,0.3272797625125258,1.9,1.384208979106804,0.0006987309018332621,0.036689463217462234,0.8062158251674215,1,0.40616070945266747,0.4827182624381958
+89,8,0.392770753722161,1.95,1.3795360326108261,0.0006961686536739204,0.03635286591258248,0.8169664216104131,1,0.45171424591494036,0.5402835178539498
+89,9,0.37514956477554007,1.95,1.3804921686586504,0.0006975289619593403,0.036443908270447196,0.8171097580663264,1,0.47912484929641413,0.5449987501899146
+89,10,0.37580698939270196,2.0,1.3798599518682058,0.0006974010736498584,0.03658627986043763,0.8279624098089566,1,0.5261982516193977,0.5177589624831429
+89,11,0.40080599301010267,2.0,1.3795626307972302,0.0006967531709152228,0.03659172485749918,0.8279198704588802,1,0.5507183024792633,0.5350622400613244
+89,12,0.44229331098585,2.0,1.3788677708402868,0.0006965836229939726,0.036427699658095794,0.8278208038717401,1,0.5853295228574364,0.5605383394762514
+89,13,0.49353073632369754,2.0,1.3806377505820204,0.0006968990438959963,0.036479959228371175,0.8280730287636686,1,0.6398133013142528,0.6253513859933214
+89,14,0.45472560469759865,2.0,1.3674836064701577,0.0007225929654025438,0.036730175954533525,0.8261995879248085,1,0.6642242355661356,0.5967863682371479
+89,15,0.5158608334909366,1.95,1.3700994982510561,0.0006901569031024269,0.03644025496140131,0.8155493236497818,1,0.7056984003819946,0.6452715777937955
+89,16,0.5063363979509306,1.95,1.3629809868458969,0.0007259637479590268,0.036708364613614375,0.814486910488613,1,0.7249851444351724,0.6544744672562055
+89,17,0.5525452181514201,2.0,1.364962078376912,0.0007213128128607092,0.03634564149592283,0.8258368459339435,1,0.7647259738500647,0.6888494287046473
+89,18,0.536319613856653,2.0,1.3644345753178035,0.0007241822801167491,0.03636907479408263,0.8257617876584201,1,0.8167702034710576,0.6653717748940999
+89,19,0.6104680073097968,2.0,1.3813829392065182,0.0006990110034247293,0.03655648985890634,0.8281796949643041,1,0.845750390180572,0.7405595041252265
+89,20,0.5887804559708134,2.0,1.3820329220116123,0.0007009932457647589,0.036671268992478634,0.8282727304433032,1,0.8682565598363247,0.738259440120945
+89,21,0.6265974912545976,1.95,1.3808363647350306,0.000700993064074771,0.0363227547441269,0.817162224728429,1,0.8913571799658466,0.7668487308941965
+89,22,0.6094629567637082,1.95,1.3817809736484654,0.0006999760159957372,0.036672372148308506,0.8173030109645132,1,0.8937079226565489,0.7732659590036287
+89,23,0.6118436973141161,2.0,1.3804443052860393,0.0006998008124486809,0.03656485557250949,0.8280463129207121,1,0.9494136718735916,0.7402607618822648
+89,24,0.6143554192242926,2.0,1.3812917469720456,0.0006988845334876693,0.03654864695529751,0.8281666821003419,1,0.9823591518745433,0.704705861581584
+89,25,0.6596775637974124,2.0,1.3814980899314024,0.0006980736915244412,0.036495699598269996,0.8281958133376669,1,1.0,0.7322585459913743
+89,26,0.6850890032261456,2.0,1.3824130715939738,0.0006979147794145848,0.03664758758457316,0.8283259195104898,1,1.0,0.7836300107538188
+89,27,0.6584399577308636,2.0,1.3834069208355535,0.0006994711570292857,0.036410646459336796,0.82846764318873,1,1.0,0.7947998591028785
+89,28,0.6863207610306588,1.95,1.3822706157992344,0.0006992715801119608,0.03651287704783648,0.8173759020778938,1,1.0,0.8210692034355289
+89,29,0.7169335615987391,1.95,1.3632203115154833,0.000688858078067581,0.03596424968766295,0.8145118574842805,1,1.0,0.8897785386624634
+89,30,0.7139620221981662,1.95,1.3622461215703652,0.0006870188954736733,0.03601161614212554,0.8143640734597978,1,1.0,0.9132067406605539
+89,31,0.694747535681163,2.0,1.3653548790621899,0.0006919466031352247,0.03620103032401245,0.8258848898593728,1,1.0,0.9158251189372101
+89,32,0.7425643514167528,2.0,1.370394017557735,0.000692197923542372,0.03636063341326588,0.8266083956336082,1,1.0,0.9752145047225093
+89,33,0.6942610038041066,2.0,1.3693514367698547,0.0006904679643514519,0.036294756657607175,0.8264584185780932,1,1.0,0.947536679347022
+89,34,0.7488357860356014,1.95,1.367244363360761,0.0006896822207320942,0.03622971909372055,0.8151192995636494,1,1.0,0.9961192867853379
+89,35,0.75,1.95,1.3653910233113122,0.0006876955280572764,0.036149075839675686,0.8148392389181893,1,1.0,1.0
+89,36,0.7012562300436402,2.0,1.3636983437840828,0.0006859646619023013,0.03602659753850035,0.8256448308105467,1,1.0,0.9708541001454671
+89,37,0.75,1.95,1.3622217835042776,0.0006854781680791672,0.03607808089101859,0.8143599282717114,1,1.0,1.0
+89,38,0.74,1.95,1.35972445867205,0.0006833720462366109,0.036021050590296255,0.8139814538826925,1,1.0,1.0
+89,39,0.74,2.0,1.3632510113606402,0.0006871917650681661,0.03584149143603863,0.8255807788909106,1,1.0,1.0
+89,40,0.75,2.0,1.3661286341022665,0.0006910964932294263,0.036060647986346124,0.8259958826688284,1,1.0,1.0
+89,41,0.74,2.0,1.3644587286509307,0.0006889374806676898,0.035940593944697855,0.825755120730263,1,1.0,1.0
+89,42,0.75,2.0,1.3660506859136052,0.0006921897541263685,0.03627190173442136,0.8259849934267015,1,1.0,1.0
+89,43,0.75,2.0,1.364391641013601,0.0006899003443362057,0.03629634254667299,0.8257457448009666,1,1.0,1.0
+89,44,0.7045249599736032,2.0,1.362448022344366,0.0006875950431310358,0.036074362488072644,0.8254652367271711,1,1.0,0.981749866578677
+89,45,0.7196511417500551,1.95,1.3609076755332112,0.0006878417092861085,0.03588647051626821,0.8141618974185747,1,1.0,0.9988371391668504
+89,46,0.699755393739849,2.0,1.3664451185922992,0.0006887674968698525,0.03619233947120136,0.8260406959016069,1,1.0,0.9658513124661632
+89,47,0.75,2.0,1.3653683262220186,0.0006888625989624894,0.03595210357568712,0.8258859365918746,1,1.0,1.0
+89,48,0.74,2.0,1.3635896813132595,0.0006869159578607462,0.036139771357679665,0.8256294616104517,1,1.0,1.0
+89,49,0.74,2.0,1.3655595680708568,0.0006900740903139036,0.03633745029400527,0.8259137835187491,1,1.0,1.0
+90,0,0.08102884606954228,2.0,1.384184695191215,0.0007010693136973494,0.03641438063286724,0.8285785976872063,0,0.19349587581147848,0.17876831914983632
+90,1,0.13873233331511953,1.95,1.3856946771518106,0.0007004734178883733,0.036737831312423384,0.8178868230898837,0,0.20462578962945827,0.18960672487778737
+90,2,0.14664159281250733,1.95,1.379092114961501,0.0006952888895423459,0.03645815686792531,0.8168997690679817,0,0.2217579351641898,0.19312806248943798
+90,3,0.15436700853240556,2.0,1.380638849222392,0.0006962072159225532,0.03618528841502204,0.8280729881865423,0,0.22939217506967952,0.20870046168177922
+90,4,0.2130753909021547,2.0,1.3700748296399197,0.0006888381508910566,0.03628698252330701,0.8265616793367526,0,0.2897211125475254,0.190623152943815
+90,5,0.23668688165402538,2.0,1.3836445060759341,0.0006990574138740855,0.03667805693044887,0.8285012859816849,0,0.3402447900944478,0.20196321872082076
+90,6,0.21003620756824462,2.0,1.3747545780949844,0.0006919325872522758,0.035939795057992684,0.8272324158344885,0,0.36878718503142405,0.20840444518558332
+90,7,0.2797270140463831,1.95,1.3749200524541592,0.0006921132361490769,0.03632307131904362,0.8162739570077422,0,0.44792622442738667,0.20185508091809484
+90,8,0.24548356301635832,1.95,1.334916000504311,0.0007359234407713775,0.0361177082326007,0.8102119331567407,0,0.4550766126450857,0.21150972652774674
+90,9,0.3104923674858731,1.9,1.3442411337882156,0.000730159940325933,0.03606183105211146,0.7999051179337306,0,0.5180712240755706,0.21087959285214952
+90,10,0.3443987967714954,1.9,1.3425987504847954,0.0007323983609891698,0.036195666846044985,0.7996428308886763,0,0.6198243471216437,0.154896859742793
+90,11,0.3723607949934489,1.9,1.3243931688485022,0.0006701605133891993,0.03506078896563911,0.7966899600180679,0,0.7077155220738065,0.13091528721308762
+90,12,0.39661663873726033,1.9,1.3219412146856724,0.0006689151397559129,0.034924434192006144,0.796292111620656,0,0.7859962573140775,0.14072711937209764
+90,13,0.3637834885602813,1.9,1.3278653356457895,0.0006788969062255733,0.03548769592683671,0.7972546094477763,0,0.7889588249551359,0.16066652859408964
+90,14,0.4353061710568761,1.8499999999999999,1.3367369937259859,0.000677695859198794,0.03576619103094605,0.7863549664150825,0,0.8744437736320396,0.15176220534686732
+90,15,0.4559068076888272,1.8499999999999999,1.2667159065423221,0.0007857517588634466,0.03570685406444356,0.7743934299408711,0,0.9282535402547054,0.14868463862315015
+90,16,0.4550051851366306,1.8499999999999999,1.269812534229587,0.0007756025767438344,0.03561907933828794,0.7749304363160237,0,0.9686644733123367,0.15846465270565283
+90,17,0.487916188848423,1.9,1.2671466490802101,0.0007755893543960197,0.03532526087156248,0.7872951737673242,0,1.0,0.15972062949474336
+90,18,0.4702500011755504,1.9,1.2716235000367317,0.0007648343253708378,0.03509131644345158,0.7880403167479592,0,1.0,0.1675000039185012
+90,19,0.49109823941426756,1.95,1.2689807131584157,0.0007648892650185825,0.03552058055414281,0.7998745513967958,0,1.0,0.1703274647142251
+90,20,0.49161701461947865,1.95,1.2725164987964954,0.000755134478935097,0.035559919153840755,0.8004368267132725,0,1.0,0.17205671539826214
+90,21,0.45044352357230055,2.0,1.2730002468434978,0.0007472025766898548,0.03548304080228034,0.8122191576991651,0,1.0,0.16814507857433503
+90,22,0.4602300438437064,1.95,1.2757135226963132,0.0007560729509246531,0.03566679595738268,0.8009473207640445,0,1.0,0.20076681281235473
+90,23,0.5040453828082639,2.0,1.343394350960634,0.0007338970636339482,0.03619125978664835,0.8227165906255994,0,1.0,0.1801512760275463
+90,24,0.4779895879178613,2.0,1.2745428615581689,0.0007796257619626539,0.035519548246147836,0.8124642033376943,0,1.0,0.19329862639287076
+90,25,0.500848954350226,1.95,1.2726949309853883,0.0007809858628170936,0.035279329120178796,0.8004735854032704,0,1.0,0.2028298478340867
+90,26,0.48727432982149205,1.95,1.3437695643612846,0.0007278325898914082,0.03643182048835507,0.811567120640124,0,1.0,0.22424776607164001
+90,27,0.4695934758971495,2.0,1.3518839750380014,0.0007219865681779849,0.036349882499158805,0.8239479902808192,0,1.0,0.23197825299049818
+90,28,0.5188471818933021,2.0,1.3541897593465768,0.000716971330056538,0.03632783503052407,0.8242807594223933,0,1.0,0.22949060631100687
+90,29,0.5155358037998189,2.0,1.354049039166247,0.0007225062814698436,0.03631912889756888,0.8242619798287907,0,1.0,0.2184526793327294
+90,30,0.5101102595669049,2.0,1.353510098538364,0.0007273384301529812,0.03627495989718416,0.8241852987875283,0,1.0,0.2337008652230162
+90,31,0.505815591352362,2.0,1.351746861470558,0.0007280176650029899,0.036255039267111884,0.8239298498813592,0,1.0,0.18605197117453975
+90,32,0.4936647069416794,2.0,1.2734285432356658,0.0007579942084052446,0.03531764312572362,0.81228776334566,0,1.0,0.17888235647226472
+90,33,0.4647128833963844,2.0,1.272899116410751,0.0007514152142499697,0.03562764573434072,0.8122050179736588,0,1.0,0.21570961132128116
+90,34,0.47025712577639495,1.95,1.3522030175777708,0.0007223978275449224,0.036370133091986404,0.8128517732984839,0,1.0,0.2341904192546497
+90,35,0.5073616509925106,2.0,1.352483978981187,0.0007182832194762263,0.03623539644720666,0.8240339345727775,0,1.0,0.22453883664170185
+90,36,0.4688519719171221,2.0,1.3514201051819064,0.0007182373976166129,0.03615279608156567,0.8238796042532727,0,0.9991473558333205,0.2306434319459796
+90,37,0.5104386050357516,1.95,1.3520262342876153,0.0007139994039281035,0.03618367600172654,0.812822323375134,0,1.0,0.23479535011917177
+90,38,0.5120518038682014,1.95,1.349300846315094,0.0007145966793965352,0.03629540622563558,0.8124075053644925,0,1.0,0.24017267956067126
+90,39,0.5121141793354205,2.0,1.3472783525976015,0.0007147825795939357,0.036003604544053026,0.8232768159774984,0,1.0,0.2070472644514016
+90,40,0.5036420584748202,2.0,1.3483806722641123,0.0007206124489978207,0.03626365909336467,0.8234388328179538,0,1.0,0.17880686158273418
+90,41,0.4892105984742605,2.0,1.270494001326072,0.0007696673075655342,0.0355075003170391,0.811843471235273,0,1.0,0.1640353282475351
+90,42,0.452185974891278,2.0,1.2701791869836216,0.0007635485676243889,0.03492598323514197,0.811793507780577,0,1.0,0.17395324963759318
+90,43,0.4532702851934956,1.95,1.2693710543786922,0.0007667254914406642,0.034899092781334184,0.7999376157832055,0,1.0,0.17756761731165202
+90,44,0.45311603509093834,2.0,1.2666116420849296,0.0007710366004700786,0.03584593026023943,0.8112501279187817,0,0.9989023112681725,0.17851703527889762
+90,45,0.479903605397335,2.0,1.2676474957358819,0.0007720960597743564,0.03581598603229673,0.8114090144184275,0,1.0,0.19967868465778332
+90,46,0.4850309650344146,2.0,1.266709390944715,0.0007743735728314254,0.03587083040382371,0.8112661169695617,0,1.0,0.21676988344804857
+90,47,0.46382978270983377,2.0,1.348219315064249,0.0007148232067585703,0.03602893397036615,0.8234136887556803,0,1.0,0.2127659423661126
+90,48,0.5072175524698004,1.95,1.3485540105893965,0.0007107917768225519,0.03604857718463635,0.8122924995949883,0,1.0,0.22405850823266782
+90,49,0.5102271116868088,1.95,1.34568202930782,0.0007111298950867851,0.03614455845041691,0.811854309349101,0,1.0,0.20075703895602898
+91,0,0.14145430426335495,2.0,1.3841362332051093,0.0007005036114396296,0.036411540901310165,0.8285715535203761,0,0.14071810752119657,0.21722353751625442
+91,1,0.1543578702603761,1.95,1.384141471768258,0.0007001739803698408,0.03666249696738709,0.8176552727793924,0,0.15671526433162475,0.23890588175908728
+91,2,0.17108830991728077,2.0,1.3840051126658142,0.0006998697605106029,0.03666483938358377,0.8285527481794147,0,0.19512224688497198,0.24346470387763994
+91,3,0.1618993697596559,2.0,1.3839520247491541,0.0006995996174855173,0.03643102534385306,0.8285451299931911,0,0.20349427455717442,0.26833886645595384
+91,4,0.1963291181477346,2.0,1.3683589213464358,0.000687503894592957,0.03625389410682208,0.8263151702290424,0,0.22636969107310026,0.28593747239498163
+91,5,0.2142465531953227,2.0,1.3689948979327102,0.0006877903915861558,0.0361331136248267,0.8264065078371359,0,0.25591433984551565,0.30626939085705485
+91,6,0.23329620703753404,2.0,1.3693091232440087,0.0006879779597924488,0.035763332802856374,0.8264516354027992,0,0.29222585281530156,0.32135288637137804
+91,7,0.22071411082155667,2.0,1.3693581128270882,0.0006882640909704819,0.03608059379840238,0.826458743910057,0,0.2942253781704711,0.3434131985112274
+91,8,0.3005601763208342,2.0,1.3698859626430813,0.0006889174038621123,0.03619776016139752,0.8265346248978592,0,0.38227674645369103,0.3254982591311927
+91,9,0.32019768296059475,2.0,1.3733598615848217,0.0006909600089632334,0.036507438716274605,0.8270327151838021,0,0.4577817451491705,0.32361661633642175
+91,10,0.29527278911331983,2.0,1.3469296924271252,0.0007258859716379376,0.03625670002899921,0.823229314576049,0,0.49087980522000507,0.32973622341772607
+91,11,0.33627534126355235,1.95,1.35470408612348,0.0007213989256655195,0.036280188847679196,0.8132316441606595,0,0.5262460146566703,0.35258978466961405
+91,12,0.3170693649685011,1.95,1.353909436462876,0.000719008083934686,0.036421356588194564,0.813110191375639,0,0.5243592211875894,0.35775225497821767
+91,13,0.31798786790280625,2.0,1.3606618885691064,0.0007154722180335628,0.03637268361614062,0.8252157964284569,0,0.5172172453571726,0.3703365658664573
+91,14,0.32927834448076854,2.0,1.366694218080481,0.0007122813747831172,0.03648385601131472,0.8260832445274138,0,0.5377004265992233,0.38066057947026394
+91,15,0.3409121141045352,2.0,1.3711787428560334,0.0007100256808357517,0.03634127370238913,0.8267259468145595,0,0.5619000105539148,0.38717369960989756
+91,16,0.38261335596900714,2.0,1.3748127946264463,0.0007081671207073713,0.03658811352857495,0.8272453761400183,0,0.605371706794146,0.40154891083782907
+91,17,0.3788407010474849,2.0,1.3722632908482857,0.0006934611481061853,0.0362264319159049,0.8268765110029451,0,0.6293020868838896,0.42373288764643036
+91,18,0.46339570319014745,2.0,1.3750514283671031,0.0006938631243160794,0.03630411189569494,0.8272753889541661,0,0.7159162882747983,0.4234306262674272
+91,19,0.4826495802157109,2.0,1.373880900844304,0.0006934094580277517,0.03627974106323338,0.827107937488662,0,0.7907319856857921,0.42118928647131365
+91,20,0.5139283265059335,2.0,1.3753789153348857,0.000695996369627737,0.036513310298276515,0.8273227883309945,0,0.866904803536555,0.42388801697103795
+91,21,0.5581928697271052,2.0,1.2767262187097501,0.0006339181799044696,0.03414317985159263,0.812752300801851,0,0.971004288451215,0.3993038478220642
+91,22,0.5142234330356144,2.0,1.3235954739998095,0.0006622240895179997,0.03519748808602254,0.8197891948183291,0,0.9798454797581857,0.40761747044113344
+91,23,0.5674668554311197,2.0,1.245207901453068,0.0006044757811680212,0.03265623266702901,0.8078991672555754,0,1.0,0.3915561847703991
+91,24,0.5202259523119057,2.0,1.3242989168547188,0.0006630957066487402,0.0347781698723958,0.8198933519012844,0,1.0,0.4007531743730191
+91,25,0.569160885175101,2.0,1.2101288281838534,0.0005724575987962037,0.0315325958659929,0.8023859346007083,0,1.0,0.3972029505836697
+91,26,0.5176443082664911,2.0,1.3240508991861697,0.000663584722380502,0.03524081984392945,0.8198568691091076,0,0.9957061057764436,0.39787288651971214
+91,27,0.5588704685978589,1.95,1.3242846456151542,0.0006629549206154837,0.03541936416648407,0.8085491816425348,0,1.0,0.36290156199286283
+91,28,0.5473507861282187,1.95,1.3301248515038129,0.0006723300496246178,0.03487580413620784,0.8094544936442786,0,1.0,0.35783595376072896
+91,29,0.5468312081671338,2.0,1.3268817367911747,0.0006707334110009486,0.03500581967620464,0.8202766892646535,0,1.0,0.322770693890446
+91,30,0.537420986303967,2.0,1.334078279916028,0.0006820659582845456,0.0352535209394171,0.8213385057752755,0,1.0,0.2914032876798899
+91,31,0.5117055882242405,2.0,1.3382105757926013,0.0006923267346100584,0.035589408604249625,0.8219470837051625,0,1.0,0.3056852940808017
+91,32,0.538195102977399,1.95,1.3461225949860247,0.000689690308424344,0.03579959799621611,0.8119150471922901,0,1.0,0.2939836765913301
+91,33,0.5356898139234341,1.95,1.3481030794480848,0.0006981961359796671,0.03601268332697209,0.8122198927983688,0,1.0,0.2856327130781134
+91,34,0.526204842880153,2.0,1.350016086514838,0.0007064591604196074,0.03586600154130169,0.8236723644576057,0,1.0,0.2540161429338431
+91,35,0.5170833058561125,2.0,1.3518876198721226,0.0007136024314716423,0.03612305684903371,0.8239460866168117,0,1.0,0.223611019520375
+91,36,0.46899835575986826,2.0,1.3521780175958908,0.000720141152276349,0.036114452963694,0.823990104072807,0,1.0,0.22999451919956077
+91,37,0.47682720416191493,1.95,1.353316331331208,0.0007156947835801387,0.03616185991330602,0.8130190378230168,0,0.9959076667600428,0.26154712485965925
+91,38,0.5236578033648256,2.0,1.3530699597043698,0.0007120014905194708,0.03631014461780563,0.8241170657797685,0,1.0,0.245526011216085
+91,39,0.5107650101088679,2.0,1.353933494782786,0.0007169483029677807,0.036304667824070415,0.8242436317969486,0,1.0,0.23588336702955937
+91,40,0.5084706093651266,2.0,1.3522032795673564,0.0007173781689833455,0.036273303351984566,0.8239929663754327,0,1.0,0.1949020312170882
+91,41,0.5056967525500846,2.0,1.259386887353091,0.0007858384368704073,0.03553486747911748,0.8101459141143764,0,1.0,0.21898917516694877
+91,42,0.5004535939833182,2.0,1.3520638215999776,0.00071264946792221,0.036100310110186,0.8239713683521573,0,1.0,0.20151197994439388
+91,43,0.4605172170156707,2.0,1.3501917287381826,0.0007128510883459764,0.03615291466370088,0.823699729076418,0,1.0,0.20172405671890228
+91,44,0.4627956275940119,1.95,1.350463261067413,0.0007089556086389396,0.036140316360226146,0.812582876672488,0,1.0,0.20931875864670618
+91,45,0.5087176410867891,2.0,1.3494523623446264,0.0007055924519635897,0.03585490168608188,0.823590224514806,0,1.0,0.19572547028929674
+91,46,0.49841200442386674,2.0,1.258823113586776,0.0007617044060664493,0.0355952819143213,0.8100517583896112,0,1.0,0.19470668141288908
+91,47,0.4594627571381415,2.0,1.2581209366358954,0.0007558687315100274,0.035170917974028104,0.809941895734463,0,0.9874284811723619,0.21497121556398902
+91,48,0.49368133636838407,1.95,1.3495833558988377,0.000701529939277681,0.035974045292730336,0.8124465743508031,0,1.0,0.24560445456128022
+91,49,0.5167583034709216,1.95,1.356325472837205,0.0006989485826968426,0.03617512781579627,0.8134709719873907,0,1.0,0.2225276782364052
+92,0,0.10397667544672393,1.95,1.385600331901547,0.0006997224551204809,0.03637475325183852,0.8178725464128592,0,0.09641987424711829,0.21802908582625538
+92,1,0.166553292927865,1.9,1.3856796421619655,0.0006997422251145448,0.03671575443063298,0.8064458018544182,0,0.15968598023998182,0.20892966943957428
+92,2,0.20907150569396699,1.9,1.3855560648479535,0.0006996732232647348,0.03667966916874334,0.806426490278291,0,0.2525595591696069,0.19349227342041406
+92,3,0.2437971594126252,1.9,1.3835796680995185,0.0006982937074468534,0.03637086285685552,0.8061173511259996,0,0.3528521448048817,0.1755210049689084
+92,4,0.2666377704740516,1.9,1.3838501066992794,0.0006984610003683878,0.03668931761833393,0.8061596673462539,0,0.4286393227025173,0.18394013797681566
+92,5,0.2399890069868906,1.9,1.3850528000156683,0.0006996647156402436,0.03662092370613076,0.8063479144534361,0,0.45109725835710873,0.19850034548015694
+92,6,0.24784328174671033,1.8499999999999999,1.3852569579697276,0.0007000862431110686,0.036542342443352964,0.7944004167010256,0,0.4569868566693848,0.21682846359652136
+92,7,0.3142996650642728,1.9,1.3726670285894533,0.0007156105358678627,0.03672328680406267,0.8044115405781044,0,0.518458054983684,0.22305481023599744
+92,8,0.3612502858091625,1.9,1.3723595118097263,0.0007158386146574931,0.03658826362015215,0.8043632251049134,0,0.6313112138311251,0.19575266758904164
+92,9,0.3973912961608778,1.9,1.348539450374973,0.0007213975349206792,0.03619485249402264,0.8005894087226105,0,0.7422930249527141,0.16824695393264044
+92,10,0.35924619442639727,1.9,1.3467596754792996,0.0007217737823012342,0.03607532729868618,0.8003052430151252,0,0.7735473907560495,0.16609079374659144
+92,11,0.37537664769151824,1.8499999999999999,1.3546663027509525,0.0007169152062355973,0.0362204533854626,0.7893646817819423,0,0.7985640178089265,0.1865034685598254
+92,12,0.41453607208969534,1.9,1.3604578885192193,0.0007131264399962715,0.03641918383528305,0.8024827031227679,0,0.8247344271732789,0.2154743374012792
+92,13,0.4650884834132124,1.9,1.3274308050163102,0.0006614489084993267,0.035242707186887996,0.7971787208822441,0,0.8920433676842112,0.22757045446509308
+92,14,0.5168225041229505,1.9,1.3251580405027827,0.0006598662879729958,0.035377794961635,0.7968104887194032,0,1.0,0.22274168040983483
+92,15,0.5092002450789391,1.9,1.3338023063480022,0.0006665769951100136,0.03529922821625823,0.7982085974388088,0,1.0,0.23066748359646355
+92,16,0.5108467796518793,1.95,1.331257761136869,0.0006649515787967524,0.03477794125856674,0.8096268955135718,0,1.0,0.2361559321729309
+92,17,0.4991485591951791,2.0,1.3300180508949013,0.0006642511580449261,0.03488592354492405,0.8207366818188118,0,1.0,0.2638285306505969
+92,18,0.5051987408130791,2.0,1.3375808481784524,0.000666985142201595,0.03503187790767837,0.821847483719344,0,1.0,0.2839958027102636
+92,19,0.5106749558075567,2.0,1.3422814189414294,0.0006693831484728907,0.035251265851530586,0.8225353732022151,0,1.0,0.30224985269185567
+92,20,0.5351393726917697,2.0,1.3457015727912753,0.000671792591364539,0.03565505119755842,0.823034767511534,0,1.0,0.28379790897256546
+92,21,0.5284980807860953,2.0,1.353050741579977,0.0006765632665795097,0.03611908203466293,0.8241040063588625,0,1.0,0.2949936026203174
+92,22,0.5169234483770356,2.0,1.3508068019535546,0.0006749181045041653,0.035952237800927454,0.823778018269652,0,1.0,0.3230781612567855
+92,23,0.49867142861125535,2.0,1.3534476047191235,0.0006765387025992903,0.03552051417854073,0.8241615197685058,0,1.0,0.3289047620375177
+92,24,0.49587870148285884,2.0,1.353304214364722,0.0006771846693407699,0.03537240933778374,0.8241409260149499,0,1.0,0.3195956716095294
+92,25,0.5355162634119546,2.0,1.3527519182150438,0.0006775942159275327,0.035521729863666716,0.8240609846901883,0,1.0,0.2850542113731816
+92,26,0.48843038436991615,2.0,1.3591252882079832,0.000681228153618222,0.035937215528706344,0.8249841661331868,0,0.9994738109976129,0.2954695332362364
+92,27,0.5174903422795144,1.95,1.35840086811407,0.0006811114200355377,0.036169067261369904,0.8137802731108343,0,1.0,0.3249678075983813
+92,28,0.538163990111946,1.95,1.360030290875958,0.000682742367655021,0.03571301508901637,0.8140275665671017,0,1.0,0.3272133003731533
+92,29,0.5361677460619262,1.95,1.3582639045407705,0.0006812509699624051,0.03562528758908428,0.8137595587921503,0,1.0,0.32055915353975395
+92,30,0.5377096067680593,2.0,1.3563921476989151,0.0006795960255481756,0.03568544722039232,0.824588718112271,0,1.0,0.32569868922686424
+92,31,0.5376594858132224,2.0,1.3551735747589555,0.0006785548020808243,0.03560823029941103,0.8244120899154243,0,1.0,0.32553161937740793
+92,32,0.5236410830207059,2.0,1.3531185764035154,0.0006768251574615431,0.03573347238719053,0.8241139151698571,0,1.0,0.3454702767356863
+92,33,0.5461072172866233,2.0,1.3552594944754215,0.000678882972207581,0.03616073644997805,0.8244246220360091,0,1.0,0.3203573909554108
+92,34,0.49979333144698024,2.0,1.3614933052077445,0.0006824799236136152,0.03623497210083506,0.8253261707986788,0,1.0,0.33264443815660083
+92,35,0.5247560211060525,1.95,1.361183153434258,0.0006826545584087114,0.03577483058631198,0.8142020048628704,0,1.0,0.34918673702017466
+92,36,0.5100783078435999,1.95,1.3621768809992978,0.0006839515466940584,0.03594340989111724,0.8143526783162727,0,1.0,0.36692769281199944
+92,37,0.5474619201976055,2.0,1.361671099764843,0.0006843972654560074,0.03612950879931601,0.8253523534464215,0,1.0,0.3582064006586848
+92,38,0.5331138655095726,2.0,1.360591925733565,0.0006832596654515414,0.035949089600348275,0.8251964121788992,0,1.0,0.377046218365242
+92,39,0.5391670390820139,2.0,1.3617719022533024,0.000685122623100925,0.03626872597934343,0.8253670923306424,0,1.0,0.39722346360671307
+92,40,0.5622594167830314,2.0,1.3623614379476023,0.0006869107863865262,0.03630097024317149,0.8254525647793569,0,1.0,0.407531389276771
+92,41,0.5532484128268033,2.0,1.1734175274619116,0.0005391404590583067,0.030476770811060334,0.7964894128573212,0,1.0,0.4441613760893442
+92,42,0.5604097894842192,2.0,1.1791743046595053,0.0005529408453567966,0.03084752874194362,0.7974254181171222,0,1.0,0.4680326316140638
+92,43,0.5831724037584821,2.0,1.1828365291381546,0.0005653950651019657,0.03109002754028039,0.7980203775048401,1,1.0,0.4772413458616068
+92,44,0.5671059019031612,2.0,1.370559167472376,0.000705486794749816,0.03644252655965025,0.8266358736543021,1,1.0,0.49035300634387063
+92,45,0.6207834394819557,2.0,1.370538232114058,0.0007027855024073588,0.036316196148191746,0.8266320991573977,1,1.0,0.5692781316065186
+92,46,0.5742122108462636,2.0,1.374786773257913,0.0007012779948651508,0.03645619009203425,0.8272396882837547,1,1.0,0.5473740361542121
+92,47,0.6118288468620485,1.95,1.3732424628759354,0.0007013712277317702,0.036557636524146016,0.8160250138709991,1,1.0,0.5727628228734951
+92,48,0.5658867197901619,1.95,1.3733067074469154,0.0007048713576848139,0.03650306002123822,0.8160357094877323,1,1.0,0.5196223993005398
+92,49,0.6260449730170285,1.9,1.371709833670976,0.0007051536622198929,0.036404546441929045,0.8042576053853134,1,1.0,0.5868165767234282
+93,0,0.16789630089259763,1.9,1.3857316993909783,0.0006998627915222868,0.03635927370808583,0.8064539650256431,0,0.16578532901138981,0.20527389762680562
+93,1,0.2130425782802473,1.8499999999999999,1.3856193026655215,0.0006998141811935592,0.036721077890599266,0.7944595027134796,0,0.2626047003941714,0.1933356604085959
+93,2,0.22524331455691005,1.8499999999999999,1.3836406431746715,0.0006983696504794111,0.036573996057970494,0.794135739709126,0,0.3215798800427688,0.18870454179934176
+93,3,0.2552692957219742,1.9,1.3834550955045488,0.0006983396053944319,0.036441675713309064,0.8060978950107556,0,0.39175649595499573,0.19522232446658652
+93,4,0.296426292532466,1.9,1.3832985654763703,0.0006983071804209761,0.03667930701642052,0.8060734174193624,0,0.48370633793509465,0.17647919119476047
+93,5,0.25140327975255206,1.9,1.3833579890770042,0.0007031145138963295,0.03665536446467153,0.80608420918863,0,0.4865511389111929,0.18927608062691625
+93,6,0.2950385410204008,1.8499999999999999,1.3829890893409618,0.000703288405922565,0.03657480359378694,0.7940308094487143,0,0.5204080319929248,0.22291776074410272
+93,7,0.3169649811508109,1.8499999999999999,1.3731954859846303,0.0007128059148795684,0.036681469511028804,0.7924276242089933,0,0.5641147280269977,0.2377302998000393
+93,8,0.3618834768342574,1.8499999999999999,1.37381357551779,0.0007104996248289133,0.03649253030478944,0.7925285145283477,0,0.6224405759645464,0.24302415482812953
+93,9,0.41097798046078465,1.9,1.1360332400597684,0.0008388107855839439,0.034750000937671374,0.7645359609892686,0,0.7371860393949746,0.22034521567598278
+93,10,0.4500374531019779,1.95,1.1367823036789777,0.0008341996306460035,0.034279387834571656,0.7778966227511002,0,0.8421589290506064,0.21057960493911765
+93,11,0.4884569309137066,1.95,1.3678531690413471,0.0006943313408084814,0.036080186834829685,0.8152124295750988,0,0.9412618307073769,0.20650732876918615
+93,12,0.5051924595904317,1.95,1.3724447150739363,0.0006946344055491592,0.03614224783301495,0.815903195439618,0,1.0,0.18397486530143892
+93,13,0.45783690690462053,2.0,1.2531862498769364,0.0007738239060127402,0.035151937176002075,0.8091866523819848,0,1.0,0.19278968968206828
+93,14,0.4971614686607796,1.95,1.2543934215201331,0.0007747737245784839,0.035453637674249514,0.797532461670569,0,1.0,0.19053822886926527
+93,15,0.45253620991736915,1.95,1.252009820771626,0.0007705377634078643,0.03559637916383727,0.7971459281703251,0,1.0,0.17512069972456368
+93,16,0.4778382977961933,1.9,1.2512621468467664,0.000772770116550775,0.03521525837115802,0.7846220401988034,0,1.0,0.19279432598731092
+93,17,0.5016917218280964,1.95,1.2484114586148076,0.0007768645537940533,0.034564685319379826,0.7965654858574432,0,1.0,0.17230573942698793
+93,18,0.49703740822069264,1.95,1.268966622360829,0.0007644900038564005,0.03484545891498812,0.799872167974496,0,1.0,0.19012469406897547
+93,19,0.4833095119677582,2.0,1.2684959153439836,0.0007592856501673738,0.03533909204719615,0.8115348904706562,0,1.0,0.2110317065591939
+93,20,0.5048130027365646,2.0,1.37075133291335,0.0006945494437275355,0.03627544077386654,0.8266602764934166,0,1.0,0.18271000912188198
+93,21,0.48392419973782935,2.0,1.2643719557381357,0.000770534613679803,0.03578280694442661,0.8109067865851817,0,1.0,0.2130806657927644
+93,22,0.5020969725317999,1.95,1.3697139533268419,0.0006945134652839546,0.036375823654002895,0.8154926306198794,0,1.0,0.20698990843933276
+93,23,0.5061080386755326,2.0,1.3683814057007306,0.0006930249687381091,0.035948518849112814,0.8263199818467349,0,1.0,0.18702679558510832
+93,24,0.45212812942943104,2.0,1.2561311118339802,0.0007788351254394737,0.035105041652575684,0.8096424804305301,0,0.9942806198548327,0.18138627162499318
+93,25,0.49771075730141917,1.95,1.2555748034817986,0.000785477717450928,0.03487815966519501,0.7977266119930526,0,1.0,0.15903585767139716
+93,26,0.47020497903530106,1.95,1.2726852550438088,0.0007744301360200097,0.03592017578827235,0.8004699458753004,0,1.0,0.16734993011767013
+93,27,0.4702289808447499,1.9,1.2709808817561794,0.0007757070958478596,0.03584725515738819,0.7879365921043584,0,1.0,0.16742993614916624
+93,28,0.47817494959540463,1.95,1.2671213778380968,0.0007784772468975245,0.03530388254668152,0.7995811068818782,0,1.0,0.1939164986513487
+93,29,0.4651583521357012,2.0,1.2672621761227436,0.0007779261061001275,0.035392622624364246,0.811351828731368,0,1.0,0.21719450711900395
+93,30,0.4698274287501701,2.0,1.3685123907691819,0.0006931517713466251,0.03597684231155558,0.8263388157937425,0,1.0,0.23275809583390017
+93,31,0.49808474247086787,2.0,1.3679877152812363,0.0006939440288077092,0.0361299766250454,0.8262637378672544,0,1.0,0.26028247490289286
+93,32,0.5223810952625826,2.0,1.367929725327475,0.0006953928373589419,0.03622745447330317,0.8262558291114555,0,1.0,0.24127031754194192
+93,33,0.4947110168152732,2.0,1.372604405573654,0.0006954832142076491,0.03647436427455454,0.8269259155217233,0,1.0,0.24903672271757718
+93,34,0.5273462396296342,1.95,1.3724157416453282,0.0006965403301978739,0.036452664188769905,0.8158994160102511,0,1.0,0.25782079876544745
+93,35,0.48429512173491496,1.95,1.3759410683553521,0.0006965782575040812,0.036072647916762554,0.8164283684961169,0,1.0,0.2809837391163832
+93,36,0.5118850420855009,1.9,1.3755667796519409,0.0006972192867241595,0.03645868831929409,0.8048615892348593,0,1.0,0.3062834736183364
+93,37,0.5318996363582739,1.9,1.3750740614728167,0.0006980929352448189,0.03645888375829861,0.8047844660949997,0,1.0,0.30633212119424597
+93,38,0.5177146416129982,1.9,1.3743674418505643,0.0006968492474829805,0.036408755748717755,0.8046730367486633,0,1.0,0.3257154720433273
+93,39,0.540658657946001,1.95,1.374016703707815,0.0006977535681362427,0.036194592259083135,0.8161401351105871,0,1.0,0.30219552648667
+93,40,0.5283249137367585,1.95,1.3776989346933317,0.0006977633716944667,0.03645971056692189,0.8166920336586254,0,1.0,0.29441637912252805
+93,41,0.49163698426859137,2.0,1.3770330922327791,0.0006967605018185089,0.03618188246455265,0.8275591938525008,0,1.0,0.3054566142286378
+93,42,0.4917771409375289,1.95,1.3769999102597161,0.0006974644870717019,0.03634478949923527,0.8165872727010455,0,1.0,0.30592380312509626
+93,43,0.5145453398301186,2.0,1.3764029326873706,0.0006980308499711951,0.03642094832743398,0.8274696111069411,0,1.0,0.3151511327670621
+93,44,0.5433422116795871,2.0,1.3763808863847702,0.0006988916722667038,0.03650518994800346,0.8274667094651892,0,1.0,0.31114070559862356
+93,45,0.5170100927446258,2.0,1.3792840375774658,0.0006987991352367303,0.036469009527798954,0.8278807591352738,0,1.0,0.32336697581541934
+93,46,0.5339294728425522,1.95,1.378981246371334,0.0006993895651895575,0.03650588027911207,0.8168844121637008,0,1.0,0.31309824280850723
+93,47,0.4937076529542504,2.0,1.378287615917302,0.0006983571472947562,0.03630646133896169,0.8277386023856471,0,1.0,0.31235884318083457
+93,48,0.49752820117486485,1.95,1.3781941705170375,0.0006990403467334624,0.03645260673246061,0.8167665441042472,0,1.0,0.3250940039162161
+93,49,0.5448603213540922,2.0,1.3776239543961115,0.0006995671345164149,0.036447233424871175,0.8276442972332532,0,1.0,0.3162010711803074
+94,0,0.15984979407866678,2.0,1.3792670105702434,0.0007025225039514928,0.036465838140882695,0.8278793939980311,1,0.1265925705525826,0.2307092195254458
+94,1,0.1809775299158151,1.95,1.3791817488171851,0.0007016788158507154,0.03658379000836361,0.8169150870537615,1,0.1634894330262284,0.25193918901774576
+94,2,0.23756197137190216,1.95,1.3788517731408207,0.0007009025051246279,0.03650631352102131,0.8168654968712511,1,0.2190973217145998,0.3330768089535407
+94,3,0.24794066070975393,1.95,1.3861927609151554,0.0007002533918584059,0.03639368829745224,0.8179609343838016,1,0.2401658199528069,0.37291444242877053
+94,4,0.2315596987778948,2.0,1.3861683923769845,0.0007003378287156396,0.03676150079429472,0.82885996316368,1,0.24522739439575478,0.37822913673197633
+94,5,0.23126588550856425,2.0,1.3862156521332403,0.0007002606257764437,0.03674631791344603,0.8288666450070971,1,0.2874205538312391,0.3543255465868953
+94,6,0.2516581965610331,2.0,1.3861626983024067,0.000700300093738867,0.03636953428555996,0.828859144745747,1,0.3110778811869038,0.3574234802875719
+94,7,0.2959408440033737,2.0,1.3861774737951402,0.0007002095156660741,0.03671076367760133,0.8288612149667252,1,0.341163344031632,0.3982516879690698
+94,8,0.31414286756681126,2.0,1.3861464154208558,0.0007002928339889525,0.03675816943713226,0.8288568329199164,1,0.3744923984501122,0.4144863606225548
+94,9,0.36629645134643,2.0,1.384207287767282,0.0006989655789214155,0.036499507031425384,0.8285812090203535,1,0.4284729821199437,0.4830241949948419
+94,10,0.3265277735713536,2.0,1.381495853313067,0.0006983371759066829,0.03655519974581992,0.8281955700757532,1,0.45514632010342493,0.44823081843327867
+94,11,0.3313178706098512,1.95,1.3811575742347661,0.0006977590857722827,0.036637822615119796,0.8172092449775393,1,0.4910646084403177,0.4163067574457469
+94,12,0.34637178228980875,2.0,1.380625949994563,0.0006970955794325058,0.03637030873403441,0.8280714046912964,1,0.546117940118467,0.393082020808073
+94,13,0.39860774717313935,2.0,1.3855346240118553,0.0007000493873038779,0.03668267887225617,0.8287699618046223,1,0.5757486175747852,0.42769433381075095
+94,14,0.44395733727978487,2.0,1.380004733887414,0.0006962916898156716,0.03650550239175962,0.8279827156628349,1,0.6167684229831801,0.49083322695504283
+94,15,0.4513234812287307,2.0,1.3707216540664315,0.0006904801147558502,0.036446642802871236,0.8266548574403376,1,0.6412080971143833,0.5161341412765912
+94,16,0.4730303502518298,2.0,1.3690832968599715,0.0006896082433972614,0.03632387546568298,0.8264197106174415,1,0.6685220979123496,0.5520717036229666
+94,17,0.46229235141913705,2.0,1.3672413619791794,0.0006887079293074444,0.03619605865729096,0.8261550672448182,1,0.6688783564969967,0.5824700294011279
+94,18,0.46629359781946955,2.0,1.3694506531806108,0.0006888916241004342,0.03587140865773629,0.8264721960770047,1,0.6683354652927687,0.596531372341207
+94,19,0.47705682675222977,2.0,1.3708587886873853,0.000689302573644367,0.036100401873807995,0.8266741700402481,1,0.6897879748262901,0.603805456072379
+94,20,0.5175781218206074,2.0,1.3483538870211211,0.0007302089193908674,0.03641147907516538,0.8234377289907623,1,0.7155638457953073,0.6378419450082814
+94,21,0.5061375000867848,2.0,1.3476676038510793,0.0007370604205241334,0.03658314328042553,0.823339922608578,1,0.7294219618684081,0.6478957177980718
+94,22,0.5252794478243221,2.0,1.3507047684001752,0.0007306777152262627,0.0364904418876509,0.8237793952789388,1,0.7657180885482509,0.663307374683406
+94,23,0.5289807759159535,2.0,1.3527165766245663,0.0007249404224244625,0.036450558608081184,0.8240695894727209,1,0.8106242013612585,0.6491036512381669
+94,24,0.584659258126113,2.0,1.3826714839644523,0.0006989715767196069,0.03653702134337279,0.8283629636785028,1,0.856376216465695,0.6736959051327832
+94,25,0.5587514769649626,2.0,1.3830469411843151,0.0006985208413388096,0.03655285992281414,0.8284162106279576,1,0.8958332308624636,0.6347272820665906
+94,26,0.5786034838002235,1.95,1.3833913182106186,0.0006983447394436712,0.036684180725329064,0.8175428561640194,1,0.909034232067802,0.6499659699103424
+94,27,0.6477827450856953,2.0,1.3823694820046315,0.0006978225925872176,0.03652853579448093,0.8283196946719757,1,0.9573843233376814,0.7160967191687424
+94,28,0.6320920932696646,2.0,1.3834587263455425,0.0006994248970016269,0.03654167424323608,0.8284749919455701,1,0.9939435240488416,0.7150489455004266
+94,29,0.6804365530412892,2.0,1.3823723989218957,0.0006991624752522155,0.03667279458638158,0.828320490553355,1,1.0,0.7681218434709639
+94,30,0.6347037511996957,2.0,1.3829779552794332,0.0007010124708112734,0.036524294450375895,0.8284071129219044,1,1.0,0.7490125039989857
+94,31,0.6946474498405336,1.95,1.3834362215527756,0.0007001239042140936,0.03657103171589114,0.8175500849124006,1,1.0,0.8154914994684452
+94,32,0.6907732118335317,1.95,1.3590710675810214,0.0006826119712631023,0.035964284354615475,0.8138822696819625,1,1.0,0.8359107061117719
+94,33,0.6980256883315761,2.0,1.3623434368883032,0.0006857556784433168,0.035752783465978696,0.8254496382987262,1,1.0,0.8600856277719201
+94,34,0.7253051586911583,2.0,1.3650832454566577,0.0006891787570249537,0.03592896641438973,0.8258450295807013,1,1.0,0.9176838623038606
+94,35,0.6801346725821763,2.0,1.3632188980393194,0.0006870600387904631,0.035865314278492585,0.8255761166783934,1,1.0,0.9004489086072542
+94,36,0.6907968076932185,1.95,1.3616844221188533,0.000687113026630695,0.03616827115683678,0.8142791718925021,1,1.0,0.9026560256440613
+94,37,0.7209864843122478,2.0,1.3667584042978818,0.0006882880019848033,0.03616245232666148,0.8260855718886596,1,1.0,0.9366216143741591
+94,38,0.7332468943044677,2.0,1.369080541073025,0.0006911923208233547,0.036252386260452824,0.8264197697716806,1,1.0,0.9774896476815584
+94,39,0.6976461702318976,2.0,1.3701467388727067,0.0006937987246829206,0.036184747233365844,0.8265734100195364,1,1.0,0.9588205674396585
+94,40,0.711347437561441,1.95,1.3688732596631885,0.0006941425409581971,0.03605964667082549,0.815365990919209,1,1.0,0.9711581252048034
+94,41,0.6917334086626856,2.0,1.373250362220981,0.0006943128974331805,0.03642215500061485,0.827018010107659,1,1.0,0.9391113622089521
+94,42,0.75,2.0,1.372283456601314,0.000694493337252246,0.0363143908497173,0.8268796932619458,1,1.0,1.0
+94,43,0.7024522505573227,2.0,1.3709236038772687,0.0006925332919748573,0.03635832933345613,0.8266843826016569,1,1.0,0.9748408351910756
+94,44,0.74,1.95,1.369517596907718,0.0006925146078362786,0.03632911484450603,0.8154624825497455,1,1.0,1.0
+94,45,0.74,1.95,1.3703424454328479,0.0006953850154942607,0.0362283209299203,0.815587439727623,1,1.0,1.0
+94,46,0.7177122107925129,2.0,1.370886139607421,0.0006982188818914731,0.03634404200658965,0.8266806440219331,1,1.0,0.9923740359750427
+94,47,0.74,1.95,1.3757415858643043,0.0006978606209424287,0.03643855434601252,0.8163988539838305,1,1.0,1.0
+94,48,0.7184584747905749,1.95,1.375617745125608,0.0006999211678946697,0.036513827612252116,0.8163809083151983,1,1.0,0.9948615826352497
+94,49,0.75,1.9,1.3791994011999995,0.0006995053710775336,0.03650254245132643,0.8054322113810886,1,1.0,1.0
+95,0,0.1333193906246545,1.9,1.3779427275920513,0.0007011649667738962,0.03643920195264719,0.8052357215577588,1,0.12846125829575247,0.20644962435451175
+95,1,0.037249902702337495,1.8499999999999999,1.3779575318038941,0.0007021184956938411,0.03657087828330173,0.793206317653478,1,0.18066133727085826,0.18328455931331394
+95,2,0.13356525255599705,1.7999999999999998,1.3856552787592173,0.0007003247506019192,0.03668443800697852,0.7819482135654628,1,0.20022179726083528,0.14492177883887647
+95,3,0.1803032845090744,1.7999999999999998,1.3849494683885486,0.0006993244192118135,0.03652578540496958,0.7818275040157081,1,0.22042677113796627,0.17377525351295964
+95,4,0.17528503350408392,1.7999999999999998,1.3849016932734517,0.0006992150477904746,0.03673460852702107,0.7818193174362663,1,0.2339929789538425,0.20562613974182306
+95,5,0.18568834253744856,1.8499999999999999,1.3861629029657232,0.0007002279233713636,0.03645140289427964,0.7945483900351529,1,0.25543353042532074,0.21171643455773417
+95,6,0.1864503910009641,1.9,1.3861521300608792,0.0007001594834464969,0.03664045267242175,0.8065196724934943,1,0.3020446818096024,0.18544172759041042
+95,7,0.20886793877357906,1.95,1.3855760144979072,0.0007001541091535909,0.03676708043035383,0.8178690527340606,1,0.31985590906627837,0.2030852504902258
+95,8,0.2527460490509459,1.95,1.386192483498804,0.0007000989048091859,0.03667679953465382,0.8179608470697523,1,0.35800134091706415,0.2318183756137341
+95,9,0.22507676862012244,1.95,1.38614641946443,0.000700086887120476,0.03647338943886214,0.8179539844141339,1,0.3943062199371689,0.19118093548418288
+95,10,0.23810970281165914,1.9,1.385488001563537,0.0007009648217166028,0.03677026488916181,0.8064162684477938,1,0.40429957262146776,0.18796624587690677
+95,11,0.3100173409773332,1.95,1.3839763362454542,0.0006993850307442427,0.036520591349936425,0.8176304153041163,1,0.46273378634635454,0.2497460881293045
+95,12,0.280480327342335,1.95,1.3855231521268523,0.0006999103565451937,0.03651219071252317,0.8178611056409195,1,0.5030774041994374,0.2308312188752003
+95,13,0.36519365738483606,1.9,1.3857006830603513,0.0006998618430956782,0.036763673499049895,0.8064491234695805,1,0.5578265633403529,0.30687677349564985
+95,14,0.34866646250663863,1.9,1.3858517577120257,0.000700181706663847,0.03634104207950104,0.8064728033043657,1,0.5807860770286253,0.3211734389839616
+95,15,0.3909678146960787,1.95,1.3856037136989943,0.0007001694673691905,0.03672188077710277,0.8178731833257921,1,0.6107306566188206,0.3555851734951682
+95,16,0.38368665747925956,1.95,1.3821223792314217,0.0006996779683890622,0.03666222307322293,0.817353894724934,1,0.6393949009092296,0.35976232371855893
+95,17,0.4255296200429552,2.0,1.3824714684299069,0.0007010498831610843,0.03654424781503558,0.8283351151040138,1,0.6722094832670721,0.38881942245375456
+95,18,0.41541397972615735,2.0,1.3835083133353587,0.000700468260280435,0.03651860450197138,0.8284823348720087,1,0.6872504367203479,0.40171268346006056
+95,19,0.4784280845876954,2.0,1.3714236246279385,0.0006895572629497282,0.036132747548424764,0.8267551600117138,1,0.7272935624879293,0.4583688653084123
+95,20,0.5215426747707792,2.0,1.3715936090257999,0.0006897530969064473,0.03620087375299218,0.8267795617985972,1,0.7790406847868503,0.5330880028534636
+95,21,0.5283986691076853,2.0,1.3713431950448134,0.0006899792582202728,0.036445644736615344,0.826743760586061,1,0.7923539117128289,0.5715236814085123
+95,22,0.5103448518274407,2.0,1.3697014330768649,0.0006886223347894058,0.03637021328558678,0.8265080817301569,1,0.8458610461049524,0.5400014446181991
+95,23,0.5629592980082757,2.0,1.3607914639872851,0.0007105847993987811,0.036394172275821375,0.8252330751543796,2,0.8930219220853322,0.5525017639138095
+95,24,0.5638670411526159,2.0,1.36770786267606,0.000688260915767562,0.03639264419948229,0.8262219288571983,2,0.9151657898419733,0.5593357507194217
+95,25,0.6113727196716519,2.0,1.3670248076709972,0.0006873841313514532,0.03622744405228027,0.826123582586948,2,0.9540100130457541,0.5992290481778338
+95,26,0.6310184745094541,2.0,1.3647953176471266,0.000686080403657638,0.035907898135968036,0.8258027230629283,2,0.9862967732052137,0.6216658840912286
+95,27,0.6765358479994296,2.0,1.368666350261948,0.000716157658035904,0.03628023818358982,0.8263675103931512,2,1.0,0.6551194933314322
+95,28,0.6863501942737563,2.0,1.3663543723053397,0.0007169979114704681,0.03633823643714843,0.8260357691131803,2,1.0,0.6878339809125211
+95,29,0.6402933770393318,2.0,1.3637514802619979,0.000717627757912588,0.03653809539703462,0.8256615956100943,2,1.0,0.7009779234644389
+95,30,0.6781381117111484,1.95,1.3654786181036556,0.0007131841717011145,0.03648750945069286,0.8148601452422898,2,1.0,0.7604603723704944
+95,31,0.6642782527726431,1.95,1.364504968694889,0.0007185574070222684,0.03655570370758549,0.814714834686705,2,1.0,0.7809275092421435
+95,32,0.7210002864888726,2.0,1.3656209779344441,0.0007140273109218953,0.03636675131895994,0.8259295004795669,2,1.0,0.803334288296242
+95,33,0.673779398176366,2.0,1.3761222565781586,0.0007058735870673008,0.03643561060580787,0.8274317767927591,2,1.0,0.8125979939212201
+95,34,0.7236549238772391,1.95,1.379516937251688,0.0007043537857864776,0.0364569823472624,0.8169660141203849,2,1.0,0.8121830795907968
+95,35,0.6785182658432756,1.95,1.3781402586928984,0.0007053176661001794,0.03646027405300518,0.8167603545499481,2,1.0,0.8283942194775853
+95,36,0.6358437833249329,1.9,1.3809227691916952,0.0007038458772305171,0.03668731105158069,0.8057034992115703,2,1.0,0.7861459444164429
+95,37,0.6246923130354114,1.8499999999999999,1.361661292448137,0.0007154866923373284,0.036209930079233545,0.7905248980975268,2,1.0,0.7489743767847045
+95,38,0.6101334744693339,1.9,1.3671269843723262,0.0007118487477240283,0.036533363679958845,0.8035372474737603,1,1.0,0.7004449148977796
+95,39,0.605676466665801,1.95,1.3835159699729918,0.0007012133646448215,0.03650164991198158,0.8175623050359014,1,1.0,0.6522548888860031
+95,40,0.5967182098286397,2.0,1.3837328965985347,0.0007002839637550566,0.036678466430218735,0.8285141932856434,1,1.0,0.6223940327621319
+95,41,0.6130805529744705,2.0,1.3836492230699566,0.0006994637910385217,0.03671371337391646,0.8285020716850869,1,1.0,0.6436018432482348
+95,42,0.6152543001411516,2.0,1.3828740544496239,0.0006994485754393994,0.036560750121525085,0.8283918984005725,1,1.0,0.6508476671371718
+95,43,0.6014233751357286,2.0,1.3819259182694834,0.0006993622452792496,0.036472635120607014,0.8282570460054914,1,1.0,0.6380779171190953
+95,44,0.5903595817311422,2.0,1.3816615065491222,0.0006983827688333401,0.03662036585709531,0.8282191521801545,1,1.0,0.6011986057704738
+95,45,0.6463224814542221,2.0,1.3811740623688105,0.0006975038078268633,0.03641012828448281,0.8281495411508717,1,1.0,0.6544082715140733
+95,46,0.6669536492672263,2.0,1.3817670297689837,0.0006988041756423541,0.03643411566157605,0.8282342845801746,1,1.0,0.7231788308907542
+95,47,0.6366645737700944,2.0,1.3819519680747763,0.0007000646815428932,0.036691890372868005,0.8282609513244104,1,1.0,0.7222152459003147
+95,48,0.6845273372614922,1.95,1.381162659042205,0.0007003128047407122,0.03655370657057311,0.8172107674728525,1,1.0,0.7817577908716403
+95,49,0.6655674722188254,1.95,1.3809580463060436,0.0007018270290966005,0.03647686130255766,0.817180653424893,1,1.0,0.8185582407294177
+96,0,0.1089580918333401,2.0,1.3857522127089767,0.000700022460669222,0.036356316563017146,0.8288008300344467,0,0.1065304402781783,0.2211530524068959
+96,1,0.15246344323948477,1.95,1.385853522685004,0.0006999899307973971,0.03671464707958705,0.8179103376002091,0,0.15059585865337038,0.24075033259378875
+96,2,0.13624219722163633,1.95,1.385835787661545,0.0006999229604384247,0.03671224541643711,0.8179076763063412,0,0.15574503440052448,0.24648061153808842
+96,3,0.1792605133489392,2.0,1.385903028745529,0.0006999241297772897,0.036434447437359144,0.828822200361287,1,0.19844324473490155,0.26627738484992863
+96,4,0.1848223750071332,2.0,1.3783600124347313,0.0007020014981055755,0.0365440812967663,0.8277499641977976,1,0.21394923215078498,0.26414227382273064
+96,5,0.22709487934429443,2.0,1.386008265567885,0.0006999824046620966,0.03673981664246069,0.8288371469543528,1,0.23299930059986335,0.3129838636811636
+96,6,0.2840704394941551,2.0,1.3859285017258194,0.0006999118519514873,0.03637020549340001,0.8288258108507642,0,0.3124436211810405,0.3636433034057964
+96,7,0.32050649976531703,2.0,1.3671091867296672,0.000686575373115156,0.036015886333511916,0.8261354704161283,0,0.420448795515328,0.3410899385306195
+96,8,0.310588232502345,2.0,1.362008942328146,0.00071299064991253,0.036407812796773444,0.8254092879655742,0,0.44335329235402954,0.3774897185357773
+96,9,0.3679269174921954,2.0,1.3631834905476294,0.0007098055053256583,0.036498493448080274,0.8255775686911239,0,0.5309545130512605,0.35181704090563737
+96,10,0.39059851443009885,2.0,1.3633034261808352,0.0007141455541170486,0.03652805452700975,0.8255960884839487,0,0.6048149593936983,0.36224176890873183
+96,11,0.42295272671455264,2.0,1.091329933876396,0.000777521500173831,0.032903527472489584,0.7829404631323468,0,0.6894233926632466,0.3239445654975134
+96,12,0.4410042919359906,2.0,1.0861092414152498,0.0007717403854484324,0.032328749166566646,0.7820499529138429,0,0.7579717649667785,0.32605195316426405
+96,13,0.4408803764556597,2.0,1.093038342458657,0.0008196861409958745,0.033453374115175974,0.783244974879118,0,0.7772318219222873,0.36662549228914904
+96,14,0.5085249085794814,2.0,1.1149301918284054,0.0008046410659974118,0.03404573477158803,0.7869335085113989,0,0.8939038598093082,0.3365445488525268
+96,15,0.46078621683176274,2.0,1.3410204044192087,0.0007093197669246578,0.03624736703835165,0.8223628952196196,0,0.8958725389800545,0.34145733746580303
+96,16,0.4666988872249744,1.95,1.340366524672333,0.0007106246738843153,0.036122244626510876,0.8110408814770498,0,0.9005684579048729,0.3549050135434173
+96,17,0.5441658506846494,2.0,1.3387087921824907,0.0007121723221308052,0.03564120983512392,0.8220257928852129,0,0.982948704391248,0.3366212297605003
+96,18,0.5443280889784645,2.0,1.3492497311515994,0.0007081475684249012,0.03571435373948968,0.8235615249853608,0,1.0,0.31442696326154823
+96,19,0.5335528929710966,2.0,1.3572954464896327,0.0007054054816638085,0.03612125530173097,0.8247267966666366,0,1.0,0.311842976570322
+96,20,0.4978664594392871,2.0,1.356572970117984,0.0007032555200905816,0.0360655654859465,0.8246217145356627,0,1.0,0.3262215314642903
+96,21,0.5411398102151463,1.95,1.3558739178603114,0.0007042083809573039,0.03637678033024514,0.8134040418129578,0,1.0,0.3371327007171544
+96,22,0.5491999638545649,1.95,1.3543913419315698,0.0007021495592528593,0.0359647588192989,0.8131782894303275,0,1.0,0.33066654618188307
+96,23,0.5023985533095188,2.0,1.361551219677919,0.0007003783725308317,0.03591443392786789,0.8253396800877584,0,1.0,0.34132851103172906
+96,24,0.50546335721209,1.95,1.3613919332502507,0.0007011182250786081,0.03594018056990121,0.8142391718583638,0,0.9944669045523767,0.3589219846371309
+96,25,0.5454031154287687,2.0,1.3600291013491794,0.0007018932352710685,0.03614362759968594,0.8251205890116207,0,1.0,0.35134371809589576
+96,26,0.5063675524865937,2.0,1.3597885700133974,0.0006997511489884554,0.03614893683401704,0.8250852601536937,0,1.0,0.3545585082886455
+96,27,0.5335652189105671,1.95,1.3589734979086738,0.0007004041148332581,0.036342286132243454,0.8138728800820104,0,1.0,0.3785507297018902
+96,28,0.5458768315378346,1.95,1.3582333754440032,0.0007029746862019862,0.036049082970481164,0.813761516621799,0,1.0,0.41958943845944857
+96,29,0.5615681755775609,2.0,1.1812906501811842,0.0005638467858931787,0.031081210061941193,0.7977705924031802,0,1.0,0.4052272519252029
+96,30,0.5615210103991679,2.0,1.2078827752000547,0.0005787230605171351,0.03179231827550451,0.8020315420039767,0,1.0,0.3717367013305595
+96,31,0.5562319638858334,2.0,1.3585874428174658,0.0006959902245778887,0.036006560916104643,0.8249107598965365,0,1.0,0.35410654628611116
+96,32,0.5100823026827099,2.0,1.3648297988992057,0.0006952043692516639,0.03620473784825477,0.8258103081619718,0,1.0,0.3669410089423662
+96,33,0.5593350357349121,1.95,1.3638745572351612,0.0006955138431847399,0.036328047852773146,0.814612692388802,0,1.0,0.36445011911637337
+96,34,0.5344859256731216,1.95,1.3686564052162828,0.0006949995020261366,0.03616001535523283,0.8153336005437789,0,1.0,0.38161975224373856
+96,35,0.5560036408227285,1.9,1.3692615908143677,0.000697444905874091,0.03619736074073532,0.803869467214529,0,1.0,0.38667880274242805
+96,36,0.5549058744485111,1.9,1.3679881061196095,0.0006956919572750977,0.03638428542136538,0.8036680544753312,0,1.0,0.38301958149503706
+96,37,0.5223485787026332,1.95,1.3670724961506129,0.0006940793291327243,0.03630375339120623,0.8150947232288962,0,1.0,0.40782859567544394
+96,38,0.5696985604145273,1.95,1.1614808958466851,0.0005397258460831814,0.03062749777541754,0.7820342074459877,0,1.0,0.39899520138175726
+96,39,0.5202835523829925,1.95,1.370342376552351,0.0006926077893437286,0.03621629853271488,0.8155865939511824,0,0.995714784777577,0.40665879490653867
+96,40,0.5474767621380989,1.95,1.1176792010148717,0.0005016230467795577,0.029244516438702496,0.7744624386894029,0,1.0,0.42492254046032957
+96,41,0.5514409475670694,2.0,1.126212293167374,0.0005196408216890311,0.029736358195727702,0.788724076759589,0,1.0,0.4381364918902313
+96,42,0.5818499141628096,2.0,1.137597612474693,0.0005396720470560599,0.030222168978265667,0.7906217036789109,0,1.0,0.439499713876032
+96,43,0.5694596902094929,2.0,1.1308022698875828,0.0005336782061261894,0.02996895868832363,0.7894925954409318,0,1.0,0.39819896736497623
+96,44,0.5476043589305917,2.0,1.371454692265241,0.0006913340451637515,0.03625113171768555,0.8267601187872259,0,1.0,0.42534786310197226
+96,45,0.5509385396010468,2.0,1.0933568555511,0.0005007468783336797,0.028595749340054183,0.7831907505754848,0,1.0,0.43646179867015567
+96,46,0.5708608103580091,2.0,1.1004794900118173,0.0005203491687636268,0.029060310820447244,0.7844043856799634,0,1.0,0.4362027011933634
+96,47,0.5776836447089941,2.0,1.1262445112128445,0.0005363986531760018,0.030080037624724342,0.788735030312193,0,1.0,0.4256121490299802
+96,48,0.5322591286513426,2.0,1.1192805564224961,0.0005304082828926085,0.029851804084948537,0.7875702743243632,0,1.0,0.44086376217114187
+96,49,0.5573727879937815,2.0,1.142309755583405,0.000533384328972468,0.03020612447864356,0.7913986030148276,0,1.0,0.45790929331260516
+97,0,0.0033206170358439646,2.0,1.385886820190131,0.000699894151250921,0.036365830642019564,0.8288198922381091,0,0.10879145829266244,0.19934677906259662
+97,1,0.18520716310322496,1.95,1.3854854627837636,0.0007010677272453563,0.03674383856899255,0.8178558360282694,0,0.2035548714266841,0.2126173817751711
+97,2,0.17822671444768898,1.95,1.3733556311469486,0.0006942474107228859,0.03637635860313544,0.8160398641829913,1,0.22553006979175236,0.22671562176996019
+97,3,0.19581621336998264,2.0,1.3854908722302492,0.0007002259798653856,0.036395120755967646,0.8287638030083719,1,0.26040331457022015,0.23884962513964866
+97,4,0.203354408238383,2.0,1.3855151098289433,0.0007004250749189748,0.03670112474510845,0.8287672991523011,1,0.2721776811913127,0.24827778587285979
+97,5,0.26659619586116173,2.0,1.3854813579211445,0.0007006262857498719,0.03675068085383339,0.8287625664060326,1,0.31869308113078665,0.29706321136282354
+97,6,0.2511761681526997,2.0,1.3853180349213716,0.000700717675298396,0.03640964441593854,0.8287394130913146,1,0.3448239835241464,0.3108219158101372
+97,7,0.2678646333663777,2.0,1.3852469011923967,0.0007009837733744618,0.036719185283583526,0.8287293923550698,1,0.3810535688649774,0.3181440194012891
+97,8,0.3032325778613037,2.0,1.3851326004768647,0.0007012257336492748,0.03673457840252965,0.8287132369377289,1,0.39886788122440053,0.34561808457181153
+97,9,0.32554900224063427,2.0,1.3851499000081389,0.000700830793508386,0.036408503507862774,0.8287155804304759,1,0.434667189318264,0.37227375504442883
+97,10,0.37912975242477226,2.0,1.3856625143603385,0.000700060005073405,0.03667935563776188,0.8287881130141004,1,0.494624734736254,0.43759952843423566
+97,11,0.37900727689849745,2.0,1.380853048520239,0.0006982554446033454,0.03662773712332208,0.828104064315897,1,0.5078735461635502,0.452859528110258
+97,12,0.42600590976076474,2.0,1.382459776480407,0.0006984444651552089,0.03635082029738446,0.8283327115813041,1,0.5532100477002152,0.5157396356022623
+97,13,0.3946345711058808,2.0,1.3825318194100462,0.0006990640793911695,0.036593675193712955,0.828343131879819,1,0.5947049742505088,0.48917527135225747
+97,14,0.45852364667083445,1.95,1.3821488311224257,0.0006984474419584028,0.036613101387135465,0.8173574762060564,1,0.6407806742577628,0.5407045898924312
+97,15,0.43616534270202745,1.95,1.3786598750091432,0.0006974195630083172,0.03653835300427081,0.8168357456842225,1,0.69094415337858,0.4992922711686515
+97,16,0.4944197261070152,1.9,1.3795979062728174,0.000699640862910092,0.036630115645725256,0.8054946964297276,1,0.7294075109276212,0.5421890724532223
+97,17,0.4903869879680094,1.9,1.378117675930174,0.0006994770844980128,0.036225891602999986,0.8052626280733531,1,0.7645490928581644,0.5485578360824787
+97,18,0.48183570417686733,1.95,1.379701825901557,0.0006986620782884671,0.03656949332133517,0.8169919573730602,1,0.7984322045305987,0.5082094078820928
+97,19,0.5007637112735106,2.0,1.3806048701406468,0.0007009437553568049,0.03666462272171796,0.8280694992850709,1,0.8182971889311891,0.5114827856701164
+97,20,0.5138984153191383,2.0,1.359757842266068,0.0007008425039019589,0.03605540161256079,0.8250811405078237,1,0.8474923937024768,0.516338192793825
+97,21,0.5076012304097898,2.0,1.3592713844686348,0.0006979502761301712,0.03618669249647464,0.8250100876289495,1,0.8865606590358918,0.47658988931811
+97,22,0.5131843932467108,2.0,1.3574426239762079,0.0006978704614825402,0.03613779957692166,0.824745892310041,1,0.926411212047953,0.442066361425099
+97,23,0.5207214969520295,2.0,1.3554626460329533,0.000697779250681042,0.036117254465168266,0.8244594956486508,1,0.9617310162746625,0.42009696814054837
+97,24,0.5712076046540704,2.0,1.3533164453954367,0.0006974961200196623,0.03601783148029311,0.8241485861446849,1,0.9807159719773899,0.4630707195437144
+97,25,0.6120121346188712,2.0,1.3548024631711626,0.0007040050580715558,0.03604209686588729,0.8243657323708311,1,1.0,0.5400404487295702
+97,26,0.610033091665158,2.0,1.361936770283727,0.0007012108665509847,0.036134714817472324,0.8253954917686518,1,1.0,0.5667769722171931
+97,27,0.5748627418315193,2.0,1.3627745627281407,0.0007066196331141889,0.03634475880010332,0.8255177577804321,1,1.0,0.5495424727717308
+97,28,0.6065659871519908,1.95,1.3606539275357827,0.0007068015697853842,0.03636803140395897,0.8141292398892511,1,1.0,0.5552199571733025
+97,29,0.635489128338345,1.95,1.3603509029512793,0.0007124696160529407,0.036286640653010224,0.814085096719464,1,1.0,0.6182970944611498
+97,30,0.6132018928161372,1.95,1.3821257032157086,0.0006975902870029427,0.03659383840781873,0.8173537676255809,1,1.0,0.644006309387124
+97,31,0.6436217483495041,1.9,1.38260680879455,0.0006984152998448578,0.03663634907027568,0.8059652935837731,1,1.0,0.6787391611650138
+97,32,0.6581850131469564,1.9,1.383914972796838,0.0006987428799335312,0.03667519563222805,0.80616989162031,1,1.0,0.7272833771565212
+97,33,0.6697969308928591,1.95,1.3848122364265238,0.000699147744656978,0.036592995788650926,0.817754953330415,1,1.0,0.7659897696428632
+97,34,0.6965647774540917,2.0,1.3853179132294848,0.0006995631682905584,0.036702722356722436,0.8287390680999821,1,1.0,0.8218825915136391
+97,35,0.6478367526343382,2.0,1.3790835409464504,0.0007076554140712632,0.036736959024702136,0.8278547119025719,1,1.0,0.7927891754477938
+97,36,0.6678902408573603,1.95,1.3849856457390475,0.0006992571078620429,0.03652494163269811,0.8177808280001871,1,1.0,0.8263008028578676
+97,37,0.6956217976314129,1.95,1.3770987596136135,0.0007086892874972431,0.03671124150469748,0.8166054392509468,1,1.0,0.852072658771376
+97,38,0.6622050384490269,1.95,1.3764671868139269,0.0007114321044508225,0.03654274386560413,0.8165116572268657,1,1.0,0.8406834614967562
+97,39,0.6564877832104787,1.9,1.3748865148889402,0.0007123436040787656,0.036720156494927235,0.8047594778530419,1,1.0,0.8216259440349288
+97,40,0.6525498908909293,1.95,1.3727620543895112,0.0007134859621574549,0.03655672941721242,0.8159565186671441,1,1.0,0.8084996363030975
+97,41,0.6403369650162496,2.0,1.3711129325654567,0.0007138279479906209,0.03618951246432937,0.8267176086723461,1,1.0,0.7677898833874985
+97,42,0.6553940362799486,2.0,1.385471455788961,0.0006996743822170832,0.036582100741579276,0.8287608909575961,1,1.0,0.7846467875998289
+97,43,0.6859543423443045,2.0,1.3856743046455575,0.000700089673944158,0.03654931015826407,0.8287897944498124,1,1.0,0.8198478078143483
+97,44,0.7126775679403179,2.0,1.3697749708243823,0.0007140060161689139,0.03665318018368129,0.8265259054238454,1,1.0,0.8755918931343929
+97,45,0.7338477528110112,2.0,1.3717223404010002,0.0007101663176594645,0.03654422480188721,0.8268038436958529,1,1.0,0.9461591760367039
+97,46,0.7100487518633595,2.0,1.3727712179485705,0.0007067541461346591,0.03649026292517812,0.8269530141178141,1,1.0,0.9668291728778647
+97,47,0.75,1.95,1.3764536353130405,0.0007045307336092571,0.03661622880088735,0.8165075589686176,1,1.0,1.0
+97,48,0.72,1.95,1.3766835911864264,0.0007020766416689599,0.03659583284477074,0.8165412738791201,1,1.0,1.0
+97,49,0.74,1.9,1.3794921900716484,0.0007008696320464948,0.03654721033986449,0.8054785180758901,1,1.0,1.0
+98,0,0.19088770943202543,1.9,1.3778498591621564,0.0007034077543460221,0.0364143166424057,0.8052218599986866,1,0.15927247893630134,0.2572623928583497
+98,1,0.17527505992615017,1.8499999999999999,1.3775096949616998,0.0007035868287815649,0.03659039765704259,0.7931333311332996,1,0.18414590147185528,0.27205566445802687
+98,2,0.2138725944068527,1.9,1.3771350580127877,0.0007046110770461359,0.036473004996173626,0.8051101040228047,1,0.20464113366604234,0.30672046980145246
+98,3,0.18579876489346758,1.9,1.3850343084391046,0.0007004686776971908,0.03643073666767985,0.8063452780413408,1,0.2351493949360132,0.2724633563968743
+98,4,0.23287926626052216,1.8499999999999999,1.385441097081184,0.000700393105962001,0.036755196439608555,0.7944305904440496,1,0.2631823518231454,0.2920210851042133
+98,5,0.2596297352716613,1.8499999999999999,1.3853546080437833,0.0007001847883968213,0.03655881207273718,0.7944163974609865,1,0.2958971685196657,0.33756955954598344
+98,6,0.2461277891247993,1.8499999999999999,1.3852561538529964,0.0006999468740390559,0.036626689082565,0.7944002398400208,1,0.3612603994262422,0.3054120978476747
+98,7,0.29370069629744483,1.9,1.385652430413376,0.0006999911853908844,0.03675154456293995,0.8064416320329381,1,0.38323701565224666,0.3346863001218206
+98,8,0.2860780584532231,1.9,1.3855435829101141,0.000699802820221525,0.036525002504644105,0.8064245822665205,1,0.4102692638590475,0.33990117636534695
+98,9,0.2973902200690388,1.95,1.3856903877554425,0.0007002578333990244,0.036610680125305065,0.8178861199702138,1,0.4328499363464879,0.3475008184348122
+98,10,0.3029213461596358,2.0,1.385482041410092,0.00070026336189103,0.036753806911667505,0.8287625603946804,1,0.4401608852887327,0.3561899734804756
+98,11,0.31234707439162074,2.0,1.3852384909368212,0.0007002755937694096,0.03674495075305041,0.8287279975904731,1,0.44260041168545566,0.3843563657247949
+98,12,0.3247642020370559,2.0,1.3849213729708483,0.0007002771218951604,0.03648266962286527,0.8286829822727626,1,0.47110361204083673,0.38774252406907056
+98,13,0.33603856236284474,2.0,1.3845424005278855,0.0007002653799558864,0.036669460704367406,0.8286291704669272,1,0.48909672721652575,0.40133290492078133
+98,14,0.3533092743978751,2.0,1.384692595259812,0.0006991361256408398,0.03670035425134975,0.8286501768136771,1,0.5198845584722565,0.41785150336324167
+98,15,0.3502779529447164,2.0,1.3844829015560904,0.0006991091245917059,0.03646508591306574,0.8286203928808171,1,0.5619068746445793,0.38505067695628237
+98,16,0.42805399316054993,2.0,1.384547215231253,0.0007002779703025689,0.036629505899593726,0.828629857743253,1,0.6155287241426709,0.43947501167827185
+98,17,0.3968747575336449,2.0,1.3821644463526168,0.0006976082096216971,0.03660473060115181,0.8282904743913267,1,0.6615121031741943,0.4075663875465573
+98,18,0.4671021237575342,1.95,1.3828642880491588,0.0006985623638304753,0.036386211446186534,0.8174642926905192,1,0.6928249939156105,0.4665737539709666
+98,19,0.4312366757512804,1.95,1.3836916624112408,0.0006986503576646405,0.03671842136469939,0.8175877443534703,1,0.7120160762804493,0.45476748413033546
+98,20,0.4422939087350314,1.9,1.3841962117786286,0.0006994252321994435,0.03651457932355394,0.8062140474507526,1,0.748426662316068,0.4430774793620139
+98,21,0.48819600664206914,1.95,1.3843917886260124,0.0007001755328674569,0.03673462115610876,0.8176925912986044,1,0.7681705339654245,0.46975931018633127
+98,22,0.5359025658657569,1.95,1.3838706155800722,0.0007002297360637019,0.03671558085170147,0.8176149025955083,1,0.8238475599644473,0.5212118062665931
+98,23,0.5139292829661098,1.95,1.3650787288611945,0.0007098497408141748,0.036293651553108174,0.814798802779313,1,0.8435461869865087,0.5217026939050212
+98,24,0.515970163082347,1.9,1.3653920471506442,0.0007065346767788904,0.03620009827532076,0.8032615375410395,1,0.8971096411756788,0.4904210220402517
+98,25,0.5227626130046401,1.95,1.3630893028371867,0.0007069472669357418,0.036376736438473244,0.8144975298778542,1,0.9298718368729398,0.46937959418488073
+98,26,0.5358253808009296,2.0,1.3617536504010674,0.0007069622720655303,0.036390071050871685,0.8253707573171233,1,0.9808059075171178,0.44501005931360815
+98,27,0.5831607823710295,2.0,1.3603042989587912,0.0007069019039058957,0.03636103226282182,0.8251617407432184,1,1.0,0.4772026079034317
+98,28,0.5449711614250351,2.0,1.3606821238037223,0.0007124637986742294,0.03641320080060242,0.8252178472048383,1,1.0,0.44990387141678345
+98,29,0.5306510812847914,1.95,1.3585982581522917,0.0007127384716822509,0.03637758702609713,0.8138197683993976,1,1.0,0.40217027094930463
+98,30,0.5689292670635703,2.0,1.3556959431929267,0.0007132524155357258,0.03605504686823298,0.8244977352826202,1,1.0,0.4297642235452341
+98,31,0.5950002353951626,2.0,1.3564877889025015,0.000718911010603463,0.036171861738511814,0.8246139236461186,1,1.0,0.48333411798387493
+98,32,0.5510705928589932,2.0,1.363148260379279,0.0007144308768259191,0.03644745175148409,0.8255738276417993,2,1.0,0.4702353095299773
+98,33,0.5951694554173538,1.95,1.357104999391428,0.000681709645481812,0.035583460051749186,0.8135839962542337,2,1.0,0.48389818472451235
+98,34,0.526902389408303,1.95,1.3532901455540678,0.0006795423043618354,0.03598625954010644,0.8130040648902173,2,1.0,0.42300796469434343
+98,35,0.5872017958669516,1.9,1.35725344918195,0.0006803000813867506,0.03621634365432288,0.8019638670084781,2,1.0,0.4573393195565052
+98,36,0.6274512439204221,1.9,1.3533649428029815,0.0006777229520775224,0.03531817299456128,0.8013447571694172,2,1.0,0.49150414640140694
+98,37,0.6333761117079243,1.9,1.3589236928218136,0.0006846028339187636,0.035783541305954084,0.8022303630116394,1,1.0,0.511253705693081
+98,38,0.5751019542602317,1.95,1.3719018296067682,0.0007115487758929809,0.03664063199697021,0.8158267201903759,1,1.0,0.5170065142007723
+98,39,0.6226577465681034,1.9,1.372490603822438,0.0007083460551918818,0.03659542371396503,0.8043814953915297,1,1.0,0.5755258218936777
+98,40,0.57324443490866,1.9,1.3763180814879976,0.000706466641921375,0.03648524779937099,0.8049824646541682,1,1.0,0.5441481163621997
+98,41,0.5691110414243885,1.8499999999999999,1.3750973343786839,0.0007070892880764288,0.036610134070304653,0.792738399301705,1,1.0,0.5303701380812951
+98,42,0.6093471540235524,1.9,1.3734083285941336,0.0007078282464199934,0.03659883042013153,0.8045256979305155,1,1.0,0.5644905134118414
+98,43,0.635357295666836,1.9,1.3732962051792765,0.0007105169811113433,0.03667040678750154,0.8045089100798418,1,1.0,0.6178576522227863
+98,44,0.5818980062397867,1.9,1.386090743873532,0.0007000697820379715,0.03671377022981414,0.8065100652671783,1,1.0,0.5729933541326221
+98,45,0.6232427701466065,1.8499999999999999,1.3757953627950428,0.0007088894030654549,0.036383434605974804,0.7928536561781302,1,1.0,0.6108092338220215
+98,46,0.5813782885510188,1.8499999999999999,1.3857140614811543,0.0006998236072914451,0.03643057983596844,0.7944749788682555,1,1.0,0.5712609618367291
+98,47,0.5734365828926394,1.7999999999999998,1.3752741778288446,0.0007101622452023799,0.03670472944964744,0.7801763761443202,1,1.0,0.5447886096421315
+98,48,0.5523671069499685,1.8499999999999999,1.3736037946758786,0.0007112333310288958,0.03663959395547112,0.7924942600746079,1,1.0,0.47455702316656145
+98,49,0.5624178087436296,1.7999999999999998,1.3724734559665788,0.0007116111286908453,0.03633755292291328,0.7796961698465936,2,1.0,0.47472602914543194
+99,0,0.1560156488395507,1.8499999999999999,1.3766850735863234,0.000702922133164303,0.03636571078668545,0.7929977822263731,1,0.1226234692264836,0.22322087049652423
+99,1,0.03214430374275981,1.7999999999999998,1.37674622176758,0.0007020166067738503,0.03654135888225223,0.7804259376380921,1,0.17313816748056204,0.17629678916844999
+99,2,0.13843635909206928,1.7499999999999998,1.3856559347013668,0.0007005696946454298,0.03666553133489338,0.7688905233890647,1,0.21142633011506945,0.14621942348680494
+99,3,0.15679680602420454,1.7499999999999998,1.3852492504308216,0.0007012827496160915,0.03659153248622829,0.768818502023278,1,0.2267698420640476,0.153629563995285
+99,4,0.15522385726707127,1.7999999999999998,1.3851536799346478,0.0007013958516942945,0.03677135445888567,0.7818630416195211,1,0.2668093245831656,0.12833375811268338
+99,5,0.20727173518482375,1.8499999999999999,1.3854825822023755,0.0007011477569312896,0.03649094441943793,0.7944376118013827,1,0.29913683067725344,0.15872334304640792
+99,6,0.17965874132533222,1.8499999999999999,1.3855752354028792,0.0007008531617594981,0.036659542366296635,0.7944526460444458,1,0.3311790179544355,0.12395711381186003
+99,7,0.2557531087172486,1.7999999999999998,1.3858108252958596,0.0007007100138522093,0.036765922615404865,0.7819748652636552,1,0.37442281717961023,0.18661327281801493
+99,8,0.23799372991263343,1.7999999999999998,1.3856945622232215,0.0007008847636592309,0.03643637722374263,0.7819551024923455,1,0.40409641817603276,0.18785054214073446
+99,9,0.2967558553826619,1.8499999999999999,1.381514166468831,0.0006987445967498924,0.03664032878094493,0.7937879997383328,1,0.4405572486379162,0.23510985309165144
+99,10,0.3317676133008126,1.8499999999999999,1.3844706011186252,0.0007020087433712664,0.036716986036455554,0.7942725808534252,1,0.4830602372908087,0.2951450612816305
+99,11,0.3006260787186442,1.8499999999999999,1.3842982710551968,0.0007025734869995492,0.03650271610923213,0.7942446046453493,1,0.536977092079781,0.2527841396224395
+99,12,0.30891748828687005,1.7999999999999998,1.3847965398424982,0.0007020232961564051,0.03678556476395901,0.7818023381615307,1,0.5803825315664282,0.2225482522009959
+99,13,0.36099736738633,1.8499999999999999,1.3850796313648863,0.000701560796325703,0.036321241382908674,0.7943719344420316,1,0.6119378610043701,0.2540740766152731
+99,14,0.3531233034664425,1.8499999999999999,1.3833155001063986,0.000703262444009405,0.03655120261695669,0.794084178971882,1,0.6445040357164773,0.25107229726617186
+99,15,0.35526935244062685,1.9,1.3830630774556298,0.0007040664492161763,0.036778106398398465,0.8060384043195422,1,0.6633431550215338,0.2331069681067109
+99,16,0.39861626239332615,1.95,1.382819142781154,0.0007046591744558686,0.036734327060527275,0.8174593757122273,1,0.6948057146417506,0.268979921788753
+99,17,0.38930816467409063,1.95,1.3837484275772656,0.000703593598579547,0.03663387005122284,0.8175976844381572,1,0.7227466868927539,0.26736496638996354
+99,18,0.45570933108317396,2.0,1.3833926910974785,0.0007041657485935282,0.03663606567553728,0.8284669553011776,1,0.7716303662656679,0.32352394858968925
+99,19,0.43719069680696104,2.0,1.3829917139661243,0.0007046263599324379,0.036707211682718774,0.8284100961014826,1,0.8079104027658928,0.3134217856686796
+99,20,0.5152769027780519,2.0,1.3505927444543548,0.0006836401930403306,0.0354967871074368,0.8237494745302577,1,0.8749027786530013,0.38438597105617134
+99,21,0.47927516819321775,2.0,1.3486082517368587,0.0006831078221779432,0.035794868707483225,0.823461013498843,1,0.8972140947993252,0.3679651009116255
+99,22,0.5627417134247151,1.95,1.3552137480152415,0.0006835880919950003,0.03589434331353085,0.8132975598042782,1,0.9625959932480398,0.42567772041833046
+99,23,0.5426725914976303,1.95,1.3653455866968924,0.0007241272474041916,0.036307608840640396,0.8148433769389526,1,0.9783634369555378,0.4377573890513836
+99,24,0.5998364369776524,1.9,1.3687039198603228,0.000719696581615057,0.03648102979289275,0.8037885468761757,1,1.0,0.499454789925508
+99,25,0.5729816978446768,1.9,1.3713674487281322,0.0007161330737547502,0.036610341884874456,0.8042071566454417,1,1.0,0.5099389928155893
+99,26,0.6170694786475711,1.8499999999999999,1.3739860130219874,0.0007127382708396292,0.03669128916218092,0.7925576026041489,1,1.0,0.5568982621585703
+99,27,0.5679148319988103,1.8499999999999999,1.3760132361611261,0.0007099689728787184,0.03618964394185141,0.7928897912701015,1,1.0,0.5263827733293676
+99,28,0.558978632097821,1.7999999999999998,1.3744266627792958,0.0007104973742267716,0.03664310079017069,0.7800311067890622,1,1.0,0.4965954403260696
+99,29,0.5492552149010056,1.8499999999999999,1.3723405774761503,0.0007111561204140805,0.036584496774686684,0.7922864254921848,1,1.0,0.4641840496700187
+99,30,0.5898645690684781,1.9,1.3708635517130845,0.0007112110071938237,0.036597767183368005,0.8041262513463273,1,1.0,0.4995485635615934
+99,31,0.5410250268151183,1.9,1.3709572871583229,0.0007150087367679403,0.03662076587116012,0.804142211203851,1,1.0,0.4367500893837276
+99,32,0.5983525128904497,1.8499999999999999,1.3691712288935685,0.0007155140066625147,0.03665701289158439,0.7917658039097327,1,1.0,0.4945083763014988
+99,33,0.5719297362911635,1.8499999999999999,1.371124916646794,0.0007121424755639154,0.036461709217676344,0.7920866196268874,1,1.0,0.5064324543038782
+99,34,0.5529757822338432,1.7999999999999998,1.3741672986187856,0.0007090925254699062,0.0366631748403217,0.7799861190196937,1,1.0,0.47658594077947736
+99,35,0.5902740154693437,1.8499999999999999,1.3720125573284183,0.0007095725335730361,0.03661576482517292,0.7922319171673091,1,1.0,0.5009133848978121
+99,36,0.5486428317325976,1.8499999999999999,1.3721760986091713,0.0007133129557940637,0.03668385787378659,0.7922600660888552,1,1.0,0.46214277244199203
+99,37,0.6091363520485387,1.7999999999999998,1.3703872823006638,0.0007137660917521973,0.03649845462765131,0.7793383597828165,1,1.0,0.530454506828462
+99,38,0.5546408799095948,1.7999999999999998,1.3722243215241372,0.0007105611918312723,0.036668421412781656,0.7796530122824747,1,1.0,0.4821362663653156
+99,39,0.5918815455101794,1.7499999999999998,1.37033885111985,0.0007108660283748957,0.036610920563068854,0.7661611965579789,1,1.0,0.5062718183672645
+99,40,0.5665675868159931,1.7499999999999998,1.369622614903643,0.000715458730688889,0.03619126644210755,0.7660344987570157,1,1.0,0.48855862271997674
+99,41,0.5939647994923918,1.6999999999999997,1.3729390780702417,0.0007120242041742006,0.03660221362800366,0.7529416379584795,1,1.0,0.5132159983079723
+99,42,0.6194810543296315,1.6999999999999997,1.3720010930515063,0.0007159168916035066,0.03671736702088439,0.7527685610196392,1,1.0,0.5649368477654383
+99,43,0.6165824408330661,1.6999999999999997,1.3741669959905158,0.0007123431630637497,0.03653847122409084,0.7531701035388059,1,1.0,0.5886081361102201
+99,44,0.6472548562464919,1.7499999999999998,1.3733903432091115,0.0007153351441624385,0.03643017176348566,0.7667090511065968,1,1.0,0.6575161874883061
+99,45,0.6200018767588078,1.7499999999999998,1.38475890285091,0.0006995189454825576,0.036376031847283025,0.7687307106664603,1,1.0,0.6666729225293594
+99,46,0.6657527492190397,1.6999999999999997,1.3851064122273036,0.0006994363704645249,0.0366964573312332,0.7551933853283915,1,1.0,0.719175830730132
+99,47,0.6456753134691039,1.6999999999999997,1.3850037910323985,0.00069927035435625,0.03671375237436957,0.7551743512129071,1,1.0,0.7522510448970128
+99,48,0.6269985228191557,1.6499999999999997,1.3851178925734655,0.0006994704279564679,0.03658805132098375,0.7410660664399258,1,1.0,0.7233284093971853
+99,49,0.6443274025183665,1.6999999999999997,1.384525016709678,0.0006989467842187,0.036493662840560805,0.755085702028803,1,1.0,0.747758008394555
+100,0,0.1258986000102208,1.7499999999999998,1.375993082723643,0.0007022233210112204,0.036338182638062724,0.7671695861952913,1,0.09676704420128907,0.22397260776568392
+100,1,0.160375635194169,1.6999999999999997,1.3761308123480398,0.0007028295637889273,0.03654956924690436,0.75353147133251,1,0.11919078706599105,0.24233106789257525
+100,2,0.17913115669730884,1.6999999999999997,1.3756722177552048,0.0007020961880516372,0.03644302631189662,0.7534460179489566,1,0.1516595337811312,0.2615578106161878
+100,3,0.1952107840161232,1.7499999999999998,1.3754372680883997,0.0007013096014906636,0.03642273000438756,0.7670699650986478,1,0.179666231964336,0.277814304101296
+100,4,0.19628482877578537,1.7999999999999998,1.375447740859678,0.0007004881428210692,0.036521712864255595,0.7802028230290271,1,0.21338522102186286,0.3031024678901342
+100,5,0.1932091912141042,1.8499999999999999,1.3854621844904036,0.0006998795876937673,0.036453333185671025,0.794433866496749,1,0.25317917399728157,0.2731250720506386
+100,6,0.24562135827363998,1.9,1.3857778745020188,0.0006999352925626906,0.036635774052465285,0.8064611948426775,1,0.2876522243625832,0.30186822842868893
+100,7,0.2644715496977705,1.9,1.385682986414586,0.0006998167077251537,0.03676997478093062,0.8064463471135976,1,0.3229937415230993,0.3175801769617694
+100,8,0.2827162431072548,1.95,1.3855352222580721,0.0006996642729419134,0.03652774793408438,0.8178628303380798,1,0.3443603918671143,0.3499069545346969
+100,9,0.33658483548546125,2.0,1.3853644113036303,0.0006995215993494464,0.03646002274131138,0.8287456557003827,1,0.40080978380073035,0.4208697398838971
+100,10,0.3180873033694439,2.0,1.383865996080664,0.000698504354122343,0.036618560780438,0.8285325973789137,1,0.4202434287052047,0.43329977295787325
+100,11,0.38386630234123914,2.0,1.3836350110003055,0.0006984530815673739,0.03668992759303112,0.8284997651150132,1,0.46874336259476446,0.48789652434444464
+100,12,0.3825458871486964,2.0,1.383861077613046,0.000698827226010658,0.03635882105900342,0.8285319903678559,1,0.47858431525158873,0.5037072034935365
+100,13,0.4037398650710794,2.0,1.384688717372969,0.0006991422107923455,0.036638124702865385,0.8286496279235172,1,0.5118525278764604,0.5299961797349841
+100,14,0.3815515071890461,2.0,1.385255588671888,0.0006994441797283804,0.03672351775218556,0.8287301883776969,1,0.5546385969475757,0.4989868947000528
+100,15,0.3939446348077279,1.95,1.3849593681594672,0.0006992517392642363,0.036468854152908056,0.8177769106048587,1,0.6089763655510206,0.4678469619577321
+100,16,0.4449293081337082,2.0,1.3846809111109462,0.0006991495637186422,0.03673212612950387,0.8286485216021267,1,0.6367295160360454,0.5007916723976334
+100,17,0.42244909742449177,2.0,1.3844040005455625,0.0006988882512069222,0.03672236780223419,0.8286091252301843,1,0.678462477211336,0.47021368846652456
+100,18,0.43138041248678877,1.95,1.384924670023095,0.0006992229681965382,0.03641753623039173,0.8177717313316882,1,0.721895634557749,0.44207386221229716
+100,19,0.4815414195301488,2.0,1.385196289127005,0.0006995531856950727,0.03674355754682047,0.8287218023909975,1,0.7407941577663816,0.4840791880786537
+100,20,0.47215399806026115,2.0,1.384886550461312,0.0006995038143366385,0.03672611950286137,0.8286778189774405,1,0.7540612355218145,0.5017650128384509
+100,21,0.4835355598471166,2.0,1.385373233153192,0.000699594041261428,0.03645816917510286,0.8287469283118687,1,0.7748786407215142,0.5119470118617029
+100,22,0.5327945945064432,2.0,1.3856188055616458,0.0006997026349192798,0.03664226525198215,0.8287818092939564,1,0.8277976837897103,0.5389184033018634
+100,23,0.5470980299700563,2.0,1.3756938747854828,0.0007122592460527211,0.03671211172870545,0.8273724243488736,1,0.8560678154318684,0.5489030126576964
+100,24,0.5206547905107606,2.0,1.3749207055314803,0.0007142026866708579,0.036369482093394516,0.8272625221553331,1,0.8848386738182488,0.522397736611537
+100,25,0.5188824631608111,1.95,1.3738327029961281,0.0007151268024236722,0.03654229486579179,0.816117737646412,1,0.918430534968191,0.47170083057844886
+100,26,0.5717829868083671,2.0,1.3722857213309843,0.0007163628738141519,0.03655355373373002,0.8268862785919271,1,0.9541361081919298,0.5004284784386507
+100,27,0.559716893437701,2.0,1.3717079256809739,0.0007183896295118209,0.036615060162818965,0.8268041346627378,1,0.9599364617570288,0.5191410291162982
+100,28,0.5734630030024139,2.0,1.3747269311058115,0.0007150920989616955,0.036693115386127406,0.8272350844056379,1,0.977409090161835,0.541664556458933
+100,29,0.586025485288346,2.0,1.3769255001652543,0.0007122153621896649,0.03675903881410103,0.8275482506252902,1,1.0,0.5534182842944866
+100,30,0.567988242089724,2.0,1.3784337053768723,0.0007097005236383554,0.036448536668458015,0.8277626664172238,0,1.0,0.5266274736324134
+100,31,0.5639328243077565,2.0,1.1107238743009915,0.0004810512310493246,0.028850591464641268,0.7861185934287624,0,0.9973729727901944,0.5499454506389289
+100,32,0.6055780771911192,2.0,1.131722403279243,0.0004910273492071758,0.02944060940962707,0.7896313059565597,0,1.0,0.5185935906370638
+100,33,0.5804841636442096,2.0,1.1232099086217504,0.0004836114296847305,0.02941570084533799,0.788211301650163,0,1.0,0.5349472121473653
+100,34,0.6006007472205406,2.0,1.137146146930859,0.0005002911869388519,0.02976219845241728,0.7905339168488994,0,1.0,0.5353358240684685
+100,35,0.6072088002301196,2.0,1.1613448024175734,0.0005244813345835195,0.030282361853140937,0.7945207039611124,0,1.0,0.5240293341003984
+100,36,0.5798091685705732,2.0,1.1532167915845504,0.0005174534524601988,0.029855765524201338,0.7931882622324402,0,1.0,0.5326972285685772
+100,37,0.6055782222708714,2.0,1.1642688861720085,0.0005313937448280797,0.030411659803381154,0.7949999247292919,0,1.0,0.5185940742362378
+100,38,0.585198151945643,2.0,1.1564694872978776,0.000524634588087419,0.030254031577304146,0.7937236791922249,0,1.0,0.5506605064854765
+100,39,0.589319922712751,2.0,1.165257829174466,0.0005388844605145221,0.03081005775152911,0.7951634909033708,0,1.0,0.5643997423758366
+100,40,0.6143752835056628,2.0,1.1714333332787081,0.0005522617886166804,0.0308808717964665,0.7961718563641544,0,1.0,0.5479176116855426
+100,41,0.5886699222956324,2.0,1.1642837978058886,0.000546122822256236,0.030686777694723538,0.7950071558029324,0,1.0,0.5622330743187745
+100,42,0.5926910656032092,2.0,1.16877094345084,0.0005591197939746718,0.031014660918119885,0.7957416864658696,0,1.0,0.5756368853440303
+100,43,0.6203733306975521,2.0,1.171308221761799,0.000570501482406101,0.031059478299226284,0.7961574725668541,0,1.0,0.5679111023251735
+100,44,0.6087077612797709,2.0,1.1648561284746743,0.0005651994814380128,0.03067137104351857,0.7951066289353734,0,1.0,0.5290258709325693
+100,45,0.6023328656952331,2.0,1.158395446292879,0.000559768814918574,0.03059702711352811,0.7940503226941549,0,1.0,0.5077762189841101
+100,46,0.5784292989156141,2.0,1.1518702268327694,0.0005542491537097614,0.030427624543022336,0.7929793649292247,0,1.0,0.5280976630520469
+100,47,0.5823993794212787,2.0,1.1542346607648601,0.0005665466862991617,0.03098629751943708,0.7933712808131212,0,1.0,0.5413312647375956
+100,48,0.6082863875177686,2.0,1.1550658079751641,0.0005770003200694327,0.03111985672892939,0.7935109259929731,0,1.0,0.5276212917258951
+100,49,0.5999333083322316,2.0,1.1492072415521946,0.0005723212829226261,0.030807174003541653,0.7925478026990153,0,1.0,0.4997776944407717
+101,0,0.16878505370900618,2.0,1.3856623637634566,0.0006998292332079557,0.03639663280781919,0.8287880261523235,0,0.1610779633189845,0.21451289460470785
+101,1,0.20096455638020147,1.95,1.385562322677946,0.000699793682369459,0.036702278895473395,0.8178669058229648,0,0.23741545815714238,0.21999457705781506
+101,2,0.22616599431922627,1.95,1.372684774227993,0.0006948148963654541,0.036385902770778036,0.8159393050445576,0,0.3062944901833845,0.21216066081957488
+101,3,0.18248643315471347,1.95,1.3718876929938906,0.0006945027641540179,0.036546546397403,0.8158194735594135,0,0.29520782913185517,0.21467767167323798
+101,4,0.2692590549826428,1.9,1.3727838466599431,0.0006937980973894034,0.036327763240960965,0.8044230560711803,0,0.3958996401070951,0.20299732979934906
+101,5,0.22801189596126545,1.9,1.3740925953132115,0.0006968788744800051,0.0362661971390385,0.804629843622706,0,0.40929271534753514,0.21431603274083796
+101,6,0.241003022741377,1.8499999999999999,1.3412343450964566,0.0007137807096271612,0.03567828235402817,0.7871216452252824,0,0.4301746026551236,0.22977727226442515
+101,7,0.32413279810780893,1.9,1.3466861337743639,0.000709447695209367,0.036097979126931634,0.8002895495246533,0,0.5251429483581268,0.21358539588186062
+101,8,0.28040220658660014,1.9,1.348693875378021,0.0007171228690292799,0.036452840550572206,0.8006126961699344,0,0.5390086174017724,0.21599586541963725
+101,9,0.3527511416424764,1.8499999999999999,1.3540428797861688,0.0007127287325823677,0.036458144800303065,0.7892596150833567,0,0.6178982512568623,0.21863947046577173
+101,10,0.3839512321307095,1.9,1.037773244853695,0.0007320439064029054,0.03132594381606198,0.7463496284945752,0,0.6926921529828809,0.22291456979185703
+101,11,0.41069668756829114,1.95,1.054595822088147,0.0007900059555241805,0.03233354739394692,0.7633574874830527,0,0.7621870603994612,0.2194062113616888
+101,12,0.4389883123666759,2.0,1.0680817717936366,0.0008408752730124861,0.033014990297424544,0.7789853967814251,0,0.8265078822838933,0.22795053151039527
+101,13,0.4110179924837671,2.0,1.371170105501762,0.0006902492632547728,0.036162361970301635,0.826719043453729,0,0.8443496899696601,0.24426038831967678
+101,14,0.447930000832388,1.95,1.3708859814643581,0.0006906639093808114,0.036261881554629886,0.815667756338184,0,0.8697759375293888,0.2667320860687747
+101,15,0.4905191510014922,1.95,1.3708695505787964,0.0006915329863414998,0.03644006060270862,0.8156655472189103,0,0.9321747913953274,0.2588307814778707
+101,16,0.5158578249914617,1.95,1.3697872523185617,0.0006903491541498545,0.036165908248606236,0.8155024061471592,0,1.0,0.2528594166382055
+101,17,0.5148933707177366,1.95,1.3685395494927586,0.00068911405047394,0.03596879823351388,0.8153142331261871,0,1.0,0.21631123572578842
+101,18,0.49102615639798564,2.0,1.3727666097853033,0.0006908777008568967,0.03610654272352366,0.8269478107263734,0,1.0,0.236753854659952
+101,19,0.5194943991043567,1.95,1.3733854622223376,0.000691861168368846,0.03623557035583342,0.8160436259188691,0,1.0,0.23164799701452213
+101,20,0.46948827236328416,1.95,1.3763976728234169,0.0006932522342281384,0.03649915662709741,0.8164957946536875,0,0.9962186276464843,0.23666940434896816
+101,21,0.5145817937209161,1.9,1.3763524286654483,0.0006935194282432607,0.036453077965289286,0.8049837916116062,0,1.0,0.21527264573638683
+101,22,0.5097095436252297,1.9,1.3787270005646104,0.0006948495062533479,0.03628744596220453,0.8053567105685193,0,1.0,0.19903181208409895
+101,23,0.4619963133040554,1.95,1.2624072745214074,0.0007987168821152659,0.03533433925065629,0.7988311044698961,0,1.0,0.2066543776801846
+101,24,0.4667554581115032,1.9,1.3772264834496992,0.0006939833670963879,0.03635253262188838,0.80512111401179,0,0.9930580235863395,0.2317741622565579
+101,25,0.5113191631717301,1.95,1.376760628541551,0.0006939627711963204,0.03651378210485211,0.8165503830826095,0,1.0,0.23773054390576687
+101,26,0.5129774320801723,1.95,1.3760410603039466,0.0006932637143394794,0.03652032861900502,0.8164423606631768,0,1.0,0.24325810693390745
+101,27,0.5000550580214571,2.0,1.374991525602185,0.0006923654547182103,0.03639660416429261,0.8272664012074967,0,1.0,0.26685019340485683
+101,28,0.48020212758162184,2.0,1.375675543875868,0.000693223432596517,0.036441622588980295,0.827364368378358,0,1.0,0.2673404252720728
+101,29,0.48904301234285447,2.0,1.3754339669792224,0.0006935660109950419,0.03638813286109514,0.8273299584786109,0,1.0,0.2968100411428481
+101,30,0.5129808833149694,2.0,1.37501826860241,0.0006938114894327075,0.03613405874518848,0.8272706359201618,0,1.0,0.3099362777165646
+101,31,0.4965432144507529,2.0,1.375262233802608,0.000694893452925383,0.03630515631647279,0.8273058034456942,0,1.0,0.321810714835843
+101,32,0.5347936933943493,2.0,1.3747901607397397,0.0006952712242139086,0.03641943044457997,0.8272384554940031,0,1.0,0.31597897798116437
+101,33,0.5312345031138189,2.0,1.373936608477493,0.0006941824957966583,0.036476636570429086,0.8271161246384205,0,1.0,0.30411501037939637
+101,34,0.5206214261655158,2.0,1.3729946314447485,0.0006930424702791041,0.03642880528889152,0.8269810588486919,0,1.0,0.3354047538850523
+101,35,0.5455537765660612,2.0,1.3731672746708865,0.0006941823373834607,0.03632140692657142,0.8270060859868209,0,1.0,0.3518459218868706
+101,36,0.54296174108527,2.0,1.3721630842455783,0.0006929702162277434,0.03611902047382035,0.8268620252181181,0,1.0,0.30987247028423315
+101,37,0.5135448355340498,2.0,1.375886981267907,0.0006939231770178322,0.036237857654919256,0.8273947662990162,0,1.0,0.3118161184468326
+101,38,0.4974999498638818,1.95,1.3759387937775605,0.0006947164756498416,0.03644756626565511,0.816427469534424,0,1.0,0.3249998328796058
+101,39,0.4995632602333548,2.0,1.3753976238711014,0.0006951426471979332,0.03637830787420272,0.8273252170898577,0,1.0,0.3318775341111826
+101,40,0.5308018583404144,2.0,1.3752304333176943,0.0006957217193655748,0.03646405487169524,0.8273014967093139,0,1.0,0.369339527801381
+101,41,0.556721198272253,2.0,1.3751858939877502,0.0006967797570204511,0.03644068191136022,0.8272954354565141,0,1.0,0.3557373275741764
+101,42,0.550293857817757,2.0,1.3783740548959051,0.0006970157806808656,0.03636147297014007,0.8277505446437975,0,1.0,0.3343128593925231
+101,43,0.5264257422327212,2.0,1.38078627155703,0.0006974669408278173,0.03640770950608917,0.8280943340655841,0,1.0,0.35475247410907046
+101,44,0.5463087798022402,1.95,1.3806997871148956,0.0006979740965821716,0.036601711894571086,0.8171409158421855,0,1.0,0.3543625993408007
+101,45,0.5307198154019569,2.0,1.3799345616156924,0.0006970782820534358,0.036548345534669936,0.8279729450576055,0,1.0,0.3690660513398561
+101,46,0.5393427787930855,2.0,1.3798776440141864,0.0006976355351918635,0.036516942142668596,0.827964996668172,0,1.0,0.39780926264361804
+101,47,0.5639586750694455,2.0,1.3795294395231152,0.000698037372832248,0.03657256208564811,0.8279155076188817,0,1.0,0.3798622502314849
+101,48,0.5437213435540323,2.0,1.381680757369504,0.0006982987160293402,0.0365267277909798,0.8282218671027366,0,1.0,0.41240447851344114
+101,49,0.5494441619579352,2.0,1.2310710464615502,0.0006294627796185632,0.032677533221761604,0.8057034226725558,0,1.0,0.4314805398597839
+102,0,0.12650243161162386,2.0,1.3834324458460996,0.0006993455111954184,0.036316174393159054,0.8284712347820163,0,0.1141901422152813,0.2027545824183712
+102,1,0.18733940326664256,1.95,1.3834453364646462,0.0006990467535244985,0.03662381199269397,0.817551123168295,0,0.21096579865850718,0.17651027934413235
+102,2,0.14232471187069845,1.95,1.3836181160382521,0.0006988432885330363,0.03662957221482936,0.8175768330858237,0,0.2216563315782279,0.17887393079802427
+102,3,0.22758417396759845,1.9,1.3842470140005287,0.0006990268657244316,0.03639216233675226,0.8062218598365369,0,0.3152617676155335,0.17159822307128356
+102,4,0.1796322542317916,1.9,1.3842839221594676,0.0006992422142307166,0.036714852983733934,0.806227693151069,0,0.31337815555108833,0.18093664003785428
+102,5,0.25845258073011695,1.8499999999999999,1.384833391125693,0.0006993923203873451,0.03659587760554821,0.7943310008504423,0,0.4116452957775677,0.1459815413969663
+102,6,0.28779166331267986,1.8499999999999999,1.3788859886088247,0.0007090773856347181,0.036684530446293426,0.7933608526976842,0,0.5073564314981769,0.1161636357113636
+102,7,0.2764016262260349,1.8499999999999999,1.3801672825270526,0.0007074680720242724,0.03673114010397953,0.7935703010484602,0,0.551901578042801,0.11880331669638158
+102,8,0.3215351065371966,1.9,1.37961595328984,0.0007078172114605633,0.03628073861012516,0.8055000858791723,0,0.6082987167392059,0.127385399471714
+102,9,0.31954635263811154,1.9,1.3472806070539713,0.0006784317765662556,0.03525809460920605,0.8003746340040073,0,0.6300641761760923,0.15840227389224862
+102,10,0.3421616449427388,1.95,1.346019683208132,0.0006771424358255158,0.035585522081365985,0.8118954985105169,0,0.6740569663323542,0.17512952803265708
+102,11,0.39505214408790773,1.95,1.3455802021714414,0.000676224602720914,0.035829838107965487,0.8118280908177314,0,0.7523803673104078,0.18033332387914858
+102,12,0.3840364108702693,1.95,1.3475998006208816,0.000679493271646361,0.036017905716528416,0.8121374143505773,0,0.7584801063495032,0.20214789443489312
+102,13,0.3766918372872894,2.0,1.0776866835891181,0.0009577968156590198,0.03526939420448581,0.7806746567289033,0,0.7763761091385049,0.2204713121062913
+102,14,0.45715535589348444,2.0,1.1081012238447332,0.0009350582395473526,0.03555289087630366,0.7858301596264772,0,0.8661577574692669,0.20230750968592562
+102,15,0.4412324394317934,2.0,1.3819587040002999,0.0006972180418179657,0.036531915104694716,0.8282610996352875,0,0.8864793897891724,0.2221356117204147
+102,16,0.5042435826497306,2.0,1.3820954618341499,0.0006975281887746815,0.03651706985816571,0.8282806400578294,0,0.9852272710354836,0.20050891411845687
+102,17,0.5054986459027581,2.0,1.3834222776801526,0.0006981913565860904,0.03666969432884068,0.8284694617846866,0,1.0,0.1849954863425268
+102,18,0.49871927603076344,2.0,1.2601845880198383,0.0008120077364483589,0.03556045436052885,0.8102766237713417,0,1.0,0.19573092010254486
+102,19,0.4600160949352368,2.0,1.261787274152229,0.0008027212584942589,0.03552822401101417,0.8105200272949348,0,1.0,0.2000536497841227
+102,20,0.48158089288572076,1.95,1.3814091858610875,0.0006972613250321966,0.0365979788684241,0.8172466786078699,0,1.0,0.20526964295240235
+102,21,0.4643252549593794,1.95,1.3812279731576904,0.0006975689111914198,0.036465304229708354,0.8172197040003946,0,1.0,0.2144175165312645
+102,22,0.48721591479236903,2.0,1.3810534995686372,0.0006979189239326028,0.03661848801963364,0.8281325003962808,0,1.0,0.22405304930789666
+102,23,0.5045398856642208,2.0,1.3810283915556039,0.000698395755038066,0.03661340671607307,0.8281290625029326,0,1.0,0.2151329522140691
+102,24,0.5104647368995633,2.0,1.3805260265685035,0.0006976886846533593,0.03635504743296809,0.8280573471021433,0,1.0,0.20154912299854405
+102,25,0.5026685966255927,2.0,1.3823521654543125,0.0006980672159822861,0.03651616420530647,0.8283173017122328,0,1.0,0.208895322085309
+102,26,0.5087913380942006,2.0,1.3818247093386753,0.0006975003993796634,0.036630238302490584,0.8282421191078695,0,1.0,0.19597112698066854
+102,27,0.482390773338384,2.0,1.2522776330655319,0.0008155315342323686,0.036090658101274944,0.8090592057699661,0,1.0,0.2079692444612799
+102,28,0.4869009362747966,1.95,1.3798749780449389,0.0006969078789120351,0.03646082053212827,0.8170173204799903,0,1.0,0.22300312091598856
+102,29,0.5118950151366619,2.0,1.3794918661069993,0.0006972597916126175,0.03626246412988725,0.8279099328432091,0,1.0,0.20631671712220617
+102,30,0.466958433148578,2.0,1.3816831395897375,0.0006977275156439195,0.036401262248008465,0.828222043492283,0,1.0,0.22319477716192665
+102,31,0.47092809404770974,1.95,1.3816093804865486,0.0006981465285511644,0.036491139864947994,0.8172768410706931,0,1.0,0.23642698015903238
+102,32,0.4726330103260425,2.0,1.3812989073524724,0.0006984426647714313,0.03652964771753673,0.8281675753064065,0,0.9975601515339838,0.24536316570816327
+102,33,0.5006919810498146,2.0,1.3811423300870533,0.0006987950606295993,0.036495448845869596,0.828145392576884,0,1.0,0.2689732701660488
+102,34,0.5073279340988198,2.0,1.3809968626800975,0.0006993536754368941,0.03646951468205186,0.828124847599707,0,1.0,0.29109311366273277
+102,35,0.4907324113195833,2.0,1.3807505794391937,0.0006998470266063907,0.03663564413483817,0.828089930731277,0,1.0,0.3024413710652775
+102,36,0.5139587730257061,2.0,1.380475091466598,0.0007003359931773644,0.03647680267164647,0.8280508487866871,0,1.0,0.31319591008568726
+102,37,0.5386011789587041,2.0,1.3801873703598844,0.0007008502351108517,0.036476716950157986,0.8280100248948051,0,1.0,0.32867059652901365
+102,38,0.5243874578262488,2.0,1.3798390916472203,0.0006999409249393684,0.03662612726412414,0.827960162009902,0,1.0,0.3479581927541625
+102,39,0.53192830179648,2.0,1.379485862387788,0.0007004368559439162,0.036457473340818905,0.8279099827678167,0,1.0,0.3730943393215998
+102,40,0.5515878072090213,2.0,1.3790657020905246,0.0007008907329886955,0.03646529919965418,0.8278502415314392,1,1.0,0.3719593573634043
+102,41,0.5269766660723596,2.0,1.34435943352808,0.0006792772525271225,0.03563657477809217,0.822841384269398,1,0.9864245891902212,0.3746894346542369
+102,42,0.5312127979149476,1.95,1.3486706995479487,0.000686563981198015,0.035979083407431986,0.8123029031464416,1,1.0,0.37070932638315846
+102,43,0.5793629970563161,2.0,1.3508611165224294,0.0006934343120303194,0.03575888973454815,0.823791278517682,1,1.0,0.4312099901877202
+102,44,0.5243627125169165,2.0,1.3650207145383835,0.0007139982406525671,0.03652174514766832,0.8258431753878418,1,1.0,0.3812090417230549
+102,45,0.5398137838028284,1.95,1.3347708400377365,0.0006888335807447291,0.035347565601618544,0.8101751274292149,1,1.0,0.3993792793427612
+102,46,0.5893262633838838,2.0,1.3369824219762263,0.0006992201291534708,0.03601256872854827,0.8217692915111556,1,1.0,0.4644208779462794
+102,47,0.5863933010046423,2.0,1.37144258415277,0.00071298291168957,0.03668897796574536,0.8267645859632093,1,1.0,0.487977670015474
+102,48,0.5482145901011848,2.0,1.3709100456166505,0.0007165290673628683,0.0364756879279435,0.8266893160554925,1,1.0,0.46071530033728253
+102,49,0.5380054302645841,1.95,1.3692656960665297,0.0007172242743901094,0.036292157726232295,0.8154320104931885,1,1.0,0.4266847675486138
+103,0,0.17172337104951915,2.0,1.3835523791729332,0.0006993894555331661,0.03634759595102321,0.8284882899222377,0,0.17166981766329154,0.2101848132806751
+103,1,0.1376106366082969,1.95,1.38337300182009,0.0006993456696742085,0.03662623841514685,0.8175404225695,0,0.1763644097048691,0.22354957575449746
+103,2,0.17567458825516866,1.9,1.383738291683882,0.0006992050037436743,0.036653548210592746,0.8061424263751039,0,0.19975871223199848,0.25257034454123084
+103,3,0.2178937182011478,1.9,1.383669258450246,0.000698914929658979,0.03652093542241812,0.806131547185681,0,0.2498338642296971,0.2598672416975632
+103,4,0.24152335932098307,1.9,1.3750689195189074,0.0006938270767127444,0.03635225476579603,0.8047823178644258,0,0.31699021144647394,0.24909091580797832
+103,5,0.21034416848383586,1.9,1.3743888548463183,0.0006935625423063967,0.0361796023439837,0.8046753691401692,0,0.32208799078374517,0.2716965739011259
+103,6,0.30033668116091516,1.8499999999999999,1.3741647686239913,0.0006929182299184719,0.03615619010000783,0.7925804736627843,0,0.43822580433994623,0.25015453141645555
+103,7,0.31608273925609637,1.8499999999999999,1.3252699140720956,0.0007050308079495629,0.035826044024773025,0.7844314067511768,0,0.5101043650824846,0.24013664407700852
+103,8,0.30331660438581554,1.9,1.3229068316068047,0.0007040346264735749,0.036076444142929404,0.7964600872557905,0,0.5246841384259381,0.24480983005146767
+103,9,0.3101543962624124,1.95,1.3294992617995083,0.0006998772473692944,0.036030993017953615,0.8093664861018817,0,0.5344537483489481,0.25457632307611056
+103,10,0.3227892643134618,2.0,1.3344433134149,0.0006964742324799091,0.03585480328296268,0.8213962926332659,0,0.548422184665265,0.2780679681578524
+103,11,0.3416638140909686,2.0,1.3380539414783932,0.0006934738250910012,0.03563823843465776,0.8219244948926623,0,0.5793097570976165,0.29979970417307333
+103,12,0.4057666040414642,2.0,1.3394365283239302,0.0006906458144490254,0.03554538883280485,0.822125939523216,0,0.6829580269590808,0.2752779775261062
+103,13,0.42260232357311817,2.0,1.0589731420724098,0.0008823216543269527,0.03376659822306889,0.7774275492267188,0,0.7540593181387022,0.26992865439212416
+103,14,0.4627655099997386,2.0,1.0625475392695516,0.0009231776288893412,0.03483819576631401,0.7780595385178121,0,0.8567918778745666,0.23349586283303997
+103,15,0.4533424973105915,2.0,1.3723863108685905,0.0007182666849104334,0.0363052611984711,0.826901222051066,0,0.8896842609133818,0.2582293098174624
+103,16,0.5084184035542708,2.0,1.3715508399671452,0.0007190220522649062,0.0365816202263663,0.8267818201249688,0,0.9658087678738275,0.27364965468246616
+103,17,0.5203719293438542,2.0,1.3741956124246109,0.0007159265409375878,0.0367824426588147,0.8271593752197354,0,1.0,0.26790643114618057
+103,18,0.5254204602614335,2.0,1.3761498128656073,0.0007131983184996791,0.03655656497828298,0.8274378032023657,0,1.0,0.28473486753811167
+103,19,0.5074950688727002,2.0,1.3775188880877245,0.0007108042024087133,0.03670076132878054,0.8276325152058833,0,1.0,0.29165022957566733
+103,20,0.510957668280683,2.0,1.376670607225382,0.0007114443361836719,0.03671817173174662,0.8275116511639617,0,1.0,0.3031922276022766
+103,21,0.5299851475944659,2.0,1.3757301802286015,0.0007120369824105174,0.03633325348952504,0.8273775462063758,0,1.0,0.29995049198155294
+103,22,0.5225851479144232,2.0,1.3768187494971613,0.0007096329413750542,0.03655333102111716,0.8275322783375144,0,1.0,0.34195049304807734
+103,23,0.5441326992116448,2.0,1.375832489629599,0.0007101436602917653,0.03672147005301528,0.8273916171610387,0,1.0,0.31377566403881557
+103,24,0.49628420826519337,2.0,1.3782438600024398,0.0007080348248594986,0.03654958667772974,0.8277351231452453,0,1.0,0.3209473608839778
+103,25,0.5431046006169615,1.95,1.3778415642182917,0.0007097465997185813,0.03666871312350696,0.8167169727866801,0,1.0,0.310348668723205
+103,26,0.5195486237177303,1.95,1.3794750375521658,0.0007079600481384252,0.036364606596481705,0.8169608272017967,0,1.0,0.3318287457257676
+103,27,0.5405566135678759,1.9,1.3785820788489382,0.0007084518319302902,0.036594643093917564,0.8053382568984796,0,1.0,0.3351887118929196
+103,28,0.5247113503891304,1.9,1.3795500162039658,0.0007066823753149525,0.03654559201246743,0.805489399724336,0,1.0,0.34903783463043475
+103,29,0.5293503991010323,1.95,1.3785993137167243,0.0007070704037476529,0.03670301970518948,0.8168295725422848,0,1.0,0.3645013303367742
+103,30,0.5348816494327298,2.0,1.377762799843242,0.0007072632052410497,0.03666387645177983,0.8276662979922557,0,1.0,0.38293883144243235
+103,31,0.5428203561742838,2.0,1.376862746406477,0.0007073999817408755,0.03657597803821209,0.8275379202304072,0,1.0,0.4094011872476126
+103,32,0.5502184604964566,2.0,1.2519495885509118,0.0006131322890123678,0.03314272853432495,0.808945968776159,0,1.0,0.43406153498818884
+103,33,0.5555664159425763,2.0,1.2514160003269317,0.0006172602339475487,0.03331039532068805,0.808864764231657,0,1.0,0.4518880531419209
+103,34,0.5386580818110338,2.0,1.2500894642631013,0.0006206964242074968,0.03315835234023172,0.8086606576875691,0,1.0,0.4621936060367793
+103,35,0.5656248332699294,2.0,1.2625565216327788,0.0006261358554643034,0.03346144609811265,0.8105839189767229,0,1.0,0.4854161108997645
+103,36,0.5742415796212046,2.0,1.2607904402627244,0.0006290602274074616,0.033358325159537475,0.8103135092691792,0,1.0,0.5141385987373485
+103,37,0.5994253153697588,2.0,1.2585752739627467,0.0006314949127022984,0.03303463172821797,0.8099735413766388,0,1.0,0.4980843845658628
+103,38,0.5973642223574203,2.0,1.2547504657145818,0.0006283460654191428,0.03317523089057342,0.8093831709606801,0,1.0,0.4912140745247342
+103,39,0.5870936623303595,2.0,1.2507740582970694,0.0006251480342893003,0.0333633286129018,0.8087679385773476,0,1.0,0.45697887443453156
+103,40,0.5606791539883182,2.0,1.2467170360636473,0.0006218477322944575,0.03310842900148801,0.8081386603789655,0,1.0,0.4689305132943942
+103,41,0.5648363977885694,2.0,1.2446017188007938,0.0006247683783095225,0.033272536654055794,0.8078113723162612,0,1.0,0.48278799262856464
+103,42,0.584685133554107,2.0,1.242138601334787,0.0006271189807974273,0.03318862178626022,0.8074294090337173,0,1.0,0.4489504451803565
+103,43,0.556450142741547,2.0,1.238453051070342,0.0006242180478894772,0.0325564985143071,0.8068547997486037,0,1.0,0.45483380913848986
+103,44,0.5808306326445782,2.0,1.2358757621131415,0.0006263496261675337,0.03272941461875671,0.8064535024475162,0,1.0,0.4361021088152604
+103,45,0.5772180535155219,2.0,1.2322982144196954,0.0006236338084298942,0.03280158335023647,0.8058936344919001,0,1.0,0.4240601783850728
+103,46,0.57422943710703,2.0,1.2285949582813682,0.0006208146122670179,0.03276783134472557,0.8053127972065307,0,1.0,0.41409812369009963
+103,47,0.5487202469630748,2.0,1.2247645274460872,0.0006179036306403267,0.032893073862241815,0.8047106292250079,0,1.0,0.42906748987691584
+103,48,0.555205229305111,2.0,1.2222794513607007,0.0006205559970359221,0.03280617179333128,0.8043206351201844,0,1.0,0.45068409768370304
+103,49,0.5763287866864073,2.0,1.2195659915902224,0.0006226662166566624,0.03240095541264283,0.8038938791941251,0,1.0,0.4210959556213573
+104,0,0.18395260611907693,2.0,1.3805884804611228,0.0006980370374674643,0.036238325143520475,0.8280663381955576,0,0.20446398378615954,0.17389004201537708
+104,1,0.20189096483240096,1.95,1.3849288448641865,0.0006997708793471168,0.03668797307862355,0.8177725167705703,0,0.2745295618146146,0.17359713368851704
+104,2,0.24788011158860318,2.0,1.3847967955126472,0.0006998248646921974,0.03668435470763799,0.8286651671764336,0,0.37813844649215617,0.15541577663913578
+104,3,0.27009426779200435,2.0,1.3847863801916684,0.0007000326374438286,0.036347562937117245,0.8286637474115665,0,0.4651666399491456,0.1467587060411538
+104,4,0.30032840595570365,2.0,1.3821473267238724,0.0007032343542576424,0.03665456293597552,0.8282896399052246,0,0.5365397179421288,0.15237506259617375
+104,5,0.3428195389435111,2.0,1.3822719360012081,0.0007023087638739767,0.036722599795780866,0.8283070985838947,0,0.6372910279142544,0.1263437592593644
+104,6,0.3028491437121845,2.0,1.3150418809480193,0.0006484713349742253,0.03517685644654096,0.8185179867547188,0,0.6494365699392312,0.14358171912164025
+104,7,0.3660627307500783,1.95,1.3256384653848508,0.0006556151088128792,0.03531304291886955,0.8087563914106501,0,0.7073524978604044,0.14373910535305517
+104,8,0.4054183337153793,1.95,1.3281076743155893,0.000657202394659721,0.034673257516513185,0.8091385018238861,0,0.8038161852416177,0.11297286539577409
+104,9,0.36212538540346906,2.0,1.2426605876727956,0.0008365990244713603,0.036208498977056955,0.8075756717987652,0,0.8075108482018449,0.13040348707577007
+104,10,0.4055808024877393,2.0,1.2440371336161353,0.0008356939347974129,0.03608552315193546,0.8077892115698606,0,0.8439409137876095,0.16001478990898493
+104,11,0.4510194324107704,2.0,1.2428682802848192,0.0008378469051976022,0.035721253456745164,0.8076083323731738,0,0.9156040385188976,0.14925939001070457
+104,12,0.4524311455629004,2.0,1.2455949551976575,0.000827083998344216,0.035540972181114926,0.8080283009097303,0,0.9484152635375915,0.17688346715954603
+104,13,0.49519961158283826,2.0,1.244348266586746,0.000829337602896767,0.03557874866153527,0.8078355417821047,0,1.0,0.18399870527612747
+104,14,0.4514737614361071,2.0,1.2465257677614348,0.0008188490308153219,0.03583102349077129,0.8081700924824426,0,0.9907509397269937,0.18391128515103225
+104,15,0.5009351856388647,2.0,1.2453192635057615,0.0008214601917115171,0.03610772061466091,0.8079837873621876,0,1.0,0.20311728546288255
+104,16,0.5074750017416341,2.0,1.382403965924393,0.0007047794698034523,0.03663339858563601,0.8283265770108902,0,1.0,0.19158333913878012
+104,17,0.48871990107555807,2.0,1.2485280121518065,0.0007932012963789909,0.035253410946394545,0.8084723685918078,0,1.0,0.22906633691852682
+104,18,0.5061238640778253,2.0,1.380490756993317,0.0007062869645812435,0.03650709301370922,0.8280547738802962,0,1.0,0.22041288025941766
+104,19,0.4890804970003091,2.0,1.3807793308041654,0.0007048565177374558,0.03665807682637859,0.8280954498912901,0,1.0,0.2302683233343634
+104,20,0.4970924177857805,2.0,1.3802339134108146,0.0007053319523790627,0.03669456673273102,0.8280179293974879,0,1.0,0.2569747259526015
+104,21,0.48151284782565035,2.0,1.3796019934030235,0.0007057948717676919,0.036390893441074455,0.8279280545545916,0,1.0,0.27170949275216777
+104,22,0.5090586412849568,2.0,1.3792117259165628,0.0007069385866092929,0.036565475625519005,0.8278727746451005,0,1.0,0.2968621376165228
+104,23,0.49764483655314584,2.0,1.378523878068333,0.0007074907102933585,0.03673166121136987,0.8277748920282034,1,1.0,0.3254827885104861
+104,24,0.49597626050904053,2.0,1.3203924598373349,0.0006935124022644841,0.03579163738715573,0.8193247766610581,1,1.0,0.2865875350301351
+104,25,0.5053349306363741,2.0,1.3306459946904319,0.0006893739823141454,0.035807253288866865,0.8208364407589982,1,1.0,0.28444976878791356
+104,26,0.557175563612596,2.0,1.3342118726778263,0.0007014580362546786,0.03548739113539044,0.8213637992328026,1,1.0,0.35725187870865305
+104,27,0.5296141291521215,2.0,1.3303921321427215,0.000700246135280454,0.03538606231461457,0.8208023019847017,1,1.0,0.3653804305070714
+104,28,0.5308135940801736,1.95,1.3329475225872307,0.0007124406671115783,0.03562943875970537,0.8099018275468699,1,1.0,0.3693786469339119
+104,29,0.563432062427283,2.0,1.3330207860454943,0.0007240945658815883,0.036342523117456484,0.8211956174727678,1,1.0,0.4114402080909434
+104,30,0.5260742417994323,2.0,1.3802032900686516,0.000705896534118928,0.03642510584409238,0.828013729260813,1,1.0,0.386914139331441
+104,31,0.587353093893263,1.95,1.3384469351626513,0.0007124382218894177,0.036066176880729856,0.8107470783971678,1,1.0,0.4578436463108765
+104,32,0.5351822815068553,1.95,1.3802107644086612,0.0007044848750945859,0.036552946304944135,0.8170697802328186,1,1.0,0.4172742716895176
+104,33,0.5490922367046425,1.9,1.3799909074662307,0.0007063549807561846,0.03670812887024864,0.8055583650376934,1,1.0,0.4303074556821414
+104,34,0.5489396757849461,1.95,1.380494476367502,0.0007046967005365979,0.03643144023530107,0.8171122452342393,1,1.0,0.4297989192831535
+104,35,0.5724784452795504,2.0,1.3808929606028642,0.0007029789601550956,0.03641140285723665,0.8281110903595569,1,1.0,0.44159481759850133
+104,36,0.6042283954342892,2.0,1.3800759298501404,0.0007032823589359287,0.03641454720786363,0.827994846900175,1,1.0,0.5140946514476306
+104,37,0.600425790774976,2.0,1.3820313170619194,0.000702213237828896,0.03648194304047785,0.8282728492160757,1,1.0,0.5347526359165865
+104,38,0.5788418202470715,2.0,1.3809719783621566,0.0007024410666557743,0.03671920961375028,0.8281221845787534,1,1.0,0.5294727341569051
+104,39,0.6327477704258536,1.95,1.3811829372009576,0.0007010268577221657,0.03653348598586011,0.8172140098743726,1,1.0,0.6091592347528452
+104,40,0.5792851819324246,1.95,1.3804553165105549,0.0006989840648628464,0.036494641162184385,0.8171046856803115,0,1.0,0.5642839397747486
+104,41,0.5940871640495433,1.9,1.2548458956141069,0.0006460046204240563,0.03355204961955775,0.7851842812387861,0,1.0,0.5802905468318108
+104,42,0.5743171745921316,2.0,1.2474616608396025,0.000642909953064679,0.03337284893011258,0.8082606167185187,0,1.0,0.5810572486404387
+104,43,0.5952064579935004,2.0,1.2645921575396124,0.0006598718087392527,0.03396857057132509,0.8109066142637457,0,1.0,0.5840215266450011
+104,44,0.6155326237579686,2.0,1.2603785099770408,0.0006581179156103169,0.03376285235092352,0.8102591199914301,0,1.0,0.5851087458598951
+104,45,0.6000870997332275,2.0,1.277820159438913,0.0006548217882981651,0.03399075415870505,0.8129250843442395,0,1.0,0.6002903324440916
+104,46,0.5883865170832496,2.0,1.3508914034266704,0.0006840282857348155,0.036019482138535494,0.82379294419187,0,1.0,0.6279550569441652
+104,47,0.6275753257304599,2.0,1.3491938007484126,0.000684354853963021,0.03557679924196315,0.8235464828092809,0,1.0,0.6252510857681998
+104,48,0.6141503083534545,2.0,1.3472816139959938,0.000681951720288894,0.03544273354116459,0.8232677370407109,0,1.0,0.6471676945115149
+104,49,0.5963265723848177,2.0,1.3494432950625825,0.0006863882548906987,0.03561596795738454,0.823583326697916,0,1.0,0.654421907949392
+105,0,0.19384757625401355,2.0,1.3764086890098925,0.0007015879329027757,0.036256465816983705,0.827471448537145,1,0.15921542428944147,0.26720468846078993
+105,1,0.2069106050518019,1.95,1.3761794855625133,0.0007018228459845185,0.03651147985534525,0.8164656699263392,1,0.20385260059522675,0.2845652160457039
+105,2,0.2655159257459864,2.0,1.3853624583651811,0.0006995379656815333,0.03669313151312904,0.8287453831725202,1,0.26461679733561544,0.36556402270580085
+105,3,0.24592975156286292,2.0,1.385337279381672,0.0006995744664609878,0.036467634455324374,0.8287418199396409,1,0.28813612906749353,0.36891766645288504
+105,4,0.3097664900632748,2.0,1.3853334843075604,0.0006996611711845922,0.03668636050470311,0.8287413059204518,1,0.32325529340597914,0.434881242336277
+105,5,0.2827088861853737,2.0,1.3841026174674471,0.0006994176223547451,0.03668299205372236,0.8285664701471696,1,0.3696387536901894,0.4161779490309931
+105,6,0.365634116843982,1.95,1.3838748009814614,0.0006990991281736372,0.03632755367238989,0.8176151895313797,1,0.42728324720868166,0.482402726535031
+105,7,0.3275102741773088,1.95,1.3832339935197309,0.0006984284959620069,0.036647773099831714,0.8175194124025353,1,0.4640554405464324,0.4396269931957863
+105,8,0.3506470415935262,1.9,1.3826946374975417,0.0006982243667776541,0.03656614295914318,0.8059789686123718,1,0.486228900692103,0.45385160438895006
+105,9,0.4132095838135402,1.9,1.3825183470542666,0.0006978236398280698,0.0365370975494699,0.8059512740350566,1,0.5257755569687261,0.5096645367534993
+105,10,0.4518241216439828,1.9,1.3830651804557692,0.0006979338261184504,0.03666156985825143,0.8060368155440215,1,0.5739007458854838,0.5742127442992976
+105,11,0.4384725019780462,1.9,1.3833252122587818,0.0006981047058834495,0.036364660652247985,0.8060775194852173,1,0.6049904985892601,0.5882543418078072
+105,12,0.44879811467101827,1.95,1.3781970117028859,0.0006968630943247926,0.036434080528343085,0.8167663176224008,1,0.614986417492433,0.6093451589134834
+105,13,0.48672802796936354,2.0,1.331307055169643,0.0007265106780168958,0.0358730636541871,0.8209445563716634,1,0.6392588048028407,0.636748353494091
+105,14,0.502047029029787,2.0,1.3329614853023724,0.000736031154337412,0.03612271562056818,0.8211904154644479,1,0.6619188951495567,0.6575982365665478
+105,15,0.5179964113728432,2.0,1.332562039506977,0.0007450644461183828,0.0364679454164167,0.8211344081330864,1,0.6934290137409888,0.6687493529214923
+105,16,0.5139360411422044,2.0,1.3315893441653408,0.0007530618874302075,0.0365109846889136,0.8209938517889912,1,0.7151101691476127,0.692973244943864
+105,17,0.5752954274637567,2.0,1.3350061796047075,0.0007450341114783178,0.03632613414158299,0.8214930949540451,1,0.7394448785150602,0.7650582535257753
+105,18,0.554931096443819,2.0,1.345135300607944,0.0007367792117906982,0.03623137177926685,0.8229712122515512,1,0.7526970829981461,0.7795075441485353
+105,19,0.5649177874541839,1.95,1.3475320233418044,0.0007301924514491887,0.03613235232701639,0.8121425438728881,1,0.7662267587002581,0.7947569465802686
+105,20,0.633010059541854,2.0,1.3480756765291466,0.0007248878140471341,0.03627521088992701,0.8233957293402219,1,0.8192354482026577,0.8510529342026362
+105,21,0.608872653260018,2.0,1.374557741865281,0.0006922435354362332,0.03649327002145687,0.8272043712881872,1,0.8398657997107318,0.8430877779190844
+105,22,0.6250061955572195,1.95,1.3757785822393844,0.000692721407365281,0.036419257627841053,0.8164028587503529,1,0.8523207819985793,0.8802596091926258
+105,23,0.6963203541716301,2.0,1.3761144261345746,0.0006930671589284991,0.036158207055202715,0.8274270014241345,1,0.9014499811268739,0.9524678724029347
+105,24,0.6801788097911446,2.0,1.3762224357602602,0.0006935437573594926,0.03612640960131993,0.8274425598403117,1,0.9211945993592847,0.9723365668247692
+105,25,0.6773449864111107,2.0,1.3764454100026489,0.0006944921488655628,0.0363333445530889,0.8274746648692891,1,0.9599097627870973,0.9446036043209061
+105,26,0.6882882317274355,2.0,1.3749548690139606,0.0006929327002988794,0.036364030942416574,0.8272613251579459,1,0.9989665966144715,0.9290053102721563
+105,27,0.6787292946970211,2.0,1.3732094737323763,0.0006913338103864916,0.03648711567676193,0.8270113081579131,1,1.0,0.895764315656737
+105,28,0.6914074970400839,2.0,1.3712607537424666,0.0006896623809031717,0.03641094785833998,0.8267318607152659,1,1.0,0.9046916568002795
+105,29,0.7399943041530284,2.0,1.3714122032036726,0.0006903903984888319,0.03624483684207343,0.8267537627662759,1,1.0,0.9666476805100943
+105,30,0.7379638092780815,2.0,1.371537449875192,0.0006915603887244947,0.03605678070426325,0.8267720364930271,1,1.0,0.9932126975936048
+105,31,0.6975410692932451,2.0,1.37595842354474,0.0006932055104026904,0.036242307135467694,0.8274047639481914,1,1.0,0.9584702309774836
+105,32,0.7090411799438101,1.95,1.3741896143769823,0.0006917315854269072,0.03636037929467885,0.8161642728029646,1,1.0,0.9634705998127
+105,33,0.75,2.0,1.3739809389998439,0.0006921553067127825,0.0363559953596246,0.8271218838514311,1,1.0,1.0
+105,34,0.74,2.0,1.3743286230706966,0.0006932880934636122,0.036451794073285436,0.8271719178683861,1,1.0,1.0
+105,35,0.72,2.0,1.378127320433392,0.000694738141777868,0.03649620090595002,0.8277147129071166,1,1.0,1.0
+105,36,0.75,1.95,1.3780400249240194,0.0006952662421565904,0.03630018001163638,0.8167423439390756,1,1.0,1.0
+105,37,0.7162863975793561,1.95,1.3776961426276275,0.0006960292570863317,0.03643980703896874,0.8166910964520804,1,1.0,0.9876213252645202
+105,38,0.74,1.9,1.377352694158002,0.0006969054953486226,0.03653623545012687,0.8051418327469475,1,1.0,1.0
+105,39,0.7006008533021472,1.9,1.3804167661610174,0.0006973127179772821,0.03630344608426754,0.8056222284136183,1,1.0,0.9686695110071571
+105,40,0.75,1.8499999999999999,1.3793130852834767,0.0006960666055398913,0.03645722810720846,0.7934265969790206,1,1.0,1.0
+105,41,0.72,1.8499999999999999,1.378960073329147,0.0006967104236946252,0.036477881104865564,0.7933689431210096,1,1.0,1.0
+105,42,0.72,1.7999999999999998,1.3786290390830969,0.0006975325454855058,0.03654000367167579,0.780746874121316,1,1.0,1.0
+105,43,0.7002915235873053,1.8499999999999999,1.3777743973360859,0.0006982329132073647,0.036521806634774515,0.7931750016391674,1,1.0,0.967638411957684
+105,44,0.6940756286508734,1.9,1.3769925740725633,0.0006966453624207745,0.036414399149017854,0.8050852462103963,1,1.0,0.9469187621695776
+105,45,0.6829079284736727,1.95,1.376029331670849,0.0006951568183334483,0.0361162173415092,0.8164411703747428,1,1.0,0.9096930949122422
+105,46,0.7156713371136967,2.0,1.3749136912071172,0.0006936473520875498,0.03627844999160109,0.8272556450219459,1,1.0,0.9189044570456557
+105,47,0.7296218682997329,2.0,1.378681089966058,0.0006951381486703155,0.03653415905831288,0.8277937818532103,1,1.0,0.9654062276657762
+105,48,0.7330331383744755,2.0,1.3811791832146827,0.000696554165933436,0.036452224380428076,0.8281499996362689,1,1.0,0.9767771279149181
+105,49,0.6959383961738375,2.0,1.38282560684652,0.000698065485400239,0.036380778413058416,0.8283846177901607,1,1.0,0.9531279872461247
+106,0,0.16192600342252308,1.95,1.3755993155047226,0.0007001805045928,0.03622029246957462,0.8163782233930578,1,0.13837808062352963,0.22191590391037075
+106,1,0.18829178419775647,1.9,1.3751614744691696,0.0006997294277971966,0.036448518258054674,0.8047987130519364,1,0.17890105145405777,0.2557712120537779
+106,2,0.17264061882795195,1.9,1.3746625684035276,0.0006992275342483349,0.03636973124869886,0.8047201663749377,1,0.19079044900953918,0.25441479741378764
+106,3,0.17338170708598777,1.95,1.374526020018978,0.0006997910232035825,0.03651472941375984,0.8162171597402779,1,0.2374977169396802,0.22794206770038555
+106,4,0.2255562036214796,2.0,1.3853363957596732,0.0006995483383868731,0.03671733459888933,0.8287416871115227,1,0.26657288979204774,0.263090159015535
+106,5,0.21649615302602201,2.0,1.3852049232373522,0.0006994338318345936,0.03671327442910657,0.8287229940477521,1,0.2854356500402064,0.27440631003313165
+106,6,0.259374339054986,2.0,1.3851452696592053,0.0006994274879085288,0.036341184592592515,0.8287145247806526,1,0.3093117543500322,0.31883212438324376
+106,7,0.310682219935129,2.0,1.3849508186846142,0.0006992663043596158,0.036678182808185716,0.8286868755654833,1,0.366771534482468,0.37991202047380607
+106,8,0.3477214832204148,2.0,1.3849825436803598,0.0006993703367681686,0.03670454552828934,0.8286914088928587,1,0.4183175028258086,0.4346482736336378
+106,9,0.3288339905614297,2.0,1.3825207045172077,0.0006982274352875391,0.03648841847033613,0.8283413135106472,1,0.439861564276562,0.44296454950268305
+106,10,0.3336154990826725,2.0,1.3821844288610352,0.0006981938003172055,0.0365692215810706,0.8282934829616755,1,0.45695714958684397,0.43610879749311626
+106,11,0.37167176064441526,2.0,1.3817943617309214,0.0006981967351759927,0.03665583522066039,0.8282380000231464,1,0.4864148673407718,0.45701937902702194
+106,12,0.3878627639964618,2.0,1.3830026086930272,0.0006983775914050839,0.03644102834963634,0.8284098682670146,1,0.5045618176524596,0.4867934564515933
+106,13,0.3855446437962527,2.0,1.3838641650354306,0.0006986305590806057,0.03660115500457167,0.8285323731078675,1,0.5293439106090533,0.5126902651754378
+106,14,0.4249572652162794,2.0,1.3834339854983222,0.0006984610045465208,0.036650759598422074,0.8284712021882803,1,0.5562650989214566,0.5415040854923227
+106,15,0.4616937089601138,2.0,1.3840892410060754,0.000698664235888915,0.036367424598417034,0.8285643560615863,1,0.5886404784575436,0.5874583919236546
+106,16,0.4307864108577042,2.0,1.384654360388158,0.0006993187603897402,0.03663765244216209,0.8286447996774936,1,0.6259599883305599,0.5680080517516009
+106,17,0.4848605011938023,1.95,1.3788962176064676,0.0006968814684862612,0.03654758155566077,0.8168709424700779,1,0.6483548850869583,0.61839515719673
+106,18,0.47513258398850344,1.95,1.3670016777652023,0.0007122876107206985,0.03621731976835866,0.8150895382912047,1,0.6657557338091418,0.6294343015494892
+106,19,0.5465235346115593,2.0,1.3679228450341103,0.0007088995897331806,0.036454630569854304,0.8262587193585944,1,0.7233309736930198,0.6906371504478379
+106,20,0.5166300468378748,2.0,1.3727074874611276,0.0007061437797364794,0.03654581975672826,0.826943719288674,1,0.7561864801980864,0.6805181825288007
+106,21,0.5244826749950224,1.95,1.370976240375311,0.0007062849089781348,0.03653790691864126,0.8156860237692924,2,0.7919281110703408,0.6590381018896205
+106,22,0.5912884652149482,2.0,1.3855884129155718,0.0007005550646739292,0.036775375527692715,0.8287777383862991,2,0.8254444037501497,0.7037023457162939
+106,23,0.647810507215198,2.0,1.3757594209971742,0.0007056864961541253,0.036636507711246505,0.8273799084724617,2,0.8694114500468213,0.7334864239882314
+106,24,0.6157440805650265,2.0,1.3737098813221433,0.0007058009182859013,0.03658187901360655,0.8270870245962028,2,0.8973572843336035,0.7560038894386168
+106,25,0.6687717637591566,1.95,1.3749484119830933,0.0007032642058365072,0.03650257427080275,0.8162815546261316,2,0.9441905391733584,0.8036518269660436
+106,26,0.6174538702493442,1.95,1.3810059465489384,0.0007025365643470608,0.03641900785202716,0.8171880214391366,2,0.9801043177788155,0.7513738104593931
+106,27,0.6615292054225165,1.9,1.374921009617443,0.0007076503822300571,0.03646352877937799,0.8047634228782593,2,1.0,0.7717640180750549
+106,28,0.6920479231112249,1.9,1.375430637830918,0.000704998473074364,0.03652529157744158,0.8048426497732246,2,1.0,0.8068264103707493
+106,29,0.6274045145215794,1.9,1.3807378510753043,0.0007012868663725331,0.03662546071400481,0.805673748205622,2,1.0,0.7580150484052648
+106,30,0.6911179535745806,1.8499999999999999,1.375182749719707,0.000708690462937638,0.03655481235367507,0.7927529591853906,2,1.0,0.8037265119152683
+106,31,0.7289972940958799,1.8499999999999999,1.380273052940238,0.0007001032400562472,0.036662116887607794,0.7935852146247844,2,1.0,0.8299909803195996
+106,32,0.6840064373149464,1.8499999999999999,1.3791439818397184,0.0007004789769017254,0.03643887800913163,0.7934003259310674,2,1.0,0.8466881243831546
+106,33,0.7213301872300739,1.7999999999999998,1.3817014200121949,0.0006999985952305454,0.03655070322284932,0.7812731971057777,2,1.0,0.9044339574335795
+106,34,0.7590040133610904,1.7999999999999998,1.3816375317193887,0.0007016691891704155,0.03645044034872365,0.7812628503140189,2,1.0,0.9300133778703012
+106,35,0.7157302638441438,1.7999999999999998,1.380412336899522,0.0007021401799338341,0.03667676294400714,0.781053564227542,2,1.0,0.9524342128138126
+106,36,0.7229656083069156,1.7499999999999998,1.3826162839701222,0.0007012756763063927,0.036557587842996696,0.7683501937729423,2,1.0,0.9765520276897186
+106,37,0.75,1.7999999999999998,1.3839551758879058,0.0007006096136792886,0.03660764191423689,0.7816582954651006,2,1.0,1.0
+106,38,0.7799999999999999,1.7999999999999998,1.3840596326779082,0.0007019850479718108,0.036726129054597725,0.7816765918940985,2,1.0,1.0
+106,39,0.73,1.7999999999999998,1.382927626638446,0.0007023998188312201,0.03632212212772732,0.7814834857306903,2,1.0,1.0
+106,40,0.75,1.7499999999999998,1.3840150037287915,0.0007013427615237032,0.03671459205922463,0.7685990797606951,2,1.0,1.0
+106,41,0.75,1.7499999999999998,1.3838369189508235,0.0007028653134928138,0.03674581010468971,0.7685679466973204,2,1.0,1.0
+106,42,0.73,1.7999999999999998,1.3833261629537659,0.0007041824278002118,0.03665164095364601,0.7815521436502562,2,1.0,1.0
+106,43,0.7799999999999999,1.7499999999999998,1.3841680189645034,0.0007027380855330947,0.03677307336884541,0.7686267893839103,2,1.0,1.0
+106,44,0.7799999999999999,1.7499999999999998,1.3832043689888704,0.0007035455052164764,0.036772599998454024,0.7684556571816646,2,1.0,1.0
+106,45,0.75,1.7999999999999998,1.381969385908084,0.000704206749520253,0.03651111879422356,0.7813204231145887,2,1.0,1.0
+106,46,0.73,1.7499999999999998,1.3815699419335323,0.0007059575622421672,0.036739250632093434,0.7681655725470266,2,1.0,1.0
+106,47,0.6893645554454197,1.6999999999999997,1.3822025948086554,0.0007041592382016546,0.03663663716107091,0.7546578893397159,2,1.0,0.9645485181513992
+106,48,0.7799999999999999,1.6499999999999997,1.3836962467323088,0.000703036388675933,0.03664962141969724,0.7407945468524103,2,1.0,1.0
+106,49,0.7799999999999999,1.6499999999999997,1.3824481719733839,0.0007037594623142102,0.03642377260027636,0.7405550998903472,2,1.0,1.0
+107,0,0.1768995372758449,1.6999999999999997,1.379688458038102,0.000698086251204485,0.03622259751194001,0.7541898488486761,0,0.1913197923662559,0.2012387344311418
+107,1,0.1466257238539594,1.6499999999999997,1.3794171862848825,0.0006979978438866909,0.036543476032881536,0.7399701050796812,0,0.203081386276712,0.2179772311442487
+107,2,0.24030791968145582,1.5999999999999996,1.3768008988252423,0.000701141310394714,0.036487808045164244,0.7247612089073552,0,0.32079970075430175,0.20662679793245045
+107,3,0.2690136461152644,1.5999999999999996,1.3767419589828354,0.0007029591384739254,0.036545628850376384,0.7247501765584773,0,0.40858818676892245,0.21859457135898466
+107,4,0.2955535922933849,1.5999999999999996,1.336453107093337,0.0007259670399229281,0.03592022988401284,0.7166500705479807,1,0.47546346702835796,0.21789401827347238
+107,5,0.2860660128665373,1.5999999999999996,1.3850972369011778,0.0007015578408399894,0.03664688895733492,0.7264132581554718,1,0.49432989497204505,0.22778018292573082
+107,6,0.29454997976249286,1.6499999999999997,1.3848159426890367,0.0007017265938775148,0.036728189916956366,0.7410089879029474,1,0.5046141935294829,0.24234767450233224
+107,7,0.338085090933325,1.6999999999999997,1.3845271490150477,0.0007018583484497964,0.036303924201033996,0.7550871732344157,1,0.5343476725934642,0.28115340631979774
+107,8,0.320092112634664,1.6999999999999997,1.3849626113751135,0.0007012718723396214,0.03668331866582432,0.7551674777090164,1,0.5828481460225204,0.2565095140855194
+107,9,0.3336825581852721,1.7499999999999998,1.3852798468872392,0.0007008743861365965,0.036711599202978076,0.7688237949291552,1,0.5949595252603523,0.25232916027043717
+107,10,0.3396872094880929,1.7999999999999998,1.3849654433010559,0.0007009419272434076,0.036474817543991137,0.7818307806980702,1,0.6518166376629062,0.22986851474310122
+107,11,0.392289626045077,1.8499999999999999,1.3770357447427042,0.0007096065241936748,0.03665760123258424,0.7930575338454775,1,0.6893496964361261,0.2551658249020886
+107,12,0.3748876674832007,1.8499999999999999,1.3786982401443637,0.0007073419385350481,0.03674745192796726,0.7933295025502939,1,0.7431544247035384,0.22541965867261765
+107,13,0.45032912400212927,1.9,1.3801202908266923,0.0007056548898606532,0.03649149786675584,0.8055784107819082,1,0.7906165368852487,0.28027503082676597
+107,14,0.4642402638526117,1.9,1.3799759030277299,0.0007072777050286612,0.03622638473034327,0.8055563038830474,1,0.8240540360889476,0.31539549805677564
+107,15,0.4542027384959622,1.95,1.3230502640939958,0.0007103913722995037,0.03562579492670261,0.808372726646862,1,0.8339113718937354,0.33546063246156005
+107,16,0.457264950416331,2.0,1.3263334408825338,0.0007216741452835329,0.035890136901219526,0.8202108681692947,1,0.880472410285761,0.3169199543400887
+107,17,0.4638317925070816,2.0,1.338057588518573,0.0007149642178309897,0.03609988373682474,0.821931319454185,1,0.925287396956676,0.27905611241470396
+107,18,0.4833456979273809,2.0,1.3464345691140467,0.0007097172156264034,0.036366455185876535,0.8231525439075975,1,0.9482840674322266,0.2801069031816341
+107,19,0.4834168388755221,2.0,1.3474379269128698,0.0007183168880476073,0.036317486715508114,0.8233010599015728,1,0.9976585751896626,0.2478446959988568
+107,20,0.47535032554179185,2.0,1.3542531400510849,0.0007133334155510945,0.036215711589142746,0.8242888856163089,1,1.0,0.21783441847263935
+107,21,0.4824933505687135,2.0,1.3594715154383588,0.0007091400997316544,0.03588525602294352,0.8250422088171739,1,0.9908323911133401,0.22053464707792475
+107,22,0.5303075107054601,2.0,1.3600202540079693,0.0007156721067957867,0.0362783587420057,0.8251232888426159,1,1.0,0.26769170235153367
+107,23,0.5308538562216897,2.0,1.3575186052009118,0.0007155781726041288,0.03642984623403874,0.8247619930106659,1,1.0,0.3028461874056322
+107,24,0.5586469730683635,2.0,1.3603447546110279,0.0007112342717135259,0.03655340206106706,0.8251688272206431,1,1.0,0.36215657689454495
+107,25,0.5099586550573302,2.0,1.3576981128823356,0.000711045620610808,0.03643616092626177,0.8247866256528125,1,1.0,0.3331955168577671
+107,26,0.5188912386553682,1.95,1.362470980926324,0.0007072590534426071,0.0363248202332338,0.8144041828996496,1,1.0,0.3296374621845608
+107,27,0.5679109155418263,2.0,1.3624549458480986,0.0007137001744010904,0.036325513448246735,0.8254737561056313,1,1.0,0.39303638513942063
+107,28,0.583579472601257,2.0,1.3605096978173237,0.0007133459996371556,0.03619115870099663,0.8251932307462685,1,1.0,0.44526490867085633
+107,29,0.5545959189198917,2.0,1.3815735400992362,0.0007008902298382517,0.036665025794900094,0.8282073501634556,1,0.9950846461705637,0.4552068681722206
+107,30,0.5584548538562111,1.95,1.3814844961353514,0.0006997291557829864,0.03636866768183674,0.817258663397975,1,1.0,0.46151617952070334
+107,31,0.5377511944308859,2.0,1.381029274872128,0.0006986671718963158,0.036647720850543644,0.8281292654886816,1,1.0,0.4258373147696196
+107,32,0.5952018139167334,1.95,1.3814404267270153,0.0006999404763526138,0.036672692008847665,0.8172521447965675,1,1.0,0.4840060463891113
+107,33,0.5696157010750786,1.95,1.3830681018705477,0.0006997285373145124,0.036638554874442654,0.8174950510712873,1,1.0,0.49871900358359555
+107,34,0.6010524165776526,1.9,1.3827190628531028,0.0006988866616701486,0.036605797290566136,0.8059829952765215,1,1.0,0.5368413885921752
+107,35,0.5609649136691723,1.9,1.3818869440197281,0.0006988377322601606,0.03666491928469641,0.8058528247454633,1,1.0,0.5032163788972409
+107,36,0.5764328971426005,1.8499999999999999,1.3821512934527556,0.0007000556063944954,0.036526047986352755,0.7938926996822055,1,1.0,0.5214429904753349
+107,37,0.6054850400157494,1.9,1.3816308231659247,0.0006989834357991532,0.0365300461291296,0.8058127960606448,1,1.0,0.5516168000524978
+107,38,0.6170903464812982,1.9,1.380992612041271,0.0006991341140967552,0.03660731281165416,0.8057129574022277,1,1.0,0.5903011549376606
+107,39,0.6244103587137001,1.95,1.380051852147977,0.0006992356319044397,0.03641610605881892,0.8170444575981384,1,1.0,0.6147011957123335
+107,40,0.5893172165972008,2.0,1.366767344541623,0.0006973397358653242,0.03610744904406621,0.8260894571757443,1,1.0,0.5977240553240027
+107,41,0.5830836961051423,1.95,1.3804337452085294,0.0006992639526867604,0.036601811403953216,0.8171015455998498,2,1.0,0.5769456536838078
+107,42,0.6366489626228887,2.0,1.36759179180657,0.000703956454372351,0.03638506127968924,0.8262097702600004,2,1.0,0.6221632087429622
+107,43,0.6489055398981609,2.0,1.374922055330592,0.000711379738736754,0.03657658873635165,0.8272619082455017,2,1.0,0.663018466327203
+107,44,0.6866225907566568,2.0,1.373982796395495,0.0007135366045769138,0.036722492355212064,0.8271282640276771,2,1.0,0.688741969188856
+107,45,0.692852999998458,2.0,1.3725370441678937,0.0007149291861380956,0.03647993124006477,0.8269218409501917,2,1.0,0.7095099999948599
+107,46,0.7042537214373789,2.0,1.370835065504885,0.0007162011967696547,0.03633150170944648,0.8266784791296616,1,1.0,0.7475124047912631
+107,47,0.6239344596974726,2.0,1.3619863485562456,0.0006960793992657235,0.036103997556021915,0.8254011577351529,1,1.0,0.713114865658242
+107,48,0.6860461183987142,1.95,1.359047673677427,0.0006951491832438855,0.03578789194720362,0.8138825242435592,1,1.0,0.7868203946623806
+107,49,0.6888390064460774,1.95,1.3591335554850947,0.0006922481929330062,0.036296635020494045,0.8138946542515573,1,1.0,0.8294633548202579
+108,0,0.19650695555344844,2.0,1.3781409269643778,0.0006994363087362641,0.0362382247114416,0.8277179931614724,1,0.1557367211523343,0.280707556975049
+108,1,0.21074156513925277,1.95,1.378126280399919,0.0006996537795928107,0.03651916155938621,0.8167565671409266,1,0.19086637868323852,0.3146500455531912
+108,2,0.1985136368076151,2.0,1.3777040797750215,0.0006991689263987,0.036462600597577804,0.8276556131533394,1,0.21024598108457604,0.31471748124594895
+108,3,0.22007122336230991,2.0,1.3849433694012698,0.0006994632024105438,0.03648213105819241,0.8286858739313527,1,0.2514814889775233,0.3315954259043354
+108,4,0.2869381519902795,2.0,1.3848922713847753,0.0006995559001962859,0.036669916844124184,0.8286786459698122,1,0.311124685229418,0.3749609263283743
+108,5,0.2556825380785733,2.0,1.384811250409176,0.0006997013805446228,0.03671644445243708,0.8286671843974102,1,0.36076535297451573,0.33792132296255656
+108,6,0.30510739464340936,1.95,1.385334944696704,0.0006997725219992949,0.03636211550446699,0.8178330267025103,1,0.3881163875754249,0.3662027987107981
+108,7,0.3245318752133381,1.95,1.385133022858336,0.0006995414790284994,0.03673481291324536,0.817802873167371,1,0.4188732967634002,0.3899418550265935
+108,8,0.303608476503582,2.0,1.3852296666656145,0.000700602693986808,0.03664480183626853,0.828726837944641,1,0.46733208731767945,0.3555854719217007
+108,9,0.38378723996020797,1.95,1.3853262614379656,0.0007002834621692506,0.03636210737755259,0.8178318852909738,2,0.5342010699079618,0.40035603999007763
+108,10,0.41901227448328776,1.95,1.385886773119545,0.0006998864400671449,0.03676104848728797,0.8179152588096795,2,0.5856778343520747,0.449137135808193
+108,11,0.4076144668754995,1.95,1.3860123933033204,0.0007000305239225921,0.0366471038645037,0.8179340095758079,2,0.5962665705667624,0.46369279549598175
+108,12,0.5005573330781043,2.0,1.3858654832562545,0.0006998824595693347,0.0365081455747143,0.8288168616688742,2,0.6723783642577271,0.5053532912500449
+108,13,0.5297898848675844,2.0,1.3849030325265228,0.000701525929918745,0.03670756057359435,0.8286807330943718,2,0.7340773937150801,0.5205297579385079
+108,14,0.45052280930168437,2.0,1.3845378996351874,0.0007019631700564492,0.036743928524727534,0.8286290135093253,2,0.7620346860834571,0.48569644956100505
+108,15,0.495514242772644,1.95,1.3846200231063692,0.0007012423221949597,0.03640826966191128,0.8177269300784151,2,0.7935880125961001,0.4935967924473462
+108,16,0.514640909665348,1.95,1.3853680537259447,0.0007009297301162492,0.036780610226631934,0.8178383041047672,2,0.817260824976677,0.5257885989155907
+108,17,0.5331212078551912,2.0,1.3592947698090023,0.000702745063562798,0.03644928621767695,0.8250148481150983,2,0.846215569640353,0.5487832666635
+108,18,0.5025473945907513,2.0,1.3613008347034097,0.0006995763490198005,0.03642337231541133,0.8253033518609548,2,0.8766069315050696,0.5063487399624114
+108,19,0.5745779631921714,1.95,1.365844761849811,0.0006975308058266405,0.036357716876809915,0.814910654463075,2,0.8937101667134657,0.5569796550226167
+108,20,0.6037276638386226,1.95,1.3625842822571064,0.0006967014856593794,0.03584168173583649,0.8144181164401018,2,0.9458363004730355,0.5846438121646949
+108,21,0.6310946414224026,1.95,1.3595088696983681,0.0006956977614605015,0.03591233640283127,0.8139525412178692,2,0.9804374528119586,0.6297322009920635
+108,22,0.6283331601555415,1.95,1.3602470500319042,0.0007205314221961701,0.03650668869377561,0.8140718184745416,2,1.0,0.6611105338518047
+108,23,0.6350076355642391,2.0,1.3622672469753005,0.0007156503371680351,0.03649391469073644,0.8254472752467644,2,1.0,0.6833587852141304
+108,24,0.6655318529858794,2.0,1.363906078360478,0.0007110114401742047,0.036433574178620934,0.8256819434577443,2,1.0,0.7184395099529309
+108,25,0.680524064454395,2.0,1.3636408304232095,0.0007159278201638984,0.03648390682220286,0.825645178168376,2,1.0,0.7684135481813162
+108,26,0.714864424297699,2.0,1.362864872219219,0.0007203549110815087,0.036583337354281785,0.8255347219547301,1,1.0,0.7828814143256635
+108,27,0.7029853087968578,2.0,1.3493945226595925,0.0006762901134837124,0.03604215553700969,0.8235733057497236,1,1.0,0.8432843626561923
+108,28,0.6725560601332081,2.0,1.3851334353205775,0.0007011318943916472,0.03660071800356453,0.8287133288012611,1,1.0,0.8418535337773605
+108,29,0.6599382420267743,1.95,1.384450430657299,0.0007013446920187061,0.03676124064940343,0.8177016815496448,1,1.0,0.833127473422581
+108,30,0.7039100598092985,2.0,1.3849399507401556,0.0007006980608379534,0.03669147166625043,0.828685739213873,1,1.0,0.8797001993643283
+108,31,0.6654176703007372,2.0,1.3853391047601702,0.0007001990508229517,0.03661635212571056,0.8287422563060463,1,1.0,0.8513922343357906
+108,32,0.6776971330321717,1.95,1.385589755124097,0.0006999203473874971,0.03676139840486214,0.8178710298773391,1,1.0,0.8589904434405725
+108,33,0.7026655936950461,2.0,1.3849522764430469,0.0006997947970638998,0.03668304792451293,0.8286872325706413,1,1.0,0.8755519789834871
+108,34,0.6638601536820536,2.0,1.3851776387346686,0.0006995274559126638,0.03655307231403949,0.8287191477968524,2,1.0,0.846200512273512
+108,35,0.7412847467392772,1.95,1.3853260569543102,0.0007004788600622792,0.03676923746144011,0.8178319130482924,2,1.0,0.8709491557975907
+108,36,0.70116727669481,1.95,1.3852108744914295,0.0007012684378592227,0.03674633458204351,0.817814987489849,2,1.0,0.9038909223160335
+108,37,0.758448680713766,1.9,1.3852704805369476,0.0007005280959026984,0.036693649419097724,0.8063821728072804,2,1.0,0.9281622690458868
+108,38,0.7647352225980196,1.9,1.3849459251643639,0.0007011127045437235,0.036766994109781896,0.806331677535816,2,1.0,0.9491174086600653
+108,39,0.7713359631055067,1.95,1.3843857354284133,0.0007016285608456691,0.03649565214691781,0.8176921221492697,2,1.0,0.9711198770183557
+108,40,0.7799999999999999,2.0,1.3836045442157254,0.0007020466836192923,0.03669161837768523,0.8284964573429144,2,1.0,1.0
+108,41,0.7799999999999999,2.0,1.3825694215341586,0.0007023932778209502,0.03672596414692296,0.8283494252267022,2,1.0,1.0
+108,42,0.6903784983096404,2.0,1.3811740074856191,0.0007027175782384867,0.036569380685805335,0.828151017360477,2,1.0,0.9679283276988014
+108,43,0.75,1.95,1.3826242556615607,0.0007015588165007684,0.03654113039663672,0.8174293675614184,2,1.0,1.0
+108,44,0.7799999999999999,1.95,1.3825465091729767,0.0007035352296059497,0.03637939733052675,0.8174183544408377,2,1.0,1.0
+108,45,0.73,1.95,1.3811134061209933,0.0007040072851203021,0.03671138129924019,0.8172045138632135,1,1.0,1.0
+108,46,0.7020617721458924,1.9,1.3847301591795318,0.000699583911675751,0.03661219725239699,0.8062975035587305,1,1.0,0.9735392404863078
+108,47,0.7191820557642516,1.8499999999999999,1.3851658190199618,0.0006994825481064234,0.03661221116221229,0.7943853335115457,1,1.0,0.9972735192141722
+108,48,0.72,1.9,1.3843323610365335,0.0006991552058722127,0.03658102272239018,0.806235233198125,1,1.0,1.0
+108,49,0.7021266023203135,1.95,1.3833562187145478,0.0006988147371547468,0.036683857913086274,0.8175377606544164,1,1.0,0.9737553410677117
+109,0,0.1392288015030874,2.0,1.3817174348526664,0.000697500977677339,0.03620123896879646,0.8282268581765659,0,0.1360713821847223,0.21600082876399493
+109,1,0.20164782351070887,1.95,1.3820573672436822,0.0006974449908092328,0.036571616892374016,0.8173435223769324,0,0.22733816462010092,0.20237519220889494
+109,2,0.18964699027174248,1.95,1.3704485768624544,0.0007029893138526231,0.036498741391119124,0.8156056891229959,0,0.2706372734841968,0.2046402695935459
+109,3,0.234028508554692,2.0,1.373098950285801,0.0007015455505930514,0.03655927183973488,0.8269984177522129,0,0.33175238838104926,0.20442517734090768
+109,4,0.2844939057303817,2.0,1.3726996573481793,0.000701455718725566,0.03643143352771726,0.8269412569283133,0,0.44620751257840235,0.1867030023300691
+109,5,0.243847178399915,2.0,1.385242936335823,0.0007004368877765831,0.03673964549795673,0.8287286743474938,0,0.4618843661509444,0.19697810646512406
+109,6,0.32801423943332225,1.95,1.385285636563426,0.0007008378603194667,0.0364554267020192,0.8178259979973894,0,0.5561924881579492,0.18512414723380854
+109,7,0.28126590114904343,1.95,1.3854195798439062,0.000700503703163699,0.03675862661476338,0.8178458533450612,0,0.5572168404759831,0.19459721652883394
+109,8,0.28192466081243256,1.9,1.3854152040532948,0.0007008721758872487,0.036660473772255245,0.8064048749156418,0,0.565515764788069,0.18572784965734987
+109,9,0.31915176948416263,1.95,1.3853169566395476,0.0007012159516134611,0.03660802208325557,0.8178307768825184,0,0.5913349924828495,0.20872590830340937
+109,10,0.37599466049154695,1.95,1.3602912680617536,0.0007187926498253294,0.03653905263201925,0.8140779848303591,0,0.6776521915623991,0.21644594622195779
+109,11,0.40522708666740465,2.0,1.005191250084232,0.0008555972822177193,0.03247362953323178,0.7679732873452144,0,0.7520861125822299,0.21464213878170896
+109,12,0.44942689974502775,2.0,1.0181926635783582,0.0009072807735935399,0.03297297238936179,0.7703002274468236,0,0.8497239347211683,0.1984577528552015
+109,13,0.41081503222540805,2.0,1.240846695030954,0.0008061309158372269,0.03494716733844591,0.8072841606170673,0,0.8769059397471631,0.20017552108847586
+109,14,0.47076570843661386,1.95,1.373085334668915,0.0006911878034131067,0.036231179474301135,0.8159983653647298,0,0.9378249783893483,0.1854523902695819
+109,15,0.4667690787533067,2.0,1.2331083278364987,0.0008256293233068538,0.035979346170621575,0.8060834852074387,0,0.9636946357119568,0.20430408156174634
+109,16,0.5029657984764123,2.0,1.3732237437760888,0.0006918482972573469,0.03622977890842498,0.8270134968795427,0,1.0,0.176552661588041
+109,17,0.4580665369969515,2.0,1.2270500271182356,0.0008354482333842306,0.035466000901139334,0.8051378192634371,0,1.0,0.1935551233231715
+109,18,0.48412240694135605,2.0,1.22575462351754,0.0008402051361894669,0.03537810077819079,0.8049359956792744,0,1.0,0.21374135647118667
+109,19,0.4905978420853952,2.0,1.3723624915356918,0.0006918404420759687,0.03636871613454225,0.826890247309934,0,1.0,0.23532614028465054
+109,20,0.4701755447453664,2.0,1.3709861145109412,0.0006911859121564791,0.03622116733276914,0.8266929526919631,0,0.9977248374511588,0.23695203254967612
+109,21,0.47543344302089935,1.95,1.3732341188313675,0.000694569337073237,0.03602707959138947,0.816021718860757,0,1.0,0.2514448100696644
+109,22,0.5231706544470016,2.0,1.3744730429289134,0.0006977950764943085,0.03651793427419307,0.8271938514422102,0,1.0,0.27723551482333864
+109,23,0.4857159217456397,2.0,1.3749909018663509,0.000696503619488847,0.0364825112071413,0.8272674947351654,0,1.0,0.2857197391521324
+109,24,0.5214813929346025,1.95,1.376075946634288,0.0006993375642885262,0.036535300627684814,0.8164494092771045,0,1.0,0.27160464311534144
+109,25,0.5088433580499278,1.95,1.375786463120898,0.0006978518897396858,0.03643483682862597,0.8164055780021287,0,1.0,0.29614452683309245
+109,26,0.49413780098631205,2.0,1.37462221041236,0.0006976285194068824,0.03623014033929144,0.8272151254135817,0,1.0,0.3137926699543734
+109,27,0.5311943939984113,2.0,1.3757270651742084,0.0007004281604577264,0.03628565534175843,0.8273737852341728,0,1.0,0.3039813133280377
+109,28,0.5166851833124451,2.0,1.37557918432426,0.0006988006651029209,0.0363384773431458,0.8273521979773728,0,1.0,0.3222839443748167
+109,29,0.5393986523885868,2.0,1.374479816766863,0.0006987782346154691,0.03654278607650156,0.8271951007928428,0,1.0,0.3313288412952892
+109,30,0.5375411062582867,2.0,1.374127775488019,0.0006971802838409765,0.036400242272170015,0.8271443160922766,0,1.0,0.29180368752762204
+109,31,0.5155634639702119,2.0,1.3769332677705535,0.0006969166373915443,0.03639041971764785,0.8275449925049108,0,1.0,0.31854487990070623
+109,32,0.544357028792736,1.95,1.3758937064135726,0.0006967126404992644,0.03642676988921376,0.81642131039128,0,1.0,0.31452342930911986
+109,33,0.5264508654411417,1.95,1.3778698970393963,0.0006964025404584404,0.03646187211680355,0.8167172189826722,0,1.0,0.354836218137139
+109,34,0.53631170522546,2.0,1.3767581802798952,0.0006960950716135101,0.036511933690750696,0.8275197690617316,0,1.0,0.38770568408486655
+109,35,0.5447070758347482,2.0,1.3757926248845107,0.0006957856349987874,0.036487424886406966,0.8273818225933776,0,1.0,0.41569025278249394
+109,36,0.5655193507536735,2.0,1.3192879078482473,0.0006677037700935312,0.03480844996336931,0.8191535637843962,0,1.0,0.38506450251224505
+109,37,0.5645494287176996,2.0,1.3827332212481052,0.0006979754277536607,0.03645193505264016,0.8283714579203451,0,1.0,0.38183142905899864
+109,38,0.5353280798039648,2.0,1.3836287453249163,0.0006983455291393256,0.036674494728373475,0.8284988442725694,0,1.0,0.3844269326798826
+109,39,0.5391325646594574,1.95,1.383134481597203,0.0006980929134764554,0.03646016098307445,0.8175044664715881,0,1.0,0.3971085488648579
+109,40,0.5599665549892298,2.0,1.3824488985962038,0.0006977292515837755,0.03658610243629029,0.8283309613615221,0,1.0,0.39988851663076574
+109,41,0.5253677687496854,2.0,1.382153316828267,0.0006973846316606736,0.036670293486462495,0.8282888278874987,0,1.0,0.4178925624989512
+109,42,0.5519178458208978,1.95,1.2996806475678562,0.0006498587046008344,0.034199019634227265,0.8047074909341879,0,1.0,0.43972615273632576
+109,43,0.5770759046232079,1.95,1.2955286646828774,0.0006497809989624154,0.03452490473167084,0.8040541428428849,0,1.0,0.42358634874402634
+109,44,0.5671891480707073,1.95,1.2924871512288698,0.0006472368157677417,0.0344795085653062,0.8035737027658137,0,1.0,0.390630493569024
+109,45,0.5618929385951059,2.0,1.3783816905519233,0.0006951681956597325,0.036519196792076505,0.8277511064759092,0,1.0,0.3729764619836863
+109,46,0.5506035379622543,2.0,1.3791632691356435,0.0006963196118722775,0.036351424497762706,0.8278628429578493,0,1.0,0.3686784598741806
+109,47,0.5355871948150084,2.0,1.3785875383238162,0.0006963420305797775,0.03654622096745034,0.8277807887924578,0,1.0,0.3852906493833613
+109,48,0.5564904551391414,2.0,1.3779346687553096,0.0006955663323475666,0.036442398460320775,0.8276874746871896,0,1.0,0.35496818379713785
+109,49,0.5436772531516758,2.0,1.3783330355379289,0.0006966229834944602,0.03648807786065335,0.8277445840295603,0,1.0,0.345590843838919
+110,0,0.11205845435051534,2.0,1.38387903972546,0.0007007398816533051,0.036249837800382004,0.8285350856137689,0,0.1163560696383305,0.21838675498394378
+110,1,0.199461690407866,1.95,1.384105233805542,0.0007003971835711329,0.03667067183485308,0.8176499363720631,0,0.21997886300843245,0.20490048401497668
+110,2,0.20952262830212529,1.95,1.3714141018053971,0.0006982467162667465,0.03643077916927027,0.8157494274742734,0,0.278212065575681,0.19412600690617618
+110,3,0.24587966103862977,2.0,1.3844092593798192,0.0007002881775348953,0.03639407787032853,0.8286102696899792,0,0.352039742767232,0.21687921310578986
+110,4,0.29222094060992354,2.0,1.3778731000735602,0.0006993898288550023,0.03650687934864597,0.8276797841905068,0,0.4586505647523635,0.19586904902992708
+110,5,0.33675740323114745,2.0,1.3788704200878148,0.0007023590281238915,0.03663772671631209,0.8278228278465467,0,0.5717949209098583,0.19346478289068048
+110,6,0.3691169587677347,2.0,1.3795540275810296,0.0007011283563935886,0.03657778131147355,0.8279198914238052,0,0.6714363467933588,0.16847473350130396
+110,7,0.36282944904165937,2.0,1.3213986507850497,0.0006670200284806056,0.03520513137720936,0.8194658384355384,0,0.7155952145161474,0.1886378774506679
+110,8,0.4320887207104723,2.0,1.3199116248241123,0.0006655869995543828,0.034817994890123584,0.8192453165381933,0,0.8218023412603641,0.17789261402108875
+110,9,0.41815855616502984,2.0,1.2159344065580515,0.0008480024468571987,0.035974124910119185,0.8033919282735762,0,0.8458336403330068,0.19941700010609015
+110,10,0.43699235823584676,2.0,1.2142030280515952,0.0008487798154207808,0.03585406361923014,0.8031185534323723,0,0.8834915937870779,0.21198573573671856
+110,11,0.5021112043166062,2.0,1.361953240429618,0.0006944833598304027,0.03597021277746389,0.8253959263024022,0,0.9853322462302309,0.1932610194150458
+110,12,0.4861128802275002,2.0,1.2030012726532489,0.0008512535995024695,0.035508301272460574,0.8013421131703639,0,1.0,0.22037626742500047
+110,13,0.4963786812108561,2.0,1.362562572427754,0.0006963323472790347,0.03621110309879906,0.8254842570213596,0,1.0,0.25459560403618686
+110,14,0.4789377082894767,2.0,1.3611348950423874,0.0006961770326117033,0.03614464809667284,0.8252784454465038,0,1.0,0.2631256942982555
+110,15,0.5018703055475288,2.0,1.3622525368706224,0.0007005064069998039,0.03626639695564045,0.8254407916618293,0,1.0,0.2729010184917626
+110,16,0.48884890760177435,2.0,1.3608043997476789,0.0007005015577771913,0.03605342655707601,0.8252320323121549,0,1.0,0.2961630253392477
+110,17,0.4906159085456305,2.0,1.361497575387506,0.0007048169042815122,0.03617591235384198,0.8253332266147956,0,1.0,0.30205302848543486
+110,18,0.49685226854160536,2.0,1.3617321431938714,0.0007086973303026072,0.03630923253580537,0.8253681575461714,0,1.0,0.32284089513868447
+110,19,0.5357523970649632,2.0,1.361609545495043,0.0007121878736480536,0.03637744333340072,0.8253514924539099,0,1.0,0.31917465688321073
+110,20,0.49877219093605296,2.0,1.367454875621004,0.0007092513002538672,0.03650755421107051,0.8261916306467748,0,1.0,0.32924063645350987
+110,21,0.542623993188718,1.95,1.367150849197015,0.0007120266206279494,0.036404279406415996,0.8151119414765375,0,1.0,0.3087466439623933
+110,22,0.5179575499606048,1.95,1.3667370713382327,0.0007093510066897159,0.03641403731033295,0.8150487685095518,0,1.0,0.32652516653534946
+110,23,0.5052783008716097,1.9,1.365586485519739,0.0007099355974137362,0.03632143871183151,0.803293338081635,0,1.0,0.35092766957203236
+110,24,0.5113040351334381,1.95,1.3647008760839416,0.0007130024268992679,0.036465138686278674,0.8147427290812549,0,1.0,0.37101345044479356
+110,25,0.510889465644054,2.0,1.364627893965503,0.0007151474818732535,0.03651218574003366,0.8257870009223457,0,1.0,0.3696315521468468
+110,26,0.5377979229388344,2.0,1.3644291162152036,0.0007168556107064533,0.03651110762987202,0.8257588938763183,0,1.0,0.3926597431294479
+110,27,0.5585058918650534,2.0,1.363358130101123,0.0007178732656351289,0.03644162705716381,0.8256050384518101,0,1.0,0.3616863062168446
+110,28,0.5557678520308381,2.0,1.3635169479853166,0.0007144813244634695,0.0363815741733372,0.8256269274303877,0,1.0,0.3525595067694603
+110,29,0.5482623946484911,2.0,1.3633694886030987,0.0007114400920673143,0.03636377664100503,0.8256048213501084,0,1.0,0.3275413154949702
+110,30,0.5290270667600018,2.0,1.3629992407370826,0.0007087127779087661,0.03617065576474644,0.8255507205237556,0,1.0,0.3634235558666723
+110,31,0.5543892757557722,2.0,1.3620688630655584,0.0007095529941279312,0.03626650973905667,0.8254169321460373,0,1.0,0.34796425251924046
+110,32,0.5082450237220082,2.0,1.3615539931323868,0.0007068815537847937,0.03631516353322637,0.8253419548012773,0,1.0,0.3608167457400273
+110,33,0.5136112724371373,1.95,1.3611216999597504,0.0007089454677043951,0.036411634486725714,0.8142006627807491,0,1.0,0.37870424145712456
+110,34,0.5127823143428629,2.0,1.3599884340963713,0.0007111116939757019,0.036263707565113795,0.8251173812265638,0,0.9983974356200984,0.37807780031607835
+110,35,0.5576906394712768,2.0,1.3599334621133385,0.0007124478726752608,0.0363228693640656,0.8251098343308576,0,1.0,0.39230213157092253
+110,36,0.563537121404621,2.0,1.3661450003227924,0.0007096854947514312,0.036295067920560475,0.8260035782682252,0,1.0,0.3784570713487362
+110,37,0.512024944361042,2.0,1.3657540224007378,0.0007073738288807279,0.03628811238455796,0.8259467144637429,0,1.0,0.373416481203473
+110,38,0.51488847700918,1.95,1.3651863615069557,0.0007085850945898191,0.03637660453133045,0.8148146625306939,0,1.0,0.38296159003059965
+110,39,0.540699325963742,2.0,1.364087121192413,0.0007099435338326623,0.03630841958436014,0.8257076922721729,0,1.0,0.40233108654580657
+110,40,0.5640515181164899,2.0,1.2683839688601786,0.0006265735368508677,0.03372906429863977,0.8114771663398388,0,1.0,0.38017172705496616
+110,41,0.5555737414348941,2.0,1.3664382826997803,0.0007020811231480667,0.03633676614461505,0.8260435398515141,0,1.0,0.38524580478298037
+110,42,0.5213119974958271,2.0,1.3714341536771926,0.0007008966575248427,0.036356674247047735,0.8267599163541777,0,1.0,0.4043733249860902
+110,43,0.5682184286919644,2.0,1.2348692769387322,0.0005987640426969977,0.03222390419753919,0.8062877385740913,0,1.0,0.3940614289732144
+110,44,0.5604201004809152,2.0,1.374618700939592,0.0006981583618582399,0.03645673661960495,0.8272147752644804,0,1.0,0.36806700160305045
+110,45,0.5505836901000725,2.0,1.3739004878911438,0.0006968763472986313,0.03643555287606938,0.827111729944326,0,1.0,0.36861230033357467
+110,46,0.5395190751859227,2.0,1.3773630258244154,0.0006970301345007447,0.036501528289976715,0.8276063488682072,0,1.0,0.3983969172864088
+110,47,0.5238114316067394,2.0,1.3771295882558081,0.0006978047644657264,0.03651427439256802,0.8275732619036569,0,1.0,0.4127047720224646
+110,48,0.5678234414895609,2.0,1.1997031464240082,0.0005690087005659447,0.03148843795204971,0.8007264962107629,0,1.0,0.39274480496520275
+110,49,0.5442757086962193,2.0,1.3773063219124224,0.0006956599484519948,0.03627656462768651,0.8275978675444869,1,1.0,0.41425236232073104
+111,0,0.07067556367648387,1.95,1.383879351520286,0.000703269776495978,0.03629993556491375,0.817617111961637,0,0.18016672577642234,0.1953629112197164
+111,1,0.21429267167886268,1.9,1.3857124864587114,0.0006997683316472736,0.036719534947498536,0.8064509366507973,0,0.26942736025675285,0.1884057585872052
+111,2,0.23488254143749898,1.9,1.3816307190953272,0.0007010172072050739,0.036616731991178805,0.8058134162582139,0,0.3579687832642058,0.13898342710605546
+111,3,0.22572468725457093,1.9,1.3817031444462082,0.000702034955668651,0.03650053090245674,0.8058250674889397,0,0.3906271678586801,0.16491273370366294
+111,4,0.29375379779388894,1.95,1.3817115100763693,0.0007012210033732634,0.03669879095490334,0.8172930103348591,0,0.49141132907796553,0.15729755387567573
+111,5,0.2749488494267508,1.95,1.3794475190181532,0.0006974197841234637,0.03647343749482955,0.8169535597885758,0,0.5129747028577002,0.16586322761223563
+111,6,0.32919306122200165,2.0,1.3788880088142177,0.000697319969654456,0.036496682270091965,0.8278238983475527,0,0.5870690699676233,0.18121811078317449
+111,7,0.3750347473481508,2.0,1.3805612860346852,0.0006973668473759821,0.03655721382746896,0.828062275586406,0,0.6885064204505286,0.16544059722646454
+111,8,0.4042102191297967,2.0,1.2785412219435335,0.0006563215798124705,0.034190843304221015,0.8130351732314677,0,0.7903998923134852,0.12683420734800877
+111,9,0.39411642193098156,2.0,1.27561952883129,0.0006549943331307298,0.03416602349673415,0.8125902391477338,0,0.8176580449025825,0.15684401323316172
+111,10,0.40237866555801793,2.0,1.1907278055862753,0.0008500684132974854,0.03547583317763605,0.7993806553847532,0,0.8369045076303304,0.15872287501961893
+111,11,0.4170504891488155,2.0,1.1883861227990926,0.0008495894990014175,0.03523593127340295,0.7990046997424503,0,0.8631253534258521,0.17266782592824886
+111,12,0.46678655264565333,2.0,1.1858694322478183,0.0008487041037748393,0.0353488518715338,0.7985999398643725,0,0.9280679613817262,0.18519789364320943
+111,13,0.4913990236251769,2.0,1.1920793391662015,0.0008346463492242878,0.03483897401036797,0.7995923722263208,0,0.995282586164472,0.17761996386462695
+111,14,0.4779784887293397,2.0,1.1967393897340302,0.0008213605118180533,0.0349828700443899,0.8003338307342901,0,1.0,0.19326162909779873
+111,15,0.4586376329900381,2.0,1.1939874049559058,0.0008208691152233044,0.03526417792696145,0.7998935438896054,0,0.9976464931307215,0.19859678579249823
+111,16,0.48083948285291855,2.0,1.1947358018056393,0.0008353467469946744,0.03538873987417389,0.8000179408652041,0,1.0,0.20279827617639512
+111,17,0.5085634462703246,2.0,1.3588744256091356,0.0006932409626269944,0.036055538538164136,0.8249514117950691,0,1.0,0.19521148756774842
+111,18,0.4984400024766267,2.0,1.182987642190953,0.000832775078545121,0.03496689399693738,0.7981309065746506,0,1.0,0.19480000825542232
+111,19,0.4580569026618627,2.0,1.187844057042401,0.0008194906897326705,0.03459405389874357,0.7989079611215678,0,1.0,0.19352300887287577
+111,20,0.4949926725239534,2.0,1.1888880288831207,0.00083455190608464,0.035034084678345304,0.7990804632967021,0,1.0,0.18330890841317798
+111,21,0.47903962487131363,2.0,1.1925447791439137,0.0008216970445238076,0.03526114096205845,0.7996627969988819,0,1.0,0.19679874957104532
+111,22,0.5031025730120972,2.0,1.1900350629489007,0.0008214478068583075,0.03521334759769702,0.7992603525512866,0,1.0,0.21034191004032368
+111,23,0.5097769450399172,2.0,1.361160102097395,0.000693473273530669,0.036161880463825444,0.8252813004012046,0,1.0,0.1992564834663905
+111,24,0.4830742245969091,2.0,1.1940323264649724,0.0008015537828370082,0.034450319066486754,0.7998945508245409,0,1.0,0.21024741532303
+111,25,0.5068046899369676,1.95,1.3628971417878606,0.0006935179656304305,0.036128984522084295,0.8144644356336701,0,1.0,0.22268229978989174
+111,26,0.49316782566312306,1.95,1.363408184618148,0.0006968456200895066,0.036149866190129595,0.8145426533609343,0,1.0,0.24389275221041012
+111,27,0.5158609371661289,2.0,1.3684922955984653,0.0006960941114204494,0.03626020481783023,0.8263367765365801,0,1.0,0.25286979055376285
+111,28,0.5144896439068317,2.0,1.369575496580269,0.0006989571620984992,0.036322565666887165,0.8264929867385986,0,1.0,0.24829881302277215
+111,29,0.515673398791724,2.0,1.3698502283706344,0.0007014054933320899,0.0364165304773187,0.8265330824492917,0,1.0,0.2189113293057466
+111,30,0.5063213721704698,2.0,1.3688600169561207,0.0007017859269757964,0.03639996649367859,0.8263911730053987,0,1.0,0.22107124056823257
+111,31,0.4700692963484026,2.0,1.3688982600675255,0.0007042368560555136,0.03635956894061308,0.8263973628753347,0,1.0,0.23356432116134193
+111,32,0.5149143662071309,1.95,1.3684482798764626,0.0007023113040521674,0.03631702260227458,0.8153044642313053,0,1.0,0.21638122069043636
+111,33,0.4637969336577837,1.95,1.3670506371019284,0.0007028594319834683,0.03639469900468415,0.8150940753265425,0,0.9922395129075582,0.22300376164920124
+111,34,0.460981233489852,1.9,1.3665030229092379,0.0007009016916007581,0.03626060207596377,0.8034352694049698,0,0.9761264465995515,0.23510218283343776
+111,35,0.5098219800139775,1.95,1.3653889657696052,0.0006991769924665554,0.03615799722015821,0.8148423930239176,0,1.0,0.23273993337992496
+111,36,0.510773439274624,1.95,1.3659403099387937,0.0007014805762054814,0.036212352493691174,0.814926257093154,0,1.0,0.23591146424874654
+111,37,0.5066354134563871,2.0,1.3657735297675075,0.0007035436471669332,0.03624828315102158,0.8259484175674318,0,1.0,0.22211804485462344
+111,38,0.5044522379731594,2.0,1.3659038031029114,0.0007052207201779535,0.036331368760364365,0.8259676267006468,0,1.0,0.21484079324386454
+111,39,0.49394162167796546,2.0,1.3654551856744108,0.0007067778365329033,0.03622283345449377,0.8259035784963953,0,1.0,0.24647207225988474
+111,40,0.47803449013183147,2.0,1.3704523662630967,0.0007050550740135774,0.03635132328204698,0.826620443797608,0,1.0,0.2601149671061048
+111,41,0.4809872754788081,2.0,1.370047095771275,0.0007034371024007274,0.036429121345277274,0.8265618892169155,0,1.0,0.26995758492936023
+111,42,0.517021173696873,2.0,1.3695840494227027,0.000701995827889667,0.03644439413997906,0.8264950847296137,0,1.0,0.2567372456562431
+111,43,0.47697963620168093,2.0,1.3691887546959827,0.0007031706146429008,0.03646528316496205,0.8264387287881128,0,1.0,0.25659878733893643
+111,44,0.5170579763634842,1.95,1.3687379710298955,0.0007018229147790862,0.036332499516009246,0.815347935777755,0,1.0,0.22352658787828028
+111,45,0.46779347508847513,1.95,1.3677824954925648,0.0007027677685332634,0.036387972965835444,0.8152043248407267,0,1.0,0.22597825029491697
+111,46,0.5108953638349842,1.9,1.367290869393407,0.000701369019556549,0.03637912273894229,0.8035598094591118,0,1.0,0.20298454611661412
+111,47,0.49963248741488653,1.9,1.3662458392271242,0.000702242807035903,0.03619575839040109,0.8033950736409017,0,1.0,0.1987749580496218
+111,48,0.4850428636359331,2.0,1.1802994551991723,0.0008030530095365797,0.034826890001708244,0.7976878511934475,0,1.0,0.21680954545311001
+111,49,0.48913457891818185,2.0,1.3673376670574822,0.000701036758047523,0.036440059883384515,0.8261724395749448,0,1.0,0.23044859639393944
+112,0,0.17465225814908888,2.0,1.3847083346725557,0.0007022773367103941,0.03631214007722181,0.8286533036507094,0,0.16810785150017388,0.2246970584967311
+112,1,0.22310197962501993,1.95,1.3845865897726215,0.0007024737509269106,0.036715011046743316,0.8177223138959547,0,0.28288449117343917,0.19982727718548085
+112,2,0.2292074123992184,1.95,1.38169105845363,0.0007028967572466983,0.03667330447713732,0.8172904568438436,0,0.3361035171187124,0.18255335183911145
+112,3,0.23768071684622433,2.0,1.3813616336718444,0.0007030955491822489,0.03646517673537953,0.8281778256655031,0,0.3814459184747452,0.21700783152108752
+112,4,0.21852658221676172,2.0,1.377483132466363,0.000698300319392149,0.03647429003865862,0.8276238467147085,0,0.37699279186593865,0.22576488490128752
+112,5,0.30470820759863093,2.0,1.377491417098383,0.0006974720969405148,0.03644543855805605,0.8276247923071622,0,0.4853038592708494,0.20195554630097054
+112,6,0.2648503840624301,2.0,1.339687640571345,0.0007218743564981753,0.03594836801092491,0.8221717896648506,0,0.5054826277176048,0.20885777658462726
+112,7,0.3022354289946478,1.95,1.347326916825689,0.0007167023180776191,0.035969100644746885,0.8121071325160032,0,0.5511201732164096,0.2059578656936131
+112,8,0.3653302819500833,1.95,1.3481237573222713,0.0007127109124361537,0.03621537206328735,0.812227473994787,0,0.6456459061601558,0.19023973162006985
+112,9,0.3875784999549668,2.0,1.2458099706929295,0.0006344120016804739,0.033209529832018185,0.8080018784111718,0,0.7132292793545234,0.20762262737719148
+112,10,0.4430974162572709,2.0,0.9961855238321227,0.0008755838776620938,0.033466656790024134,0.7663718400814361,0,0.8322112382172863,0.20070973656785462
+112,11,0.4773170057738165,2.0,1.3206289884149365,0.0007173672075887555,0.03581691330840168,0.8193668491006189,0,0.9368918225668827,0.17520092249021144
+112,12,0.49296315142111913,2.0,1.1764185697097553,0.0007986272423631824,0.034272758615521565,0.7970593909548346,0,1.0,0.1765438380703971
+112,13,0.4612205777977054,2.0,1.178881568085138,0.0007881365759147638,0.034240383332775404,0.7974541146372801,0,1.0,0.204068592659018
+112,14,0.4628585260460518,1.95,1.3214927852580411,0.0007157073261277164,0.03539711788869225,0.8081329960671665,0,1.0,0.20952842015350592
+112,15,0.48985351626841633,2.0,1.3194921849066557,0.000713802186839485,0.03518347367926798,0.8191974795683599,0,1.0,0.2328450542280544
+112,16,0.49980627562601676,2.0,1.3327485519335438,0.000708755409476648,0.0355615608782092,0.821151135491519,0,1.0,0.2660209187533891
+112,17,0.5175349284213488,2.0,1.3431314014420859,0.0007051474165347214,0.035942700140693076,0.8226698470502339,0,1.0,0.25844976140449605
+112,18,0.5004895118973288,2.0,1.342630790554785,0.0007073595570549877,0.03625500311085378,0.8225974496894567,0,1.0,0.26829837299109605
+112,19,0.4846794158199653,2.0,1.3515075799929839,0.0007044423328960362,0.03623899938519181,0.8238882934719305,0,1.0,0.28226471939988423
+112,20,0.5265024068754584,2.0,1.3508120585552132,0.0007026103195022402,0.03586872321439376,0.823786821221655,0,1.0,0.28834135625152774
+112,21,0.5141898140307456,2.0,1.3502550887947056,0.0007044698250086847,0.035746431291849616,0.8237064957970579,0,1.0,0.3139660467691521
+112,22,0.5307227707803057,2.0,1.3579965710787323,0.000702246839559357,0.036005568268795876,0.8248272101452215,0,1.0,0.3024092359343524
+112,23,0.49298092540416716,2.0,1.3574007779951587,0.0007036821406696103,0.0360807416597162,0.8247415238860991,0,1.0,0.3099364180138905
+112,24,0.49740042048442834,1.95,1.35675242596874,0.000701971109156642,0.03636486273345528,0.8135366644605156,0,1.0,0.3246680682814277
+112,25,0.5158456720070336,2.0,1.3553508125593665,0.0007002795883265431,0.03597391223269571,0.8244440336253285,0,1.0,0.3194855733567785
+112,26,0.49968296476269436,2.0,1.3628593202992239,0.0006988777714296124,0.036182371343204525,0.8255277356350241,0,1.0,0.33227654920898103
+112,27,0.5437424322192705,2.0,1.3620922562617113,0.0006972942273005202,0.03591172108681542,0.8254167701246486,0,1.0,0.3458081073975684
+112,28,0.5426563168983007,2.0,1.361470504497733,0.0006986057591231965,0.036014220130447035,0.8253275332722719,0,1.0,0.3421877229943355
+112,29,0.5408789739898162,2.0,1.3607615815711194,0.0006996976090612287,0.03605627179393326,0.8252256249079212,0,1.0,0.3362632466327204
+112,30,0.5001432863961146,2.0,1.3600023650087838,0.0007006614792769032,0.03636454647614333,0.825116375532125,0,1.0,0.33381095465371535
+112,31,0.5028178455687667,1.95,1.3593055752298637,0.0006990636314260469,0.03633526732870693,0.8139227731396438,0,1.0,0.34272615189588895
+112,32,0.5096968821188719,2.0,1.3578997557045414,0.0006973779406360906,0.035785061609471695,0.8248118140339744,0,1.0,0.36565627372957266
+112,33,0.5497649641094459,2.0,1.3576497185358105,0.0006957405006060766,0.035876017464538126,0.8247752081188559,0,1.0,0.36588321369815285
+112,34,0.5146211608849911,2.0,1.3567842032195996,0.0006967532427292635,0.0357725393438136,0.8246503806505515,0,0.9997817258595086,0.3823615684706252
+112,35,0.5573937560228346,1.95,1.3558700476108545,0.0006950349076577754,0.03586716449077868,0.8134006697099707,0,1.0,0.3579791867427817
+112,36,0.5519683310691301,1.95,1.3551320675677285,0.0006974776554450975,0.03615006683373672,0.8132893750394916,0,1.0,0.3398944368971001
+112,37,0.5395859892711453,2.0,1.3548285799136024,0.0006996660617451196,0.03593970537752464,0.8243682572585764,0,1.0,0.33195329757048425
+112,38,0.5410754740063985,2.0,1.3547514473789406,0.0007009226886489147,0.03602760864334552,0.8243574532270636,0,1.0,0.3035849133546617
+112,39,0.5143926184402655,2.0,1.3543505921162788,0.0007029174117643195,0.03589206355436397,0.8242999827383025,0,1.0,0.3146420614675517
+112,40,0.5245561636807116,1.95,1.3613764897334755,0.0007011438599060964,0.036012739272456316,0.8142368437121147,0,1.0,0.3485205456023719
+112,41,0.5467396936597819,2.0,1.3667533798871143,0.0006999601238650828,0.03647041336212081,0.8260882038503635,0,1.0,0.3224656455326064
+112,42,0.49799047172236294,2.0,1.3667781527774199,0.0007012727870344757,0.0364206856345367,0.8260921400206308,0,1.0,0.3266349057412097
+112,43,0.5388403305114084,1.95,1.366191312564423,0.0006998614862923531,0.03643997715831988,0.8149636223710597,0,1.0,0.3294677683713612
+112,44,0.5244312686438831,1.95,1.3651351838039212,0.0007009530148657082,0.03599483775772587,0.8148046367935321,0,1.0,0.34810422881294345
+112,45,0.5470801730489688,2.0,1.370244020726425,0.0006999894999378201,0.036369368705539626,0.8265891296844761,0,1.0,0.3569339101632292
+112,46,0.545761933491714,2.0,1.3700154165724423,0.0007007190451535448,0.03616319950919524,0.8265565684001117,0,1.0,0.31920644497237993
+112,47,0.5403400543387792,2.0,1.3696735833077,0.000702041863420328,0.03639378452395843,0.8265079368016303,0,1.0,0.3011335144625973
+112,48,0.4949462456095524,2.0,1.3692418793848025,0.0007031681326885093,0.036409355253401415,0.8264463480301497,0,0.9950410353872615,0.3230994381821593
+112,49,0.5393785040517196,1.95,1.3687877892031175,0.000701822826483715,0.03646754138421505,0.8153554360422535,0,1.0,0.2979283468390652
+113,0,0.18146272286172377,1.95,1.3844862983607402,0.00070260277296999,0.03630934101975723,0.8177074031953833,0,0.21125231273065692,0.1565393258982033
+113,1,0.2035137042293699,1.9,1.3805262192124759,0.0006991452701669677,0.03655310564483106,0.8056399415448965,0,0.2849656047195991,0.1650915411384342
+113,2,0.16982256626150502,1.9,1.380147898912368,0.0006992238494963963,0.03653130041847261,0.805580720317853,0,0.29478678825195526,0.17302616986907637
+113,3,0.20719916974205124,1.8499999999999999,1.3815946885606591,0.0006991945266962709,0.03638997402399128,0.7938013272657194,0,0.32638784486771905,0.18881343931654543
+113,4,0.2561436036411198,1.8499999999999999,1.3812573851718815,0.000698716279442472,0.036644321269620424,0.7937459551217255,0,0.39854402793417637,0.18908664155816418
+113,5,0.28830340459003917,1.8499999999999999,1.3809584064715885,0.0006988226542112843,0.03646774949174301,0.7936970388652721,0,0.4820876899019959,0.18489442876413595
+113,6,0.28945957367835834,1.8499999999999999,1.3763690610664123,0.0006933762027375662,0.03635725576798673,0.7929427686706787,0,0.5246537829559494,0.1986602016532619
+113,7,0.34469243451257525,1.9,1.3758285148023184,0.0006929992464277789,0.036429500678852464,0.8049013685374646,0,0.6018941644460059,0.2131158957805764
+113,8,0.3937757867958901,1.95,0.9273257281957624,0.0007849982281997874,0.03155253445512522,0.7396009890490941,0,0.7195959936226423,0.186457964489444
+113,9,0.408601180717196,1.95,1.2764813973705889,0.0006621413540273462,0.03381063725981469,0.8010397762652904,0,0.7696857235131201,0.20242297103982637
+113,10,0.42963624070902456,2.0,1.0084258109855737,0.0009022825832027767,0.03377156256491639,0.7685657636004322,0,0.8407768561033826,0.17775166089223846
+113,11,0.43087507607574715,2.0,1.1827340252851233,0.0008126983658339848,0.03446602085018095,0.7980835707519968,0,0.8757066099074371,0.20197477370924094
+113,12,0.44288322992263046,2.0,1.3492594757696343,0.0006780987320743225,0.03574226830848361,0.8235542081675311,0,0.8985689847280751,0.21151878677133457
+113,13,0.5066961957894768,2.0,1.3524797935953108,0.0006816099426848469,0.0357288151531618,0.8240226920033341,0,1.0,0.18898731929825566
+113,14,0.49745941617159367,2.0,1.1722902596964875,0.0008105058177742689,0.03458008840443866,0.7963946464714862,0,1.0,0.15819805390531225
+113,15,0.472339604330805,2.0,1.1940205953380858,0.0007974917184380354,0.0349379709326859,0.799891372708696,1,1.0,0.17446534776934997
+113,16,0.47726005075137995,1.95,1.3696610601924126,0.0006905996693691322,0.03615239737382864,0.8154834941372096,0,1.0,0.19086683583793299
+113,17,0.4845501353124436,2.0,1.2376495479894167,0.0007706408825522556,0.03425750259783693,0.8067752063598694,0,1.0,0.2151671177081453
+113,18,0.5076347268246185,2.0,1.3547426325909009,0.0006821071874977848,0.03582746330962,0.8243507281356109,0,1.0,0.2254490894153951
+113,19,0.5066772707758155,2.0,1.353567051483857,0.0006810005498507375,0.03580390294671918,0.824180122352637,0,1.0,0.22225756925271833
+113,20,0.5056328232031209,2.0,1.3523917031014725,0.0006798376056756599,0.03571711309057578,0.8240094036576933,0,1.0,0.218776077343736
+113,21,0.5099831959744311,2.0,1.3511354356596035,0.0006787613707425863,0.03597188836510888,0.8238268358206995,0,1.0,0.19994398658143683
+113,22,0.4964037221300667,2.0,1.2345571010435703,0.0007832140819404869,0.03543975886907652,0.806296598046768,0,1.0,0.1880124071002225
+113,23,0.480379220003912,2.0,1.234145958265472,0.0007767671306050871,0.03488173090342327,0.8062303623810495,0,1.0,0.20126406667970642
+113,24,0.5086185592048775,2.0,1.350478207762849,0.0006785430643304676,0.03565653452229481,0.8237313645767789,0,1.0,0.19539519734959176
+113,25,0.5092044045011405,2.0,1.2267262255710996,0.0007866471240806686,0.034407715461607695,0.8050716963411048,0,1.0,0.19734801500380147
+113,26,0.4833530078041361,2.0,1.2469457026788644,0.0007744887580291821,0.035171856828040304,0.8082214358009139,0,1.0,0.21117669268045353
+113,27,0.4688409815147145,1.95,1.3506775794095363,0.0006785613090595156,0.0359268003378069,0.8126062568936111,0,1.0,0.2294699383823815
+113,28,0.5151872392262578,2.0,1.3485991040569365,0.0006778374333323079,0.03526805852210519,0.8234581513110034,0,1.0,0.217290797420859
+113,29,0.464815112583368,2.0,1.3553349208332597,0.0006804402691869087,0.0354925573509056,0.8244359904442196,0,1.0,0.21605037527789328
+113,30,0.4961856339481209,1.95,1.3542556151740848,0.0006799872899778754,0.03578527290053965,0.8131509346104274,0,1.0,0.25395211316040284
+113,31,0.49829894096011323,1.95,1.3567168112079362,0.0006827184219274217,0.03590897892111451,0.813525420563087,0,1.0,0.260996469867044
+113,32,0.5181021676961713,2.0,1.3591392514367986,0.0006857322390325133,0.03615100435697518,0.824987482840666,0,1.0,0.26034055898723774
+113,33,0.528341492062101,2.0,1.3587188524600047,0.0006849116443479541,0.03615590467142166,0.8249265389999421,0,1.0,0.26113830687366973
+113,34,0.5188198102593757,2.0,1.3637872470975634,0.0006862824008638201,0.03613207777378971,0.8256577200312029,0,1.0,0.22939936753125229
+113,35,0.4747748657507851,2.0,1.3677378298646152,0.0006879224664443519,0.03600358052774388,0.8262261342949635,0,1.0,0.2492495525026169
+113,36,0.5156075383888484,1.95,1.3668666827366804,0.0006875492648602909,0.03609150738854024,0.8150617333588661,0,1.0,0.252025127962828
+113,37,0.5222028950769659,1.95,1.3653942849205745,0.0006864081565502322,0.03607416383553931,0.8148393425499731,0,1.0,0.27400965025655294
+113,38,0.5182483163586629,2.0,1.3642989037657887,0.0006856107491076252,0.03621668465402865,0.8257311659269317,0,1.0,0.26082772119554287
+113,39,0.5058110865477563,2.0,1.363687225083106,0.0006850612659610631,0.03616958846634023,0.8256429701076491,0,1.0,0.28603695515918764
+113,40,0.5265832509328127,2.0,1.3661628477235515,0.0006871087880573615,0.03623212547826066,0.8259996537676372,0,1.0,0.2886108364427087
+113,41,0.5251507433253613,2.0,1.3649806304438215,0.0006861092111399888,0.03590772974393583,0.8258293874654964,0,1.0,0.28383581108453754
+113,42,0.525900951700766,2.0,1.3637114743047583,0.0006850529848580799,0.035833600301532174,0.8256464585327415,0,1.0,0.2863365056692201
+113,43,0.5329035069097214,2.0,1.3623477476023722,0.0006840405721590195,0.035917383527179075,0.8254497651635763,0,1.0,0.2763450230324047
+113,44,0.5239721920290571,2.0,1.366571080908017,0.0006867865635476753,0.0361441264108723,0.8260582263594879,0,1.0,0.2799073067635237
+113,45,0.5222834348478372,2.0,1.3652034975923137,0.0006859723291833305,0.03626816126732951,0.8258614019097119,0,1.0,0.27427811615945724
+113,46,0.48597487311573573,2.0,1.3637505388524676,0.0006850439815136181,0.03622725790801535,0.8256520793820313,0,1.0,0.2865829103857857
+113,47,0.48611697663280323,1.95,1.3629060856219404,0.0006844343553860117,0.035807809768690746,0.8144630418641655,0,0.9965237540598008,0.291691583362943
+113,48,0.5266446619556535,2.0,1.3613300195655165,0.0006834931317695693,0.036030747611083304,0.8253029219842006,0,1.0,0.28881553985217834
+113,49,0.5233375429808713,2.0,1.3605282300118546,0.0006828978328947185,0.035892537850361256,0.8251871196620353,1,1.0,0.27779180993623753
+114,0,0.18936452716017466,2.0,1.377595386032446,0.0007001888875903951,0.036211849504822265,0.8276403993288951,1,0.15566958335038494,0.25698897940006893
+114,1,0.1958919993092137,1.95,1.3774099617078972,0.0007004420586091627,0.036520611236611086,0.8166495708420074,1,0.18125643748714668,0.27796474771451674
+114,2,0.2396786927306615,2.0,1.3770027742703463,0.000699990196888166,0.03646166016926554,0.8275557890889412,1,0.2308249757633244,0.3244956747511059
+114,3,0.2553649352690346,2.0,1.3849215597508724,0.0006992950225354669,0.03649029543022003,0.8286827299369316,1,0.2712403153913196,0.35622936370835595
+114,4,0.23377461449019651,2.0,1.3847078937740263,0.0006990934606778516,0.036662858406042394,0.8286523369086334,1,0.3223257395328903,0.31614772892346793
+114,5,0.2797579192666335,1.95,1.385188156312056,0.000699403160352537,0.03671451478364678,0.8178110467636807,1,0.34665557434483096,0.3369856317623372
+114,6,0.31908115142920895,1.95,1.3849059370997574,0.0006992035782234941,0.036372085195465684,0.8177689339346268,1,0.3876304347933468,0.3800965917062341
+114,7,0.36058373748800265,1.95,1.384870110040269,0.0006991819885078065,0.03671745264544918,0.817763588386503,1,0.4373753760175177,0.4521119569366519
+114,8,0.3419112170691513,1.95,1.383320985406116,0.0006981084718867358,0.03655928263058515,0.8175322941394156,1,0.462934450098635,0.4557914567656576
+114,9,0.3469659791492329,2.0,1.3830053870028598,0.0006978943548149862,0.03647170175420568,0.8284101258139307,1,0.48107702657298373,0.44845056173346465
+114,10,0.4180501151996528,2.0,1.3827361699701792,0.0006977166720858745,0.03658516334922986,0.8283718035706135,1,0.5420361847905464,0.5041188042781142
+114,11,0.39745827539548984,2.0,1.383309097985436,0.0006983378338820571,0.03668490014567101,0.8284534191021244,1,0.5623169417349901,0.5084383290049791
+114,12,0.46230380684283096,1.95,1.3829096025940406,0.0006982011080871628,0.03643428915929346,0.8174709464600366,1,0.6060525247327996,0.5662759898323705
+114,13,0.4671685008789516,1.95,1.3792326939970756,0.0006969470102758935,0.03654594281449792,0.8169212911558779,1,0.6232393386144964,0.5929092181105102
+114,14,0.4911352564681843,2.0,1.3779661799171812,0.0006965043258987422,0.03651217040295764,0.8276922363409612,1,0.64930366821808,0.6380459639365076
+114,15,0.5093520195778658,2.0,1.3751980809424955,0.0007057373931636235,0.03652418501493029,0.8272997363510407,1,0.6707207396829363,0.6702124123489709
+114,16,0.4838309437098498,2.0,1.375039391880646,0.0007084992078741856,0.03664051235210423,0.8272778517608129,1,0.7045337405280677,0.6400581583287422
+114,17,0.5033863277939049,1.95,1.3737385312173844,0.0007089441380443042,0.036613948716705876,0.8161017491294164,1,0.7288219088893735,0.639525214127185
+114,18,0.5125033057592773,2.0,1.373957353384525,0.0007065116081806633,0.03631606271465045,0.8271226169646881,1,0.7321727235797355,0.6654473877579435
+114,19,0.5123830027864501,2.0,1.374340825360044,0.0007039627312584441,0.03636218158280915,0.8271767142983438,1,0.7849505338677164,0.6280092974645449
+114,20,0.5306902952207164,2.0,1.3730260057845034,0.000704324955859187,0.036497246466419726,0.8269887765318786,1,0.8470362488397147,0.6062526522827684
+114,21,0.5806350298848217,2.0,1.3490792267866463,0.0006757430672352026,0.035987855777359426,0.823527329481374,0,0.8786793816048609,0.6305442574762578
+114,22,0.5979635634292796,2.0,1.35200299284602,0.0006849732540520588,0.03603180919914689,0.8239545165027385,0,0.929262007951041,0.6208625341628771
+114,23,0.630489289494501,2.0,1.3498922738094954,0.0006823595651311466,0.03546468054954606,0.823647380712483,0,0.9980250605939809,0.6042642175230287
+114,24,0.6093003624268686,2.0,1.3581252294799078,0.0006839519847175435,0.03565010382963963,0.82484051250252,0,1.0,0.6310012080895617
+114,25,0.6264546962684925,1.95,1.3594512081118513,0.0006867628403297399,0.03580507414804247,0.8139411029352155,0,1.0,0.6215156542283081
+114,26,0.6235296348490909,2.0,1.3566192307902571,0.0006839693509586176,0.036232700897626355,0.8246228264254604,0,1.0,0.6117654494969694
+114,27,0.5887299987336779,2.0,1.3549563941920226,0.0006817632065885388,0.036166708901392085,0.8243815783430379,0,1.0,0.6290999957789265
+114,28,0.6160992452837517,1.95,1.3540201483927625,0.0006828488786476568,0.03607230130504184,0.8131160256617931,0,1.0,0.6536641509458391
+114,29,0.6356298913277104,1.95,1.35446706267838,0.0006857525863393336,0.03552124620455317,0.813184810754746,0,1.0,0.6520996377590347
+114,30,0.6394035247519649,2.0,1.3521330179893347,0.0006828584138211531,0.03559983651450775,0.8239727628276929,0,1.0,0.6646784158398827
+114,31,0.6350954245426961,2.0,1.3503921615086503,0.0006804139053482505,0.035493147423446836,0.823719413798798,0,1.0,0.6503180818089866
+114,32,0.6351740905556973,2.0,1.3476560781130495,0.0006773950303332727,0.03565395414470346,0.8233208885532629,0,1.0,0.6505803018523243
+114,33,0.6199073545620544,2.0,1.3446858970468822,0.0006743626388316776,0.03595337984722754,0.8228875364212891,0,1.0,0.6663578485401813
+114,34,0.6428970632937789,2.0,1.3459767735873522,0.0006775936296007837,0.03597617517269197,0.8230765360608663,0,1.0,0.6763235443125962
+114,35,0.644541237611298,2.0,1.3429455742614436,0.0006742796004511228,0.03546184623701922,0.8226337286698229,0,1.0,0.6818041253709932
+114,36,0.6427642930916366,2.0,1.339663416298662,0.0006709266625761457,0.0349317667568295,0.8221533495480239,0,1.0,0.6758809769721221
+114,37,0.6420030416395046,2.0,1.336146575811916,0.000667322352136427,0.03481718085170888,0.821637487770699,0,1.0,0.6733434721316817
+114,38,0.642461675447012,2.0,1.332388975602052,0.0006637304827679488,0.035261801305587544,0.8210850929787623,0,1.0,0.6415389181567068
+114,39,0.6318229399194453,2.0,1.3430815495637227,0.0006688404517973055,0.03585636184706946,0.8226519805215362,0,1.0,0.639409799731484
+114,40,0.6324911206011314,2.0,1.339307660185995,0.000665661360616984,0.03576931781815751,0.8220997858028815,0,1.0,0.6416370686704379
+114,41,0.619644767209055,2.0,1.3352910640986086,0.0006623682311104799,0.03531230339902181,0.8215106257548209,0,1.0,0.6654825573635168
+114,42,0.6403925150962649,2.0,1.337456127017236,0.0006648416306274637,0.034821313210308215,0.8218285943053147,0,1.0,0.667975050320883
+114,43,0.6421265960368194,2.0,1.3334119044826962,0.0006614155187194752,0.034644156051999615,0.8212346366299917,0,1.0,0.6404219867893979
+114,44,0.5918254286889689,2.0,1.3432990704498984,0.0006683142479708968,0.035402613049994695,0.8226835601358531,0,0.997801742118267,0.6423491061388737
+114,45,0.592599235965631,1.95,1.3451192557095957,0.0006698821710433917,0.03590432105388204,0.811755726674867,0,1.0,0.6419974532187701
+114,46,0.5901200508507612,2.0,1.3448801774782262,0.0006706255172829584,0.03509878521449993,0.8229147605927487,0,0.9970893208695653,0.6376144083431171
+114,47,0.5927424275352049,2.0,1.345814943037517,0.0006725948947224143,0.03554208304802679,0.8230515128089332,0,1.0,0.6424747584506828
+114,48,0.5996789609480149,2.0,1.345098732191981,0.0006737454683626921,0.03509449840818896,0.8229475166479652,0,1.0,0.6655965364933827
+114,49,0.6428134727824969,2.0,1.3438882052030863,0.0006745681214914922,0.03528012609215615,0.822771307890102,0,1.0,0.6760449092749894
+115,0,0.12660658267931957,2.0,1.3765343225043387,0.0007008045110680346,0.036263151211070085,0.8274891598766178,1,0.10809567054470495,0.2112277148714586
+115,1,0.1915416031929788,1.95,1.3764214473445833,0.0007012133087745825,0.03650652566171486,0.8165017423474196,1,0.1530136038692338,0.2677872054842842
+115,2,0.20797031231797988,1.95,1.375957424841158,0.0007015137526026468,0.03644894356300151,0.8164322992563036,2,0.1914796569524938,0.3045948317899411
+115,3,0.17151493961245493,2.0,1.3862943611198844,0.0007001722195526524,0.03638481949133648,0.8288777842514964,2,0.23666493455759374,0.2561632192980581
+115,4,0.21799123961626038,1.95,1.3861840129139003,0.0007001103536479127,0.03672234471541057,0.8179595891981449,2,0.25769023518110545,0.2830504851460607
+115,5,0.25212201782830906,1.95,1.3861728309289494,0.0007000868583443144,0.03669942414419798,0.8179579171786294,2,0.28592601817387964,0.2925053685291907
+115,6,0.19896558791120206,1.95,1.3862309754858784,0.0007001475690172533,0.03643264949596553,0.8179665929830464,2,0.3079346545923865,0.25263908691415815
+115,7,0.2841551196987066,1.9,1.386256032135051,0.0007001479601166872,0.03676949919332502,0.8065358818519216,2,0.35709755023027595,0.30438699868865404
+115,8,0.3424719323434799,1.9,1.3862747278728222,0.0007001896269703393,0.036556903380904573,0.8065388120416155,2,0.4119162638098619,0.32568475606511704
+115,9,0.3787194846545617,1.9,1.3859614992703158,0.0007002372507490448,0.03662135521341731,0.8064899479153168,2,0.47721083186345936,0.35945050636392645
+115,10,0.2970283411610804,1.9,1.3857078186361096,0.0007002414864218908,0.036767257350205716,0.8064503557672625,2,0.49906262171514204,0.3246776415834119
+115,11,0.28722386160179625,1.8499999999999999,1.3858083093959348,0.0007000895411265122,0.03646447876064775,0.7944904545044531,2,0.507176610454519,0.28117739139996223
+115,12,0.3750694854854483,1.9,1.3858003995973962,0.0006999474098282468,0.03676720327765216,0.806464714352405,2,0.5642074386596047,0.3312883667386881
+115,13,0.40097461726926215,1.9,1.385919639350012,0.0007002211451209369,0.03673950430485447,0.8064834099814479,2,0.5988604289707486,0.3714348189365423
+115,14,0.46643253100906995,1.9,1.3859015423197016,0.0007004825039230891,0.036363220703587676,0.8064806671802555,2,0.668695769961312,0.3965140767484837
+115,15,0.4303261403866976,1.9,1.3853197338212553,0.0007014011775567878,0.03673327878509776,0.8063901352247931,2,0.6887118336915763,0.41613802303355696
+115,16,0.5058916476063586,1.8499999999999999,1.3859110663894365,0.0006999082324010252,0.03669388447443706,0.7945071724801833,2,0.7422035824741898,0.4300340487222755
+115,17,0.4205990760450211,1.8499999999999999,1.3857300430102881,0.0006998817101696371,0.03670730092839773,0.7944776073661759,2,0.7602487911955264,0.388331865222702
+115,18,0.42334322906871114,1.7999999999999998,1.385756537440813,0.0007008197938014083,0.036722575919437936,0.7819656470099957,2,0.8039035287723106,0.3392727251992895
+115,19,0.531923060583802,1.8499999999999999,1.3750818438766972,0.0006976746432287244,0.03637215296709427,0.7927327603581212,2,0.8559170239411338,0.3651875033578284
+115,20,0.4525612274761972,1.8499999999999999,1.373483623149954,0.0006972254387315128,0.036379108984850236,0.7924698900437285,2,0.8774904548338762,0.3385501518088222
+115,21,0.502219581622313,1.7999999999999998,1.3753405348280974,0.0006963180504900488,0.03649075146253729,0.7801830077853922,2,0.9086844143954317,0.3624860528804675
+115,22,0.5467341715448881,1.7999999999999998,1.3756652909516285,0.0006951719195531982,0.036490241547118454,0.7802383045292713,2,0.9530577645780761,0.3850368857121919
+115,23,0.5745535950217424,1.7999999999999998,1.3773164718409234,0.0006984211111807233,0.03629672547554898,0.7805224089357108,2,0.9832158565226871,0.4375575080422252
+115,24,0.620643062966308,1.7999999999999998,1.34509911315391,0.0006904845467597225,0.03556413314478401,0.774950727404656,2,1.0,0.4688102098876933
+115,25,0.5801495226989829,1.7999999999999998,1.3484116489074047,0.0007015512577436907,0.03614362357249345,0.7755317674268929,2,1.0,0.5004984089966095
+115,26,0.6429730162449072,1.7499999999999998,1.350857357293178,0.000697674084166504,0.03631012380124181,0.7626480703772714,2,1.0,0.5432433874830243
+115,27,0.6251716615106138,1.7499999999999998,1.3521414734747337,0.000707177244469581,0.035844827415729676,0.7628838756478639,2,1.0,0.5839055383687122
+115,28,0.5644344867870901,1.7999999999999998,1.348314112319526,0.0007065001727901423,0.03582355750291198,0.7755165107067782,2,1.0,0.5481149559569667
+115,29,0.6303671789085903,1.7499999999999998,1.3558111047257129,0.0007024353415452816,0.03586147047837143,0.7635453301023415,2,1.0,0.6012239296953006
+115,30,0.6671514654966949,1.7499999999999998,1.348009878071788,0.0007269482314010952,0.036481082182061086,0.7621428595381754,2,1.0,0.6238382183223162
+115,31,0.6525551306138657,1.7499999999999998,1.3443960175324634,0.000727318650588526,0.036359872203482926,0.7614872488970785,2,1.0,0.6751837687128854
+115,32,0.6662296701020043,1.7999999999999998,1.3439170919730714,0.0007358533649610812,0.036250746843653994,0.7747603481612926,2,1.0,0.7207655670066809
+115,33,0.6812597262139635,1.8499999999999999,1.3438264049004078,0.0007423154735919268,0.03637425916383672,0.7875651987752019,2,1.0,0.7708657540465446
+115,34,0.6941168689210415,1.9,1.3432238017415528,0.0007475870102158411,0.036545659763420904,0.7997478192103139,2,1.0,0.8137228964034717
+115,35,0.7318553571432825,1.95,1.3820566665587393,0.000700513163263461,0.03669833534882437,0.8173443338819986,2,1.0,0.8395178571442754
+115,36,0.6402848226095292,1.95,1.3808656153484515,0.000700625164041092,0.036665145652240314,0.8171664850346458,2,1.0,0.8009494086984307
+115,37,0.7031456376496823,1.9,1.382500495485873,0.0006999626767082582,0.036618938323923926,0.8059491512155929,2,1.0,0.8438187921656077
+115,38,0.6874343426170225,1.9,1.3827274442299715,0.0007017918313278448,0.036724389362234766,0.8059852144880815,2,1.0,0.858114475390075
+115,39,0.7209646883138138,1.95,1.3828333678990217,0.000700506961785165,0.036467501980862106,0.8174602591936101,2,1.0,0.9032156277127124
+115,40,0.729672387814873,1.95,1.3829235259897494,0.0007019239381036447,0.03666895351518192,0.8174741349621851,2,1.0,0.9322412927162433
+115,41,0.6694637722353456,2.0,1.3825630239334135,0.0007032184903119913,0.036457050018242794,0.8283487502406078,2,1.0,0.8982125741178189
+115,42,0.7336100544880004,1.95,1.3841380164346164,0.0007022768389016389,0.0366247659267102,0.8176553846578779,2,1.0,0.9453668482933347
+115,43,0.7159922718443963,1.95,1.3835617367469322,0.00070326728148211,0.03664191958273604,0.8175697439244028,2,1.0,0.9533075728146542
+115,44,0.75,2.0,1.3837650813173399,0.0007019860787331035,0.03641823863278543,0.8285192496483073,2,1.0,1.0
+115,45,0.75,2.0,1.3831982844763027,0.0007026275853211957,0.03655462757654746,0.8284388892858047,2,1.0,1.0
+115,46,0.7799999999999999,2.0,1.3823139172448538,0.0007032795296645635,0.036455284052116954,0.8283133449470985,2,1.0,1.0
+115,47,0.6873149037146729,2.0,1.3817668584266876,0.0007047618917214949,0.03674479745317181,0.8282359553144342,2,1.0,0.9577163457155763
+115,48,0.7257066290526311,1.95,1.383425364325187,0.0007035529825547954,0.03667013860178646,0.817549488402454,2,1.0,0.9856887635087701
+115,49,0.7284256458023559,1.95,1.3836771986385208,0.0007022597250832407,0.03656222192056057,0.8175866638403458,2,1.0,0.9947521526745196
+116,0,0.07960789057231352,2.0,1.3844497951502266,0.0007026463302633894,0.03630863794127933,0.8286166960811223,0,0.19959515992002003,0.16589942201435176
+116,1,0.16348786097058335,1.95,1.3861381796402195,0.0007002321591016785,0.03672711560768319,0.8179528007214698,0,0.22810252644377024,0.1741561679769175
+116,2,0.22289975785686417,1.95,1.3801600720693825,0.0006990681188967349,0.03654372313758436,0.8170605839840559,0,0.32239627275726435,0.14647082917986148
+116,3,0.2567860214008954,1.95,1.3802879746719259,0.0006999598352140124,0.03641951776948395,0.8170799676940599,0,0.40939601591370656,0.14342538345137595
+116,4,0.28473263471237326,1.95,1.3764403875286746,0.0007049610367991913,0.036632140480821605,0.8165057030776062,0,0.5001061192348975,0.14896729006138096
+116,5,0.3170326360589518,1.95,1.3758475895808946,0.0007052624913795782,0.03652861769837422,0.8164169613347333,0,0.5750725327496621,0.1566787431969566
+116,6,0.3401902146274483,1.95,1.3751350674876337,0.0007055299978378209,0.03640167642283091,0.8163102244511633,0,0.6448664443842854,0.14081212291244716
+116,7,0.34680150133859305,1.95,1.2913457536741437,0.0006969460871289732,0.03504457923482994,0.8034091816393255,0,0.6882597218264288,0.1716587086934049
+116,8,0.3943100898967792,2.0,1.2901741923674475,0.0006945176163362934,0.03440756742431135,0.8148085808988256,0,0.7465007076351408,0.18569935614240954
+116,9,0.43416155101418324,2.0,1.2928648925903883,0.0007002695714964982,0.0343316609805677,0.8152159846807535,0,0.8377400948687466,0.19688504355561534
+116,10,0.42464548456956,2.0,1.2373841430460144,0.0007799654287173658,0.03536007863818248,0.8067367369318368,0,0.8578022201046951,0.20508198842560646
+116,11,0.47031513902820554,2.0,1.3652317529381537,0.0007043673930849726,0.03642711443066946,0.8258707561837381,0,0.9295433704267841,0.19499263619163967
+116,12,0.4925298499777771,2.0,1.2258932274978598,0.0007818092664729798,0.03479380049205467,0.804939420484526,0,0.9868230482408015,0.19266876893818852
+116,13,0.50188137101276,2.0,1.226859006755329,0.000772581539435375,0.03455175296049981,0.8050881186755073,0,1.0,0.2062712367091997
+116,14,0.48402545951751696,2.0,1.3651601758244123,0.000704427820125015,0.03632272809836859,0.8258604799447826,0,1.0,0.21341819839172305
+116,15,0.49111447529136426,2.0,1.3658610219300031,0.0007094689393880783,0.03600116220657336,0.825962698382765,0,1.0,0.23704825097121407
+116,16,0.49811376843128585,2.0,1.366045458985083,0.0007141487401273211,0.03641689171539333,0.8259905545666484,0,1.0,0.26037922810428604
+116,17,0.4796745893631039,2.0,1.365823276537197,0.0007182863538848772,0.03664441478672082,0.8259598075040671,0,1.0,0.2655819645436796
+116,18,0.526053662289421,2.0,1.3643721246390754,0.0007186245878887329,0.03663072553592214,0.8257512027741951,0,1.0,0.25351220763140314
+116,19,0.520316122454778,2.0,1.3665445577077626,0.0007147690854023436,0.036517246246145406,0.8260624567005684,0,1.0,0.2677204081825933
+116,20,0.5189523229678463,2.0,1.3702482060139338,0.0007114718746285147,0.03655952969480996,0.826593021323778,0,1.0,0.2631744098928208
+116,21,0.5002865273685484,2.0,1.3729701526989748,0.0007087372512487465,0.03623523952626956,0.8269820476694425,0,1.0,0.26762175789516135
+116,22,0.5179990764815402,2.0,1.372861694693717,0.0007118594414346493,0.0364759617653473,0.8269674221750762,0,1.0,0.25999692160513405
+116,23,0.48681462674966075,2.0,1.374888078602208,0.0007092510677477931,0.03668589274753585,0.8272564445421166,0,1.0,0.2893820891655358
+116,24,0.5136231354404505,1.95,1.3737305084595857,0.0007094772318924319,0.036593479860875015,0.8161007050872763,0,1.0,0.31207711813483485
+116,25,0.5317849283085407,1.95,1.3731664723190262,0.0007126727923580955,0.03666679630632019,0.8160169987778569,0,1.0,0.30594976102846916
+116,26,0.5314448277536175,2.0,1.374812114452085,0.0007099634948553586,0.0362988052934157,0.8272457923769134,0,1.0,0.2714827591787248
+116,27,0.4854234466416052,2.0,1.3773132528355778,0.0007075084107538678,0.03636061972484418,0.8276022374708463,0,1.0,0.28474482213868385
+116,28,0.5262995987570274,1.95,1.3762976602813577,0.0007077842951442839,0.03646909883472983,0.816485164183955,0,1.0,0.2543319958567576
+116,29,0.5260373245677906,1.95,1.3777243384948827,0.000705903537279287,0.036590676005366723,0.8166982739475144,0,1.0,0.25345774855930187
+116,30,0.504970221062574,2.0,1.3788201902742885,0.0007041299048210087,0.03662070633124203,0.8278161731930728,0,1.0,0.28323407020858016
+116,31,0.5266811943229829,1.95,1.378983505563264,0.0007060537854442631,0.03660039225415561,0.8168867438167925,0,1.0,0.2889373144099429
+116,32,0.5263885416697354,1.95,1.3803433021461733,0.0007046191358764222,0.036240288936489985,0.8170896295174753,0,1.0,0.2879618055657844
+116,33,0.5338117228595448,2.0,1.3813653287828362,0.0007032968284952286,0.03663538867676937,0.8281784087602977,0,1.0,0.2793724095318159
+116,34,0.4817749346294177,2.0,1.3823751097568167,0.0007021312685623006,0.03650257780837059,0.8283217204043171,0,1.0,0.2725831154313921
+116,35,0.4844406782044381,1.95,1.381663480967355,0.000702236417799608,0.0367233894683198,0.8172861415347286,0,1.0,0.28146892734812684
+116,36,0.5132848916888654,2.0,1.3807362854101193,0.0007023430343422735,0.036674420465339766,0.8280886065205099,0,1.0,0.3109496389628845
+116,37,0.5331521554705645,2.0,1.3809706774101298,0.0007040229277706466,0.03657641027334856,0.828122449717538,0,1.0,0.3105071849018815
+116,38,0.5182766661844068,2.0,1.381892212342367,0.0007028089329091162,0.036738176634773044,0.8282532319584999,0,1.0,0.3275888872813561
+116,39,0.5002061360576946,2.0,1.3818317884783853,0.0007042070065855188,0.036507223004404996,0.8282450342713605,0,1.0,0.33402045352564863
+116,40,0.530434998049342,2.0,1.3811049201928272,0.0007044799995100401,0.03646947779717381,0.8281416865144142,0,1.0,0.36811666016447314
+116,41,0.5485654769663927,2.0,1.3808859306060854,0.0007059537579264719,0.03675160935442721,0.8281109365718279,0,1.0,0.32855158988797556
+116,42,0.5040720154172222,2.0,1.3819725890034715,0.0007045593779171881,0.03663643664433154,0.8282651631961783,0,1.0,0.34690671805740725
+116,43,0.5263855153039516,1.95,1.3812730069482546,0.0007048569421350507,0.03657642444740526,0.817228607854602,0,1.0,0.35461838434650544
+116,44,0.5280131947628517,1.95,1.380862485973728,0.0007063784474115863,0.03637395782012096,0.8171677366292187,0,1.0,0.36004398254283904
+116,45,0.5076517797316888,2.0,1.3804375102633875,0.0007076466546246292,0.03675595902434391,0.8280475796736767,0,1.0,0.35883926577229625
+116,46,0.5549969192804131,1.95,1.3798972779430188,0.0007079663491728863,0.03644358117218177,0.8170239607046823,0,1.0,0.34998973093470986
+116,47,0.5295692307394133,1.95,1.3807573699260838,0.0007064152629500318,0.036555557773196926,0.8171520422833095,0,1.0,0.36523076913137753
+116,48,0.5121456739302412,1.9,1.3803108215464692,0.0007076059942816547,0.036775065842533775,0.8056088614146412,0,1.0,0.37381891310080423
+116,49,0.5528768289509647,1.95,1.379456144689055,0.0007083597875680665,0.03675983513558398,0.816958121576976,0,1.0,0.3762560965032153
+117,0,0.1889010609940116,1.95,1.3765572440165654,0.0007041231173455009,0.036334905797027924,0.8165229592901755,1,0.1458003905945128,0.26860301585402163
+117,1,0.2052874983308031,1.9,1.3762786547038246,0.0007043704713846938,0.03657072988532471,0.8049756169843275,1,0.1860148148647065,0.30293857461640167
+117,2,0.19432476414932778,1.95,1.3758694352188232,0.0007034696273498007,0.036451144065055105,0.8164196981198101,0,0.20910881967234324,0.3022707876013016
+117,3,0.20804698468961172,2.0,1.3785369741250675,0.0007053679833555897,0.03648989892926774,0.8277761537985271,0,0.23667390532188132,0.311258075202864
+117,4,0.20042858718740697,2.0,1.3804166930287607,0.0007042387591817321,0.03667325239033352,0.8280436451156009,0,0.2553507754254397,0.327627590057437
+117,5,0.20317551315658372,2.0,1.3805762490456315,0.0007032668840007137,0.0366286040808854,0.8280660859508995,0,0.24955061982208285,0.34451755075916857
+117,6,0.2858727680672958,2.0,1.3806166028760491,0.0007023693586352235,0.03641835933002055,0.8280715755968401,0,0.34352421566283137,0.3282102726738774
+117,7,0.2718352874712999,2.0,1.380513949329361,0.0007033761627825734,0.036620132484892806,0.8280572471122232,0,0.36660043303741674,0.35065038085444405
+117,8,0.3182435990618699,2.0,1.382027378712404,0.0007026445758862665,0.036715120267896015,0.8282724117412719,0,0.4302056876810132,0.35387107996488215
+117,9,0.3144623738704732,2.0,1.3491325066443978,0.000713160182263892,0.03637538668832768,0.8235459475386347,0,0.44747367724099796,0.3849096765802467
+117,10,0.3027615531890487,2.0,1.3501971185425246,0.0007093760148743418,0.03625108397468939,0.8236995024857142,0,0.4617547080441316,0.39353223323798675
+117,11,0.3707345914951074,2.0,1.3566681755925085,0.0007058950224843475,0.0361983425744385,0.8246362462016387,0,0.5261750735458572,0.4008818735892151
+117,12,0.3363602552401711,2.0,1.385526910349972,0.0007000030952027366,0.0364184630838203,0.8287688540149599,0,0.5362669082210113,0.4061783065058885
+117,13,0.42414457616895035,1.95,1.3853285266625939,0.000700030102750998,0.036679014567675076,0.8178321472781072,0,0.6377136900660949,0.39686366714170784
+117,14,0.46507836738226943,2.0,1.017488302857721,0.0010116427289398702,0.035528615814962174,0.7702125188179008,0,0.7539282260239435,0.37835692324230674
+117,15,0.498203680892099,2.0,1.0192137611741034,0.0010039391809485133,0.03552559473023963,0.7705150327075408,0,0.8485945792766402,0.36255283060480964
+117,16,0.4673927260008256,2.0,1.3388229776069893,0.0007362024563620487,0.03630591410820386,0.8220495280907626,0,0.8750421255514752,0.3912529192674518
+117,17,0.503293222724317,1.95,1.3377671967715594,0.0007374015391161286,0.036239729385319074,0.8106504235276265,0,0.9001960696468082,0.41071598288531247
+117,18,0.488943545789561,2.0,1.15758897144456,0.0005334324790090429,0.030370849446198715,0.7939097870180524,0,0.9072090515898424,0.4201997505120801
+117,19,0.5024479332556485,2.0,1.1806017473691748,0.0005440719402404076,0.03071844710260796,0.7976530437202294,0,0.9427447630474002,0.4178334267889615
+117,20,0.5730307498588513,2.0,1.1955489819887366,0.0005528840374278888,0.03142678487497284,0.8000576559967931,0,1.0,0.41010249952950395
+117,21,0.5639690448168994,2.0,1.1891733562967166,0.000546982311098072,0.0314143164927488,0.799033929728926,0,1.0,0.37989681605633085
+117,22,0.5422031094875457,2.0,1.3405125731424277,0.0007240231698715106,0.03619424541397277,0.8222929951586102,0,1.0,0.407343698291819
+117,23,0.5663107068784005,2.0,1.1390422356323144,0.0005013752126645127,0.029315485654508217,0.7908480759109802,0,1.0,0.38770235626133465
+117,24,0.5179581423161348,2.0,1.3405868972352495,0.0007137967195067103,0.03600883298080431,0.8223008670697561,0,1.0,0.39319380772044926
+117,25,0.564950733120453,1.95,1.3388208152543648,0.0007141586531823267,0.03587167207474364,0.8108049663225485,0,1.0,0.3831691104015098
+117,26,0.5597369308191062,1.95,1.3373230989489655,0.000710018201415138,0.03605463513265543,0.8105738377987269,0,1.0,0.3657897693970205
+117,27,0.5508212620114842,2.0,1.336547369430732,0.000705882710184228,0.03594042974819203,0.8217075150290016,0,1.0,0.369404206704947
+117,28,0.5109126735856248,2.0,1.3475214366170167,0.0007022045416690366,0.036105988275371516,0.823308520537966,0,1.0,0.3697089119520825
+117,29,0.5510547759492985,1.95,1.3459687894561998,0.0007023936974112753,0.03593677033729638,0.8118954387615845,0,1.0,0.3368492531643283
+117,30,0.5006823971969554,1.95,1.344139589066836,0.0006991153937395204,0.03564339717403006,0.811614919148656,0,1.0,0.33560799065651775
+117,31,0.5457758174822032,1.9,1.3425989566454388,0.000699331096167417,0.035715056696499006,0.7996322680208353,0,1.0,0.319252724940677
+117,32,0.5401945823437734,1.9,1.3405006920882705,0.0006960425688240632,0.03571361037690066,0.799294816538229,0,1.0,0.3006486078125778
+117,33,0.5287057532929783,1.95,1.3392646601752545,0.0006931093087760279,0.035663283950394184,0.8108665866091606,0,1.0,0.29568584430992745
+117,34,0.49034772634892404,2.0,1.3492693655547772,0.0006915383326490328,0.03581788057791459,0.8235595511036992,0,1.0,0.30115908782974676
+117,35,0.5352398464393694,1.95,1.3487981599321484,0.0006918202199025882,0.035883458307451536,0.812323938534044,0,1.0,0.28413282146456464
+117,36,0.5114725400678836,1.95,1.3466954383703105,0.000689219749696073,0.03546119348356036,0.8120023662386813,0,1.0,0.30490846689294526
+117,37,0.5320773455777102,1.9,1.3483114059658248,0.000693956827034179,0.035871186779362366,0.8005442369029679,0,1.0,0.2735911519257007
+117,38,0.5269347014651706,1.9,1.3462277140253893,0.0006914639253358727,0.03579761200667286,0.8002105217588695,0,1.0,0.2897823382172354
+117,39,0.4890244601584669,1.95,1.354170009059104,0.0006905101479769749,0.03589403999299282,0.8131411253315617,0,0.9993337018954692,0.2976365980009307
+117,40,0.5329696962266566,1.9,1.3537757096562137,0.0006908466431067556,0.035925202906694424,0.8014143168884019,0,1.0,0.30989898742218835
+117,41,0.5385584781449785,1.9,1.3596900394934015,0.0006902539904525854,0.035867804146344565,0.8023537133199033,0,1.0,0.2951949271499281
+117,42,0.5355561631555515,1.95,1.3585639809197918,0.000688488627919092,0.03614910707851126,0.8138072259503357,0,1.0,0.285187210518505
+117,43,0.5236515280160213,2.0,1.3580937459597822,0.0006872123522685314,0.035997800438978086,0.8248369058840077,0,1.0,0.27883842672007114
+117,44,0.4842878695478021,2.0,1.3640097852527155,0.0006881882513244018,0.03590650553396807,0.8256903000234187,0,1.0,0.2809595651593403
+117,45,0.5258313813980867,1.95,1.3630696764864858,0.0006880289695049052,0.036100098625087756,0.814488847569591,0,1.0,0.28610460466028903
+117,46,0.52223014667101,1.95,1.3669124672673671,0.0006886464597840041,0.03612341291042273,0.8150689654051064,0,1.0,0.2741004889033663
+117,47,0.5078880153571769,2.0,1.3703175650571655,0.000689831770056134,0.036251931246964096,0.8265967593537408,0,1.0,0.29296005119058954
+117,48,0.5269070957052638,2.0,1.3725742267013379,0.0006920722218804877,0.03624535469115978,0.826920619915523,0,1.0,0.289690319017546
+117,49,0.49035814165730424,2.0,1.3751787003170521,0.0006929652201152323,0.03634353172621075,0.8272933176066272,0,0.9920250494141284,0.3118270729721761
+118,0,0.12114753874903264,1.95,1.3850348868621911,0.0007016811307604432,0.03631832892342444,0.817788887977836,0,0.13702941161071472,0.22111924701582253
+118,1,0.2067055818973202,1.9,1.385135876742115,0.0007014261827794706,0.03672295508617397,0.8063614367144388,0,0.24304598287841472,0.19829062915318096
+118,2,0.2337611216612898,1.9,1.3799952456558144,0.0007019484937174584,0.03659024934455952,0.8055576641329579,0,0.32273856278040736,0.2155523218304228
+118,3,0.2646179797511666,1.9,1.375474812889551,0.0007041022766118446,0.036558661362009595,0.8048493067731575,0,0.4058600906205213,0.20757981167652678
+118,4,0.31017211670756634,1.9,1.3731942711958043,0.0007044671355255889,0.0365592084813478,0.8044909748880182,0,0.5162496018278779,0.17890758658805064
+118,5,0.2628961853721332,1.9,1.3665175577679571,0.0007072368510464733,0.036289752981170334,0.8034395658026013,0,0.5172769556188248,0.18661801041534432
+118,6,0.2994957206575471,1.8499999999999999,1.3702506546406796,0.0007050058920587956,0.03614075422082088,0.7919402528737701,0,0.5594961503288058,0.18565753508674915
+118,7,0.35007794440337736,1.8499999999999999,1.3703759462220821,0.0007029486798770458,0.03641613323755861,0.7919602186352889,0,0.6420159717920412,0.17757185228853628
+118,8,0.3930423058620596,1.8499999999999999,1.2765987377702475,0.000742543231381274,0.03480476470323264,0.7761003423204421,0,0.7362962735691382,0.16174598811468127
+118,9,0.3549969646585084,1.8499999999999999,1.276451839317671,0.0007483113760070069,0.03496243903976023,0.7760768197476109,0,0.7585143436497733,0.1719707573286634
+118,10,0.39854167301347576,1.7999999999999998,1.293353435528397,0.0007389521793204237,0.03573932444012194,0.7658153793028606,0,0.7952354105275483,0.2014916960081881
+118,11,0.4519793967020599,1.8499999999999999,0.9318261350484125,0.0009086470637546003,0.03241548363468093,0.7106706471469909,0,0.8640239292844792,0.221232749960894
+118,12,0.45399435494206164,1.8499999999999999,1.361698958946024,0.0007048179269362738,0.03631669078769985,0.7905276020846342,0,0.9028579435903473,0.24283725835307562
+118,13,0.5129105442043256,1.9,1.3616902763045782,0.0007021475509103333,0.03632295249026981,0.8026744911364802,0,0.9903305127178574,0.2225944637239418
+118,14,0.5065110445766426,1.9,1.3607289986376785,0.0007020920307952554,0.03632439336918676,0.8025221742447738,0,1.0,0.18837014858880885
+118,15,0.46172333824917894,2.0,1.2216825994404745,0.0007537937562985088,0.03468603568939491,0.8042686322969629,0,1.0,0.2057444608305964
+118,16,0.5072568084463783,1.95,1.3675611233010554,0.0007016446408195524,0.036223142174130675,0.8151706351894404,0,1.0,0.22418936148792756
+118,17,0.5117937951250208,1.95,1.3673645475094713,0.000704780348297385,0.03632144545007118,0.8151419607905912,0,1.0,0.23931265041673563
+118,18,0.5145710143717749,2.0,1.3672960541383663,0.0007076098856742065,0.036397599098409936,0.8261683513955598,0,1.0,0.2152367145725829
+118,19,0.48842162058885696,2.0,1.366653902217015,0.0007078686040351823,0.03630194767284252,0.8260761842825052,0,1.0,0.2280720686295231
+118,20,0.5077643508452773,1.95,1.3664085079063648,0.0007054537779532846,0.03645461479614113,0.8149980591107472,0,1.0,0.2258811694842573
+118,21,0.49060670385433824,2.0,1.3657631932952277,0.000708235771237295,0.03626882532896576,0.8259482806779046,0,1.0,0.23535567951446074
+118,22,0.5009691001079611,2.0,1.3658833366468253,0.000705699282968244,0.03626127952112505,0.8259648223120246,0,1.0,0.2698970003598704
+118,23,0.5254571473760182,2.0,1.3653809659865201,0.0007035393457984022,0.03622871533966423,0.8258919750707394,0,1.0,0.2515238245867272
+118,24,0.5201719995959057,2.0,1.364432724337244,0.0007040934302264123,0.036387571641466124,0.825755740520298,0,1.0,0.23390666531968538
+118,25,0.4870881174743339,2.0,1.3634123688786892,0.0007046396290328519,0.03634216816696596,0.8256090369945905,0,1.0,0.22362705824777945
+118,26,0.5117576271657821,1.95,1.3628440335477385,0.0007023902040183791,0.03627801421302619,0.8144590916810373,0,1.0,0.23919209055260676
+118,27,0.5163988388289743,1.95,1.3622479552135853,0.0007051676152866915,0.03616460413165952,0.8143698378658923,0,1.0,0.22132946276324741
+118,28,0.5145212256811473,2.0,1.3612525967999327,0.0007057894288826169,0.036130243459065584,0.8252981885449092,0,1.0,0.21507075227049102
+118,29,0.4644349859760141,2.0,1.3607668971584408,0.0007061817841688886,0.036168656434350646,0.8252282619533385,0,0.9964245428804521,0.2195505627461109
+118,30,0.5051886910358149,1.95,1.3665595638928238,0.0007041390051651815,0.03636939399249005,0.8150204372425516,0,1.0,0.21729563678604963
+118,31,0.5026658607601899,1.95,1.3659841788902494,0.0007068324151518826,0.03641831599163785,0.8149344876749285,0,1.0,0.20888620253396617
+118,32,0.4605954714526431,2.0,1.3656580663630469,0.0007091613915810697,0.03627592088613414,0.825933433500357,0,1.0,0.20198490484214365
+118,33,0.5034209537995398,1.95,1.370924861991216,0.0007068537452885413,0.03638675118259906,0.8156784703436498,0,1.0,0.21140317933179914
+118,34,0.4902335224389358,1.95,1.3701457860336614,0.0007088720550183528,0.03643243745133119,0.8155619169136713,0,1.0,0.23411174146311925
+118,35,0.5125683785913272,2.0,1.3699358893476647,0.0007067697941663581,0.03648780848623273,0.8265469019806345,0,1.0,0.24189459530442384
+118,36,0.47081336835782067,2.0,1.3698454869298227,0.0007081205383760128,0.03644645225332161,0.8265343281908051,0,1.0,0.23604456119273545
+118,37,0.4961293680727183,1.95,1.3738993557545724,0.000706416487624839,0.03645440359431172,0.816125125776127,0,1.0,0.25376456024239413
+118,38,0.5156315145327365,1.95,1.3733710589044898,0.0007048341616505147,0.03625401543385675,0.8160453586567281,0,1.0,0.25210504844245485
+118,39,0.5149373748827244,2.0,1.3729220099390171,0.000706044310758556,0.03654533804385486,0.826974388510746,0,1.0,0.24979124960908125
+118,40,0.5139108178739275,2.0,1.3727286982263256,0.00070689158870439,0.03640675368616773,0.8269469687251876,0,1.0,0.24636939291309135
+118,41,0.5210094528477178,2.0,1.372191600874332,0.0007078046295862313,0.03657624143815259,0.8268703549602817,0,1.0,0.2700315094923925
+118,42,0.508523378992321,2.0,1.3715898058577491,0.0007086427533701444,0.03642893620522848,0.82678442764217,0,1.0,0.2950779299744033
+118,43,0.5305831355750014,2.0,1.3713932500412378,0.0007067379115156296,0.036461751046615684,0.8267557310317526,0,1.0,0.30194378525000454
+118,44,0.5378889513485002,2.0,1.3707417319389932,0.0007075555160735868,0.03650484145015409,0.8266626280876871,0,1.0,0.29296317116166715
+118,45,0.530797774007274,2.0,1.3701740434870633,0.0007088780955609533,0.03642143902140845,0.8265816472260127,0,1.0,0.2693259133575799
+118,46,0.5243121732244089,2.0,1.3695612181323686,0.0007100445121883579,0.03638731207183456,0.8264941190766514,0,1.0,0.24770724408136313
+118,47,0.5130860872675129,2.0,1.3689308684661703,0.0007110268782865352,0.03652662600585212,0.8264039891894114,0,1.0,0.2436202908917096
+118,48,0.49936707923921225,2.0,1.3682931282565693,0.0007121451264873712,0.036418259966006686,0.8263128006374785,0,1.0,0.264556930797374
+118,49,0.4844567904504171,2.0,1.3681849406060513,0.0007099942255726355,0.03647808641039165,0.8262966555635951,0,1.0,0.28152263483472373
+119,0,0.01733085683614806,2.0,1.374246423861586,0.0007072957185190727,0.03631897322556992,0.8271641716716056,1,0.1412902937318568,0.1693824644780178
+119,1,0.025308016746392298,1.95,1.3856921874326698,0.0007007300578268037,0.03671925058467317,0.8178865287030871,1,0.18393796780034138,0.1391094320875192
+119,2,0.1300449397817175,2.0,1.385659970751375,0.0007008147585309042,0.03673463851931478,0.8287879662766484,1,0.21173316280698143,0.11783891552974969
+119,3,0.21940764964345438,2.0,1.3855788460643548,0.0007010188446829706,0.03634077681513458,0.8287765124224823,1,0.28560621230426975,0.1838838824058216
+119,4,0.23034578713913256,2.0,1.3854794024349204,0.0007011922749490572,0.03671029951327387,0.8287624495377439,1,0.3237539657053539,0.20281400285663664
+119,5,0.2729767995194389,2.0,1.3847920799007736,0.0006991754025792017,0.03670876442617712,0.8286643132356745,1,0.3686219098139067,0.2517601186462539
+119,6,0.24583169646588163,2.0,1.3846428579422019,0.0006991266486819157,0.03638045734506557,0.8286431118518626,1,0.378821655937485,0.24767678030295875
+119,7,0.287051786395789,1.95,1.3847421097545614,0.0006993518148161103,0.03666736104607335,0.8177445628226925,1,0.41281741106161823,0.27308273990380566
+119,8,0.2802915453174152,1.95,1.3849827774088364,0.0006995337464148923,0.03662368658778405,0.8177804830214953,1,0.44193866896935996,0.2783869257655706
+119,9,0.29167601835349916,2.0,1.3846881452991482,0.000699463246031221,0.03642066420882252,0.828649637862302,1,0.4696847177530927,0.2793404375075401
+119,10,0.29578164074314717,2.0,1.3843906038709135,0.000699368483437726,0.03663761244210654,0.8286073590816082,1,0.48185763291236916,0.2767952919273317
+119,11,0.3126154652974597,2.0,1.3840071775455522,0.0006992847438081669,0.03671078704812453,0.8285528752950657,1,0.515185332228207,0.2884711080205896
+119,12,0.3822915825332442,2.0,1.3835557854245315,0.0006991545505120473,0.03652863533740307,0.8284887071768001,1,0.5621215538936782,0.3581432032525762
+119,13,0.41807265265708404,2.0,1.3839770861081406,0.0007001348518888394,0.03664867291474397,0.8285488421990619,1,0.6039066954271617,0.42169991495406456
+119,14,0.396242315282348,2.0,1.3789993256095472,0.0006969131301044695,0.03655319196997661,0.8278396479509891,1,0.6103876867411481,0.44029080195296233
+119,15,0.43690144931642005,1.95,1.3795566350611765,0.0006964578398504928,0.03656508367273353,0.8169695888060211,1,0.6415710886402901,0.46757671286768004
+119,16,0.47873209977502035,1.95,1.378242789611123,0.0006958529643863085,0.03650808654005143,0.8167728662619018,2,0.6879165636534009,0.5118849143788666
+119,17,0.43700184311703844,1.95,1.3858950364677343,0.000699933169369728,0.036581262472861996,0.8179165033846747,2,0.7343658264956193,0.4775183750626357
+119,18,0.516940236771456,1.9,1.3860751206721578,0.0007000173447329918,0.036580971950746166,0.80650761086424,2,0.7732737121783586,0.5254358396670414
+119,19,0.470270228891289,1.9,1.3861842326993616,0.0007001435463600396,0.036643377921932646,0.806524676948856,2,0.8165423176157849,0.47884433948325006
+119,20,0.5532929800856619,1.8499999999999999,1.3456319190034198,0.0006992123034981068,0.0356104155737705,0.7878527075017931,2,0.8621887904621235,0.528058213002708
+119,21,0.5512162778584262,1.8499999999999999,1.3406322282324363,0.0006975336022359813,0.03615005120354142,0.7870152896806984,2,0.891306219229087,0.5489793005559711
+119,22,0.5598916711294524,1.9,1.343802289279431,0.0006938229966427993,0.036142621921600684,0.799823233314711,2,0.8944227606759194,0.5737418895302817
+119,23,0.6151602891153525,1.95,1.3467260099828648,0.0006909620122958237,0.03606759640070574,0.8120075650069206,2,0.95246099921051,0.6139196314371614
+119,24,0.6483719512019513,1.95,1.3431539768698593,0.000750850910760876,0.03665150823184336,0.8114800060907207,2,1.0,0.6612398373398377
+119,25,0.5881425328991998,1.95,1.341119336217549,0.0007549509083042757,0.03659680035862789,0.8111698050905256,2,1.0,0.6271417763306661
+119,26,0.646406232190365,1.9,1.3495201700127484,0.0007467121563232218,0.03631725342665891,0.800754008411035,2,1.0,0.6546874406345498
+119,27,0.5842463035818138,1.9,1.3465717030410471,0.0007511372653114118,0.036752399092439714,0.800284586620667,2,1.0,0.6141543452727128
+119,28,0.6648532704045148,1.8499999999999999,1.3535847404926336,0.0007436376821307927,0.03654464511151484,0.789193687834627,2,1.0,0.6161775680150496
+119,29,0.6461003662798857,1.8499999999999999,1.350628997139438,0.0007472421116176142,0.03652817858443165,0.7887027306819632,2,1.0,0.6536678875996187
+119,30,0.6285675254229709,1.9,1.3485480325292152,0.0007504667431765079,0.036309678715826396,0.8006000601817161,2,1.0,0.6618917514099028
+119,31,0.5902035169974474,1.95,1.3533954370557433,0.0007422001822039279,0.036324921917899974,0.8130391212247918,2,1.0,0.6340117233248248
+119,32,0.6750525771166712,1.9,1.3601493123345278,0.0007348975256315517,0.036269477700384946,0.802440690746894,2,1.0,0.6501752570555708
+119,33,0.5808857865748841,1.9,1.3575693634158137,0.0007380795770699324,0.0367335324404182,0.8020323837187423,2,1.0,0.6029526219162804
+119,34,0.5696552141332366,1.8499999999999999,1.3626005991845584,0.0007321570534575253,0.03667446753588738,0.7906859184157298,2,1.0,0.565517380444122
+119,35,0.6309717693964804,1.9,1.3335964827878646,0.0006856412893804442,0.03524791152232709,0.7981815851852185,2,1.0,0.603239231321601
+119,36,0.6665773528743066,1.9,1.3637973144903714,0.0007306288520291214,0.036436860321769,0.8030170187380402,2,1.0,0.6219245095810221
+119,37,0.6531858961405883,1.9,1.3618296435720325,0.0007325283505217625,0.03647853484547787,0.8027061872578546,2,1.0,0.6772863204686274
+119,38,0.666839497434708,1.95,1.3601114976480864,0.0007357149601068932,0.036796022644161555,0.8140558972168243,2,1.0,0.7227983247823601
+119,39,0.60886863745541,2.0,1.3589262124608699,0.0007375423060282986,0.03669561402751807,0.8249716840433444,2,1.0,0.6962287915180332
+119,40,0.667283502360466,1.95,1.3635475579025973,0.000731064648832837,0.03643048043797954,0.8145740438969216,2,1.0,0.7242783412015532
+119,41,0.704751152434547,1.95,1.3612106870601595,0.0007339715821924184,0.0365929900601814,0.8142216954456929,2,1.0,0.749170508115157
+119,42,0.7075148386490566,1.95,1.3593031847427925,0.0007368295973467367,0.036802813231456295,0.8139338503394138,2,1.0,0.7583827954968554
+119,43,0.7118654957728962,2.0,1.3572941375127425,0.0007392686748128763,0.036562007130445516,0.8247363972626455,2,1.0,0.772884985909654
+119,44,0.7242090451286001,2.0,1.3557593094317328,0.0007405483121790958,0.03676851070740154,0.8245148033004146,2,1.0,0.8140301504286669
+119,45,0.6342818333908747,2.0,1.3805643932692755,0.0007074979674467558,0.03655586729777362,0.8280656027932121,2,1.0,0.7809394446362492
+119,46,0.7194530417156012,1.95,1.3536623117402482,0.000742272838348045,0.03632255566890478,0.813079706609546,2,1.0,0.798176805718671
+119,47,0.7075232772120299,1.95,1.350026047274057,0.0007451920883401769,0.036645780456851906,0.8125273232482606,2,1.0,0.8584109240400996
+119,48,0.718698706740374,2.0,1.3812692776224955,0.0007053979740562474,0.036757587285349606,0.8281653383703312,2,1.0,0.8956623558012463
+119,49,0.7541961315505027,2.0,1.3803880941166533,0.0007061809660238731,0.036558782811961524,0.8280401260547158,2,1.0,0.9139871051683423
+120,0,0.17461807569147303,2.0,1.3850609674875431,0.0007016549818268644,0.03634087148190648,0.828703190434032,0,0.1827316849124918,0.20508467242158762
+120,1,0.1375767740577971,1.95,1.3849358890692016,0.0007017633857584235,0.036713053067120895,0.8177741603457739,0,0.1831909372051438,0.21433466391913195
+120,2,0.23267168947932915,1.9,1.3850119389364262,0.0007014944275773006,0.0367364312584223,0.8063421053132073,0,0.29841068079186345,0.21102472387527926
+120,3,0.25769242088350447,1.9,1.3684387604049746,0.0007039049850308854,0.03655216130011657,0.8037417426267265,0,0.3826697559550547,0.18208172833827527
+120,4,0.21907180892416778,1.9,1.3762235595562697,0.000703680046463937,0.036621878558923106,0.8049667506719569,0,0.39207239494959123,0.20747616981443756
+120,5,0.23040197080165564,1.8499999999999999,1.3675768947113711,0.0007001519719499999,0.03612597992319681,0.7914977491071116,0,0.3992125824508904,0.23572312607099813
+120,6,0.2706923190096708,1.9,1.3678404314511796,0.0006982405264098551,0.03616918270230991,0.8036455568040947,0,0.4354348771286457,0.25506122719404156
+120,7,0.32239601287363906,1.9,1.3726701939642902,0.0006988147487478086,0.036368082522523375,0.8044067534698549,0,0.5235480990023655,0.24325591090897625
+120,8,0.37340021222815045,1.9,1.371872753042499,0.0006988337007720379,0.036349419375020134,0.804281262392864,1,0.6436509622572634,0.21979942441748376
+120,9,0.37999305491299595,1.9,1.3817302646375098,0.0006997513174414915,0.036470307186887194,0.8058285963423728,1,0.6569777142873675,0.2573398973268298
+120,10,0.3489889249628969,1.95,1.3813864553802446,0.0006989728010332666,0.03662821155435507,0.8172437949230235,1,0.682610657069014,0.21981554045097088
+120,11,0.3922813251881223,1.9,1.3829185286249273,0.0006990445853547057,0.036551181425405734,0.8060142340989466,1,0.7048727632937365,0.23444073290209239
+120,12,0.37075448915131615,1.9,1.382466333779195,0.0006984473985698521,0.0366110538425391,0.8059433344610935,1,0.7437292137354846,0.2108760121904077
+120,13,0.3876650293995689,1.8499999999999999,1.383608225048006,0.0006986784447359304,0.03666087373099113,0.7941305407760192,1,0.7477639892894254,0.22853144561266237
+120,14,0.4543867407443033,1.9,1.3831707903862538,0.0006986188957150939,0.03647848401584708,0.806053540417526,1,0.7971193390080463,0.2851300171369492
+120,15,0.43142092345118377,1.9,1.3834773562931564,0.0006993303074281415,0.0366459014557814,0.8061016841362293,2,0.809527660860478,0.29203286368997505
+120,16,0.4100337947976703,1.8499999999999999,1.3789801939178519,0.0007049116740894352,0.03664624564225771,0.793374930457232,2,0.8384593803970047,0.24883347546289475
+120,17,0.5227901817156329,1.7999999999999998,1.38044908769082,0.0007036186073610712,0.03668061354647223,0.7810603545124151,2,0.8914285718842705,0.28739584320641554
+120,18,0.4348725966738064,1.7999999999999998,1.3789568675312953,0.0007038586803391675,0.03628355776747,0.780805152445365,2,0.8970132493976543,0.25355765638248223
+120,19,0.5536801147118681,1.7499999999999998,1.3802690541997114,0.0007024700760588726,0.0365983803735908,0.7679325772223018,2,0.9625872351435137,0.2954840688482085
+120,20,0.5225820249243829,1.7499999999999998,1.3785760609585056,0.0007025359889165586,0.03659573472500518,0.7676307519491439,2,1.0,0.3086067497479427
+120,21,0.5273690086612305,1.6999999999999997,1.3797083867603852,0.0007010259169591991,0.03663497461790175,0.7541946333083969,2,1.0,0.32456336220410154
+120,22,0.4864109454934394,1.7499999999999998,1.3800924492061126,0.0006997197053752494,0.036256376828291845,0.7679001221871901,2,1.0,0.28803648497813117
+120,23,0.5772442906736651,1.6999999999999997,1.3815101954898819,0.0006990635591666614,0.03641014318012154,0.7545277818524668,2,1.0,0.3241476355788836
+120,24,0.4877502955485977,1.6999999999999997,1.3799095283224965,0.0006987162819070215,0.036563330544138094,0.7542310637908739,2,1.0,0.29250098516199224
+120,25,0.5734959630481475,1.6499999999999997,1.3807925641360985,0.0006980585664589069,0.0365776941864633,0.7402346835074622,2,1.0,0.3116532101604917
+120,26,0.5773225956816715,1.6499999999999997,1.3790490393865213,0.0006974592672665923,0.036213014759124126,0.739899054779836,2,1.0,0.32440865227223864
+120,27,0.559020651987989,1.6999999999999997,1.377235930458712,0.0006969112407065234,0.036532492248889555,0.7537344612411828,2,1.0,0.36340217329329644
+120,28,0.5481261676142892,1.7499999999999998,1.3787719237664469,0.0007001121620949724,0.03660733748984792,0.767664822302538,2,1.0,0.3937538920476307
+120,29,0.6072252057844968,1.7999999999999998,1.3798884019661402,0.0006989891131613056,0.036614298813537435,0.7809628754603802,2,1.0,0.42408401928165596
+120,30,0.5912776949140872,1.7999999999999998,1.3179536310827555,0.0006780436096006047,0.03535148830513296,0.7701767888653679,2,1.0,0.4709256497136237
+120,31,0.5257462812076054,1.8499999999999999,1.3126273930921706,0.0006751407291114831,0.03551056894084813,0.782275703764574,2,1.0,0.41915427069201777
+120,32,0.5867101150352747,1.7999999999999998,1.3237840839534276,0.0006735557712403183,0.03569305126991161,0.7712055955000207,2,1.0,0.45570038345091557
+120,33,0.5737538515034943,1.7999999999999998,1.3167761348446667,0.0006695628672453956,0.03467442573542866,0.7699652962434341,2,1.0,0.47917950501164785
+120,34,0.5330276898406762,1.8499999999999999,1.3204725222561715,0.0006678617239524558,0.03463997444178488,0.7836064617069805,2,1.0,0.4434256328022537
+120,35,0.5250169889111178,1.7999999999999998,1.3298941073698733,0.000668112767469147,0.03473793981518324,0.7722799926876047,2,1.0,0.4167232963703926
+120,36,0.6186866783658376,1.8499999999999999,1.3341479743514317,0.0006668150158551877,0.03574040841393264,0.7859160251138315,2,1.0,0.46228892788612536
+120,37,0.529828039880434,1.8499999999999999,1.3423723987828604,0.0006792789222810913,0.03593802783756925,0.7873007215189376,2,1.0,0.43276013293478016
+120,38,0.5199638375671662,1.7999999999999998,1.3465218944135586,0.0006781766953441702,0.036096421086862805,0.7751944766669994,2,1.0,0.3998794585572207
+120,39,0.5033369062367393,1.8499999999999999,1.3726883543770576,0.0006972202287843208,0.03598101637833627,0.7923390669214467,2,1.0,0.3444563541224644
+120,40,0.5891522278349051,1.9,1.3746370204663718,0.000696104392968262,0.036200661281001724,0.8047151700041554,2,1.0,0.36384075944968375
+120,41,0.494172558202495,1.9,1.3727757731188925,0.0006955433664821512,0.03635914620881634,0.8044223350419023,2,1.0,0.3139085273416499
+120,42,0.5315160244137048,1.8499999999999999,1.373784812825615,0.0006944281794013774,0.03598050053833285,0.7925184998234686,2,1.0,0.3383867480456827
+120,43,0.5932732075503243,1.8499999999999999,1.3748696923946695,0.0006937385285745038,0.03655004794060488,0.7926966064768886,2,1.0,0.37757735850108115
+120,44,0.5979940321716489,1.8499999999999999,1.3727165634824317,0.0006927419858290657,0.036373689305913066,0.792342234688615,2,1.0,0.39331344057216316
+120,45,0.5104023947818573,1.9,1.3703304738615092,0.0006915830851641843,0.036175042726872816,0.8040360889638035,2,1.0,0.36800798260619094
+120,46,0.5707494536892461,1.8499999999999999,1.371651170529681,0.0006912402119304199,0.03627070437928849,0.7921663900768393,2,1.0,0.40249817896415335
+120,47,0.5109152828626867,1.8499999999999999,1.3466743418856362,0.0006781708882211337,0.03553077769364322,0.7880198570123513,2,1.0,0.36971760954228894
+120,48,0.5488219196868397,1.7999999999999998,1.3757565391167943,0.0006990453269907358,0.036522383517706244,0.7802552783803858,2,1.0,0.39607306562279887
+120,49,0.6110411626950384,1.7999999999999998,1.3771175496258001,0.0006978311325267442,0.03628668949117042,0.7804881280730447,2,1.0,0.43680387565012796
+121,0,0.17917329557708883,1.7999999999999998,1.3826613960351368,0.0007037186802160101,0.0363155233619755,0.7814384694129844,0,0.20208363699266346,0.16113280260007812
+121,1,0.16356374971323234,1.7499999999999998,1.3813554702315445,0.000701291855187488,0.03663545038261788,0.7681257136789627,0,0.22648610946281234,0.1765643530936914
+121,2,0.17555443466917858,1.7999999999999998,1.3813181942893336,0.0007006015962276007,0.036533746840150524,0.7812079085027374,0,0.24307855211027193,0.19441004608356602
+121,3,0.2240111661370075,1.8499999999999999,1.3814364609260879,0.0006999507651038018,0.03651178865198848,0.793775674825379,0,0.31093862231142466,0.19878572404145878
+121,4,0.25046500197291566,1.8499999999999999,1.3811495487004626,0.0006999345356749635,0.03667014727427783,0.7937286992109246,0,0.3765110371907334,0.19953529032207426
+121,5,0.2764137983740934,1.8499999999999999,1.3806543005130787,0.0006999543604488303,0.036414292146375274,0.7936476101667079,0,0.4329815122821099,0.21073731153749814
+121,6,0.2967409561583645,1.8499999999999999,1.3679051182472937,0.0006907730257459688,0.03601536294799207,0.7915488153250476,0,0.48882081006268946,0.20404210711096235
+121,7,0.3148585887396675,1.8499999999999999,1.3669908281282555,0.000690474942859893,0.03604980678235094,0.7913978194739975,0,0.5430909581582929,0.19207401825450107
+121,8,0.3632536110561997,1.9,1.3585676436930383,0.0007014647992637973,0.03643891721082085,0.802179218942847,0,0.6583615332339547,0.16636332587539276
+121,9,0.3964765162846027,1.9,1.279683140762111,0.000692354995998375,0.034015942551546004,0.789359314197557,0,0.753298819460046,0.15052329500194772
+121,10,0.387352292286515,1.9,1.2804318149805853,0.0006982375484606774,0.03486858438824259,0.789485725525053,0,0.7932729621440948,0.166810358096257
+121,11,0.4495244461347322,1.95,1.2789491493813805,0.0006951465364013501,0.03507305620870525,0.8014432867795791,0,0.894150503372398,0.13954748261924327
+121,12,0.4740231822117231,2.0,1.2273697861829316,0.0007800186894139641,0.03437138772107995,0.8051705916820107,0,0.9855232256223793,0.13271297320923806
+121,13,0.4519846488549674,2.0,1.2292960301852607,0.0007713722706181033,0.03438179374506685,0.8054698761475427,0,0.9996851710777955,0.173701934746164
+121,14,0.45896733357858893,2.0,1.229540958852876,0.0007786007712969793,0.035043249793055245,0.805510515589113,0,1.0,0.19655777859529638
+121,15,0.48632349353104426,2.0,1.2294330568724117,0.0007851095271323584,0.035438451489822456,0.8054956502418453,0,1.0,0.22107831177014745
+121,16,0.5085887476259946,2.0,1.3150320223954628,0.0007375614104456484,0.035560640791973165,0.8185429889635278,0,1.0,0.19529582541998203
+121,17,0.5004766165845314,2.0,1.218470539699615,0.0007928376877978586,0.034835531697051454,0.8037748100759032,0,1.0,0.16825538861510422
+121,18,0.49352291027934636,2.0,1.2392473413372698,0.0007802524386648494,0.034812686328247806,0.8070271563574165,0,1.0,0.17840970093115452
+121,19,0.4772040565603574,2.0,1.2394313613978587,0.0007716822208837496,0.03456828904396991,0.807053143911646,0,1.0,0.1906801885345246
+121,20,0.46143297659033705,2.0,1.2376014628735557,0.0007725488108918996,0.03498363199050432,0.8067683051768088,0,1.0,0.20477658863445672
+121,21,0.5009479162607058,2.0,1.3174923157254668,0.0007298623676220424,0.035316467509993794,0.8189058473681466,0,1.0,0.16982638753568596
+121,22,0.489364251786414,2.0,1.2374287481435773,0.0007973891211327315,0.03564980021459298,0.8067491242709963,0,1.0,0.16454750595471335
+121,23,0.48062614681750165,2.0,1.2377990833900574,0.0007888920448737377,0.035088459322153924,0.8068042059346187,0,1.0,0.2020871560583387
+121,24,0.5119146815299888,2.0,1.3186685579781217,0.000722625673304617,0.036052579846382354,0.8190780727712139,0,1.0,0.20638227176662924
+121,25,0.4643423019795503,2.0,1.3181890111441061,0.0007262951274269612,0.036001304227570696,0.8190080861205908,0,1.0,0.21447433993183412
+121,26,0.5070022947822732,1.95,1.3305107057126653,0.0007202799683929175,0.0356218484808908,0.8095287873073862,0,1.0,0.19000764927424407
+121,27,0.45966277136658806,2.0,1.2251567964418335,0.0007968533219610171,0.035424918917890076,0.8048284923130644,0,1.0,0.1988759045552934
+121,28,0.4810128001056424,2.0,1.227460407378874,0.0008041193921199611,0.035566669614859825,0.805192367987231,0,1.0,0.20337600035214132
+121,29,0.5049570194251045,2.0,1.3311200915227808,0.000715021539222063,0.035821030401619845,0.8209136939648036,0,1.0,0.1831900647503483
+121,30,0.48078327949521693,2.0,1.2162147929171656,0.000807417965420441,0.03493460298105427,0.8034233934243841,0,1.0,0.20261093165072297
+121,31,0.4881022462563879,1.95,1.3312341575384408,0.0007112183899707198,0.03601343517536854,0.8096375195531313,0,1.0,0.22700748752129274
+121,32,0.5079423902130756,2.0,1.3291629291251144,0.0007084504103051346,0.03545311737332439,0.8206238476306208,0,1.0,0.22647463404358542
+121,33,0.5050101196369899,2.0,1.3291855368687973,0.0007091030794125046,0.035373797009011006,0.8206273676176176,0,1.0,0.21670039878996628
+121,34,0.5065352060620022,2.0,1.3279772447676588,0.000709965734905971,0.03553994253588822,0.8204496945765389,0,1.0,0.18845068687334066
+121,35,0.4826146536944589,2.0,1.2039118388556793,0.0008067808126348439,0.034842381014996066,0.8014728769832521,0,1.0,0.20871551231486274
+121,36,0.5071850324804206,1.95,1.3277747368154034,0.0007073488015103058,0.035971046892587524,0.8091025711331041,0,1.0,0.19061677493473528
+121,37,0.48926343048703225,2.0,1.1872816343131856,0.000803711487341846,0.03472312984739867,0.7988125187156034,0,1.0,0.2308781016234407
+121,38,0.5142007469069837,2.0,1.3276179597491011,0.0007058932277200508,0.03545191509081289,0.8203955613528192,0,1.0,0.21400248968994565
+121,39,0.469677944500017,2.0,1.328025379825278,0.0007109346077802705,0.03540253254305691,0.8204570707826517,0,1.0,0.2322598150000565
+121,40,0.4934579390628655,1.95,1.3390730827475754,0.0007066597022020173,0.03569249898549373,0.8108413608585293,0,1.0,0.24485979687621823
+121,41,0.5176335913686942,1.95,1.3371089517257717,0.0007039645512956367,0.03609101301564359,0.8105390953576213,0,1.0,0.225445304562314
+121,42,0.468465298308398,1.95,1.3372823790160073,0.0007080723093281668,0.0358467891946917,0.8105669878471755,0,1.0,0.2282176610279933
+121,43,0.5079484279297378,1.9,1.3469445924969599,0.0007046655531225053,0.03569986144809293,0.8003293264004291,0,1.0,0.2264947597657925
+121,44,0.49347166138710497,1.9,1.344958809040618,0.0007055963359158218,0.036099781315724,0.8000121022201779,0,1.0,0.24490553795701653
+121,45,0.4657617628241557,1.95,1.3440679800728759,0.0007028712649841433,0.03617278871571833,0.811605118730436,0,0.9883519459134293,0.2347366148626133
+121,46,0.5113734339782714,1.9,1.3533558117052054,0.0007003811764470418,0.036220041076054955,0.8013505175010158,0,1.0,0.23791144659423782
+121,47,0.4728914446801938,1.9,1.3515075398172576,0.0007009859213061493,0.03575675516885266,0.8010563239118105,0,1.0,0.24297148226731252
+121,48,0.5156348665909174,1.8499999999999999,1.3588312176857125,0.0006990912603816302,0.03603624087081201,0.7900504267424939,0,1.0,0.25211622196972466
+121,49,0.5164562842196936,1.8499999999999999,1.3570128885094817,0.0006995167885485204,0.036214764273809257,0.7897488013618359,0,1.0,0.22152094739897865
+122,0,0.1295015749823848,1.9,1.3729181973759355,0.0007081008122332023,0.03630678691234214,0.8044486921362064,1,0.10917719507925899,0.2194356565022707
+122,1,0.1443803370573441,1.8499999999999999,1.3730353318882167,0.0007081097337838287,0.03658398499009823,0.7923997347931673,1,0.132284148429885,0.2382222589513004
+122,2,0.19345971063558412,1.9,1.3724714962738904,0.0007086196892050203,0.03644418802093154,0.8043785748795285,1,0.1799646095994556,0.2715795559860063
+122,3,0.18838062771416678,1.9,1.3727149413931352,0.0007070619662559949,0.036487149386863225,0.8044163888724798,1,0.20039618143705243,0.294073850464486
+122,4,0.25457571485948544,1.95,1.3845009889503626,0.0006991061986874067,0.036713172236486694,0.8177085505885819,1,0.2523083621371516,0.3455079000154161
+122,5,0.2923446604298466,1.95,1.3843922458759057,0.0006991614533723659,0.03666042930453185,0.8176923571208418,1,0.30052055267678734,0.40712146453043885
+122,6,0.2653198836531656,1.95,1.383147481965125,0.0006995548546553192,0.03638987998660861,0.8175068422130267,1,0.3086684459144373,0.4061750176246356
+122,7,0.34007369690767947,1.9,1.3831180326711097,0.0006999444400277093,0.03669323159373701,0.8060457070668259,1,0.3823982649002685,0.4570479698252401
+122,8,0.3239586862341881,1.9,1.3827345219843732,0.0007001488713675177,0.03645744164179451,0.8059858074281109,1,0.4183575472309388,0.45538555780604184
+122,9,0.3390650932607731,1.95,1.383302848718325,0.0007000365194290399,0.0365508311958871,0.8175301638474415,1,0.44455559542028433,0.4708095169755312
+122,10,0.3844669726335736,2.0,1.3830688066772983,0.0007001771051048049,0.036694191970144625,0.8284197894725125,1,0.4617494398474299,0.5325573223153388
+122,11,0.3755087746663607,2.0,1.384239429165619,0.0007000741561258613,0.03673101453158737,0.8285860890613083,1,0.46945984808003194,0.5590827847811597
+122,12,0.3668994558350809,2.0,1.3838842684094692,0.0007001525148386477,0.03643317709964135,0.8285356615362363,1,0.5035811803520179,0.5182232789809125
+122,13,0.42057672537209795,2.0,1.383693907216331,0.0006996045102320408,0.03662770744265563,0.8285084605882771,1,0.540573862490386,0.5478239345864785
+122,14,0.41528753266552687,2.0,1.3846143489972935,0.000699615756596665,0.03670400308230435,0.8286392026262689,1,0.5647126088951983,0.5646749636914918
+122,15,0.4823873640473878,2.0,1.384225055663188,0.0006996023683858898,0.036409139585885604,0.8285839135476772,1,0.6078336106581795,0.6308463992803867
+122,16,0.4549938597590897,2.0,1.3558271399468138,0.0007041376244279219,0.03634161722358901,0.8245140811709396,1,0.6539589892886928,0.6113675468120418
+122,17,0.4612918788312228,1.95,1.3534423603288837,0.0007036539388384912,0.03611831116132192,0.8130345352646573,1,0.6885318282714996,0.58626382507541
+122,18,0.5383562505102046,2.0,1.37704311656879,0.0006962922692918608,0.03628099018043988,0.8275604907330337,1,0.7338884524330567,0.6493362317899398
+122,19,0.5472576501919406,2.0,1.3496352741812647,0.0007028127214520927,0.035715268563255666,0.8236159904503623,1,0.7594841269250658,0.678213331406381
+122,20,0.5665712229376383,2.0,1.3511787451128028,0.0007116350317954643,0.03612855102314063,0.8238426633455413,0,0.7888623044689068,0.7034210038335849
+122,21,0.6098966441359681,2.0,1.3862943611198844,0.0007001722195526525,0.03648857448905585,0.8288777842514964,0,0.8849411734695268,0.6864005824938579
+122,22,0.6230437844063885,2.0,1.3525314267652266,0.0006838336115129607,0.0359726347181987,0.8240308240504317,0,0.9478403102127589,0.6796922010709496
+122,23,0.6238127200812018,2.0,1.350470265748213,0.0006814365504674747,0.03540368498001224,0.8237310516687121,0,0.974818250454686,0.7129513996644248
+122,24,0.6093254882671286,2.0,1.3524356336639056,0.0006853857256319783,0.035568769246292924,0.8240173833870879,0,0.9829096822039637,0.7205387179518106
+122,25,0.6563913334973986,2.0,1.3509204686160645,0.0006861271830757295,0.035642269762078974,0.82379777253241,0,1.0,0.7213044449913287
+122,26,0.6170450521819304,2.0,1.3488365169913112,0.0006834477161130766,0.03578609253159099,0.8234942934555552,0,1.0,0.7234835072731012
+122,27,0.6574194775084046,1.95,1.3471624469453034,0.0006841085029920893,0.03600261821586528,0.812072086762624,0,1.0,0.7247315916946819
+122,28,0.6418235800844245,1.95,1.3440375139556022,0.0006809491374707894,0.03521936413172065,0.8115937562442156,0,1.0,0.7394119336147483
+122,29,0.6583056487772043,2.0,1.3460235581222852,0.0006856296450554586,0.0354648883992613,0.8230856891456488,0,1.0,0.7276854959240143
+122,30,0.6231877024390239,2.0,1.3446862062782572,0.0006828418655592371,0.035285725356790046,0.8228900530624786,0,1.0,0.7439590081300796
+122,31,0.6628592168862171,1.95,1.3430577365863545,0.0006840080655029274,0.035455788921426576,0.8114448294487923,0,1.0,0.7428640562873902
+122,32,0.6495732903793694,1.95,1.33969782399729,0.0006804853983169069,0.03588910167920948,0.8109291374759979,0,1.0,0.7652443012645644
+122,33,0.6546060847830115,2.0,1.3414685205894932,0.0006853818272533587,0.035791521936141185,0.8224213556438572,0,1.0,0.7820202826100383
+122,34,0.6408410082968454,2.0,1.3433116528655922,0.0006900645206867801,0.03602499979492321,0.8226917411077013,0,1.0,0.8028033609894848
+122,35,0.6898920480956393,2.0,1.3669439003512551,0.0006879211441078778,0.03617733721778572,0.8261121147618581,0,1.0,0.7996401603187976
+122,36,0.6687692281497883,2.0,1.3442133339517044,0.0006885498916226513,0.035308856848320955,0.8228227894747832,0,1.0,0.8292307604992945
+122,37,0.6791943119762112,1.95,1.3722401847716168,0.0006903707533655501,0.03640582266836998,0.8158711909313882,0,1.0,0.8639810399207036
+122,38,0.6630782114349397,2.0,1.3696828031651958,0.0006884343548779092,0.035929677222884995,0.8265053564143384,0,1.0,0.876927371449799
+122,39,0.6917757502436569,2.0,1.3738828131481506,0.0006919390000280938,0.03610479873039894,0.8271077903966659,0,1.0,0.9059191674788563
+122,40,0.6770214276745605,2.0,1.3715934064621942,0.0006905974715706892,0.036063414567521754,0.8267797746427574,0,1.0,0.9234047589152017
+122,41,0.7194695470650949,2.0,1.3745173310852494,0.000694474215160906,0.036461134170830016,0.8271992327146503,0,1.0,0.9315651568836497
+122,42,0.7175170388920694,2.0,1.374279737546683,0.000693185999433201,0.03642261394721582,0.8271648999622959,0,1.0,0.9250567963068979
+122,43,0.7180550543707875,2.0,1.3735209422300643,0.0006920411025750307,0.03637687647657727,0.8270560657595717,0,1.0,0.9268501812359583
+122,44,0.7177726625981583,2.0,1.372375518735939,0.0006909184763985142,0.036204899240926805,0.8268918481081264,0,1.0,0.9259088753271942
+122,45,0.6805514980111158,2.0,1.3709563567052514,0.0006898135913681589,0.03615382244318026,0.8266882959611662,0,1.0,0.9351716600370528
+122,46,0.7246679410170067,1.95,1.373555791164348,0.0006921220343344403,0.03635249236616568,0.8160692720266526,0,1.0,0.9488931367233555
+122,47,0.7116932358859549,1.95,1.371737436365879,0.0006905402310075593,0.03619893016682525,0.8157957042974927,0,1.0,0.972310786286516
+122,48,0.7381361100719062,2.0,1.370170859156761,0.0006898803469313001,0.03611428976245516,0.8265757442478125,0,1.0,0.9604537002396869
+122,49,0.7323785714810104,2.0,1.373879350387189,0.0006917142306649561,0.03631432513615887,0.8271072309351641,0,1.0,0.941261904936701
+123,0,0.14344974770899144,2.0,1.3827201252828276,0.0007035237422349811,0.03631090128767488,0.8283711736701447,0,0.1377913579002783,0.2277773484962671
+123,1,0.12556776213649906,1.95,1.383354238838672,0.0007029120767527681,0.0366915333731475,0.8175386877133723,0,0.13682887392892398,0.23612070854976494
+123,2,0.11924737719450482,2.0,1.3835741982235399,0.0007024096824832118,0.03671615491505485,0.8284922485946549,0,0.12394483136479711,0.23223148216195322
+123,3,0.20853704295406944,2.0,1.3838231572885922,0.000701872229898002,0.0364845648125765,0.8285274682915206,0,0.23648089924032667,0.21314894419312935
+123,4,0.22597500831325215,2.0,1.3741908125907774,0.0006961801781794426,0.03637973624033884,0.8271530427650159,0,0.3007221415528579,0.2189538389736966
+123,5,0.2677953827404191,2.0,1.3734762392791757,0.0006959791157521711,0.03635934092624771,0.8270507981816559,1,0.39209969060943883,0.20318502165547841
+123,6,0.2761650790723203,2.0,1.3847101156064454,0.0006991397347059676,0.03633040125843891,0.8286526655218085,1,0.4158293397844148,0.2327778105285145
+123,7,0.24836056758016165,2.0,1.3840420632855166,0.0007024520181520004,0.036721971524015164,0.8285587306817643,1,0.4448506742853442,0.2014009928867465
+123,8,0.2901578280364871,1.95,1.3842170646569059,0.0007018636914457002,0.03671967821881195,0.8176670468707833,1,0.46031257208497206,0.22010933067499433
+123,9,0.30877189078686873,1.95,1.3847967072816991,0.0007014874217376766,0.036431808201776585,0.8177533363611207,1,0.49149100791360484,0.24058495873808933
+123,10,0.30403357229457123,2.0,1.3852311532349735,0.0007011020758870877,0.036762351952658576,0.828727190709226,1,0.5258352701538661,0.2456648807767492
+123,11,0.3455243425351388,2.0,1.3849802276348144,0.0007011933135424068,0.03676191338464972,0.8286915976891198,1,0.5569210453233198,0.2758530813527031
+123,12,0.3991399192266126,2.0,1.3852853420005142,0.0007007968852949223,0.03645164478975553,0.8287347954072616,1,0.6245693097713766,0.3310406510602066
+123,13,0.3787728789868718,2.0,1.383021225628731,0.0006994574672732122,0.036624024220616,0.8284128215897889,1,0.6352954984532555,0.3488489320185652
+123,14,0.4195879270021599,1.95,1.382558109416221,0.0006995282739350393,0.03668131590859642,0.8174188896844429,1,0.6721325781269402,0.36911631917127946
+123,15,0.4639679351815106,1.95,1.3821399074682432,0.0006987375578164105,0.03642188297245504,0.8173562306613408,1,0.7104383956486356,0.43264192307352106
+123,16,0.5090631611538571,1.95,1.378136419369602,0.0006958988241562271,0.03650531310191829,0.8167569606194144,1,0.7751998893466077,0.4966106847173797
+123,17,0.512660570492282,1.95,1.37881327022547,0.0006955781349010663,0.03633321597514597,0.8168581438530058,1,0.8038527385926972,0.5037315835173435
+123,18,0.5632248038565749,2.0,1.3770530708006579,0.000694027595258676,0.036281120557418486,0.8275612648849536,1,0.8575681198389938,0.5673251864032577
+123,19,0.5466121141602771,2.0,1.3787723948979627,0.0006949629044817538,0.03644567198105495,0.8278067471350476,1,0.8723016993313293,0.5923047814258179
+123,20,0.592607922730781,2.0,1.3781306175052113,0.0006945467842027452,0.03650478298447672,0.8277151285029188,1,0.9046712737938953,0.6357980440440761
+123,21,0.6090688087886517,2.0,1.3426672795015768,0.0006701701550567588,0.035827982515604276,0.8225919203214594,1,0.926677883374828,0.661325518129068
+123,22,0.5871692181371884,2.0,1.349817962246444,0.0006765043042187785,0.035884947746891833,0.8236348854526574,1,0.9758075229072186,0.6228206965810031
+123,23,0.5882259424754848,1.95,1.346851831614265,0.0006747527119465615,0.03532564583731908,0.812021822683541,1,1.0,0.5940864749182823
+123,24,0.5779279937376409,2.0,1.3777338913024773,0.0006943026093658667,0.03640049363012418,0.827658477223975,1,1.0,0.5597599791254697
+123,25,0.5906856009310999,2.0,1.3798100664198745,0.0006957718936979127,0.03642873427934535,0.8279548398380195,1,1.0,0.568952003103666
+123,26,0.6180330177637523,2.0,1.379083188039056,0.0006952263766809622,0.03657446229412245,0.8278511190233364,1,1.0,0.5934433925458408
+123,27,0.6298107103949565,2.0,1.3780890447006844,0.0006945867681616336,0.036427791507108315,0.827709211428006,1,1.0,0.6327023679831882
+123,28,0.6440563739051017,2.0,1.3412541753943776,0.0006713414588461559,0.035741864265195926,0.8223859479098418,1,1.0,0.6801879130170054
+123,29,0.6730945235405116,2.0,1.3476451937643525,0.0006797438436079438,0.03543419341170094,0.8233199886085683,1,1.0,0.7436484118017049
+123,30,0.6890561977374101,2.0,1.347339171345906,0.0006782080005090792,0.035479245519276496,0.823275021993119,1,1.0,0.7968539924580333
+123,31,0.6415930923094185,2.0,1.346324562994081,0.0006765755057931927,0.03551894264660622,0.8231268795483448,1,1.0,0.7719769743647285
+123,32,0.6276417850562597,1.95,1.343169590136516,0.0006750330440156607,0.03556858142399867,0.8114591964641142,1,1.0,0.7254726168541987
+123,33,0.6677853535248518,2.0,1.3387118018520914,0.0006726108391388147,0.03551237078294258,0.8220146572835456,1,1.0,0.7592845117495057
+123,34,0.6463017825851348,2.0,1.3457438486068443,0.0006815852275543912,0.03586379065056726,0.8230437773085653,1,1.0,0.7543392752837828
+123,35,0.6256068966933095,1.95,1.352514259332552,0.0006815138037523492,0.035565625306722276,0.8128866791973751,1,1.0,0.7186896556443648
+123,36,0.6191044896268905,1.9,1.3484506106188325,0.0006793641167272433,0.035591877911247106,0.8005618034407815,1,1.0,0.6970149654229679
+123,37,0.6707608289639009,1.95,1.3440071442741133,0.0006770550429006954,0.035844006629401036,0.8115879214803694,1,1.0,0.7358694298796695
+123,38,0.6218824949509233,1.95,1.344613117247781,0.000676160497311849,0.035882056959476515,0.8116802916384845,1,1.0,0.7062749831697441
+123,39,0.6125623287851407,1.9,1.3412602640842515,0.0006744007385771696,0.03551988279793591,0.7994097007505726,1,1.0,0.6752077626171358
+123,40,0.6057435685343484,1.95,1.336508450542921,0.0006718502023906446,0.035230813991567744,0.810436994728582,1,1.0,0.6524785617811615
+123,41,0.6213337020600846,2.0,1.3341060798008577,0.000670506529603799,0.03511637725205536,0.8213391926755375,1,1.0,0.671112340200282
+123,42,0.625180619983159,2.0,1.342305663387279,0.0006719917620146512,0.035114452053501555,0.8225396737092364,1,1.0,0.6839353999438631
+123,43,0.6049750053797668,2.0,1.3474335794609038,0.0006730869579733272,0.03523260622419697,0.8232872672500218,1,1.0,0.6499166845992226
+123,44,0.660748470471841,1.95,1.3440768644491874,0.000670905732659146,0.035517514037142685,0.8115967018235635,1,1.0,0.7024949015728034
+123,45,0.6371363705722799,1.95,1.3430618240778103,0.0006701767230615969,0.03550395391428246,0.8114412223677764,1,1.0,0.7237879019075993
+123,46,0.6235130229384604,1.9,1.3473330352166197,0.0006722705446241817,0.03510893049592523,0.8003810418180115,1,1.0,0.711710076461535
+123,47,0.6810446654478575,1.95,1.342934072556281,0.0006689870516105492,0.035828931443073794,0.8114213109705526,1,1.0,0.7701488848261915
+123,48,0.6792707169187964,1.95,1.3437181719743452,0.0006704067546532688,0.035401203902005365,0.8115416962963217,1,1.0,0.7975690563959879
+123,49,0.6867304878581328,2.0,1.3516235948479864,0.0006762463728424699,0.03603864727522203,0.8238969443764907,1,1.0,0.8224349595271093
+124,0,0.1685954073598224,2.0,1.3801829436505595,0.0007025421043979716,0.03624708999244315,0.828009876365891,0,0.16974405633837786,0.20232594941490412
+124,1,0.21517887360454302,1.95,1.3802659111875828,0.0007038468585100836,0.036624215525678155,0.8170778319808146,0,0.281166913010928,0.17570702800057272
+124,2,0.19849872246822745,1.95,1.3703753538688335,0.0006984735557179284,0.03634733908418866,0.8155933182953204,0,0.3036137855130881,0.19017736087664072
+124,3,0.23919168273317512,2.0,1.3708157514761043,0.0006970744802141017,0.03652005191989381,0.8266702306411753,0,0.35941221931204653,0.1847559833611883
+124,4,0.2053989690846469,2.0,1.3703538241961493,0.0006969432025345739,0.036361958566890215,0.8266039950501026,0,0.37323547856736256,0.1870159255256729
+124,5,0.2755726646402351,1.95,1.3726177760282805,0.0006961735948333926,0.036391034370380805,0.8159296510061226,0,0.43449151151252347,0.20592020011741916
+124,6,0.3008017043095548,1.95,1.3738286656749623,0.000692943688489444,0.036314363877351,0.8161104736351874,0,0.500337979741585,0.20222170804306933
+124,7,0.276187244358736,1.95,1.3732044318880385,0.0006927600396527123,0.03623802418918378,0.8160167186385838,0,0.5267464294251728,0.21829557529555613
+124,8,0.36291917079881464,1.9,1.3753650857398894,0.0006933161050135656,0.03626375610425277,0.8048286831433584,0,0.6300071558441703,0.20305436153715495
+124,9,0.3817752405461443,1.95,0.9623201347525745,0.0010733897549891139,0.035597452161782325,0.7463930885554932,0,0.6934277090213635,0.21468052312532973
+124,10,0.4260030705082014,2.0,0.9693532162839721,0.0010979562206358008,0.03568339247614851,0.761614085640718,0,0.8010687733819853,0.1852518705180241
+124,11,0.41124751651149877,2.0,1.176635192959635,0.0007962369629684966,0.03436050009122642,0.7970936555650918,0,0.8308036375900144,0.19642020491830992
+124,12,0.45351572616302865,2.0,1.1738891571900905,0.0007945750886763806,0.034439563527699876,0.7966486236847512,0,0.8860265880731096,0.1970169697792826
+124,13,0.4489585956795966,2.0,1.179027163118081,0.0007842232369869924,0.03421083260570673,0.7974763662147075,0,0.9151093809213608,0.20971614437017416
+124,14,0.49844240533112955,2.0,1.3232519098845046,0.0006626975023603641,0.03488906798974397,0.8197385727513596,1,0.9751235952247774,0.2279765574707286
+124,15,0.5330065759364628,2.0,1.3513536981024887,0.0007124279119737936,0.035729005873802434,0.8238682822309978,1,1.0,0.27668858645487615
+124,16,0.5533131611863317,2.0,1.3483183973501502,0.0007117824472085874,0.03597545549288731,0.8234272109939392,1,1.0,0.3443772039544386
+124,17,0.5479520717651674,2.0,1.3449951800585154,0.0007110991098388275,0.036167106545250634,0.8229433137727116,1,1.0,0.35984023921722447
+124,18,0.5362506455707022,2.0,1.3489410003116675,0.000706348136477197,0.036402588060780436,0.823516136413134,1,1.0,0.3875021519023408
+124,19,0.5869384812702672,2.0,1.35024157737961,0.0007153933038422984,0.0363730977131763,0.8237077062321426,1,1.0,0.45646160423422344
+124,20,0.5375874066921983,2.0,1.3776653818311515,0.0006943395732976899,0.03649708253329397,0.8276487153644818,1,1.0,0.4252913556406608
+124,21,0.57921361691908,1.95,1.379174529927706,0.0006959514164144656,0.036460455114448585,0.8169122941102541,1,1.0,0.46404538973026677
+124,22,0.5646048705062281,1.95,1.377917762917259,0.0006954446632798567,0.036451374978707526,0.8167240971658962,1,1.0,0.4820162350207601
+124,23,0.5475756972364165,2.0,1.3772124527695366,0.0006945159131422573,0.0363279080434218,0.8275841474359666,1,1.0,0.4585856574547216
+124,24,0.5367722661823991,2.0,1.378647572866119,0.0006963517510104425,0.03639269613837585,0.8277893499050301,1,1.0,0.42257422060799704
+124,25,0.5491743091301268,2.0,1.3793640749336986,0.0006978738789072641,0.03643060940144208,0.8278919000219953,1,1.0,0.43058103043375573
+124,26,0.5501976461953865,2.0,1.3787444724340252,0.0006968402043781469,0.03658874130898719,0.827803302154264,1,1.0,0.4339921539846213
+124,27,0.5795968310273617,2.0,1.378030286783281,0.0006958180291782841,0.036308389697097654,0.8277011831808744,1,1.0,0.4653227700912054
+124,28,0.5588317999401996,2.0,1.3772069571345804,0.0006957879897371158,0.036312024489100966,0.8275837262926805,1,1.0,0.46277266646733184
+124,29,0.5677556758129308,1.95,1.3763969002055312,0.0006947251362848378,0.03638806338435656,0.8164961202628512,1,1.0,0.49251891937643616
+124,30,0.5493098653367648,2.0,1.3752296245216415,0.0006935400922787352,0.03633720948117436,0.8273007577579541,1,1.0,0.46436621778921616
+124,31,0.5678684006375941,2.0,1.376299721930849,0.0006951730584846043,0.03644456553501002,0.82745405983002,1,1.0,0.49289466879198024
+124,32,0.5737359121113935,2.0,1.3753468207995563,0.0006940016427226198,0.036431850571621835,0.827317633318917,1,1.0,0.5124530403713116
+124,33,0.5551045508664506,2.0,1.374240956226222,0.0006928598242394134,0.03621255612641725,0.8271592623286215,0,1.0,0.48368183622150207
+124,34,0.5717829225165805,2.0,1.0887004083871292,0.0004564322807430019,0.028185355321140138,0.7823839397325104,0,1.0,0.505943075055268
+124,35,0.5968990902137241,2.0,1.1027594407083459,0.00047739639679851033,0.02827604477806972,0.7847751982166113,0,1.0,0.48966363404574687
+124,36,0.5898962339054779,2.0,1.094806472764503,0.00047016833151696533,0.028297068327432468,0.7834264225636539,0,1.0,0.46632077968492586
+124,37,0.565251469039789,2.0,1.0868693446115854,0.00046314535792794714,0.028194590235502026,0.7820743111659167,0,1.0,0.48417156346596285
+124,38,0.5887834679872119,2.0,1.098958571254689,0.00048487687607907785,0.028632988983069967,0.784135057194197,0,1.0,0.4626115599573728
+124,39,0.5667754824215906,2.0,1.0913763075531255,0.00047799414521860475,0.028408896141338617,0.7828465232355672,0,1.0,0.4892516080719686
+124,40,0.5540269241526081,2.0,1.1010748141177171,0.0004995190451349991,0.028669725220066444,0.7844980033264191,0,1.0,0.5134230805086938
+124,41,0.5791306798366548,2.0,1.1220799388458487,0.0005088749159535839,0.029103026802261928,0.7880310496198368,0,1.0,0.5304355994555159
+124,42,0.6070581400895084,2.0,1.1289859190246485,0.0005275792612208293,0.02972832477619375,0.78918854067445,0,1.0,0.5235271336316945
+124,43,0.5598095164637561,2.0,1.1221240285569878,0.0005208810705669175,0.02955487695751708,0.7880424250297706,0,1.0,0.5326983882125204
+124,44,0.6038644303613813,2.0,1.1405381190352553,0.000531567462165716,0.02989989811047623,0.7911053776169302,0,1.0,0.5128814345379373
+124,45,0.6008183802707355,2.0,1.1338203435442922,0.0005248092788970051,0.02980672453047851,0.7899908002588321,0,1.0,0.5027279342357849
+124,46,0.5937060222405777,2.0,1.1270157043873412,0.0005179926299278626,0.029554908258238727,0.7888573758209011,0,1.0,0.4790200741352587
+124,47,0.5877466683676242,2.0,1.1201876666173793,0.0005112698197999572,0.02902092241783961,0.7877155967117649,0,1.0,0.4591555612254139
+124,48,0.5856678834391658,2.0,1.113327954367613,0.0005044315554828089,0.028993741851495464,0.7865639575328921,0,1.0,0.4522262781305521
+124,49,0.5786036880948142,2.0,1.1063864406899593,0.0004976886632135986,0.02894878045687695,0.785394017549502,0,1.0,0.4286789603160472
+125,0,0.16019582901587923,2.0,1.3725142674090458,0.0007075544329072688,0.03633529583778093,0.8269164700460331,1,0.13074648972792638,0.2263241104156956
+125,1,0.1440960404975976,1.95,1.3724020578624847,0.0007063363395977366,0.036530912438120164,0.8159003034702954,1,0.17364804947037432,0.21545606903149297
+125,2,0.19064661492862967,2.0,1.3751415673653975,0.0007053051564049381,0.03652177793009779,0.8272915383148407,1,0.1952552937279435,0.24181499145817417
+125,3,0.17187782180517017,2.0,1.3752581954509209,0.0007041022827175819,0.03649385779986251,0.8273078578208446,1,0.2556838322247146,0.19868096305094776
+125,4,0.1788720179525011,2.0,1.3854306396581102,0.0007000024390841356,0.0366919317681782,0.8287551915222504,1,0.2591286583042094,0.18406851543605787
+125,5,0.21250614535708692,2.0,1.3853708226630528,0.0007000777629152873,0.036733213207918114,0.8287467235066904,1,0.2788645282415206,0.2032011135349289
+125,6,0.2316109867781836,2.0,1.3844432340253245,0.0006988985863892887,0.036316691160845974,0.8286146998773397,1,0.30655407319695976,0.22996452499799894
+125,7,0.2452522681411922,2.0,1.3842108488294578,0.0006987291562993274,0.03664168561890597,0.8285816476529134,1,0.3215894253389039,0.2553883266854354
+125,8,0.2332134830553729,2.0,1.3839377170454437,0.0006985112579339882,0.036661213455551206,0.8285427882347643,1,0.3453713710487424,0.25021644878625315
+125,9,0.23754127212011328,2.0,1.3840084196199538,0.0006986057736900446,0.03652127735240686,0.8285528588359747,1,0.36231113002111337,0.2420560670388931
+125,10,0.2335427679548711,2.0,1.3839934881938554,0.0006986918107066461,0.03662403389472835,0.8285507622152891,1,0.40385834402100224,0.20666476782156737
+125,11,0.31037491238891773,2.0,1.3852698058355077,0.0007011026612343295,0.03676378118901099,0.8287326770952722,1,0.446073372906054,0.2731518774216539
+125,12,0.34691238712050426,2.0,1.3851801326427264,0.0007014953879510361,0.03645832268100098,0.828720060460711,1,0.4864517161379646,0.34110566888439464
+125,13,0.3870513514536335,2.0,1.3850126645963081,0.0007018795042790739,0.03671493134410856,0.8286963972721031,1,0.5427496883381525,0.3998382537279084
+125,14,0.4000670066617498,2.0,1.3847655507707566,0.0007022590589508271,0.03675739847866968,0.8286614222502103,1,0.5743702596639073,0.4343963426539564
+125,15,0.4292978679760134,2.0,1.384272478820137,0.0007010717722773098,0.03642330246137694,0.8285910664706924,1,0.6246592788683641,0.46478052142889237
+125,16,0.4237058655576752,2.0,1.363911117368012,0.0006884685233152744,0.03629380353816458,0.8256761793919467,1,0.6410045028729155,0.49101354802836333
+125,17,0.4296429301904293,2.0,1.365445576664258,0.0006878538794693077,0.0360672854589338,0.8258967547088473,1,0.6623829739297962,0.48229913539503594
+125,18,0.4428023747792137,2.0,1.3662681638260303,0.0006872618253287148,0.035706838816247435,0.8260148337105491,1,0.6913788687992043,0.4875027575317731
+125,19,0.4505990937690694,2.0,1.3665198066104987,0.0006868702559479928,0.03603246520124276,0.8260508828875707,1,0.7098793523096054,0.4888245094840908
+125,20,0.4652737983406393,2.0,1.366314959530435,0.0006863831737292836,0.036110367126529805,0.8260213062790825,1,0.7421978074428706,0.4946489178783036
+125,21,0.46747726452592553,2.0,1.3657493173483393,0.0006859995868717559,0.03634247884555905,0.8259398924976546,1,0.7933135734931528,0.46717278376221455
+125,22,0.5494649668098416,2.0,1.3694327408616485,0.0006892309562425431,0.036277012901666,0.8264697244829132,1,0.850056272166233,0.5314748598111612
+125,23,0.5881874575980623,2.0,1.3720588392879978,0.0007001362764120254,0.036453864682562856,0.8268491528086669,2,0.9023083792691367,0.5908803529680255
+125,24,0.536720261820395,2.0,1.3501580950577428,0.0006800158834942003,0.03615631920432032,0.8236853078232986,2,0.9346353835093769,0.542887028055481
+125,25,0.6471508165304231,1.95,1.352430706170565,0.0006793221205987923,0.0361184044801579,0.8128733035140454,2,0.9945209492556603,0.5644747894271964
+125,26,0.5567974425108393,1.95,1.3566718067870362,0.0006870265194534877,0.03553642199402759,0.8135199003403616,2,1.0,0.5226581417027975
+125,27,0.5962109198264631,1.9,1.3581443417770773,0.0006856618203214481,0.03569767596038324,0.8021070207263111,2,1.0,0.5540363994215437
+125,28,0.6298905903442545,1.9,1.3608575596371795,0.0006847844253693623,0.036347807235521404,0.8025370623816034,2,1.0,0.5996353011475151
+125,29,0.5640049195048524,1.9,1.357537391897149,0.0006829260307127047,0.03607493053491699,0.8020097922566762,2,1.0,0.5466830650161746
+125,30,0.6479527798311253,1.8499999999999999,1.3585795491610075,0.00068232538204313,0.035827531826550046,0.7900031164446324,2,1.0,0.5598425994370846
+125,31,0.6067382212909382,1.8499999999999999,1.3625417742055792,0.0006884102979413029,0.03596842663340327,0.7906617014273833,2,1.0,0.5891274043031274
+125,32,0.561674334620648,1.7999999999999998,1.365542466650556,0.0006879681167124724,0.0363922348926974,0.7784951718941919,2,1.0,0.5389144487354933
+125,33,0.6494470864196128,1.7499999999999998,1.3656395548383349,0.0006869208706348105,0.03606146595191629,0.7653096246931966,2,1.0,0.5648236213987095
+125,34,0.6300260010111711,1.7499999999999998,1.3688930831104753,0.0006917738786569571,0.036185088347008156,0.7658952293071398,2,1.0,0.6000866700372368
+125,35,0.6174136641983212,1.7999999999999998,1.344594233546561,0.0007540208594420731,0.03666769515410476,0.774884830230045,2,1.0,0.624712213994404
+125,36,0.5743149189857661,1.8499999999999999,1.351837762762101,0.000744632181573382,0.03668772100097862,0.7889032327737998,2,1.0,0.5810497299525537
+125,37,0.5621240794591993,1.7999999999999998,1.3617026290852623,0.0006887693910516709,0.0362293039752871,0.7778325975299127,2,1.0,0.5404135981973308
+125,38,0.5521766257158578,1.8499999999999999,1.3617640762976044,0.0006870195711404954,0.03604745747471472,0.7905324904750772,2,1.0,0.5072554190528591
+125,39,0.6190427353909604,1.9,1.3624053922315624,0.0006861006017696867,0.03604898797506288,0.8027826513691338,2,1.0,0.5634757846365345
+125,40,0.6290395435207665,1.9,1.360236481923072,0.0006851290071173783,0.03620266953197064,0.8024387301325456,2,1.0,0.5967984784025548
+125,41,0.6459635846253746,1.95,1.357174486695282,0.0006835118184177711,0.03585065825300006,0.8135950814508572,2,1.0,0.6532119487512487
+125,42,0.6861569923627803,2.0,1.356564053465188,0.0007385837156427709,0.03677078472584963,0.8246306432035039,2,1.0,0.687189974542601
+125,43,0.5929942661122622,2.0,1.3547813492070127,0.0007393766419860387,0.03665257090865849,0.8243729179123006,2,1.0,0.6433142203742076
+125,44,0.6290336882178541,1.95,1.3592446673282481,0.0007329894332363772,0.036716799598228586,0.8139238247783275,2,1.0,0.663445627392847
+125,45,0.6863249369125061,1.95,1.3634141472480061,0.0007279083699097015,0.03669471543174524,0.8145529387322585,2,1.0,0.6877497897083534
+125,46,0.5927842774955988,1.95,1.3609246066957708,0.0007291687332110152,0.03666391647924387,0.814176964418779,2,1.0,0.6426142583186627
+125,47,0.6369057319441058,1.9,1.3646628659594515,0.000723863954886215,0.03660796593546202,0.8031517573167863,2,1.0,0.6896857731470194
+125,48,0.6692279900564779,1.9,1.3682017919681946,0.0007196132822874893,0.03632693270818424,0.8037093166586843,2,1.0,0.7307599668549261
+125,49,0.7054265626529627,1.9,1.3671449718038975,0.0007236487573335814,0.03672911118281817,0.8035438125996016,2,1.0,0.7514218755098757
+126,0,0.182101673908731,1.9,1.3789337783848858,0.000704164826690723,0.03623567846417766,0.8053920425535731,0,0.20261016853441843,0.1701920216498787
+126,1,0.17609607701786653,1.8499999999999999,1.3576286109383975,0.0006907275063470389,0.03585492427560512,0.7898481033247817,0,0.2397079285716359,0.20070968529737396
+126,2,0.2332605590924532,1.9,1.3711142004532202,0.0006930969009245219,0.036423062704807725,0.8041600219258955,0,0.3297970883681797,0.17113907915060442
+126,3,0.2252563399850592,1.9,1.3593373029409153,0.0006878335839063917,0.036322911178664825,0.8022970017723864,0,0.37192952192035666,0.18828177072305516
+126,4,0.2576743917648645,1.95,1.3594552545954857,0.000686612356877118,0.03600204234679757,0.8139416701592871,0,0.4200189789318085,0.16555600064047035
+126,5,0.29459490958494977,1.95,1.3615290992357776,0.0007189788125456452,0.03642472536090548,0.8142653202678238,0,0.4933765396476457,0.15748097908630487
+126,6,0.28233497088364007,1.95,1.3611352170727096,0.0007226390242688907,0.036252440898774954,0.8142068506084248,0,0.5158699919235747,0.18662324704736705
+126,7,0.2752713230491718,2.0,1.3624986453210375,0.0007189523484575814,0.03644927728288867,0.8254815649407607,0,0.5373148353270458,0.20115129639451151
+126,8,0.3581346708544646,2.0,1.3778991606206454,0.0007044670897231296,0.03664463969524409,0.8276849493381339,0,0.6308709154468802,0.18595434891904167
+126,9,0.37095064543952816,2.0,1.2717785335534209,0.0007319907187978646,0.034520275753717425,0.8120281081035996,0,0.6943091226261625,0.17742332129687713
+126,10,0.4191821084432533,2.0,1.2721131395691276,0.0007379588045697918,0.03455904187342666,0.8120809980497341,0,0.8023221402880139,0.16084417442682594
+126,11,0.3970564233988418,2.0,1.1654342475693058,0.0007764095197026806,0.03390534200233025,0.7952695807227513,0,0.8225705906173022,0.1600939571730695
+126,12,0.3886192172652979,2.0,1.162700994779338,0.0007745492657768059,0.033970350347729175,0.7948235978808573,0,0.8485513781815112,0.16399555330897808
+126,13,0.42678699667650905,2.0,1.1672101965301334,0.0007980413029804253,0.034202314942165093,0.7955656183010275,0,0.872240755522509,0.1929689815583513
+126,14,0.4384685557661844,2.0,1.164293768473534,0.0007961974966386162,0.03436649954248613,0.7950902779481172,0,0.896706545512591,0.19928645853715968
+126,15,0.48619041125261614,2.0,1.16120598748221,0.0007942511145256842,0.034328127380447895,0.7945861175624155,0,0.9674458159267016,0.19737361627311825
+126,16,0.48116386000081385,2.0,1.1669758456263248,0.0007837863108919091,0.03420472424684354,0.7955228630309479,0,1.0,0.20387953333604605
+126,17,0.48877096412100085,2.0,1.3432792774219369,0.000686206737078187,0.035796315206356726,0.8226858929546759,0,1.0,0.2292365470700027
+126,18,0.5108445227012611,2.0,1.3411280451471435,0.0006853789558402352,0.03593783525128938,0.8223716247909256,0,1.0,0.20281507567087012
+126,19,0.5048615134582151,2.0,1.348217573441072,0.0006841108259363728,0.035930256380176676,0.8234045039491851,0,1.0,0.18287171152738338
+126,20,0.48244755898731156,2.0,1.1569282857891485,0.0007775327221342982,0.03413416884817354,0.7938815640750371,0,1.0,0.2081585299577051
+126,21,0.4861907540271325,1.95,1.3519507417342411,0.0006836229198736812,0.03555549402817169,0.8128015937990976,1,1.0,0.22063584675710832
+126,22,0.47296211328777765,2.0,1.338402621129909,0.0007135408112574489,0.03606410039872191,0.8219813963278161,1,1.0,0.20987371095925872
+126,23,0.5311568096478848,2.0,1.3461886574895607,0.00070831230798942,0.03608301542898638,0.823116334012199,1,1.0,0.2705226988262826
+126,24,0.5002304342023552,2.0,1.3428860112875507,0.0007074328354040192,0.03636521061571445,0.8226347125941723,1,1.0,0.2674347806745174
+126,25,0.5427510540977093,1.95,1.3443610977632536,0.000717700025637243,0.036401634842907406,0.8116544668227595,1,1.0,0.30917018032569754
+126,26,0.5596994579391368,1.95,1.339829978239679,0.0007171864043621437,0.035562106535761,0.8109606519779834,1,1.0,0.3656648597971224
+126,27,0.5307197313595432,2.0,1.3361137620223666,0.0007163605863438181,0.03581896697348991,0.821647051771569,1,1.0,0.36906577119847733
+126,28,0.5628610557536416,1.95,1.3384004173961663,0.0007272351505843964,0.035922594729856504,0.8107444816423091,1,1.0,0.40953685251213856
+126,29,0.5463753677580363,1.95,1.3664002663144783,0.0007012447377790305,0.036440430273628324,0.8149955472151135,1,1.0,0.4212512258601207
+126,30,0.5754313065045272,2.0,1.3655756917229385,0.0006991851166432853,0.0362701224407713,0.825918721695965,1,1.0,0.45143768834842385
+126,31,0.5381059038783977,2.0,1.3658440570151482,0.0007012501224486442,0.036388795860826696,0.825957896770246,1,1.0,0.427019679594659
+126,32,0.5294243341101235,1.95,1.3650167365006989,0.0007020915997851161,0.036223970394308365,0.8147871063069361,1,1.0,0.39808111370041144
+126,33,0.5448579273696804,2.0,1.3450789371835872,0.0007172866347288075,0.036066959299993734,0.8229573205278847,1,1.0,0.41619309123226783
+126,34,0.5504295198273014,2.0,1.3661970525816263,0.0007008192053707253,0.03616809066262327,0.8260085106946685,1,1.0,0.43476506609100446
+126,35,0.5949229445316009,2.0,1.3654050363377321,0.0006990034860461752,0.036265199619795775,0.8258941317797535,1,1.0,0.4830764817720026
+126,36,0.5605204397035821,2.0,1.3708740791875036,0.0006982424998504946,0.03644231986655922,0.826678922769096,2,1.0,0.4684014656786071
+126,37,0.5780509378040299,1.95,1.350810937306772,0.0006804100676311419,0.03611329234414108,0.8126271264317462,2,1.0,0.49350312601343277
+126,38,0.5829488650365188,2.0,1.3544190626779347,0.0006798352629779725,0.03540631447302037,0.8243032133204795,2,1.0,0.5098295501217291
+126,39,0.6105046420411506,2.0,1.3582855951208899,0.0006808575089442576,0.035642428168690427,0.8248627866255556,2,1.0,0.535015473470502
+126,40,0.6209006047590424,2.0,1.3551461174072559,0.0006787616350982061,0.035398454308437396,0.8244081751237922,2,1.0,0.569668682530141
+126,41,0.6320821625456471,2.0,1.3517355987779525,0.0006766515717026332,0.0356676320420305,0.8239133120959994,2,1.0,0.6069405418188235
+126,42,0.6429457334529974,2.0,1.3765371794728565,0.0007120526187923157,0.036657904271788465,0.8274927790351337,2,1.0,0.6431524448433246
+126,43,0.6589976597283883,2.0,1.3750058449550937,0.0007129510930584639,0.03659792103464408,0.8272743304914928,2,1.0,0.6966588657612941
+126,44,0.6945838424316014,2.0,1.3732212574778866,0.0007137874131257563,0.03672706896027437,0.82701941841934,2,1.0,0.7152794747720048
+126,45,0.6780619423750848,2.0,1.372365988772376,0.0007171682275204057,0.036497564265760944,0.8268979987553899,2,1.0,0.7602064745836158
+126,46,0.6925051124810336,2.0,1.3704528758058059,0.0007182777778029355,0.03636801838883555,0.8266243069224269,2,1.0,0.8083503749367785
+126,47,0.7057188629461849,2.0,1.3799774739058992,0.000698448859288241,0.036574132407658964,0.8279794475514449,2,1.0,0.8523962098206163
+126,48,0.7193191068862073,2.0,1.3782734804355539,0.0006980844760284461,0.03646904099749563,0.8277365090748862,2,1.0,0.8977303562873575
+126,49,0.6585710658153516,2.0,1.3762765713593093,0.0006976093353836998,0.036550856942183074,0.8274514501916439,2,1.0,0.8619035527178387
+127,0,0.13750310300958635,1.95,1.377588066898572,0.0007041741863819064,0.036197541120837444,0.8166773550883487,0,0.1372448488956039,0.20868387817114933
+127,1,0.14639172863058797,1.9,1.3785879541238626,0.0007031553216228268,0.03659109557978278,0.8053375173032683,0,0.1583935159186145,0.21011440754380728
+127,2,0.1587132578354207,1.95,1.3792974493417487,0.0007021737907838431,0.03660466234403266,0.8169325391990347,0,0.17809681799905028,0.22491510211933533
+127,3,0.22384974479017772,2.0,1.380097013815246,0.0007012559045408019,0.036581875490043395,0.8279972724391137,0,0.27407328929880864,0.2140680969021809
+127,4,0.25357988996987046,2.0,1.3721888362110988,0.0006935348032910738,0.03633978229243056,0.8268658735209571,0,0.3764030248960888,0.17672893337144985
+127,5,0.2035040745874944,2.0,1.3581403501996236,0.000686219578801015,0.03595445697215115,0.8248433523432546,0,0.38170333764456604,0.16940913176555988
+127,6,0.28525976191088565,1.95,1.3614891383423846,0.0006860022109741134,0.035741895315548375,0.8142493015717645,0,0.48094208996408877,0.14294308641750048
+127,7,0.27864290707326134,1.95,1.3725694925936058,0.0007109649866461094,0.03659766381816713,0.8159268423676289,0,0.5187093209622348,0.1705305956278913
+127,8,0.2665201770371208,2.0,1.3736335984035069,0.0007086345884807687,0.036563067038876816,0.8270769253411006,0,0.5391277624882806,0.16956357347269502
+127,9,0.3010788944323817,2.0,1.3762799468850866,0.0007065989347222732,0.036585774098206174,0.8274544991028054,0,0.5597344913644343,0.19061699295535997
+127,10,0.3178569585171015,2.0,1.3770067818588414,0.0007048527278746559,0.036635931989575085,0.8275577488282918,0,0.5871807815034708,0.20994881971904383
+127,11,0.37567160132792476,2.0,1.377049410065579,0.0007058466927032844,0.03659552994441195,0.8275641157220865,0,0.6811399353205666,0.17738542399899374
+127,12,0.36486299175162096,2.0,1.223493075486481,0.0007436238469121911,0.03453635429972608,0.8045502831294237,0,0.7177654110341961,0.1925227577931415
+127,13,0.37681044164751376,2.0,1.2248071222540071,0.0007365211238556398,0.03447279271013623,0.8047546011283845,0,0.7363615286533942,0.2075527672871868
+127,14,0.39806215870732864,2.0,0.9375980848323702,0.0010346856542737348,0.034680536023151,0.7557775240824937,0,0.7742192116150931,0.22791491353763793
+127,15,0.4636093177068756,2.0,0.9659494672586643,0.0010122076189989465,0.03500025401940587,0.7609643638196578,0,0.8734372778006928,0.2141146886219948
+127,16,0.49490973278308065,2.0,1.3782960972632772,0.0006946295996940862,0.036418000195223066,0.8277387487160361,0,0.9728800243477721,0.18585907681323927
+127,17,0.49679664738890644,2.0,1.1469307658896772,0.0007704378380806293,0.03362818113348133,0.7922384910982406,0,1.0,0.18932215796302138
+127,18,0.48602408349286086,2.0,1.152734814676308,0.0007619268613979508,0.03349562761025706,0.793189405578561,0,1.0,0.22008027830953603
+127,19,0.5077073389408677,2.0,1.3801167419000357,0.0006960434006857239,0.03641282857833719,0.827998597358742,0,1.0,0.22569112980289224
+127,20,0.46424038578846294,2.0,1.379404352834774,0.0006956561906645395,0.036493057299213046,0.8278970070522597,0,0.9974567496820926,0.21752561971875284
+127,21,0.4713004740040493,1.95,1.3804462255501213,0.000696115104922097,0.03649177964899839,0.8171024695735318,0,1.0,0.23766824668016423
+127,22,0.5147676826457565,2.0,1.3809967818965996,0.0006965098946891327,0.036622372244838206,0.82812402656605,0,1.0,0.21589227548585468
+127,23,0.4915639155560585,2.0,1.3824357630493243,0.0006975106212537195,0.036645790819153964,0.8283290313162504,0,1.0,0.23854638518686147
+127,24,0.49580137760992166,1.95,1.3821320140521163,0.0006972859134892576,0.03638561478629312,0.817354618869498,0,1.0,0.2526712586997387
+127,25,0.5202434915025219,2.0,1.381626006289351,0.0006969487887833446,0.03657965692036239,0.8282136933808153,0,1.0,0.2341449716750728
+127,26,0.47401307790538594,2.0,1.3827494126700108,0.0006977499373040114,0.03663487740947454,0.8283736957616787,0,1.0,0.2467102596846198
+127,27,0.49659435146630515,1.95,1.3833772182874118,0.0006981495176231567,0.03645494521029607,0.8175406946762676,0,1.0,0.25531450488768365
+127,28,0.5250094550908639,1.95,1.3829429741476722,0.0006978880679800085,0.036658326600204794,0.817475832433311,0,1.0,0.25003151696954623
+127,29,0.5109507803736797,1.95,1.3837351901818247,0.0006984033684906715,0.0364471265269108,0.8175941622405226,0,1.0,0.23650260124559888
+127,30,0.5167793463326458,2.0,1.3833374900631752,0.0006981546089389991,0.036574721312676604,0.8284574020214907,0,1.0,0.22259782110881926
+127,31,0.4894063524516819,2.0,1.3839585969376396,0.0006988142771800826,0.03651685431087304,0.8285458404967173,0,1.0,0.23135450817227285
+127,32,0.5144820647381548,1.95,1.3836543663719634,0.0006984621003815455,0.036678562686333835,0.8175821258759863,0,1.0,0.2149402157938493
+127,33,0.5064831652279835,1.95,1.3839427178266677,0.0006989197703321946,0.03665426365032676,0.817625263623438,0,1.0,0.22161055075994493
+127,34,0.5087017509599341,2.0,1.3835900627958433,0.0006989044544542306,0.036670214941672725,0.8284935066975417,0,1.0,0.2290058365331134
+127,35,0.5061569322662579,2.0,1.3832383470850864,0.0006988649219977386,0.03669579759142591,0.8284435136918372,0,1.0,0.22052310755419277
+127,36,0.4955624501860504,2.0,1.3827500400856576,0.0006988292063159532,0.03647517738183863,0.8283740918423443,0,1.0,0.25187483395350124
+127,37,0.5166260402671744,2.0,1.3824410250321004,0.0006982426018580026,0.036424091281019574,0.8283299877436904,0,1.0,0.2554201342239145
+127,38,0.4784104120520439,2.0,1.3819017564213811,0.000698150402181613,0.036621348097983855,0.8282532642517033,0,1.0,0.2613680401734796
+127,39,0.5005651914461381,1.95,1.3829685780929792,0.0006983062215954029,0.036476102996692863,0.8174797775263695,0,1.0,0.2685506381537937
+127,40,0.5270321024009171,1.95,1.3825470964241244,0.0006977941332088845,0.036577983318844084,0.8174167284132393,0,1.0,0.2567736746697237
+127,41,0.4844683670502753,1.95,1.3831026545361103,0.000698606478137492,0.036443858764064,0.8174998713566874,0,1.0,0.2815612235009176
+127,42,0.5070854880866517,1.9,1.3839647864402733,0.0006987820579855708,0.036671305094417087,0.8061776876249426,0,1.0,0.2902849602888389
+127,43,0.49266548067009863,1.9,1.3835842380246917,0.0006983749927664204,0.0366526339021316,0.8061180907769553,0,0.9987145391180083,0.3105988834096508
+127,44,0.49252024727077665,1.95,1.3842221446456617,0.0006987375246997011,0.03666144550627942,0.8176668720885996,0,1.0,0.30840082423592213
+127,45,0.5352636207031295,2.0,1.3846589005956946,0.0006990730594396916,0.03671966939230527,0.8286453745771503,0,1.0,0.28421206901043156
+127,46,0.5308241462089357,2.0,1.3851985156643976,0.000699414750532739,0.03651000639573123,0.8287220791304175,0,1.0,0.2694138206964521
+127,47,0.48131555083671806,2.0,1.38547893045768,0.000699684799692981,0.03675662262302504,0.8287619546889468,0,1.0,0.2710518361223935
+127,48,0.5113076552286488,1.95,1.3857607534887406,0.000699809634401586,0.036625866005188,0.8178964670890764,0,1.0,0.3043588507621629
+127,49,0.5338483024968389,1.95,1.3855706905717544,0.0006996756744339721,0.03659635781366498,0.8178681171494957,0,1.0,0.27949434165612946
+128,0,-0.001420337940346808,1.95,1.3749634638926806,0.0007007215869115054,0.03605407723128598,0.8162830492830966,0,0.09701843737627766,0.1992409570304738
+128,1,0.1862731586422539,1.9,1.385965480092449,0.0006999470580987418,0.036731066211086155,0.8064904786002378,0,0.20768888967444887,0.17732534257491447
+128,2,0.201951283215794,1.9,1.3638045000522778,0.000691232704671164,0.036232626404388714,0.8030056916901266,0,0.2767049866108416,0.1708976285715245
+128,3,0.22996719210162161,1.95,1.3629215651381676,0.0006908894257701096,0.03639867150681391,0.8144673318719704,0,0.34210117711850274,0.17708907084740164
+128,4,0.26111223027517716,1.95,1.3625086721199537,0.0006907376666934477,0.03615773591282405,0.8144048855073708,0,0.4025257678074976,0.20033974384059378
+128,5,0.23275728305787088,1.95,1.3741714994809364,0.000708597796888125,0.0364865441906569,0.8161666160475102,0,0.42176919125162926,0.2134986885240639
+128,6,0.301540044802875,1.9,1.3768920347685616,0.0007071110763012188,0.036435425670567595,0.8050727536008229,0,0.49362414292360846,0.21363462544477205
+128,7,0.3291050519411546,1.9,1.3763142179178973,0.0007084281601709746,0.03668615448451551,0.8049824739895421,0,0.5613059129574908,0.2152756225271943
+128,8,0.2944372435213165,1.9,1.3758876385205228,0.000709535066539713,0.036561118947587956,0.8049158460429284,0,0.5718962700911767,0.21892911828281938
+128,9,0.30469326040005273,1.8499999999999999,1.3783107971611137,0.0007079545111350061,0.036624557227721365,0.7932661719482347,0,0.5913917017079614,0.2271219323895606
+128,10,0.37596648349050255,1.9,1.3800489705063677,0.0007067911411019886,0.03663175691047109,0.8055675961578053,0,0.675446617971185,0.21929278767342855
+128,11,0.3976733484278049,1.95,0.9075053934043876,0.0009302962785566724,0.03204274907436311,0.7358221676945664,0,0.7307321846796352,0.21793491518650276
+128,12,0.4436934413628086,2.0,0.9217142619526736,0.0009864933691786878,0.03290625410241226,0.752815889322816,0,0.84591504081207,0.18442475012660187
+128,13,0.43336745168746554,2.0,1.150776063590063,0.0007605966123918175,0.03365726061381826,0.7928674706459712,0,0.8767646420043929,0.20887198295236126
+128,14,0.4935587207392861,2.0,1.3525401921107578,0.0007049842487775426,0.036069978417549386,0.8240382287933578,0,0.9820875008481725,0.16907906800005681
+128,15,0.49543726747945854,2.0,1.1470050592116705,0.0007579350614190985,0.03369541329802887,0.7922466035837032,1,1.0,0.15145755826486174
+128,16,0.4715452135385843,2.0,1.3660761749207206,0.0007206662900709294,0.03644823986238334,0.8259968428202249,1,1.0,0.17181737846194758
+128,17,0.4530778184088349,1.95,1.3645917210998535,0.0007215620469853003,0.03662760910151241,0.8147288370784339,1,1.0,0.14359272802944947
+128,18,0.4389368842282971,2.0,1.3688672250117837,0.000718046926549271,0.03659344823405371,0.8263968729548579,1,1.0,0.09645628076099014
+128,19,0.4552571097926143,2.0,1.3728517431671068,0.0007143349291684548,0.0366840977272579,0.8269667066335179,2,1.0,0.11752369930871423
+128,20,0.49739302698986254,2.0,1.3860630309831552,0.0007004657436023511,0.03677369759137961,0.8288450533058686,2,1.0,0.15797675663287514
+128,21,0.5349549836046924,2.0,1.3858956345186613,0.0007006687774424108,0.036466687559903524,0.8288213625918263,2,1.0,0.1831832786823081
+128,22,0.49470584624859837,2.0,1.3856865035049672,0.0007009764028746625,0.03664291284675661,0.8287917770743956,2,1.0,0.21568615416199433
+128,23,0.5246443728811984,1.95,1.38209232190589,0.0006991097067373179,0.03667561703963466,0.8173492378581481,2,1.0,0.2488145762706609
+128,24,0.5141451406734973,1.95,1.382587270754301,0.0007008110364050909,0.03660868784895198,0.8174236247203118,2,1.0,0.28048380224499087
+128,25,0.5460347830126892,2.0,1.383137902020453,0.0007000103055585319,0.036693737631793184,0.8284295630764797,2,1.0,0.3201159433756304
+128,26,0.5878843901733748,2.0,1.3835187588477467,0.0007014313430947723,0.03674227200971636,0.8284840928723392,2,1.0,0.35961463391124937
+128,27,0.5617505093666263,2.0,1.382524599087951,0.0007015223755197607,0.036415698730961656,0.8283428043104109,2,1.0,0.3725016978887541
+128,28,0.5503250776263613,1.95,1.3825778730844542,0.0007031560235078716,0.0365575425890507,0.8174229221322076,2,1.0,0.40108359208787087
+128,29,0.5042703594218675,2.0,1.3439616028282333,0.0006715194702039682,0.035971423403513544,0.8227811213213146,2,1.0,0.34756786473955836
+128,30,0.4939810036490757,1.95,1.382762838033001,0.0006991283355037626,0.03644572974438183,0.8174493231098158,2,1.0,0.3132700121635857
+128,31,0.5274877824261905,2.0,1.383912770628982,0.0006991919366701899,0.03669653908657381,0.8285394377239003,2,1.0,0.3249592747539683
+128,32,0.562071202414602,2.0,1.383582497503887,0.0006986150894133627,0.03669743989890546,0.8284923494939358,2,1.0,0.3735706747153395
+128,33,0.5739480658338616,2.0,1.383853572809768,0.0006992937094428339,0.03648497481663638,0.828531056726522,2,1.0,0.4131602194462053
+128,34,0.5858355839099236,2.0,1.3440421326046008,0.0006723720881805146,0.03513588010957341,0.8227931118832426,2,1.0,0.45278527969974514
+128,35,0.5675933073181848,2.0,1.3401727800944918,0.0006698260174593101,0.035458675259685116,0.8222274933238601,2,1.0,0.4586443577272825
+128,36,0.5230927178053766,2.0,1.343339477996108,0.0006702022653538372,0.03592184693194662,0.8226900053379751,2,1.0,0.41030905935125517
+128,37,0.6124419336951071,1.95,1.3458189769756486,0.0006708861719321852,0.03595631930694988,0.8118629333204844,2,1.0,0.44147311231702396
+128,38,0.5175519785213054,1.95,1.351770303145472,0.0006779886505229149,0.035146451203982285,0.8127724228206987,2,1.0,0.3918399284043511
+128,39,0.5846908200084415,1.9,1.3823775225395543,0.0007016787143068518,0.03668569157875971,0.8059304549233176,2,1.0,0.44896940002813823
+128,40,0.5208794556706949,1.9,1.3498274194528124,0.0006775190956972888,0.03602194772269987,0.8007809486831624,2,1.0,0.4029315189023165
+128,41,0.5826123334954642,1.8499999999999999,1.3519321425807265,0.0006772117041594847,0.03557926920748554,0.7888964945028695,2,1.0,0.4420411116515469
+128,42,0.525458043810741,1.8499999999999999,1.3474307597741304,0.0006743549308294686,0.035725980612877406,0.7881449106617696,2,1.0,0.4181934793691366
+128,43,0.5090928581441352,1.7999999999999998,1.348810640185281,0.0006742725019512335,0.036050570234291125,0.775591721539846,2,1.0,0.3636428604804507
+128,44,0.573020203626611,1.8499999999999999,1.3766261104198225,0.0007033775368273949,0.03630327162726579,0.7929882526360287,2,1.0,0.41006734542203643
+128,45,0.5137604267457911,1.8499999999999999,1.348315455429705,0.0006743283853791311,0.03547928153249631,0.7882925839993126,1,1.0,0.3792014224859703
+128,46,0.5368694308365172,1.7999999999999998,1.3432426758119091,0.0007354671046164349,0.03602797550558427,0.774642501320169,1,1.0,0.38956476945505697
+128,47,0.5184716903426408,1.7999999999999998,1.3413354720532897,0.0007440045521288998,0.036600359377555194,0.7743123674185018,1,1.0,0.361572301142136
+128,48,0.5788740206889713,1.8499999999999999,1.3490256238186291,0.0007363889133966731,0.03655342636324746,0.788431782895841,1,1.0,0.4295800689632377
+128,49,0.5524148359173013,1.8499999999999999,1.3721579960146957,0.0007053725218748925,0.03644511613405753,0.7922544728973154,1,1.0,0.44138278639100426
+129,0,0.18460453613901,1.7999999999999998,1.374592422029826,0.0007044170814298274,0.03632010804338381,0.7800574605105697,1,0.14713949806426987,0.25249578971100695
+129,1,0.191258258131094,1.7499999999999998,1.3740691057747156,0.0007053107222309725,0.03656738423652846,0.7668268520808318,1,0.17027925607743646,0.27715518566706476
+129,2,0.18017353700671299,1.7999999999999998,1.3735808583688116,0.0007043935921764765,0.03644285409085535,0.7798838515094539,1,0.18408774909027767,0.28846145790200645
+129,3,0.21954836893336804,1.8499999999999999,1.3736073459711045,0.0007045442737490306,0.03645519796537632,0.7924926440779445,1,0.2036844626687932,0.32691527955283584
+129,4,0.2659348347405993,1.8499999999999999,1.3845075176160064,0.0006989254996499356,0.036715585732212834,0.7942776054717626,1,0.2542102334244141,0.3808358045694455
+129,5,0.2784458432293494,1.8499999999999999,1.3844977888278505,0.0006990081598251709,0.036509054815379395,0.7942760427901177,1,0.28315622160885856,0.4172778486193533
+129,6,0.2617972304660284,1.9,1.3820373977168658,0.0007018079798768472,0.036609021394060796,0.8058772920797822,1,0.3253695720085937,0.4054980055419697
+129,7,0.29121187626777134,1.95,1.3820150423002266,0.0007011477184639134,0.036690764230201615,0.8173383090809171,1,0.3544153268587946,0.43148581841417827
+129,8,0.357431826798926,1.95,1.381895819895242,0.0007014358923986561,0.0365672389381632,0.8173205949850699,1,0.3937506735982013,0.499771857865485
+129,9,0.3933528581269599,1.95,1.381623929337123,0.0007019197085317806,0.036475253825098544,0.8172801406448007,1,0.4328830301088349,0.5673321536114199
+129,10,0.372295803274038,1.95,1.3859695945009105,0.0007003737679610233,0.03677041486601519,0.8179277382116666,1,0.4562827135449691,0.5659423928535012
+129,11,0.3718454868869485,1.9,1.3857523453470102,0.0007004334745402598,0.036661385224076984,0.8064573656981775,1,0.49150173822869886,0.5508159719848964
+129,12,0.38940730360487363,1.95,1.3857976374947776,0.000700191668839157,0.03669529427303902,0.8179020743953737,1,0.50672906109622,0.5557189305546189
+129,13,0.38417345626571064,2.0,1.3855458591913112,0.0007002037484360051,0.03676553829459854,0.828771599997102,1,0.5439249670472746,0.5220115648226693
+129,14,0.4596989157626152,2.0,1.3855387257836664,0.0006999381702073624,0.03673951356780906,0.8287705123219327,1,0.586118653726402,0.5841715142401813
+129,15,0.5003850312206433,2.0,1.3856190487727003,0.0007003137996071735,0.03641285553247971,0.828782017257739,1,0.6475660382926277,0.6378620530119739
+129,16,0.4705496558673773,2.0,1.3499781737209322,0.0007044369881706162,0.036290033653524185,0.8236662706794857,1,0.7027794168942088,0.5981262970323127
+129,17,0.5458610206349415,1.95,1.3743099261261313,0.0006929055435098068,0.036363062728022165,0.8161826759641579,1,0.7530272706680918,0.648833707892349
+129,18,0.5145201510735639,1.95,1.3426233398569725,0.0007027916661779523,0.03556892780186575,0.8113841061864134,1,0.7984202321324044,0.6171735274020067
+129,19,0.5204116726912524,1.9,1.33919317170775,0.0007016764311656652,0.03571586586708822,0.7990867876222159,1,0.8354882970574773,0.5873878462275385
+129,20,0.5721841184887038,1.95,1.3675853877831303,0.000724367094217591,0.03664310590470227,0.8151811378959941,1,0.8706826005381119,0.6130369275781968
+129,21,0.5700256054370244,1.95,1.3348417314815826,0.0006658408981782268,0.03559180702241927,0.8101789577400975,1,0.9075954784650635,0.6232913801699966
+129,22,0.6411646988034646,2.0,1.3380474945570349,0.0006695711169892417,0.035221707473754416,0.8219165541312287,1,0.96336151201089,0.6860669799970283
+129,23,0.6245009370026282,2.0,1.3383072621925072,0.0006719761057116258,0.035198304048984795,0.8219552769872455,1,1.0,0.6816697900087606
+129,24,0.6736791957963948,2.0,1.3405783589466935,0.0006760637895121957,0.03498801570242012,0.8222885918705315,1,1.0,0.7455973193213159
+129,25,0.6887432880711635,2.0,1.3394139290973857,0.000677974736787627,0.03526192201871642,0.8221189287127676,1,1.0,0.7958109602372114
+129,26,0.6406864719168497,2.0,1.337837321666072,0.0006794668555748376,0.03553774267643111,0.8218886863468339,1,1.0,0.7689549063894987
+129,27,0.6972431938630973,1.95,1.3353899869761736,0.0006764750041957379,0.03579422972230487,0.8102665287573279,1,1.0,0.8241439795436576
+129,28,0.6457129351911289,1.95,1.3767083362481123,0.0007010222236304335,0.03652846934485565,0.8165446647981336,1,1.0,0.7857097839704298
+129,29,0.6864838629110577,1.9,1.3340978809619217,0.00067606623011573,0.03500631923357675,0.7982592582649918,1,1.0,0.8216128763701923
+129,30,0.6976915633975467,1.9,1.3808582779522187,0.0006997151342936524,0.03656390314775016,0.8056921098559173,1,1.0,0.8589718779918222
+129,31,0.7042439799693332,1.95,1.3806329763866447,0.0006984156925824634,0.03638851535860643,0.8171310646356622,1,1.0,0.8808132665644436
+129,32,0.66523820528979,2.0,1.3802056251802295,0.0006972310850143417,0.03642418849157492,0.8280115937454207,1,1.0,0.8507940176326335
+129,33,0.7262061403585032,1.95,1.3820780682670386,0.0006976541676985322,0.036435821375829396,0.817346675332847,1,1.0,0.9206871345283438
+129,34,0.7469221926039684,1.95,1.3827655344464183,0.000698906701294409,0.03662847906524149,0.8174496593372269,1,1.0,0.989740642013228
+129,35,0.7170653922893073,1.95,1.3830553886380028,0.0007001542443136664,0.03642268254154861,0.8174932813181552,1,1.0,0.990217974297691
+129,36,0.72,1.9,1.3821626642501108,0.0007003871087322967,0.0366832701253633,0.8058964433845346,1,1.0,1.0
+129,37,0.75,1.95,1.3808917484667527,0.000700534832782308,0.036443303150735205,0.8171703624403063,1,1.0,1.0
+129,38,0.74,1.95,1.3811151036930966,0.000702505645226312,0.03642273186116382,0.8172043188148261,1,1.0,1.0
+129,39,0.7050123773338193,2.0,1.3809322866290576,0.0007007722432019463,0.036604370246614316,0.8281160598696771,1,1.0,0.9833745911127307
+129,40,0.75,1.95,1.38308598655854,0.0007003343663069525,0.036453852646100016,0.8174979001694919,1,1.0,1.0
+129,41,0.7011422880685652,1.95,1.3829391592433598,0.000701624355249234,0.03643209926695174,0.8174763781903444,1,1.0,0.9704742935618839
+129,42,0.689182278750615,1.9,1.384424912364699,0.0007010733812394384,0.03674706260464196,0.806250290435122,1,1.0,0.9306075958353832
+129,43,0.7272068155575802,1.95,1.3853041505524837,0.0007006875664259201,0.03671428504526854,0.8178287115350488,1,1.0,0.9573560518586003
+129,44,0.7354258056678344,1.95,1.3852829829651063,0.0007000376093625121,0.036424496130922406,0.8178253641924538,1,1.0,0.9847526855594481
+129,45,0.74,2.0,1.384958233731951,0.0006994541107931643,0.03672296745582011,0.8286879815632426,1,1.0,1.0
+129,46,0.74,2.0,1.3844593707318549,0.0006989246551977524,0.03646385890829104,0.8286169988813803,1,1.0,1.0
+129,47,0.74,2.0,1.3836909906909027,0.000698343470076916,0.0366765957141459,0.8285076878578753,1,1.0,1.0
+129,48,0.7175823371826591,2.0,1.3826798330646795,0.0006977402937623142,0.03649897598140326,0.828363800611172,1,0.9939558429566476,1.0
+129,49,0.7180783072151068,1.95,1.382370606725,0.000697414607609698,0.03638185721059989,0.8173902731479121,1,1.0,0.9935943573836893
+130,0,0.1961507202161355,2.0,1.3740276483534113,0.0007022587784892055,0.03624667059216878,0.8271314520884977,1,0.16262696822881334,0.2703331097487005
+130,1,0.1572455373727531,1.95,1.3741196293760323,0.0007028366559608242,0.036500251624500636,0.8161571045474244,1,0.18027024933926566,0.2504581254568227
+130,2,0.20260784972094417,1.9,1.3765531695544873,0.0007022244520987057,0.036503977672514606,0.8050180357332463,1,0.2156574418603603,0.25448290992266687
+130,3,0.17327297401457786,1.9,1.3851133292330853,0.0006996744699670175,0.03646380628999915,0.8063573690194795,1,0.2494554743067104,0.2116359476396456
+130,4,0.2532244340122578,1.8499999999999999,1.3854870442199116,0.0006997591990515997,0.036746869968906665,0.794437886956646,1,0.29838633222519134,0.2795663370739375
+130,5,0.23133572825161522,1.8499999999999999,1.3853855209823982,0.0006998141405635278,0.03654913190959219,0.7944213250193136,1,0.3132385618366028,0.286801011723247
+130,6,0.22227870118268522,1.7999999999999998,1.385359995069703,0.0006999243951505646,0.036628037339974696,0.7818977254197065,1,0.33910835511001297,0.2554511971289335
+130,7,0.23155826541667135,1.8499999999999999,1.3856916168594444,0.0006999699388404674,0.03669917359986463,0.7944713617734668,1,0.3888820957991871,0.22001809032332173
+130,8,0.28939342030925524,1.9,1.3859543979207245,0.0007000213087496525,0.036412309863729626,0.8064887722466996,1,0.41881980762598153,0.27288499086287543
+130,9,0.274332739729358,1.9,1.3849994882380323,0.0007017269329568694,0.03660471394496441,0.8063402336871014,1,0.4284094318113754,0.27656322334935945
+130,10,0.31839522395176295,1.95,1.384824100095143,0.0007019607734929044,0.036782271696134086,0.8177575598411387,1,0.46678772372703686,0.3056004482031607
+130,11,0.34163669697720284,1.95,1.3849964484980957,0.0007014173298548865,0.036665007345802816,0.8177830815786796,1,0.5036511856852862,0.3339207423436278
+130,12,0.3983130656556125,1.95,1.3850292409976908,0.0007009570384524833,0.036531149951773464,0.8177878308896144,1,0.5657099686715897,0.40676359395658856
+130,13,0.40806791583631546,1.95,1.3851644337474185,0.0007011870132633497,0.03678136698682981,0.8178080437483084,1,0.5931373331822719,0.4360432752113557
+130,14,0.4591380885493284,2.0,1.3856453049964195,0.000700879511090104,0.03660288915007967,0.8287859035951316,1,0.6340407482454373,0.5184059641705117
+130,15,0.4406336431169996,2.0,1.374253233086571,0.000693236942631584,0.03650731711800992,0.8271611253351592,1,0.6553861194914476,0.5282639844014017
+130,16,0.5057497758303432,2.0,1.3741387500827518,0.0006939872581473602,0.03638280586542754,0.827144972145602,1,0.7041458060561562,0.5803048446929356
+130,17,0.4761020174313063,2.0,1.3739089988292796,0.0006948928435990693,0.036393531157516576,0.8271123797159866,1,0.7503469375630275,0.5532108080203177
+130,18,0.521406143673979,1.95,1.3773839893737965,0.0006954987377751594,0.03618468126925773,0.8166442015072545,1,0.7737446974630684,0.5730275489625052
+130,19,0.5405983865421164,1.95,1.3761150247203804,0.0006942398103284154,0.036432227937706715,0.8164537375741056,1,0.8017015651762184,0.5997258682387636
+130,20,0.5154755328593636,2.0,1.367214691354213,0.0007254621757265391,0.03666074137067217,0.8261617941311616,1,0.8369979820895626,0.5689211334117954
+130,21,0.5732484780910151,1.95,1.3664010451923096,0.00072604912482476,0.036602300320146865,0.8150031444340975,1,0.8792555095470481,0.6051542475739858
+130,22,0.562154339672963,1.95,1.3412620317675412,0.0006768494976290195,0.03528706478221842,0.8111677361277938,1,0.911348037115601,0.5920504160890754
+130,23,0.5590317200197559,2.0,1.364988730442246,0.0007285117954005322,0.036364350274765235,0.8258427500952058,1,0.9537659151129774,0.558417846581883
+130,24,0.6107084408423766,2.0,1.3640368913001584,0.0007292047099605837,0.03633057525708085,0.8257060073809923,1,0.99390528436715,0.5771544236517219
+130,25,0.5739447401953007,2.0,1.3626026600344265,0.0007319452413027637,0.03651960948394749,0.8255002922478434,1,1.0,0.5464824673176691
+130,26,0.5626374873542097,1.95,1.3610456122163324,0.0007335068602262007,0.03677505488113078,0.8141965835427386,1,1.0,0.5087916245140324
+130,27,0.6228734081993005,2.0,1.3587091168133152,0.0007357944772381386,0.03674258544581392,0.8249398298304078,1,1.0,0.576244693997668
+130,28,0.5874917115365897,2.0,1.3638856574243237,0.0007292438206874528,0.03671605814470008,0.8256842526537951,1,0.9912316981141895,0.5699967743030464
+130,29,0.62058008804103,1.95,1.367286009286017,0.0007243849396720635,0.03673783076895958,0.8151360343992238,2,1.0,0.6019336268034333
+130,30,0.5686390754767789,1.95,1.3687189937086632,0.00071932835050025,0.03669533806061647,0.8153503497075949,2,1.0,0.5621302515892631
+130,31,0.6081352750610716,1.9,1.3510777774158065,0.0006755332969915792,0.035572679361089654,0.8009797111835735,2,1.0,0.5937842502035717
+130,32,0.6397115799117343,1.9,1.3536034495989016,0.0006767823994412692,0.03551402668572057,0.8013824232435678,2,1.0,0.6323719330391141
+130,33,0.5764210483520089,1.9,1.3701922331885965,0.0007171179518040099,0.03664209807863253,0.8040223537672618,2,1.0,0.588070161173363
+130,34,0.6111605117904598,1.8499999999999999,1.3476140253712359,0.0006721889203134645,0.03597891111019265,0.7881747861097502,2,1.0,0.6038683726348659
+130,35,0.6425594542161958,1.8499999999999999,1.3714538379191297,0.0007148287937566194,0.036238847951151766,0.7921416675796331,2,1.0,0.641864847387319
+130,36,0.6529034247293987,1.8499999999999999,1.3693286037628187,0.0007155213210813322,0.03654804383118303,0.7917917519520901,2,1.0,0.6763447490979952
+130,37,0.6331072374113954,1.9,1.366932710409407,0.0007161400884391012,0.03658691377182785,0.8035079316414435,2,1.0,0.6770241247046511
+130,38,0.6673151922851719,1.95,1.371042283258568,0.0007119162416337991,0.03663855771661027,0.8156976457822935,2,1.0,0.7243839742839061
+130,39,0.7046593610173184,1.95,1.3690395510948605,0.000712025195611638,0.036533755238708415,0.815396407469876,2,1.0,0.7488645367243948
+130,40,0.6608678830998235,1.95,1.3687147216767244,0.0007170537294820677,0.03664694795930806,0.815349021624434,2,1.0,0.7695596103327448
+130,41,0.6673419324456696,1.9,1.3716316496859315,0.0007130926834908896,0.03661430867199329,0.8042477965424716,2,1.0,0.7911397748188987
+130,42,0.6789712760925162,1.95,1.373197654422162,0.0007098753043656507,0.03626094349858531,0.8160208402255181,2,1.0,0.8299042536417204
+130,43,0.736224735556032,2.0,1.372051234115656,0.0007024906700051683,0.03632790429877448,0.8268487381338795,2,1.0,0.85408245185344
+130,44,0.6452811498107661,2.0,1.3730718018086314,0.0007074172943547904,0.03661018897541651,0.8269962137178958,2,1.0,0.8176038327025537
+130,45,0.6315487641067304,1.95,1.3754323559373605,0.000704799252614349,0.03638892964031672,0.8163545789145776,2,1.0,0.7718292136891014
+130,46,0.6702973173178381,2.0,1.374359949999371,0.0007074201458951055,0.036591573368858585,0.8271804367492177,2,1.0,0.800991057726127
+130,47,0.6242498953603579,2.0,1.3771478018359422,0.0007020358452124671,0.0365734575673779,0.8275770683855687,2,1.0,0.7474996512011931
+130,48,0.7181835807634577,1.95,1.375091240072346,0.0007053362996852789,0.03655616064083992,0.816303594442861,2,1.0,0.7939452692115258
+130,49,0.7012157783746992,1.95,1.374582437816643,0.0007087828848880016,0.036401870013005766,0.8162283202049321,2,1.0,0.8373859279156638
+131,0,0.13262471307001236,2.0,1.3734358314021562,0.000701872649883344,0.0360917335476234,0.8270467042865204,0,0.11836080870216348,0.21760129863048994
+131,1,0.11924717317661444,1.95,1.3743993389571962,0.0007006025621972119,0.036475113256785284,0.8161983994619741,0,0.12442097651520267,0.2315959419017779
+131,2,0.18567886042921022,2.0,1.3757208723237102,0.0006995959145138406,0.036505754504088314,0.8273726629953222,0,0.18541153642054042,0.23838081953664683
+131,3,0.24413083790596868,2.0,1.376590209439033,0.0007019440866765198,0.03659584811399666,0.8274974629766662,0,0.3167829325039019,0.22472554968135972
+131,4,0.25897547592618836,2.0,1.3722393732547362,0.0006936203362698076,0.03634079967165153,0.8268731327077223,0,0.3904487740508389,0.20931988768617615
+131,5,0.2508840645541655,2.0,1.3713421019138763,0.0006932864136841791,0.036264671892528466,0.8267445514302568,0,0.4074792848269255,0.22630783541131758
+131,6,0.30877050037911136,2.0,1.3666902685668672,0.0007148160214781433,0.03614530748380782,0.826083405405799,0,0.48781922499657504,0.21214270126827112
+131,7,0.34592742489077827,2.0,1.3664251720400702,0.000718197956546126,0.036486501073056524,0.8260462877265516,0,0.5940461120314549,0.19436326692732098
+131,8,0.3709674273589123,2.0,1.3770813334211844,0.0006988829724040157,0.03648548575028331,0.8275666837555142,0,0.6797321415911391,0.19691523574152223
+131,9,0.41925704570492145,2.0,1.2216003833259226,0.0007057702848361307,0.033360252403525956,0.8042405684975018,0,0.7864510465368039,0.18225542363399969
+131,10,0.4311264604946531,2.0,1.2194203350626904,0.0007058780384643624,0.03384165522325475,0.8038971530783751,0,0.8556019472943148,0.16295227192309036
+131,11,0.3929082231118567,2.0,1.126177630088068,0.0007687918006382379,0.033117699276475523,0.7888013264616571,0,0.8646000380021306,0.1568940263700147
+131,12,0.4482023221239284,2.0,1.1326059978729888,0.0007941824448817042,0.033688732358538274,0.7898786927640306,0,0.9154112798011318,0.14012603401158563
+131,13,0.44318860116828845,2.0,1.137545070444049,0.0007845004605149682,0.0337998270155803,0.7906940540440686,0,0.9374101315359509,0.16074849517969353
+131,14,0.46049739710437904,2.0,1.1346788575308187,0.0007826217750701641,0.03393681899349125,0.7902186864018347,0,0.9632469961862771,0.18399532876622718
+131,15,0.4795473623832941,2.0,1.1315894085130818,0.0007805522784871824,0.03379034926565393,0.7897053922487614,0,1.0,0.1984912079443135
+131,16,0.49618821921981615,2.0,1.1282492505595725,0.0007782817647120669,0.033559502907681525,0.7891493972328006,0,1.0,0.18729406406605387
+131,17,0.4841582314395018,2.0,1.1326011654438979,0.0007693476374509016,0.03321337566489765,0.7898696468981621,0,1.0,0.2138607714650059
+131,18,0.4893790381407243,2.0,1.3596208309584144,0.0007028707580260538,0.0359392557763257,0.8250619513423993,0,1.0,0.23126346046908086
+131,19,0.5035125317314944,2.0,1.3589618944766062,0.0007036724690201705,0.03605661376286247,0.8249670550806995,0,1.0,0.21170843910498102
+131,20,0.4878946755609057,2.0,1.35828700075277,0.0007017966366190613,0.03603958447512323,0.824869039508468,0,1.0,0.22631558520301898
+131,21,0.4941345216978172,2.0,1.3576010019532743,0.000702537882944477,0.03636023826997993,0.8247701322184637,0,1.0,0.24711507232605712
+131,22,0.5194194327369653,2.0,1.356831781763818,0.0007032851936420796,0.03629852108150052,0.8246591495047985,0,1.0,0.26473144245655117
+131,23,0.5084127357226418,2.0,1.356061470246236,0.0007011627264198124,0.03606257846442382,0.8245471232365659,0,1.0,0.29470911907547254
+131,24,0.5127589351961773,2.0,1.355232680559623,0.0007019131171759187,0.03593351798893067,0.8244274079055693,0,1.0,0.3091964506539242
+131,25,0.538300261000793,2.0,1.3543142826596066,0.0007025884566172997,0.035842684617843956,0.8242946287080587,0,1.0,0.2943342033359765
+131,26,0.5258956773506911,2.0,1.3614384669000272,0.0007006884249175286,0.036081294761297976,0.8253235151143178,0,1.0,0.25298559116897024
+131,27,0.48054637983991294,2.0,1.3672043199786745,0.0006994375577266111,0.036386546192523336,0.8261528291950428,0,1.0,0.2684879327997098
+131,28,0.5240430428348962,1.95,1.3672459606514058,0.0007014737905095321,0.036369568510566906,0.8151230942200152,0,1.0,0.2468101427829871
+131,29,0.5047450357476865,1.95,1.3715982651830418,0.000700477085625837,0.036269706863554435,0.8157777764241293,0,1.0,0.2824834524922883
+131,30,0.5123371726326318,2.0,1.3708202652386041,0.000700837473917168,0.03630764083324223,0.8266719557687425,0,1.0,0.30779057544210603
+131,31,0.4888284990446152,2.0,1.3703273941616805,0.0007011691399414856,0.036246550590701206,0.8266014182283976,0,0.9935095905425744,0.30474887609195134
+131,32,0.5172318246185643,1.95,1.370325297955759,0.0007032332539144248,0.0363812380136648,0.8155872214904576,0,1.0,0.32410608206188096
+131,33,0.5256490090356751,1.95,1.3690376817124061,0.0007037785442562144,0.03633920636878463,0.815393643408734,0,1.0,0.3521633634522502
+131,34,0.5344583603390046,2.0,1.3680209496240072,0.0007042495254355761,0.03645633814939296,0.8262714673357053,0,1.0,0.3815278677966821
+131,35,0.5532483295064995,2.0,1.3673424452682479,0.0007045047031562952,0.036428285428899955,0.826174121848595,0,1.0,0.344161098354998
+131,36,0.5443626687085918,2.0,1.372051505895234,0.0007028611916322983,0.036399635278417566,0.8268488831395775,0,1.0,0.34787556236197253
+131,37,0.528373346510298,2.0,1.3716841625861635,0.0007008430153933454,0.03626993404297039,0.8267957063306334,0,1.0,0.36124448836765966
+131,38,0.5151370108284761,2.0,1.3706472071952145,0.0007010675110637556,0.03635979905928462,0.826647223599541,0,1.0,0.3837900360949203
+131,39,0.5524892559138871,2.0,1.370825985400611,0.0007036403164678442,0.03635634177866422,0.826673578591649,0,1.0,0.3749641863796233
+131,40,0.5122663878068499,2.0,1.3703921659993292,0.0007015184606587201,0.03638868775687775,0.8266108020106071,0,0.9955579989577349,0.3801439607458529
+131,41,0.5415063565411485,1.95,1.3703794720781455,0.0007037283804743364,0.03649542734227347,0.8155955183276739,0,1.0,0.40502118847049506
+131,42,0.565965560648286,2.0,1.2294117472499877,0.0006286339811637122,0.032690798365234544,0.8054432754631592,0,1.0,0.3865518688276197
+131,43,0.5592442820417812,2.0,1.3746700528787459,0.0006994187550615697,0.03630837786702622,0.8272224751838524,0,1.0,0.39748094013927043
+131,44,0.5228288888752521,2.0,1.37405791113506,0.000698148259602058,0.03642952948471501,0.8271346037048082,0,1.0,0.40942962958417367
+131,45,0.567231544829233,2.0,1.1989432216784945,0.0005922854112784283,0.031998838391965476,0.8006126437124527,0,1.0,0.39077181609744316
+131,46,0.5625757927424441,2.0,1.3743888027334428,0.0006945626454707332,0.03648320513587543,0.8271808852970148,0,1.0,0.3752526424748134
+131,47,0.5532262274516062,2.0,1.3775502823626866,0.0006952393535481888,0.0364911069880578,0.8276325529496583,0,1.0,0.3774207581720206
+131,48,0.537703000464619,2.0,1.3767171129944515,0.0006943801887619721,0.036356355547849675,0.8275134178694259,0,1.0,0.3923433348820635
+131,49,0.5421949872008082,2.0,1.3761744382938983,0.000694455325371989,0.03616026398330367,0.8274359669064869,0,1.0,0.40731662400269364
+132,0,0.10419954428938384,2.0,1.3710526110415118,0.0007012724926851477,0.0360101013073756,0.8267053696557055,0,0.10405415543829372,0.2085929403802212
+132,1,0.08439780120187576,1.95,1.372734642447191,0.0007000319116393138,0.036411114948517134,0.8159483612059286,0,0.19558412759740068,0.18721383387638493
+132,2,0.2055983364681633,2.0,1.3853747281739377,0.0007001686850341589,0.036710899567481865,0.8287473036062055,0,0.2686319491703867,0.19381852266669544
+132,3,0.1978137004007138,2.0,1.3476114777177597,0.0006843469257311799,0.03616014434037265,0.8233164232702557,0,0.2917154786868114,0.20375836308663087
+132,4,0.2461366054826554,2.0,1.3736079466528066,0.0006918155731479261,0.03633762264594265,0.8270684455115205,0,0.3674159124550578,0.19723413500210762
+132,5,0.2123431783184738,2.0,1.3490364614299235,0.0006820241629071936,0.03570401751561193,0.8235229400104319,0,0.37739830144223163,0.20461285913860383
+132,6,0.24401145208871647,1.95,1.3752991376858468,0.0006927726411378719,0.03604819116918333,0.8163309996365582,0,0.40182022790532845,0.2109445364219503
+132,7,0.30719614199515916,1.95,1.366017897433703,0.000709031222739475,0.03641122287432411,0.8149402361427356,0,0.5049100076783731,0.18410712974603294
+132,8,0.2933490713709401,1.95,1.3649195551636595,0.0006977789813384624,0.03627569084217826,0.8147711386026348,0,0.5230044105634737,0.21382435715183518
+132,9,0.3002918668058544,2.0,1.364851136672518,0.0007018928548380004,0.03652322250597545,0.8258153017396667,0,0.5278027182419431,0.23056926503025715
+132,10,0.3435021214547179,2.0,1.3665553682658482,0.0006997929812630024,0.03640396563896599,0.8260597063484266,0,0.5841794722440956,0.23276777519026565
+132,11,0.31187880740636026,2.0,1.3652147353922177,0.0006994614996578884,0.03627311829295683,0.8258668978706011,0,0.5943927952798507,0.24707229764806662
+132,12,0.39633700540486916,1.95,1.3682640114956963,0.0006978946360727442,0.03596546379957404,0.8152753846067359,0,0.6968110035204593,0.22537534665561823
+132,13,0.429829840615737,2.0,0.8772296423221356,0.0008992868271585003,0.03212896079373439,0.7444120654536912,0,0.7989341901325085,0.20085388187577846
+132,14,0.4531665525017554,2.0,0.8799740202942744,0.0008939241409902473,0.03224277446483468,0.7449318300956994,0,0.8761009029823192,0.20908730436275907
+132,15,0.4215131871593611,2.0,1.3553791691769161,0.000695607922276032,0.03613657720111963,0.824446785516548,0,0.8864228809136693,0.22314678264631121
+132,16,0.45984131031035963,1.95,1.354709652471593,0.000693480535651917,0.035897246153414615,0.8132240086687709,0,0.9107877871697212,0.25175398480823713
+132,17,0.5221055224046688,1.95,1.360164188280264,0.0006923890858325543,0.03604306018526045,0.8140507565053909,0,1.0,0.24035174134889592
+132,18,0.5121812789091703,1.95,1.3617465532114787,0.0006967502421703332,0.03617288591337089,0.8142914824210962,0,1.0,0.24060426303056756
+132,19,0.47386550665364613,2.0,1.360309173831796,0.0006967414010825068,0.03622090021309996,0.8251595123209049,0,0.9950377318156984,0.2528347130912224
+132,20,0.5119282378093795,1.95,1.3602753790458135,0.0006946762344235483,0.036140210283441374,0.8140682794715429,0,1.0,0.23976079269793138
+132,21,0.49710863634000135,1.95,1.358198794734046,0.0006944853102302912,0.03605145664128103,0.8137537024676161,0,1.0,0.2570287878000043
+132,22,0.5225384974004148,2.0,1.3638267172917482,0.0006936071307692733,0.036005702229491496,0.8256655102584086,0,1.0,0.24179499133471571
+132,23,0.5096531502675453,2.0,1.3657335068416963,0.0006976615842256705,0.03613024470737312,0.8259409726579952,0,1.0,0.23217716755848444
+132,24,0.49339454320874865,2.0,1.3644082675454081,0.0006976424229559199,0.03620095973863156,0.8257503651503643,0,1.0,0.2446484773624954
+132,25,0.5185763521454257,2.0,1.368985570074668,0.0006965904755750021,0.03617584994557281,0.8264076945695189,0,1.0,0.2285878404847524
+132,26,0.5101540881430404,2.0,1.3699750245534859,0.0007000953396878336,0.03647190609354735,0.8265505988566427,0,1.0,0.20051362714346788
+132,27,0.4644616029533857,2.0,1.3704714657080725,0.0007031926634410795,0.03640421077402203,0.8266226472635733,0,1.0,0.2148720098446188
+132,28,0.5020507498139332,1.95,1.3702277557327316,0.0007012506133526849,0.03626554271908666,0.8155719537950971,0,1.0,0.20683583271311026
+132,29,0.4652947647525282,1.95,1.3687152180266973,0.0007014485125754517,0.03633639838001258,0.8153443974209204,0,0.9918431938862318,0.22852495732678482
+132,30,0.46760150440998133,1.9,1.368315670461169,0.0006994722848068843,0.036253514784249395,0.8037209270306008,0,1.0,0.22533834803327102
+132,31,0.4950667260256473,1.95,1.367305691122825,0.0006976833365578509,0.03625565956324988,0.8151309528963514,0,1.0,0.25022242008549084
+132,32,0.4784867053178247,1.95,1.3719901000679482,0.0006970910705953817,0.03634566756586009,0.8158356383262677,0,1.0,0.26162235105941567
+132,33,0.48571022845852346,2.0,1.3713872678529482,0.0006957260456119243,0.036233563094894464,0.8267517196877223,0,1.0,0.2857007615284115
+132,34,0.48641937992567413,2.0,1.3710680551398502,0.0006945519201853574,0.03616945154092091,0.8267056566058265,0,1.0,0.288064599752247
+132,35,0.5120711475320309,2.0,1.3703433817486501,0.0006934064019404442,0.03619612034238272,0.826601484463452,0,1.0,0.3069038251067694
+132,36,0.49553736946130345,2.0,1.3738001567645794,0.0006938244924881813,0.036334314248155954,0.8270965094546441,0,1.0,0.31845789820434484
+132,37,0.5359484074045899,2.0,1.3730959542046948,0.0006929043468183629,0.0363513735718295,0.8269955164483399,0,1.0,0.31982802468196647
+132,38,0.4967574141065813,2.0,1.3722766737037708,0.0006928101908756739,0.036399453244446975,0.8268782404039232,0,1.0,0.3225247136886043
+132,39,0.5395723221778733,1.95,1.3715236850924581,0.0006918506604264693,0.03619875662948937,0.8157639749658524,0,1.0,0.33190774059291106
+132,40,0.5236077904051586,1.95,1.3702653714483142,0.000691495828041577,0.036147393050171464,0.8155746772034159,0,1.0,0.34535930135052867
+132,41,0.5284232081708325,2.0,1.3734422723550372,0.0006923275732200385,0.036367167712385864,0.8270448949316709,1,1.0,0.3614106939027749
+132,42,0.5781465419408124,2.0,1.3437662470862348,0.0007344772483102713,0.036547736902975504,0.8227709958578512,1,1.0,0.4271551398027078
+132,43,0.5766345047076671,2.0,1.3688446339814577,0.0007194436481680476,0.036352817255076955,0.8263940326740629,1,1.0,0.45544834902555686
+132,44,0.5561211448356824,2.0,1.3679138369701063,0.0007227234783910508,0.03672704033201636,0.8262613951709895,1,1.0,0.4537371494522747
+132,45,0.5352370374310331,1.95,1.3702114162220322,0.0007186927483779138,0.03664403126923303,0.8155747431765479,1,1.0,0.4174567914367768
+132,46,0.5268995309460353,1.9,1.3683246526732264,0.0007200206668755361,0.03649008264594465,0.8037288270491427,1,1.0,0.38966510315345076
+132,47,0.5866107655298481,1.95,1.3302077474426461,0.0007352923290412627,0.03588413223672262,0.8094866996014524,1,1.0,0.45536921843282696
+132,48,0.5386586178399072,1.95,1.3700534875925747,0.000718984378811148,0.036697070478986335,0.8155510752783136,1,1.0,0.42886205946635714
+132,49,0.5797261067915029,1.9,1.3685812114679146,0.0007198936363726103,0.03663098924922277,0.8037692556657444,1,1.0,0.4657536893050096
+133,0,0.012170822368770831,1.9,1.375888163285203,0.0007009163714375227,0.03623771523585536,0.8049132217073571,1,0.136998600537558,0.1579046071791588
+133,1,0.014360302535480304,1.8499999999999999,1.3855583055046246,0.0007010440710451211,0.03673756727072815,0.7944499437689323,1,0.1730011820470959,0.11719943238880645
+133,2,0.06827020942744602,1.9,1.385523265475495,0.0007011013368051644,0.036697883351420754,0.8064218160263878,1,0.19766687670348262,0.1640115291535099
+133,3,0.1594606446820128,1.9,1.3855049240812811,0.0007011127083405143,0.0364789838686278,0.8064189563650137,1,0.2168245433134261,0.1757694245221412
+133,4,0.21061092062980682,1.9,1.384290897273404,0.0006988020594116688,0.03669762633222517,0.8062286453076551,1,0.2608762584910067,0.2208680574446804
+133,5,0.20233950374697865,1.9,1.385830344591055,0.0006998770059093305,0.03663141145704969,0.8064693661287259,1,0.2863518122128578,0.22599592953945177
+133,6,0.24788959792299844,1.95,1.385818624903746,0.0006999048691416027,0.03653972594005117,0.8179051147731471,1,0.31165742544436087,0.2774220924841802
+133,7,0.23904595266085987,1.95,1.3857174690254526,0.0006998017292232474,0.036753079475752654,0.8178900177780375,1,0.3291731691979608,0.2912556166055852
+133,8,0.25325404865351925,2.0,1.3856769582912436,0.0006998210036233021,0.03665421492410725,0.828790094747514,1,0.35677473723522396,0.30181384586476545
+133,9,0.2635776057940325,2.0,1.385616494732917,0.0006998589321809338,0.036437890841069145,0.828781525739297,1,0.3809287420885722,0.30402036319534537
+133,10,0.2587494846333993,2.0,1.3855114280330358,0.0006998768771386449,0.036674848871313476,0.8287666210682272,1,0.4110650681897388,0.2810781911916792
+133,11,0.31350318710988473,2.0,1.3847795752092842,0.0007013055791788958,0.03675309730553711,0.828663142703255,1,0.4528980680411619,0.3078131996447333
+133,12,0.2908662962901998,2.0,1.3847636907852698,0.0007008586453416268,0.036438612328157885,0.8286607604992273,1,0.44667250423153204,0.3073243153252898
+133,13,0.30589983809996707,1.95,1.384624278455764,0.0007010929550988073,0.036685958050526726,0.8177275198095788,1,0.4818975192457854,0.31046943467217636
+133,14,0.3279883176486093,2.0,1.3844032929459935,0.0007013591254876623,0.03657749986634297,0.8286097265464321,1,0.5272873835195226,0.3235778808026673
+133,15,0.37033998185791445,2.0,1.3842161083366626,0.0007015622662435264,0.03640781749671085,0.828583199473166,1,0.5669159975278699,0.3452452761558883
+133,16,0.4113787655337581,2.0,1.3841730459977315,0.000700939931489243,0.03662036366802697,0.8285769063206283,1,0.5983144297286236,0.4068433121410288
+133,17,0.44842749607245314,2.0,1.3840043198442462,0.0007015674293636869,0.036751252448790954,0.8285531178745623,1,0.6380284243043483,0.4773870878357129
+133,18,0.4593960698115395,2.0,1.363068095861455,0.0006833461830495539,0.03560404331555751,0.8255533303700989,1,0.6622682610851707,0.5149625512582374
+133,19,0.47947915925671697,2.0,1.3610719359453995,0.0006819860535469774,0.03575917336083361,0.8252652742292041,1,0.6776344030996655,0.5614179933895027
+133,20,0.5020207454391796,2.0,1.3588612362293149,0.0006803639340949065,0.03593606110860912,0.8249457880353698,1,0.7096282487036728,0.593898153192368
+133,21,0.4920972844810029,2.0,1.3564048443251389,0.0006786768878906326,0.036213686494031484,0.824590288682109,1,0.733937699062712,0.5950740161863934
+133,22,0.5011547821438073,2.0,1.3576504499188362,0.0006793308547931872,0.03614845906506524,0.8247705706918294,1,0.7521710163580737,0.6009545853352593
+133,23,0.5136869009849534,2.0,1.3034418312464922,0.0006857812079165914,0.03508274231102358,0.8167996377344712,1,0.7774196716182749,0.6090634411254783
+133,24,0.5601836204332388,2.0,1.3083497452656598,0.0006819957679531307,0.03469056788763314,0.8175317771717673,2,0.8143517372774476,0.6481430850741988
+133,25,0.5953889775772017,2.0,1.3808689951993869,0.0007020076382864393,0.0365840512181541,0.8281074024961312,2,0.8417459124899256,0.6956353752707714
+133,26,0.6523396915098859,2.0,1.3805352729443585,0.0007032324273303435,0.03669806707881655,0.8280602421849884,2,0.8983771204041878,0.7099628111607027
+133,27,0.6488387586724887,2.0,1.3796839378111652,0.0007039287256526113,0.03642814212315155,0.8279391966164253,2,0.9383113202260919,0.7450474352735065
+133,28,0.6427386348529238,2.0,1.379155365848771,0.0007054119887578755,0.03648525346322723,0.8278643081231819,2,0.9604465073940124,0.7618667729843962
+133,29,0.7193814043563791,2.0,1.3790832903432302,0.0007034970106418057,0.036666603252045404,0.8278534909464981,2,1.0,0.7979380145212638
+133,30,0.6756638153460474,2.0,1.3781228886159564,0.0007043894882291133,0.03645971804815462,0.8277168335292316,2,1.0,0.8188793844868245
+133,31,0.7075778955489644,1.95,1.3777462161859608,0.0006996291692716499,0.036473141472002965,0.8166996705085154,2,1.0,0.8585929851632144
+133,32,0.6435303924898729,1.95,1.3755638347529895,0.0006994184713561844,0.036253383605122,0.8163726761275101,2,1.0,0.8117679749662429
+133,33,0.6766792290237441,1.9,1.375564708251719,0.0006975540830146379,0.036348305076053904,0.8048613690676822,2,1.0,0.8222640967458136
+133,34,0.7074956669529469,1.9,1.377985154025085,0.0006970098066060861,0.03650773062961528,0.8052410719713761,2,1.0,0.8583188898431562
+133,35,0.6461109606525612,1.9,1.3760308786056337,0.000696480515969967,0.03653056329920686,0.8049342380342069,2,1.0,0.8203698688418708
+133,36,0.7014723883164309,1.8499999999999999,1.3758509146400846,0.0006950907336562216,0.03623783498384657,0.7928582472974048,2,1.0,0.8382412943881026
+133,37,0.7350063426555683,1.8499999999999999,1.3734840470950547,0.0006942536230306788,0.03631686926848147,0.7924689822671283,2,1.0,0.8500211421852277
+133,38,0.7447541278955544,1.8499999999999999,1.3753250569518896,0.0006981274022424357,0.03651675773839475,0.7927728680150947,2,1.0,0.8825137596518481
+133,39,0.7498603057189551,1.9,1.3762658026697572,0.0007017386697254678,0.03659725310760472,0.8049727729970017,2,1.0,0.8995343523965172
+133,40,0.6532985545782324,1.95,1.3767212777732376,0.0007049736844392882,0.03661919729638836,0.8165477872647136,2,1.0,0.8443285152607746
+133,41,0.7142391440567644,1.9,1.3770021950854314,0.0007025428022336925,0.036447734115783385,0.8050886068343773,2,1.0,0.8807971468558808
+133,42,0.723065499081716,1.9,1.375095922469898,0.0007030219988397444,0.03639260215246724,0.8047894493251764,2,1.0,0.9102183302723864
+133,43,0.7100836934513963,1.95,1.3731295192478599,0.0007032791940616513,0.03640186691161941,0.8160086301625311,2,1.0,0.9336123115046545
+133,44,0.6672691809115554,2.0,1.3770748780395292,0.0007016418269151067,0.03629361372965857,0.827566549949525,2,1.0,0.8908972697051849
+133,45,0.654014928499117,1.95,1.3773266167099458,0.0006996366115334138,0.036380370790014195,0.8166368497950237,2,1.0,0.8467164283303903
+133,46,0.7465988096174282,2.0,1.3766923926038095,0.0006978529290885926,0.03636646784724571,0.82751088075357,2,1.0,0.8886626987247608
+133,47,0.7290212898192047,2.0,1.377520433896335,0.0007005342535826097,0.03653698310510127,0.8276298055504957,2,1.0,0.9300709660640153
+133,48,0.768197272147187,2.0,1.3759796728650484,0.0007007852698260025,0.036401301872432616,0.8274099632912857,2,1.0,0.9606575738239569
+133,49,0.7203327260282357,2.0,1.3761411781833917,0.0007037560154671591,0.03644315906915103,0.8274338738395534,2,1.0,0.9677757534274521
+134,0,0.18956502830348942,1.95,1.3754480587296032,0.0007010230382408591,0.03622846847883308,0.8163558008121325,1,0.1531350823220238,0.261036651248933
+134,1,0.16797758389755776,1.9,1.3750226887183534,0.000701567628752994,0.03650105475686447,0.8047774868038705,1,0.16954341151442942,0.26720073097262
+134,2,0.18396701293446857,1.8499999999999999,1.374559918061844,0.0007018898821311738,0.03642052963734923,0.7926483765246414,1,0.19919593007355088,0.2809621363501607
+134,3,0.19914543346743918,1.9,1.3740422190385337,0.0007022200833485669,0.03648766855189398,0.8046236036468088,1,0.2253076719707169,0.29674121559717476
+134,4,0.2671788770210418,1.95,1.3857983515446972,0.0006999216930830094,0.036757371196913045,0.8179021003252881,1,0.269098542269014,0.3651315337114541
+134,5,0.2503061816895586,1.95,1.3858423980090255,0.0007000592618577241,0.036697065105934464,0.8179087014143032,1,0.2851362518909515,0.38750560311059334
+134,6,0.29785534897431604,2.0,1.3857478839753132,0.0007000791671488156,0.03642911915720531,0.8288002319217032,1,0.33593728791938193,0.4116014460218776
+134,7,0.2694424547617442,2.0,1.3802240210970722,0.0007034092620134873,0.036654185835703165,0.828015973082759,1,0.3645502521652207,0.3787411796521864
+134,8,0.34664673894171294,1.95,1.3858128604084325,0.000700378140151614,0.03674207186179813,0.8179043972037279,1,0.41312351679338255,0.43799110741453307
+134,9,0.3227876894002028,1.95,1.3800403586956982,0.0007019694459646353,0.03629108356868289,0.8170435568392781,1,0.42588448325878553,0.44144632032229525
+134,10,0.3893654247924618,1.9,1.3802228120929696,0.000703766695381616,0.036686909214618986,0.805593875919115,1,0.47593701665042243,0.4966353937743095
+134,11,0.3618815998581488,1.9,1.3791142716348577,0.0007039693772480267,0.03657635973137038,0.8054202694690963,1,0.5187322432686172,0.4812956751690062
+134,12,0.40504609706849226,1.8499999999999999,1.3798888367058226,0.0007025663213251635,0.03662718395402979,0.793523077063708,1,0.5366868135662333,0.5012379054733299
+134,13,0.4577051926769444,1.8499999999999999,1.3810265109414266,0.0007015599405835814,0.03647412482580722,0.7937090865881387,1,0.5901307634115958,0.5721762910410202
+134,14,0.43103963525946115,1.8499999999999999,1.3799212583742544,0.00070151543357322,0.0364331733399907,0.7935280447581959,1,0.5982184651601445,0.572507497318011
+134,15,0.4984308050610309,1.7999999999999998,1.3801876426613733,0.0007036631507044893,0.036708995048872116,0.7810156580362618,1,0.6483673480291923,0.63027955283118
+134,16,0.5065493006751688,1.7999999999999998,1.3089558462427087,0.000713183369315493,0.03513554194639683,0.7685927700850013,1,0.6767131176099482,0.6528801787706318
+134,17,0.49269750337054474,1.8499999999999999,1.3113337486516963,0.0007292185197564493,0.035645214130527174,0.7820737232297568,1,0.7327766153410371,0.631956190780433
+134,18,0.49948876664737474,1.9,1.3091889454143681,0.0007277328276992874,0.035831578502548894,0.7942349615539678,1,0.7749846624927813,0.5983163388342073
+134,19,0.5045839154756668,1.95,1.3565342330342272,0.0006785884158771061,0.036146165166813016,0.8134964683325564,1,0.802734792450913,0.5782999949843386
+134,20,0.5088770008286638,2.0,1.3665262928969368,0.0006950132675437228,0.03644954011827966,0.8260541550351593,1,0.8360041674684776,0.5482511128042427
+134,21,0.513862313175253,2.0,1.3649474364407794,0.0006944897768153882,0.03645494851165856,0.8258270238272858,1,0.8644791728431515,0.5269021467933078
+134,22,0.5146727071667857,2.0,1.362709882200701,0.0006936949628061216,0.03635104816192466,0.8255047176378814,1,0.8991795522750361,0.48333628752257074
+134,23,0.5905015210844312,2.0,1.360343535871989,0.0006928789587680751,0.03612042962400571,0.825163355264456,1,0.9465014995545267,0.5396697375420683
+134,24,0.6050116152501576,2.0,1.3636910881546678,0.0006912908281295321,0.0357805986202329,0.8256453197839007,1,0.9777068645615424,0.5797628980851351
+134,25,0.5759182955128985,2.0,1.366302564432991,0.0006976859857020478,0.036098182116463325,0.8260227736300626,1,1.0,0.553060985042995
+134,26,0.5891279287269625,1.95,1.363783303453912,0.0006968825941733945,0.03620744694566182,0.8145993243894969,1,1.0,0.5637597624232082
+134,27,0.5721786514492557,2.0,1.3650796455869578,0.0006945607640701694,0.036364119939581926,0.8258460599614826,1,1.0,0.5405955048308525
+134,28,0.6362186913755966,2.0,1.3631327793017993,0.0006939245926052334,0.03640167758584498,0.8255656923120918,1,1.0,0.6207289712519886
+134,29,0.5879061160841539,2.0,1.3444323054983256,0.0006819617071469035,0.03544207088431024,0.8228527894235034,1,1.0,0.5930203869471795
+134,30,0.6481871486883011,1.95,1.3651729028189088,0.0006929873338614632,0.03592158224267442,0.8148079244851272,1,1.0,0.6606238289610036
+134,31,0.595801714841456,1.95,1.338535127134713,0.000675599270513981,0.03563346334789468,0.8107493053715382,1,1.0,0.6193390494715202
+134,32,0.584906536960852,1.9,1.3359150006383196,0.0006726747442045819,0.035799208303602906,0.798550640038193,1,1.0,0.5830217898695066
+134,33,0.602743064094911,1.95,1.3658208290405809,0.0006915669975667443,0.036021526577026806,0.8149052455280866,1,1.0,0.6091435469830364
+134,34,0.6505821841900269,2.0,1.3307399665301982,0.0006670897979036787,0.03481324297840337,0.8208437061148158,1,1.0,0.6686072806334227
+134,35,0.6174638776705759,2.0,1.3310214850397513,0.0006699696885923867,0.035153819355744485,0.8208859491699592,1,1.0,0.6582129255685861
+134,36,0.6669293506110161,1.95,1.333383380985626,0.0006746790766090546,0.034752982035454544,0.8099572988708466,1,1.0,0.7230978353700537
+134,37,0.6856388194886557,1.95,1.3309152632660608,0.000676433318451601,0.03560926537960591,0.8095776404262742,1,1.0,0.785462731628852
+134,38,0.6355399664887791,2.0,1.32922477325348,0.0006783041626315916,0.03569184486291649,0.8206240760314281,1,1.0,0.7517998882959301
+134,39,0.6241195339770969,1.95,1.3279732950295788,0.0006755105172699965,0.03563914191446414,0.8091234034901091,1,1.0,0.7137317799236562
+134,40,0.6815492584532332,2.0,1.3239782801267823,0.0006716772480045949,0.034599463472897135,0.8198485341306436,1,1.0,0.7718308615107771
+134,41,0.6769592777885278,2.0,1.3235295770193876,0.0006740712577327766,0.035049001545190854,0.8197829599320235,1,1.0,0.7898642592950927
+134,42,0.7040012379278509,2.0,1.3356735864321765,0.0006748307683956181,0.03502569657436475,0.8215703623158835,1,1.0,0.8466707930928359
+134,43,0.7221260975095325,2.0,1.379368164849582,0.0006993900926807325,0.03631391740524289,0.8278929148602749,1,1.0,0.9070869916984416
+134,44,0.6756145199770536,2.0,1.379182162921773,0.0006978893032206728,0.03653638366534767,0.8278659827929593,1,1.0,0.8853817332568452
+134,45,0.7102484713206181,1.95,1.379881511169284,0.0007000847125664664,0.03647670162338681,0.8170192470477106,1,1.0,0.9008282377353933
+134,46,0.7233555743802335,1.95,1.378252660927572,0.0007001566511162878,0.03646826570824419,0.816775631673151,1,1.0,0.9445185812674447
+134,47,0.75,2.0,1.3765046792722957,0.0007000870650314523,0.03627486221649283,0.8274847234028259,1,1.0,1.0
+134,48,0.6982813579479314,2.0,1.3765076230207125,0.0006981372399819869,0.03638788370183884,0.8274845869442277,1,1.0,0.9609378598264381
+134,49,0.7179025318132899,1.95,1.3771603347352541,0.0007008575169019197,0.036372812162865475,0.8166123149150105,1,1.0,0.9930084393776326
+135,0,0.12738262802410172,2.0,1.3739543623812698,0.0007027702511150209,0.03627049606077175,0.8271211193143971,1,0.10857521168215942,0.2131751445041265
+135,1,0.16495709480777906,1.95,1.3740604780349641,0.0007028278383392162,0.03650688706934292,0.816148226390919,1,0.13477210151237368,0.23682751400943192
+135,2,0.19436894832936,1.95,1.3735498610814951,0.0007021300833758503,0.03643420103967754,0.8160713863311579,1,0.17823129565185258,0.2769214335620631
+135,3,0.1869701101780708,1.95,1.3732895055192937,0.0007012945774921035,0.03649765575307341,0.816032053178893,1,0.19646382094847212,0.2946152726622732
+135,4,0.25181591800537734,2.0,1.3730164377159333,0.0007015378026443913,0.03638569690844442,0.8269866099752723,1,0.23834269945670702,0.35492946074231513
+135,5,0.2959082401952247,2.0,1.3856048757824575,0.0007008858173334137,0.03675628984489258,0.8287801684100587,1,0.29265695733543245,0.429484857536839
+135,6,0.28117639535267236,2.0,1.3797245573239159,0.0007006602152525316,0.0363401104127952,0.827944051813655,1,0.322378964876753,0.44074936467323705
+135,7,0.2831262284635452,2.0,1.3795749746571446,0.000701307991856396,0.036592594334628456,0.827922926886855,1,0.358666842052945,0.4321983054745572
+135,8,0.3299729142940692,2.0,1.379329537215316,0.0007005538393391701,0.036589367966759635,0.8278877425282476,1,0.38908444693580396,0.44779711839915876
+135,9,0.38074794476276147,2.0,1.3812993314845134,0.0007002684309511646,0.036500015899074416,0.8281681552973024,1,0.4492893954049748,0.503440622002572
+135,10,0.3587938060968662,2.0,1.377078421517592,0.0007037283187062923,0.03651870830279576,0.8275676510870172,1,0.4549620668634223,0.5226965978383241
+135,11,0.37288156904758973,1.95,1.3772427403829526,0.0007061666751484062,0.036670126571711543,0.8166262454612176,1,0.4878215544135091,0.5258431576072868
+135,12,0.4136948168746393,2.0,1.37689341907751,0.0007086252597603296,0.03656809384941202,0.8275426474900104,0,0.5217683774884873,0.5499582195974814
+135,13,0.4500564459337513,2.0,1.3712956424851344,0.00069721495296799,0.03625980856939314,0.8267390220371533,0,0.606625099072607,0.5580213543490284
+135,14,0.4520543864509312,2.0,1.3706490995165241,0.0007129434317358657,0.03660556147347365,0.8266508984180746,0,0.6391930987467025,0.5879238231741672
+135,15,0.5328984223291023,2.0,1.3709390406164084,0.000710127195655275,0.036387076508118586,0.8266916358307529,0,0.7603536710588754,0.5958565130185072
+135,16,0.545996710158386,2.0,1.3702458445856278,0.0007124041418391979,0.03656343062860251,0.8265929501004885,0,0.8207651511709232,0.5923021656333888
+135,17,0.5885576512958012,2.0,1.1611688297887321,0.0005525029808374608,0.030384009999007443,0.7945011238993201,0,0.918417408901143,0.5706356257844796
+135,18,0.566224439812657,2.0,1.15508346872423,0.0005463383668843514,0.030324093871512692,0.7935037716346144,0,0.9267548858948802,0.585074951515683
+135,19,0.6184270530188318,2.0,1.1590693776251717,0.0005611156703686728,0.030567915059119648,0.7941609521545856,0,1.0,0.5614235100627725
+135,20,0.6128546580200188,2.0,1.152883253975022,0.0005547519069205942,0.03040396585078084,0.7931457822086655,0,1.0,0.542848860066729
+135,21,0.6070372831369197,2.0,1.1466177328789988,0.0005483307875195771,0.03033015917423649,0.7921138231669206,0,1.0,0.5234576104563989
+135,22,0.5609468957421521,2.0,1.140283890824454,0.0005418247726252704,0.029968242608583318,0.7910667520284341,0,1.0,0.5364896524738401
+135,23,0.5634948250017271,2.0,1.1561125853806546,0.0005534861553266241,0.030229465306607434,0.7936746881475033,0,1.0,0.5449827500057571
+135,24,0.5890372270539037,2.0,1.1690112680883475,0.0005663020273162683,0.03056370842547848,0.7957830797137849,0,1.0,0.5634574235130124
+135,25,0.6137287339241368,2.0,1.1730035267352215,0.0005802997906719839,0.03100149101786414,0.7964356438884589,0,1.0,0.5457624464137892
+135,26,0.5905958903249645,2.0,1.1673655440764217,0.0005737663329726941,0.030939415350062373,0.795517927448116,0,1.0,0.5686529677498817
+135,27,0.6152367226335853,2.0,1.1700916716014491,0.0005869373180485782,0.03138167051762557,0.795965305152542,0,1.0,0.5507890754452843
+135,28,0.5882752195211242,2.0,1.1646676378653522,0.0005806468986428221,0.031057865241537398,0.7950809534862185,0,1.0,0.5609173984037471
+135,29,0.5965823520642297,2.0,1.1663255441009694,0.0005928782453399567,0.031160434902194434,0.7953549211254056,0,1.0,0.5886078402140988
+135,30,0.6077741500505119,2.0,1.1667331883177212,0.0006036186187253269,0.03128744178419255,0.7954247589994103,0,1.0,0.6259138335017063
+135,31,0.5904969278330636,2.0,1.3440828161831733,0.0006873992997171517,0.035458707822393555,0.8228034255742624,0,1.0,0.6349897594435452
+135,32,0.6245613179623447,2.0,1.3428541182222176,0.0006891751162500029,0.03568429181582725,0.8226247311051275,0,1.0,0.6152043932078155
+135,33,0.5835955222095022,2.0,1.340778772789002,0.0006860069791236763,0.03599308011892346,0.8223207820702617,0,1.0,0.6119850740316738
+135,34,0.6234157840071893,1.95,1.3393904358398838,0.0006876487754208596,0.035913450653935926,0.8108842003071176,0,1.0,0.6113859466906308
+135,35,0.5791421664450946,1.95,1.336175679420384,0.0006840976476555136,0.035142595633886886,0.810389630066261,0,1.0,0.5971405548169819
+135,36,0.5806849290602192,1.95,1.1509458937221284,0.0005460007695576235,0.030176025111762768,0.7802352627792465,0,0.9983113238798369,0.6045346650276145
+135,37,0.5806720269741359,2.0,1.2952516013687894,0.0006872637711571705,0.034819748167205275,0.8155713328766144,0,1.0,0.6022400899137863
+135,38,0.6283829477789332,2.0,1.2931831021244728,0.000686429319109626,0.03475990864175458,0.8152597456412983,0,1.0,0.5946098259297773
+135,39,0.6194304253710717,2.0,1.128817639356052,0.0005265421588297477,0.029725340706157476,0.7891601975063497,0,1.0,0.564768084570239
+135,40,0.5702097800577005,2.0,1.1218512914554213,0.0005195523993324304,0.029410534798888742,0.78799642181686,0,1.0,0.5673659335256683
+135,41,0.6053046294505973,2.0,1.138762689298346,0.0005321788034751241,0.02962648526851302,0.7908120248781122,0,1.0,0.5510154315019907
+135,42,0.6074823576240437,2.0,1.1641516455117957,0.0005397312736689074,0.03022194195125618,0.7949835345595224,0,1.0,0.5249411920801453
+135,43,0.5999244523018094,2.0,1.1574492378275882,0.0005330427219822326,0.030124620543462176,0.7938867957264203,0,1.0,0.49974817433936436
+135,44,0.5884094535895966,2.0,1.1507184007757563,0.0005265033595593987,0.030014561875592226,0.7927810978250852,0,1.0,0.4946981786319885
+135,45,0.5960546044535657,2.0,1.1754956847096265,0.0005383280647320897,0.03096263093570333,0.7968257991442327,1,1.0,0.4868486815118856
+135,46,0.6127107882582306,2.0,1.3679887427612063,0.0006912024173247899,0.03645233131946291,0.8262630982356247,1,1.0,0.5423692941941016
+135,47,0.6249777889153658,2.0,1.3697709736347201,0.0006905916056695305,0.03625181569591137,0.826518617827151,1,1.0,0.5832592963845527
+135,48,0.575907648063915,2.0,1.3707128718538117,0.0006900497550403062,0.03604313109567238,0.8266534756365687,1,1.0,0.5530254935463833
+135,49,0.632687369824314,1.95,1.3686557166096893,0.0006889639131125078,0.03592267852957172,0.8153316793626756,1,1.0,0.6089578994143795
+136,0,0.021283870980241412,1.95,1.3726886593131093,0.0007030480748706379,0.03622172436823528,0.8159423614524224,1,0.15011989306921436,0.17078637917518558
+136,1,0.17841782542482365,1.9,1.3856185420738556,0.0007006646685221825,0.03672503696915707,0.8064365524845873,1,0.191857177723883,0.20558318111756815
+136,2,0.15743225637734998,1.9,1.3714424950073736,0.0007033997683454183,0.03637386677245089,0.8042149632434176,1,0.2428552339679435,0.1676338759672419
+136,3,0.1856120215683197,1.8499999999999999,1.3824513037034791,0.0006975364018398447,0.03654888473099685,0.7939409608795311,1,0.2660223126238145,0.1973436550626464
+136,4,0.19062252985206166,1.8499999999999999,1.3823688566269892,0.0006974059056590854,0.03663051156739823,0.7939274296170802,1,0.26455147711331817,0.21600646335578133
+136,5,0.22287112170497583,1.9,1.385739567929058,0.0007005956170396499,0.0365732727742938,0.8064554219574125,1,0.28733695623950567,0.2264544640305785
+136,6,0.210389251135818,1.9,1.385754465792679,0.0007003829752658185,0.03655791658038438,0.8064576809011305,1,0.343430108168323,0.21005735956162933
+136,7,0.28414749098854564,1.95,1.3859700088324143,0.0007003258467610711,0.03678558036324901,0.8179277856416813,1,0.3905303479423116,0.2597845060387366
+136,8,0.24741580109289868,1.95,1.385929041102488,0.0007004568298748047,0.03666622338960044,0.8179217235826182,1,0.42831869524083943,0.22029440998854294
+136,9,0.3216395010668575,1.9,1.3837812987573699,0.0007015969025072147,0.03642590705685159,0.8061498948709297,1,0.4780826110426277,0.26802152216602143
+136,10,0.3329175790888877,1.9,1.3834798571633837,0.0007019403164054771,0.036754231045476725,0.8061028909217808,1,0.5036297517391134,0.3048855946441413
+136,11,0.35315736881590015,1.95,1.3834177373669656,0.0007012539085487011,0.03644764762494438,0.8175476648701374,1,0.5343704825340951,0.33136391934087367
+136,12,0.37583315543326584,1.95,1.3833462564407875,0.000700614136438302,0.03648709849978797,0.8175368114143639,1,0.569134808547786,0.3605974400471715
+136,13,0.3616313016589424,1.95,1.3831329650368112,0.0006999966608058719,0.036697398796411596,0.8175048082579164,1,0.6182254874898718,0.34780368887664553
+136,14,0.3600493877532764,2.0,1.3821149402112587,0.0007012527862635664,0.03651783702713672,0.8282844699815961,1,0.6468512658198197,0.30436293808449494
+136,15,0.4076875323824853,2.0,1.3835510182228128,0.0007009126126971022,0.03645326003590378,0.8284885294046794,1,0.6726673407136642,0.3287353203233987
+136,16,0.46650007652906117,2.0,1.3833560891418506,0.0007002281814566619,0.03658513041771856,0.8284606345936419,1,0.7382305120402916,0.40402623904314844
+136,17,0.47704586673010574,2.0,1.3707316269510517,0.0006935850459888583,0.0362767688573163,0.826657176360782,1,0.7651020006999039,0.43668355483381405
+136,18,0.4500924162512365,2.0,1.3688523611895946,0.0006927770195396382,0.03584941119117037,0.8263874896165624,1,0.8066768977804559,0.39140552379684707
+136,19,0.4692489341013254,1.95,1.3217546028128626,0.0007319092534333655,0.03622822759451601,0.8081786121544244,1,0.8227267369506978,0.4005274644034876
+136,20,0.5363716160042996,2.0,1.357650115173655,0.0006922474327280107,0.03629622107880666,0.8247742557955671,1,0.8718291877142813,0.45879980306195656
+136,21,0.5754022776105865,2.0,1.3625739377412733,0.0006911415417667358,0.03639678481739709,0.8254843987334942,1,0.9242593147693998,0.518995172342755
+136,22,0.5878296992230352,2.0,1.365600661899668,0.0006901463558854817,0.03635095079578461,0.8259197126989368,1,0.9666496890255841,0.5372327453760051
+136,23,0.6023422133012474,2.0,1.368357540721521,0.000695782936726781,0.036320124668846224,0.8263173484630836,1,0.9937606944233459,0.5494597851063632
+136,24,0.5894233669597185,2.0,1.3701171025889274,0.0007010516307865925,0.03607874007873094,0.8265712410586263,1,1.0,0.5647445565323949
+136,25,0.5722779375247078,2.0,1.371442227341634,0.0006989261380984014,0.03621074897754538,0.8267605082608986,1,1.0,0.5409264584156924
+136,26,0.5826464703172809,2.0,1.3693811056414908,0.0006984203422958747,0.036332627760688053,0.8264649548738591,1,1.0,0.542154901057603
+136,27,0.588221142492629,2.0,1.3701348877321804,0.0006964236340641279,0.03646730752884965,0.8265724637192898,1,1.0,0.5607371416420965
+136,28,0.5683748705019438,2.0,1.370272207170749,0.0006946295272787745,0.036418291515567046,0.8265916333101337,1,1.0,0.5279162350064794
+136,29,0.557174817332192,2.0,1.368348126304347,0.000694011080415795,0.036297713157474126,0.8263154887434603,1,1.0,0.49058272444063994
+136,30,0.5503048824710142,2.0,1.366323016551345,0.0006934321226313867,0.03603045251571284,0.8260244901418433,1,1.0,0.46768294157004703
+136,31,0.6035904233516671,2.0,1.3641857306970564,0.0006926603744205242,0.035839771113820966,0.8257169088229324,1,1.0,0.5119680778388901
+136,32,0.6030679039250052,2.0,1.367888536378246,0.0006919088130393816,0.036176938053479935,0.8262489157222425,1,1.0,0.5435596797500172
+136,33,0.5626464261491976,2.0,1.3702289954120697,0.0006968254543168581,0.03646979614589925,0.826586068875787,1,1.0,0.5088214204973253
+136,34,0.6231671800285208,1.95,1.3681659187353912,0.0006962456714236677,0.036447035606172955,0.8152601145355943,1,1.0,0.5772239334284025
+136,35,0.641337699143564,1.95,1.370723742714945,0.0006948891371295873,0.03595536092655011,0.8156446325508789,1,1.0,0.6377923304785464
+136,36,0.640414746454342,2.0,1.3344803207839058,0.000674261717592438,0.03515092189863213,0.8213952044270278,1,1.0,0.6680491548478067
+136,37,0.6215298972520321,2.0,1.3455780037277256,0.0006766705566599123,0.03544873011372092,0.8230181901855446,1,1.0,0.6717663241734403
+136,38,0.5946909986895393,2.0,1.3482121663186701,0.0006806113108864655,0.035625027616627114,0.8234026999691823,1,1.0,0.6156366622984644
+136,39,0.6076801625106,1.95,1.3460702821262776,0.000678268393703442,0.035967592838572725,0.8119035698201371,1,1.0,0.6256005417019999
+136,40,0.5947418635352688,2.0,1.347035561559771,0.0006816764456393155,0.0353203885048809,0.8232318539464999,2,1.0,0.6158062117842292
+136,41,0.572169276991729,2.0,1.3779331221603197,0.0007028310857781287,0.03661114898469081,0.8276893263141336,2,1.0,0.5738975899724301
+136,42,0.6317270343907629,1.95,1.352537761480867,0.000675870148070105,0.036056758127998134,0.8128885370905001,1,1.0,0.6057567813025431
+136,43,0.590588610403529,1.95,1.352349995569213,0.0006886944344996835,0.03608095510940892,0.8128638776687295,1,1.0,0.6019620346784296
+136,44,0.6284414911165954,1.9,1.3506351512797214,0.0006862935415625019,0.036133170467105055,0.8009125737131045,1,1.0,0.6281383037219844
+136,45,0.5928849508930516,1.9,1.3581125275527073,0.00068663741241643,0.035749568556131095,0.802102280482922,1,1.0,0.6096165029768386
+136,46,0.5833044600145618,1.8499999999999999,1.3562739891652944,0.0006844127190569773,0.03581029971974542,0.7896210659643552,1,1.0,0.5776815333818724
+136,47,0.6190085072666806,1.9,1.3712787751781548,0.0006938400605116329,0.0363313981790503,0.8041861730076574,1,1.0,0.5966950242222683
+136,48,0.6006562953684009,1.9,1.3736728940430059,0.0006985253723777031,0.03656257831803274,0.8045643756641262,1,1.0,0.6021876512280031
+136,49,0.6450996239478767,1.95,1.3521664411621312,0.0006799714657484371,0.035657017793362854,0.8128333003385331,1,1.0,0.6503320798262554
+137,0,0.10301861937842258,1.95,1.3778705503884372,0.0007008169865711823,0.036115731825256035,0.8167186383770316,0,0.10106761697771001,0.20863857529112856
+137,1,0.17765778192567191,1.9,1.3786978919443444,0.0007000604028636268,0.03655115678845124,0.8053537812556376,0,0.17830856111959867,0.2211145249261081
+137,2,0.20138053643620243,1.9,1.378959386577303,0.0007018496907018509,0.03658929757971985,0.8053953305215606,0,0.2453581306892324,0.21079094720169814
+137,3,0.23311979476351244,1.9,1.3730515898190585,0.0006911846622097551,0.036432538035582385,0.8044643535665363,0,0.3283858799200371,0.20588480931832528
+137,4,0.2809634593449331,1.9,1.372522732918327,0.0006907346131999241,0.03632124100963252,0.8043810085776201,0,0.4367217307009065,0.18758255688190162
+137,5,0.2981904004470315,1.9,1.3625612147242847,0.0006900929960513025,0.03611792901274001,0.8028085844883331,0,0.5074977502535033,0.1839710011521006
+137,6,0.2602152119574572,1.95,1.3615703069505825,0.0006898175444618372,0.036044806713179736,0.8142627318543838,0,0.5059168599824401,0.19282822654827053
+137,7,0.3402809418568046,1.9,1.3662776961898904,0.0006902201216331907,0.03599118756562261,0.8033963074900926,0,0.5884707088722775,0.18297552769297853
+137,8,0.324714763142734,1.9,1.3676328743752098,0.0006932891942056307,0.036256254500088,0.803611239526936,0,0.6204389565927332,0.18846393501880238
+137,9,0.38781337394654086,2.0,1.2305016343476631,0.0007846957210081454,0.03439364873937888,0.805662882617777,0,0.7283779297626845,0.1548740068048901
+137,10,0.42431118652032523,2.0,1.2335992810973608,0.0007830778647959764,0.0345477709642545,0.8061469169710607,0,0.8241985529862588,0.14877255108607235
+137,11,0.4358016244801796,2.0,1.1300209682233158,0.0007677976650627501,0.03306872190913362,0.789440561563845,0,0.88572362013457,0.13837392142117202
+137,12,0.43048237735774547,2.0,1.1330361467799706,0.0007598827897778405,0.03297526244230082,0.7899386929857845,0,0.9105770167447261,0.1541719021995166
+137,13,0.4760113446240691,2.0,1.1304152879729439,0.0007584225095653577,0.03343609073845849,0.7895029834924886,0,0.978784947743912,0.14832455175501427
+137,14,0.44166866582714914,2.0,1.1325452925702222,0.0007509372640969349,0.03351640581298248,0.7898542616066555,0,0.9867385828891477,0.1565774422383
+137,15,0.4744812195999276,2.0,1.139649569084948,0.0007717011690921541,0.03373898054689736,0.7910378977814354,0,1.0,0.1816040653330919
+137,16,0.48718193502125123,2.0,1.1369294145403432,0.000770498646352605,0.03357680634703254,0.7905875104122859,0,1.0,0.1572731167375042
+137,17,0.4736285772829057,2.0,1.1384939927593094,0.0007620000562394194,0.033164476301621254,0.7908436110033249,0,1.0,0.17876192427635212
+137,18,0.4811649880017467,2.0,1.1358900879315734,0.0007610306645730437,0.03290184832075331,0.7904122517473601,0,1.0,0.20388329333915556
+137,19,0.4973863943443952,2.0,1.3512691970393516,0.0006914142975829828,0.036082670568944396,0.8238499210422126,0,1.0,0.15795464781465052
+137,20,0.4541865429307669,2.0,1.130532210682228,0.0007584530541606073,0.03361918048275192,0.7895224241402057,0,1.0,0.18062180976922282
+137,21,0.47446512869797686,2.0,1.1372758863974723,0.0007791520512242091,0.03377255372280226,0.7906477308412396,0,1.0,0.18155042899325607
+137,22,0.4796236145921389,2.0,1.1346125524550335,0.0007778528132250073,0.03372849975901946,0.7902061133948926,0,1.0,0.19874538197379632
+137,23,0.5009876706097247,2.0,1.1318352901985458,0.0007765674810007935,0.03329565604767563,0.7897448997733378,0,1.0,0.2032922353657491
+137,24,0.4621999142829763,2.0,1.3519535731605217,0.0006939421166802448,0.03616288124698527,0.8239499498885507,0,1.0,0.20733304760992086
+137,25,0.49356667182944325,1.95,1.3510751079784702,0.0006922772471142178,0.03609210262397304,0.8126709601382568,0,1.0,0.24522223943147742
+137,26,0.48135557798014406,1.95,1.3574460543229339,0.0006915336980279267,0.035929398550576495,0.813638696120426,0,1.0,0.27118525993381337
+137,27,0.5242800141604521,2.0,1.3565634311216035,0.0006901005146649803,0.0356587772433105,0.8246165299652866,0,1.0,0.2476000472015069
+137,28,0.5018182884775788,2.0,1.3580538876343664,0.0006932205777204932,0.035758703761554045,0.8248328832261848,0,1.0,0.27272762825859587
+137,29,0.526246156611028,1.95,1.364020488516297,0.0006929213070857045,0.035992979394813364,0.8146339467787599,0,1.0,0.2541538553700933
+137,30,0.5241352158935682,1.95,1.3640026034964081,0.0006950935934841574,0.03624461660197623,0.8146319020883426,0,1.0,0.24711738631189353
+137,31,0.5141892501967041,2.0,1.3641948001788204,0.0006972376031158444,0.03622823902932377,0.8257195313870276,0,1.0,0.24729750065568035
+137,32,0.5031388923385401,2.0,1.363962618028553,0.000697783636266572,0.036210096859958976,0.8256862734523707,0,1.0,0.27712964112846705
+137,33,0.5212576685248659,2.0,1.3690497311203074,0.000697185903678287,0.036192050956713226,0.826417069623774,0,1.0,0.27085889508288613
+137,34,0.5212334141921577,2.0,1.3683121544550172,0.0006975238566636653,0.03608613543769577,0.8263113343837495,0,1.0,0.2707780473071925
+137,35,0.527954196858979,2.0,1.3674941644427923,0.000697876590036778,0.03620901372149517,0.8261940056757889,0,1.0,0.2598473228632633
+137,36,0.5075471595071649,2.0,1.3676699927931746,0.0007001043589562847,0.03638142427032326,0.8262198924637304,0,1.0,0.2918238650238829
+137,37,0.492868490909126,1.95,1.3721717998688077,0.0006992653101767566,0.03641173750470845,0.8158635900377138,0,1.0,0.3095616363637533
+137,38,0.5352281330353624,2.0,1.371241108630194,0.0006979203335361415,0.03620975820399299,0.8267314124675096,0,1.0,0.28409377678454134
+137,39,0.5223285908670593,2.0,1.3716481240317457,0.0006996195111373622,0.03628429400463651,0.8267901949529687,0,1.0,0.274428636223531
+137,40,0.5088299633255461,2.0,1.3709580266208377,0.000700084280192358,0.036207036320315765,0.826691478255722,0,1.0,0.29609987775182023
+137,41,0.5133033895914204,2.0,1.3748125861740887,0.0006994301457427154,0.03644391872447382,0.827242849125084,0,1.0,0.31101129863806803
+137,42,0.5176018513238694,2.0,1.3778452630988076,0.0006990656873748875,0.036409512271318514,0.8276757214153855,0,1.0,0.32533950441289794
+137,43,0.5039448502208681,2.0,1.3801842209259307,0.0006989174008093928,0.03645700995711513,0.8280090258757951,0,1.0,0.34648283406956026
+137,44,0.539457695250636,2.0,1.3797646783352375,0.0006980465687761448,0.036597277259830543,0.8279490224611301,0,1.0,0.33152565083545327
+137,45,0.5000939904967505,2.0,1.379169970824309,0.0006981619826877657,0.03648273185056489,0.82786432308099,0,1.0,0.33364663498916813
+137,46,0.530683810964352,1.95,1.3786965569710476,0.0006972770482748966,0.03630550350275584,0.8168411911524852,0,1.0,0.3689460365478401
+137,47,0.5576803467491832,1.95,1.3805647391273224,0.0006974446904767114,0.036449609921452616,0.817120577663148,0,1.0,0.3589344891639439
+137,48,0.5345364461246984,1.95,1.3809201033869196,0.0006984873658024292,0.03664825127632653,0.8171739869261949,0,1.0,0.38178815374899455
+137,49,0.5182895308973041,1.9,1.3825121555557442,0.0006985906208985108,0.03653116183102205,0.8059505456241218,0,1.0,0.394298436324347
+138,0,0.17142310119140033,1.95,1.379112372026853,0.0007071043873952321,0.03618674417154841,0.8169063335130662,0,0.1702380091233265,0.21109299180689903
+138,1,0.13507636582131125,1.9,1.3790962207606723,0.000708037734912319,0.03667955668023173,0.8054187157326934,0,0.18070540702712848,0.20931401003486616
+138,2,0.20928411854007506,1.8499999999999999,1.379780307935796,0.0007069418858859433,0.03670328553779632,0.7935067285968489,0,0.25902661577222696,0.18557824077061427
+138,3,0.2256673389082859,1.8499999999999999,1.3524771126426396,0.0006799535852050737,0.03616407577011601,0.7889881518526376,0,0.3246590964491286,0.18601233442878154
+138,4,0.26502943260520784,1.9,1.3512311267586998,0.0006792077239156546,0.035748917845704956,0.8010053270391017,0,0.42424251857973183,0.1511080839110502
+138,5,0.2806642896138206,1.9,1.3605518038069828,0.000684383701807781,0.03614453615817624,0.8024884773377702,0,0.48855987380294796,0.15080113364213812
+138,6,0.3110138073548717,1.95,1.3597512308532629,0.0006841715313518129,0.03608357190197742,0.8139857496806663,0,0.5726227537565972,0.1398823528407762
+138,7,0.3479641940802794,1.95,1.3595547697312975,0.0006843569801225847,0.03577667121293485,0.8139560572534629,0,0.6640250678679323,0.10784722311035505
+138,8,0.31243850956098657,2.0,1.1802413679210035,0.0007835279223714298,0.03428511692394298,0.797672174509296,0,0.6880816621885141,0.12401948228526978
+138,9,0.38457662957068767,2.0,1.2055167142960015,0.0007699685107647346,0.034493230885293734,0.801716408119785,0,0.7606817393634194,0.13434644608439963
+138,10,0.3786232445484334,2.0,1.2084529457969528,0.0007888599213010355,0.03457029081370521,0.802188754687358,0,0.7850102187452555,0.1487305235011039
+138,11,0.4392183627278252,2.0,1.2117216617089308,0.0007789344875902528,0.034727868618463796,0.8027037848547315,0,0.8761773354658529,0.12915809513828014
+138,12,0.427299030158267,2.0,1.1339978593215356,0.0007663535316621223,0.03303082183085046,0.7901003770386564,0,0.907617514721343,0.14750674756576576
+138,13,0.45309100907128946,2.0,1.1317685116925624,0.0007654823710665413,0.033514671450525724,0.7897301296441677,0,0.9424522531212691,0.18703369274260592
+138,14,0.4677902650674906,2.0,1.129281606637904,0.0007642925019238217,0.03363379371290155,0.7893164697169515,0,0.9632300134878163,0.2083275322412136
+138,15,0.4854247619830385,2.0,1.357370604692294,0.0007207781905182701,0.03628923933690727,0.824742104774061,0,0.9960122544304701,0.22339953403616816
+138,16,0.4655468946812828,2.0,1.357477859200301,0.0007173258644407999,0.036352262703876786,0.8247566091269847,0,1.0,0.21848964893760922
+138,17,0.49999591908902563,2.0,1.3638587957494075,0.0007139041040228788,0.03646574270974127,0.8256759706202544,0,1.0,0.19998639696341883
+138,18,0.5010932917749612,2.0,1.1239534444150479,0.0007615774840955037,0.0327862383424006,0.7884281461006989,0,1.0,0.2036443059165372
+138,19,0.4870161484450709,2.0,1.3635740943812604,0.0007141072387616819,0.03631569534215565,0.8256350467703409,0,1.0,0.2233871614835696
+138,20,0.5042549403887062,2.0,1.3634990650158065,0.0007112859051577195,0.036379880141040224,0.8256234327729038,0,1.0,0.21418313462902056
+138,21,0.5114573671551206,2.0,1.3625056408944798,0.0007119683913444424,0.03623736622243225,0.8254805604908603,0,1.0,0.20485789051706862
+138,22,0.509122240231859,2.0,1.3619996042592761,0.0007144931168482481,0.03642131784949013,0.8254083753032383,0,1.0,0.19707413410619656
+138,23,0.5072633863861875,2.0,1.125833091968713,0.0007521614262098373,0.03279082055079316,0.7887383806477013,0,1.0,0.22421128795395812
+138,24,0.4987770092173043,2.0,1.3617145705125502,0.0007155615598124266,0.036450081409779324,0.8253676034563364,0,1.0,0.2625900307243475
+138,25,0.5273446798601535,2.0,1.3615879148236636,0.0007126702407822492,0.03636411504514237,0.825348513513312,0,1.0,0.2911489328671783
+138,26,0.4896208119586636,2.0,1.3606025044951395,0.0007135416640219794,0.036325397138172344,0.825206674091879,0,0.9929652838235715,0.30811566143078317
+138,27,0.5150207076022075,1.95,1.366518664675655,0.0007106539248979919,0.03628599307950843,0.8150162355590831,0,1.0,0.3167356920073583
+138,28,0.5420850720504977,1.95,1.3658334101864065,0.0007083480321484059,0.03638419854775901,0.8149122054243125,0,1.0,0.30695024016832545
+138,29,0.5369628876760183,1.95,1.3653424780481975,0.0007104963478505729,0.03647500292134341,0.8148387947948876,0,1.0,0.2898762922533942
+138,30,0.4932047549981085,2.0,1.3647303347212756,0.0007123477028382515,0.03633812561606291,0.8258009323315695,0,1.0,0.31068251666036156
+138,31,0.5234166390548652,1.95,1.3702088075960395,0.0007096249056384872,0.03641163857599018,0.8155716229506825,0,1.0,0.3447221301828841
+138,32,0.5480327466818228,1.95,1.3696379457115455,0.0007076904031481098,0.03623913906548788,0.8154851593827079,0,1.0,0.32677582227274243
+138,33,0.5242268819656926,1.95,1.3690562843538272,0.0007091082824142354,0.03648056287630058,0.8153980481024808,0,1.0,0.3474229398856416
+138,34,0.5505225654660607,1.9,1.36877571860661,0.0007070812305888326,0.03639720930956365,0.8037958911358275,0,1.0,0.33507521822020214
+138,35,0.5370498585240965,1.9,1.3677586652299816,0.0007085409441321662,0.03646140643939865,0.8036359047651397,0,1.0,0.32349952841365476
+138,36,0.5433660835003058,1.95,1.3671170483924306,0.0007095458823547002,0.03631588635947622,0.8151060997563705,0,1.0,0.3112202783343525
+138,37,0.5318211919176115,2.0,1.366910874250029,0.0007105546598419482,0.036468679232089,0.8261138731753452,0,1.0,0.30607063972537124
+138,38,0.4969584710903163,2.0,1.366703088469563,0.000711287262596686,0.03646027440558462,0.8260842332838553,0,1.0,0.32319490363438774
+138,39,0.5354595194963637,1.95,1.371354054342415,0.0007090935231621484,0.03645224079557323,0.815743662732751,0,1.0,0.3181983983212124
+138,40,0.4937460558409808,1.95,1.3703040766453187,0.0007102227196323817,0.036420964664569226,0.8155861322000858,0,1.0,0.3124868528032692
+138,41,0.536209334391269,1.9,1.3742693268000439,0.0007082608283623467,0.03647626376986925,0.8046612025242242,0,1.0,0.32069778130423
+138,42,0.5370657837106307,1.9,1.373229306018152,0.0007092570258183164,0.036375686672941436,0.8044979920114982,0,1.0,0.2902192790354356
+138,43,0.48972874026044677,1.95,1.3726242675827631,0.000710675108988283,0.03661766085221404,0.8159349818229156,0,0.9979545810010941,0.30182302620003026
+138,44,0.49149606444819344,1.9,1.3762865932509345,0.0007085271885062273,0.03647276905600813,0.804978168368171,0,1.0,0.30498688149397807
+138,45,0.4929316050065656,1.95,1.3787057520948927,0.0007071469644872113,0.03642755141331443,0.8168455201196254,0,1.0,0.3097720166885518
+138,46,0.4954711477071589,2.0,1.3808799616370915,0.0007056911315501278,0.036582018200714966,0.8281100121614667,0,1.0,0.3182371590238629
+138,47,0.5169620027723005,2.0,1.3824607403080325,0.0007044934231781908,0.036771493203606134,0.828334568922339,0,1.0,0.3232066759076683
+138,48,0.5344031606645587,2.0,1.382735105182735,0.0007034107990110078,0.03657742564452206,0.8283732712730768,0,1.0,0.31467720221519563
+138,49,0.5323141007275427,2.0,1.3822451810520118,0.0007038198548476299,0.03642485834094248,0.8283037234151788,0,1.0,0.3077136690918088
+139,0,0.12970527212905072,2.0,1.3729135169757463,0.0007029822128603639,0.03622453891224596,0.8269722969643581,1,0.11830949913438008,0.20793824158432905
+139,1,0.14408220037684974,1.95,1.3727416756625486,0.0007031473195974465,0.03647511908302272,0.8159503531451383,1,0.14275074180117425,0.22327301218793347
+139,2,0.03471350510389146,2.0,1.3722168387161098,0.0007034808054409749,0.036417231286190566,0.8268727299293431,1,0.1658462058244731,0.1945834092470074
+139,3,0.13813873033035975,1.95,1.3845473256181762,0.0007011977324595134,0.036470301099362536,0.8177160810039732,1,0.2052616690099551,0.15344687575459232
+139,4,0.14206317825705175,1.95,1.3819894628488139,0.0006973730903709343,0.03657716866001302,0.8173333630322183,1,0.24888887652358832,0.10835875882538806
+139,5,0.21836518746362782,2.0,1.3828650901676498,0.0006978228955584146,0.036568422414503185,0.8283901618331114,1,0.2977538508793381,0.16421215703964187
+139,6,0.23287752676744491,2.0,1.3832198085684275,0.000698168220369574,0.036340869613466255,0.8284406808519983,1,0.33461066292838054,0.19677753865364223
+139,7,0.2798952588799984,2.0,1.3829420830021433,0.0006979373694182562,0.036619446613325016,0.8284011393956889,1,0.3905215066055437,0.24562218745926967
+139,8,0.29289539143552157,2.0,1.3861276917259708,0.0007003502787921672,0.03675128564894039,0.8288541931854935,1,0.4245536466798551,0.2769131092119318
+139,9,0.3413793358141755,2.0,1.383803744172037,0.0006999778278027074,0.03648424405236719,0.828524171976415,0,0.48004926791798275,0.3311987621566081
+139,10,0.3753646189339859,2.0,1.367996484715056,0.0007230737604438728,0.036747554414831206,0.8262733597872773,0,0.5816831275095816,0.3089712264338443
+139,11,0.3893489257340671,2.0,1.3671703686031351,0.0007248626115193963,0.036689926150303934,0.8261552562507678,0,0.639558612152014,0.3117516029108717
+139,12,0.43112327752535357,2.0,0.9012414548297744,0.0010472186229404414,0.03327576108609194,0.7490093711995957,0,0.7351579380799398,0.2902003409779254
+139,13,0.47634938547555405,2.0,0.8975215875235142,0.0010394189746373052,0.03376332804152256,0.748306471650884,0,0.8527487892162452,0.28416623263018653
+139,14,0.4628340731088618,2.0,1.3610186477359991,0.0006930727419619274,0.03608392603878002,0.825260787347108,0,0.8871599315159185,0.2932336683416479
+139,15,0.5099784830660398,2.0,1.3603128353596308,0.000693792155640248,0.03635154821801684,0.8251591895911218,0,0.9547358005673237,0.29361387613036766
+139,16,0.5238232829823428,2.0,1.3661375403280722,0.0006936041221031709,0.036273950215406914,0.825997883548422,0,1.0,0.27941094327447585
+139,17,0.5077346751997088,2.0,1.3708675106744304,0.0006938297682292073,0.03622152130480647,0.8266767170955089,0,1.0,0.29244891733236283
+139,18,0.5298397472486216,2.0,1.3701746393122438,0.0006941595409167018,0.03610012872799383,0.8265775129497078,0,1.0,0.2661324908287384
+139,19,0.4822982241640066,2.0,1.3693541166455807,0.00069294622136283,0.03618282725824847,0.826459513823806,0,0.9960610706485249,0.2795793196819886
+139,20,0.4852598349495688,1.95,1.3697334139529809,0.0006946156104544244,0.036307615707183064,0.8154955894713819,0,0.9954676957682073,0.2902425221409528
+139,21,0.5163294422750334,2.0,1.3694647478537934,0.0006959996497683498,0.036392008436871015,0.826476256247661,0,1.0,0.32109814091677813
+139,22,0.5394523386143006,2.0,1.369212316838681,0.0006966320291414494,0.036342627511300504,0.8264402327237806,0,1.0,0.29817446204766884
+139,23,0.48867389511117776,2.0,1.3684469014328973,0.0006953101332353249,0.036213961024046656,0.8263300371664731,0,0.9997688683648651,0.2958878258841056
+139,24,0.5269689152299035,1.95,1.3684661755933663,0.0006967972458066286,0.03601040288078078,0.8153054983735901,0,1.0,0.28989638409967816
+139,25,0.49250266374639956,1.95,1.3725653950349614,0.0006965801709248241,0.03639663845813472,0.8159219059855242,0,1.0,0.30834221248799853
+139,26,0.5205195911365796,1.9,1.3724690426419022,0.0006977254935161493,0.03648847972282341,0.8043747602797179,0,1.0,0.3350653037885985
+139,27,0.5017540443423272,1.9,1.3715824662956422,0.0006983212781001395,0.03632945622725291,0.8042354021216809,0,1.0,0.33918014780775735
+139,28,0.5409847813751205,1.95,1.371386907038232,0.0006995524918358097,0.03610553479401413,0.815745732531706,0,1.0,0.30328260458373474
+139,29,0.4938869166406463,1.95,1.3711113018460015,0.0006982015374434509,0.03605126863630025,0.8157038980092883,0,1.0,0.3129563888021543
+139,30,0.538336239096126,1.9,1.370830684164337,0.0006993111479964703,0.03634509148550279,0.8041173256886085,0,1.0,0.2944541303204199
+139,31,0.48951058870531006,1.9,1.369792767607775,0.0006979187219451405,0.036485558947669444,0.8039533501668777,0,1.0,0.29836862901770017
+139,32,0.5177255377732284,1.8499999999999999,1.3694265586422636,0.0006989334158892806,0.03628874946520681,0.7918024310703681,0,1.0,0.32575179257742787
+139,33,0.499895172309748,1.8499999999999999,1.36855224093807,0.0006999684386271048,0.03626498982028744,0.7916586032754461,0,1.0,0.33298390769916
+139,34,0.541619647528459,1.9,1.3681347978527048,0.000701006839611709,0.03627759124408901,0.8036928763740978,0,1.0,0.30539882509486327
+139,35,0.5163864024615273,1.9,1.3679245090755467,0.0006994898944457134,0.03631368402221119,0.8036592181405888,0,1.0,0.3212880082050911
+139,36,0.5029017494061776,1.8499999999999999,1.367440207591706,0.0007004985033129582,0.036431837807688806,0.7914753052457371,0,1.0,0.3430058313539251
+139,37,0.5452914160544058,1.9,1.366558485518996,0.0007016513838061023,0.036247088486342026,0.8034442650884601,0,1.0,0.3509713868480192
+139,38,0.5232475820100856,1.9,1.3717782329900705,0.0007006243212104427,0.03643639421502426,0.804266947053491,0,1.0,0.3441586067002853
+139,39,0.5254438691769091,1.8499999999999999,1.3713248510610268,0.0007014539122197594,0.03617364101084488,0.7921160238727615,0,1.0,0.3514795639230302
+139,40,0.5470111059313458,1.9,1.3704551045906288,0.0007023062240552406,0.03645768387825003,0.8040591041352276,0,1.0,0.35670368643781913
+139,41,0.5069752259460074,1.9,1.3748216416293046,0.0007013117434739177,0.0364635023489039,0.8047458178083262,0,1.0,0.3565840864866914
+139,42,0.5303711335248759,1.8499999999999999,1.374489993412088,0.0007022204259627069,0.036518324357748724,0.7926369923476219,0,1.0,0.36790377841625277
+139,43,0.535120955903355,1.8499999999999999,1.3737094036353714,0.0007029952723994638,0.03624696048639852,0.7925089173305887,0,1.0,0.3837365196778496
+139,44,0.5163884797739214,1.9,1.3731221717471196,0.0007036521716596529,0.03648502496248336,0.8044793780845534,0,1.0,0.3879615992464048
+139,45,0.5188053157919265,1.95,1.3730339658670663,0.0007047262290882741,0.036275993619198164,0.815994718021021,0,1.0,0.3960177193064215
+139,46,0.5182945299377106,2.0,1.372882000964498,0.0007055761039504241,0.03645063355409998,0.8269685296488769,0,1.0,0.39431509979236873
+139,47,0.5630365872173677,2.0,1.3726992129804323,0.0007062987522429565,0.036545919962598684,0.8269425794984914,0,1.0,0.3767886240578921
+139,48,0.5555329594008532,2.0,1.3723828199689145,0.0007045402320734721,0.0364075455569249,0.8268967928463953,0,1.0,0.3517765313361773
+139,49,0.5404185455129331,2.0,1.3719805931596107,0.0007030060547496744,0.03628271481536953,0.8268387718235161,0,1.0,0.33472848504311026
+140,0,0.18785831734686648,2.0,1.3721072233525458,0.0007035083811875809,0.0362348348280994,0.8268570453611294,1,0.15761072744214305,0.2493800879000309
+140,1,0.17886031822968776,1.95,1.3718905686586442,0.0007042364887083323,0.03647197044823239,0.8158228307686698,1,0.19368445896448777,0.27128844881297554
+140,2,0.18234868399697593,2.0,1.3712872232839035,0.0007046822034644886,0.03640965874339007,0.8267399552972038,1,0.21278749475323944,0.2574456203189339
+140,3,0.208623724946048,2.0,1.386125534123982,0.000700185955418693,0.036378746665593334,0.8288538404985905,1,0.271809956126395,0.2663324749849666
+140,4,0.19858060875434033,2.0,1.3860806753228625,0.0007002168720440906,0.036716079053454545,0.8288474857243074,1,0.30054096628987986,0.22788074079462792
+140,5,0.20607440551549017,2.0,1.3861835068128867,0.0007001983440582079,0.036750537638377254,0.8288620675810329,1,0.3494633834405747,0.18763017379753422
+140,6,0.2610717744877361,2.0,1.383121731233064,0.0006987912847507233,0.03629514724793562,0.8284269181126017,1,0.39049084182519966,0.21625145919218744
+140,7,0.23441035774459681,2.0,1.3858684765103366,0.0007002522644400097,0.036717783995023394,0.8288173912849705,1,0.4246611282049389,0.18181968820873745
+140,8,0.27960745900610723,1.95,1.3790740653829354,0.000698186643755782,0.03654325945041007,0.8168979361640044,1,0.4458820815951002,0.20418208789355716
+140,9,0.25306544338220455,1.95,1.377686127821124,0.0007016153583160048,0.03631544472747689,0.8166912697220033,1,0.47751349176612784,0.17353348891917797
+140,10,0.26860317105778303,1.9,1.3793914178708446,0.0006961344050116661,0.036578317758846166,0.8054612443580721,1,0.4814478259115713,0.18674680231051488
+140,11,0.32367368074261543,1.95,1.3802568979823664,0.0006975229194108412,0.0365219721773673,0.8170745944573439,0,0.5413301675940668,0.223805379016629
+140,12,0.296031135030054,1.95,1.341482939886463,0.000733808718711205,0.03590420984736029,0.8112190177223824,0,0.5603768997174869,0.23960125047686412
+140,13,0.38501400463155094,1.9,1.3472969429017874,0.0007277104493881439,0.03635359505113594,0.800392990439578,0,0.6711645188098297,0.2218273236920636
+140,14,0.4036135546670531,1.95,0.8350929847454333,0.000928690814929471,0.03243808465507618,0.7215072432514763,0,0.733776210860281,0.23367690107646902
+140,15,0.4382477037424445,2.0,0.8520280288464548,0.0009950051623761444,0.03344942961349919,0.739624545079026,0,0.8120150486613912,0.2114722809262933
+140,16,0.4223004515251194,2.0,1.3161856212961869,0.0007254419793091204,0.03596092059701931,0.8187106728792669,0,0.8422612228883058,0.21798654123265676
+140,17,0.442889506440983,2.0,1.3156852397915197,0.0007268579061113894,0.03544149790633405,0.8186368131044085,0,0.8698538461756737,0.24982655990237812
+140,18,0.464384197838796,2.0,1.3151305858291247,0.0007282248293318217,0.03528156121653497,0.8185548547926649,0,0.905932631969488,0.27337048350333565
+140,19,0.5251645659722781,2.0,1.3144809860276117,0.0007297091301305749,0.03540798006514746,0.8184587955297229,0,1.0,0.25054855324092684
+140,20,0.4796979470848529,2.0,1.3138076071352993,0.0007263283095595428,0.03575128894676554,0.8183577156420498,0,1.0,0.2656598236161763
+140,21,0.5212413297604377,1.95,1.3131971400180094,0.000728384928565688,0.03604263096035763,0.8068473851890572,0,1.0,0.27080443253479203
+140,22,0.5100972679220083,1.95,1.3247966485098153,0.000722697854271099,0.035623242969385585,0.8086469154163827,0,1.0,0.30032422640669426
+140,23,0.49593778267912825,2.0,1.3240762422641192,0.0007242652067771219,0.0354630570237099,0.8198785350453475,0,1.0,0.31979260893042744
+140,24,0.5392962530434678,2.0,1.3246194491523953,0.0007256126866898704,0.03546667869236818,0.819959138509994,0,1.0,0.29765417681155926
+140,25,0.5117572447871779,2.0,1.3239833529168592,0.0007224504785216675,0.03553633031046848,0.8198642809281227,0,1.0,0.30585748262392637
+140,26,0.5367289927577246,1.95,1.3232860767764203,0.0007240453068960784,0.035789654485088314,0.8084134823607052,0,1.0,0.28909664252574846
+140,27,0.5312359782238049,1.95,1.32134695922311,0.0007215284925423075,0.035978863099394784,0.8081121894795611,0,1.0,0.27078659407934946
+140,28,0.5019481713177908,2.0,1.3206246241350863,0.000718687884282209,0.03543988278615967,0.819366594099065,0,1.0,0.2731605710593026
+140,29,0.48432533181032356,1.95,1.3211895719555562,0.0007197492781964114,0.03554328033851657,0.8080872308951794,0,1.0,0.281084439367745
+140,30,0.5123114203330558,2.0,1.3193509755591457,0.0007224455722392805,0.03545392068371789,0.8191791243015593,0,1.0,0.30770473444351903
+140,31,0.5370697589936464,2.0,1.3199122138279735,0.0007234398051882986,0.0354078018000728,0.8192625370877914,0,1.0,0.29023252997882126
+140,32,0.5280518396495552,2.0,1.319172617361152,0.0007203520029068172,0.03568583256733662,0.8191520832553123,0,1.0,0.26017279883185046
+140,33,0.504355192921616,2.0,1.318429386166533,0.0007176250835383514,0.03598103504147912,0.8190411450933477,0,1.0,0.28118397640538684
+140,34,0.4839664753616274,1.95,1.317686962429266,0.000719231301511391,0.035958263007729224,0.8075432910547029,0,0.9883660331900378,0.2954002069520408
+140,35,0.531208391931293,1.9,1.315838766092733,0.0007221472439421519,0.035159646561145376,0.7953177690282791,0,1.0,0.30402797310430985
+140,36,0.49752585548581857,1.9,1.327219068835896,0.0007169643216369685,0.036094572801543164,0.7971624378691143,0,1.0,0.32508618495272856
+140,37,0.5378748034274622,1.8499999999999999,1.3266359994095476,0.0007190059291663537,0.03607748251672363,0.7846670429901413,0,1.0,0.32624934475820727
+140,38,0.5347285904977047,1.8499999999999999,1.3367677762393653,0.0007145387642656873,0.03560484938930154,0.7863725166554449,0,1.0,0.2824286349923488
+140,39,0.5309674565559922,1.9,1.3360710710482526,0.0007120529510149444,0.035678775403871085,0.7985884133974547,0,1.0,0.26989152185330734
+140,40,0.5257712500478946,1.95,1.336367277977707,0.0007093385758245019,0.035641771471925786,0.8104268249306762,0,1.0,0.25257083349298176
+140,41,0.520113272710789,2.0,1.3365886157183322,0.0007067415447665883,0.03536949405404344,0.821713809345329,0,1.0,0.2337109090359632
+140,42,0.51435640364286,2.0,1.3367447573804858,0.0007042943529437496,0.03547962993920826,0.8217359660274927,0,1.0,0.21452134547619967
+140,43,0.48701300699540184,2.0,1.3358281378854298,0.0007020730595857899,0.03535511100586054,0.8216010033715749,0,1.0,0.22337668998467275
+140,44,0.4699485919364334,1.95,1.3351501140362052,0.0007039212682367609,0.03565837784406091,0.8102380892205349,0,1.0,0.23316197312144454
+140,45,0.5173627802396291,2.0,1.3336098945131916,0.0007063198046374515,0.03581651963413045,0.8212768839498171,0,1.0,0.22454260079876365
+140,46,0.49659326254039005,2.0,1.3337746975960503,0.0007038188115455245,0.036073903077950005,0.8213003385365523,0,1.0,0.25531087513463346
+140,47,0.5211798257053569,1.95,1.3330789353384227,0.0007056950087321406,0.03574692961759113,0.8099199821685426,0,1.0,0.23726608568452287
+140,48,0.5013496702686838,1.95,1.331039017089192,0.0007035391535999576,0.03552706875573579,0.8096050743750103,0,1.0,0.27116556756227944
+140,49,0.4870768707680816,2.0,1.3302598265952992,0.00070537514210586,0.036009945836993976,0.8207843498125623,1,0.9950097457456779,0.2969099082327013
+141,0,0.19447987721327492,2.0,1.3710479818535175,0.0007051441855383814,0.036259294948962455,0.8267058158064313,1,0.1676767489180321,0.25803059215354035
+141,1,0.23455979951913764,1.95,1.370796462112042,0.0007060119517222162,0.03648095235868106,0.815658911868163,1,0.23200624138499537,0.30585767655046503
+141,2,0.21913724671732987,1.95,1.3853221755017135,0.0007003252579988542,0.036699160515579254,0.8178312890093404,1,0.2425075730678507,0.3404473916339653
+141,3,0.2865407952001932,2.0,1.3852197905465629,0.0007004037438969605,0.03642368723418947,0.8287253796591315,1,0.28177709302205134,0.41276652663790886
+141,4,0.2624681130891904,2.0,1.3785808948155667,0.0007016220781146085,0.03651064471866156,0.8277813471393964,1,0.2993704862302612,0.40906639532361966
+141,5,0.26686801652628517,1.95,1.378547877782832,0.0007028162813444676,0.036602436532060925,0.8168206035825589,1,0.3087654742940954,0.4112060893621567
+141,6,0.34597663234340353,2.0,1.3782063009303407,0.0007040031603095392,0.036425602482454335,0.8277286177639765,1,0.36408123461223335,0.5011471283283673
+141,7,0.3762951612242569,2.0,1.3777843898640503,0.0007042439814966598,0.03661932643380168,0.8276685161764582,2,0.3992223100571384,0.5553541240046718
+141,8,0.4312285726319854,2.0,1.3862943611198844,0.0007001722195526523,0.03675692642443548,0.8288777842514964,2,0.44466563402138437,0.577874396744772
+141,9,0.39516970186571077,2.0,1.385517547301506,0.0006998046807990431,0.036409083657093146,0.8287674689761753,2,0.4741660245929782,0.5850109734283981
+141,10,0.47866361733558166,1.95,1.3853388313235886,0.0006995599172558056,0.036665268985386384,0.8178335423914083,2,0.5294663720347996,0.6229235617388726
+141,11,0.47167995685851255,1.95,1.3862943611198846,0.0007001722195526527,0.036654967538210355,0.8179760380796509,2,0.5726378084506362,0.6420827782608604
+141,12,0.49808488998722716,2.0,1.3862408692789359,0.0007001712141396954,0.03651943821961566,0.8288701965820076,2,0.6055724413635757,0.6861863781393229
+141,13,0.5577594037229654,2.0,1.3816848457731143,0.0007028034685297735,0.03667511249490117,0.8282237305395008,2,0.6649991402263308,0.7058658254414435
+141,14,0.5258917705856012,2.0,1.381579626263109,0.0007045799951123492,0.036714801240908305,0.8282092660531192,2,0.7018771256222354,0.7171364011223567
+141,15,0.602896246253663,1.95,1.3827640580462428,0.0007033003681236831,0.036363803442847134,0.8174507503139624,2,0.7462539217251373,0.7479822585453606
+141,16,0.6134785245805073,1.95,1.382355563351043,0.0007048916472211197,0.036770618250850526,0.8173902598194749,2,0.8021534989310452,0.808723750026964
+141,17,0.6746318074462855,2.0,1.365167248227658,0.0007081991300655879,0.03622821325179453,0.8258625817935581,2,0.8581085998202966,0.837961225060556
+141,18,0.6003212144367795,2.0,1.3650755767454652,0.0007112007416516657,0.03624627634040062,0.8258502611907901,2,0.9048617757232709,0.7945883471582371
+141,19,0.7106662929969791,1.95,1.3798540110667488,0.0007022557119021563,0.036603681892869055,0.8170157849136248,2,0.9595270434170288,0.8228515854338921
+141,20,0.704442965996522,1.95,1.3643224941943946,0.0007090100164473933,0.036439602355800293,0.8146844049516359,2,0.982613393724413,0.8713253616891893
+141,21,0.6474825951667778,2.0,1.3626841328719972,0.0007102782239802696,0.036356290017874604,0.8255057860574123,2,1.0,0.8249419838892591
+141,22,0.7362734856170318,1.95,1.3626649923256688,0.0007065552406147601,0.03631549869804945,0.8144332931990486,2,1.0,0.8542449520567726
+141,23,0.7457338997091232,1.95,1.3615021251150303,0.0007101392418275282,0.036143057253237985,0.8142585669338682,2,1.0,0.8857796656970773
+141,24,0.7581876356009666,2.0,1.360527115007096,0.0007131222159334703,0.03629447200475721,0.8251956785899711,2,1.0,0.9272921186698886
+141,25,0.7101940640096105,2.0,1.3598765712572733,0.000715350604028348,0.036331010139834696,0.825102462402478,2,1.0,0.9339802133653683
+141,26,0.7201039637496236,1.95,1.3667869585747496,0.0007118941506974845,0.03646232801590566,0.815057055310043,2,1.0,0.967013212498745
+141,27,0.7288010081190486,2.0,1.3719829337485259,0.0007094279835284671,0.036409059018136083,0.8268409458673702,2,1.0,0.9960033603968285
+141,28,0.75,2.0,1.3766221598990511,0.0007070650840781893,0.03645744233659724,0.8275034856727802,2,1.0,1.0
+141,29,0.73,2.0,1.3755778849723233,0.0007084240604897115,0.03665552141882604,0.8273547615841389,2,1.0,1.0
+141,30,0.7799999999999999,1.95,1.3790888275368682,0.0007064592651315054,0.03654364650484655,0.8169026189432583,2,1.0,1.0
+141,31,0.7799999999999999,1.95,1.3779505959961902,0.0007082560227847297,0.036660591931050576,0.8167328470094805,2,1.0,1.0
+141,32,0.7799999999999999,2.0,1.3767753850580406,0.0007096708939075934,0.0364199138046412,0.827526099997498,2,1.0,1.0
+141,33,0.7799999999999999,2.0,1.3755711296118809,0.0007107316207260296,0.036386806441274254,0.8273544558744872,2,1.0,1.0
+141,34,0.73,2.0,1.3738449170268197,0.000711893675815258,0.03643058192413314,0.8271080782893946,2,1.0,1.0
+141,35,0.75,1.95,1.3773639460788942,0.0007091138585435778,0.03674605589597722,0.8166452776526785,2,1.0,1.0
+141,36,0.6905354461033753,1.95,1.3763157270445547,0.0007119525952359359,0.0367375919274621,0.8164891203553738,2,1.0,0.9684514870112508
+141,37,0.6813288334229101,1.9,1.377341086688481,0.0007090532729277638,0.03661572575349674,0.8051438233534807,2,1.0,0.9377627780763669
+141,38,0.7186833879265966,1.95,1.3775687628415125,0.0007066753883045139,0.03670824404996568,0.8166752139001648,2,1.0,0.962277959755322
+141,39,0.7748670578007057,1.95,1.3807110863321812,0.0007048434435008731,0.036680362737644065,0.8171446570182079,2,1.0,0.9828901926690192
+141,40,0.6837522415276684,1.95,1.379407561932443,0.0007056601014009294,0.03669062698609215,0.8169500490835956,2,1.0,0.9458408050922283
+141,41,0.7190911637865489,1.9,1.379654788725564,0.0007035386321688622,0.0364429933257978,0.8055048295238143,2,1.0,0.9636372126218293
+141,42,0.7783791834105749,1.9,1.3819665370471281,0.0007024766024725257,0.03639412179983738,0.8058664156677661,2,1.0,0.9945972780352498
+141,43,0.75,1.9,1.3806123020641476,0.000702921929638588,0.03664990711490378,0.805654603072602,2,1.0,1.0
+141,44,0.73,1.8499999999999999,1.3803844441287554,0.0007050821682461544,0.036695338658656554,0.7936050918271907,2,1.0,1.0
+141,45,0.7799999999999999,1.7999999999999998,1.3823341178957473,0.0007037040451450183,0.036664315079272605,0.7813825626494635,2,1.0,1.0
+141,46,0.7799999999999999,1.7999999999999998,1.3807961981342838,0.0007043564984474142,0.03670714638601522,0.7811199586865644,2,1.0,1.0
+141,47,0.73,1.8499999999999999,1.3790430178900093,0.0007047925946641441,0.03656402918514161,0.7933851900332116,2,1.0,1.0
+141,48,0.75,1.7999999999999998,1.3810092233975182,0.0007029304791348159,0.036605714542934924,0.781155890209395,2,1.0,1.0
+141,49,0.7799999999999999,1.7999999999999998,1.3807790804156346,0.0007054996240252135,0.03647861331971,0.7811174229167263,2,1.0,1.0
+142,0,0.10910277184613293,1.7999999999999998,1.3773993907259021,0.0007080789568076429,0.036204167148750174,0.7805399219501954,0,0.11416829998913665,0.21145150616826086
+142,1,0.1935392416441835,1.7499999999999998,1.3782081506807857,0.0007067236439967334,0.03665804463614743,0.7675666141669043,0,0.2128985881690547,0.19459935458853886
+142,2,0.18104328604543338,1.7499999999999998,1.3546061293225078,0.0006867549445199583,0.03617936843980809,0.7633220444694335,0,0.24661254350035142,0.20799422881764273
+142,3,0.2305615257751485,1.7999999999999998,1.3730556205899755,0.0006910859010340888,0.036389814963047065,0.7797891029882215,0,0.31785327152586895,0.21140072388266967
+142,4,0.27396827913872074,1.7999999999999998,1.3728441817298664,0.0006908953761239551,0.036340285021071124,0.7797527275290227,0,0.4252518079838046,0.17955851981732968
+142,5,0.28511892219164703,1.7999999999999998,1.3635138716154522,0.0006968358120893728,0.03640103295340193,0.7781482241949831,0,0.48993880143808916,0.1638113387213712
+142,6,0.30455316843397356,1.8499999999999999,1.362970931030592,0.0006972149866565091,0.03620316993822382,0.7907356386792085,0,0.5450095646257295,0.15516447527893937
+142,7,0.33472285045962263,1.9,1.3629398379382216,0.0006976173792367573,0.03606577853418365,0.8028708980741932,0,0.6193117383311828,0.15666051709049839
+142,8,0.379205836391094,1.95,1.1273392132178837,0.00072808310471501,0.032994296643452534,0.7762239639790645,0,0.7273810069108702,0.1275114454224864
+142,9,0.410711419132832,2.0,1.1280937412964196,0.0007262977486261128,0.03285577013479668,0.7891062188848935,0,0.8321117832294594,0.09288901947016073
+142,10,0.4367723858404011,2.0,1.1264442784655713,0.0007427564617788166,0.03294153508163402,0.788837071559464,0,0.9137136960054724,0.10428969146070724
+142,11,0.4354731564405655,2.0,1.1262323346775518,0.0007365416327949419,0.03242946320160212,0.7887996945465172,0,0.9528555233782019,0.11443649029761573
+142,12,0.4497496077463712,2.0,1.1242417788471952,0.0007359901040155823,0.03255196644304526,0.7884677038108591,0,0.9741319234193621,0.13365612792875442
+142,13,0.4419076712176563,2.0,1.1220962377974486,0.0007354585465233112,0.03300518572675609,0.7881094577669571,0,0.9956742131256585,0.14545995322464295
+142,14,0.4702288563227361,2.0,1.1301677708678446,0.0007534388765694884,0.03343546988049625,0.7894601894842841,0,1.0,0.1674295210757868
+142,15,0.45641146311785735,2.0,1.12794303618142,0.000752840065845941,0.0332625003447536,0.7890899726608746,0,1.0,0.18803821039285776
+142,16,0.4938894381591803,2.0,1.1345924914083447,0.0007705274314387587,0.033568142282259884,0.7902003587987261,0,1.0,0.17963146053060094
+142,17,0.4755421593488944,2.0,1.1346813363636252,0.0007622372203020416,0.03310778581983903,0.7902123388328858,0,1.0,0.18514053116298118
+142,18,0.48135992697354024,2.0,1.1326321954414318,0.0007621124032257162,0.03283896285924097,0.7898723953625426,0,1.0,0.20453308991180066
+142,19,0.48979746511983163,2.0,1.2993958071143195,0.0006511255792167781,0.03432260337596078,0.8161830241890285,0,1.0,0.23265821706610534
+142,20,0.5013610551347827,2.0,1.2976018786113008,0.0006507588483367564,0.034363924983573144,0.8159136213158641,0,1.0,0.27120351711594237
+142,21,0.5259089277717737,2.0,1.2958323523592712,0.0006502388677438353,0.03441491883273293,0.8156475360137637,0,1.0,0.2530297592392454
+142,22,0.4758654569021741,2.0,1.2940450903546596,0.0006492272876470385,0.0342687773159429,0.8153783352597299,0,1.0,0.2528848563405803
+142,23,0.5198914186417221,1.95,1.3026211139370771,0.0006546906749253558,0.03451855383977793,0.8051706970561275,0,1.0,0.23297139547240683
+142,24,0.4721453146453851,1.95,1.2988934094592408,0.0006525177454735179,0.034300191565882744,0.8045845803084262,0,1.0,0.24048438215128368
+142,25,0.5189942255710285,1.9,1.3062386388677567,0.0006584112266237235,0.03469739360499646,0.7937296886798996,0,1.0,0.2299807519034283
+142,26,0.4637739825782683,1.9,1.30254955139069,0.0006560105853001052,0.03453997443514489,0.7931242584044058,0,0.9832178169828989,0.23495618595036247
+142,27,0.5098728832181534,1.8499999999999999,1.3087528677011262,0.0006620453209776483,0.03456591464486136,0.7816106006275748,0,1.0,0.19957627739384437
+142,28,0.4824719929184647,1.9,1.1144016420534235,0.000758167972650961,0.033323326675018486,0.7605901991097368,0,1.0,0.20823997639488218
+142,29,0.5046337841749952,1.8499999999999999,1.312111418185176,0.0006654791806932827,0.03460746765957416,0.7821845178037858,0,1.0,0.18211261391665043
+142,30,0.5000026162351765,1.9,1.103455694258137,0.0007525670434228074,0.0328821849378122,0.7585892883845269,0,1.0,0.2000087207839216
+142,31,0.4876925489064581,1.95,1.3143205905798496,0.0006678694206412938,0.035123889445224724,0.8070035588941171,0,1.0,0.22564182968819352
+142,32,0.4960783765460626,2.0,1.3145621666840372,0.0006685403607644867,0.035183157268666186,0.8184526801955541,0,1.0,0.25359458848687527
+142,33,0.520334335445923,2.0,1.3147062736739694,0.0006690568430981056,0.03513898237747624,0.8184742452384531,0,1.0,0.23444778481974338
+142,34,0.47348710329679894,2.0,1.3130843889268804,0.0006672934623983095,0.03501685912774656,0.818232626075482,0,1.0,0.24495701098932968
+142,35,0.4789581368277113,1.95,1.317515877557563,0.0006735407207435313,0.034821222304943486,0.8075024960459105,0,1.0,0.26319378942570437
+142,36,0.5225516379628927,2.0,1.3194709081298976,0.0006791958136835486,0.0349307702697972,0.8191840765093061,0,1.0,0.27517212654297574
+142,37,0.510986110951586,2.0,1.3317970246000213,0.0006788540690522377,0.035327181599916,0.8210025613526641,0,1.0,0.30328703650528654
+142,38,0.5376768554676662,2.0,1.330486185003846,0.0006789219765690716,0.03524669799602609,0.8208098627427205,0,1.0,0.32558951822555404
+142,39,0.5465478227568047,2.0,1.3399243513469103,0.0006789954793080361,0.035757191751151475,0.8221938587290044,0,1.0,0.3218260758560154
+142,40,0.5406565718718694,2.0,1.3384989769385602,0.0006772620582922305,0.035637867319376564,0.8219848786587068,0,1.0,0.3021885729062312
+142,41,0.5166296059993521,2.0,1.3371303394213212,0.0006757344807586544,0.03517035810473562,0.821784076060385,0,1.0,0.3220986866645071
+142,42,0.5255529081966132,1.95,1.3358029982779027,0.0006757152289982521,0.035258902993310144,0.8103297812340379,0,1.0,0.35184302732204364
+142,43,0.5499876340004825,2.0,1.333233643313543,0.0006750920170739926,0.03550114032495524,0.8212124809825013,0,1.0,0.33329211333494135
+142,44,0.49767868518173775,2.0,1.3329399364282684,0.000673968251706733,0.03526911855166874,0.8211690240719273,0,0.9948536136316839,0.3324574657635472
+142,45,0.5292219888635248,1.95,1.3362993927295257,0.0006788391206211577,0.03567531200887883,0.8104070229967222,0,1.0,0.3640732962117492
+142,46,0.516410193654075,1.95,1.3338050868336393,0.0006785106378655902,0.03515918509289755,0.8100233813263743,0,1.0,0.3880339788469166
+142,47,0.5459672321524133,2.0,1.3365611715136976,0.0006837377092949049,0.03547324802155444,0.821703048374757,0,1.0,0.41989077384137735
+142,48,0.5666535070115231,2.0,1.2252075494784656,0.0005848618950357146,0.03181592798150106,0.8047698588561863,0,1.0,0.38884502337174354
+142,49,0.5350414247242159,2.0,1.3461279932575216,0.0006800454546910909,0.035364004593466794,0.8230992698343222,0,1.0,0.383471415747386
+143,0,0.18983613262019688,1.95,1.3703170248905923,0.0007073379879976293,0.036228354516357544,0.8155872119251695,1,0.14063633566922984,0.27860532784168307
+143,1,0.2217861530019316,1.9,1.3696548417618517,0.0007081738283978023,0.03648785150733064,0.8039348433512825,1,0.1876642702969133,0.32240148294388754
+143,2,0.19828063661046585,1.9,1.3689230751241515,0.0007090931401572483,0.03637580620830417,0.8038197639365966,1,0.19684845246713617,0.331804185412038
+143,3,0.20923122139454844,1.8499999999999999,1.368623951928712,0.0007095467587021133,0.0364903148309597,0.7916735901544805,1,0.2280682819790435,0.32667969534310354
+143,4,0.2448904523406269,1.9,1.3852014461288975,0.0007001564469635943,0.036754393399247666,0.8063712781836451,2,0.2567586691731162,0.3406232822379347
+143,5,0.25441972945683466,1.9,1.3861618525237087,0.0007002174369091708,0.03664475844418164,0.8065212077240652,2,0.28383316804560327,0.36962154079531134
+143,6,0.2180235188828259,1.95,1.3861782900825887,0.0007001458859033124,0.036553928620215934,0.81795874763895,2,0.30260489348736774,0.32327187162626264
+143,7,0.26523939706210486,1.9,1.3862245390097183,0.0007001375349864502,0.03676927399498055,0.8065309644975037,2,0.3389717847845252,0.33216894382764944
+143,8,0.28175975408396103,1.9,1.3862052285292707,0.000700107655888113,0.036556761800677226,0.8065279419713871,2,0.3701327820759031,0.3456888041786661
+143,9,0.2979586604295651,1.95,1.3861456454983503,0.0007000857915172563,0.03663213842199675,0.8179538688401999,2,0.40499203168392944,0.3532061591866443
+143,10,0.27329822290935446,2.0,1.3856474726227925,0.000700610788852545,0.03676549673883472,0.8287861349175413,2,0.44793348312417586,0.31374943219894696
+143,11,0.2841157412155198,1.95,1.3856875374934852,0.0007003561514318463,0.036761236691985805,0.8178857247165104,2,0.4995228862507887,0.2810219557173477
+143,12,0.3333520490689187,2.0,1.3856282229546648,0.0007001132238773712,0.03651018468589935,0.8287832621681017,2,0.5318467032308744,0.3020445592552298
+143,13,0.3828914680399296,2.0,1.3859434637055816,0.0007001012370490291,0.03669052111722082,0.8288279872869955,2,0.569627089082738,0.35013544135611474
+143,14,0.45431573700750627,2.0,1.3859506630762188,0.0007003007572651483,0.03675711419941839,0.8288290652872534,2,0.6558106940519259,0.3733048646224529
+143,15,0.44720662632357927,2.0,1.3859634060581285,0.0007000082424074208,0.0364338091662821,0.8288307901466134,2,0.6959075212691894,0.3961453927196784
+143,16,0.5085486788806958,2.0,1.3858231045860907,0.0007000383392936295,0.0366641257504729,0.8288108931552576,2,0.7594730955484572,0.41586480220437627
+143,17,0.47116098524430305,2.0,1.3849029498712597,0.0007001271580284656,0.03673129589775322,0.8286803241950769,2,0.7843406635260511,0.4247490661129419
+143,18,0.4379438022168537,1.95,1.3850468425751297,0.0007008903192152292,0.0364254387950087,0.817790433818178,2,0.8103550076494958,0.3793393305235178
+143,19,0.5503964180070048,1.9,1.3692797232247447,0.0007031827448242976,0.03639798901176732,0.803874135282823,2,0.8665385252567934,0.41260335968095807
+143,20,0.5919869516288032,1.9,1.3322433464355783,0.0006597924914628156,0.03456954718976543,0.7979551888570754,2,0.9326698508660073,0.4630633709413343
+143,21,0.5888237160510127,1.9,1.3412778887976775,0.0006683500322965615,0.03541018056412058,0.7994105864315619,2,0.9718562015708971,0.5002707847421793
+143,22,0.5287755154415693,1.95,1.3372877656887754,0.0006656649151666369,0.03577064179599492,0.8105547915064372,2,0.9836002909677646,0.4511179968482116
+143,23,0.6241686799758779,1.9,1.340425575564216,0.0006672206721727031,0.03582700263554961,0.7992735179349858,2,1.0,0.4805622665862596
+143,24,0.5796846796043679,1.9,1.3468529345975149,0.0006750102788804144,0.035504602325756404,0.8003052002020292,2,1.0,0.49894893201455953
+143,25,0.5817766317321575,1.8499999999999999,1.3504373120682223,0.0006754435584382636,0.03523856100585159,0.7886468502526813,2,1.0,0.5059221057738585
+143,26,0.5854433949541283,1.9,1.35181021776009,0.0006752530426478289,0.035883837146342835,0.8010963553365744,2,1.0,0.5181446498470942
+143,27,0.5914751394250677,1.95,1.3538930538524987,0.0006766264343511407,0.03595098108905932,0.8130948205533399,2,1.0,0.5382504647502253
+143,28,0.6284282880672638,2.0,1.3550064581900088,0.0006777674981315137,0.03589099018087979,0.8243876693847979,2,1.0,0.5947609602242127
+143,29,0.5656182925529489,2.0,1.3527978905356224,0.0006760735303860395,0.035796942331444245,0.8240672089249055,2,1.0,0.5520609751764964
+143,30,0.601604247736445,1.95,1.3548944289367253,0.0006777901092396671,0.03614610722574137,0.8132473069193684,2,1.0,0.5720141591214832
+143,31,0.6384573049535089,1.95,1.3541182555305888,0.000678271758787638,0.035501835144482366,0.8131295424213295,2,1.0,0.6281910165116961
+143,32,0.6281289081029282,1.95,1.3782800858785655,0.0007031457744417194,0.036449879674899224,0.8167806305156463,1,1.0,0.6604296936764272
+143,33,0.6221730609788152,2.0,1.3503418224115873,0.0006740355597882004,0.035938537160206736,0.8237102517409776,1,1.0,0.6739102032627173
+143,34,0.6655417468861493,2.0,1.351550660257739,0.000675275671487095,0.036034572006849765,0.8238860802975893,1,1.0,0.7184724896204977
+143,35,0.6204848229730349,2.0,1.3539367142658332,0.000677399477197016,0.03573912714028747,0.8242326393546475,1,1.0,0.7016160765767828
+143,36,0.6650024718524974,1.95,1.3510981645215243,0.0006749270934013454,0.03532091753165249,0.8126691875215524,1,1.0,0.7166749061749912
+143,37,0.6183790249067853,1.95,1.3518107083796398,0.0006764718014215831,0.03595248688037759,0.8127781097083469,1,1.0,0.6945967496892843
+143,38,0.67661720560012,1.9,1.3489145157013183,0.0006738537010808746,0.0360562806362534,0.8006341022763412,1,1.0,0.7553906853337331
+143,39,0.6467589394027257,1.9,1.3488655835735206,0.0006752969743365863,0.03510628406589003,0.8006267524186726,1,1.0,0.7558631313424187
+143,40,0.6768582088907054,1.8499999999999999,1.3495862950655644,0.0006777516834797841,0.0354121190194984,0.7885057351720322,1,1.0,0.7895273629690177
+143,41,0.6385680653461374,1.8499999999999999,1.3572642349102917,0.0006803412239502953,0.036179706862684416,0.7897841661136734,1,1.0,0.7618935511537915
+143,42,0.6706410830474765,1.7999999999999998,1.3544624088730546,0.0006777987658267632,0.035604140161322795,0.7765750986378105,1,1.0,0.768803610158255
+143,43,0.6567360486547806,1.7999999999999998,1.3608421905888635,0.0006817147749144745,0.03593687593775312,0.7776814310492347,1,1.0,0.7891201621826018
+143,44,0.6380657394682544,1.8499999999999999,1.3613353334797873,0.0006824277412061645,0.03629485041175863,0.7904599646213339,1,1.0,0.7602191315608479
+143,45,0.6743260227597786,1.9,1.3593076786766356,0.0006807648593461998,0.03608341863306214,0.8022900603497515,1,1.0,0.7810867425325951
+143,46,0.6353161068627508,1.9,1.3657001574365637,0.0006856872485646722,0.03598078641327076,0.8033036364198083,1,1.0,0.7510536895425024
+143,47,0.6968794938663634,1.8499999999999999,1.3630711687807646,0.0006840128639513405,0.03625651011503011,0.7907478558528591,1,1.0,0.8229316462212111
+143,48,0.7099029975356921,1.8499999999999999,1.3619870195415191,0.0007056709950457697,0.036309291062847956,0.7905755815939747,0,1.0,0.8663433251189732
+143,49,0.7050785753619819,1.9,1.3723528752478293,0.0006907762982547459,0.036258861826354925,0.8043542928371757,0,1.0,0.8835952512066064
+144,0,0.18295181908860536,1.95,1.3679945148197081,0.0007104203517447334,0.036241735057351294,0.8152385679656952,1,0.14460721995388423,0.25036310369017223
+144,1,0.18824923261388601,1.9,1.368097032968289,0.000710823684823143,0.036499613681650875,0.8036900157883237,1,0.16304089946370443,0.2767762427613474
+144,2,0.23663918207018025,1.95,1.367549272113845,0.0007096840805938252,0.0363627539503108,0.8151712721643031,1,0.21407292340021083,0.3367000423669864
+144,3,0.24203281820192782,1.95,1.3851900193085904,0.0007012690609712174,0.0363391214624411,0.8178118803654623,1,0.22700305960973655,0.37077198119344396
+144,4,0.278909069498905,2.0,1.3852974706873666,0.0007009271843725199,0.03673626495836217,0.8287365538538694,1,0.2584612907733338,0.41841517729857164
+144,5,0.25177702823076453,2.0,1.379001127935914,0.0007034773477810385,0.03663050358992717,0.8278417758901311,1,0.3243647024084338,0.37343715755796997
+144,6,0.34345206218322116,1.95,1.3853482148695138,0.000700586391207616,0.03643781389667204,0.8178352462151012,1,0.40700817360285374,0.4354959758069322
+144,7,0.3148921579770861,1.95,1.3762338226719628,0.0007093515571926236,0.0367137396533999,0.8164760684324718,1,0.44476388651770304,0.4232886779000162
+144,8,0.39831459891943644,1.9,1.3773359067398239,0.0007073974900683477,0.03656165086591384,0.8051424911397149,1,0.49950346837529525,0.4950440385643945
+144,9,0.3615110648085367,1.9,1.3760277764020408,0.000707841598549724,0.03644784300158217,0.804937318646209,1,0.5382997649015471,0.4539705294930595
+144,10,0.4026048748619852,1.8499999999999999,1.3768679726935362,0.0007058464005775709,0.036650731917944615,0.793028763872401,1,0.5449223021189701,0.48211984671465735
+144,11,0.38033495316849575,1.8499999999999999,1.3787937717820045,0.0007043704871798435,0.03657456300769658,0.7933441909364345,1,0.5825941488270832,0.4576576454588748
+144,12,0.3861788663640696,1.7999999999999998,1.3793528497122867,0.0007028179251133651,0.03667869878171955,0.780872560484196,1,0.6317409245608286,0.41160832179912704
+144,13,0.3953492638595906,1.8499999999999999,1.3714267691243736,0.0007060856106841038,0.036604825131856436,0.7921343313322714,1,0.6800362227746605,0.377782582499088
+144,14,0.4075137170928851,1.9,1.3804079148784922,0.0007028215861647608,0.036474019700791865,0.8056225676693503,1,0.7192247447011673,0.3660793973747273
+144,15,0.4874963933259629,1.95,1.3823126020272896,0.0007020243462541405,0.03668150502758432,0.8173829911865822,1,0.7800740717585292,0.4182225487418376
+144,16,0.4723001272171996,1.95,1.3718287475742101,0.0007015081828542333,0.03645704479645846,0.8158127216804317,1,0.8094280161987936,0.42842973579227384
+144,17,0.5095691947887411,2.0,1.374691948267318,0.0006975733287604992,0.03624078073684065,0.8272250770598802,1,0.8320266158127619,0.4558618282121209
+144,18,0.4867426541737665,2.0,1.376089748370183,0.0007010589611046901,0.03620647501015571,0.8274257599679364,1,0.8721028459135352,0.42633838602784124
+144,19,0.564401157939693,1.95,1.374688586084474,0.0007008405066466682,0.036348633062369365,0.8162418593135291,1,0.9320638836441542,0.4719186816067713
+144,20,0.5418790650727348,1.95,1.3763053521896806,0.0006993905685525215,0.03656075336104553,0.8164838013295955,1,0.9561604964068477,0.4647162216999853
+144,21,0.5790415344996387,1.9,1.3772240947129664,0.0006981110795569109,0.03652474461409947,0.8051220345000063,1,0.972427575986808,0.5002350136830515
+144,22,0.5530429536947639,1.9,1.3779974512646938,0.0007011016109274586,0.03634180679633492,0.8052442839194716,1,1.0,0.47680984564921264
+144,23,0.5705920059308931,1.8499999999999999,1.3764911121690833,0.0007009962676729919,0.03636202111125366,0.7929653088611873,1,1.0,0.5019733531029769
+144,24,0.5775961924945783,1.9,1.376916338130902,0.0006993197295481454,0.03653938779842192,0.8050741221371054,1,1.0,0.5253206416485939
+144,25,0.5587270014114809,1.95,1.3773248895168986,0.0006978950046669717,0.03651000452865003,0.8166360695816659,1,1.0,0.49575667137160295
+144,26,0.5754795590507217,2.0,1.376145364302221,0.0006976794353199733,0.03651552071638672,0.8274327362461719,1,1.0,0.5182651968357389
+144,27,0.6211338561716676,2.0,1.3762553122829775,0.0006963802576898459,0.036455569320971035,0.8274480639245954,1,1.0,0.5704461872388918
+144,28,0.5794082550246062,2.0,1.3784494069399753,0.0006962662572502704,0.03648122963271191,0.827761074318278,1,1.0,0.564694183415354
+144,29,0.6328922426923245,1.95,1.3770890507549494,0.000695742654567978,0.03650552514911169,0.816600107381225,1,1.0,0.6096408089744145
+144,30,0.6528180017406214,1.95,1.3640589414376219,0.0006845730226752579,0.03588385386883535,0.8146372320847136,1,1.0,0.6760600058020713
+144,31,0.6695547782121777,2.0,1.3654114057442066,0.000685081051931847,0.03613136784558289,0.8258910437367498,1,1.0,0.7318492607072586
+144,32,0.689228539464079,2.0,1.3664400060125022,0.0006860596022671965,0.03609970352246852,0.8260391829964813,1,1.0,0.7974284648802633
+144,33,0.6394714019701091,2.0,1.36628876459087,0.0006865242003095864,0.03635178160025472,0.8260175823039221,1,1.0,0.7649046732336972
+144,34,0.6311782115086814,1.95,1.3641299792505466,0.0006846942487496906,0.03628205092060049,0.8146479954065631,1,1.0,0.7372607050289379
+144,35,0.6399042077076675,2.0,1.361196239585748,0.0006823961156127526,0.035612967723707534,0.8252833166547026,1,1.0,0.7330140256922252
+144,36,0.6473432650017247,2.0,1.3630849713672153,0.0006842796677242781,0.035703874975420234,0.8255560295517274,1,1.0,0.7578108833390821
+144,37,0.7001238035536197,2.0,1.3635915009778445,0.0006857655424571828,0.0358066467955827,0.8256293923391272,1,1.0,0.8337460118453985
+144,38,0.6533319517395584,2.0,1.3631825490706224,0.0007178163341399567,0.03648958905356149,0.8255797402151126,1,1.0,0.8111065057985279
+144,39,0.6520387673213442,1.95,1.3623719493378699,0.000722093522531575,0.03647862846575481,0.8143936985057437,1,1.0,0.8067958910711474
+144,40,0.7096093529564638,2.0,1.3606319197607362,0.0007264648274556361,0.036462942825088426,0.8252146449149408,1,1.0,0.8653645098548791
+144,41,0.6677484794352146,2.0,1.3624171806257726,0.0007207850118119164,0.03659095148022661,0.8254703567436977,1,1.0,0.8591615981173824
+144,42,0.7055643405856449,1.95,1.3611906207892002,0.0007238832152740716,0.036386806655618956,0.8142156080216186,1,1.0,0.8852144686188161
+144,43,0.6878228310264677,1.95,1.3587135109909012,0.0007263295362051228,0.03651236951382812,0.8138413487755232,1,1.0,0.8927427700882254
+144,44,0.7339452068442962,2.0,1.3654767511751622,0.000721276425478778,0.03649277895466926,0.8259108486252625,1,1.0,0.9464840228143206
+144,45,0.7061684411227346,2.0,1.366920567255085,0.0007162789213325239,0.03648531467981935,0.8261169101294488,1,1.0,0.9538948037424485
+144,46,0.7379465050390626,1.95,1.372250000600073,0.0007128114069640157,0.036532369072654246,0.8158794076879989,1,1.0,0.993155016796875
+144,47,0.75,1.95,1.3701070599603848,0.0007143466900653978,0.0363684006530732,0.8155577386715198,1,1.0,1.0
+144,48,0.72,2.0,1.3707228556038822,0.000710497591033279,0.036532563969447165,0.8266607664097256,1,1.0,1.0
+144,49,0.75,1.95,1.3756087319569337,0.0007076789663347451,0.036384378674197033,0.8163818830474743,1,1.0,1.0
+145,0,0.16273965648338307,1.95,1.3674208899081302,0.000710518249371322,0.03618306419823325,0.815152179794702,1,0.1275069871519457,0.23912287207534927
+145,1,0.19208646601147328,1.9,1.367293807339582,0.0007093043895115473,0.03644242252889928,0.8035627784203825,1,0.17014594284802806,0.2800936295742068
+145,2,0.17786774377175998,1.9,1.3666719508922645,0.0007083513471590255,0.03635774620531614,0.8034642990855569,1,0.1823834054537528,0.28304793863419625
+145,3,0.24078305406398043,1.95,1.366421455469616,0.0007087725831439042,0.03648664114838062,0.8150010120710318,1,0.22968351810750262,0.3296988227365979
+145,4,0.25472247599131986,1.95,1.3850528074564257,0.000701559746327193,0.036739372190361684,0.817791522139732,1,0.2655230007538073,0.3617109189659899
+145,5,0.22760271144358057,2.0,1.3851281070761932,0.0007011831426193826,0.03671146659776683,0.8287125870178847,1,0.2960161189068971,0.33065421293607233
+145,6,0.2811354787213498,1.95,1.3855261500357907,0.0007009491387005395,0.0364058423591684,0.8178618617041084,1,0.3258383911585681,0.36933374085974185
+145,7,0.26362858330904043,1.95,1.3855373567419758,0.0007006754251211895,0.03676832515466423,0.8178634495458307,1,0.3755405673821521,0.3447078545205986
+145,8,0.27076191417397016,2.0,1.3858425736484343,0.0007005436652800413,0.03666427401974834,0.828813798867118,1,0.4190045803135094,0.31053360682855463
+145,9,0.2873352974497709,2.0,1.3766919571374252,0.0007021066608117969,0.03633355427758768,0.8275120329201255,1,0.4784373245383625,0.2865345587814196
+145,10,0.2884170872287256,2.0,1.3787857391168832,0.0007012282203900822,0.036549028014605286,0.8278104353757955,1,0.504419102626944,0.25549815392649333
+145,11,0.3673798114087177,2.0,1.3803283975782543,0.0007004700826596371,0.036647332923700524,0.8280299993060632,1,0.5608994877333815,0.3100667210512171
+145,12,0.3711328756151995,2.0,1.3794794573837286,0.0007004333121344232,0.036570096380671276,0.8279090692028568,1,0.5899310725482545,0.31720148865299225
+145,13,0.42117521673541125,2.0,1.379660024950728,0.0006993467630558578,0.03652802583901485,0.827934484582599,1,0.6457476840411318,0.3762538103965285
+145,14,0.3962736380712437,2.0,1.3771457255088386,0.0007028007805501475,0.036554589667058754,0.8275769904099032,1,0.6963816789169867,0.3590698883481633
+145,15,0.4083999539845629,1.95,1.3790420877614054,0.0007016192981471802,0.03623312101867545,0.8168941799424035,1,0.7469653423969461,0.3320460567526148
+145,16,0.45602780398431436,2.0,1.3801944721608725,0.0007005728856723595,0.03664652256395334,0.8280109572618406,1,0.7780515751129559,0.34935724646377353
+145,17,0.4429762193582213,2.0,1.3808919992202175,0.0006995811317179466,0.03666475408964204,0.8281099861955983,1,0.7943994976370189,0.35072140101137916
+145,18,0.45360120455208963,2.0,1.3813777912441814,0.0007013966484893477,0.036545489560705226,0.8281796413645626,1,0.8117632892338158,0.3629862961952109
+145,19,0.49562951202402433,2.0,1.3220411984527232,0.0007546849083448633,0.03644219614884039,0.819586804899486,1,0.8364843655849773,0.4034525526334446
+145,20,0.5158468444161696,2.0,1.3783267775032524,0.000695695217861756,0.03649581272122235,0.8277434271659548,1,0.8644258020535058,0.43358841198255715
+145,21,0.5582525926632897,2.0,1.3796970476798194,0.0006978826345173563,0.03653938006423219,0.8279393415917897,1,0.9069292032416714,0.48493637122207056
+145,22,0.5720773136542429,2.0,1.380847473396278,0.0006975352013361394,0.03650478022269852,0.828103065657419,1,0.9385569258736088,0.5221818110159975
+145,23,0.6273622721750329,2.0,1.3818306881844207,0.0006994347267216646,0.03667233590156375,0.8282435199803053,1,1.0,0.5912075739167764
+145,24,0.6257316137199866,2.0,1.3826179340544436,0.0006988567522028835,0.03636548782438994,0.8283553172860174,1,1.0,0.619105379066622
+145,25,0.5848385649941386,2.0,1.3635629491171048,0.0006856317765752233,0.03585625174441881,0.825625243301973,1,1.0,0.5827952166471286
+145,26,0.6179914930385851,1.95,1.3831580517885793,0.0007001029163409629,0.03670655942171338,0.8175085826422476,1,1.0,0.5933049767952837
+145,27,0.6487509798487014,1.95,1.3833887086637144,0.0007016073859904394,0.036658176268314,0.8175434402615822,1,1.0,0.6625032661623379
+145,28,0.6252879392524036,1.95,1.3600615152911786,0.0006824891239332769,0.03584339699477779,0.814032216807575,1,1.0,0.6842931308413449
+145,29,0.6258410228960857,1.9,1.3601405064137266,0.0006837376613522435,0.035540183287820076,0.8024230734468948,1,1.0,0.6861367429869523
+145,30,0.6720872986895268,1.95,1.3590372580462113,0.0006845617684130886,0.03610899104071939,0.8138777389438282,1,1.0,0.7402909956317555
+145,31,0.6221081766457428,1.95,1.3603326549428965,0.0006873010943535753,0.03605520474435788,0.8140747161104064,1,1.0,0.7070272554858094
+145,32,0.6329753440781034,1.9,1.3583451263111281,0.0006849972097181314,0.036280338197568214,0.8021386786292799,1,1.0,0.709917813593678
+145,33,0.6345816043833806,1.95,1.3570757999674767,0.000686167388285598,0.03577269082395354,0.8135809198695891,0,1.0,0.7152720146112685
+145,34,0.6147117644425596,2.0,1.338697738147324,0.0006751140093051377,0.035566061636569515,0.8220133321278431,0,1.0,0.7157058814751986
+145,35,0.6204909843871658,2.0,1.3359798019010887,0.0006737985879840494,0.03529470400813561,0.8216149442271073,0,0.9953767162994643,0.7411343262246
+145,36,0.6705373199994819,2.0,1.3318060740284507,0.000671516013838667,0.035637674547262965,0.8210017344688634,0,1.0,0.7351243999982726
+145,37,0.625253966335221,2.0,1.3393163045594263,0.0006714094082671371,0.035820791697117,0.8221027313621271,0,1.0,0.7508465544507367
+145,38,0.6654582127725881,1.95,1.335112951891582,0.0006689387321313863,0.035426986674987226,0.8102216176141377,0,1.0,0.7515273759086271
+145,39,0.6664986354440572,1.95,1.3345202139331398,0.0006673824945701677,0.03488362365614098,0.8101299811973817,0,1.0,0.7549954514801903
+145,40,0.6330683029078925,2.0,1.334223540082909,0.0006668610070036828,0.035441015253607815,0.8213553584607881,0,0.9995094612134655,0.7775483947416878
+145,41,0.6570663194095959,1.95,1.3315889193347095,0.00066521848753369,0.03501299956285937,0.8096780143467255,0,1.0,0.790221064698653
+145,42,0.6613892120253997,1.95,1.3379544191967019,0.0006738798752619617,0.03556642421694206,0.8106596606245972,0,1.0,0.8046307067513322
+145,43,0.6860627673380932,2.0,1.374463603479994,0.000692369354801453,0.0361791298457647,0.8271909509579193,0,1.0,0.7868758911269774
+145,44,0.6805332624441445,2.0,1.3380957908490416,0.0006730733362439788,0.03545971222370714,0.8219246483402465,0,1.0,0.8017775414804812
+145,45,0.6403960570773969,2.0,1.3790241317753402,0.000696036066843201,0.03635796844929048,0.8278429333296579,0,1.0,0.8013201902579896
+145,46,0.6501964443920486,1.95,1.3814403921430753,0.0006969756526515225,0.036396891265470625,0.8172512540305097,0,1.0,0.8339881479734953
+145,47,0.6768805388913786,2.0,1.3830192319219639,0.000697880633211404,0.0364947384692307,0.8284120899148524,0,1.0,0.8562684629712616
+145,48,0.7039997121517882,2.0,1.3820669551753098,0.0006973127076950717,0.03651793337655198,0.8282765241681894,0,1.0,0.8799990405059606
+145,49,0.7043186842051419,2.0,1.3815999826929322,0.0006968959482145876,0.03647849281473618,0.828209975785811,0,1.0,0.8810622806838061
+146,0,0.18378821584418897,2.0,1.3771293002777318,0.0007065761908773918,0.03622001996796821,0.8275757240871727,0,0.20150385218865258,0.17728891656242646
+146,1,0.20007862144957667,1.95,1.3592483917691192,0.0006865985026650364,0.03573291057885447,0.8139103364917666,0,0.27108607928794803,0.17214729911465812
+146,2,0.1914071246915914,2.0,1.3576354346614583,0.000685840113420241,0.036047444148174214,0.82477028211462,0,0.29245095056267495,0.18142248155507143
+146,3,0.24399527139614527,2.0,1.358294996596822,0.0006851968151909375,0.036241867094978536,0.8248653985351798,0,0.3694973929564995,0.18732104737848485
+146,4,0.2395820426932204,2.0,1.3572083813709488,0.0006846559762073716,0.036067077447121725,0.8247082116234586,0,0.40641506554724866,0.19005338824773635
+146,5,0.2785583037764109,2.0,1.3488319257895665,0.000700414220151182,0.035964254020376264,0.8234985582889378,0,0.46285207837616843,0.17805824141981177
+146,6,0.24920142560556305,2.0,1.3476454933933577,0.0007002796887657988,0.03599423936887295,0.823326006573316,0,0.479949448004188,0.19073882134629289
+146,7,0.2874679493577115,1.95,1.3546040429491215,0.0006979623144863805,0.03582923978735379,0.8132093285991728,0,0.5037805915685908,0.21985237576758387
+146,8,0.3054258732110896,1.95,1.3374687469762974,0.0007661347142518523,0.03680253787791572,0.8106134306878338,0,0.5291188675171942,0.24592775401403977
+146,9,0.35744606941179485,2.0,1.3426488566476618,0.000758728524773431,0.03667120851846318,0.8226150780412578,0,0.5905487716261224,0.27075520253781976
+146,10,0.3529343287761184,2.0,1.342558909089425,0.0007585806936014035,0.03679785168650164,0.8226019094112214,0,0.6205344216877889,0.2824018670033427
+146,11,0.3993426727763346,2.0,0.8096464648881057,0.000884722744456319,0.030960544166269144,0.7313368724139292,0,0.6967472098795325,0.26881262941507206
+146,12,0.43212028806344405,2.0,0.8221249629540033,0.000955633129853986,0.031237388682800425,0.7338093025065671,0,0.7553034546055287,0.2999963540707753
+146,13,0.4782742324415809,2.0,0.8320623891878912,0.001017997058967479,0.032799350776968786,0.7357701456922743,0,0.8634337723093708,0.276335745059442
+146,14,0.42349630089052615,2.0,1.3209806125224328,0.0006627428417940926,0.03497875344627878,0.8194027190467108,0,0.8536230193718389,0.2734903104726352
+146,15,0.4273935956691848,1.95,1.320453218733448,0.0006620628042627846,0.03525219035166109,0.8079551086157203,0,0.8551559300788737,0.284437412125451
+146,16,0.4881168256289947,2.0,1.3178945986306607,0.0006604781243619293,0.03494093897048793,0.8189449230248687,0,0.9061533258240191,0.2855183176646237
+146,17,0.44800565534640346,2.0,1.3266961306402232,0.0006697723258396769,0.03503382801148517,0.8202490416460557,0,0.9058695334470673,0.2855261398919217
+146,18,0.5268864270381355,1.95,1.3256005546116214,0.0006684767404617352,0.03516415232406528,0.8087545063676022,0,0.9962949594968916,0.2612281441312626
+146,19,0.5207507265109782,1.95,1.3217317211403365,0.0006665960336491839,0.03481895567254854,0.8081548132887593,0,1.0,0.23583575503659376
+146,20,0.4700103579153881,2.0,1.3192889155840346,0.000665462115150634,0.035149666940618045,0.8191530489087931,0,1.0,0.2333678597179602
+146,21,0.4982457560349283,1.95,1.3196344217361895,0.0006649540910279394,0.03516582708909813,0.8078289267439057,0,1.0,0.26081918678309424
+146,22,0.4807553683699393,1.95,1.32715509218861,0.0006651994127015834,0.03499129474032825,0.8089938194729837,0,1.0,0.26918456123313106
+146,23,0.5077998755782994,2.0,1.3257617671522788,0.0006643549588714022,0.03509313699648524,0.8201096389124454,0,1.0,0.2926662519276646
+146,24,0.5316238640417934,2.0,1.334550099614345,0.000667202748474222,0.03519468803751509,0.8214033700189632,0,1.0,0.3054128801393112
+146,25,0.5322084732228622,2.0,1.3412280722807353,0.0006731110972735516,0.03531429331460535,0.8223826520471365,0,1.0,0.3073615774095407
+146,26,0.53449218757787,2.0,1.3464291209984895,0.0006790382401446248,0.03540008672711708,0.8231428185759784,0,1.0,0.28164062525956657
+146,27,0.5249928824586627,2.0,1.3445077942394343,0.0006782459413657288,0.035775901078274205,0.8228627096379317,1,1.0,0.24997627486220897
+146,28,0.47788481688582896,2.0,1.3329671922403334,0.0007388672556545583,0.03599444526861166,0.8211920863339885,1,1.0,0.22628272295276305
+146,29,0.5158832220239299,1.95,1.3417018128848663,0.0007313009327502251,0.036394074879746434,0.811251766251257,0,1.0,0.25294407341309966
+146,30,0.502716687331868,1.95,1.3662965209736708,0.0006862962118331256,0.03621934013738787,0.8149753960601877,0,1.0,0.2757222911062266
+146,31,0.5119219339471461,2.0,1.3697444842112452,0.0006899297644282297,0.03613714663948727,0.8265146297922649,0,1.0,0.30640644649048693
+146,32,0.537792057032913,2.0,1.3726362661761797,0.0006936202979004548,0.03629804141995374,0.8269299421173627,0,1.0,0.2926401901097098
+146,33,0.5293767761322107,2.0,1.3725831353162712,0.0006926789783623244,0.03606296926882757,0.8269220686191117,0,1.0,0.2979225871073688
+146,34,0.5337925877184403,2.0,1.3745119780572956,0.0006927605999087605,0.036197437699859766,0.8271979776550873,0,1.0,0.2793086257281343
+146,35,0.48675927313487577,2.0,1.3742645033943204,0.0006922373491826588,0.036424200624007,0.8271624507824761,0,1.0,0.2891975771162525
+146,36,0.48678168971730745,1.95,1.3732138900443371,0.0006916155556317844,0.03643459021334094,0.8160177949709939,0,1.0,0.2892722990576915
+146,37,0.5310256056934978,2.0,1.371730581976889,0.0006907567803565534,0.03613882987698294,0.8267994649772831,0,1.0,0.3034186856449925
+146,38,0.5393573209302731,2.0,1.3736983552231616,0.0006914777395422753,0.03630438025442736,0.8270812792938744,0,1.0,0.2978577364342436
+146,39,0.5340589294767197,2.0,1.3734012987129285,0.0006911414285794574,0.036061773263230235,0.8270386945708048,0,1.0,0.28019643158906576
+146,40,0.5258867484663564,2.0,1.3728850558005026,0.0006908981797576802,0.036157467369099895,0.8269647661630793,0,1.0,0.28628916155452133
+146,41,0.5303858877063521,2.0,1.3740929216774225,0.000691881722469804,0.036368074232162144,0.827137817575897,0,1.0,0.26795295902117344
+146,42,0.5182551081766702,2.0,1.3735148291062942,0.0006918689638073294,0.03642531331075332,0.8270551421275527,0,1.0,0.26085036058890065
+146,43,0.4798529699210242,2.0,1.3743240308057452,0.0006930485306072554,0.036445696963977404,0.8271711928685975,0,0.9910546069630145,0.2781037571193947
+146,44,0.48806516084491225,1.95,1.3735271298775111,0.0006922277466473309,0.03627685285494273,0.8160650016578108,0,1.0,0.2935505361497075
+146,45,0.4887327111015338,2.0,1.3723082562516182,0.0006911941011934839,0.03633587430278476,0.8268822987390247,0,1.0,0.2957757036717794
+146,46,0.5106569250336398,2.0,1.3716991155116436,0.0006904830860023721,0.036046138841074604,0.8267948804778944,0,1.0,0.3021897501121327
+146,47,0.5318510807212334,2.0,1.374954337281737,0.0006922705283836097,0.03642172018403074,0.8272610599244702,0,1.0,0.2728369357374447
+146,48,0.5272591265840331,2.0,1.374473970761553,0.000692112916611383,0.036399882569582834,0.8271923596019843,0,1.0,0.25753042194677683
+146,49,0.5025008615033929,2.0,1.3738587079589055,0.0006920027400986762,0.03642123399144058,0.8271043615455387,0,1.0,0.27500287167797627
+147,0,0.13136833370950776,1.95,1.3668023067021677,0.0007092552849003718,0.0361398973622565,0.8150585733071456,1,0.12256073152725752,0.2078134703286825
+147,1,0.20173833833487148,1.9,1.3661677465601156,0.0007098355688773914,0.03642171768428501,0.8033851371780595,1,0.17149126292841288,0.2771394438783544
+147,2,0.18110934458693465,1.9,1.365398301917105,0.0007106484783236197,0.036352491163580886,0.8032638262151826,1,0.1723936114631665,0.30717300000556014
+147,3,0.19622907163312697,1.8499999999999999,1.365114216272055,0.0007111653647471949,0.036484995910433755,0.7910946840950908,1,0.19823854451318287,0.3231121794261794
+147,4,0.23092759831323859,1.9,1.36430825837065,0.0007119982358215053,0.03640582000943821,0.8030919354299076,1,0.22231132802535447,0.34001022367698935
+147,5,0.20749298305811034,1.9,1.3861757936598476,0.0007003226615081634,0.03664929865539214,0.806523415995071,1,0.25775173068103086,0.31464096928565993
+147,6,0.25836642751809924,1.8499999999999999,1.3862109833431704,0.0007002561216349457,0.03656047663733915,0.7945562478306972,1,0.2928653757035935,0.33740092412220624
+147,7,0.3082434697006931,1.8499999999999999,1.3862568443642975,0.0007002101696850932,0.036770671852503954,0.7945637189258268,1,0.3425331177448183,0.40410074200921936
+147,8,0.3432465801319649,1.8499999999999999,1.3778531048738818,0.0007008761641594078,0.03650887341788109,0.7931887803892274,1,0.38883282502279143,0.45904483374282773
+147,9,0.32804947712452565,1.8499999999999999,1.3773527873975482,0.0007012217303900334,0.036491381532245605,0.7931068095085922,1,0.4114658654619531,0.4782104364658147
+147,10,0.39102322505799536,1.9,1.3793146393858255,0.000699115505348619,0.03651133863769499,0.8054501476716713,1,0.44415109163953537,0.5445426280072707
+147,11,0.3706060779936034,1.9,1.3787191001576313,0.000699166298494004,0.03645995136235512,0.805356825499404,1,0.4703637250298335,0.5415352932722333
+147,12,0.3813026762260887,1.8499999999999999,1.379034391025952,0.0007007758724109922,0.03657636302843938,0.7933824589766111,1,0.5069436371644004,0.5284174045344284
+147,13,0.38209037368218246,1.9,1.3789150804431922,0.0007023565663597086,0.036442555145887914,0.8053885450568539,1,0.5647399162030144,0.48731469066992217
+147,14,0.43894804731524567,1.95,1.3788940723749619,0.0007009966681730788,0.03645961895444363,0.8168718527656578,1,0.5975112383527748,0.5331451732471193
+147,15,0.4098611897265187,1.95,1.3812486828126094,0.0007004951355963238,0.03640111168543321,0.8172236715924743,1,0.6249614793947532,0.4995886598953913
+147,16,0.4583261451100414,1.9,1.3723384454519474,0.0006932362183986741,0.03625071184890737,0.8043527962657354,1,0.6486213426114498,0.5295920268848715
+147,17,0.43453722741458967,1.9,1.3706911221740852,0.0006927071686678322,0.03624772153686234,0.804093261370796,1,0.6930336337587603,0.49107924637028516
+147,18,0.45275871847696003,1.8499999999999999,1.3722327191095505,0.0006956418984161541,0.03639106945051416,0.79226356815004,1,0.7067841953111755,0.5001501345082994
+147,19,0.524622551054851,1.9,1.3711925497957391,0.0006940626055172326,0.03633945206566927,0.8041726647663126,1,0.7697852983401483,0.5556947723959721
+147,20,0.5581018008419238,1.9,1.3749067341992685,0.0006943877586936822,0.03636585675493283,0.8047570122283757,1,0.804467081764842,0.6210498937866233
+147,21,0.5417106201388373,1.9,1.3575180918584357,0.0006817922678303174,0.03583037780323996,0.802006367518964,1,0.8189478058636547,0.6471049926445849
+147,22,0.5475928907129083,1.95,1.357803622377015,0.0006834330346857861,0.03558248856976036,0.8136904522777542,1,0.835995247358897,0.6439826392311648
+147,23,0.5909194010802793,2.0,1.3582560004972142,0.0006853520949776843,0.035648505065042545,0.8248598098561679,1,0.8672349214541248,0.6800847749954311
+147,24,0.5881324032772226,2.0,1.3654630368921101,0.0006873221993338701,0.035799690049065525,0.8258991124232402,1,0.9027588578969143,0.6900962003948562
+147,25,0.6047173775501425,2.0,1.3649592147336,0.0006882039733713602,0.03588985989770575,0.8258269097195389,1,0.9293208109904996,0.7099635105131423
+147,26,0.6086214174988179,2.0,1.3641338997419301,0.0006888805196362002,0.035953197367626685,0.8257083618364058,1,0.9770089586466705,0.6927261134671656
+147,27,0.6771571809941713,2.0,1.3624576613920927,0.0006869704577529467,0.03629293679914455,0.8254664454734109,1,1.0,0.7571906033139043
+147,28,0.6299626150369667,2.0,1.3632428454764032,0.0006894225604211742,0.036312836626093886,0.8255802454825323,1,1.0,0.7332087167898889
+147,29,0.6694474614307089,1.95,1.361464750697217,0.0006872418865362423,0.03595477342266882,0.814245987976955,1,1.0,0.7648248714356961
+147,30,0.6530318761134959,1.95,1.3672977338594845,0.0006886117488305774,0.03601348284661364,0.815127019724084,1,1.0,0.7767729203783195
+147,31,0.6353680948715221,2.0,1.366563613130149,0.0006892309863278925,0.03611082723647059,0.8260578558026237,1,1.0,0.7512269829050736
+147,32,0.6456950871703019,2.0,1.3652996126885393,0.0006876471336163463,0.035992589861612787,0.8258757058976705,0,1.0,0.7523169572343394
+147,33,0.6718700423412123,2.0,1.33806403717199,0.0006742015307357568,0.03524562513374403,0.8219203309428165,0,1.0,0.7395668078040408
+147,34,0.66278594061912,2.0,1.3447768802934423,0.0006742321954711162,0.03511257630767135,0.8229007582408172,0,1.0,0.7092864687303997
+147,35,0.6568213627511224,2.0,1.349619861282455,0.0006750065058622374,0.03562931894198125,0.8236056721724045,0,1.0,0.7227378758370742
+147,36,0.6171072277044973,2.0,1.3500086768353983,0.0006748847332752923,0.035989174086634435,0.8236621165702197,0,1.0,0.7236907590149909
+147,37,0.6537566955049071,1.95,1.346633075407171,0.0006725816508074351,0.03593786586703279,0.8119877660524941,0,1.0,0.6791889850163569
+147,38,0.6473911669919622,1.95,1.349539109283969,0.0006735908340615405,0.03521580770453964,0.8124313171391747,1,1.0,0.6579705566398739
+147,39,0.5961525026230332,2.0,1.3653650170461142,0.0006853231082496491,0.03613354995823151,0.8258844427868682,1,1.0,0.6205083420767773
+147,40,0.640896735311093,1.95,1.3637398362417419,0.0006839858996601232,0.036325563351977966,0.814588863922397,1,1.0,0.6696557843703099
+147,41,0.6531699419088357,1.95,1.3683275636005967,0.0006874219729645207,0.0357463804196622,0.8152818011624189,1,1.0,0.7105664730294522
+147,42,0.6264170663377981,2.0,1.3721436690229676,0.00069151484618422,0.03628968246827095,0.826858828982815,1,1.0,0.6880568877926603
+147,43,0.6101837317843668,1.95,1.3731660132173162,0.0006913409401772627,0.036039739224855635,0.8160105245223256,1,1.0,0.6672791059478892
+147,44,0.6029090075489728,2.0,1.3708217697274945,0.0006899598659286612,0.0364760790482488,0.8266690541153418,1,1.0,0.6430300251632425
+147,45,0.5967630392882314,2.0,1.369123813614336,0.0006890408531979879,0.0363862159393749,0.8264253598957785,1,1.0,0.6225434642941046
+147,46,0.6532735298603309,2.0,1.3668914909762595,0.0006877815915346439,0.03640754551269536,0.826104545884817,1,1.0,0.6775784328677698
+147,47,0.606446806957174,2.0,1.3683721908509314,0.0006878145845714517,0.03616253932820743,0.8263171638176514,1,1.0,0.6548226898572467
+147,48,0.6439612411929786,1.95,1.3660886784133757,0.0006863383406081426,0.03588962748917627,0.8149440660317778,1,1.0,0.6798708039765952
+147,49,0.6201761441463803,1.95,1.3694985631790084,0.0006908737741248307,0.036431779546890655,0.8154591244289299,1,1.0,0.6672538138212678
+148,0,0.13489460590400995,1.9,1.3650812374044599,0.0007095931156066938,0.03611299691751161,0.8032133817343192,1,0.1241698828478228,0.21742217588293616
+148,1,0.17992367322989086,1.8499999999999999,1.3643947488638044,0.0007101750515447563,0.036389354345001554,0.7909754297507411,1,0.1624052094136338,0.2498719648814578
+148,2,0.23254339186147993,1.8499999999999999,1.363679595989309,0.0007092038564218708,0.03637293312613541,0.7908568452863132,1,0.22545314892480112,0.3078737743051982
+148,3,0.2043645583312117,1.8499999999999999,1.3862299254070356,0.0007001314256882906,0.036509909398198995,0.7945592991424293,1,0.28702495184866994,0.2651819253058124
+148,4,0.23179158602643565,1.7999999999999998,1.3862296123462579,0.0007001288503643314,0.03678655947939641,0.7820460577913424,1,0.3208135276073611,0.278220583278304
+148,5,0.2901182688915518,1.7999999999999998,1.3861727663312888,0.0007000913602213582,0.036460009243405325,0.7820363554507275,1,0.35992241862247476,0.32049767147520625
+148,6,0.2480307143233907,1.7999999999999998,1.3862285794841347,0.0007001761649773166,0.03672110360896394,0.7820458978694828,1,0.3799704710644262,0.28680841965873394
+148,7,0.25000252536334644,1.7499999999999998,1.386219775883756,0.0007001326306204563,0.03671709744176367,0.7689905463009907,1,0.41388176983305824,0.24816605810041042
+148,8,0.30868898273468004,1.7999999999999998,1.3784624716014404,0.0006991798579591538,0.03640854747201046,0.7807189235978301,1,0.4468230293024301,0.29986590337902674
+148,9,0.28874514542146146,1.7999999999999998,1.378632242133805,0.0006981845623059231,0.03658084867341763,0.7807476456484143,1,0.4827794071294906,0.2854446085655507
+148,10,0.2960146502835028,1.8499999999999999,1.3801272955003285,0.0006979567382240595,0.0365167944174398,0.7935606341206857,1,0.5249317852463729,0.25347312061651217
+148,11,0.37674740515761557,1.9,1.381319245583552,0.0006978427907492317,0.03653920548002641,0.8057636791705342,1,0.5720894027188523,0.3263721469002488
+148,12,0.4175664549775329,1.9,1.3806541472489227,0.0006976407440725894,0.03651674969935055,0.8056595011405605,1,0.6240055343695747,0.39321413743234346
+148,13,0.3939679961373817,1.9,1.377134524995736,0.0007116068914209893,0.03669793350020201,0.8051122157756143,1,0.6339908962968175,0.40123879206218227
+148,14,0.38133828924972646,1.8499999999999999,1.3808777600276252,0.0006968057608698511,0.03654996028977004,0.7936831728059205,1,0.662159428492989,0.3549150595084361
+148,15,0.4516272356223057,1.9,1.371101273978253,0.0007151709666040902,0.03668850998523737,0.8041649388742445,1,0.6941975083598904,0.4131607742611652
+148,16,0.4687691173171376,1.9,1.3797763356234023,0.0006963989543158358,0.03647416152693589,0.8055216342355725,1,0.7297218826868965,0.4562678808079299
+148,17,0.4910221451272934,1.95,1.3789515641243546,0.0006955765820534983,0.03621635260828231,0.8168788313759039,1,0.7527015504766348,0.4998050831221315
+148,18,0.5137426584132174,1.95,1.3781746456712836,0.0006947455191944263,0.03630004078849948,0.8167623364799174,1,0.7835093243083474,0.534463095632928
+148,19,0.5308687465971703,1.95,1.377043167800875,0.0006937987190909034,0.03646860571084319,0.8165926533674157,1,0.8134586777079483,0.5516175850466366
+148,20,0.5267186407413491,2.0,1.3838767456042202,0.0007008558909517598,0.036551994406575014,0.8285347926615821,1,0.8355456797380088,0.575001229487152
+148,21,0.5232836269878934,2.0,1.3844666067810714,0.000700319110267094,0.036494415349481765,0.8286184225298704,1,0.8753556849754195,0.5438045099924187
+148,22,0.5296170585735782,2.0,1.3838059270625358,0.0007002867609124903,0.03662067381466307,0.8285245698847888,1,0.9172840297097052,0.5090114889656537
+148,23,0.6131716075463008,2.0,1.3830269625755363,0.0007002457187762921,0.0367046134428071,0.8284138611577517,1,0.9842292989880688,0.564932959836911
+148,24,0.5856182256990863,2.0,1.3834654877628898,0.0006995502199148605,0.03639351187502189,0.8284759883867601,1,0.9742804100268992,0.5863535389610888
+148,25,0.5782872999291161,1.95,1.3839588413390524,0.0006992134305162604,0.03656667168587331,0.8176277554325341,1,1.0,0.5609576664303868
+148,26,0.6362121210067928,2.0,1.3830486721218138,0.0006989242734760062,0.036538778287901266,0.8284165713578882,1,1.0,0.6207070700226424
+148,27,0.5889295889826599,2.0,1.3550415087380407,0.0006964376450228334,0.03631503330457107,0.8243981493519733,1,1.0,0.5964319632755328
+148,28,0.6273104233052816,1.95,1.3833934334839846,0.0006984636351733185,0.03654074816425944,0.8175432071622826,1,1.0,0.6243680776842718
+148,29,0.6380034838754673,1.95,1.352490393672584,0.0006957472730832322,0.035791215161412836,0.8128873790597189,1,1.0,0.6600116129182243
+148,30,0.6650166108618013,2.0,1.3546480163358674,0.0007039844762679224,0.03608482566117414,0.8243433634158829,1,1.0,0.7167220362060043
+148,31,0.6594161303982208,2.0,1.3560551933675171,0.0007000920734347281,0.03598886115254874,0.8245459053814904,1,1.0,0.7313871013274025
+148,32,0.6446446182152192,2.0,1.3573788957968844,0.000707006914894037,0.036326742420391675,0.8247393221031772,1,1.0,0.7488153940507308
+148,33,0.6229799810226222,2.0,1.3638705789776535,0.000703844848400447,0.03642521488657782,0.8256747708766875,1,1.0,0.7099332700754074
+148,34,0.6807303127386055,1.95,1.3614283706880252,0.0007036629871342156,0.0363608615967204,0.8142454528848144,1,1.0,0.769101042462018
+148,35,0.6812431578950745,1.95,1.3612286556393807,0.0007002115117844047,0.036145588331701936,0.814214199925595,1,1.0,0.8041438596502483
+148,36,0.7119160160547437,2.0,1.3680032078515345,0.0007221927217302533,0.036644106645387815,0.8262740719247925,1,1.0,0.8730533868491458
+148,37,0.7147191529831423,2.0,1.371653932651499,0.0007172724501571233,0.03643194954029684,0.8267960828057869,1,1.0,0.9157305099438073
+148,38,0.7219120442522537,2.0,1.3695705931888553,0.0007183419493885241,0.03670597088057962,0.8264978431744613,1,1.0,0.9397068141741788
+148,39,0.6994659586012549,2.0,1.3672085145826083,0.0007192402590721598,0.0365773460285959,0.8261591198518702,1,1.0,0.9315531953375163
+148,40,0.7298997684888723,1.95,1.3706535156777353,0.000714949864268324,0.03657926769770984,0.8156401055775392,1,1.0,0.966332561629574
+148,41,0.75,1.95,1.3677086762172492,0.0007159620323855074,0.036149982133898126,0.8151971794704176,1,1.0,1.0
+148,42,0.7010996884670262,1.95,1.370964991748295,0.0007117876442853516,0.03657267226303337,0.8156859872125887,1,1.0,0.9703322948900874
+148,43,0.6993435421679448,1.9,1.3705191350488497,0.0007162086021614076,0.036659037732263706,0.8040735721912043,1,1.0,0.9644784738931494
+148,44,0.7140143757408851,1.95,1.3691863976786893,0.0007205653868604937,0.036612311483446465,0.8154210813181418,1,1.0,0.9800479191362836
+148,45,0.72,2.0,1.3728404595619237,0.0007159087693398213,0.03674731013748826,0.8269655424383766,1,1.0,1.0
+148,46,0.72,2.0,1.3752980115048836,0.0007120189991836874,0.036565831918010695,0.8273158082940809,1,1.0,1.0
+148,47,0.6985461869741414,2.0,1.37657061038542,0.0007089298949245545,0.03669830441235987,0.8274966596843576,1,1.0,0.9618206232471378
+148,48,0.7382287875067343,1.95,1.3758541471426022,0.0007114048840299151,0.036501757705701875,0.8164197854146423,1,1.0,0.9940959583557807
+148,49,0.75,1.95,1.3739478482078646,0.0007128212991003818,0.03663096182670546,0.816134324888092,1,1.0,1.0
+149,0,0.1586308204882792,2.0,1.3642733666501843,0.0007095386678745476,0.036079211569802955,0.8257343775499826,1,0.13095408079906862,0.2208306272288392
+149,1,0.2002129060407209,1.95,1.3645841165310224,0.0007082638035914818,0.03634367733871137,0.8147236745185616,1,0.17169708225986513,0.2717802437892494
+149,2,0.18749404000136397,1.95,1.3638136015133169,0.0007090287566870934,0.036314174288477254,0.8146075688843643,1,0.20432844066346634,0.2858755457865914
+149,3,0.2523977364614061,2.0,1.3860301010132283,0.0007000194723310062,0.03641227935555525,0.8288402551593974,1,0.2447957452721096,0.348264794508541
+149,4,0.2367501954405654,2.0,1.38608407022799,0.0007000288101865214,0.03672119212306795,0.8288479139661944,1,0.25736022585578444,0.3793536836608387
+149,5,0.2966298295234776,2.0,1.3860624514970548,0.0007000102763975507,0.036740717124367675,0.8288448418733239,1,0.3049769974139938,0.41546343519293366
+149,6,0.2659130365364294,2.0,1.3767104630276767,0.0007046690376863006,0.03631353369463426,0.8275154058345111,1,0.346202847280964,0.39143965874681247
+149,7,0.3116242383778755,1.95,1.3859810616257198,0.0006999609219292259,0.0367021303317024,0.8179293229492554,1,0.3721678033882107,0.40919039007530406
+149,8,0.332582608955356,1.95,1.3757630889665529,0.0007016092537303249,0.03641051358149741,0.8164032008602691,1,0.4076297168579866,0.4317690740405381
+149,9,0.37682577497407116,1.95,1.3797928382515954,0.000697295569334591,0.036482375739954866,0.8170051561850571,1,0.44526568931155897,0.49573166416482517
+149,10,0.3386691316240422,1.95,1.3793188883014063,0.000697358302613724,0.036515518982755305,0.8169343051207952,0,0.48022070493099256,0.4552694988388174
+149,11,0.40701309502453203,1.9,1.3727065714212097,0.0007035438357498187,0.03636989564683703,0.804413964988282,0,0.5759993830892534,0.4220444726294355
+149,12,0.40015374251186264,1.9,1.3707231378305091,0.0007033924964554357,0.03633014042435826,0.8041016710352342,0,0.6192932800984885,0.44145476824155755
+149,13,0.43971717836912094,1.95,1.3139638696347686,0.0007119382013978377,0.035693565060844853,0.8069617239011473,0,0.6780217766627009,0.42836155901346856
+149,14,0.43069016719042763,1.95,1.3121080649983483,0.0007106543639539373,0.03585009256865587,0.806672071734952,0,0.6950448823412472,0.4422407141797624
+149,15,0.47241521778271045,2.0,1.3164998615172296,0.0007051127082207184,0.03590634362302919,0.8187512752909776,0,0.7541845177671032,0.43580470225289736
+149,16,0.4995466266773879,2.0,1.3144349232653871,0.0007038239165752277,0.03576813921198517,0.8184442586306564,0,0.8286230646450761,0.42699133606452505
+149,17,0.5540158788548566,2.0,1.166977709535424,0.0005304256230107293,0.030091199687646147,0.7954407275137875,0,0.9415967060711212,0.4245906547546934
+149,18,0.5377912138495768,2.0,1.1606465967882815,0.0005246889701530722,0.030086638947458628,0.7944067610011641,0,0.9601970751604284,0.4457079459513517
+149,19,0.5264258047686908,2.0,1.1679578198891556,0.0005396185832607021,0.03045063272207334,0.7956031496844503,0,0.968221733329617,0.46379037145614677
+149,20,0.5685729846207426,2.0,1.1829073958532161,0.0005498193852749075,0.031084568347713094,0.7980267789031436,0,1.0,0.49524328206914175
+149,21,0.5933549733850328,2.0,1.1880841935531437,0.0005631328999976062,0.03148449717806111,0.7988641666275397,0,1.0,0.5111832446167759
+149,22,0.5802231155351705,2.0,1.211009090936978,0.0005727404108234577,0.031985541655965614,0.8025255639681127,0,1.0,0.5340770517839015
+149,23,0.5654767620321743,2.0,1.214078837145554,0.0005829971389191222,0.0318748232633229,0.8030148452043966,0,1.0,0.5515892067739143
+149,24,0.6090709644466065,2.0,1.2263134932693576,0.0005913827495336579,0.03186345082683007,0.8049456086809343,0,1.0,0.5302365481553546
+149,25,0.604638637822813,2.0,1.2207990967210205,0.0005860703189791362,0.031804763590039795,0.8040766733496963,0,1.0,0.515462126076043
+149,26,0.5576784436428003,2.0,1.2151847700894356,0.000580547034091976,0.03203615582410307,0.8031889506640452,0,1.0,0.5255948121426676
+149,27,0.6013037085126219,2.0,1.2257248401300729,0.0005901578878341448,0.03266965536317287,0.8048527839694425,0,1.0,0.5043456950420728
+149,28,0.5770287078823575,2.0,1.220269278356498,0.000584619960711467,0.03239716805529839,0.8039927365884189,0,1.0,0.5234290262745249
+149,29,0.600420404188011,2.0,1.223333369254445,0.0005946935374905095,0.0320688815645033,0.8044783211156697,0,1.0,0.50140134729337
+149,30,0.5912192814973412,2.0,1.2180851521984462,0.0005893575766849118,0.031702789692990445,0.8036498102274425,0,1.0,0.47073093832447044
+149,31,0.5653820292582887,2.0,1.2127950623913137,0.0005838740368535996,0.03157449045786883,0.8028119737786055,0,1.0,0.48460676419429544
+149,32,0.5887714081535778,2.0,1.2150832977754127,0.0005940242209713828,0.03217537538576797,0.8031771708656915,0,1.0,0.4625713605119257
+149,33,0.5851106956146706,2.0,1.2100196573949367,0.0005887902552272984,0.03223011159300373,0.8023738034016592,1,1.0,0.45036898538223474
+149,34,0.58862304465085,2.0,1.3842521216990378,0.0006998961650126873,0.03656264827903181,0.8285878412291541,1,1.0,0.49541014883616646
+149,35,0.6170298731365045,2.0,1.384485436530816,0.0007008908359893795,0.03675364922717374,0.8286212589042037,0,1.0,0.5567662437883483
+149,36,0.6104955299852204,2.0,1.2456978167678394,0.0006266394200064409,0.032783708328908104,0.8079820670539644,0,1.0,0.5349850999507344
+149,37,0.6008736527999048,2.0,1.2414122817072255,0.0006219700970469444,0.03248876783489918,0.8073148485501451,0,1.0,0.5029121759996826
+149,38,0.5965014270731285,2.0,1.2370552199491345,0.0006171886437554665,0.032818965503861194,0.8066346753045144,0,1.0,0.4883380902437613
+149,39,0.5869065203064154,2.0,1.2325872448880508,0.0006124007002394492,0.033001522145673944,0.805935329493694,0,1.0,0.45635506768805145
+149,40,0.5816762255453167,2.0,1.228064238863885,0.0006076033132513736,0.03277451890909544,0.8052254313404617,0,1.0,0.4389207518177223
+149,41,0.5597822732297799,2.0,1.2234523121765424,0.0006026969633741403,0.03221523107401339,0.8044995468917846,0,1.0,0.46594091076593275
+149,42,0.5829612960839454,2.0,1.2238292988117603,0.0006107262715549094,0.03233463077036044,0.8045613576607112,0,1.0,0.44320432027981765
+149,43,0.539048406029747,2.0,1.2193695611646294,0.0006059577735516934,0.03200690064368202,0.8038576415768399,0,1.0,0.4634946867658232
+149,44,0.5684228324930447,2.0,1.2290915670571367,0.0006156567179866278,0.03265851655690473,0.805389028893121,0,1.0,0.4947427749768157
+149,45,0.5927900532641424,2.0,1.2290175709652797,0.0006229927627458183,0.033009950025395404,0.8053797304264136,0,1.0,0.5093001775471411
+149,46,0.5942565772318804,2.0,1.2499482744735795,0.0006245612806928646,0.033442860916454334,0.8086400067463209,0,1.0,0.48085525743960095
+149,47,0.58819841722411,2.0,1.2457631603779906,0.0006202061927580371,0.03291911132879084,0.8079902085980805,0,1.0,0.49399472408036654
+149,48,0.5880045314463123,2.0,1.265099166633076,0.0006243793785962782,0.033171321429899016,0.8109734638818709,0,1.0,0.4600151048210407
+149,49,0.5828416168695721,2.0,1.2608762905954,0.0006204368081790253,0.032774033201628326,0.8103240537808593,0,1.0,0.4428053895652403
+150,0,0.06505477183376979,2.0,1.3752195795763074,0.0007068952475795101,0.03617486254683703,0.8273031387959295,0,0.1666870980747702,0.19459977534620568
+150,1,0.15864430304111435,1.95,1.384416464928175,0.0007019936620123251,0.03670194699293737,0.8176968118541593,0,0.19196730336909373,0.2061912723115895
+150,2,0.22483595110583177,1.95,1.3745438039083528,0.0007031655097175926,0.036522948067931826,0.8162208398056529,0,0.29555940821293086,0.1887072927355313
+150,3,0.17723696837289554,1.95,1.3554588280937,0.0006820379097243781,0.03612301404712267,0.8133343003410483,0,0.2988068744643223,0.19238072862388875
+150,4,0.25028416362467565,1.9,1.359173661935535,0.000682761411361652,0.035986014019735835,0.8022694350962551,0,0.3789025551841335,0.19574380517007423
+150,5,0.21507544389175753,1.9,1.3574318027723606,0.0006817941106540991,0.03576155894815317,0.8019926657173301,0,0.3844646458274737,0.20429861853589354
+150,6,0.3009382319616986,1.8499999999999999,1.3749804156791956,0.0006925230471301908,0.03617826902276395,0.7927144014488895,0,0.490096420275439,0.18299887950507668
+150,7,0.33211115317079887,1.8499999999999999,1.348881027820611,0.0006875495943104169,0.03545637412748842,0.7883913669407144,0,0.5902121162972906,0.15342102217294215
+150,8,0.3284220200071069,1.8499999999999999,1.3508101218366442,0.0006922342696667072,0.035923253994803964,0.7887145808078938,0,0.6363234265398452,0.17964216463722923
+150,9,0.3934210168622984,1.95,1.0167878084260555,0.0006160978197865411,0.02988725766940469,0.7563957994436833,0,0.7381463502764943,0.1605415891723355
+150,10,0.3522380586371632,2.0,1.0255427197677673,0.0006209997589694198,0.030127563962394632,0.7714972248340738,0,0.7536422984043326,0.1692704642514336
+150,11,0.43466808903787635,2.0,1.0584724535545287,0.0006172837741502638,0.030570101108222593,0.7772491410048067,0,0.8524922939285915,0.14557057155479916
+150,12,0.4183364496682633,2.0,1.114016984062235,0.0007423343840472777,0.03252715224350065,0.7867594460948641,0,0.8782494696992091,0.15678887262859859
+150,13,0.43038853748758504,2.0,1.1120332007996596,0.0007416591474137054,0.03298745202816711,0.7864262125675809,0,0.9068130298502382,0.15887775182496586
+150,14,0.4180636852249166,2.0,1.109912236751849,0.0007407911170080167,0.033092454558639635,0.7860694670385503,0,0.9124216830420963,0.17698337336026038
+150,15,0.49325674851350937,2.0,1.118316616785011,0.0007599228504403177,0.03327296218927361,0.7874857888469986,0,0.9840922305936872,0.19873285425344836
+150,16,0.45569068658570516,2.0,1.1186531230194237,0.0007524155091253144,0.032985028110900504,0.7875395861032081,0,0.9903548578857401,0.19849581143803033
+150,17,0.48317989789988247,2.0,1.1256323508109605,0.0007696943998956875,0.033102771004291626,0.7887107728423459,0,1.0,0.2105996596662748
+150,18,0.4613467991970628,2.0,1.3198024231055412,0.0006932205983728989,0.03575003187218349,0.8192373296458684,0,1.0,0.20448933065687586
+150,19,0.46780731369263406,1.95,1.3186978643160436,0.0006911391732676543,0.03557523707418191,0.8076916269579458,0,1.0,0.22602437897544678
+150,20,0.5108885994542486,2.0,1.3161022886489597,0.0006888407310585675,0.03460651970159677,0.8186874382251512,0,1.0,0.236295331514162
+150,21,0.5164655916428746,2.0,1.3181107468907258,0.0006935732359623786,0.03476144236229894,0.818986782749792,0,1.0,0.2215519721429154
+150,22,0.48508187720894513,2.0,1.3170381028250355,0.0006954702438539916,0.03493167340576715,0.8188282744460763,0,1.0,0.21693959069648372
+150,23,0.5011583998637478,1.95,1.3295057528524763,0.0006925043027084301,0.03561829512058744,0.8093652124403039,0,1.0,0.20386133287915914
+150,24,0.4610679765042178,2.0,1.3286326228666683,0.0006962559477224214,0.0358340208648137,0.8205421817843213,0,1.0,0.203559921680726
+150,25,0.5009427647579363,1.95,1.3288088403444893,0.0006943056426054569,0.03581410230825456,0.8092582165275232,0,1.0,0.2031425491931209
+150,26,0.4625061221705609,1.95,1.3276562245297567,0.0006978216670953,0.035012049758448655,0.8090813223048081,0,1.0,0.2083537405685363
+150,27,0.490586465833288,1.9,1.3266405364649192,0.0006957502492728646,0.03513510053042205,0.7970620134502958,0,1.0,0.23528821944429318
+150,28,0.4940652855799032,1.9,1.3369730044434354,0.0006932172788770959,0.036044898507741965,0.7987273897192402,0,1.0,0.24688428526634384
+150,29,0.5181805322901198,1.95,1.3468602056127077,0.0006916998149262515,0.035953411724877815,0.8120282745178593,0,1.0,0.26060177430039955
+150,30,0.48390508204630683,1.95,1.347616128772637,0.0006943642094282159,0.036053192025733004,0.8121444431643748,0,1.0,0.27968360682102267
+150,31,0.5320068237818009,1.9,1.3466061472634738,0.0006926014866805132,0.03560306042219327,0.8002713800348953,0,1.0,0.2733560792726694
+150,32,0.4883491608404608,1.9,1.3449670491182488,0.0006941961945816275,0.03562919433152678,0.8000097726829245,0,1.0,0.294497202801536
+150,33,0.5298771612727617,1.8499999999999999,1.34391365876541,0.0006923485837253385,0.036064224541577566,0.7875630773384007,0,1.0,0.26625720424253885
+150,34,0.4851574131677568,1.8499999999999999,1.3420858219865552,0.0006938617075411638,0.03547047968502242,0.7872576126859959,0,0.9969313752018427,0.2879495436233991
+150,35,0.525684513858372,1.7999999999999998,1.3410106039016632,0.0006919150148822274,0.03527017967229083,0.7742373814223753,0,1.0,0.2856150461945734
+150,36,0.528594026116408,1.7999999999999998,1.3400087799623837,0.0006949578822428623,0.036076888163945345,0.7740632849735192,0,1.0,0.29531342038802666
+150,37,0.5309005075869884,1.8499999999999999,1.3397285676095674,0.0006977583179237853,0.03604217419306832,0.7868638521648267,0,1.0,0.3030016919566277
+150,38,0.515101566055919,1.9,1.340234730820995,0.0007001526476802505,0.03614980158143667,0.7992534658464213,0,1.0,0.3170052201863965
+150,39,0.5310168812532515,1.95,1.3505158198963343,0.0006978975923628507,0.03626831308342128,0.8125875128210471,0,1.0,0.3033896041775048
+150,40,0.4948482383340092,2.0,1.3507093511229102,0.0006996413694645395,0.03615848499783435,0.8237710494828582,0,1.0,0.3161607944466973
+150,41,0.5322144697821304,1.95,1.3506494739520496,0.0006978459147112591,0.03578800681999169,0.8126078502808727,0,1.0,0.3073815659404344
+150,42,0.537762055759369,1.95,1.349189954212974,0.000699476265340392,0.03598939458307799,0.8123859955387317,0,1.0,0.2925401858645631
+150,43,0.5090753137159564,2.0,1.348727686962476,0.0007015780997509032,0.035813075144662254,0.823483745161111,0,1.0,0.2969177123865213
+150,44,0.4938839978235528,1.95,1.3573410233875922,0.0006995956788754005,0.03600059720319049,0.8136252147117895,0,1.0,0.3129466594118426
+150,45,0.4950753619652077,2.0,1.3559393509464097,0.0006980519452712847,0.03596818057209615,0.8245285554978627,0,1.0,0.3169178732173588
+150,46,0.4912260475934323,2.0,1.3557911719045626,0.0006964288929437903,0.03572753718686569,0.8245066460468053,0,0.9978697804667203,0.3069271180224806
+150,47,0.49596894508809275,2.0,1.3549264353367296,0.0006948678997720366,0.035887364213379694,0.8243810355070462,0,1.0,0.3198964836269758
+150,48,0.5001396994023652,2.0,1.353983055944115,0.0006932178971308085,0.03620074221670298,0.8242439360661358,0,1.0,0.3337989980078842
+150,49,0.5448527581971834,2.0,1.3529594440289143,0.0006915464457834033,0.03623742609304117,0.8240951158214063,0,1.0,0.3495091939906111
+151,0,0.06010712303598967,2.0,1.3724761325912174,0.0007029227672717441,0.03605194635248276,0.8269096860513617,0,0.15342646728790213,0.19578845373609605
+151,1,0.19673038208780652,1.95,1.3841902550835805,0.0006997299064251119,0.036662705548389365,0.8176624136068529,0,0.24308759638014327,0.16498447845249742
+151,2,0.21404710254903228,1.95,1.3625327408609218,0.0006837195753393276,0.03608795620165088,0.8144064019194343,0,0.3118914656238928,0.16430172099825044
+151,3,0.23564517059817594,2.0,1.3617217174097875,0.000683178343870389,0.03628970813988118,0.8253592982558494,0,0.3711805985574614,0.1572431039173046
+151,4,0.27680693588928884,2.0,1.3614254124822676,0.0006829653822665622,0.03611491789388207,0.8253165229478607,0,0.4657400443371764,0.13503639384806093
+151,5,0.2996662408863609,2.0,1.3376262165995791,0.0006724536892998578,0.03560853516111517,0.8218557274967753,0,0.5428403058278779,0.1417670618506992
+151,6,0.3253837781748092,2.0,1.3364958413830492,0.0006728255670465256,0.035710109355935576,0.8216902792718904,0,0.6128751972398782,0.13411233092952632
+151,7,0.37834195327673753,2.0,0.9476092602086151,0.0004991150439585485,0.02709361698867325,0.7574238808158813,0,0.7439269830186425,0.1025705335642684
+151,8,0.41643523204006017,2.0,0.942206696186016,0.00049340136940937,0.027013077448523846,0.7564277663915211,0,0.8585561688303861,0.07670921502635249
+151,9,0.4135867698872753,2.0,1.1180053006732413,0.0007677195631623423,0.03331956674210002,0.7874362948798745,0,0.9028326526021069,0.10817902948810834
+151,10,0.4614628529258692,2.0,1.1161100455432589,0.0007669171169499004,0.03324022270858422,0.7871186246284102,0,0.9843916415681586,0.09235398766201926
+151,11,0.45889279440960495,2.0,1.1167276609493026,0.0007592938277627694,0.03269914228586814,0.7872195418364534,0,1.0,0.1296426480320163
+151,12,0.46218678985109657,2.0,1.1146055162311435,0.0007585162819991904,0.03272589650075234,0.7868635946556832,1,1.0,0.1406226328369885
+151,13,0.46317620107182117,2.0,1.3749711295921858,0.0007131382039583687,0.03670901782755475,0.827269423378745,1,1.0,0.14392067023940375
+151,14,0.49264128919768185,2.0,1.3737757504255803,0.0007138645424145052,0.03669362074308804,0.8270987509143618,1,1.0,0.1754709639922728
+151,15,0.48181292030006,2.0,1.3750746783431256,0.0007109290525302285,0.03633338438975061,0.8272835881372657,1,1.0,0.20604306766686653
+151,16,0.4665253453259749,2.0,1.346358756386554,0.0006913884320385848,0.035934160106070305,0.8231361707380546,1,1.0,0.18841781775324945
+151,17,0.523627585572037,2.0,1.3548495325798577,0.0007135545763843291,0.036283171191194744,0.8243753124874127,1,1.0,0.24542528524012322
+151,18,0.5419464338956405,2.0,1.3375973790572568,0.0006930381623491856,0.03556963388623061,0.821857532916757,1,1.0,0.3064881129854681
+151,19,0.49138251394736043,2.0,1.3357814729348567,0.0006934602288656543,0.0353924688249799,0.8215916385536032,1,1.0,0.27127504649120127
+151,20,0.5036939256770883,1.95,1.3455808296799785,0.0006914772508806908,0.03561070941859411,0.811832846719756,1,1.0,0.278979752256961
+151,21,0.5078056141702085,2.0,1.3461928013573425,0.0006966032634200677,0.03603575090316887,0.8231135277483755,1,1.0,0.29268538056736165
+151,22,0.5368516099230335,2.0,1.3479419842174016,0.0007014523619592081,0.036137777161097374,0.8233694711704289,1,1.0,0.322838699743445
+151,23,0.5444293417931283,2.0,1.3467850737574718,0.000698327028209633,0.03584081959468975,0.8232002464744854,1,1.0,0.34809780597709417
+151,24,0.5055072856247786,2.0,1.345512127014644,0.0006954912951806833,0.03572439335876176,0.8230140774247628,1,1.0,0.3183576187492621
+151,25,0.5165731298439787,1.95,1.3539824084780132,0.0006939722537974832,0.035704222551163324,0.8131136713345967,1,1.0,0.3219104328132625
+151,26,0.49955526250177434,2.0,1.353920736677912,0.0006975435790666381,0.03623988105037185,0.8242361612834866,1,1.0,0.2985175416725811
+151,27,0.5610150760441366,2.0,1.3616547682756202,0.0006963612191036693,0.03630658486887681,0.8253534484358258,1,1.0,0.37005025348045517
+151,28,0.5622081162023982,2.0,1.3603876966148352,0.0006968041534878158,0.036242811456391674,0.8251708587208009,1,1.0,0.4073603873413272
+151,29,0.5732635385420438,2.0,1.3806600831581672,0.0006963264143289407,0.03656692364087284,0.8280760451405103,1,1.0,0.4442117951401459
+151,30,0.5550320780120265,2.0,1.38127253008535,0.0006966376161943889,0.03651356918993419,0.828163307881276,1,1.0,0.4501069267067549
+151,31,0.6038983459957248,2.0,1.3827186570146388,0.0006977985743145004,0.036500321577587716,0.8283693369937716,1,1.0,0.5129944866524155
+151,32,0.5777318395059458,2.0,1.3817543391089089,0.0006973216615097039,0.03664578994850984,0.8282320573552117,1,1.0,0.5257727983531525
+151,33,0.5572764135681774,1.95,1.3828349480971442,0.00069875051534762,0.036433988422190575,0.8174599707986862,1,1.0,0.490921378560591
+151,34,0.5508653638919663,1.9,1.3827347853193659,0.0006982048088592801,0.036619854126430484,0.8059852406093313,1,1.0,0.46955121297322094
+151,35,0.5645579826412848,1.95,1.3823896532119866,0.0006976778915479679,0.036678237186720385,0.817393194670764,1,0.998344973153538,0.48406664459956505
+151,36,0.5711773023840022,2.0,1.3832909505891886,0.0006987762790279196,0.03665843811142805,0.8284509646323658,1,1.0,0.5039243412800073
+151,37,0.5719385198485389,2.0,1.3837797566459096,0.0006998027580596057,0.03656020667931069,0.8285207142511422,1,1.0,0.5064617328284629
+151,38,0.5535928931637367,2.0,1.3839006916484364,0.0007006748244976606,0.03673935810870342,0.8285381430813885,1,1.0,0.47864297721245563
+151,39,0.6144377589324386,2.0,1.3837173334263102,0.0006999214746056769,0.036520543476682744,0.828511879078491,1,1.0,0.5481258631081282
+151,40,0.6184334464382023,2.0,1.3831131277735849,0.000700042908437633,0.03645203197324936,0.8284260510525842,1,1.0,0.5947781547940075
+151,41,0.6291032860331587,2.0,1.3843170077848395,0.0006998730633325056,0.036724666389743886,0.8285970502434344,1,1.0,0.6303442867771952
+151,42,0.6566319857478694,2.0,1.361345078518181,0.0006983689520766718,0.036018873319224355,0.8253093825921418,1,1.0,0.6887732858262311
+151,43,0.6536053530343242,2.0,1.361030700830526,0.0006953796351589843,0.036098041873935297,0.8252631907886454,1,1.0,0.7120178434477473
+151,44,0.6137837980519926,2.0,1.3625337463599145,0.0007008527158929481,0.03631776372981525,0.8254814067283075,1,1.0,0.6792793268399753
+151,45,0.6722032173182265,1.95,1.3603954344319016,0.0007007857746228187,0.03626143478398281,0.814088299850646,1,1.0,0.7406773910607548
+151,46,0.6294644505512992,1.95,1.3592417844425928,0.0006974554655377143,0.036042958894282315,0.8139126245309758,1,1.0,0.7315481685043304
+151,47,0.6808386192845104,1.9,1.3569651963214464,0.000697377907441959,0.03613197181518933,0.8019235087466067,1,1.0,0.7694620642817012
+151,48,0.6974256331615314,1.9,1.35534693348414,0.0006939744336668008,0.03602982606828605,0.8016652524393808,1,1.0,0.8247521105384377
+151,49,0.6697600392075199,1.95,1.3577431066295635,0.0007247787800038284,0.036471699639058996,0.8136938140593397,1,1.0,0.8325334640250663
+152,0,0.015333573180215734,1.9,1.3633689860450484,0.0007098778628903822,0.03607191006916262,0.8029426900586093,1,0.14593904319654485,0.15652651967199266
+152,1,0.030088886728593056,1.8499999999999999,1.3843642703974686,0.0007019639323689802,0.03671975771017098,0.794255190836535,1,0.14107495256922098,0.17886301900301557
+152,2,0.0449198843218174,1.9,1.3843915482628226,0.0007017325160562607,0.036693026893653266,0.8062452844821968,1,0.16986371817144783,0.18991465684412762
+152,3,0.162425833929667,1.95,1.3844868266888284,0.0007014154105827128,0.036464599407847575,0.8177071279676279,1,0.19993098178157273,0.20817813739012633
+152,4,0.16901130347671475,1.95,1.3628156802515732,0.0007100984139035847,0.036270407765226234,0.8144571367108026,1,0.20906983357015638,0.21794456682884067
+152,5,0.1625166243105724,2.0,1.3858320313506725,0.0006998448093831818,0.0366870870797298,0.8288121047941723,1,0.24001982216157444,0.1883623181531421
+152,6,0.18167443403618797,2.0,1.3814636936026734,0.0006969690926505319,0.03620841373092516,0.8281906047659473,1,0.27018780616147153,0.1786643719053312
+152,7,0.21901453548406483,2.0,1.3814031254989851,0.0006971357349427799,0.03656227756949625,0.8281820337282689,1,0.28866217397616023,0.2118322196453358
+152,8,0.23613289343209934,2.0,1.386054980145516,0.0007001367640635553,0.03674648128247012,0.8288438178643209,1,0.3045835987366432,0.24766484645814021
+152,9,0.28546112264392587,2.0,1.386147691367808,0.0007001237165860234,0.036394589585424006,0.8288569659373285,1,0.3590203962903763,0.30617654709258457
+152,10,0.30063265985145493,2.0,1.3861765049452948,0.0007002245380053363,0.036699758537023286,0.8288610817968881,1,0.4013513746238664,0.33364036667302793
+152,11,0.26622252533726753,2.0,1.3805629929514918,0.0006976431730884658,0.036597197586745775,0.8280625972925184,1,0.4178054481275849,0.29700115362077856
+152,12,0.34850957060202536,1.95,1.3812742664841147,0.0006974906658484509,0.03656607295005832,0.8172265954352471,1,0.47596224258329256,0.3604155785623611
+152,13,0.36431040956790783,1.95,1.3803841073911474,0.000697119054890778,0.036589913251103855,0.8170934861630988,1,0.5171762889759949,0.3914663132583663
+152,14,0.38727726764611087,2.0,1.3804616213956622,0.0006966528677943599,0.03638630385170522,0.8280478820359038,1,0.5502230244905689,0.42396019283294434
+152,15,0.37419925574848345,2.0,1.3805276420414827,0.0006996094847664964,0.03645619121142753,0.8280581240699786,1,0.5546307930896782,0.44115646170870704
+152,16,0.3623049346958046,2.0,1.3806273042869284,0.0007007067422508308,0.036510103555455434,0.8280726257337049,1,0.5756678611852141,0.4067926340723965
+152,17,0.4475191739804956,2.0,1.3803497182280935,0.0006997815772408318,0.036603041528546695,0.8280328391882767,1,0.6431376975504046,0.46754698320111265
+152,18,0.43630522035046404,2.0,1.36213416127811,0.0006834798669181423,0.03555916498477387,0.8254188273853367,1,0.67301972336073,0.49032443668724
+152,19,0.5019961703796433,2.0,1.362885842670892,0.0006835951321435326,0.03587488442110238,0.8255271533275303,1,0.7188089572678271,0.548241958241708
+152,20,0.5132678076053956,2.0,1.3642667614022284,0.000684225588259462,0.03604151667202842,0.8257261419620574,1,0.7539427210304984,0.5723023973106541
+152,21,0.5095930371026037,2.0,1.3621418999864632,0.0006826929237360145,0.03632510720991228,0.8254197157503502,1,0.7820909611581707,0.5891888421311182
+152,22,0.5794447714384858,2.0,1.3626290994679122,0.0006832002215121599,0.03623395947314563,0.8254900572026143,1,0.8247165826683893,0.6651937945704334
+152,23,0.6158669515870154,2.0,1.3574148250408171,0.0006963082848548122,0.0358602591357096,0.8247414226097548,1,0.8759309013051765,0.718315303549816
+152,24,0.5785955915658819,2.0,1.3564846176985859,0.0006933960688761549,0.03607656850422569,0.8246060846325446,1,0.911832206595488,0.6795423630922889
+152,25,0.575184610335261,1.95,1.3545019165087253,0.0006932940910186226,0.03604244956888901,0.8131923968048047,1,0.9264644586959281,0.6486627561896326
+152,26,0.6341520357740296,2.0,1.3515603219729773,0.0006928344155898656,0.03604732602643889,0.8238925775675744,1,0.9650162221214206,0.6938184897515376
+152,27,0.658159649732511,2.0,1.3542722095994961,0.0006992749493029549,0.036159803019922734,0.8242875752190407,1,1.0,0.7271988324417031
+152,28,0.6661715000357231,2.0,1.3553036086601058,0.0007051092260035738,0.03605202757943744,0.8244385994978571,1,1.0,0.753905000119077
+152,29,0.6949489104601376,2.0,1.355617381873973,0.0007104254021108642,0.03610091215465659,0.824485548886338,1,1.0,0.8164963682004586
+152,30,0.7139662899380397,2.0,1.3496281375746966,0.0007462439728756281,0.03628733674523283,0.8236275721470147,1,1.0,0.8798876331267989
+152,31,0.6637197822269942,2.0,1.3561045648377472,0.0007386598349621597,0.03644587457393483,0.8245642063911391,1,1.0,0.8457326074233138
+152,32,0.701275727336157,1.95,1.3543527266118942,0.0007426154251205913,0.036771904171636526,0.8131847180273276,1,1.0,0.8709190911205228
+152,33,0.6662622531652482,1.95,1.3510862658579037,0.0007456771815266171,0.03676299175104418,0.8126889169944199,1,1.0,0.8542075105508273
+152,34,0.7011843165918377,1.9,1.3491325666688583,0.0007498407112249592,0.03664527149307802,0.8006931587751552,1,1.0,0.8706143886394588
+152,35,0.7106928147102038,1.9,1.3455948191967815,0.0007532942036369155,0.03673592442764757,0.8001290961744754,1,1.0,0.9023093823673458
+152,36,0.6743771044659581,1.95,1.3426753237434814,0.000755350245670595,0.036691825375219714,0.8114081477446079,1,1.0,0.8812570148865271
+152,37,0.6688665365522231,1.9,1.3416272246108976,0.0007590777813000042,0.0367876889461491,0.7994956870437439,1,1.0,0.8628884551740768
+152,38,0.7086347725254158,1.95,1.3382267600057434,0.0007648229639057287,0.036730389746149665,0.8107293703480899,1,1.0,0.895449241751386
+152,39,0.671975826236363,1.95,1.3366687822355556,0.0007659064968617375,0.03679650282514403,0.8104905200402469,1,1.0,0.8732527541212098
+152,40,0.6651505193710405,1.9,1.3342908099989514,0.0007701942143358927,0.0365636672906026,0.7983206378584864,1,1.0,0.8505017312368016
+152,41,0.6551145030975016,1.95,1.330554896790166,0.0007755280812361137,0.03682242423743469,0.809552637699176,1,1.0,0.8170483436583389
+152,42,0.646742601915242,2.0,1.329510663384807,0.0007767157342853434,0.036689496661278256,0.8206951205259988,1,1.0,0.7891420063841401
+152,43,0.6637698599849938,2.0,1.355739651530243,0.0007132244850683945,0.0362927937871909,0.824504051759725,1,0.9997172481111656,0.8129432024684253
+152,44,0.7131226476882484,2.0,1.3216371228275468,0.0007828504914310546,0.03668870602031128,0.8195353802029294,1,1.0,0.8770754922941612
+152,45,0.6697424185263552,2.0,1.3304481316033927,0.0007711958121042662,0.036723983887582724,0.8208314082586111,1,1.0,0.8658080617545173
+152,46,0.7143379848344258,1.95,1.327308019264406,0.0007729762112626083,0.03668278484975894,0.8090507516626607,1,1.0,0.9144599494480861
+152,47,0.7395502997601546,1.95,1.3233723221445532,0.0007814903536967639,0.03621425442109095,0.8084446325146353,1,1.0,0.9651676658671821
+152,48,0.7343793863727335,1.95,1.331087415465427,0.0007700600852886424,0.03666855491577174,0.8096330408548474,1,1.0,0.9812646212424446
+152,49,0.74,2.0,1.328501986940458,0.000775602811513428,0.03675748612274361,0.8205463133344432,1,1.0,1.0
+153,0,0.02273626849433734,2.0,1.3629317570069213,0.0007105198992902084,0.0360920677195166,0.8255415220578797,2,0.15642674501476153,0.1672185682947758
+153,1,0.22784276867926728,1.95,1.3862817078073946,0.0007001660900320026,0.03673459397384101,0.8179741522794155,2,0.22519550555906231,0.19254855485214106
+153,2,0.2551566735203362,1.95,1.3862943611198846,0.0007001722195526527,0.03672553263852695,0.8179760380796509,2,0.27965375607385035,0.21098390363598696
+153,3,0.17165008086932748,1.95,1.3859790029849353,0.0007000437840063813,0.0364144579824078,0.8179290410541511,2,0.3069229969781211,0.16293627359359678
+153,4,0.22294372335375381,1.9,1.3862466180232729,0.0007001727668874605,0.03675615626243425,0.8065344206511921,2,0.3405069821708131,0.18913643495142865
+153,5,0.3107617355767552,1.9,1.386247765723371,0.0007001452473716599,0.03664119385585325,0.8065345911463063,2,0.41088509605656753,0.22135899051376046
+153,6,0.2783416857374382,1.9,1.3857137022847459,0.0007004109390233985,0.03655837377812239,0.8064513270325108,2,0.4292960610698096,0.2554108710317147
+153,7,0.2930239927847206,1.8499999999999999,1.3859492635272985,0.0007003019085051787,0.03678179505777425,0.7945135372303596,2,0.45527426080810096,0.2697142948716006
+153,8,0.3413870936633976,1.9,1.38607254175431,0.0007002030710182147,0.03637795016259922,0.8065072663822416,2,0.49802019151070975,0.30726339019704557
+153,9,0.41068341058550634,1.9,1.3860829388649658,0.0007003941103205907,0.03662564869149694,0.8065089485046927,2,0.5668003199503506,0.34654427535122023
+153,10,0.4415377098012658,1.9,1.3858809555109404,0.0007004784929837454,0.036776881287377924,0.8064774529329743,2,0.6264976847512064,0.3697954530026105
+153,11,0.4765321850928617,1.9,1.3856121165102246,0.000700500569013204,0.03647546796602528,0.8064354982427534,2,0.6868342414116049,0.4059949617607325
+153,12,0.3881344615071176,1.9,1.3808545510030013,0.0007011595124758771,0.0365535781325181,0.8056919786348362,2,0.6946739282266639,0.36754963405484026
+153,13,0.3949402110587403,1.8499999999999999,1.3847527252471048,0.0007009518726128019,0.03671518880807624,0.7943183318020284,2,0.7395803184429929,0.330360278938477
+153,14,0.463792896817168,1.9,1.3847131054910915,0.000700404589482301,0.03656819125158589,0.8062950964208779,2,0.7453797147125422,0.38547003644050376
+153,15,0.4203812008887461,1.9,1.3846963136589854,0.0007009898894051484,0.03670979828499009,0.8062926566333827,2,0.7832272182000406,0.3569677120290995
+153,16,0.46378792483293274,1.8499999999999999,1.3846084778632743,0.0007003969963498116,0.03669426336849797,0.794294582813955,2,0.798972730678138,0.3806627752055917
+153,17,0.4322372160412786,1.8499999999999999,1.385363052756553,0.0007002718864756686,0.03670052767375531,0.7944178050888715,2,0.8220153482006345,0.3447702558700828
+153,18,0.4782266427627391,1.7999999999999998,1.3685492904794685,0.0007168272303298181,0.03652783621068862,0.7790231718322602,2,0.8501208242354722,0.3605943768951671
+153,19,0.5273287351296955,1.7999999999999998,1.3693722641819026,0.0007135908717558659,0.03650489864875047,0.7791636972450007,2,0.8884748428002576,0.4064626600319746
+153,20,0.48466736843720487,1.7999999999999998,1.3479741000664274,0.0006734025169220161,0.03588719777935106,0.7754457858525022,2,0.9327891603345231,0.37183901434465205
+153,21,0.56676902870402,1.7499999999999998,1.3580190461993118,0.0007158216080225601,0.03652158014119143,0.7639485563455294,2,0.9879071400434812,0.4053539089554247
+153,22,0.5577817070603269,1.7499999999999998,1.345859869007483,0.0006715605433048247,0.03506763579506841,0.7617327791411597,2,1.0,0.425939023534423
+153,23,0.5621774132347782,1.7999999999999998,1.3453998310317605,0.0006725967542762883,0.03526836600017198,0.7749969305302645,2,1.0,0.4405913774492606
+153,24,0.5638677816346045,1.8499999999999999,1.3454377607823595,0.0006739396869120956,0.03531829612172804,0.7878118046851625,2,1.0,0.4462259387820148
+153,25,0.5287567456890134,1.9,1.3450859962460266,0.0006751427032291467,0.035433681822493734,0.8000227063184291,2,1.0,0.4291891522967115
+153,26,0.5674980786672962,1.8499999999999999,1.348779180398562,0.0006792682991818169,0.03550766860938171,0.7883716118741101,2,1.0,0.45832692889098725
+153,27,0.5286210394610371,1.8499999999999999,1.3464211322955983,0.0006795612349892343,0.035986979877865075,0.7879780212096965,2,1.0,0.42873679820345695
+153,28,0.6194767881091086,1.7999999999999998,1.348409789127701,0.000683463287173776,0.0357865032409378,0.775525146013821,2,1.0,0.46492262703036186
+153,29,0.6281792655679379,1.7999999999999998,1.3560788518066735,0.000684122899246551,0.035663911635292075,0.7768576287246354,2,1.0,0.4939308852264597
+153,30,0.5325001149321522,1.8499999999999999,1.3629659987414495,0.0006859326556098424,0.03606585050262742,0.7907310886456406,2,1.0,0.44166704977384075
+153,31,0.6227667280276321,1.7999999999999998,1.3649523592780868,0.0006885397421041195,0.03609329607806381,0.7783935940041152,2,1.0,0.47588909342544045
+153,32,0.5294310983700984,1.7999999999999998,1.369874409558218,0.0006898718821172297,0.036222508201779746,0.7792419277374621,2,1.0,0.4314369945669945
+153,33,0.5862437404600892,1.7499999999999998,1.3707891510527082,0.0006915681722787905,0.036162645315396674,0.7662349486694936,2,1.0,0.4541458015336305
+153,34,0.5245791640567015,1.7499999999999998,1.3687790954726031,0.0006895922389964873,0.03618355524261837,0.7658740083522168,2,1.0,0.4152638801890049
+153,35,0.5609696906303334,1.6999999999999997,1.369324851124807,0.000691214620183725,0.036457036045265186,0.7522609468473257,2,1.0,0.43656563543444465
+153,36,0.5671078629585267,1.6999999999999997,1.3681929275921993,0.0006917959571551073,0.03596852533940007,0.7520501531559732,2,1.0,0.45702620986175546
+153,37,0.5768501986412358,1.7499999999999998,1.3672539941735775,0.0006924114105487909,0.03612825557639669,0.7656014418518471,2,1.0,0.48950066213745236
+153,38,0.5342252886524963,1.7999999999999998,1.3666306037087086,0.0006931526016551713,0.036068199604579354,0.7786845408037524,2,1.0,0.44741762884165426
+153,39,0.5951793919432115,1.7499999999999998,1.3675474127742073,0.0006955377292484076,0.036030590756923886,0.7656552153354046,2,1.0,0.48393130647737137
+153,40,0.5796761915852535,1.7499999999999998,1.3658275007791452,0.0006934351737037962,0.036411741913305914,0.7653457199682268,2,1.0,0.4989206386175116
+153,41,0.6149119825127608,1.7999999999999998,1.36471716985751,0.000694127106933713,0.0361572330114762,0.778354949730589,2,1.0,0.5497066083758693
+153,42,0.5546011323975792,1.7999999999999998,1.3638807662395014,0.0006921335280467615,0.03631316591730778,0.7782099328412607,2,1.0,0.5153371079919308
+153,43,0.6136919827725265,1.7499999999999998,1.3642760016492401,0.0006946170678395362,0.036088215447069485,0.7650673938457799,2,1.0,0.545639942575088
+153,44,0.59965422264992,1.7499999999999998,1.362266198213336,0.0006921574035762812,0.03605275845587919,0.7647050756644398,2,1.0,0.5655140754997329
+153,45,0.6586130739892571,1.7999999999999998,1.3611286874273871,0.000693174406790343,0.0363507592950737,0.7777349223381252,2,1.0,0.5953769132975235
+153,46,0.5657080508722726,1.7999999999999998,1.3681088301587043,0.0006933094786663113,0.036255311148180196,0.7789392399272296,2,1.0,0.5523601695742419
+153,47,0.6552209640195208,1.7499999999999998,1.3684384636240357,0.0006954806142172775,0.036438544208851245,0.7658150358562038,2,1.0,0.5840698800650693
+153,48,0.5630389207690821,1.7499999999999998,1.3731970887556537,0.0006954774385926407,0.03621324787510967,0.7666673780639115,2,1.0,0.5434630692302737
+153,49,0.598030068119592,1.6999999999999997,1.373256076153558,0.0006970314533733507,0.036400665365315214,0.7529950243143325,2,1.0,0.5601002270653065
+154,0,0.1707836103555945,1.6999999999999997,1.3571866886678017,0.0007135089641202262,0.03601282816096996,0.750000265861393,1,0.14957081085336366,0.2365176200474967
+154,1,0.22307946486876257,1.6499999999999997,1.3569521244291818,0.0007120505493277098,0.0362341878584534,0.7356297253354227,1,0.2000446144079624,0.31020539701859196
+154,2,0.2310741773293071,1.6499999999999997,1.3862047287899975,0.0007001118064040726,0.03656069702324507,0.7412748077151314,1,0.21645161109172145,0.34831177630872834
+154,3,0.27897887065005456,1.6999999999999997,1.3861527666889162,0.0007000775698867319,0.0366948472901342,0.7553870168076148,1,0.26650134085477284,0.4079277810271515
+154,4,0.25765754665433704,1.6999999999999997,1.3809096486599437,0.0007006538582801072,0.03664383190223538,0.7544171234805979,1,0.2779412817617222,0.4216034464988271
+154,5,0.26234406819631734,1.6499999999999997,1.3807034123995066,0.0007009397474197563,0.03635454418808734,0.7402186484688008,1,0.3315241210634802,0.3991147325697507
+154,6,0.3384139130389221,1.6999999999999997,1.3860193930214635,0.0007000424938231794,0.03677255242264412,0.7553623585557138,1,0.3803519210023324,0.45424381545996384
+154,7,0.30616317275363414,1.6999999999999997,1.379714930556752,0.0006986690902447612,0.036506221683604,0.7541949725894495,1,0.41383539562567967,0.4354300483445409
+154,8,0.3818402290980439,1.6499999999999997,1.374222296845341,0.0007005851688285363,0.03634948740273403,0.7389702865823119,1,0.46030810807015493,0.49238995289993986
+154,9,0.36193998904259406,1.6499999999999997,1.3727278154742675,0.0007006011184575682,0.036406901681445746,0.7386819145059045,1,0.4652242375150029,0.5195009801219762
+154,10,0.3725138960676809,1.6999999999999997,1.3731514014724047,0.0007034209160802811,0.036497134565415985,0.7529779319020912,1,0.48858875065806323,0.5235946526815187
+154,11,0.36626579628296974,1.7499999999999998,1.373566263415789,0.0007058909784313363,0.036609429881697776,0.7667371376379082,1,0.5273765555085703,0.48438391359847194
+154,12,0.3721636454776061,1.7999999999999998,1.3738662793927383,0.0007037256725759848,0.03636539684121885,0.7799326151235524,1,0.5664287369661235,0.45197383563718896
+154,13,0.4567959939797674,1.8499999999999999,1.3739328779213504,0.0007018848006553103,0.036443506244416383,0.792545297551087,1,0.627309732858789,0.5195736694541727
+154,14,0.49850237861322294,1.8499999999999999,1.3606790442320253,0.0006870207750889806,0.03623749256010926,0.7903527628288813,1,0.6802746887629544,0.5879750103601373
+154,15,0.47583565375831127,1.8499999999999999,1.3596428416166455,0.0006876528636187554,0.03600415357194158,0.79018122689092,1,0.7437209625464967,0.5611575624657086
+154,16,0.5560788438449722,1.7999999999999998,1.3655309600052958,0.0006886391157515563,0.035945270758692825,0.7784934190930053,1,0.7860081688766358,0.6389185876477261
+154,17,0.5120037117608373,1.7999999999999998,1.298114101221719,0.0007246517974119387,0.03542473583607307,0.7666629704338295,1,0.8147092907286377,0.5870666515646071
+154,18,0.5282637624631803,1.7499999999999998,1.3849010333770675,0.0006997319032625848,0.03641668125804473,0.7687560539221916,1,0.8274926754517047,0.5908889742749946
+154,19,0.5985453264101103,1.7999999999999998,1.3850680778317186,0.0007003771699668253,0.036752215727476875,0.7818480940565945,1,0.8846524140935289,0.6489478692423287
+154,20,0.6106291590132604,1.7999999999999998,1.3562586984723444,0.0007128050003048232,0.036111517710368475,0.776898746493249,1,0.913174228271825,0.6845315590151011
+154,21,0.5886515548952737,1.8499999999999999,1.355968564818462,0.000717780063928632,0.03637740685103861,0.7895814121838296,1,0.9604133224029159,0.6482874197803576
+154,22,0.6385742023478462,1.7999999999999998,1.3547303173657856,0.0007181416946325365,0.036300288428619536,0.7766355760926478,1,0.9785769274300818,0.6904781045860447
+154,23,0.6094952868972849,1.7999999999999998,1.3533127707622823,0.0007236817169256601,0.03635440967267989,0.7763914975340518,1,1.0,0.6649842896576165
+154,24,0.6698683061422639,1.7499999999999998,1.3511975462111931,0.0007247822903271564,0.036248666193284595,0.7627194566532328,1,1.0,0.732894353807546
+154,25,0.6886863980264375,1.7499999999999998,1.350852110553368,0.0007198060887163584,0.03633884234588665,0.7626551330545651,1,1.0,0.7956213267547914
+154,26,0.6588085389198273,1.7999999999999998,1.3507015683824322,0.0007146693658826198,0.03615786084767436,0.7759347116808543,1,1.0,0.7960284630660907
+154,27,0.6658427111620662,1.7499999999999998,1.3600487096181761,0.0007102466204022592,0.036285962304895544,0.7643123632615698,1,1.0,0.819475703873554
+154,28,0.7163838595741492,1.7999999999999998,1.33207982912255,0.000733410617392743,0.036416774377796876,0.7726870916924511,1,1.0,0.8879461985804971
+154,29,0.7126980680216091,1.7999999999999998,1.3385362623380634,0.0007251176995196485,0.036371826790587494,0.7738162110489134,1,1.0,0.9089935600720299
+154,30,0.6793673269923315,1.8499999999999999,1.3386586204962696,0.0007359444930248326,0.036228104097508915,0.7866971731121332,1,1.0,0.8978910899744382
+154,31,0.6959618295235819,1.7999999999999998,1.3359180855869592,0.000735318980380555,0.03619413705312337,0.773361213056069,1,1.0,0.9198727650786063
+154,32,0.6774328624271164,1.8499999999999999,1.3439489685382031,0.000727926044370595,0.036187800341171,0.7875808891323793,1,1.0,0.8914428747570546
+154,33,0.7307387215870731,1.9,1.3410616261816144,0.0007271946915945175,0.03605906420781866,0.7993947794114351,1,1.0,0.9357957386235766
+154,34,0.7307145679402421,1.9,1.3465070737385196,0.0007198599271831396,0.035907762827952966,0.8002642581349317,1,1.0,0.969048559800807
+154,35,0.6896798911324862,1.95,1.346653729487558,0.0007294492991832127,0.03644192929642463,0.8120082815629548,1,1.0,0.932266303774954
+154,36,0.6831316862200013,1.9,1.3440438397123176,0.000728975463711788,0.03624403354807571,0.7998731585705842,1,1.0,0.910438954066671
+154,37,0.6768753637810074,1.95,1.339065322767615,0.0007294926995048929,0.03639432710591972,0.8108471747254109,1,1.0,0.8895845459366913
+154,38,0.7336503035257561,2.0,1.3362387117560426,0.0007286477021461967,0.03644760472864564,0.8216689624342324,1,1.0,0.9455010117525201
+154,39,0.7062576682362396,2.0,1.3413425995186312,0.0007211300154614743,0.03638379372762565,0.8224134070787564,1,1.0,0.954192227454132
+154,40,0.7350247994293441,1.95,1.349981817401788,0.0007149784433468906,0.03642318113308139,0.8125113806495703,1,1.0,0.9834159980978134
+154,41,0.75,1.95,1.3495097405636205,0.0007246029105441002,0.03602131025784869,0.8124423886074337,1,1.0,1.0
+154,42,0.7003986604386413,2.0,1.3524073399887475,0.0007184455649814841,0.03634216966476207,0.8240228685720968,1,1.0,0.967995534795471
+154,43,0.74,1.95,1.3498857319811055,0.0007180666383211913,0.036015979760034685,0.812497683825357,1,1.0,1.0
+154,44,0.6965613119173721,1.95,1.349030900169013,0.0007271106062150016,0.03649610026838821,0.812370176580956,1,1.0,0.9552043730579073
+154,45,0.75,1.9,1.3456138537796438,0.0007274782693523876,0.03627293965933855,0.8001238830832151,0,1.0,1.0
+154,46,0.74,1.9,1.3818510576757317,0.0006971536046010956,0.03659341184105855,0.8058466831306991,0,1.0,1.0
+154,47,0.72,1.95,1.381339627114939,0.0006967327289872059,0.03645688113783182,0.8172361315602732,0,1.0,1.0
+154,48,0.7442174876573755,1.9,1.3802100519847764,0.0006959676032948269,0.03653084682798716,0.8055894346208811,0,1.0,0.9807249588579181
+154,49,0.7197629027530168,1.9,1.380996866197305,0.0006965413894082287,0.03661956235215677,0.8057128116179103,0,1.0,0.9992096758433893
+155,0,0.01565110172007543,1.8499999999999999,1.3591025418799039,0.0007116543088948276,0.03600008159951198,0.7900995949465057,1,0.13457476719568823,0.1727373161393338
+155,1,0.06822979151423125,1.7999999999999998,1.384041428449592,0.0006995200699740209,0.03668362706553644,0.7816726438278612,1,0.173004143038367,0.1967604476629482
+155,2,0.05436121395594917,1.7999999999999998,1.38393410835545,0.000699540604918826,0.036615732860779106,0.7816543349803815,1,0.1892047080625071,0.19559776910315443
+155,3,0.1947698608671035,1.8499999999999999,1.3838903615580593,0.0006994416799546702,0.036505470878532495,0.7941769121802698,1,0.231714666487699,0.20694664757341288
+155,4,0.17212846588003128,1.8499999999999999,1.3859502812346094,0.0007000465345928443,0.03677617035110312,0.7945136199974536,1,0.26299130183101305,0.18977315049208687
+155,5,0.21806094678554835,1.7999999999999998,1.3786809045732276,0.0006948534726029594,0.03628821863229028,0.780754835200045,1,0.27587448665549713,0.22570384041116492
+155,6,0.2618463792618535,1.7999999999999998,1.3857734112052351,0.0006998080660761813,0.03669990404386983,0.7819681789083747,1,0.3154768734191345,0.285518766313999
+155,7,0.27414490885538306,1.7999999999999998,1.3858927061269606,0.0006999017077334445,0.036710750995981235,0.7819885492146951,1,0.3539099992012875,0.30860303058289357
+155,8,0.28911682351498913,1.8499999999999999,1.3857645029447894,0.0006997996611340913,0.036443006796964786,0.7944832072345798,1,0.36504511134992496,0.34366259658339715
+155,9,0.3352464620283384,1.9,1.3856083160051622,0.0006997076061675929,0.03671128047514384,0.8064346574341469,1,0.4206917042307178,0.38989926778683764
+155,10,0.3767581119219984,1.9,1.3800888829793485,0.0006960604267485719,0.03659716151541049,0.8055704860998697,1,0.47917488636750655,0.4502938579166525
+155,11,0.4158004330430795,1.9,1.3686991225995393,0.0007027669081383669,0.03642261246739946,0.8037824501736063,1,0.5287223774708021,0.5143716068491955
+155,12,0.42736389546708703,1.9,1.3672853802559863,0.000702802634994272,0.036383966564819695,0.8035593955870532,1,0.5569876034383571,0.5485628469724806
+155,13,0.470612964328763,1.95,1.3715029821777331,0.0007011413852105003,0.03645599864160069,0.8157636561240382,1,0.5935897832708902,0.6105901700680231
+155,14,0.47769390169491627,1.95,1.383675325631966,0.0007000179806984363,0.0365332841979788,0.8175857158389132,1,0.6216213713273363,0.6301511772132724
+155,15,0.4738814072917851,2.0,1.2480551085296756,0.000694124495512927,0.03477146660308851,0.8083684373615203,1,0.6570537882604388,0.6368663066253651
+155,16,0.48608201464771306,2.0,1.260549029955088,0.0006900312068193638,0.0348348141697946,0.8102951456430226,1,0.6827226096242481,0.643309902660046
+155,17,0.483356689773783,2.0,1.2673197258477311,0.0006855292969840314,0.03437049856839891,0.8113323520045427,1,0.713660705692307,0.6263080249895338
+155,18,0.5032802529343359,2.0,1.2622993494376067,0.0006825976596741358,0.034043672684677326,0.8105617703984404,1,0.7367596563179423,0.6285879680238633
+155,19,0.4994970376046024,2.0,1.2674403097606437,0.0006789220701577482,0.03411482634765257,0.8113487867309088,1,0.7858611115802723,0.5838419765749782
+155,20,0.5837410943162981,2.0,1.3675307569833455,0.0006892964451060839,0.036031846255062186,0.8261967960801498,1,0.8504743808183876,0.6451711399631432
+155,21,0.5668566029748148,2.0,1.3646181982766972,0.0007082438806784978,0.036305063585429384,0.8257836197040148,1,0.8781325357912189,0.6520119621944238
+155,22,0.5795519756619334,2.0,1.3701280683184198,0.000705875308517788,0.03637791845819639,0.8265741959497042,1,0.9131754877682647,0.6476059351820914
+155,23,0.6200459142955813,2.0,1.3744511022177321,0.0007040537048760742,0.036507250957322816,0.8271925044100588,1,0.9421803108198137,0.6772459665588527
+155,24,0.6192795838358904,2.0,1.3743115191572224,0.0007067045613449457,0.03640089536450798,0.8271733087107435,1,0.9750259383772721,0.6975640282832719
+155,25,0.6620990653358918,2.0,1.377788286807873,0.0007049625000995646,0.03650067140046701,0.8276692769786768,1,1.0,0.740330217786306
+155,26,0.6432965723977478,2.0,1.3774177534955219,0.0007071233547632236,0.03670052318382892,0.8276170369078623,1,1.0,0.7443219079924926
+155,27,0.6274850832878012,2.0,1.380133288195028,0.0007054365519413039,0.03654956499612006,0.8280036292601433,1,1.0,0.7249502776260038
+155,28,0.6864678734246329,2.0,1.3790395385147054,0.0007059797357843341,0.03660165569414179,0.8278479633484412,1,1.0,0.788226244748776
+155,29,0.637200576839761,2.0,1.3794210784124479,0.0007038684211222048,0.036660212214657914,0.8279017303361907,1,1.0,0.7573352561325364
+155,30,0.6508164160511998,1.95,1.3782492539272249,0.0007043094889813118,0.03634724475845069,0.816776364774456,1,1.0,0.7693880535039993
+155,31,0.6564836909935253,2.0,1.38053076013217,0.000703014986729918,0.03669372985299586,0.8280595377486885,1,1.0,0.7882789699784176
+155,32,0.7055501615981393,2.0,1.3823330470118076,0.0007018822330972387,0.036738103292567756,0.8283156679653857,1,1.0,0.8518338719937976
+155,33,0.7017073879778719,2.0,1.3364018077487374,0.0007434940167828511,0.03657827117791033,0.8216972098215509,1,1.0,0.8723579599262395
+155,34,0.7120690370236439,2.0,1.3353374954326191,0.0007530113341353054,0.03659796333599412,0.8215440137420574,1,1.0,0.9068967900788129
+155,35,0.6722220607089386,2.0,1.33366242648802,0.0007613500616451295,0.036608697064122266,0.8213007482179059,1,1.0,0.8740735356964622
+155,36,0.6567074084834829,1.95,1.3302552813067483,0.0007624609351698329,0.03615091809958143,0.8095024094580412,1,1.0,0.8223580282782762
+155,37,0.6714575849208353,2.0,1.3252536371544579,0.0007647236093703831,0.03658650911639501,0.8200642848610452,1,1.0,0.8381919497361174
+155,38,0.7009841900268473,2.0,1.3354876266173408,0.0007530928096782629,0.03653189883394736,0.8215660472173945,1,1.0,0.8699473000894908
+155,39,0.664020676941292,2.0,1.3338348800593116,0.0007614175451323515,0.03666064606897579,0.8213260769132233,1,1.0,0.8467355898043067
+155,40,0.6587772732878879,1.95,1.3304550700790594,0.0007625161776310315,0.03666470797892043,0.8095332336672076,1,1.0,0.8292575776262929
+155,41,0.6481519157107638,2.0,1.325421904088761,0.0007646930302629726,0.03588871040620527,0.8200891037763003,1,1.0,0.7938397190358794
+155,42,0.6559750371245754,2.0,1.3823642592510688,0.0007018035287380995,0.03650429723984215,0.8283200841912326,2,1.0,0.786583457081918
+155,43,0.6954757566013859,2.0,1.3759995484051646,0.0006964896877805599,0.03630946807936855,0.8274115747248761,2,1.0,0.8182525220046197
+155,44,0.6835374111208327,2.0,1.3847081916360604,0.0006998861080925742,0.03674956781706567,0.8286526042934694,2,1.0,0.8451247037361087
+155,45,0.7436713444328952,2.0,1.384901712789736,0.0006994936709435362,0.03656348354777583,0.8286799686958891,2,1.0,0.8789044814429843
+155,46,0.7274345916642477,2.0,1.3852785943292523,0.0007003747427705837,0.036502294270696796,0.8287337178521403,2,1.0,0.9247819722141589
+155,47,0.7689686198133358,2.0,1.38452788193162,0.000700396770008011,0.03674183446610185,0.8286271460906582,2,1.0,0.9632287327111192
+155,48,0.7297524633361889,2.0,1.3846023217514476,0.0007015812792220265,0.03665465655633639,0.8286380529928878,2,1.0,0.9991748777872961
+155,49,0.75,1.95,1.384791907980858,0.0007006827209025283,0.0365133675529072,0.8177523812521856,2,1.0,1.0
+156,0,0.18458535016805666,1.95,1.3593934895883701,0.0007114648777710012,0.03600333621225797,0.8139398437836525,1,0.14900912377758677,0.2499390021900732
+156,1,0.2280218101815611,1.9,1.3591094547427818,0.0007120052941631509,0.036272490874132035,0.8022685278037208,1,0.20476212341566774,0.3203898693843133
+156,2,0.26347038343801166,1.9,1.385700153641292,0.0006998202243074629,0.03668333290135854,0.806449027840641,1,0.24278360614942554,0.3878564699274716
+156,3,0.3005207410288699,1.9,1.3856344158578282,0.0006998515091822155,0.03643562731956527,0.8064387764563283,1,0.2869958069620787,0.4524080608134613
+156,4,0.268052635730438,1.9,1.3772614864444008,0.0006947820838428466,0.03647026916405946,0.8051268565953146,1,0.32107524698040696,0.43207512312758395
+156,5,0.2740862190280201,1.8499999999999999,1.3766811347429286,0.0006941556131902776,0.036301647786755806,0.7929942575451709,1,0.3590757898697279,0.4015196769337631
+156,6,0.3042232279579078,1.9,1.3757864941263822,0.0006934121544409145,0.03628763433214628,0.8048948994149807,1,0.3922765598930714,0.4243753466689307
+156,7,0.3067488537769718,1.9,1.3759058318057003,0.0006939097455112276,0.0363939263844063,0.8049137956859763,1,0.4387985119665164,0.4040981633012174
+156,8,0.3182129078482285,1.95,1.377696643710027,0.0007008790908030041,0.03640001834643834,0.8166926235682463,1,0.438391889752082,0.4095205064913189
+156,9,0.388437693194798,2.0,1.3780038763600582,0.0007023529794771579,0.036416207984145334,0.8276992806548177,1,0.49682596684828195,0.4656910215182841
+156,10,0.4309461610653687,2.0,1.377439270214568,0.0007025435416913662,0.0364668923575386,0.8276187998510512,1,0.5523681776052195,0.5333296334109364
+156,11,0.47338241365449923,2.0,1.3764991076900297,0.0007027617074527382,0.036558412718505115,0.8274846916690313,1,0.610877585961766,0.5967712642326428
+156,12,0.4818963773250347,2.0,1.355700939290693,0.0006890065340464556,0.036074319976883595,0.8244914413179745,1,0.6249177952354484,0.6397641974361846
+156,13,0.47163521662127617,2.0,1.2566993802817579,0.0006725792908002581,0.03394091534910551,0.809697304171255,1,0.6384344834510516,0.6542047441361849
+156,14,0.47141239716324657,2.0,1.2607398319161185,0.0006700003450702255,0.033995365743204956,0.8103183158846387,1,0.6896724904487378,0.6184780032791716
+156,15,0.5190629354762942,2.0,1.2560288242475925,0.0006672400619289154,0.0342476138278505,0.809592312250362,1,0.7147083358048585,0.6439320038478361
+156,16,0.532157802059915,2.0,1.2641337740497365,0.0006901129009782425,0.03473080623163428,0.8108455936925004,1,0.7287008943303986,0.6689248144258519
+156,17,0.5168001227460646,2.0,1.2700797457369384,0.0007120338300157039,0.0346665143433117,0.8117625713772231,1,0.7875268017958873,0.6392980067590323
+156,18,0.5756810929056817,2.0,1.26527829475457,0.0007097576400511315,0.03462478235025966,0.8110270937893025,1,0.8350229176370038,0.672239752836267
+156,19,0.5909613099220392,2.0,1.3785477522435325,0.0007040068183666718,0.036517829012983685,0.8277773022512012,1,0.8545117600752318,0.6971886863064883
+156,20,0.5810140788310775,2.0,1.3783282002321096,0.0007060368832635046,0.03672057908365519,0.827746579118966,1,0.8706613449563221,0.7091651361618285
+156,21,0.5876903825689188,2.0,1.3806726342882896,0.0007045561815975864,0.036497979734725274,0.8280801752366366,1,0.8868008173661431,0.7099001854082052
+156,22,0.6292558034161044,2.0,1.3823334309338717,0.0007033476720036136,0.03665135577420815,0.8283161393586589,0,0.9170262346792041,0.7414843651480757
+156,23,0.5929301524974315,2.0,1.354455457683386,0.0006803856894777448,0.035886451665123276,0.8243086436831042,0,0.9343056476412783,0.7306929781364007
+156,24,0.6596216610996095,1.95,1.3519506178110658,0.0006778860144412384,0.03610358447412277,0.8127998291375834,0,1.0,0.6987388703320314
+156,25,0.633858392837079,1.95,1.3505495898765871,0.0006787793421483114,0.035455350759250034,0.8125868326179971,0,1.0,0.71286130945693
+156,26,0.6173348884154249,1.9,1.3584860605412672,0.0006816528415083798,0.03557169550092829,0.8021599841652616,0,1.0,0.7244496280514163
+156,27,0.6226603950858666,1.95,1.355171502882264,0.0006788228374147876,0.03593821520868244,0.8132896978230589,0,1.0,0.7422013169528884
+156,28,0.6233429127512994,2.0,1.3531400029015126,0.0006770143847493997,0.035890377274324384,0.8241170757791021,0,1.0,0.7444763758376646
+156,29,0.662586673932843,2.0,1.3510091980677545,0.0006750935765651356,0.03571337230469877,0.8238074486809667,0,1.0,0.7419555797761432
+156,30,0.6225864317063905,2.0,1.3532028750097853,0.0006774690147880381,0.03612843452643167,0.8241263205774938,0,0.9948027363134332,0.7488844572700574
+156,31,0.6649575227315697,1.95,1.3502648720050807,0.0006748596842779482,0.03600867533006971,0.8125422751639598,0,1.0,0.7165250757718988
+156,32,0.6118384461227447,1.95,1.3492972201060707,0.0006756120826392574,0.03521818741372375,0.8123950697816358,0,1.0,0.7061281537424825
+156,33,0.6090970078026701,1.9,1.3463429482693596,0.0006729758622644106,0.0353890005047572,0.8002230328752902,0,0.9967776642306322,0.7012864737013905
+156,34,0.6463068186148542,1.95,1.3421212906537008,0.0006693808185600234,0.03584419898586681,0.811297030797184,0,1.0,0.6876893953828469
+156,35,0.6436322548500961,1.95,1.3453756641288894,0.0006731150979687356,0.035985895083485556,0.8117958927712966,0,1.0,0.6787741828336535
+156,36,0.6081123855879861,2.0,1.3464646406833127,0.0006759407965774226,0.03583567272458412,0.8231470876020011,0,1.0,0.6937079519599536
+156,37,0.6387869966521283,1.95,1.3445378412654267,0.0006735582703692862,0.035920935543070354,0.8116679894609655,0,1.0,0.7292899888404277
+156,38,0.6626464444060146,1.95,1.3527471262947093,0.0006767135723050065,0.035203024352449444,0.8129206360896484,0,1.0,0.7088214813533819
+156,39,0.6544425075406928,1.95,1.3531889202094296,0.000678361722912448,0.03557845693415722,0.812988316282877,0,1.0,0.7148083584689757
+156,40,0.611005066277715,2.0,1.3539977381168808,0.0006807324218910951,0.036054564403008416,0.8242424455684294,0,1.0,0.7033502209257168
+156,41,0.6512761695840416,1.95,1.3522121091830777,0.0006785462639369185,0.035653887295736916,0.8128398143234573,0,1.0,0.7042538986134715
+156,42,0.6148989501808159,1.95,1.3516061818141503,0.0006802086725430194,0.03585942429707985,0.8127481223608486,0,1.0,0.7163298339360529
+156,43,0.6351298956037567,1.9,1.3489707649919664,0.0006774672893489218,0.035428516625783724,0.8006442341418726,0,1.0,0.717099652012522
+156,44,0.6116560523385208,1.9,1.3566423177946545,0.0006799811650817212,0.03604107818362526,0.8018666892039426,0,1.0,0.705520174461736
+156,45,0.6561023106690725,1.8499999999999999,1.3538809614035943,0.0006775147893282448,0.03615632992482365,0.7892209665924618,0,1.0,0.6870077022302415
+156,46,0.60427132333118,1.8499999999999999,1.35400765354157,0.0006790006494886643,0.0353134617129897,0.7892425355262002,0,1.0,0.6809044111039334
+156,47,0.6439259439289855,1.7999999999999998,1.3512026493104718,0.0006762863125532359,0.03549708594917937,0.7760084744330188,0,1.0,0.6797531464299514
+156,48,0.6466375908082913,1.7999999999999998,1.3508406463210632,0.0006777909819580769,0.035732338535504046,0.7759460682171869,0,1.0,0.6887919693609709
+156,49,0.609928696269043,1.8499999999999999,1.3505981672381402,0.0006797340239956,0.035438658401028014,0.788675090988362,0,1.0,0.6997623208968099
+157,0,0.16015976297713522,1.7999999999999998,1.3572800139215402,0.0007137393077842351,0.03601955454288698,0.7770760417572036,1,0.1434517937235784,0.2092634849590128
+157,1,0.2068655683623042,1.7499999999999998,1.3563917593081203,0.0007127056357785187,0.03621399873128929,0.7636538550003018,1,0.1978632378294722,0.25906757743505104
+157,2,0.238900236857505,1.7499999999999998,1.3553206427002988,0.0007137080235377993,0.03636929295334975,0.7634608402050851,1,0.23504129492744327,0.3162790629550922
+157,3,0.21619199974457973,1.7499999999999998,1.385636637266985,0.0006998024530191948,0.0365964572259998,0.7688868215805952,1,0.2524056020723631,0.31743252971878166
+157,4,0.28953292273200065,1.6999999999999997,1.3856163299050874,0.0006998644037198493,0.036748999399519006,0.7552878029977791,1,0.3154821480565487,0.37780021169793737
+157,5,0.27505493367033174,1.6999999999999997,1.3855203868706467,0.0006999470776088596,0.036432201396362496,0.755270100153489,1,0.34064314993038874,0.3959922456605874
+157,6,0.2822416722214421,1.7499999999999998,1.3854672403225985,0.0007000657302008255,0.03676241295154548,0.768856811970453,1,0.3533307385870261,0.4030312559554387
+157,7,0.3492804640514055,1.7999999999999998,1.3699123666370763,0.0006886992911073129,0.0363707096822869,0.7792480537755535,1,0.4012988736241832,0.462536382005774
+157,8,0.4004661197209994,1.7999999999999998,1.3680022932098108,0.0007035670285689135,0.03619331840902339,0.778924427220115,1,0.4803503699411307,0.5277532391484905
+157,9,0.3863790513873462,1.7999999999999998,1.3664217022520533,0.0007034471898165735,0.03630404715556978,0.7786520863176148,1,0.5077188140749628,0.5443050858578701
+157,10,0.3832235052172247,1.8499999999999999,1.366976874627741,0.0007078139516600001,0.03646027908960876,0.791401240808129,1,0.5426743218462386,0.5205125882624306
+157,11,0.43544511965806226,1.9,1.367946314711968,0.0007049411757869111,0.03648282753098135,0.8036643791513649,1,0.5751387414057446,0.5512987436525482
+157,12,0.4175392079817084,1.9,1.3724396775767185,0.0007028915439036031,0.03648988884493776,0.8043717653111192,1,0.6228440068739297,0.5280053507737883
+157,13,0.4950289144658632,1.95,1.3541409213133326,0.0006883986819582705,0.03570941008224064,0.8131360639665868,1,0.6741484377192678,0.5845651312605202
+157,14,0.5057350445101108,1.95,1.3530545041556379,0.0006882831364954398,0.03585485595613913,0.8129708961380173,1,0.7028853737595954,0.6152696500209086
+157,15,0.5247889334599513,2.0,1.2716408319719676,0.0007822688793416273,0.035959930763618274,0.812022438242555,1,0.7215145709615921,0.6539436835843814
+157,16,0.5217587534541943,2.0,1.2736172926386478,0.0007947108331882604,0.03610209835143835,0.8123277367271979,1,0.7588761030361899,0.6606943741323942
+157,17,0.5368883294297081,2.0,1.2786685202400934,0.0007829286545586335,0.035739623930336036,0.813093007650817,1,0.7947139079969375,0.6633425541031102
+157,18,0.53868418291266,2.0,1.2822168748924394,0.0007721398033780939,0.03592835634267408,0.8136283899789762,1,0.8286361058924495,0.6574324685189338
+157,19,0.6128955792518381,2.0,1.380247452667896,0.000696755433943104,0.036457962500653404,0.8280174147793206,1,0.861439763691329,0.7277322459176883
+157,20,0.6226533746583867,2.0,1.3801903027534792,0.0006962588056906786,0.03659773449812438,0.8280091347678276,2,0.8936839477815823,0.7505993184858455
+157,21,0.6638563129074596,2.0,1.3759219354632937,0.0006988408643162102,0.0365145040286162,0.827401162723162,2,0.9375439621875082,0.7961290934415209
+157,22,0.7302976192766671,2.0,1.375491267108753,0.0007000768421585285,0.03643241691407142,0.8273400040738602,2,1.0,0.8343253975888907
+157,23,0.713196766295642,2.0,1.38396143125931,0.0006990315624426219,0.03669231778490523,0.8285463048672989,2,1.0,0.8773225543188065
+157,24,0.6491012103199437,2.0,1.3849716298636308,0.0006993311674509145,0.03644727452897324,0.8286898484193256,2,1.0,0.8303373677331458
+157,25,0.7380727598025306,1.95,1.3851713161184773,0.0006997364710171351,0.03660234098245987,0.8178086369514819,2,1.0,0.860242532675102
+157,26,0.7173096928269063,1.95,1.3846785900132907,0.000699162445720053,0.03644000596923282,0.8177350393026547,2,1.0,0.8910323094230205
+157,27,0.7313292848423395,1.9,1.3854741740409708,0.0006995977368078269,0.0366429025939259,0.8064136830042706,2,1.0,0.9377642828077981
+157,28,0.773728170965971,1.95,1.3858266985087797,0.0007000425577992032,0.036419710649750005,0.8179063582367038,2,1.0,0.9790939032199036
+157,29,0.7799999999999999,1.95,1.3853019837392377,0.0007000072862276617,0.03645924347294655,0.8178281860090145,2,1.0,1.0
+157,30,0.685396905018915,2.0,1.3844888444443115,0.0006999186176133779,0.03666745424760318,0.8286214667296089,2,1.0,0.9513230167297165
+157,31,0.6722985780360156,1.95,1.38498383394637,0.0006996382478357598,0.03659311279986935,0.8177806716066331,2,1.0,0.9076619267867184
+157,32,0.7352214799644639,2.0,1.3850215983395036,0.0006993568080755651,0.036335350542997955,0.8286969492565367,1,1.0,0.9507382665482129
+157,33,0.75,2.0,1.3184647933766143,0.0007642128836468184,0.03658064302588593,0.8190602019231753,1,1.0,1.0
+157,34,0.74,2.0,1.3274134707570417,0.00075321868736146,0.03654010659610178,0.8203793765074346,1,1.0,1.0
+157,35,0.72,2.0,1.3261100951526519,0.0007639954900988193,0.03649779683866915,0.8201904134170279,1,1.0,1.0
+157,36,0.72,1.95,1.3351523230784683,0.0007534368119988131,0.0361414393549221,0.810253654637276,1,1.0,1.0
+157,37,0.7069538980892408,2.0,1.3410393382115844,0.0007452830833523259,0.03654852654987197,0.8223761679183731,1,1.0,0.9898463269641359
+157,38,0.7060134727808891,2.0,1.3384637032771487,0.0007448653543572445,0.03644506659494056,0.8219995009480241,1,1.0,0.986711575936297
+157,39,0.74,2.0,1.334534723661006,0.0007452156617796947,0.03655730593661578,0.8214240024048857,1,1.0,1.0
+157,40,0.698223340355216,2.0,1.3334106309361797,0.0007552440203979716,0.036643068821846175,0.8212619976317127,1,1.0,0.96074446785072
+157,41,0.75,1.95,1.3295640533647524,0.0007558552376606035,0.0364799032408565,0.8093937554097547,1,1.0,1.0
+157,42,0.7006833323043078,1.95,1.3370121727669781,0.0007469827643876129,0.03642119553065744,0.8105374456700462,1,1.0,0.9689444410143595
+157,43,0.7380613629603857,1.9,1.3330061266177518,0.0007472480199210709,0.03649616422470666,0.7981063237388584,1,1.0,0.9935378765346189
+157,44,0.7013243250538014,1.9,1.3304571214726981,0.0007588110935633254,0.03633872284682365,0.7976990157603723,1,1.0,0.9710810835126712
+157,45,0.75,1.8499999999999999,1.3263809187178093,0.0007594527149426295,0.0358576500294858,0.7846376100606863,2,1.0,1.0
+157,46,0.73,1.8499999999999999,1.3848530426032906,0.0007018429048279445,0.03637284371528056,0.794335011969189,2,1.0,1.0
+157,47,0.73,1.7999999999999998,1.3855000998809013,0.0007011659116667467,0.036770192495621454,0.7819220404710339,2,1.0,1.0
+157,48,0.75,1.8499999999999999,1.385710126131166,0.0007005839292223378,0.03677845194400663,0.7944745845839245,2,1.0,1.0
+157,49,0.7799999999999999,1.8499999999999999,1.3852248943280792,0.0007008160959095016,0.03658607492410216,0.7943954181642451,2,1.0,1.0
+158,0,0.105208274608076,1.8499999999999999,1.3702987042129815,0.000698985727027395,0.035947853355743645,0.7919461860862433,0,0.1007841314131112,0.2163154068094384
+158,1,0.10591824207232098,1.7999999999999998,1.3711183232113762,0.0006977756291327629,0.03632485952103082,0.7794585537092943,0,0.09484500969362827,0.22660079398289892
+158,2,0.18867840212159553,1.8499999999999999,1.3712154902138272,0.0006965053200471811,0.036412124612767674,0.7920963851798276,0,0.18403827805323159,0.2168769696676763
+158,3,0.22485887562021217,1.8499999999999999,1.370939393307423,0.0006964374786553747,0.03650417006166064,0.7920508916089928,0,0.27755311258472093,0.21279210195441262
+158,4,0.2358259898443709,1.8499999999999999,1.376784635663503,0.000694484724050474,0.036490624693843385,0.7930113552012358,0,0.32550494844380823,0.2187467015561586
+158,5,0.2289039387790864,1.9,1.3762689138925446,0.0006943152244594764,0.03629047112998286,0.8049709305890606,0,0.34510821668396413,0.2362021736850026
+158,6,0.2891320783667664,1.95,1.3761453203141196,0.0006939078152736244,0.03625271093012167,0.8164581780366393,1,0.42823841059598833,0.2594557137612369
+158,7,0.33986427590278273,1.95,1.3779470988493174,0.0006949511253243341,0.03644679194735291,0.816728340550319,1,0.48312399730699096,0.32204892326662116
+158,8,0.3105268968025406,1.95,1.3770812285798701,0.0006945519068952718,0.03632426247505512,0.816598579229995,1,0.537891186119129,0.2845680745162965
+158,9,0.35912242893137436,1.9,1.3780771319367453,0.0006946488614144238,0.03617543497902178,0.8052547557844416,1,0.566818701309457,0.30798316135863857
+158,10,0.3834297433221487,1.9,1.3777157063413792,0.0006942500747698294,0.03651251542287565,0.8051979458350289,2,0.5955985711626921,0.35063438285690623
+158,11,0.39586064479891425,1.9,1.3856044231948137,0.0007005586126022717,0.03647655154979714,0.8064343154552488,2,0.6223219777128074,0.3897728457126376
+158,12,0.41016523583029607,1.95,1.3829081522229212,0.0006978224816143033,0.03656119719558744,0.8174706170553662,2,0.647182172030553,0.4043078900602497
+158,13,0.3752736453414903,2.0,1.3814369347233582,0.000701177843011805,0.03668515945657175,0.8281879949384762,2,0.667980743047355,0.36027116040849433
+158,14,0.4865860041553232,1.95,1.3842208649048302,0.0006992218586349044,0.03669777129890216,0.8176668257114245,2,0.7179541606469256,0.398014466321843
+158,15,0.4619762805825438,1.95,1.384112120804173,0.0006988366114033469,0.036491341960910605,0.8176504978546856,2,0.7678934755037933,0.416062967936755
+158,16,0.47670370091015224,1.9,1.3813751138559556,0.0007011769475389487,0.03670026759706583,0.8057734664951844,2,0.7956958431347805,0.4280845455208003
+158,17,0.4461859453401412,1.95,1.3814787974598963,0.0007030786255104024,0.03631187935362933,0.8172588127842958,2,0.8161825106073416,0.3990431369906818
+158,18,0.5176031084389594,1.9,1.346556232093275,0.0007140016003705103,0.03637340581402269,0.8002702428006507,2,0.8407631781110925,0.4376594573150745
+158,19,0.5135248745856558,1.9,1.3739145821961078,0.0006918033583077711,0.036233346074132436,0.8046002623990095,2,0.871980533645336,0.4491088704250709
+158,20,0.5279779012281427,1.95,1.3747903003772775,0.0006930245083631096,0.036127727775608916,0.816254770539175,2,0.9116190155663987,0.444434316671944
+158,21,0.5778794776245667,2.0,1.3754696135643796,0.0006942418795502347,0.0362377355837147,0.8273352438135653,2,0.9518246104996789,0.4904987780823168
+158,22,0.5988506811497781,2.0,1.3745117520409367,0.0006930957591264589,0.03624771215348398,0.8271980411642759,2,0.9759605973317944,0.5282214740568676
+158,23,0.5952884636728644,2.0,1.373080800037768,0.0006916420874478755,0.036267603200127986,0.8269929870746431,2,1.0,0.5509615455762145
+158,24,0.6291255361568491,2.0,1.373300987193743,0.0006926801118587293,0.03649070040180612,0.8270247852018341,2,1.0,0.59708512052283
+158,25,0.61359820145034,2.0,1.3717292056231667,0.0006910593410616051,0.0364110104076906,0.8267993545351611,2,1.0,0.6119940048344666
+158,26,0.6658794062465135,2.0,1.3742251326108783,0.0007018280381438697,0.03652210155703158,0.8271595643904859,2,1.0,0.6195980208217118
+158,27,0.6478700215375064,2.0,1.3732579471456792,0.000702681384443815,0.036464934322069056,0.8270214895518698,2,1.0,0.6595667384583543
+158,28,0.6616141124044542,2.0,1.3727933098563576,0.0007045975345166713,0.03641518898074596,0.8269555582634808,2,1.0,0.7053803746815139
+158,29,0.7032778832512349,2.0,1.3720966342893937,0.0007063077338960637,0.036541084158226905,0.8268563309180342,2,1.0,0.7442596108374495
+158,30,0.6826023335260711,2.0,1.371062076941087,0.0007076461867886843,0.03634927240863361,0.826708551988218,2,1.0,0.7753411117535702
+158,31,0.6664142180228813,1.95,1.3701867392789215,0.0007095838117194043,0.036461613859446615,0.8155682911691405,2,1.0,0.788047393409604
+158,32,0.674503362602062,2.0,1.3694766111243482,0.000706955151178844,0.03649989624802899,0.8264810998727021,2,1.0,0.8150112086735397
+158,33,0.6836085347402127,2.0,1.380525072500225,0.0006969184013508355,0.03635980126208195,0.8280569919197867,2,1.0,0.8453617824673755
+158,34,0.716148214369043,2.0,1.3800012245541657,0.0006972392915656569,0.03644490994352077,0.8279824857665096,2,1.0,0.8871607145634763
+158,35,0.7051068582145128,2.0,1.3789521833117653,0.0006959430765767604,0.03653774472062561,0.8278326525568966,2,1.0,0.9170228607150424
+158,36,0.7614343825820711,2.0,1.3782247502648337,0.0006961651868051045,0.036479766966802725,0.827729013231902,2,1.0,0.9381146086069037
+158,37,0.6698797021130134,2.0,1.3809260377388244,0.0006968881120869254,0.03644888706488782,0.828114064661104,2,1.0,0.8995990070433778
+158,38,0.7631796250290791,1.95,1.381329081206508,0.0006978174417291419,0.036601606809899254,0.8172348804350953,2,1.0,0.9439320834302638
+158,39,0.7483187168281066,1.95,1.3832192426906564,0.0006983270363317758,0.03667226977930449,0.817517181570491,2,1.0,0.994395722760355
+158,40,0.75,2.0,1.3823277358179387,0.0006974608242142554,0.03656341393691667,0.8283136551307086,2,1.0,1.0
+158,41,0.75,2.0,1.3813017895303168,0.0006966801651773643,0.036629662206953885,0.8281674838290259,2,1.0,1.0
+158,42,0.7799999999999999,2.0,1.3799192670961233,0.0006957221633881394,0.03648645935832789,0.8279703802725965,2,1.0,1.0
+158,43,0.6853549857525032,2.0,1.3817926974363393,0.0006976543293592454,0.036508446926355055,0.8282376089354511,2,1.0,0.9511832858416774
+158,44,0.6721165525221924,1.95,1.3824801496293406,0.0006976335105691677,0.036652080044682914,0.8174066886712259,2,1.0,0.9070551750739748
+158,45,0.7060724663739514,2.0,1.3825845633460854,0.0006975465701938026,0.03663072030669847,0.828350199914614,2,1.0,0.9202415545798378
+158,46,0.6647900203016788,2.0,1.382703762005654,0.0006977908712741336,0.03642589827693906,0.8283672171163253,2,1.0,0.8826334010055957
+158,47,0.7528842591403929,1.95,1.382653254363519,0.0006980880523410472,0.036649417262642495,0.8174326593200096,2,1.0,0.909614197134643
+158,48,0.7611867974928891,1.95,1.3841905307824063,0.0006987255920582758,0.03670293956557497,0.8176621552431664,2,1.0,0.9372893249762968
+158,49,0.7130408345798708,2.0,1.3851742641248417,0.0006994585308648851,0.03658948387866961,0.8287186492246423,2,1.0,0.943469448599569
+159,0,0.010427517117618593,1.95,1.3580869889850968,0.0007127018372391894,0.03605082604743651,0.8137422788162783,1,0.11914230789725577,0.17590197986238768
+159,1,0.18601014333965782,1.9,1.3823510271232893,0.0006997849275726646,0.03663324226171458,0.8059257184212845,1,0.17441387413152576,0.22081531229015844
+159,2,0.18767303765048687,1.9,1.3571475992030289,0.0007132617716427679,0.03630480665394557,0.8019575258765878,1,0.2055689627368158,0.2181515085192018
+159,3,0.17796861262619731,1.95,1.385554241065094,0.0007000699503646292,0.03642829018166308,0.8178657842842467,1,0.2314709224731722,0.21793414545642822
+159,4,0.17196746720056033,2.0,1.3855261148964593,0.0007001342854796493,0.03673016463964301,0.8287687783660082,1,0.26957954246374843,0.18045216738353648
+159,5,0.17494194893540385,2.0,1.3766091529369073,0.000693327037187594,0.0363974689513867,0.827497706985379,1,0.31450817840828027,0.13046225857363908
+159,6,0.20046457105881996,2.0,1.3784153782314097,0.0006948797354177112,0.036068201672204994,0.8277558273306118,1,0.3303701214944186,0.16105507487017515
+159,7,0.27472021693904947,2.0,1.3785223627743428,0.0006948020723164248,0.0364556687927987,0.827771058092282,1,0.38343634103024543,0.23781893508983767
+159,8,0.3102674181528596,2.0,1.3851414745293855,0.0007001451698855218,0.03671833326170159,0.8287141898192709,1,0.43101506582994004,0.292871306069612
+159,9,0.2915691890623511,2.0,1.3782062956917527,0.0006950790278377539,0.03608092054996152,0.8277260719474356,1,0.4439189974850617,0.31333863356108793
+159,10,0.2848938297228099,2.0,1.3795987473584705,0.0006969708882003077,0.03649760337022579,0.827925077906618,1,0.4779069735485836,0.2791034676779216
+159,11,0.3106520327227243,2.0,1.3801823711453352,0.0006966845231375864,0.036556942700703074,0.8280081264779603,1,0.5109202425712811,0.2876131189807061
+159,12,0.36260757136171123,2.0,1.3812259171419075,0.0006982904565818199,0.036573741230793516,0.8281571447872286,1,0.5563173267827818,0.33360213549532847
+159,13,0.3512022482081358,2.0,1.3815334376016932,0.000697832875924595,0.036553189687788916,0.8282007742827187,1,0.5800798518917454,0.3305676915047919
+159,14,0.36328972660253445,2.0,1.3823117872687696,0.0006992145920428317,0.036636506704312045,0.8283118858851608,1,0.613944065707883,0.3257070010646041
+159,15,0.3596170703710162,2.0,1.3695780232107155,0.000722176312729842,0.036285592646780336,0.8265000083116216,1,0.6496316133092811,0.2992147501576792
+159,16,0.4386853868464192,2.0,1.3723019507183243,0.0007188752175789258,0.03660334429454221,0.8268893209930064,1,0.6921965998075593,0.37268915641131833
+159,17,0.4431582041553335,2.0,1.371390500665465,0.0007204879597148255,0.03679546257290846,0.8267592760659306,2,0.7169572883977772,0.38791762932074225
+159,18,0.4465558981756371,2.0,1.3848091923085402,0.0006999728059744169,0.03641858509484744,0.8286669692653492,2,0.7333976308710857,0.4106561527573427
+159,19,0.46186345060848466,2.0,1.3743274611346994,0.0007032035117933963,0.03638912125332435,0.8271745867307951,2,0.7535306889602941,0.4348372500812235
+159,20,0.4384679736327776,2.0,1.374727694821974,0.000706777253302616,0.03664406316576381,0.827232816873128,2,0.7907685541763522,0.4072018398741225
+159,21,0.4918850523785695,1.95,1.3732477735393087,0.0007068626213206117,0.036600118729713936,0.8160274599646536,2,0.8245338246033023,0.4402384084574953
+159,22,0.5390862088134131,1.95,1.3713433039691771,0.000691558831334175,0.036277510955880186,0.8157367756515096,2,0.8589267783621144,0.48505165822855756
+159,23,0.4915152238094224,1.95,1.3699119706743408,0.0006900429725624512,0.03643794238295,0.8155210781842104,2,0.8926765433370011,0.44814868824873993
+159,24,0.6019738727242128,1.9,1.3698911781832432,0.0006910052757710798,0.03636898015918487,0.8039666812581263,2,0.9494215664087295,0.4740174872024033
+159,25,0.5254197947805115,1.9,1.3740935242478403,0.0006923294992595634,0.03606985838496944,0.8046285593190852,2,0.9886344965594812,0.4332199871890631
+159,26,0.6154391542863572,1.8499999999999999,1.373854428349168,0.0006928308088284426,0.036236857165918554,0.7925294213749485,2,1.0,0.45146384762119096
+159,27,0.5648555532152186,1.8499999999999999,1.3772279737374968,0.0006940988325122273,0.036535492366156996,0.7930839905351836,2,1.0,0.4495185107173953
+159,28,0.5654193605338886,1.7999999999999998,1.3774527712083862,0.000694831639976955,0.03645733713927043,0.780544527390173,2,1.0,0.4513978684462954
+159,29,0.6238801683760329,1.8499999999999999,1.3770847444133674,0.0006953288069158567,0.03627028892204691,0.7930608890778345,2,1.0,0.47960056125344314
+159,30,0.5983393116287657,1.8499999999999999,1.380249740270018,0.0006964021639854081,0.03633775893027279,0.7935801832543397,2,1.0,0.49446437209588573
+159,31,0.5820655742685261,1.7999999999999998,1.3791509007580123,0.0006953439796375106,0.036521859322569517,0.7808354448728859,2,1.0,0.5068852475617535
+159,32,0.5878773104754813,1.8499999999999999,1.3787119258032485,0.0006955007829172971,0.03641808632906818,0.7933278635163317,2,1.0,0.5262577015849376
+159,33,0.6176438720903279,1.9,1.3783899306354028,0.0006958354958960698,0.03641998517431367,0.8053041761505252,2,1.0,0.5588129069677594
+159,34,0.6063822092272405,1.9,1.3774944590727682,0.0006947615992080448,0.03648673291309459,0.8051634004164435,2,1.0,0.5879406974241349
+159,35,0.6097791256159661,1.95,1.3768129013214405,0.0006948958861491665,0.03642672163159385,0.816558492742886,2,1.0,0.5992637520532202
+159,36,0.6405831741233492,2.0,1.376203840297144,0.0006950864614384178,0.036339990187193166,0.827440345282169,2,1.0,0.6352772470778306
+159,37,0.5746327512244088,2.0,1.3686613129934164,0.0007021894806616058,0.03622450913017665,0.8263627791466907,2,1.0,0.5821091707480294
+159,38,0.6120690068180161,1.95,1.3758790619869945,0.0006945003927595829,0.03637683253091957,0.8164184523706337,2,1.0,0.606896689393387
+159,39,0.5759307167955723,1.95,1.3739732682904984,0.000701036291837723,0.03643951756078899,0.816134602507464,2,1.0,0.5864357226519076
+159,40,0.6433738049566857,1.9,1.3751406443007825,0.000694363733144939,0.03634414389341871,0.8047937547547114,2,1.0,0.6445793498556189
+159,41,0.6259089584046066,1.9,1.3781405219481546,0.0007003333119483486,0.036549527004292294,0.8052664791747246,2,1.0,0.6530298613486883
+159,42,0.657515313025965,1.95,1.377482908819328,0.0006988594090328011,0.03652994476495365,0.8166600192546681,2,1.0,0.6917177100865499
+159,43,0.595203947267675,1.95,1.3771871163296798,0.0006998501581630808,0.03641607838929842,0.8166160238902521,2,1.0,0.6506798242255833
+159,44,0.6832475421586438,1.9,1.3801289616773338,0.0006995870007065509,0.036517163496840595,0.8055778680980047,2,1.0,0.6774918071954795
+159,45,0.6376371215895084,1.9,1.3795257446688465,0.0007004651991436969,0.03630735935366845,0.8054836487199056,1,1.0,0.6921237386316943
+159,46,0.6546341191517583,1.8499999999999999,1.375449530213967,0.0006926884376667463,0.03639349462967708,0.7927915292955438,1,1.0,0.7154470638391942
+159,47,0.6142354506765871,1.9,1.3781344431684357,0.0006944739432919256,0.036445062871793846,0.8052636882886169,1,1.0,0.6807848355886237
+159,48,0.6009695713929173,1.8499999999999999,1.376959322245482,0.0006937524124705026,0.036499915878468646,0.7930397871631673,1,1.0,0.636565237976391
+159,49,0.6460063022122446,1.9,1.3751609584940783,0.0006926216629208227,0.03618541013085435,0.8047963987553605,1,1.0,0.6866876740408152
+160,0,0.16046230307109272,1.9,1.3568599643350088,0.0007115463573150057,0.03599764614650763,0.8019112942786918,1,0.12632499975108186,0.23310767723553327
+160,1,0.1788662495513286,1.8499999999999999,1.3565998825638208,0.0007102503315976956,0.03615913993077681,0.7896837806687731,1,0.15311009650067925,0.25874070317018966
+160,2,0.19877947686118094,1.9,1.3556314533244802,0.0007092814350239689,0.03630091666799657,0.8017153533506879,1,0.17248196013360592,0.2992889760257952
+160,3,0.2465247591060613,1.95,1.3559901724371815,0.0007077820787142837,0.036410981073753,0.8134227707816329,1,0.22149338887271267,0.3597580118565874
+160,4,0.2308266870698686,1.95,1.3846659235051753,0.0007006071316989316,0.03671478725587883,0.8177335820702974,1,0.24632398359785343,0.37432364543575747
+160,5,0.30315385302466596,2.0,1.3845851095946227,0.0007008729103313805,0.03669721748720738,0.8286354077289846,1,0.3031499248700336,0.43964627692217517
+160,6,0.3164513797035963,2.0,1.3719274191088857,0.0006918588941793927,0.03597250306033582,0.8268279662658932,1,0.33927795933664195,0.4691339865631318
+160,7,0.33574125161557095,2.0,1.375292762488644,0.0006930094257470681,0.0363319600085729,0.8273096267280339,1,0.36471090250752125,0.4995229687085416
+160,8,0.32472363424127626,2.0,1.3779228388257811,0.0006943598140498929,0.036479089725835634,0.827685443332792,1,0.3862199057375818,0.500785573154145
+160,9,0.372823353725849,2.0,1.3782220815235982,0.0006947973608280066,0.036543443948905734,0.8277282425981489,1,0.41261849140373086,0.5592531905478557
+160,10,0.3962757881599391,2.0,1.3726923749563067,0.0006974388493410267,0.03623203703230853,0.8269390650348486,1,0.4437616502642608,0.5959037601807826
+160,11,0.36934808080503734,2.0,1.3757840483503625,0.0006970620013118497,0.03641546132416959,0.8273809622654669,1,0.48525067711450304,0.5508260331974537
+160,12,0.44639862278759895,1.95,1.3753313624234047,0.0006959406551729032,0.03639311894183953,0.8163367811628096,1,0.5348184752930131,0.6082374422346457
+160,13,0.4561476875335904,1.95,1.3819402960852432,0.0006972474471324043,0.03659979507291812,0.8173259848245378,1,0.5690634521845703,0.6284076888658744
+160,14,0.5088245458917866,2.0,1.381214593230654,0.0006968800434579317,0.036427966672423415,0.8281551317994367,1,0.6244468778783587,0.6968193158014768
+160,15,0.47851855039758506,2.0,1.2422346012393355,0.0007636743978579232,0.035256358535487836,0.8074867945011346,1,0.6753878811650197,0.6612113264385905
+160,16,0.5334416365704169,2.0,1.23788992678684,0.0007616201978880635,0.035221173354376405,0.8068098639490878,1,0.7194234283145181,0.685574217482032
+160,17,0.5133651454527081,2.0,1.240172733181139,0.0007837613406007405,0.03514608488979663,0.8071723229766694,1,0.7660122140560781,0.656534199434256
+160,18,0.5323999912382742,2.0,1.2356444370266009,0.0007819147899867734,0.03517696141603073,0.8064659586437536,1,0.7835464473903553,0.6632713742737737
+160,19,0.5322361321059099,2.0,1.2422143212382006,0.0007704546823089028,0.03499267370456839,0.8074857499506624,1,0.8228434147465501,0.6436625540242995
+160,20,0.532613377131427,2.0,1.354706616173216,0.0006841497641068734,0.03593768903189334,0.8243461045490321,1,0.8506751937951718,0.6078109987111944
+160,21,0.575273712628892,2.0,1.352941318349193,0.0006820867267562417,0.03615618628822709,0.824089745609384,1,0.8800607424630719,0.6108313854788776
+160,22,0.5655652095660401,2.0,1.3603910769302443,0.000684039973919434,0.03618014124152348,0.8251676635343441,1,0.8985043238284461,0.620544933448872
+160,23,0.5596607226882208,2.0,1.3610846605887512,0.0006860098411436534,0.03589273599658735,0.8252682696148391,1,0.9420684264526142,0.5761111736905835
+160,24,0.5715336974259194,2.0,1.3845078838152425,0.0007004317306585244,0.03649289674679405,0.828624316184749,1,1.0,0.5384456580863981
+160,25,0.5896957617482524,2.0,1.3844810671034455,0.0006998329058475966,0.03662643774060858,0.8286203379390695,1,1.0,0.5656525391608415
+160,26,0.6413581907354127,2.0,1.384607256675125,0.0007005776822029081,0.03674557824337944,0.8286384687214017,1,1.0,0.6378606357847088
+160,27,0.6126794419898338,2.0,1.3609989898662704,0.0006859033956690881,0.03631053119763214,0.8252558848043429,1,1.0,0.6422648066327791
+160,28,0.6661546181585174,1.95,1.3611476927861457,0.0006877550402409236,0.03627442426416358,0.8141981836207292,1,1.0,0.7205153938617246
+160,29,0.6824585401275238,1.95,1.3601748317070568,0.0006891949782289463,0.03559491424491951,0.814051400624939,1,1.0,0.7748618004250792
+160,30,0.7008431168099822,2.0,1.3593838968927758,0.0006907857304179904,0.035943918016111506,0.8250242617515006,1,1.0,0.8361437226999405
+160,31,0.6534354357428639,2.0,1.3284180349704224,0.000757973734955073,0.0361261412290141,0.8205287589657632,1,1.0,0.8114514524762129
+160,32,0.6422935998558725,1.95,1.3246038253257924,0.0007583439937726435,0.03643178869024951,0.8086281093734211,1,1.0,0.774311999519575
+160,33,0.6568316064323647,2.0,1.3588459902551815,0.0006914791078339228,0.036137914212557035,0.8249467966480757,1,1.0,0.7894386881078821
+160,34,0.70337196355584,2.0,1.3595409678430606,0.0006942697794148498,0.03629381859980092,0.8250479410395269,1,1.0,0.8445732118527995
+160,35,0.7029161720508674,2.0,1.3181508202144316,0.000758316636667465,0.03629214544924135,0.8190119182434085,1,1.0,0.876387240169558
+160,36,0.6669268278302831,2.0,1.317052463790846,0.0007704630786180606,0.036014379291345905,0.8188526537505812,1,1.0,0.8564227594342773
+160,37,0.7070193075739486,1.95,1.31288155483526,0.0007707365656195773,0.03597495737634,0.8068114009222146,1,1.0,0.8900643585798285
+160,38,0.7157239385177294,1.95,1.3094661385182067,0.0007841200229163647,0.03669279869703349,0.8062826739056401,1,1.0,0.9190797950590979
+160,39,0.6745294450552421,2.0,1.3072431911632687,0.0007944219016206886,0.036657500797663105,0.8174002137358528,1,1.0,0.8817648168508073
+160,40,0.7160419804983699,1.95,1.3052166712583888,0.0007935517435460627,0.03668354154749231,0.805621035649575,1,1.0,0.9201399349945661
+160,41,0.7207965838637114,1.95,1.3007522019457372,0.0008053411317857413,0.03595050021250641,0.804924666933005,1,1.0,0.9359886128790376
+160,42,0.7255383792395842,2.0,1.2978644504447971,0.0008136282740393533,0.0366105692488995,0.8160019683252968,1,1.0,0.9517945974652806
+160,43,0.683010542887212,2.0,1.2968183742737496,0.0008179081828348524,0.03623531638522458,0.8158461416856696,1,1.0,0.9100351429573732
+160,44,0.719938894629329,1.95,1.2934561509111975,0.0008204286663823795,0.03669551589793862,0.8037812439300264,1,1.0,0.9331296487644299
+160,45,0.7411186497894312,1.95,1.2880982221180814,0.0008296702167710675,0.036798261445649516,0.8029377566573995,1,1.0,0.9703954992981038
+160,46,0.74,1.95,1.2998673971659152,0.0008139400678528946,0.03640217710759325,0.8047883984323752,1,1.0,1.0
+160,47,0.6993858098840842,2.0,1.2966608237985153,0.0008192815780381478,0.036192010762400265,0.8158228826548244,1,1.0,0.9646193662802803
+160,48,0.74,1.95,1.2956096968708235,0.000819838882205173,0.03637280295593658,0.8041204866607711,1,1.0,1.0
+160,49,0.7013433776766462,1.95,1.2902344780785537,0.0008277148433014067,0.03683063148278968,0.8032749369663261,0,1.0,0.9711445922554872
+161,0,0.13148557462936736,1.9,1.3664179063480066,0.0006950682693959757,0.03589748959852554,0.8034199842395837,0,0.1212075840103726,0.21000847008406104
+161,1,0.1485909056839383,1.8499999999999999,1.3681361486266916,0.000693996820325746,0.03619016263279605,0.7915879963079073,0,0.15263949578852143,0.2251170245617658
+161,2,0.21731471008888925,1.9,1.369353286626826,0.0006929678535940776,0.036380749037146054,0.8038825122211303,0,0.2570571883537407,0.21497278249130994
+161,3,0.26163496517872936,1.9,1.3776948617277813,0.0006946353460729607,0.03644369981359595,0.8051947971131137,0,0.35990747058562705,0.2255732564815952
+161,4,0.27245986040674236,1.9,1.378709181541145,0.0006958027329288282,0.03654608074435311,0.8053542161452009,0,0.41321181749452984,0.22391711136310155
+161,5,0.3024998616321036,1.95,1.3550898537060996,0.000728487195498383,0.036388521967317566,0.8132923824386523,0,0.4870667921042389,0.22557714930136014
+161,6,0.33398159201260064,1.95,1.355112816217172,0.0007285554118791547,0.036447435070820176,0.8132958899389924,0,0.5611055662397252,0.23179788505570204
+161,7,0.38147098296006104,1.95,1.3542950756171779,0.0007294297136384243,0.03640529259001869,0.8131719533979292,0,0.6672403707016268,0.21524944893136772
+161,8,0.4032443744570268,2.0,0.7736330230477546,0.000884797602922177,0.031112459758290894,0.7242021943324513,0,0.7355581502366179,0.23007038120793227
+161,9,0.4284972084014985,2.0,0.7940487136917254,0.0009636908410294482,0.032469818926402785,0.7282923935754693,0,0.8036471230203507,0.22346119731119418
+161,10,0.3919119203051925,2.0,1.320708172657393,0.0006637051507078229,0.034917368585111026,0.8193626842267235,0,0.7998420244274571,0.23991703511403215
+161,11,0.46784690552673336,2.0,0.8207951247025089,0.001141294896087888,0.03436620845248892,0.7336220307945472,0,0.8917733680355839,0.2037918610416659
+161,12,0.468692297555091,2.0,1.3365854733398081,0.0006701760254938752,0.0354015140454,0.821702634998383,0,0.9335490123381469,0.1842423087327742
+161,13,0.43479904353687704,2.0,1.1511362289990568,0.0007151350752488614,0.03228921392542531,0.79291168446305,0,0.9451181075420894,0.18917266840013747
+161,14,0.4775658818136497,2.0,1.1526577047495026,0.0007228026535947271,0.033086120432855415,0.7931639194395232,0,0.9814227349119959,0.2166559594961709
+161,15,0.4955850933042876,2.0,1.3378805475549567,0.0006706536634320412,0.03550648464912778,0.8218924337678779,0,1.0,0.251950311014292
+161,16,0.5001448687501153,2.0,1.3425551282889219,0.0006747232662784072,0.03568157629152944,0.8225768820073018,0,1.0,0.2671495625003845
+161,17,0.5209184942696841,2.0,1.3461833848504465,0.0006786811203336283,0.03556548753699154,0.8231069377869769,0,1.0,0.23639498089894662
+161,18,0.5230266287334063,2.0,1.3449741566641065,0.0006774904606608179,0.03561047473267885,0.8229304560653323,0,1.0,0.24342209577802082
+161,19,0.47233884190818554,2.0,1.3436764774958125,0.0006761591364944827,0.03531515700044664,0.8227408959871457,0,1.0,0.24112947302728502
+161,20,0.512176202015738,1.95,1.3424825507188585,0.0006760476833264628,0.03536762659821449,0.8113543722317538,1,1.0,0.2072540067191266
+161,21,0.5131415626223396,1.95,1.3538925221480824,0.0006869507412271611,0.0361155716354791,0.8130978777336538,1,1.0,0.24380520874113193
+161,22,0.48011595494682247,2.0,1.3524183398415612,0.0006850675811079021,0.03579929254439031,0.8240147832774857,1,1.0,0.23371984982274144
+161,23,0.5401796496720302,1.95,1.3600916017002227,0.0006862635099899045,0.03595477488242396,0.814037914095728,1,1.0,0.30059883224010064
+161,24,0.5560985689577683,1.95,1.3582350083198929,0.0006863146516741421,0.03567921299964343,0.8137567142623476,1,1.0,0.3536618965258943
+161,25,0.505500201296271,2.0,1.3568834187932202,0.0006865193649592357,0.03577762451428914,0.8246617674616903,1,1.0,0.3183340043209033
+161,26,0.5625403818199818,1.95,1.363378560212234,0.0006876967614172823,0.03587700218112564,0.8145354139959782,1,1.0,0.37513460606660565
+161,27,0.5176850684023581,1.95,1.3614984737814693,0.0006873405029246297,0.03614951177647405,0.8142511183518693,1,1.0,0.35895022800786025
+161,28,0.5813695532114715,1.9,1.366350181544,0.0006883522593020266,0.036155060326399445,0.8034071663143532,1,1.0,0.4378985107049051
+161,29,0.6009505098326491,1.9,1.3832080982510555,0.0007008758912221925,0.03669957319307183,0.8060600783960178,1,1.0,0.5031683661088302
+161,30,0.5961005500796477,1.95,1.3823142730316926,0.0007009911927635347,0.03662983769812747,0.8173829321805349,1,1.0,0.5203351669321589
+161,31,0.5753601343128862,2.0,1.3835248322945966,0.0007003506689259433,0.036684565628762184,0.8284846487737846,1,1.0,0.5178671143762873
+161,32,0.5507745261985745,1.95,1.3837757150734964,0.0007015708025801571,0.03675723800558302,0.8176011505175133,1,1.0,0.46924842066191474
+161,33,0.6020894534581974,1.9,1.3839158184719866,0.0007007503925031099,0.03665243602781446,0.8061706511521943,1,1.0,0.5069648448606577
+161,34,0.580546108425138,1.9,1.3830526869217925,0.0007008586050378227,0.03651114990857731,0.8060357768129298,1,1.0,0.5351536947504599
+161,35,0.5802369530102968,1.8499999999999999,1.3831159169574834,0.0007021691250015517,0.036759144666098476,0.7940511847292515,1,1.0,0.534123176700989
+161,36,0.6271095821372158,1.9,1.3828346407233065,0.0007034004133868309,0.03669065240129807,0.8060024796249758,1,1.0,0.590365273790719
+161,37,0.629188382510153,1.9,1.382081893763639,0.000703796916028941,0.036535841196034556,0.8058848751827562,1,1.0,0.6306279417005098
+161,38,0.6590469140885006,1.95,1.357582545953443,0.0006951797237097922,0.035925246176572695,0.8136604971673966,1,1.0,0.6968230469616685
+161,39,0.6297195911942415,1.95,1.3570830852776505,0.0006965464622986895,0.0360561081045408,0.8135851730995489,1,1.0,0.6990653039808048
+161,40,0.657229669640516,1.9,1.356988954910789,0.0006993550876421122,0.03594762368452376,0.8019279106955378,1,1.0,0.7240988988017198
+161,41,0.6366067374428013,1.9,1.3637364555949318,0.0006980060874524998,0.036173745009169124,0.8029970706913815,1,1.0,0.7220224581426707
+161,42,0.6233770277131642,1.8499999999999999,1.363414564884281,0.0007002029261580605,0.03644470371261043,0.7908100271302387,1,1.0,0.7112567590438804
+161,43,0.6575447283752498,1.9,1.36181580318396,0.0006979482514218481,0.03584702485817175,0.8026930422107199,1,1.0,0.725149094584166
+161,44,0.6833709692955834,1.9,1.3686999330634761,0.000697180797472564,0.03621040140003874,0.8037808159512226,1,1.0,0.7779032309852776
+161,45,0.6551738057299166,1.9,1.3677930190794692,0.0006983526159513348,0.0360628556916892,0.8036381104300575,1,1.0,0.7839126857663883
+161,46,0.6370347172855987,1.8499999999999999,1.3674720238384093,0.0007002792869318412,0.03630458842564531,0.7914804838601369,1,1.0,0.7567823909519955
+161,47,0.6982205952425244,1.9,1.3660470882690379,0.0006981708083144838,0.03616875002894235,0.8033623922356379,1,1.0,0.8274019841417479
+161,48,0.7158387923965096,1.9,1.3081690294793222,0.0007628208083057964,0.03646893319336667,0.7940797061769862,1,1.0,0.8861293079883652
+161,49,0.7370222311527042,1.95,1.3167640578887716,0.0007517986895064592,0.03622850156893925,0.807409943775726,1,1.0,0.9567407705090138
+162,0,0.18183187056653383,1.95,1.365366845004978,0.0006913794215108755,0.035676745613004664,0.8148367025965728,0,0.20455318092256355,0.16670199399169472
+162,1,0.19628081181140486,1.9,1.3672503289949018,0.0006894814907099217,0.036005465240139194,0.8035496569733933,1,0.2726490701466083,0.15740394584253845
+162,2,0.24471513615634788,1.95,1.3786807458748869,0.000694865069989939,0.036428225706372545,0.8168381038878159,1,0.3333425212488726,0.20459375885599612
+162,3,0.2546251249971282,1.95,1.384646719326697,0.0007008080032780684,0.036436574004209375,0.8177307796376106,1,0.36054574410946433,0.2346894245111415
+162,4,0.2339614757472624,2.0,1.384571629213547,0.0007004473987253972,0.03670849169761147,0.8286333726776361,1,0.4125539271213737,0.19646634966237636
+162,5,0.3163183861895917,1.95,1.3705810114641017,0.000690062516656573,0.03627616206063802,0.8156217176264666,1,0.47102259788810946,0.2596978234478263
+162,6,0.29426871909215874,1.95,1.3825776775847451,0.0007001765726985119,0.03654728540390707,0.817422003631013,1,0.4834084142784443,0.26968451126927
+162,7,0.2904231332927505,1.9,1.3828338337217112,0.0007013079932995794,0.0367097724622956,0.8060016990870125,1,0.517456292740452,0.24480205398856555
+162,8,0.29855187268929206,1.95,1.3833877940323327,0.0007007788390503249,0.03647283424046987,0.8175430566468779,1,0.5584530707038549,0.21723548135916715
+162,9,0.37185517308754196,2.0,1.3838501337292968,0.0007002569838292996,0.03638107059498412,0.828530841845053,1,0.6041645676556124,0.2672978200843233
+162,10,0.3371569612566966,2.0,1.3704670492296482,0.0007217548724265706,0.036632464535225735,0.8266273348384057,1,0.6453257057725067,0.23008892982564633
+162,11,0.38931657650030166,1.95,1.3725089918786777,0.0007186846157595157,0.03679091104598323,0.8159200744807231,1,0.6735619306069093,0.26630601419179317
+162,12,0.3726276089057796,1.95,1.3745355379009871,0.0007162057149774091,0.03662049596737471,0.816223512029108,1,0.7220566751410997,0.24601646283113238
+162,13,0.453795422280822,2.0,1.376194649675569,0.0007136833704031949,0.03678652512931537,0.8274443436208588,1,0.77974425077909,0.3063257398972865
+162,14,0.4838199081323044,2.0,1.375651876872304,0.0007145483806622109,0.03673229891629344,0.8273670797368463,1,0.8205222627552118,0.35203667676739897
+162,15,0.5239367290119836,2.0,1.359373908084363,0.000686527909239739,0.03602183863014023,0.8250215904471832,1,0.8762794155462408,0.4114165426449575
+162,16,0.5323380832377435,2.0,1.383742983196708,0.0007023765948875835,0.036631541937135005,0.8285162209995866,1,0.9048782052024892,0.43462267052249254
+162,17,0.5235962728730214,2.0,1.384360661763331,0.0007016168853702326,0.03676457096294893,0.8286037453805147,1,0.924579077100266,0.44588214010971644
+162,18,0.5294511151016879,2.0,1.384239379026331,0.000702451790831588,0.03650317373791734,0.8285867573354683,1,0.9773530261107627,0.4283663488579428
+162,19,0.568672340089122,2.0,1.384749207414966,0.0007017238318199818,0.036684851353237534,0.8286589497942358,1,0.9920059097874008,0.43956658724720565
+162,20,0.6005135030233132,2.0,1.385209684394127,0.0007011414685485084,0.03676286720919493,0.8287241546168918,1,1.0,0.501711676744377
+162,21,0.5746206904830239,2.0,1.3846699395964455,0.0007013254597201292,0.036431572147263364,0.8286475816646964,1,1.0,0.5154023016100796
+162,22,0.6044897432204834,1.95,1.38454917344656,0.0007021530285456442,0.03662905059592025,0.8177166412202873,1,1.0,0.5482991440682778
+162,23,0.6319864472822755,1.95,1.3848583359481004,0.0007014037779803727,0.03653814200978843,0.8177624959446816,1,1.0,0.6066214909409181
+162,24,0.6046841396889742,1.95,1.3662573789814771,0.0006991795659007411,0.036178819515462715,0.8149733791859217,1,1.0,0.6156137989632473
+162,25,0.6480516229985044,1.9,1.3658745236159073,0.0007010249685312755,0.03627768587670588,0.8033360323964739,1,1.0,0.6601720766616812
+162,26,0.5978483688296294,1.9,1.3645077301840502,0.0007023400997889283,0.03631934441320771,0.8031204228210481,1,1.0,0.6261612294320978
+162,27,0.6541307786403345,1.8499999999999999,1.36365688115882,0.000700152034079985,0.03615198023751285,0.790850093736663,1,1.0,0.6804359288011149
+162,28,0.5978047825293477,1.8499999999999999,1.3620928321839547,0.0007014285876320266,0.03623894384947942,0.7905916953009432,1,1.0,0.6260159417644922
+162,29,0.6077901409349309,1.7999999999999998,1.361131394980947,0.0006990904584475702,0.03628878368610324,0.7777374357012317,1,1.0,0.6259671364497694
+162,30,0.5893365454378438,1.8499999999999999,1.3602253386846792,0.0007014781875785827,0.03609256640248502,0.7902823683327815,1,1.0,0.5977884847928123
+162,31,0.6248126540379998,1.9,1.3838058741202646,0.0007018792700538559,0.03675599610883705,0.8061538235401654,1,1.0,0.6160421801266657
+162,32,0.5793554845336013,1.9,1.3609991288165462,0.0007003588945209709,0.03608420145301153,0.8025644318204943,1,1.0,0.564518281778671
+162,33,0.6421610376011033,1.8499999999999999,1.3840538464529095,0.0007005360002398743,0.03662835176932271,0.7942039918472956,1,1.0,0.6405367920036776
+162,34,0.6624089182011987,1.8499999999999999,1.3600435999397213,0.000699554874243731,0.03611558458990242,0.7902516084714042,1,1.0,0.7080297273373288
+162,35,0.615457157909555,1.8499999999999999,1.3589796766678814,0.0007009957986299395,0.03639685619476986,0.7900756824441004,1,1.0,0.68485719303185
+162,36,0.67380155678796,1.7999999999999998,1.3579312738971685,0.0006985850973727498,0.03614869451702583,0.7771835899843426,1,1.0,0.7460051892932
+162,37,0.6273638740233736,1.7999999999999998,1.3560340646401332,0.0006999401552224714,0.03596522891747854,0.7768553487055879,1,1.0,0.7245462467445787
+162,38,0.6370251402828652,1.7499999999999998,1.354842146118385,0.0006973541490255654,0.03608638118677664,0.7633685102070012,1,1.0,0.7234171342762172
+162,39,0.6745068023005678,1.7999999999999998,1.3539527962682483,0.0007003951535684389,0.035922477256760975,0.7764945085610385,1,1.0,0.7483560076685593
+162,40,0.6758656311582211,1.7999999999999998,1.3534573866663593,0.0007018303863008458,0.03603755063473895,0.7764090163654419,1,1.0,0.7862187705274035
+162,41,0.6404660379230993,1.8499999999999999,1.3614426791253174,0.0006999100712829103,0.03602883488942884,0.7904835349311402,1,1.0,0.7682201264103309
+162,42,0.6368125715201451,1.7999999999999998,1.360918025040885,0.0006974450522969134,0.03602106201658355,0.7776999810546013,1,1.0,0.7560419050671506
+162,43,0.6286478135550757,1.8499999999999999,1.3590454483998782,0.0006950229239469819,0.036054368518623,0.7900846096721865,1,1.0,0.7288260451835855
+162,44,0.6395447925540165,1.9,1.3582756124704884,0.0006926906363047703,0.03593114920734873,0.802130087874508,1,1.0,0.731815975180055
+162,45,0.6424268949271004,1.95,1.3589121843604692,0.0006955085845752389,0.035772368293218136,0.8138621086442165,1,1.0,0.7414229830903343
+162,46,0.623371094910182,2.0,1.3591488859519396,0.0006978331548793777,0.03593422309129628,0.8249923681848111,1,1.0,0.7112369830339401
+162,47,0.6297680929286392,2.0,1.3585094721091184,0.0006955180136031095,0.03600029430486183,0.8248993616554227,1,1.0,0.6992269764287972
+162,48,0.6062725409134035,2.0,1.3579332836176081,0.0006975155157981641,0.03590041060175475,0.8248166984312454,1,1.0,0.6542418030446786
+162,49,0.6616208900295485,1.95,1.3566846126679792,0.0006951996275345166,0.03575088026217098,0.813524322826764,1,1.0,0.7054029667651615
+163,0,0.1679997064432484,1.95,1.3560450281841023,0.0007084626055285739,0.03593752974902648,0.8134313024396327,1,0.13728144939244574,0.24362375562090036
+163,1,0.15680542823452084,1.9,1.3557489047147404,0.0007073492622203839,0.036070271811512664,0.8017334094196409,1,0.14421307794113636,0.2637339901935543
+163,2,0.16602142826421082,1.95,1.3548079953054848,0.0007085105879851573,0.03626097320063341,0.8132435110992164,1,0.1659099971817735,0.2655247646383381
+163,3,0.1729569770142758,2.0,1.355223210449794,0.0007090890163500863,0.03641706320404861,0.8244281145135203,1,0.23310361100842555,0.2323851087030185
+163,4,0.1885207351156173,2.0,1.3840378445264103,0.0007005256175754448,0.036658934062969634,0.8285575841203648,1,0.2440840153288637,0.23629042994690608
+163,5,0.23324760275726905,2.0,1.3839512540242274,0.0007007153572217966,0.036718404786779305,0.8285453375051034,1,0.2760122016071786,0.276142407047992
+163,6,0.25997701750171004,2.0,1.383852204388202,0.0007003580497790921,0.03635625369174737,0.8285311647344876,1,0.3166648982913158,0.31103686061727914
+163,7,0.24478747918613827,2.0,1.3837218236964104,0.0007000266974891071,0.03666760382948618,0.8285125469549129,1,0.3278477525469116,0.31216126055791205
+163,8,0.28129943595054535,2.0,1.383608132034238,0.0007002101935977792,0.03667543883269815,0.8284964452423056,1,0.34623746571102854,0.34268149888711313
+163,9,0.2589638274908135,2.0,1.3834511590942347,0.0006998387562363167,0.03649595521748582,0.8284740342276645,1,0.3449761383829922,0.3365779071253887
+163,10,0.27222456621474705,1.95,1.3833091105243562,0.0007000326456431318,0.036615597721367445,0.8175310967922268,1,0.3751852900299541,0.3405015006758846
+163,11,0.27547882756126146,2.0,1.3830629609229819,0.0007002042829793958,0.036587705721012026,0.8284189662789954,1,0.4252021865486531,0.3179931764726673
+163,12,0.3593010812748177,2.0,1.3836820005949988,0.0007002536800832955,0.03653228338608548,0.8285069533351244,1,0.4881381405668002,0.3801527501603253
+163,13,0.3315553247705163,2.0,1.3831067068133358,0.0007002172914556004,0.03664912592161993,0.8284251879714686,1,0.537910517126566,0.35463705973296616
+163,14,0.41556214912521444,1.95,1.3833660684216522,0.0006996700340688759,0.03668163556801595,0.817539485095524,1,0.5932303694264912,0.42756667118205993
+163,15,0.3967667938516586,1.95,1.3791298896128563,0.0006962826874351898,0.03644578587906897,0.8169057164127215,1,0.6245571042667514,0.42314650714986013
+163,16,0.4108808705188952,2.0,1.3528566845456593,0.000687880838281539,0.03587635679266985,0.8240791562450046,1,0.6544811159350991,0.4302947471495186
+163,17,0.397586996563556,2.0,1.3557773013591101,0.0006930962449698942,0.03606771689733014,0.8245036745844647,1,0.68343399118494,0.3807113336319332
+163,18,0.4036179206975874,2.0,1.3611864508083782,0.0007229957836345806,0.036635755997338745,0.8252936131585302,1,0.729062649965785,0.3399762023709113
+163,19,0.48465293147897887,2.0,1.3640402311749107,0.0007186434937642318,0.03656972807259819,0.8257034481787752,1,0.7867555664290312,0.3998356830245546
+163,20,0.4438092257672371,2.0,1.3620299034979482,0.0007190210548679387,0.036549285311614235,0.8254140466721535,1,0.8171056850760996,0.3565565057893241
+163,21,0.49450941296668877,1.95,1.349042038809065,0.0006827718904903655,0.03565688325031298,0.8123583574542788,1,0.8365381502514762,0.3996471762203277
+163,22,0.5431212353434356,1.95,1.3471444884066004,0.0006805654119056177,0.03571602795552466,0.8120682646325367,1,0.8806974475721316,0.46947418771527644
+163,23,0.5506215053084014,1.95,1.3828802271784393,0.0007007167343286433,0.03648864312042109,0.8174673139858717,1,0.9152026173381698,0.48180152791044445
+163,24,0.6018400720732031,2.0,1.382812154013925,0.0006998161836568377,0.036569823278029524,0.8283832030541282,1,0.9702592254532555,0.5457879396396695
+163,25,0.5806070738496916,2.0,1.382074021208211,0.0006998343189331302,0.03654837851709386,0.8282782465155134,1,0.9816045496314996,0.5598841799903057
+163,26,0.6342440525748342,1.95,1.3822951217053379,0.0007012198883100792,0.036685845590171365,0.8173801417562604,1,1.0,0.6141468419161138
+163,27,0.6078680114490969,1.95,1.3458363642049602,0.0006740690326207009,0.0357599401420597,0.8118665613551836,1,1.0,0.6262267048303227
+163,28,0.6154615215580853,1.9,1.3440577100869806,0.0006737194670052791,0.035501479153825004,0.7998576881099169,1,1.0,0.6515384051936177
+163,29,0.6027808261437002,1.95,1.3410752904706167,0.0006725957511013147,0.035139926727116494,0.8111378271476508,2,1.0,0.6426027538123339
+163,30,0.6751386943035981,2.0,1.3728683561519228,0.0006913796821573092,0.036214447258463636,0.8269625143315318,2,1.0,0.650462314345327
+163,31,0.5777192116105473,2.0,1.3729630472737298,0.0006923378316990526,0.036202578267370236,0.8269763379834432,2,1.0,0.5923973720351576
+163,32,0.5667079779234382,1.95,1.3748675439898481,0.00069387057317658,0.03634634564984316,0.8162666092567453,2,1.0,0.5556932597447938
+163,33,0.6307338277195497,2.0,1.3752730995447608,0.0006952897990470173,0.036399828782966534,0.8273074690904816,2,1.0,0.6024460923984986
+163,34,0.6431861438500437,2.0,1.3764101935450586,0.0006936265002404824,0.036471791666068024,0.8274693901312821,2,1.0,0.6439538128334786
+163,35,0.6332054512771694,2.0,1.3766213212791145,0.0006944306707527277,0.03643037483641002,0.8274997590256944,2,1.0,0.6773515042572312
+163,36,0.5884013428870396,2.0,1.3752490681716751,0.000693088143018552,0.036202592060143264,0.8273034065943052,2,1.0,0.6280044762901321
+163,37,0.6526399373950711,1.95,1.3783899641800508,0.0006946114532031556,0.03629229716332947,0.8167945190757611,2,1.0,0.6754664579835701
+163,38,0.5914280507561984,1.95,1.3782127116719451,0.000694857844613184,0.03654470040378851,0.8167680670514283,2,1.0,0.6380935025206612
+163,39,0.6317222298307602,1.9,1.3806586775776455,0.0006962109476518492,0.03656693700543135,0.8056597627313353,2,1.0,0.6724074327692006
+163,40,0.6898625497913742,1.9,1.3792242171750304,0.0006951642571628172,0.03641121500185932,0.8054347397069372,2,1.0,0.6995418326379141
+163,41,0.6512583773934375,1.9,1.3794822064879388,0.0006954499124759201,0.036522067904113095,0.8054752554440504,2,1.0,0.7375279246447916
+163,42,0.6896586270860856,1.8499999999999999,1.3780767039504553,0.0006943471040364248,0.03655347033638721,0.7932233154671706,2,1.0,0.7988620902869519
+163,43,0.6756331332168253,1.8499999999999999,1.3779719407399018,0.0006945054814800674,0.036143203824751655,0.7932061836257311,2,1.0,0.8187771107227506
+163,44,0.7128134903138135,1.9,1.3780587194596683,0.0007004764094782911,0.036561048571643655,0.8052536960929237,2,1.0,0.8760449677127115
+163,45,0.7240925754566525,1.9,1.376963743607626,0.000700860596275662,0.03643718900515543,0.8050820449618599,2,1.0,0.9136419181888418
+163,46,0.71456807929886,1.95,1.3753901650808007,0.0007011289859555919,0.03656099070051382,0.8163471530631267,2,1.0,0.948560264329533
+163,47,0.7673681217946763,2.0,1.3789283897321505,0.0007001858711759886,0.03649896795692649,0.827830470763103,2,1.0,0.9578937393155877
+163,48,0.7759277541048566,2.0,1.3793708617778229,0.0007026454398264181,0.0365349331041511,0.8278942268157947,2,1.0,0.9864258470161887
+163,49,0.7799999999999999,2.0,1.3791225676726568,0.0007048904110772351,0.03651140569045231,0.8278594855108855,2,1.0,1.0
+164,0,0.13231608229298492,2.0,1.3619698288883622,0.000706627481835739,0.036009578198333794,0.8254018172718923,1,0.12079051220773952,0.21333292469963036
+164,1,0.1432765312608494,1.95,1.3617648019566517,0.0007071567187184494,0.03623750797618778,0.8142973892923429,1,0.14004538101003874,0.22419459618944637
+164,2,0.18288160099668177,2.0,1.360996315024879,0.000707917130403801,0.036290530205029904,0.8252618481291243,1,0.16215947611335585,0.26005936850446476
+164,3,0.19893278291688637,2.0,1.3613086442001163,0.0007067268469634842,0.03645806268640012,0.8253065396786412,2,0.19305245078792685,0.2723726753390521
+164,4,0.16745835196038064,2.0,1.3862795076114505,0.0007001724638217762,0.03672732236900715,0.8288756774977301,2,0.2372663310521422,0.24183939846507918
+164,5,0.21931145293740445,1.95,1.3860148571804123,0.0007001072816709829,0.03673882958466057,0.817934399352263,2,0.2740486364801228,0.26563999448451775
+164,6,0.2956835192007187,1.95,1.3858936776286475,0.0007000905285491512,0.03640803535396831,0.817916347884666,2,0.325418469504473,0.285053771329765
+164,7,0.29892030460137464,1.95,1.3858557412862165,0.0006999588725227725,0.036759137883251525,0.8179106587717565,2,0.3757460197627565,0.3287396556542401
+164,8,0.30600043306775715,2.0,1.3860022125927882,0.0006999775282813695,0.03667116660005393,0.8288362868568948,2,0.4169659239901472,0.3640468782389941
+164,9,0.3469102749138046,2.0,1.3857980543650739,0.0007001692547282549,0.036381954993737656,0.8288073760656021,2,0.44472196392760577,0.3967382978092077
+164,10,0.29915904689327355,2.0,1.3858255410398692,0.0007004430580979641,0.03668987729262958,0.8288113536928609,2,0.4800573451712564,0.3571203627492367
+164,11,0.3506279734068293,1.95,1.3860203967323508,0.0007003237349934399,0.03676318065974834,0.8179352887554755,2,0.5158300226614012,0.38098654780756247
+164,12,0.37581686738741227,1.95,1.3860334584211533,0.0007001625594250374,0.036522869012863064,0.8179371858536773,2,0.5604403268650777,0.40546912213793723
+164,13,0.39455106811404994,1.95,1.3851392451728544,0.0006994813217421837,0.0367457803087789,0.8178037823717386,2,0.5888138572466425,0.4300850840513099
+164,14,0.41850165907274883,2.0,1.3848930863051208,0.0006992347886009258,0.03658555516290331,0.8286786704876858,2,0.629072286863084,0.4562424810917174
+164,15,0.43549894413262835,2.0,1.3686151162999134,0.000724372839326116,0.03659046011230242,0.826362516568127,2,0.6534289461786267,0.4804245522039254
+164,16,0.5154333182614843,2.0,1.3675911877795481,0.0007257216867056673,0.036763037040395005,0.8262159338600676,2,0.7008305511796942,0.5170036592986891
+164,17,0.4417565299583358,2.0,1.3702169383279255,0.0007216410269207255,0.03672634509745828,0.8265914547334582,2,0.7426267879064825,0.4823527159858094
+164,18,0.5575683320855109,1.95,1.3692259073027557,0.0007230421273542187,0.036317775851451205,0.8154277733458413,2,0.8095441877059281,0.5125021900104658
+164,19,0.5319397305086117,1.95,1.3739330435188581,0.0006936018991306492,0.03631173539389361,0.8161263350841822,2,0.8489579863257013,0.5411884532611037
+164,20,0.5128808168510318,1.9,1.3731362097381759,0.000693824359579038,0.03612255782946351,0.8044784944725636,2,0.9017194076520343,0.5073101793007271
+164,21,0.5077855105334068,1.95,1.3733119121631212,0.0006952910359533061,0.03639576934097946,0.8160336143947303,2,0.92091406909829,0.46473294298030265
+164,22,0.5134542583770307,2.0,1.3737671976593426,0.0006968819453361252,0.03644182484861762,0.8270926704890436,2,0.9664217479421457,0.4229518640005749
+164,23,0.5951565901738118,2.0,1.373947118999248,0.0006981960127405668,0.036421633028068626,0.8271187754008756,2,1.0,0.48385530057937276
+164,24,0.5993751868884165,2.0,1.373049130612503,0.0006966147742883318,0.03649514723462766,0.8269898788711442,2,1.0,0.49791728962805504
+164,25,0.5384610269085347,2.0,1.371984301326847,0.0006949648709360151,0.03640938912848193,0.8268370001226725,2,1.0,0.46153675636178226
+164,26,0.5777755107651729,1.95,1.371770269011498,0.000696206023060435,0.03632923593792341,0.8158023408994558,2,1.0,0.4925850358839095
+164,27,0.5893084141677659,1.95,1.3708480750952812,0.000697229003827332,0.036296622172687046,0.8156640311145338,2,1.0,0.5310280472258861
+164,28,0.6185640076389346,2.0,1.3700918680122482,0.0006981355693470024,0.0363125260104258,0.8265667875640205,2,1.0,0.5618800254631152
+164,29,0.6593202750190483,2.0,1.3694598710564398,0.000696318822215906,0.036322522109350185,0.8264756483965604,2,1.0,0.5977342500634945
+164,30,0.6409782971546297,2.0,1.3742980799906004,0.0006962901771799023,0.03647364773190287,0.8271684097931885,2,1.0,0.6365943238487657
+164,31,0.57805753727514,2.0,1.3765742036113282,0.0006933250524361116,0.03626461462268263,0.8274927175113523,2,1.0,0.5935251242504666
+164,32,0.6177398749977172,1.95,1.3729062500287492,0.0006943120686635909,0.03633044196391795,0.8159724134640031,2,1.0,0.6257995833257237
+164,33,0.6477958440597475,1.95,1.3788602913767858,0.00069503084823627,0.036458526394714044,0.8168650144111892,2,1.0,0.6593194801991581
+164,34,0.6575495801622523,1.95,1.3788104407976178,0.0006949171841113782,0.036500713669006646,0.8168575228095005,2,1.0,0.6918319338741741
+164,35,0.6403502310184204,2.0,1.3783764887745498,0.0006947267937196995,0.03622482388339891,0.8277502389393775,1,1.0,0.7011674367280678
+164,36,0.6596469726247697,2.0,1.351819633557443,0.000681793635771679,0.03589282181095581,0.8239269954807451,1,1.0,0.7321565754158988
+164,37,0.6221568894559906,2.0,1.357952842071899,0.0006830036883123642,0.035998651561224795,0.8248153307612693,1,1.0,0.7071896315199683
+164,38,0.6837659651244616,1.95,1.3564429034984262,0.0006816176163662851,0.035549349746164596,0.8134835306531769,1,1.0,0.7792198837482051
+164,39,0.6793311693738224,1.95,1.3596181547178308,0.000685430695819486,0.03594067106828293,0.8139659807278036,1,1.0,0.7977705645794079
+164,40,0.6932341109424791,2.0,1.3647213139826881,0.000686746390520481,0.0361263486543751,0.8257922688047991,1,1.0,0.8441137031415968
+164,41,0.6592290310752771,2.0,1.2950117378352366,0.0007796365653372957,0.036172194447167745,0.8155630421813538,1,1.0,0.8307634369175904
+164,42,0.7177848216688573,1.95,1.2938054091616837,0.0007939003513705336,0.03592500572908121,0.8038279557444258,1,1.0,0.8926160722295241
+164,43,0.7207463383764363,1.95,1.30385587280038,0.000781572068494773,0.036502398960517365,0.805404096640612,1,1.0,0.935821127921454
+164,44,0.7304167298856032,2.0,1.2988353629778766,0.000781399390824456,0.036563220866172495,0.81613802696001,1,1.0,0.968055766285344
+164,45,0.7382256788107443,2.0,1.2956719401182406,0.0007793608043621653,0.03644516093255152,0.8156622461726342,1,1.0,0.9940855960358141
+164,46,0.6942575956166611,2.0,1.2900866287609003,0.000778402792433347,0.03642147383959961,0.8148206834348238,1,1.0,0.9475253187222036
+164,47,0.75,1.95,1.2891310105051035,0.000794428578457276,0.03630054560476545,0.8030899765723485,1,1.0,1.0
+164,48,0.74,1.95,1.2984754173711381,0.0007819003612143737,0.03618406351389562,0.8045595441368912,1,1.0,1.0
+164,49,0.74,2.0,1.2930999601802189,0.0007813539510889885,0.03639445114128802,0.815275816428023,1,1.0,1.0
+165,0,0.15924608660209016,2.0,1.3624793937923037,0.0007134981790461555,0.03613992140317472,0.8254772200147826,1,0.12536109935518103,0.2303388228667258
+165,1,0.14264665835263934,1.95,1.3623394819654802,0.0007120708205643875,0.036352937833469975,0.8143857607218465,1,0.13387970576833083,0.23031592015102334
+165,2,0.16057307143861912,2.0,1.3615507632178572,0.0007129054393991527,0.036310489816371375,0.82534322591471,1,0.15972635391469386,0.2556084329091386
+165,3,0.19973474120030574,2.0,1.3618399692532355,0.0007130450447680326,0.03648061113666794,0.8253849517996492,1,0.19186791352248278,0.2766252526377087
+165,4,0.24961062479839513,2.0,1.36166271539053,0.0007115766725645354,0.03628794151935653,0.8253589803718347,1,0.24290088138337662,0.3415009074834817
+165,5,0.2829720812615274,2.0,1.3846897383137784,0.0007001023731065127,0.03671718884325741,0.8286500455516931,1,0.2877374982956797,0.39292360647751834
+165,6,0.2933933248842946,2.0,1.3846124486079343,0.0007003231843776497,0.036368146921175126,0.8286391336822674,1,0.3080404274992789,0.4339238462819435
+165,7,0.31294805220174937,2.0,1.3825726093826771,0.0006978431373128723,0.036577358201172624,0.8283485845560706,1,0.3375210710127058,0.45979874598889026
+165,8,0.3042042802589515,2.0,1.3833393046303037,0.0006988804504844658,0.03668188995530481,0.8284578662065434,1,0.3506720054560648,0.479784926921752
+165,9,0.3154412985070435,2.0,1.3836432573302528,0.0006986980626132466,0.03653888471664587,0.8285010064328782,1,0.3682027775844041,0.49386729157760606
+165,10,0.31590942892857454,2.0,1.3837636608503245,0.000698541003878205,0.03661999549252389,0.8285180689133596,0,0.42064106246995864,0.45884334646863706
+165,11,0.31162338770562803,2.0,1.3753138772995745,0.0006992817480406283,0.03646647410407584,0.8273144355478869,0,0.43249566600850337,0.4620837376740889
+165,12,0.3164521792024012,2.0,1.3767449728822374,0.0006982469450419504,0.03610066358909393,0.8275184982328163,0,0.43190737125008505,0.47896410234122383
+165,13,0.40689117900179944,2.0,1.3776678191070242,0.0006974524495479589,0.03642760610905878,0.8276499511100859,0,0.548123212304299,0.45880631360026636
+165,14,0.3612603088653425,2.0,1.3764069356693895,0.000697034545625971,0.03648218088474703,0.8274698981149942,0,0.5603436456861248,0.4570761686363085
+165,15,0.4440555941895434,1.95,1.3770305308225828,0.0006962157340961667,0.03656030489458105,0.816591484724051,0,0.6551437770288581,0.4399936112600007
+165,16,0.43129954548274696,2.0,1.2001157925855621,0.0006306175414210497,0.03283687829509748,0.8008119867823077,0,0.6891742725007584,0.45209945494147874
+165,17,0.497307421085731,2.0,1.2159643841940087,0.00063389186713868,0.0329823918000839,0.8033290167793832,0,0.7867750636140991,0.44199131880030457
+165,18,0.4555324893151774,2.0,1.227055278432872,0.0006663157353336847,0.03303918642841604,0.8050855671343708,0,0.8006968778137519,0.45084579396558894
+165,19,0.5349387811363082,1.95,1.3223579984968143,0.0006916739617713881,0.03529952355745689,0.8082596660472403,0,0.8847322408088667,0.43681961604253833
+165,20,0.5729222811836112,1.95,1.3193962153174235,0.0006881856843394513,0.035543483682660866,0.8077991585083852,0,0.9880209146835999,0.42571305103390394
+165,21,0.5688653349364585,1.95,1.3176412582722583,0.000684827900108013,0.03535244272981138,0.8075254934638878,0,1.0,0.4295511164548614
+165,22,0.5282785579609232,2.0,1.3297276051319726,0.0006829048571722852,0.03503941875812026,0.8206994350584261,0,1.0,0.4275951932030772
+165,23,0.5294970037506115,1.95,1.3335680980666806,0.0006894029300987436,0.03515667771478991,0.8099902623129799,0,0.986059740324237,0.450243692069722
+165,24,0.5357307756825201,2.0,1.334195813543841,0.0006950940467631262,0.035476392064835514,0.8213595753956952,0,0.9846994826014075,0.47283660880652384
+165,25,0.5878484935807626,2.0,1.3363934178844865,0.0007004715101361159,0.035619409566607,0.8216833736618356,0,1.0,0.45949497860254185
+165,26,0.5683695821641283,2.0,1.3350435817813289,0.0006971741720086115,0.03565927142160613,0.8214845429581308,0,1.0,0.4945652738804273
+165,27,0.5954260810144316,2.0,1.3335424688814883,0.0006979540235102123,0.035958971453288226,0.8212645309249518,0,1.0,0.4847536033814383
+165,28,0.586875953572485,2.0,1.3320895314780992,0.0006946799842247149,0.03579617616447581,0.8210501939023913,0,1.0,0.45625317857494974
+165,29,0.5802568195593929,2.0,1.3306197719483064,0.0006917556442945201,0.035260583476019694,0.820833284829863,0,1.0,0.4341893985313094
+165,30,0.5308640182839991,2.0,1.3291689280519705,0.0006891101412478789,0.03514328121255432,0.8206190368356502,0,1.0,0.43621339427999695
+165,31,0.5537060931674607,1.95,1.3303178009523549,0.0006939463389276678,0.03525506787447637,0.8094909192056025,0,1.0,0.445686977224869
+165,32,0.57183430002667,1.95,1.32777224498246,0.0006949433619945398,0.035868419872146756,0.809098354040741,0,1.0,0.4394476667555667
+165,33,0.558633272987966,2.0,1.3389439441623265,0.0006924583372020338,0.03578651105818101,0.8220544253834843,0,1.0,0.4621109099598864
+165,34,0.5823827047758268,2.0,1.3386490714127852,0.0006932457696965605,0.035907502963346175,0.8220115174384661,0,1.0,0.44127568258608907
+165,35,0.556597945927919,2.0,1.3372405579997495,0.0006905758216059545,0.03542224131253826,0.821804564378234,0,1.0,0.4553264864263966
+165,36,0.5816159246502257,1.95,1.3358932575441596,0.0006911933733667046,0.03532507487365584,0.8103484108096992,0,1.0,0.4387197488340854
+165,37,0.5350457860665913,1.95,1.3332876999276249,0.0006883981645746796,0.035739457638988927,0.8099467942625171,0,1.0,0.4501526202219708
+165,38,0.581362111309723,1.9,1.3345715014944668,0.0006931555677495154,0.03593323516282022,0.798341022582444,0,1.0,0.43787370436574335
+165,39,0.5377268497228871,1.9,1.3320171327245793,0.000690422690254621,0.03519511098172492,0.7979285933305412,0,1.0,0.4590894990762902
+165,40,0.5627210874263262,1.8499999999999999,1.3329252456017646,0.0006950518507151735,0.035426581305685136,0.7857197349021956,0,1.0,0.4757369580877541
+165,41,0.5503261375560896,1.8499999999999999,1.3304010156503265,0.000696162939875617,0.035830205826732214,0.7852948130295171,0,1.0,0.5010871251869653
+165,42,0.5889413567646382,1.9,1.3309555138637914,0.0007006879257686694,0.03536064429395244,0.7977606776775125,0,1.0,0.4631378558821272
+165,43,0.5781555115951846,1.9,1.3308270472148356,0.0006976916038853968,0.03573587354199651,0.7977389833377774,0,1.0,0.4271850386506151
+165,44,0.574450747785118,1.95,1.32943026082493,0.0006948220583442575,0.03503927524724208,0.8093542795244727,0,1.0,0.41483582595039287
+165,45,0.5584167440418888,2.0,1.329130656386912,0.0006920399808043904,0.035531583969628154,0.8206142656304599,0,1.0,0.394722480139629
+165,46,0.5410739408496875,2.0,1.3519765211181753,0.0007000857592028382,0.035811372611053036,0.8239550609287255,0,1.0,0.40357980283229167
+165,47,0.5455191959645731,2.0,1.3568656857718462,0.0006893024804290351,0.03585358390851201,0.8246600082008813,0,1.0,0.4183973198819103
+165,48,0.5526060603768744,2.0,1.355785853028963,0.0006899309118017226,0.035615132585812614,0.82450399595759,0,1.0,0.4420202012562479
+165,49,0.5697647933841442,2.0,1.354641707238988,0.0006905047850614601,0.035825673063545484,0.8243385460421032,0,1.0,0.4325493112804806
+166,0,0.18313579273638175,2.0,1.3610631844733243,0.0007126229052153228,0.03608866592887233,0.8252728479369416,1,0.1431413993087286,0.25293077670963443
+166,1,0.1631716011861967,1.95,1.3607619045888293,0.0007130849863795793,0.03632728532840835,0.8141474802394102,1,0.15780052155442736,0.26683797521475255
+166,2,0.20781868389643765,2.0,1.3598822658209513,0.0007141044786630429,0.036302839495662174,0.8251029245226192,1,0.19459112887394622,0.2999407744895305
+166,3,0.2042597911020034,2.0,1.3602665346667568,0.0007121198320363515,0.03647006269563478,0.8251577980390622,1,0.22062721188019507,0.32002968783308455
+166,4,0.21681846676284827,2.0,1.3846574491343646,0.0007004841558355705,0.03667401305906835,0.8286455692102629,1,0.23236368470854546,0.34624330959810035
+166,5,0.21049424508872389,2.0,1.3845428827358317,0.0007006067221155183,0.036725232599533135,0.8286293358849068,1,0.2649297694451559,0.315074457702205
+166,6,0.26253100362666676,2.0,1.3850916492284153,0.0007004898284413879,0.03638211163206051,0.8287072150020297,1,0.2949281380679202,0.3485324946649956
+166,7,0.24585032740740564,2.0,1.3850123085850319,0.0007002099549474638,0.03670255180064326,0.8286958727185423,1,0.3534499222134076,0.31490119507347525
+166,8,0.26533221148776925,2.0,1.3854655926003026,0.0007001691524467484,0.0367289746974487,0.828760199306482,1,0.37794934087832055,0.31384158378813665
+166,9,0.3049944009053561,2.0,1.3853435942843844,0.0007002491605298228,0.036423538350509335,0.8287429077206246,1,0.4207243203648794,0.3223489091980146
+166,10,0.35340875757517776,2.0,1.3818406070472862,0.0006994466533058494,0.036567320917539406,0.8282449343886062,1,0.47487361698289715,0.3781977026067297
+166,11,0.3339172753820582,2.0,1.381114299699448,0.0006992956845304026,0.03662325413452091,0.8281415457393344,1,0.5036500964605845,0.3748574559927479
+166,12,0.3785280556676041,2.0,1.3816049606943435,0.0007008651176321422,0.036559641909859046,0.8282118134918137,1,0.5436162590278445,0.4036051735215544
+166,13,0.36064311820152833,2.0,1.3796510644957956,0.0006995812264457373,0.03655666388620979,0.8279332748848436,1,0.5838080689052915,0.39039963546470574
+166,14,0.37589232398400985,2.0,1.3826183788387592,0.0006999342986526568,0.0366613345208774,0.8283556869434866,1,0.596387944492177,0.3911238206237968
+166,15,0.38197597972267094,2.0,1.3829508762982865,0.0007012512729580288,0.03634625285550682,0.8284033315359185,1,0.6569557638507381,0.36397891394125226
+166,16,0.42871946985044374,2.0,1.366563692364902,0.0007029670795344115,0.03617205106052348,0.82606181452813,1,0.6765962381961979,0.39360324857321527
+166,17,0.47588311139752654,2.0,1.371167182670612,0.0007013669658965713,0.03638571984665385,0.8267218100526418,1,0.7222191582772516,0.45665149362208646
+166,18,0.519375685193059,2.0,1.355085753725694,0.0006931695770984393,0.03605861896579897,0.824403608238829,1,0.789874041410106,0.5114202287633883
+166,19,0.4808546805307835,2.0,1.3531659487482073,0.0006930354216683801,0.03589256004938354,0.8241254808612601,1,0.8251490413423261,0.46931687997951
+166,20,0.4890853032346052,1.95,1.3802147355112084,0.000701564322239974,0.03662760773794378,0.8170695007293494,1,0.8525717752417694,0.4601886437929915
+166,21,0.4927046959837041,2.0,1.3816366990175317,0.0007008093908013072,0.03649318037523727,0.8282163132213938,1,0.8849013794181833,0.42914714738810256
+166,22,0.5151137336122854,2.0,1.3827916502175701,0.0007002182223520868,0.03656717050962451,0.8283804024358667,1,0.9164744393447755,0.42841319291458413
+166,23,0.5443664754503093,2.0,1.3830628596723207,0.0007015490194774263,0.03673370447785822,0.8284193341711485,1,0.9249394462878999,0.4479689897838306
+166,24,0.5405150254841817,2.0,1.3833330731487639,0.0007006675526279251,0.03650397299856602,0.8284574885661141,1,0.9532762773604857,0.4640150484666245
+166,25,0.5819576409423114,2.0,1.3834190184289015,0.0007017926070915694,0.03663034496995791,0.8284700221505591,1,0.977029115317804,0.5038199827172992
+166,26,0.5781307990556437,2.0,1.3834951580817438,0.0007008232705207909,0.03671287377948942,0.8284805664051695,1,1.0,0.5271026635188121
+166,27,0.6077495043664282,2.0,1.3834280949890407,0.0007017890068308899,0.03643706425855299,0.8284713109702386,1,1.0,0.5591650145547603
+166,28,0.5885852772615836,2.0,1.383341187522409,0.000700766493042734,0.036545448973314486,0.828458669864571,1,1.0,0.5619509242052786
+166,29,0.6339457944912416,2.0,1.3831532389469805,0.0007015592020579375,0.03674459731296114,0.8284321832614483,1,1.0,0.6131526483041384
+166,30,0.6135996587401497,2.0,1.36765425727838,0.0006879575861938559,0.036280303993235986,0.8262141449929111,1,1.0,0.6453321958004986
+166,31,0.6232643668971113,1.95,1.3660475837464556,0.0006870716027831692,0.0361602443253195,0.8149380896276849,1,1.0,0.6775478896570375
+166,32,0.6736792825537735,2.0,1.3636912313511849,0.0006857661575334771,0.035997883793397495,0.8256437497828971,1,1.0,0.7455976085125781
+166,33,0.6743250447114386,2.0,1.367555964467769,0.0006900114769825259,0.036106223895679,0.8262006210829648,1,1.0,0.7810834823714617
+166,34,0.7068809509387954,2.0,1.3711837809528982,0.0006906755120142911,0.03613017757005765,0.8267211246402921,1,1.0,0.8562698364626512
+166,35,0.67931709448476,2.0,1.340333479181022,0.0007602952980718793,0.03671763005844522,0.8222774248111897,1,1.0,0.8643903149491996
+166,36,0.6620322702481256,1.95,1.3480105516038026,0.0007515161869995193,0.03638619899066762,0.8122220451726362,1,1.0,0.8401075674937519
+166,37,0.6514021990994927,2.0,1.344847725575803,0.000755022100391538,0.036795252293662886,0.8229346281928474,1,1.0,0.8046739969983088
+166,38,0.6649975386180447,2.0,1.343499890186008,0.0007557359887349491,0.03673608078944225,0.822738353485232,1,1.0,0.8166584620601489
+166,39,0.672857364996023,2.0,1.3501198019090004,0.0007474065999135776,0.03671555346288978,0.823699320168956,1,1.0,0.8428578833200767
+166,40,0.7047497898213766,2.0,1.3552090182551464,0.0007400906665388737,0.03668776339487789,0.8244350348915384,1,1.0,0.8824992994045887
+166,41,0.7132183699767216,2.0,1.353338819997622,0.0007439533531930685,0.03676652296035876,0.8241652940991343,1,1.0,0.9107278999224054
+166,42,0.6738391925719533,2.0,1.3513111422465351,0.0007472794379653585,0.03644631974777658,0.8238722215079467,1,1.0,0.8794639752398445
+166,43,0.7164412023227307,1.95,1.3492810456013449,0.0007495881388334836,0.036351758248884064,0.8124151530904682,1,1.0,0.9214706744091019
+166,44,0.7436778575450342,1.95,1.3461696615879784,0.0007542465265298286,0.03666405490939906,0.8119419498391688,1,1.0,0.9789261918167809
+166,45,0.74,1.95,1.3525892240203579,0.0007461103029828992,0.03680555021761355,0.8129177299910828,1,1.0,1.0
+166,46,0.7047994888452813,2.0,1.3503989110633563,0.0007489184239898786,0.03651763016023381,0.8237402874002516,1,1.0,0.9826649628176043
+166,47,0.74,1.95,1.3491759436997468,0.0007507060646003655,0.03679778995843006,0.8123994761326826,1,1.0,1.0
+166,48,0.74,1.95,1.3459627441205644,0.0007548735955696227,0.03675042995615545,0.8119105446341637,1,1.0,1.0
+166,49,0.74,2.0,1.3434464273824709,0.0007575212863259506,0.036760215663594255,0.8227310770906372,1,1.0,1.0
+167,0,0.13760964708667806,2.0,1.3598135924330554,0.0007130383500931774,0.036043084955940156,0.8250927064601249,1,0.12113259579757304,0.2305220292254961
+167,1,0.1466230517952181,1.95,1.3596075236155252,0.000713410450237724,0.036312312534064375,0.8139728445005308,0,0.1437624699868776,0.2303935460015569
+167,2,0.12392120271495718,2.0,1.363539841935606,0.0006906188570524282,0.03624815515891326,0.8256233525565468,0,0.13884725551534632,0.22794100169606216
+167,3,0.19907275782740258,1.95,1.3651952813260246,0.0006900581377103723,0.03644354237320645,0.8148104172909234,0,0.2194365597336217,0.20432711311317964
+167,4,0.23890050014600606,1.95,1.3712997636486186,0.0006934824685679694,0.036344281135019876,0.8157308093035274,0,0.3240067168756988,0.19765937798575514
+167,5,0.2609486576332771,1.95,1.3727343895804047,0.0006920661139593451,0.03630157062720827,0.8159459306654675,0,0.4050043426153893,0.1964897352904047
+167,6,0.22998595803880076,1.95,1.314176355306515,0.0006713374356014056,0.03504827165153101,0.8069821737983016,0,0.4152998047041259,0.2128867871905013
+167,7,0.3164902365902589,1.9,1.3315128708104957,0.0007493480530810717,0.03631774571643377,0.797866281776835,0,0.5162917722444471,0.19991175897493343
+167,8,0.3386347327378077,1.9,1.3327543249389837,0.0006710325009657233,0.03541298011269729,0.7980411808131149,0,0.5957352869852917,0.2011353931456369
+167,9,0.33349182196006677,1.9,1.340560748649135,0.0007460266204415025,0.036407216002518415,0.7993204868834307,0,0.6195626474536529,0.21888920992868527
+167,10,0.3978438106625672,2.0,0.771795537316268,0.0010318116621896927,0.0325843492686987,0.7238938076776894,0,0.7249626990535412,0.19286243680383588
+167,11,0.42743553844645316,2.0,0.8320800678336503,0.00037902016864064896,0.023536368939571294,0.7355250597390067,0,0.8246778549813014,0.15854798817977517
+167,12,0.4465791160561489,2.0,1.1533442792802262,0.000738936213424878,0.03247354677582278,0.7932818240942183,0,0.9028720031573487,0.15143438264403147
+167,13,0.4719706787534468,2.0,1.1521773029134812,0.0007348983581569205,0.03258629019049675,0.7930890658661551,0,0.9675462488095949,0.14984059743202938
+167,14,0.4872582695917853,2.0,1.1508476209712073,0.0007303032178665959,0.033139030961473165,0.7928692723256529,0,1.0,0.15752756530595108
+167,15,0.47822463829463835,2.0,1.1493823948124715,0.0007255632502600579,0.03330854925061308,0.7926269802978058,0,1.0,0.19408212764879432
+167,16,0.4851032653161745,2.0,1.1492513899712282,0.0007308774600879738,0.03329517410322226,0.7926071933945705,0,1.0,0.2170108843872482
+167,17,0.507161013740148,2.0,1.347345329938823,0.0006869228994228171,0.03587820268947412,0.8232784539188198,0,1.0,0.22387004580049333
+167,18,0.5044312504313939,2.0,1.352728153495738,0.0006856520376493228,0.03623633998471025,0.8240598756901668,0,1.0,0.21477083477131292
+167,19,0.5057558414572074,2.0,1.3567418881359725,0.0006848463864161708,0.03617338287446127,0.8246408180804434,0,1.0,0.1858528048573581
+167,20,0.45749005364079454,2.0,1.1472728818579316,0.0007432313697724141,0.03317245394165018,0.7922858420760657,0,1.0,0.19163351213598168
+167,21,0.4887383432690278,2.0,1.1496674166391025,0.0007517176079150701,0.03369560083628602,0.7926824216603338,0,1.0,0.2291278108967593
+167,22,0.5098257229805132,2.0,1.3565676062108656,0.0006849423316966202,0.035713666381997716,0.8246156417868519,0,1.0,0.1994190766017105
+167,23,0.5041474528931422,2.0,1.1461734983897813,0.000761196955857304,0.0333298340628683,0.792110776409981,0,1.0,0.21382484297714052
+167,24,0.5098961456590697,2.0,1.3564268102846258,0.0006850895608432201,0.03627420509978797,0.8245953208795107,0,1.0,0.19965381886356567
+167,25,0.5001774510581531,2.0,1.1415552884544178,0.0007401387682946916,0.03271434863651501,0.7913423096974147,0,1.0,0.20059150352717686
+167,26,0.46152227021877634,2.0,1.3564650778456846,0.000685099770291427,0.03580750440601285,0.8246008587028462,0,1.0,0.20507423406258768
+167,27,0.48982440771357666,1.95,1.3546303172477536,0.0006841049942401702,0.0354125875892369,0.8132091098112658,0,1.0,0.2327480257119221
+167,28,0.4943269248020809,1.95,1.3573891145406107,0.0006908404322200302,0.03611958244003765,0.8136298518948434,0,1.0,0.24775641600693618
+167,29,0.5176802088982608,2.0,1.3599150867442753,0.0006976204161770313,0.03645182317465344,0.8251029032802298,0,1.0,0.225600696327536
+167,30,0.47158580711399806,2.0,1.3620706473192346,0.0006955031376965411,0.03643079200816163,0.8254131399553621,0,1.0,0.23861935704666007
+167,31,0.5151530674599998,1.95,1.360401945648329,0.0006949699761711396,0.03633981728050049,0.8140875248872911,0,1.0,0.21717689153333228
+167,32,0.4670166625300336,1.95,1.360613697687494,0.0006926275733017031,0.03584185895665781,0.8141188622733246,0,1.0,0.22338887510011182
+167,33,0.49855221015142237,1.9,1.3589557496800082,0.0006921219747894198,0.036023698425798854,0.802237834869846,0,1.0,0.2618407005047412
+167,34,0.520202188134165,1.9,1.3605048223316814,0.0006980525264226442,0.03637713965371913,0.8024853637586723,0,1.0,0.23400729378054988
+167,35,0.47794796702017955,1.9,1.3610725945267348,0.0006956107246005891,0.03602532708001109,0.8025745678758289,0,1.0,0.25982655673393185
+167,36,0.5082126165280028,1.8499999999999999,1.3594340583167845,0.0006952304694109153,0.03587815902699497,0.7901491225462375,0,1.0,0.2940420550933425
+167,37,0.529192260383444,1.8499999999999999,1.3605100265884391,0.0007009278439753723,0.0362862961444929,0.7903293651161805,0,1.0,0.26397420127814647
+167,38,0.4824318218990703,1.8499999999999999,1.3608072936267834,0.0006982331515890767,0.03633188595944485,0.7903777277307178,0,1.0,0.27477273966356763
+167,39,0.48383200738315624,1.7999999999999998,1.3592192995935486,0.0006979744178761422,0.036016912762004874,0.7774063454525316,0,0.9949290123528381,0.28620134147340337
+167,40,0.5253056825072446,1.8499999999999999,1.3567920909438316,0.0006974910395263146,0.03607608210157916,0.7897114637245451,1,1.0,0.2843522750241486
+167,41,0.5305931758667872,1.8499999999999999,1.3310201884863022,0.0006733405902982807,0.03517184216405329,0.7853914979906389,1,1.0,0.30197725288929056
+167,42,0.4946018479536701,1.9,1.3301822785706168,0.0006716489180899714,0.03535266051193036,0.7976265215694929,1,1.0,0.28200615984556704
+167,43,0.5336250556390915,1.8499999999999999,1.3395348749866858,0.0006727597417926157,0.03530422314934199,0.786822980307592,1,1.0,0.31208351879697127
+167,44,0.49436310258225646,1.8499999999999999,1.3371570530458063,0.0006708820984037893,0.03541115248368054,0.7864232393490271,1,1.0,0.2812103419408548
+167,45,0.5476091614891618,1.7999999999999998,1.3437151486880474,0.0006725693424771325,0.035133838323562976,0.7747030155419684,1,1.0,0.32536387163053915
+167,46,0.5669851179469387,1.7999999999999998,1.3398068078080057,0.0006700924719542727,0.035614729146601624,0.7740192617758372,1,1.0,0.3899503931564623
+167,47,0.5856511983156296,1.8499999999999999,1.336718213511063,0.0006682149697948025,0.03566357784934885,0.7863486256601612,1,1.0,0.45217066105209847
+167,48,0.6085318781700033,1.9,1.3817749698033948,0.0007024531684857319,0.036602935806273995,0.8058364367001517,1,1.0,0.5284395939000108
+167,49,0.6193942959170703,1.9,1.38104833576068,0.0007028092282736921,0.03672187933921587,0.8057228307816167,1,1.0,0.5646476530569009
+168,0,0.19418434671491996,1.95,1.356827821583855,0.0007166302402655508,0.03610171349761921,0.8135525484854973,1,0.16501020216917203,0.26060088615750376
+168,1,0.16136900493554526,1.9,1.3570788753736132,0.0007171238696516923,0.03633115425811691,0.8019478376355579,1,0.19987758740926162,0.23805989990613535
+168,2,0.1817973123725465,1.8499999999999999,1.362195997563178,0.000714613474752339,0.03634880433974822,0.7906131398760108,1,0.22900806980133256,0.23398028150671166
+168,3,0.2553789392724335,1.8499999999999999,1.384852920286101,0.0006994543799304239,0.03645507144738915,0.7943342115736352,1,0.28770908141525053,0.30098435568777765
+168,4,0.22936203769579933,1.8499999999999999,1.3848482135828868,0.0006996271369391111,0.03673561588851,0.794333499096703,1,0.3405186955226948,0.277181864955738
+168,5,0.2471875677963605,1.7999999999999998,1.3853348667346124,0.0006997343919627709,0.03654079963613994,0.7818933753572794,1,0.3650355264906233,0.2705778573337039
+168,6,0.23986038324037406,1.8499999999999999,1.3852101208772494,0.0006997605846466295,0.036691357444484984,0.7943926603869164,1,0.40361016454157356,0.22805439141248213
+168,7,0.2887211022743299,1.9,1.3832631690757036,0.000700431656502419,0.036694285364885074,0.8060685484329752,1,0.4310963998162377,0.2542751411594495
+168,8,0.2736071188215623,1.9,1.3838198028288626,0.0007000387235748491,0.03648005717958018,0.8061554249283601,1,0.4445231101104683,0.2526595825912498
+168,9,0.3424140824644693,1.95,1.3840375423945253,0.0007008402517725677,0.036564439730014275,0.8176399755932579,1,0.4821098519782285,0.33190047224392627
+168,10,0.3223351212430081,1.95,1.383597169683373,0.0007008672353967002,0.036723497070419345,0.8175743127520687,1,0.5003830969727322,0.34060627484638395
+168,11,0.335196278934496,1.9,1.383700607678068,0.0007017872399346465,0.03664637141666986,0.8061373442754062,1,0.5127447769806541,0.36699456047411433
+168,12,0.32119187115365194,1.95,1.3835858399306042,0.0007027073726313181,0.036703951596345555,0.8175731718559545,1,0.5295932773351205,0.33118186739867905
+168,13,0.37413977722289965,2.0,1.3840682376382145,0.0007019490037227748,0.03677266948926412,0.8285623057914729,1,0.5590174285832067,0.36844268596539
+168,14,0.39239403151159885,2.0,1.3846622038969438,0.0007013366681403469,0.036737900733670656,0.8286464864469985,1,0.578279155817265,0.4036078972823096
+168,15,0.4156889770612155,2.0,1.3796176682984893,0.0006994991984918881,0.036522381131245604,0.8279284938463655,1,0.6020906398023559,0.44950907046757704
+168,16,0.4388892310226241,2.0,1.3708363956812213,0.0006915889087082648,0.036194562418638256,0.8266716166565934,1,0.6393663110102473,0.47714235539508393
+168,17,0.4925729690619242,2.0,1.3702581814979171,0.0006906408115818074,0.03632291296163419,0.8265884794086056,1,0.6994757270977553,0.5426089274094069
+168,18,0.4615604885230792,2.0,1.3687653249060254,0.0006899336315578574,0.03635883401499188,0.826374186124727,1,0.7456462241080152,0.5110066629329105
+168,19,0.5088772166062965,1.95,1.3714783817765857,0.0006905338129437458,0.03629369732153977,0.8157567702542534,1,0.7685432612357822,0.538199707039945
+168,20,0.49574041907926925,1.95,1.370390614135893,0.0006895569516914475,0.036073620861245076,0.8155929313224746,1,0.7804242178888462,0.5452357730791024
+168,21,0.5174633242594912,2.0,1.3730264298013009,0.0006922290752440622,0.036192272515044754,0.8269853758560302,1,0.8090529225439168,0.5794738508064147
+168,22,0.5286911564545137,2.0,1.3788421931086332,0.0006958811924546058,0.036373978343506544,0.8278169579137853,1,0.8225168336833303,0.5989480766039385
+168,23,0.5342005872518558,2.0,1.3781099323178645,0.0006951078881393183,0.036452763058213426,0.827712338749491,1,0.8295723643137788,0.6079054717544808
+168,24,0.5974050133951712,2.0,1.3716446274744984,0.0006912039339550971,0.03638067587463444,0.8267872838392812,1,0.8660694776800225,0.66992407441054
+168,25,0.5786689549963967,2.0,1.3737879083529692,0.0006941461793015441,0.036310548104562176,0.8270948498365404,1,0.8895332873406161,0.6761854668671673
+168,26,0.5855403255750271,2.0,1.372348653494035,0.0006937160592538232,0.0362607971750946,0.8268888034516737,1,0.9108664905298611,0.6706457645436086
+168,27,0.5808055184506888,2.0,1.3707483229407875,0.0006931797254290575,0.03612979470043965,0.826659452641416,1,0.9458258119295017,0.6415839789296272
+168,28,0.6616475204698348,2.0,1.370093725035104,0.0006918132111378188,0.036183083265464336,0.8265652410981119,0,0.9976862241590662,0.7085767693540276
+168,29,0.6541383201938052,2.0,1.3659977036845223,0.0006982484040527661,0.03616689599344496,0.8259791196775425,0,1.0,0.7137944006460172
+168,30,0.6171411154685587,2.0,1.3648628895407673,0.0006991633382977448,0.03638037780574663,0.8258162070706855,1,1.0,0.723803718228529
+168,31,0.6852505606817255,1.95,1.361633781752217,0.0006834494656517029,0.03611960110413884,0.8142704053905283,1,1.0,0.7841685356057516
+168,32,0.6392557899973836,1.95,1.3656204259566795,0.0006867429686954452,0.03601648964665576,0.8148735604342894,1,1.0,0.7641859666579452
+168,33,0.6298663058579377,1.9,1.364417804060846,0.0006857776461775385,0.03606871916023592,0.8031009655113593,1,1.0,0.7328876861931257
+168,34,0.6404794826954099,1.95,1.3624571083694363,0.0006843812895794946,0.03609358470702572,0.8143951699451111,1,1.0,0.7349316089846994
+168,35,0.6706866720433725,2.0,1.3612534271698444,0.000683723493434514,0.03616177079298867,0.8252919451994202,1,1.0,0.7689555734779082
+168,36,0.6326083688590547,2.0,1.3654594495084738,0.0006861086770067833,0.036232455787703885,0.8258982476082933,1,1.0,0.7420278961968487
+168,37,0.67333696969861,1.95,1.3641255075809526,0.0006855276767802866,0.03614281248870742,0.8146475718887729,1,1.0,0.7777898989953663
+168,38,0.6608524005125346,1.95,1.3663195240812394,0.0006877372892541143,0.036083323860984916,0.8149792992800219,1,1.0,0.8028413350417819
+168,39,0.6943522008729248,2.0,1.3572604476509174,0.0007175445580909275,0.03644102178752365,0.824725246959218,1,1.0,0.8478406695764157
+168,40,0.721143883280712,2.0,1.3578790691588782,0.0007244669242278562,0.036613408615411486,0.8248166534008254,1,1.0,0.9038129442690396
+168,41,0.7198025050094244,2.0,1.362033414559559,0.000718923152192089,0.03653751520298717,0.825414524418956,1,1.0,0.9326750166980814
+168,42,0.7285963000066005,2.0,1.361457680462606,0.0007249479554527794,0.03633825670883587,0.8253332795464622,1,1.0,0.9619876666886681
+168,43,0.6892439470157421,2.0,1.360347741809425,0.0007302054617586037,0.036324034519943135,0.8251747318572673,1,1.0,0.93081315671914
+168,44,0.6964275117801052,1.95,1.3578330085539516,0.0007313658578549473,0.03666704987520503,0.813709439495215,1,1.0,0.9214250392670172
+168,45,0.6784608860962515,2.0,1.3622289814384847,0.0007260450357327902,0.03669722885330778,0.8254447571990909,1,1.0,0.8948696203208385
+168,46,0.6685726452856092,2.0,1.3602997954621405,0.0007262707657935118,0.03662683807130864,0.8251666796547901,1,1.0,0.8619088176186973
+168,47,0.6551345438725087,2.0,1.3576037151626699,0.0007269516147635274,0.03661234105932241,0.8247775809766251,0,1.0,0.8171151462416956
+168,48,0.6843438607463375,2.0,1.3827868925111821,0.0006981584489674245,0.036528321395117046,0.8283791403858519,0,1.0,0.8144795358211248
+168,49,0.6871490110715076,2.0,1.3821674515069509,0.0006981788082555144,0.036463044719606034,0.8282910641068916,0,1.0,0.8238300369050253
+169,0,0.18773223631270458,2.0,1.362799762889409,0.0007144884718695589,0.03620382296271636,0.8255236543140284,1,0.1523002545962739,0.2560404482473168
+169,1,0.1523482473543319,1.95,1.3624271577678964,0.0007153038448151097,0.0364343822753231,0.8143999909328621,1,0.19403806109947708,0.21577674304847008
+169,2,0.20074499292628362,1.9,1.3666827258755976,0.0007131827549040691,0.03641883548789337,0.8034675263864822,1,0.2360832327282305,0.22103899944997132
+169,3,0.24005015979672556,1.9,1.3859467073122513,0.0006999537698499771,0.03643594072803631,0.8064875509309183,1,0.2650864942569155,0.2800518736465313
+169,4,0.20427205570684,1.9,1.3859716871600765,0.0007000272131241226,0.03676447286243399,0.8064914723140959,1,0.3028437272650786,0.2437818826693619
+169,5,0.28633455667911506,1.8499999999999999,1.3861100441534089,0.0007000698529466416,0.036638555841693836,0.7945397095535894,1,0.35397949632729253,0.31580919382732686
+169,6,0.2946794634021402,1.8499999999999999,1.3860997080833366,0.0007001170484339532,0.036646903377135845,0.7945380376317182,1,0.383459635012664,0.33765203132358196
+169,7,0.31278336611107793,1.9,1.3860236373696506,0.0007000162744572404,0.0367635417473805,0.8064995762752554,1,0.4117375499823188,0.3602944870605014
+169,8,0.2859932251543784,1.95,1.3849824870086662,0.0007006612269995899,0.03651299587918916,0.8177807757714791,1,0.4343044303213773,0.340904843419425
+169,9,0.3381997241495319,1.9,1.3853369034838423,0.0007003988290351677,0.036432352044847835,0.8063925028453274,1,0.4724353806914528,0.3640852395765028
+169,10,0.3780627116480005,1.9,1.3854030108697983,0.000700128236869088,0.03676687280869552,0.8064027390733663,1,0.5112009328553059,0.4119411283529272
+169,11,0.34546709444946994,1.9,1.3842926118720722,0.0006995244743020609,0.03642172209093149,0.8062291388857807,1,0.5417071358536143,0.3959474670267473
+169,12,0.36568852613109815,1.8499999999999999,1.3847391486155316,0.0007000899125153855,0.03666882372015617,0.794315832036816,1,0.5675763437319532,0.39552662879438955
+169,13,0.4351417096681732,1.8499999999999999,1.3848426903937148,0.0007007646338531674,0.03655548612850042,0.7943329684456968,1,0.6252562819469294,0.4501306562980049
+169,14,0.45294600246354094,1.8499999999999999,1.3763684437221038,0.0007046536011753968,0.0363970972930376,0.7929463704379652,1,0.6774661164536941,0.4731985196068775
+169,15,0.47395272775944813,1.9,1.3761568845914773,0.0007029177547872548,0.0366182089826987,0.8049560434420416,1,0.7137348563189667,0.4948626174395381
+169,16,0.49553037521668614,1.9,1.376015185502656,0.0007011946168421802,0.03651146610442084,0.8049332543481685,1,0.7480218440610411,0.5210721253075656
+169,17,0.5143344493100314,1.9,1.3754797796237126,0.000699687669596518,0.03626477728468165,0.8048487001047031,1,0.7717188727550782,0.5521563340266669
+169,18,0.4889751721498439,1.95,1.3748250206357053,0.0006982131294728047,0.03642242429523134,0.8162615342975438,1,0.8123473092880535,0.5134541614487416
+169,19,0.5050957610404874,1.9,1.3759452376634527,0.0006931976933493903,0.03646838882749086,0.8049197597996228,1,0.8217248953582225,0.5213526763239945
+169,20,0.497408697185878,1.95,1.3746218829706431,0.000692111068385521,0.036083891200347884,0.8162292354291769,1,0.8571750179634661,0.4817956333349717
+169,21,0.5535014583356548,2.0,1.3757926398375842,0.0006933152793384559,0.036229583798637235,0.8273811190898238,1,0.8964720213787125,0.5163754992805659
+169,22,0.5479616334055836,2.0,1.3754655363620074,0.0006935098832080811,0.036237709010633376,0.8273344522433383,1,0.9191972058514907,0.5342758368832908
+169,23,0.5870699346259347,2.0,1.3743998333988376,0.0006924955327491049,0.03631186198714051,0.8271818711592832,1,0.9377705023996838,0.5732057788868703
+169,24,0.5630341793065667,2.0,1.3736411396036645,0.0006925020474770655,0.03642933238931918,0.8270733892859903,1,0.9690197619112471,0.5514209151402261
+169,25,0.6318777824185257,1.95,1.3744141560999545,0.0006939494563257256,0.0364012651378317,0.8161986261295795,1,1.0,0.6062592747284188
+169,26,0.6544490612918307,1.95,1.3676500295512133,0.0006890355574018826,0.03610236351736093,0.8151802307192586,1,1.0,0.6814968709727687
+169,27,0.6271624229126189,1.95,1.3716276822459172,0.0006904966027568567,0.03621490607283236,0.8157791975237318,1,1.0,0.6905414097087298
+169,28,0.6059488625948316,1.9,1.37034077957582,0.0006894974077532699,0.036292121992074516,0.8040370555042979,1,1.0,0.6531628753161052
+169,29,0.6609462311657319,1.8499999999999999,1.3687402775718023,0.0006886819118233907,0.03603191787042519,0.7916858927368906,1,1.0,0.703154103885773
+169,30,0.6789868349409159,1.8499999999999999,1.3717408822545973,0.000690284265691001,0.03625378447550902,0.7921808449651283,1,1.0,0.7632894498030529
+169,31,0.6298542809655309,1.9,1.3742537792997696,0.0006923288314241115,0.03643793471353076,0.8046537502043631,1,1.0,0.7328476032184362
+169,32,0.6684996100790666,1.8499999999999999,1.3734608337473242,0.0006915441941169301,0.036358330635758274,0.7924642733209285,1,1.0,0.7616653669302219
+169,33,0.697277082758881,1.8499999999999999,1.375710504434013,0.0006929774040691226,0.03623911317942609,0.7928344919934934,1,1.0,0.824256942529603
+169,34,0.6740015513874571,1.8499999999999999,1.3748757558208502,0.0007149706664849442,0.03678217111794201,0.7927045808576366,1,1.0,0.8466718379581905
+169,35,0.6760729736896682,1.7999999999999998,1.376918206698291,0.000711832152808171,0.03652646797907925,0.7804587714432154,1,1.0,0.8535765789655605
+169,36,0.7286015149942286,1.8499999999999999,1.3779923131895488,0.0007093174067250468,0.0364493967660373,0.7932143844053174,1,1.0,0.9286717166474289
+169,37,0.6837723366038821,1.8499999999999999,1.3806013889407251,0.0007069181425922275,0.03664338220373621,0.7936412256404771,1,1.0,0.9125744553462737
+169,38,0.6725901044825039,1.7999999999999998,1.3798758694856326,0.0007085490204177212,0.03638057705228094,0.7809640022867446,1,1.0,0.8753003482750129
+169,39,0.6878249047232936,1.8499999999999999,1.3787890301112007,0.0007102059716683853,0.03644353734980663,0.7933453269869178,1,1.0,0.8927496824109786
+169,40,0.7156916739359411,1.9,1.380037511779196,0.0007076531672552061,0.03663244206429942,0.8055660714262912,1,1.0,0.918972246453137
+169,41,0.7249745327073283,1.9,1.3792470245480095,0.0007086444005218319,0.036766975060545826,0.805442538659414,1,1.0,0.9499151090244272
+169,42,0.682906714757981,1.95,1.3780614818047108,0.0007097516185823316,0.036497904465318476,0.8167498915386432,1,1.0,0.9096890491932703
+169,43,0.6926456365477874,1.9,1.3773929571237051,0.0007112985498670583,0.03672209218344142,0.8051526655218314,1,1.0,0.9088187884926248
+169,44,0.7434665201351733,1.95,1.378113677039516,0.0007089200647772856,0.03662109062327092,0.8167574545361128,1,1.0,0.978221733783911
+169,45,0.74,1.95,1.3808529241560112,0.0007067202200273953,0.03677294739469915,0.817166410170496,1,1.0,1.0
+169,46,0.74,2.0,1.379790971686436,0.0007077243331913648,0.03657355373388162,0.8279555250211182,1,1.0,1.0
+169,47,0.74,2.0,1.378681451441345,0.0007084388598064151,0.036747590941962685,0.8277976254136284,1,1.0,1.0
+169,48,0.7019093903727393,2.0,1.3771729400949644,0.0007092745704082668,0.036509894804435686,0.8275827212071027,1,1.0,0.9730313012424642
+169,49,0.75,1.95,1.3764818684321531,0.0007117484092209663,0.0363904980303159,0.8165139515990276,1,1.0,1.0
+170,0,0.1655098253515498,1.95,1.3666084466269062,0.0007113341872338002,0.03621426029018239,0.8150299762391012,1,0.14307404869375825,0.2276006862468216
+170,1,0.038148380680691235,1.9,1.3664821904324254,0.0007099634708003672,0.03644098057608989,0.8034348415931588,1,0.17883654600164345,0.18871254093344625
+170,2,0.18453826928717829,1.8499999999999999,1.3844520253722747,0.0006994683044494373,0.03667096473102279,0.7942687152478186,1,0.20406163198434285,0.20971205497813708
+170,3,0.21987861968560146,1.8499999999999999,1.3855516048109207,0.0006996775465167575,0.03649472398886326,0.7944484032417185,1,0.2403168620405631,0.2458395828979208
+170,4,0.24555512052177147,1.8499999999999999,1.3855589241417263,0.000699651499220586,0.03675792526616642,0.7944495899798543,1,0.2693137650260985,0.2927653817044403
+170,5,0.2538745442784592,1.8499999999999999,1.385514307708468,0.0006996434114462156,0.036541711464481305,0.7944423014040911,1,0.30357859019997424,0.3081436939948984
+170,6,0.23986120606247513,1.9,1.3853448402046977,0.0006995000591161586,0.036609145341307894,0.8063934613147757,1,0.30811732724067825,0.3220475838873461
+170,7,0.3047876017788593,1.95,1.3854159844266705,0.0006995873309645661,0.03675822983749384,0.8178450446886413,1,0.34733437070305845,0.3861795116587863
+170,8,0.2751395126274462,1.95,1.3853639731795324,0.0006996158053407704,0.036639797362414114,0.8178373046937721,1,0.3938851096539844,0.358618229219508
+170,9,0.331998763524541,1.9,1.3857067145736572,0.0006997691494839904,0.036450975681771344,0.8064500359835381,1,0.4328129407266641,0.3962452907795845
+170,10,0.3757119267506933,1.9,1.380507004991459,0.000700870097842226,0.03667858599273034,0.8056374730506874,1,0.46737200017089126,0.4625437556077894
+170,11,0.3920055259084514,1.9,1.3842135194640517,0.0006993981154640724,0.036416575797160025,0.8062167429943309,1,0.5003345177207266,0.5062390627338692
+170,12,0.4451193491148576,1.95,1.3850176113251789,0.0006995419775496282,0.03666218227235768,0.8177856762128272,1,0.5622323613883712,0.5674213485316972
+170,13,0.4555872867533422,1.95,1.3848351721798244,0.0006996475214449516,0.036751249691605266,0.8177585204249043,1,0.58340886338295,0.607412471333874
+170,14,0.4696789349419939,2.0,1.3722452986688338,0.0006917653049571823,0.03604910550811949,0.8268734498438178,1,0.6066974670402026,0.6233331604197099
+170,15,0.4604085829691504,2.0,1.1955750706440271,0.0007443751364392293,0.034343903870878975,0.8001230851487274,1,0.6240399687862711,0.6359753181821397
+170,16,0.4753105335915326,2.0,1.2038310941238108,0.0007363100839313436,0.034323770600113365,0.8014376012263599,1,0.6548137331335835,0.6446168011269973
+170,17,0.4838851994172113,2.0,1.2099260808085746,0.0007290626730690502,0.03389840497806975,0.8024034492963792,1,0.6712962628351653,0.6512223142771506
+170,18,0.4775202295856234,2.0,1.2141328057770155,0.0007223874865967086,0.03407854693079808,0.8030674748525772,1,0.7052702608448417,0.618040417492289
+170,19,0.48481635636808096,2.0,1.2097307758027158,0.0007199404222997055,0.03402593935373369,0.8023695883754814,1,0.7441837980099293,0.5904761238803642
+170,20,0.5024988304879963,2.0,1.3847386243527964,0.0006991205488792764,0.036710343067231255,0.8286567079191889,1,0.7496036497689108,0.6088579019347732
+170,21,0.5153470605460061,2.0,1.2085200564421512,0.0007192491597873556,0.03389685043558356,0.8021773117428269,1,0.7651228095766411,0.6309931223844988
+170,22,0.5105284194540336,2.0,1.2115905791044874,0.0007132982455050515,0.033793869063930046,0.80266223226982,1,0.8006689430014631,0.6008694741781613
+170,23,0.5578265220951896,2.0,1.3761048724010254,0.0006932904694459406,0.03648225460830448,0.8274257010014652,1,0.8063128054181886,0.6510046664263802
+170,24,0.5541465071114063,2.0,1.3775948654982173,0.0006946711332419796,0.03640591128250807,0.8276387508326909,1,0.8411133777894065,0.6590038533188123
+170,25,0.5933609955483932,2.0,1.3768094377760796,0.000693943884818304,0.03632066690924744,0.8275264709009176,1,0.8656405298073762,0.6903492787514756
+170,26,0.5604400106135976,2.0,1.37791967688637,0.0006952892379138958,0.03645408290721009,0.8276852574828445,1,0.8840182264785454,0.6561090667405978
+170,27,0.57320478925976,1.95,1.3771647401313876,0.0006951470355118026,0.03629917105684914,0.8166112642849739,2,0.8900308782038462,0.6573081265940718
+170,28,0.6339408298309122,2.0,1.3661499337956386,0.0006866451043342248,0.0360799021590663,0.8259976644292021,2,0.9448080635782963,0.6867253479986453
+170,29,0.6317999691883525,2.0,1.3666033150776389,0.0006866054713939541,0.03615969877167926,0.8260628058710311,2,0.9723113125211273,0.7095848139330047
+170,30,0.647129300231041,2.0,1.3642279370296118,0.0006850276476423648,0.03578524972508192,0.8257207858102703,2,0.9926763320858146,0.7335292246557169
+170,31,0.658578705845893,2.0,1.361581144472896,0.0006834372199555362,0.03566423458335977,0.825339109595736,2,1.0,0.7619290194863096
+170,32,0.6186181669023453,2.0,1.358663896652241,0.000681571940625029,0.03579970081889923,0.8249176372947479,2,1.0,0.7287272230078174
+170,33,0.6789276782839004,1.95,1.3633177487583354,0.0006873718267931734,0.036322191023712425,0.81452612900969,2,1.0,0.7630922609463348
+170,34,0.6157633131490238,1.95,1.3627593651922325,0.000685850212097868,0.03603388646017706,0.8144412974254098,2,1.0,0.719211043830079
+170,35,0.6053014602984967,1.9,1.3663484773556034,0.0006909551742826114,0.035979349509462834,0.803407719377361,2,1.0,0.6843382009949892
+170,36,0.6723154166915926,1.95,1.3683109425031912,0.0006957971380464737,0.036391480461420565,0.8152818206245337,2,1.0,0.7410513889719749
+170,37,0.7097559289858578,1.95,1.3685615571302192,0.0006938006372705443,0.03617316095900834,0.8153189583057591,2,1.0,0.765853096619526
+170,38,0.6243562882749971,1.95,1.3723772639833245,0.0006934911747697804,0.03646589249781783,0.8158927202678942,2,1.0,0.7478542942499903
+170,39,0.6597087284404091,1.9,1.3742320265307861,0.0006971768165064145,0.036496663579663136,0.8046518550363077,2,1.0,0.7656957614680303
+170,40,0.617067079260047,1.9,1.371844826606948,0.0006965948247890703,0.03619325617263652,0.8042761615050078,2,1.0,0.7235569308668232
+170,41,0.6779056110350613,1.8499999999999999,1.373132972798246,0.0007006622680532811,0.0364343643907319,0.7924133463754873,2,1.0,0.7596853701168708
+170,42,0.6878859633520034,1.8499999999999999,1.372726159796538,0.0006983153504704672,0.03647962696067635,0.792345647645675,2,1.0,0.7929532111733444
+170,43,0.700213879490609,1.9,1.372162358200863,0.00069609258565969,0.03631138762258189,0.8043259831441772,2,1.0,0.8340462649686962
+170,44,0.7161197723147887,1.95,1.3750835014441325,0.0006932308155658611,0.03629235717272459,0.8162988034874031,2,1.0,0.8870659077159622
+170,45,0.6545444302621917,2.0,1.373372179875691,0.0006924407354190203,0.03626583262014746,0.8270349009341648,2,1.0,0.8484814342073053
+170,46,0.7151412759943776,1.95,1.3730764829696567,0.0006916917709724478,0.03614914252457121,0.8159971876595845,2,1.0,0.8838042533145918
+170,47,0.702881137004739,1.95,1.3706527686364287,0.0006904021862527073,0.03641694353355387,0.8156326105923609,2,1.0,0.9096037900157964
+170,48,0.7632768316680483,2.0,1.3731828086091808,0.0006911461246319529,0.03634421674118554,0.8270074396130701,2,1.0,0.944256105560161
+170,49,0.74392427526364,2.0,1.3764049431577814,0.0006944409508215246,0.03650709209696905,0.8274688731135549,2,1.0,0.9797475842121331
+171,0,0.1861135930913579,2.0,1.359065220474978,0.0006871756547236093,0.035525639774002776,0.8249772105905057,0,0.20122559873480417,0.1854111786581208
+171,1,0.20941832314154468,1.95,1.3665844349805143,0.0006892321063849561,0.03597568553548988,0.8150196920679524,0,0.27073732270772255,0.20374464686151883
+171,2,0.20030370577229764,1.95,1.3712328091939432,0.0006933929637732027,0.03623944889127874,0.8157207179863237,0,0.2834363079080568,0.22309727536358306
+171,3,0.25215356167591474,2.0,1.3709534848666727,0.0006925467857388234,0.036428953475603,0.8266886676943961,0,0.36922371000176396,0.1815469255840305
+171,4,0.2676138771294139,2.0,1.362147887566534,0.0006871551704782088,0.03617618607608676,0.8254218645996741,0,0.44413989440600476,0.1665263978900401
+171,5,0.3078061878291269,2.0,1.321320596745652,0.0006660095844511701,0.03490892382528357,0.8194539917213596,0,0.5402514044473764,0.1723520868339211
+171,6,0.3351538132046886,2.0,1.3195419939630544,0.0006650514870912883,0.0348948679178767,0.8191904156062881,0,0.6023192586263031,0.1807536991805579
+171,7,0.37423077671848964,2.0,0.7433180658746482,0.0002946865168956268,0.02071884237264885,0.717867347294634,0,0.6903773236105603,0.16026615758088522
+171,8,0.39210762162294654,2.0,0.7380468790372975,0.000290035381439325,0.020604499018253376,0.7167966403666988,0,0.7655083520648255,0.15301426932338782
+171,9,0.4375871364665305,2.0,0.7733748139881764,0.000352982210454599,0.022227282579677696,0.7239381005694864,0,0.8550346638239422,0.1519109031231787
+171,10,0.41511094523002445,2.0,1.1358590450060149,0.0007203754136000485,0.03288156891823909,0.7903936385899062,0,0.861731298466853,0.16806141947761066
+171,11,0.4031142820024093,2.0,1.1351417979308325,0.0007238478202562866,0.0324605843618192,0.7902759374511626,0,0.8769190066647731,0.1744889311216669
+171,12,0.4118606454622713,2.0,1.138850851498896,0.0007333314564630319,0.03239754608408593,0.7908931505434922,0,0.8855928509073281,0.1920783503311336
+171,13,0.44900060552404764,2.0,1.1417003509975578,0.0007422262135074315,0.032644179043289354,0.7913669506600778,0,0.909005003360752,0.2179953472658226
+171,14,0.4276417459626544,2.0,1.3334598253529049,0.000708631482127768,0.0355675979749108,0.8212555342476394,0,0.9070289753551233,0.216100519402017
+171,15,0.46005189851917916,1.95,1.3319319006959525,0.0007085385313642307,0.03584640315336981,0.8097442100010017,0,0.9306304385658536,0.22599907697612556
+171,16,0.44818192643045474,1.95,1.3318014223896366,0.0007164166487489416,0.035911242015694664,0.80972653545991,0,0.9471737754783434,0.2310413874637247
+171,17,0.5108556417336843,2.0,1.3301546280212917,0.0007164750574483696,0.03594461724292965,0.8207721405880805,0,1.0,0.23618547244561394
+171,18,0.4970354511908624,2.0,1.3418145418453684,0.0007108506229208035,0.03616528980619221,0.8224793218683386,0,1.0,0.2567848373028745
+171,19,0.50129091468108,2.0,1.342468488372507,0.0007175975716929102,0.03602730503724473,0.8225767519264237,0,1.0,0.27096971560359995
+171,20,0.5243569632298845,2.0,1.3425848296847156,0.0007236379227226052,0.03597941254353911,0.8225954936031642,0,1.0,0.24785654409961452
+171,21,0.47628277863363916,2.0,1.342953729290016,0.0007189482584982554,0.03619461296091485,0.8226479530844416,0,1.0,0.25427592877879707
+171,22,0.5163922070262092,1.95,1.341468883254615,0.0007192678758718121,0.03609899144178526,0.8112124113142772,0,1.0,0.2546406900873639
+171,23,0.5226369092859332,1.95,1.349691261338832,0.0007146998113221957,0.03628748383438001,0.8124670293897618,0,1.0,0.24212303095311047
+171,24,0.5144807321847233,2.0,1.3497692473278056,0.0007107416713010588,0.036029987298791054,0.8236377557542127,0,1.0,0.21493577394907762
+171,25,0.4683430296542081,2.0,1.3502947827935488,0.0007069889811352481,0.035968330526586455,0.8237129914655001,0,1.0,0.22781009884736023
+171,26,0.470294032532427,1.95,1.3490007756626416,0.0007072489517955314,0.0358272896146166,0.8123595298043175,0,1.0,0.23431344177475671
+171,27,0.5111453477898238,2.0,1.34673925021919,0.0007075943251901491,0.03604168592195911,0.8231962747628188,0,1.0,0.2038178259660792
+171,28,0.5071631654683931,2.0,1.3471473150432576,0.0007040657075449543,0.036106861252242946,0.8232546315146211,0,1.0,0.22387721822797707
+171,29,0.509204974449051,2.0,1.3551561880028953,0.0007012333410185111,0.036128911642945606,0.8244161387728518,0,1.0,0.1973499148301698
+171,30,0.4820740821200512,2.0,1.1390593180707949,0.0007518479014552496,0.03262622277469942,0.7909337486334717,0,1.0,0.2069136070668372
+171,31,0.46224952840730915,1.95,1.3554959544726095,0.0007035109014310351,0.036101733394705675,0.8133464567515076,0,0.9991507203869058,0.2086308008418226
+171,32,0.46210237943644006,2.0,1.3534157232433575,0.0007036269445584351,0.03613420183406134,0.824164750722333,0,1.0,0.20700793145480006
+171,33,0.4630263928521446,2.0,1.3528201919448812,0.0007036279935057441,0.03607476587243848,0.824078431628184,0,0.999568331115407,0.2106635346866059
+171,34,0.4877397383777653,2.0,1.3513920441144478,0.0007035616359404856,0.03604691049654964,0.8238712734165012,0,1.0,0.2257991279258842
+171,35,0.4739017601505926,2.0,1.3522048558883153,0.0007091571678973041,0.03623715361819343,0.8239908104167426,0,0.9999820937113904,0.24636307555345469
+171,36,0.4986124083705482,2.0,1.350747667783147,0.0007092471767770604,0.036214880506367356,0.8237794008397128,0,1.0,0.26204136123516064
+171,37,0.5236048126072824,2.0,1.3511320571012195,0.0007146535204307639,0.036200020803193636,0.8238367637487413,0,1.0,0.2453493753576081
+171,38,0.5089921122585908,2.0,1.3511824342798802,0.0007108223096484599,0.0359878497778153,0.8238429628450282,0,1.0,0.2299737075286356
+171,39,0.4679911425690528,2.0,1.3585948904805625,0.0007073884931975291,0.03618535667431757,0.8249151281141408,0,1.0,0.22663714189684248
+171,40,0.5150328375777946,1.95,1.3573239612347368,0.0007075957876733302,0.03622985239325458,0.8136250536806964,0,1.0,0.21677612525931525
+171,41,0.504891895386263,1.95,1.3564611878021482,0.0007045620757469614,0.03619966702874346,0.813493267336877,0,1.0,0.21630631795421001
+171,42,0.49653528962517557,2.0,1.362818456450971,0.0007021883261670245,0.03616737780813489,0.8255228035403963,0,1.0,0.25511763208391847
+171,43,0.52283729597895,2.0,1.363842415383085,0.0007059604971653694,0.03629165365910298,0.8256713261320818,0,1.0,0.24279098659650003
+171,44,0.49976292294718394,2.0,1.3635775218545143,0.0007033152229235563,0.03620623221460688,0.8256324329037582,0,1.0,0.26587640982394634
+171,45,0.478232051821696,1.95,1.3637676915572612,0.0007066198803480364,0.03628629102373379,0.8145999077581347,0,1.0,0.2607735060723199
+171,46,0.5221269280831521,1.9,1.3621687329639753,0.0007071073703700556,0.036297864757879945,0.8027518327219572,0,1.0,0.2404230936105069
+171,47,0.47451672907112874,1.9,1.3612199557905238,0.0007045106273939583,0.036220906040988,0.8026007361133664,0,1.0,0.24838909690376249
+171,48,0.5216705312006398,1.8499999999999999,1.3601413125094217,0.0007048465619819493,0.03631927102522568,0.7902695583936715,0,1.0,0.23890177066879917
+171,49,0.5124258109226759,1.8499999999999999,1.3589507027525891,0.0007022447636207472,0.03605940186718992,0.7900712912067493,0,1.0,0.24141936974225306
+172,0,0.0576627533066463,1.9,1.355322539720633,0.0006851566624927685,0.03541064128913432,0.8016585697759093,0,0.16573918766960496,0.1712235941293477
+172,1,0.19754126535653593,1.8499999999999999,1.3825805848532053,0.0007015788054589203,0.03668230952836156,0.7939634328656993,0,0.2732813374360047,0.1274291012737801
+172,2,0.24121597072051354,1.8499999999999999,1.3500321792203274,0.0006809687501297038,0.03599171801579842,0.7885811559349668,0,0.39405942522284537,0.11197400210458466
+172,3,0.19551890415696307,1.8499999999999999,1.3537510926452339,0.000687761536376691,0.036257066927324555,0.7892027713068838,0,0.40469281628007103,0.1121392588164488
+172,4,0.264802582931045,1.7999999999999998,1.2610929854302524,0.0006301856520206294,0.033599457651397734,0.759940504610902,0,0.476585132254913,0.11389510009693278
+172,5,0.23112531539422168,1.7999999999999998,1.25531479130998,0.0006264723562349463,0.03303739277949054,0.7588834416337733,0,0.4801420567953662,0.13022830892025059
+172,6,0.2663006315628833,1.7499999999999998,1.2688631194601236,0.0006262443830386843,0.033401598732479075,0.7474608434152489,0,0.49430516446940825,0.16192855258373337
+172,7,0.31670822394447196,1.7499999999999998,1.2675954202039954,0.0006264192818326477,0.03379711769181313,0.7472215395451162,0,0.5680571660666315,0.16495119172606457
+172,8,0.36663795720737136,1.7499999999999998,1.2645667771719584,0.0006242728676690387,0.03386557835589037,0.7466482446177826,0,0.6798035813754149,0.14905508219068472
+172,9,0.39812508083363435,1.8499999999999999,0.6278182954357636,0.00022424016904714684,0.01752939761174422,0.6441143442024153,0,0.7726977710833977,0.13015324133425094
+172,10,0.42061754712127036,1.95,0.6467308414080195,0.0002378575718367582,0.018100746465698016,0.6818326092738963,0,0.8433298182512323,0.1442853994025914
+172,11,0.4497992650077619,2.0,1.13255033807825,0.0007592193968079757,0.032696961124391244,0.7898578484717815,0,0.9160044106100808,0.14465833587909874
+172,12,0.47476719596128597,2.0,1.1336837408454898,0.0007544059117657189,0.03265233991417117,0.7900443147485006,0,0.9893638384107145,0.13007220199000058
+172,13,0.48178867495679956,2.0,1.132768528186294,0.0007498664633545989,0.03294954446421362,0.7898909574358705,0,1.0,0.13929558318933177
+172,14,0.47831868674730826,2.0,1.1318436370996006,0.0007455101016516496,0.032976364448861116,0.7897359715947724,0,1.0,0.12772895582436092
+172,15,0.46242688246636804,2.0,1.1309212362690708,0.0007414888002898589,0.033179629861085955,0.7895814269577832,1,1.0,0.14142294155456003
+172,16,0.45953875605099587,2.0,1.3511916262928512,0.0007439429493481555,0.03648704016178329,0.8238539098896328,1,1.0,0.13179585350331938
+172,17,0.4609628852271197,2.0,1.3493545234132784,0.0007451498950842741,0.03670647428135482,0.8235875040936695,1,1.0,0.13654295075706557
+172,18,0.5112099271933161,2.0,1.3473923679113942,0.0007462919860647983,0.0366415188821097,0.8233025715703267,1,1.0,0.2040330906443871
+172,19,0.48383579225602547,2.0,1.3267068722568316,0.0006620219103239259,0.03532545301007911,0.8202483399437878,1,1.0,0.2127859741867515
+172,20,0.48393720112595573,1.95,1.3341160332345028,0.0006713628007826206,0.035032864108955744,0.8100690273743362,1,1.0,0.2131240037531856
+172,21,0.47113432564473773,2.0,1.3385998624426199,0.0006800123095479804,0.035330606299857854,0.8220004451363826,1,1.0,0.20378108548245905
+172,22,0.510352833787842,2.0,1.3464861363151104,0.0006798939668533764,0.035512713347766914,0.823151367781678,1,1.0,0.23450944595947346
+172,23,0.5439902295446452,2.0,1.3465401907502075,0.0006783921935956183,0.03569919416553812,0.8231587992999593,1,1.0,0.313300765148817
+172,24,0.5445774720862451,2.0,1.343684675151961,0.0006769827166765471,0.03594733312916994,0.8227423317340263,1,1.0,0.34859157362081683
+172,25,0.5558544875813147,2.0,1.343267164822205,0.000675618209503592,0.03573731825235169,0.8226810368135706,1,1.0,0.38618162527104904
+172,26,0.5682590194432713,2.0,1.3423133749806262,0.0006742749027076988,0.03513184177623888,0.822541465880909,2,1.0,0.4275300648109039
+172,27,0.5163314055093322,2.0,1.3720684960848373,0.0006949791688944812,0.036089159839164255,0.826849058686326,2,1.0,0.3877713516977739
+172,28,0.5734932122360562,1.95,1.3310460765896912,0.0007096944246938419,0.035544029137946354,0.809608060146483,2,1.0,0.41164404078685374
+172,29,0.511300579232242,1.95,1.3706934967795668,0.0006918518953780359,0.0364258055781599,0.8156391710425973,2,1.0,0.37100193077414007
+172,30,0.6018355104349168,1.9,1.3038862847871877,0.0006988948192394202,0.035564429522923276,0.7933575625857637,2,1.0,0.40611836811638924
+172,31,0.507841603204543,1.9,1.3689001158655763,0.0006894956170413437,0.03610282663304191,0.8038099624184731,2,1.0,0.35947201068180995
+172,32,0.5493448964277381,1.8499999999999999,1.3081193209089843,0.0007396941024689658,0.035828647318886395,0.7815289546562835,2,1.0,0.39781632142579365
+172,33,0.6090562702943362,1.8499999999999999,1.3130650085378317,0.0007315117730468116,0.036060075614012366,0.7823694263323168,2,1.0,0.4301875676477874
+172,34,0.5689498399292953,1.8499999999999999,1.366714109534648,0.000687399330644021,0.03595034172437781,0.7913511174071991,2,1.0,0.46316613309765076
+172,35,0.5829342623470253,1.7999999999999998,1.3653994718931688,0.0006869769292676597,0.03610500013712642,0.7784701709644439,2,1.0,0.5097808744900841
+172,36,0.6437296101712646,1.8499999999999999,1.363416213814286,0.0006861159443086377,0.03614417309434238,0.7908056390725833,2,1.0,0.5457653672375488
+172,37,0.6539590040396586,1.8499999999999999,1.3682539567802832,0.0006882429644238168,0.03616860833290973,0.79160553283283,2,1.0,0.579863346798862
+172,38,0.6099629026103381,1.9,1.371420350315145,0.0006901182532853017,0.036228219499164487,0.8042072939402953,2,1.0,0.5998763420344605
+172,39,0.5676356821390655,1.8499999999999999,1.3704771032022924,0.0006894819329270373,0.03623444537651415,0.7919724473747897,2,1.0,0.5587856071302182
+172,40,0.6588693902955686,1.7999999999999998,1.3728378706004754,0.0006913540188527493,0.0362674398312258,0.7797518011974363,2,1.0,0.5962313009852288
+172,41,0.641491767396172,1.7999999999999998,1.3751091287201285,0.000692487885704393,0.03629271255408516,0.78014200574707,2,1.0,0.6383058913205729
+172,42,0.6857073693087548,1.8499999999999999,1.3712596906189432,0.0006947767801395448,0.03626717048270847,0.7921030946986363,2,1.0,0.6856912310291827
+172,43,0.6918084981001356,1.8499999999999999,1.3753756057732556,0.0006949595981987094,0.036324850765381875,0.7927801314467141,2,1.0,0.706028327000452
+172,44,0.645249162964872,1.9,1.3780414184953484,0.0006953353028816151,0.03638575460664644,0.805249370457612,2,1.0,0.7174972098829063
+172,45,0.6469506242247671,1.8499999999999999,1.3768130403783256,0.0006948527720921036,0.03625659678930515,0.7930161384597332,2,1.0,0.7231687474158901
+172,46,0.6791270355763049,1.9,1.3748741765637786,0.0006940544415634197,0.03647850965012242,0.80475179187315,2,1.0,0.7637567852543495
+172,47,0.6141924523059547,1.9,1.3745145459210986,0.0006930495735038182,0.03631272887033511,0.8046949623795078,2,1.0,0.7139748410198486
+172,48,0.7009657094728682,1.8499999999999999,1.3763342900421238,0.0006956333337908212,0.03642987833801916,0.7929378009342396,2,1.0,0.7365523649095606
+172,49,0.6822402147084745,1.8499999999999999,1.3785822847600835,0.000695765619673581,0.036264146701435684,0.7933066937739722,2,1.0,0.7741340490282483
+173,0,0.025434580111264843,1.9,1.3643121076820843,0.000711098848516027,0.03615359311883996,0.803092259691918,1,0.15343886188771377,0.18019678452059773
+173,1,0.052975236366729545,1.8499999999999999,1.3814111293970404,0.000698759237844488,0.036600628400961656,0.7937711380260473,1,0.18888980775252034,0.19139771088573806
+173,2,0.16106323893309046,1.8499999999999999,1.3813491332066006,0.000698376528395721,0.03657586927713798,0.7937608638541551,1,0.20938193879557462,0.19103487804953548
+173,3,0.2232805556174286,1.8499999999999999,1.3780034697258534,0.0006950702498315306,0.03651809800643318,0.7932115405562777,1,0.24957439523702155,0.24483599174206655
+173,4,0.24178217523842105,1.8499999999999999,1.3847775746969937,0.0006991941504646742,0.036731849071761004,0.7943218172599921,1,0.2844831812920984,0.2932963424052723
+173,5,0.29326515301402706,1.9,1.3845135833101943,0.0006990871469768354,0.036500655506361335,0.8062635209053549,1,0.34283463121484925,0.3537710017602912
+173,6,0.27357052572335316,1.9,1.384517526183947,0.0006989605791880148,0.0364746880971933,0.8062640972516056,1,0.3569349740850476,0.36932178696444695
+173,7,0.2645227700439856,1.95,1.384688116174811,0.0006990497769023966,0.0367294512012538,0.8177364255346902,1,0.390825064275603,0.32730914777914805
+173,8,0.3356190117014372,2.0,1.3851738267789453,0.000699442081745215,0.03663960629243195,0.8287185824762751,1,0.43588322044366856,0.37088574507989935
+173,9,0.31787979488755935,2.0,1.379994732864584,0.000700769657558823,0.03619575605864359,0.8279825668137752,1,0.4607968872095006,0.37853680001253037
+173,10,0.32484664743967245,2.0,1.3803277857757246,0.0007025862613922686,0.03659025104649545,0.8280305148591485,1,0.46534173067925294,0.3956998505599042
+173,11,0.3206809380553335,2.0,1.3804162811649487,0.0007041951243801132,0.036711740195217,0.8280435740452965,1,0.4940637600090966,0.37685144683898286
+173,12,0.3613358747689241,2.0,1.3814232205668726,0.000703086130656853,0.036560209326640336,0.8281865865809439,1,0.5085021650053194,0.393116695889321
+173,13,0.3894124878297281,2.0,1.3821191259443113,0.0007020679890208313,0.03665781638483333,0.8282852972053731,1,0.5418008190676431,0.44230720067556945
+173,14,0.3569139988108469,2.0,1.3830914421695675,0.0006995262043678384,0.036669524721982164,0.8284228218315032,1,0.5582967053992592,0.411984388837144
+173,15,0.37107142201218835,1.95,1.382823682695065,0.0006990508638693297,0.03650678032937143,0.8174583794148972,1,0.5677978172988568,0.41317431697548535
+173,16,0.4149698409142415,2.0,1.382674330997478,0.0006994696387075841,0.036683874472138334,0.8283635100892829,1,0.6051349831650751,0.4430528254940382
+173,17,0.43343022750187216,2.0,1.385090298973549,0.0006996903418902329,0.03674743088136687,0.8287067963540928,1,0.6367101794787328,0.46248718570126357
+173,18,0.41562918234706636,2.0,1.3848538478548684,0.000699351912173205,0.03642852382929022,0.8286731329770489,1,0.6686696032543649,0.4605378034844013
+173,19,0.494659477399969,2.0,1.3853999677380022,0.0006995805482899449,0.036640978188435466,0.8287507187667662,1,0.7229771983973328,0.5182286601367863
+173,20,0.4824468791192334,2.0,1.385160576241899,0.0006995107046659935,0.03672931318869162,0.8287167211140182,1,0.748817195389291,0.5430666698783898
+173,21,0.5537957648088331,2.0,1.3852921553434925,0.0006998337893326558,0.03644210417395123,0.8287354890562801,1,0.8041534736969712,0.6071145844334817
+173,22,0.5157281784467571,2.0,1.3792703346944173,0.0006997105819029827,0.03653075798275258,0.8278790662989568,1,0.8340440106838982,0.5737019139106592
+173,23,0.5339251652678458,1.95,1.3785890858030616,0.0006952486531182114,0.03647488060337775,0.8168245046799266,1,0.8413696763919287,0.5912576490369142
+173,24,0.6036140905899834,2.0,1.3774889850226737,0.0006943022410446208,0.036445528986287154,0.8276235409028572,1,0.8865144114674953,0.6633610866766174
+173,25,0.5681521645808298,2.0,1.3795276582445195,0.0006997398269285218,0.03641838134651311,0.8279157389395725,1,0.9280718972950998,0.6230780188759664
+173,26,0.644328880300661,1.95,1.3784179479992094,0.0006996849302247387,0.03655979410244142,0.8168002249427408,1,0.97976491501747,0.6747430476455767
+173,27,0.6726891757518658,1.95,1.3803248718381858,0.0006990280760986246,0.03655239025109549,0.8170852037752319,1,1.0,0.7422972525062193
+173,28,0.6675054027504157,1.95,1.3817258175720246,0.0006985878077837484,0.036646331817967184,0.8172943603952284,1,1.0,0.7583513425013854
+173,29,0.6472733842490342,2.0,1.3824512809401446,0.0007004046182805829,0.03630575408551188,0.8283320609928914,1,1.0,0.7575779474967806
+173,30,0.6543722876967826,1.95,1.3826786666140523,0.0006994870908208026,0.03643955946165162,0.8174368692930403,1,1.0,0.7812409589892753
+173,31,0.6556462566152558,2.0,1.382388278846994,0.0006985737470491004,0.03662337353563382,0.8283225813174602,2,1.0,0.7854875220508525
+173,32,0.6256309182007349,2.0,1.3751236789014543,0.0007022957881196153,0.03657711983363969,0.8272881224213517,2,1.0,0.7521030606691165
+173,33,0.6139337731054746,1.95,1.375556839538519,0.0007059355893636306,0.036568374801547024,0.8163735814254137,2,1.0,0.7131125770182484
+173,34,0.6998028605683021,2.0,1.3751967454247647,0.0007093705269287254,0.036594675295417226,0.8273005837045772,2,1.0,0.7326762018943405
+173,35,0.7056232217920547,2.0,1.3765266059872265,0.0007063214021428547,0.03663711022609451,0.8274896334185077,2,1.0,0.752077405973516
+173,36,0.6083697621183868,2.0,1.3769291211325927,0.0007038196733719454,0.036334986818822336,0.8275463710396973,2,1.0,0.6945658737279561
+173,37,0.6965684163150371,1.95,1.3767653698445081,0.0007061646583166568,0.03640172259555783,0.8165547488540882,2,1.0,0.7218947210501239
+173,38,0.6576012547482153,1.95,1.3765648404754833,0.0007038384503456592,0.036425531563322906,0.8165240120440187,2,1.0,0.7586708491607176
+173,39,0.6906239780703889,1.9,1.3752343328567496,0.000704385100845788,0.036548476111000795,0.8048116214084651,2,1.0,0.8020799269012959
+173,40,0.6747391984427843,1.9,1.383498940352071,0.0006992130610898701,0.036609183707220425,0.8061050210891779,2,1.0,0.8157973281426143
+173,41,0.7049489650861391,1.95,1.3839910347556095,0.0007005444655039544,0.036720850494910307,0.8176329527675276,2,1.0,0.8498298836204637
+173,42,0.641942995578745,1.95,1.3840573619563443,0.0006997111150410575,0.03671677316953229,0.8176425940518457,2,1.0,0.8064766519291502
+173,43,0.7009255921852494,1.9,1.3832339158056683,0.0006996330364586531,0.03662167469981307,0.806063725772648,2,1.0,0.8364186406174978
+173,44,0.7122901828233661,1.9,1.3828995780320947,0.000698703725230327,0.036581169355419274,0.8060111644645287,2,1.0,0.8743006094112202
+173,45,0.7246989754316491,1.95,1.3823438746926415,0.0006978581475184098,0.036459988900273785,0.8173864154104034,2,1.0,0.9156632514388301
+173,46,0.7138347008460326,2.0,1.381672676606717,0.0006970954198810933,0.036460526284623804,0.8282203750573356,2,1.0,0.9461156694867751
+173,47,0.7410845553761545,2.0,1.3824321869063967,0.000698078393203923,0.03663358167919776,0.8283286842626754,2,1.0,0.9702818512538481
+173,48,0.7731522998984167,2.0,1.3815775488601645,0.0006971513400932047,0.036447617043511356,0.8282068565911571,2,1.0,0.9771743329947222
+173,49,0.6872451743541699,2.0,1.3832796935371932,0.0006980737602796552,0.036493935314737255,0.828449165089181,2,1.0,0.9574839145138997
+174,0,0.18604076978921658,1.95,1.3652838705150352,0.0007104399116311706,0.03616213130977739,0.8148299350998663,2,0.14980822695996518,0.25372493001743496
+174,1,0.20724669146666874,1.9,1.3862119376838458,0.0007001724583393818,0.036739979908954765,0.8065290090934244,2,0.17597096002497975,0.28952769152225605
+174,2,0.16480532027359224,1.9,1.3862185603229564,0.0007001347472621582,0.03670348060981851,0.8065300307188892,2,0.21908175893270562,0.25724205566836666
+174,3,0.24770074426071048,1.8499999999999999,1.3856966889511242,0.000699855594788797,0.036443100221640004,0.7944721526353239,2,0.2633637167089203,0.30785085859047456
+174,4,0.19840212417561337,1.8499999999999999,1.3857733379696417,0.0006998280204522121,0.03676598987195434,0.7944846590714598,2,0.28826199666893887,0.2769910850267927
+174,5,0.31033099817890314,1.7999999999999998,1.3859256430116558,0.0007000178293658976,0.03654513941164287,0.7819942039162724,2,0.34466082880350535,0.30822222219167
+174,6,0.308558597768745,1.7999999999999998,1.385909303923237,0.000699919727649718,0.036703764586624124,0.7819913849786614,2,0.3784692905848022,0.35723627178274714
+174,7,0.31320500245868266,1.8499999999999999,1.3859745431196895,0.0006999512269730772,0.03671177152076992,0.7945175498866937,2,0.42340428658397655,0.37947762608364
+174,8,0.39359931776942514,1.9,1.3859912227267956,0.0007000646252266991,0.03638377611271264,0.8064945327516967,2,0.47808800921061656,0.4078803802839283
+174,9,0.4240782637103023,1.9,1.383219610659349,0.0006981708175284359,0.036517856571900216,0.8060610323437707,2,0.5289897374581359,0.44160789575682624
+174,10,0.3896110674203952,1.9,1.3829430505612001,0.0006978640665687467,0.03664176538156675,0.8060176990491591,2,0.5575932366249793,0.4552459092346783
+174,11,0.4728978857365688,1.8499999999999999,1.3823677428766583,0.0006975114287788583,0.036333539874729405,0.7939272819286343,2,0.6223172937512347,0.4799032274535831
+174,12,0.4730418243994767,1.8499999999999999,1.372624309681466,0.0007067129765851843,0.03654302702002736,0.792331652878998,2,0.6683373132429721,0.5190229970076262
+174,13,0.49089102713651006,1.9,1.3764049974093495,0.0007051878039459794,0.036491221833959975,0.8049957073513441,2,0.7016783302973745,0.5340656500585342
+174,14,0.4820952363570864,1.95,1.379551167997914,0.0007039198215944009,0.0363272255963791,0.8169710028947187,2,0.7244001148529878,0.5411173013863042
+174,15,0.5258300329773367,2.0,1.3791840014474253,0.0007045835664271191,0.0365056519077533,0.8278681526963902,2,0.7511553499303751,0.5845596433506218
+174,16,0.5550637696362132,2.0,1.381642621684015,0.0007034649264248033,0.03666278030581875,0.8282179114848838,2,0.7964652647456002,0.6215922124599101
+174,17,0.6124863868042714,2.0,1.3673461393738597,0.0007072267632258448,0.03649938543236882,0.8261754341893247,2,0.847549104146845,0.6448891504851111
+174,18,0.5783520588770513,2.0,1.3773381276280618,0.0007034918048711439,0.036394602041444374,0.8276046403599948,2,0.880229638035452,0.6542006788762351
+174,19,0.6665227867845883,1.95,1.3761091654206337,0.0007038536703031817,0.0364832881724438,0.8164557409174041,2,0.9566392294788542,0.6795569833101557
+174,20,0.6360835073184451,1.95,1.375745624812018,0.0007015945500970645,0.0364069922290383,0.8164005787530175,2,0.9858186939657186,0.7058534324405252
+174,21,0.6457282270235475,1.9,1.3742888492398624,0.0007018694893043342,0.03637216146305765,0.8046622618882513,2,1.0,0.7190940900784913
+174,22,0.6773402006454472,1.95,1.3722664390417905,0.000702110034872208,0.03628192308185748,0.8158786619483211,2,1.0,0.7578006688181573
+174,23,0.7157858273088423,1.95,1.3763399169419572,0.0007006571352566992,0.03627766221867359,0.816489359937457,2,1.0,0.785952757696141
+174,24,0.6223731650193735,1.95,1.376158544996503,0.0006986490689032596,0.036400554591337536,0.8164615807804152,2,1.0,0.7412438833979116
+174,25,0.679794011547823,1.9,1.3767128909054378,0.000701262587567916,0.036593903170886136,0.8050428030867017,2,1.0,0.7659800384927433
+174,26,0.6625980642070668,1.9,1.37948085279386,0.0007003918337409722,0.03653739579668401,0.8054765919857544,2,1.0,0.7753268806902224
+174,27,0.6869617534440943,1.95,1.3780409377654204,0.0007004275170419481,0.03651602342240554,0.8167440255822601,2,1.0,0.7898725114803141
+174,28,0.6248583792190552,1.95,1.380500391089882,0.0006996012426945715,0.036589680474114185,0.8171116061997983,2,1.0,0.7495279307301838
+174,29,0.6154847081860344,1.9,1.3809731435571293,0.000701741450546302,0.03633228090203295,0.8057107261067699,2,1.0,0.7182823606201145
+174,30,0.7049580776289414,1.95,1.3808798401258993,0.0007037059724177405,0.03667933051281351,0.8171695308527556,2,1.0,0.7498602587631381
+174,31,0.6611937881936383,1.95,1.3812191618664922,0.0007019070190174678,0.03670373860127379,0.8172196838239352,2,1.0,0.7706459606454606
+174,32,0.6200095236931432,1.9,1.3800861741399433,0.0007021807234082163,0.03650273684318138,0.8055719790224727,2,1.0,0.733365078977144
+174,33,0.604890055871609,1.8499999999999999,1.3798490624831339,0.0007041837115128546,0.03650873334058484,0.7935170902236863,2,1.0,0.6829668529053636
+174,34,0.594142129519147,1.9,1.3793023005874132,0.0007060503345291941,0.03673369757719794,0.8054503875576304,2,1.0,0.6471404317304901
+174,35,0.6803707347223524,1.95,1.3788988320843707,0.0007073597471678552,0.03672592865484332,0.8168744685010433,1,1.0,0.6679024490745081
+174,36,0.6503388980430554,1.95,1.3822491899869993,0.000700896436416877,0.036631538614830025,0.8173731888697425,1,1.0,0.701129660143518
+174,37,0.6342285523887035,1.9,1.3824412708864298,0.000702669350395203,0.03670069955767525,0.8059407352599822,1,1.0,0.7140951746290116
+174,38,0.6126515231143389,1.95,1.382788714426882,0.0007015017341875279,0.03673023048143917,0.8174538928395013,1,1.0,0.6755050770477963
+174,39,0.6284831419117727,1.9,1.3819333542050236,0.0007015837021302133,0.03669595431788539,0.805860944914203,1,1.0,0.6949438063725754
+174,40,0.6305967021031429,1.95,1.3819748934404072,0.0007004021053527364,0.03655286890611839,0.8173320922839279,1,1.0,0.7019890070104761
+174,41,0.6748688935796151,2.0,1.38191420189102,0.0006992894676496875,0.03640757207420586,0.8282553586707372,1,1.0,0.7495629785987168
+174,42,0.6763097957885889,2.0,1.3834398600422997,0.0006992022113131282,0.036527335614542786,0.8284722476584823,1,1.0,0.7876993192952959
+174,43,0.6885846645199385,2.0,1.3837946250380622,0.0007003228916897747,0.0364591989433848,0.828522974448439,1,1.0,0.828615548399795
+174,44,0.6505905388835816,2.0,1.3555669981689433,0.0007279319512634654,0.03649737123947766,0.8244833246081398,1,1.0,0.801968462945272
+174,45,0.687521247686334,1.95,1.35420187745844,0.0007310595552414703,0.03650339897494893,0.813158289260589,1,1.0,0.8250708256211133
+174,46,0.696894432867772,1.95,1.3515927086145494,0.0007338524918787041,0.03632867014842754,0.8127623994312086,1,1.0,0.8563147762259066
+174,47,0.656043462653867,2.0,1.349468668329066,0.0007357209848586745,0.03638874435614629,0.8236013480362875,1,1.0,0.82014487551289
+174,48,0.6428958527179298,1.95,1.3488011571217295,0.0007386909957067642,0.03633907271500017,0.8123386862730293,1,1.0,0.776319509059766
+174,49,0.6339552285613345,2.0,1.3836115759573588,0.0006998008302596956,0.03656569823817922,0.8284968182563711,1,1.0,0.7465174285377815
+175,0,0.09527709544448043,2.0,1.3557823531780304,0.0006832499732552092,0.03538961348600651,0.8245015561001391,0,0.0851357681901134,0.20407596056145025
+175,1,0.13761817351470582,1.95,1.3567665432262697,0.0006827179411208632,0.03569554884521477,0.8135329647368075,0,0.12614039772442553,0.22387338141645205
+175,2,0.15677686523487375,1.95,1.3582591981099565,0.0006820906229474949,0.03609070645930501,0.8137591000159927,0,0.15408676092273402,0.2504738695526005
+175,3,0.22534547994249915,2.0,1.3598874172854496,0.000682168930316428,0.03630865973166317,0.8250944506429784,0,0.25367140385511544,0.24625639466817656
+175,4,0.24096718532758954,2.0,1.3717487489849594,0.0006933775811345577,0.036326695289207865,0.8268028171139228,0,0.31903518021828564,0.24451037746758425
+175,5,0.23763793555127544,2.0,1.3710686829622825,0.000693202293215095,0.036334229578658686,0.826705359845276,0,0.35463968318661065,0.25260687425543726
+175,6,0.25440176901778516,2.0,1.370689820047588,0.0006922525604054807,0.03618881434462374,0.8266508036669676,0,0.3835024351729431,0.27000264982869304
+175,7,0.301896683067389,2.0,1.3701997871516685,0.0006914404931337844,0.03607142021241087,0.8265803382666983,0,0.45326158133745537,0.26864016844135613
+175,8,0.3244629041262845,2.0,1.3435263279305314,0.0007086079341371471,0.035918157016909855,0.8227284626414842,0,0.5197856536700899,0.2551621421941619
+175,9,0.33373954388589444,2.0,1.3432553988002465,0.0007109616095255394,0.03571180516209919,0.8226896318334636,0,0.5759947777876665,0.277805442569426
+175,10,0.3946324971729141,2.0,1.342666707816555,0.0007089076346713891,0.035736573805189804,0.8226031428802915,0,0.6658907787865158,0.260920618861026
+175,11,0.4331391309815174,2.0,0.8091998228972248,0.0011100398278588756,0.03387509280067866,0.7313376568089106,0,0.7702469323932059,0.2501345267474502
+175,12,0.4635422892948324,2.0,0.8060722130646736,0.0011017836960784992,0.03283784903128768,0.7307194414655152,0,0.8696882539482449,0.21888995905178135
+175,13,0.4211995538693255,2.0,1.297138389408738,0.0007292449891845644,0.034850105760356256,0.8158675784503161,0,0.8899576172725198,0.21738835653439176
+175,14,0.4345172249602948,1.95,1.2961130866873267,0.0007300502983490488,0.03543982394252201,0.804171485604611,0,0.9144603917253207,0.2291102275672217
+175,15,0.47890178217998375,2.0,1.2932818783485018,0.0007315009662405738,0.035700372973628464,0.8152881973595466,0,0.9523177118900317,0.2599156580799035
+175,16,0.5283681709903375,2.0,1.2950780823817982,0.0007367508013362634,0.035757283715815685,0.8155601199575437,0,1.0,0.26122723663445835
+175,17,0.5269935469991677,2.0,1.2942778327237578,0.0007316947377541618,0.03519118818775515,0.8154381926981914,0,1.0,0.256645156663892
+175,18,0.5257238853991125,2.0,1.2933391097417464,0.0007270463103825551,0.034982246338475825,0.8152954742329416,0,1.0,0.25241295133037506
+175,19,0.5214244254853256,2.0,1.2923145043562112,0.0007228850420348432,0.03460021576469065,0.8151398762329729,0,1.0,0.2380814182844188
+175,20,0.5160451232914709,2.0,1.291252780175889,0.0007190607685433502,0.03522226297851229,0.8149786815086468,0,1.0,0.22015041097156968
+175,21,0.5090662833153297,2.0,1.2901899276671667,0.0007156688578205501,0.035492979694805235,0.8148173383823853,0,1.0,0.19688761105109864
+175,22,0.48478793531146436,2.0,1.1217549526130335,0.0006597335421751008,0.031676358064147196,0.7880271627871801,0,1.0,0.2159597843715477
+175,23,0.49053235855618565,1.95,1.292635259866648,0.0007241012664137827,0.03517827650867507,0.803621341345121,0,1.0,0.23510786185395208
+175,24,0.5090036285754813,2.0,1.2910114397870203,0.0007299211651895627,0.03464639602889993,0.8149455631237423,0,1.0,0.23001209525160432
+175,25,0.5103811286992928,2.0,1.3080960137258875,0.000721778083811071,0.034982373745623026,0.8175057946353718,0,1.0,0.23460376233097557
+175,26,0.5130151269307689,2.0,1.321807152626521,0.0007156042717759224,0.03561271549434195,0.8195406360171326,1,1.0,0.24338375643589621
+175,27,0.5377244085737992,2.0,1.342872151039646,0.0006750209725379915,0.035398910618691895,0.8226232317725967,1,1.0,0.2924146952459971
+175,28,0.50795865568491,2.0,1.340170008140404,0.0006735353695615264,0.03531491725167896,0.8222281725357173,1,1.0,0.2931955189497
+175,29,0.5546026436687408,1.95,1.3455107204120265,0.0006811624658084111,0.03569829643946281,0.8118189850376194,1,1.0,0.3486754788958026
+175,30,0.5563712882137313,1.95,1.3416101085257228,0.0006793950420792146,0.03567635745930078,0.81122182654083,1,1.0,0.3879042940457706
+175,31,0.5387241063376506,2.0,1.340859979069815,0.0006774404102941647,0.035139268729960635,0.8223301435598805,1,1.0,0.3957470211255017
+175,32,0.5694265430085966,2.0,1.3464290653050779,0.0006855064531141065,0.03537982288088086,0.8231446937287118,1,1.0,0.43142181002865515
+175,33,0.5306527005399639,2.0,1.3807348424012456,0.0006963593800588606,0.036391427615561196,0.8280866974479334,1,1.0,0.40217566846654657
+175,34,0.5832904039459973,1.95,1.3814410657911949,0.0006967730213693792,0.03640440851754169,0.8172512941143296,1,1.0,0.4443013464866575
+175,35,0.5339105723029038,1.95,1.382749385181906,0.0006977782100257056,0.03652706512508472,0.8174469126358237,1,1.0,0.4130352410096794
+175,36,0.5964097722222447,1.9,1.3832021642243852,0.0006980084180945039,0.03664409639648562,0.8060582542113071,1,1.0,0.4880325740741488
+175,37,0.6098546581648047,1.9,1.3841645877181499,0.0006988184658108696,0.036530837968712794,0.8062089170848659,1,1.0,0.5328488605493487
+175,38,0.5863587159315915,1.95,1.384779069586642,0.0006996912027347871,0.03673751664938664,0.817750172353236,1,1.0,0.5545290531053049
+175,39,0.5680131158320592,1.9,1.3841767299324224,0.0006995675493565848,0.036679608236397904,0.806211048195939,1,1.0,0.5267103861068639
+175,40,0.6209692423932704,1.95,1.3845518708859474,0.0006993315425199192,0.03663958186631442,0.8177162021701594,1,1.0,0.5698974746442348
+175,41,0.5699076234256026,1.95,1.385023480325103,0.0007002235117231257,0.03648811898279452,0.8177867538772169,1,1.0,0.5330254114186753
+175,42,0.6090584914396255,1.9,1.3852359160538568,0.0006998870139406348,0.036737908980862106,0.806376576010098,1,1.0,0.5635283047987518
+175,43,0.6176369293420977,1.9,1.3854232038530447,0.0006997116796725873,0.036710566226137976,0.8064057614670818,1,1.0,0.5921230978069921
+175,44,0.5755167565769361,1.95,1.3853884119388855,0.0006995474119418655,0.03668119161353208,0.8178409251602576,1,1.0,0.5517225219231205
+175,45,0.5886319481604301,1.9,1.3855324663519841,0.0006996692807106431,0.03675315974458011,0.806422805229308,1,1.0,0.5621064938681002
+175,46,0.616641848727764,1.95,1.3851182501246158,0.0006993527069569068,0.036735671410128984,0.8178006157448928,1,1.0,0.5888061624258797
+175,47,0.6406324807428625,1.95,1.3850302277613462,0.0006993363816972221,0.036463497021646155,0.817787494936883,1,1.0,0.6354416024762082
+175,48,0.615153161224182,1.95,1.3772709945722126,0.0006998870546902204,0.036595852484118695,0.8166285957338483,1,1.0,0.6505105374139397
+175,49,0.595009432103087,1.9,1.3763429559015943,0.00070022724565309,0.036393932260088226,0.8049844105820144,1,1.0,0.6166981070102897
+176,0,0.07848107536094082,1.8499999999999999,1.3530353043410044,0.0006777479533855729,0.03515487900944321,0.7890803337031989,0,0.1902806581117918,0.17456270705408028
+176,1,0.2106928958535284,1.7999999999999998,1.377571931598644,0.0007029474506446919,0.03660931278276545,0.7805677184524955,0,0.29098961340963914,0.14765683496557588
+176,2,0.22168030509154632,1.7999999999999998,1.360967379693234,0.0006856059232560245,0.03626469952661433,0.7777044200278437,0,0.3548253113084324,0.13250060189391114
+176,3,0.2723784880959702,1.8499999999999999,1.3598868600000502,0.0006850322386886141,0.03631258941184352,0.7902208121682887,0,0.468978578563736,0.1159568555682528
+176,4,0.2964963623148133,1.8499999999999999,1.302258223613767,0.0006843599313869995,0.03502888765875185,0.7805076126757384,0,0.5552572421324546,0.08131155153943803
+176,5,0.254651823174432,1.8499999999999999,1.3067446827171807,0.0006987745627016833,0.03514183182162846,0.7812801716513127,0,0.5687905595788436,0.0904519978096486
+176,6,0.33845861264411625,1.7999999999999998,1.318134698009318,0.0006935346998652596,0.035003093347731294,0.7702143203617808,0,0.6668260095680069,0.07242736272304506
+176,7,0.3793850955323324,1.8499999999999999,0.708324451949667,0.00036471217110384664,0.02185040970218266,0.6624102947677865,0,0.7731062017834108,0.0671420493965603
+176,8,0.4177940497415687,1.9,0.7142510012220556,0.00036887526511736557,0.02196236267461251,0.6802647501577671,0,0.883275400042717,0.04827963241493968
+176,9,0.4109290529766456,1.95,1.1259433583021357,0.0006806345851120129,0.032157248991436724,0.7759649132605824,0,0.9232954473227962,0.07203624682509027
+176,10,0.3962189575947611,2.0,1.1307593392232778,0.0006912714036694167,0.032210584221582926,0.7895378391537682,0,0.9290902215535853,0.08194289657775658
+176,11,0.3945859330493351,2.0,1.1350717372429124,0.0007010693804977014,0.032082791367979056,0.7902567743662828,0,0.9183694808872537,0.09079380231477854
+176,12,0.43333905526902233,2.0,1.136432697178622,0.000708570417294213,0.03179064620695052,0.7904847503665301,0,0.9591437919813413,0.09893846158828606
+176,13,0.46701566989570964,2.0,1.1383882624977368,0.0007170169395116908,0.03217238560430154,0.7908112390048524,0,1.0,0.09005223298569888
+176,14,0.4299495388115363,2.0,1.1367958384971657,0.0007122634524668766,0.03268851900017123,0.7905461099925769,0,1.0,0.09983179603845431
+176,15,0.465717122202743,2.0,1.1379182473815446,0.0007195534964385278,0.03305680794664657,0.7907343137968181,0,1.0,0.08572374067580997
+176,16,0.46734330984621175,2.0,1.136376430601376,0.0007149344796705086,0.032839851855826004,0.7904775394973583,0,1.0,0.09114436615403919
+176,17,0.43112081539184044,2.0,1.1347608336276969,0.0007102058341795739,0.0322883712721833,0.7902082664125573,0,1.0,0.1037360513061348
+176,18,0.47397965134842296,2.0,1.135609909584598,0.0007172153536854789,0.03191878005830415,0.7903513137388088,0,1.0,0.11326550449474328
+176,19,0.45638762157773,2.0,1.134006645883722,0.000712378003688719,0.032046332573099696,0.7900839309502649,0,1.0,0.12129207192576656
+176,20,0.47604300391793436,2.0,1.1362786866162973,0.0007212051721571199,0.03278129941339797,0.7904634276549912,0,1.0,0.12014334639311446
+176,21,0.4363671350857776,2.0,1.1347125438350676,0.0007163783061444459,0.03295772111396607,0.7902023074434975,0,1.0,0.12122378361925866
+176,22,0.46175688926989483,2.0,1.1354993446119594,0.0007230889905297825,0.032983548626562706,0.790334939560246,0,1.0,0.1391896308996493
+176,23,0.46230759782750436,2.0,1.1373588904019627,0.0007312674291683457,0.03270812970216332,0.7906456178811976,0,1.0,0.141025326091681
+176,24,0.4824019360444953,2.0,1.1385724818943632,0.0007383190537446588,0.03220286885134977,0.790848759695108,0,1.0,0.14133978681498435
+176,25,0.48035440575714417,2.0,1.1372319329500657,0.000733663817428227,0.03229032796791235,0.7906253958400675,0,1.0,0.1345146858571472
+176,26,0.47592942919817627,2.0,1.135828987614775,0.0007287816535383681,0.03287327219032069,0.7903914442766742,0,1.0,0.11976476399392086
+176,27,0.43128094521981797,2.0,1.1343753943055626,0.0007240886868760366,0.033068127270941314,0.7901489654252656,0,1.0,0.10426981739939319
+176,28,0.47105500546411366,2.0,1.1353825750892677,0.0007309126712136497,0.03314062054516679,0.7903181825575584,0,1.0,0.10351668488037882
+176,29,0.4735332574553481,2.0,1.1339856948791551,0.0007261978432937643,0.03264786509513417,0.7900850402735843,0,1.0,0.11177752485116034
+176,30,0.4306318891123634,2.0,1.1325109258802613,0.000721578684695302,0.0318985910946386,0.7898388107130406,0,0.9793532535801452,0.12963529226768428
+176,31,0.47796462444830146,2.0,1.133281661375824,0.0007279752666705006,0.032187975044994474,0.7899688418128963,0,1.0,0.12654874816100492
+176,32,0.48343877545077546,2.0,1.1318234930686923,0.0007233340668918691,0.032679581641076094,0.7897252616193702,0,1.0,0.14479591816925153
+176,33,0.48527623136077247,2.0,1.1302704997343205,0.0007184061347966439,0.032908623809157996,0.7894656185052455,0,1.0,0.15092077120257497
+176,34,0.4493356796611571,2.0,1.128636918818375,0.0007135072378435805,0.03276597536233373,0.7891923431596649,0,1.0,0.16445226553719036
+176,35,0.4840566575745825,2.0,1.1293408410960692,0.000720252826848203,0.032473112654853725,0.78931167288733,0,1.0,0.14685552524860832
+176,36,0.4735275290146704,2.0,1.1277566723590615,0.0007153212959403145,0.031781500876063996,0.7890464651320346,0,1.0,0.17842509671556772
+176,37,0.4551144975230162,2.0,1.1303108593426807,0.0007244794239928482,0.03207634746640202,0.789474345407828,0,1.0,0.1837149917433873
+176,38,0.4804323698918304,2.0,1.1308503863132164,0.0007305875113712199,0.0327708711260633,0.7895660330121868,0,1.0,0.20144123297276792
+176,39,0.4874733883726908,2.0,1.2927435796379758,0.0007291729929663677,0.035661641996287886,0.8152064179998548,0,1.0,0.22491129457563586
+176,40,0.47240657748650694,2.0,1.292546854259854,0.0007336729552741963,0.03576722793283252,0.8151781364416452,0,1.0,0.24135525828835644
+176,41,0.46598122686307347,2.0,1.2915929527789491,0.0007349320271446806,0.035390452228788394,0.8150347554363517,0,1.0,0.2199374228769115
+176,42,0.5082252594115054,2.0,1.290602145272988,0.0007360644200558453,0.03506279143926137,0.8148856831412274,0,1.0,0.22741753137168477
+176,43,0.4716734284251946,2.0,1.3062968472042533,0.000728017462735089,0.035094808432527325,0.8172390873343983,0,1.0,0.2389114280839819
+176,44,0.508457151603533,1.95,1.305236091791778,0.0007290198069550025,0.03537937698010334,0.8056038653896302,0,1.0,0.22819050534510998
+176,45,0.5059087763361516,1.95,1.3180751361571243,0.0007225564049584275,0.035763896986426486,0.8076046460043292,0,1.0,0.2196959211205054
+176,46,0.4689656460225383,2.0,1.3306777805420007,0.0007166080403251143,0.03568485974668213,0.8208491252595834,0,1.0,0.22988548674179438
+176,47,0.4722822543552987,1.95,1.3307500581879415,0.0007169297644088609,0.03582931482014684,0.809564657795337,0,1.0,0.24094084785099562
+176,48,0.47377935941087607,2.0,1.3284315851801172,0.0007181248338862781,0.03550976819158462,0.8205190177778062,0,1.0,0.2459311980362535
+176,49,0.47676204573549796,2.0,1.3284199328851005,0.0007183196739774338,0.03564744505410345,0.8205173591540215,0,1.0,0.25587348578499325
+177,0,0.18061749487276169,2.0,1.3639529066935754,0.0006847498423170656,0.03552979728150444,0.8256811237874054,0,0.2052087798192262,0.16177994315023736
+177,1,0.20231009168780137,1.95,1.3685944533689463,0.0006993636334090547,0.03625786944703959,0.815325586815157,0,0.28048350895393465,0.16705562702075827
+177,2,0.16390559513785766,1.95,1.367322887231413,0.0006991365083258377,0.036370376268117365,0.8151339821655765,0,0.28371106770553656,0.16807056018547678
+177,3,0.23783209694191954,1.9,1.3692295334751312,0.0006976872708178573,0.036554751776408385,0.8038644893235117,0,0.36592191701094023,0.17154443379181142
+177,4,0.27108890616874604,1.9,1.36779646979557,0.0006972694670956171,0.036315583258015614,0.8036383131162067,0,0.4412852380685144,0.18191603647113416
+177,5,0.23864358665556934,1.9,1.3261671834596966,0.0007502190891768249,0.03608323072763925,0.7970030613742395,0,0.4616935852550201,0.17988717517853767
+177,6,0.2701801050063293,1.8499999999999999,1.335810867906961,0.0007421566883737112,0.03604941316098179,0.7862210048777546,0,0.4810287641522172,0.19256199781814126
+177,7,0.3178925957833313,1.8499999999999999,1.3372746733151781,0.0007370011179240458,0.036214810169249156,0.7864652029788985,0,0.5495661114208572,0.1935538373832947
+177,8,0.3421234038584901,1.8499999999999999,1.335674499686244,0.0007371807051546163,0.036428037090419835,0.7861964107112193,0,0.6048105986318011,0.20066388135256552
+177,9,0.3859677141063686,1.9,0.7427424391514065,0.0009597325812696914,0.03173838867530999,0.6866839902570634,0,0.6975847147966097,0.18977942729241573
+177,10,0.40477857767549646,2.0,0.6482428456951077,0.0002924456174384804,0.019182988553679125,0.698218266425544,0,0.7658614436993874,0.19478000065247167
+177,11,0.4508833332825858,2.0,0.7068198373635631,0.0003919386514722117,0.021941853857698305,0.7104568164377468,0,0.8800177277611865,0.16292080726037064
+177,12,0.43960601988012626,2.0,1.1341527898881625,0.0007464621057133576,0.03219728067675376,0.7901194727017214,0,0.903210629654924,0.1944058933938552
+177,13,0.45542019126272815,2.0,1.134864019043556,0.0007525367862851414,0.03268841026381788,0.790239405886227,0,0.9264964457913584,0.2160720431539493
+177,14,0.4656290812882034,2.0,1.3270964327160506,0.0006660203780767852,0.0351838701011236,0.8203069487412531,0,0.936910373157299,0.23621644008427928
+177,15,0.48637175343537997,2.0,1.3256463736443618,0.0006659840510939616,0.035367871717208274,0.8200930950146257,0,0.984211042699467,0.24229112118531035
+177,16,0.5165312180968056,2.0,1.3241590122007445,0.0006658070362979946,0.03509743983655224,0.8198734923270335,0,1.0,0.22177072698935163
+177,17,0.4912970112932442,2.0,1.3226180139326753,0.0006644725356636454,0.03480454731438551,0.8196454095028579,0,1.0,0.23765670431081393
+177,18,0.47905327844889706,1.95,1.3210906663627333,0.0006643441775022069,0.0349178595107771,0.8080547055948762,0,1.0,0.26351092816299015
+177,19,0.5021494483298428,2.0,1.3247207002395265,0.0006688880427086331,0.0350487880236936,0.8199573377295439,0,1.0,0.2738314944328091
+177,20,0.5259604542262968,2.0,1.3246875434275833,0.0006695312247976127,0.03518972667826187,0.8199526327333485,0,1.0,0.286534847420989
+177,21,0.5315913046938762,2.0,1.3339797026841687,0.0006709424769045735,0.035518342644830794,0.8213207751555248,0,1.0,0.27197101564625376
+177,22,0.47930184738313353,2.0,1.3325620479375178,0.0006697109603660156,0.0353489152440183,0.8211122735615584,0,1.0,0.26433949127711176
+177,23,0.482778489545001,1.95,1.3367422508815194,0.0006742346933525082,0.035034130441699465,0.8104736431498769,0,1.0,0.2759282984833366
+177,24,0.5309041848788064,2.0,1.338855315597213,0.0006781893231814862,0.03535913871717496,0.822037285496533,0,1.0,0.269680616262688
+177,25,0.5235078497314571,2.0,1.3385994898206555,0.0006771253484931595,0.035383913217263536,0.821999545798622,0,1.0,0.2450261657715238
+177,26,0.5057338867529831,2.0,1.337209427460486,0.0006755031458385183,0.035436232409348456,0.8217955908481747,0,1.0,0.2857796225099437
+177,27,0.5316587488754871,2.0,1.3358561532415971,0.0006757510376582967,0.03571135323148171,0.8215973934473999,0,1.0,0.272195829584957
+177,28,0.5140086306303349,2.0,1.3344164757756123,0.0006741213004256676,0.03553728400205332,0.8213857966435364,0,1.0,0.31336210210111626
+177,29,0.49629125030320914,2.0,1.3330030577521557,0.0006742935912657343,0.034997539259342555,0.8211783888279663,0,0.9935721693768764,0.32954127517486187
+177,30,0.5450839011759164,2.0,1.3360365152320237,0.0006790645155996755,0.0352495842450629,0.8216247997258339,0,1.0,0.3169463372530545
+177,31,0.5007170536003339,2.0,1.3346124631033178,0.0006772445028844414,0.03522158847409483,0.8214154646626302,0,1.0,0.3357235120011129
+177,32,0.5014494480358677,1.95,1.3369779404658733,0.0006818524110391703,0.035537174769637844,0.8105121837650604,0,1.0,0.3381648267862254
+177,33,0.5415143857179663,2.0,1.3375604249534192,0.0006858246310190969,0.03570495724607776,0.8218500101924773,0,1.0,0.3383812857265539
+177,34,0.5445997547916722,2.0,1.3477846769107795,0.0006856802004812704,0.035985386675673255,0.8233420043879937,0,1.0,0.34866584930557387
+177,35,0.5380327343332452,2.0,1.3553914581716617,0.0006860200946266152,0.03565392095861471,0.8244457887784411,0,1.0,0.3267757811108173
+177,36,0.5021623477174828,2.0,1.3615632963506612,0.0006868882490074721,0.03581446353744403,0.8253375316661116,0,1.0,0.3405411590582761
+177,37,0.5111442254279387,1.95,1.3628157203110596,0.0006893417308346364,0.03595195953641235,0.8144508693194471,0,0.9992717656926139,0.3714517305029771
+177,38,0.5340148675207991,2.0,1.3630688922446244,0.0006913779823843163,0.03634255147710805,0.8255557584475465,0,1.0,0.38004955840266347
+177,39,0.5542681080709756,2.0,1.362744680337064,0.0006920143461037584,0.03631240956103605,0.8255092459730059,0,1.0,0.3808936935699184
+177,40,0.5598145777776593,2.0,1.3679634980374074,0.0006922546053795145,0.036334518435505385,0.8262597763583122,0,1.0,0.3660485925921976
+177,41,0.5507174947726184,2.0,1.367021481567046,0.0006910132869274356,0.036053806969200464,0.8261241474218705,0,1.0,0.36905831590872795
+177,42,0.5094787777987511,2.0,1.3713286796574122,0.000691863354678198,0.03605711840543766,0.8267422211684777,0,1.0,0.3649292593291701
+177,43,0.5543307063266955,1.95,1.3720497732132164,0.0006933742174204396,0.03614201584668915,0.8158434870601289,0,1.0,0.34776902108898455
+177,44,0.5579993968437493,1.95,1.3707908736735912,0.0006921209612020419,0.036426651550443355,0.8156538942573431,0,1.0,0.35999798947916434
+177,45,0.5137101624663806,2.0,1.3697779991917574,0.0006909589651196631,0.036148566466100096,0.8265197305360925,0,1.0,0.37903387488793505
+177,46,0.5526161304052386,1.95,1.3707138263926082,0.0006926304702487814,0.036425499316844995,0.8156424621742654,0,1.0,0.37538710135079534
+177,47,0.537904915788886,1.95,1.374274352611506,0.0006933547525216788,0.03616913775428803,0.8161774736538568,0,1.0,0.39301638596295324
+177,48,0.558478428864269,2.0,1.3736893692497814,0.0006935225498099966,0.03638032733032284,0.8270805790269611,0,1.0,0.39492809621423
+177,49,0.5666970489752852,2.0,1.3770427799685543,0.0006945726603340541,0.03625929752933423,0.8275599519075422,0,1.0,0.3889901632509502
+178,0,0.18521020011785894,2.0,1.3667893274944825,0.0007051649643135943,0.0362144029377084,0.8260948637382685,1,0.14928670068648064,0.2516517328108889
+178,1,0.18819831248069394,1.95,1.3665766156555113,0.0007063784856724718,0.03639209117362642,0.8150236832381742,1,0.16923011079696917,0.26835422720635416
+178,2,0.23567159471862148,2.0,1.3658355944862826,0.0007052939562234233,0.03631551404783303,0.8259578428833818,1,0.2081911942477438,0.3413170567317466
+178,3,0.20775440910749882,2.0,1.3848700177015243,0.0006992170297690222,0.036461925162037036,0.8286753903630214,1,0.2576184827132139,0.3156900534073775
+178,4,0.2796352056000756,1.95,1.3851927114314229,0.0006993942237710556,0.03668633830927864,0.8178117227948697,1,0.30038469402678664,0.3649377599645365
+178,5,0.2498740770838327,1.95,1.3850013910508296,0.0006992903852902665,0.03667252852375608,0.8177831841991159,1,0.3403844780416659,0.34573428622388774
+178,6,0.32528292140171944,1.9,1.3852684002735032,0.0006994545932709709,0.036427057795364315,0.8063815128031135,1,0.39205794760031754,0.3948658078719748
+178,7,0.29128032736248766,1.9,1.3850367171552778,0.0006992938973861295,0.03673385636991577,0.8063452872786321,1,0.4334990110025111,0.35960240987161074
+178,8,0.3718399150032549,1.8499999999999999,1.3822976944508738,0.000701249313984616,0.036439443837194815,0.7939170444313832,1,0.47741535765630566,0.43624590646910877
+178,9,0.3765596965548125,1.8499999999999999,1.385695963830324,0.0006998244147863567,0.03671574937800524,0.7944720240505841,1,0.5040103083704264,0.4498519106888064
+178,10,0.4235304549017669,1.9,1.3859837578195966,0.0006999533972934514,0.03669710841700308,0.8064933330505234,1,0.5557211291663826,0.5041400107840461
+178,11,0.43269959571697303,1.9,1.385866409556385,0.0006999212516139704,0.036450637342802863,0.8064750087721948,1,0.5950403222991725,0.5156115559910135
+178,12,0.409312967045271,1.95,1.3860581258853828,0.0007000035328618224,0.036690672079521536,0.8179408118411916,1,0.6380265840772543,0.48034111138123076
+178,13,0.4265168859119677,1.9,1.3755233833511091,0.0006989631652204824,0.03650155796201211,0.8048553211461934,1,0.6483053929492394,0.49064909577423965
+178,14,0.43575890870155987,1.95,1.3760730648838762,0.0007019541055743471,0.03618981335300346,0.8164497616469422,1,0.6534389322004899,0.5146111194045464
+178,15,0.44702553326436345,2.0,1.376705692426676,0.0007047269340118435,0.036366925023017756,0.8275147414356707,1,0.6778765955210233,0.519582983519847
+178,16,0.4505704049689506,2.0,1.3769581662297503,0.000707054481449826,0.036537831827688494,0.8275514394053307,1,0.6879293625203063,0.5179955332027602
+178,17,0.4460030911224925,2.0,1.3766973589825624,0.0007092849890323967,0.036738996801141045,0.8275148531487542,1,0.718423680805118,0.4954453960014843
+178,18,0.46312394392156997,2.0,1.3787798322158473,0.0007073124256442684,0.03655308108932833,0.8278113278915177,1,0.731822648396694,0.501316281876308
+178,19,0.4746805593431762,2.0,1.3783998821714287,0.0007091215359312944,0.03668911228245515,0.8277576790359097,1,0.7536577009466864,0.5107249298816722
+178,20,0.5359651579892352,2.0,1.3778517697445272,0.0007107549248129121,0.03673856602514752,0.8276799838472014,1,0.7906799419035294,0.5656439374260779
+178,21,0.5731459708591755,2.0,1.3767817726647857,0.0007115167955540721,0.03635543665013767,0.827527538593216,1,0.8370857685400802,0.627705544810478
+178,22,0.5551639308261916,2.0,1.3483764447392126,0.0007086609148532513,0.0362009756111756,0.8234347429491485,1,0.8517569135441786,0.6482038846950671
+178,23,0.5423561448912934,2.0,1.3471141228755714,0.0007097231529590391,0.03585275165192152,0.8232514482073664,1,0.8781047083808806,0.6037142051298034
+178,24,0.618379431660424,2.0,1.3557724726225675,0.0007064541282459031,0.03599620076145117,0.8245068415575453,1,0.9233571845638513,0.6634551927829445
+178,25,0.5911441373803095,2.0,1.355446365146618,0.0007098619850558435,0.03613185120553899,0.8244606367500874,1,0.923012979489647,0.6731298186148355
+178,26,0.6608768892703145,1.95,1.354121276788597,0.0007109625281939112,0.03620507889886744,0.8131399359961357,1,0.9795986474342651,0.7301247676553614
+178,27,0.6192181847436081,1.95,1.352803094733434,0.000714942675921707,0.03628085016976116,0.8129407747888635,1,1.0,0.6973939491453605
+178,28,0.679134726806556,1.9,1.3608190156206683,0.0007112575253663958,0.036287188727999554,0.802539344704771,1,1.0,0.7637824226885198
+178,29,0.6975671386320879,1.9,1.3594122232371415,0.0007145950473109804,0.03638976519405844,0.8023173741987426,1,1.0,0.8252237954402928
+178,30,0.675120616355955,1.95,1.3421051641894275,0.0007489469704950569,0.036552140492324234,0.8113189231812474,1,1.0,0.8504020545198498
+178,31,0.6578442153921618,1.9,1.3449942588868684,0.0007409759132817142,0.03649337705535215,0.8000290943476478,1,1.0,0.826147384640539
+178,32,0.6481078486632151,1.95,1.342197701141535,0.0007443113660699663,0.03648459610429737,0.8113316692147826,1,1.0,0.7936928288773838
+178,33,0.701466083919195,2.0,1.3603543608116955,0.0007131125918880933,0.03626400850541718,0.82517075500565,1,1.0,0.8382202797306497
+178,34,0.675054466898124,2.0,1.3384160143289607,0.0007473847869907228,0.036430284622612705,0.8219932604590827,1,1.0,0.8501815563270798
+178,35,0.7056330592836135,1.95,1.3402181318966175,0.0007401201559187503,0.036388756159196886,0.8110271799492482,1,1.0,0.8854435309453785
+178,36,0.7134853234547573,1.95,1.3375674121734789,0.0007460009892896568,0.03621792640407519,0.8106223957062999,1,1.0,0.9116177448491912
+178,37,0.7193714441227139,2.0,1.3357105434595204,0.0007502758361278619,0.0363948048193664,0.8215978976381064,1,1.0,0.9312381470757132
+178,38,0.6809735659751834,2.0,1.3348384737288885,0.0007526218377747654,0.036420281884224116,0.8214707264619063,1,1.0,0.9032452199172778
+178,39,0.7175494557276783,1.95,1.3328908814487581,0.0007552785159425294,0.03636903272956866,0.8099062976922715,1,1.0,0.9251648524255939
+178,40,0.6770990625197422,1.95,1.3295895340299766,0.0007602298455936053,0.03629283642946897,0.809399036185989,1,1.0,0.8903302083991405
+178,41,0.7132675783238498,1.9,1.3275498876243443,0.0007630339389557833,0.03642011313139128,0.797230819253367,1,1.0,0.9108919277461657
+178,42,0.6775892476436368,1.9,1.323978013318123,0.0007682848597260102,0.036280095354858224,0.7966545002653477,1,1.0,0.8919641588121227
+178,43,0.71680075916867,1.8499999999999999,1.3218167147949313,0.0007712548086008859,0.03650523024514905,0.7838693414100405,1,1.0,0.9226691972289
+178,44,0.6933683958544093,1.8499999999999999,1.3179389573686475,0.000776799802844852,0.036270705833016156,0.7832135385736055,1,1.0,0.9112279861813645
+178,45,0.6735239260163324,1.7999999999999998,1.3209939001552455,0.0007674266100284929,0.03636191529277176,0.7707460769615682,2,1.0,0.8784130867211081
+178,46,0.6528936072135336,1.8499999999999999,1.3792954467948841,0.0007002941893352185,0.036593984924054315,0.7934250918210103,1,1.0,0.8429786907117787
+178,47,0.6756881575682085,1.7999999999999998,1.3266897337116883,0.0007547943214042457,0.036216256556893124,0.7717465083762811,1,1.0,0.852293858560695
+178,48,0.7019561514724686,1.7999999999999998,1.3268232807612799,0.0007480162566509732,0.03612309912007011,0.7717676445478265,1,1.0,0.8731871715748952
+178,49,0.6820646452039628,1.7999999999999998,1.3241977460133867,0.0007500918220981272,0.036149061874957464,0.771305578969881,0,1.0,0.8735488173465425
+179,0,0.13809938657246593,1.8499999999999999,1.3583748588849565,0.000680955487203146,0.03533479651129552,0.7899687021015834,0,0.1359263862829927,0.21242944019756285
+179,1,0.1263776403400585,1.7999999999999998,1.360193854075418,0.0006817344648308201,0.03584783883825567,0.7775693248206538,0,0.14636191741053675,0.22610957791947933
+179,2,0.16503215398973806,1.8499999999999999,1.3604242178027957,0.0006814874107383249,0.03619927554601356,0.790308702188112,0,0.16631704772255396,0.261684449669055
+179,3,0.22291270288829737,1.8499999999999999,1.361842596439802,0.0006824357277807179,0.03630090056507641,0.7905439743772583,0,0.24801300755954048,0.27902499954827065
+179,4,0.27607840011705637,1.8499999999999999,1.3565256282131781,0.0006858099230331793,0.035934989173437654,0.7896633292433929,0,0.35892522623215706,0.2750276987473118
+179,5,0.2565457642398778,1.8499999999999999,1.3593486300726907,0.0006911433441350314,0.03594447580528006,0.7901336015687199,0,0.3791185093554993,0.2829945349922602
+179,6,0.30645053083485285,1.9,1.3591146347408003,0.0006895152259472273,0.03580892021443898,0.8022622140830719,0,0.45086598110607873,0.28701379464140453
+179,7,0.3337699224111304,1.9,1.3156205116628952,0.0007194699086270615,0.03556833521216106,0.7952813658770197,0,0.5247789092776107,0.2795278623336205
+179,8,0.38064855147112364,1.9,1.3165128386825993,0.0007277834759781657,0.03584903266198712,0.795429311998138,0,0.6276162058486784,0.265340230438841
+179,9,0.41900122746865104,1.95,0.7637853598780295,0.0010083401970062654,0.032699709792183874,0.7069883959691966,0,0.7386787432379963,0.24509910057817488
+179,10,0.4492685888602031,2.0,0.7664225440223977,0.0010030781715956157,0.03239235958548836,0.722807094489575,0,0.8237927645734536,0.2325049434360722
+179,11,0.46865176653572954,2.0,1.355579474776082,0.0007264458482455542,0.03652831111805059,0.8244846999912187,1,0.8938323521067243,0.23706275231013285
+179,12,0.460505406543399,2.0,1.3428513479474349,0.0006792142353153655,0.03573965861760427,0.8226214200113239,1,0.9191582725036771,0.24280699180642712
+179,13,0.4525900255908515,2.0,1.3463657280291956,0.0006848441650648198,0.035591147857167375,0.8231352802208147,1,0.9541981064226813,0.20303594340592984
+179,14,0.5016430345754851,2.0,1.3534606560207791,0.0006847921977918979,0.035584586820334906,0.824165803294723,1,0.9813042361284026,0.23040446708041346
+179,15,0.5386668047335209,2.0,1.3521505885837217,0.0006830627474296924,0.03592063187720874,0.8239753705542533,1,1.0,0.295556015778403
+179,16,0.5171982105344127,2.0,1.3503328330533044,0.0006825253456005087,0.03578733128507687,0.8237114120102229,1,1.0,0.323994035114709
+179,17,0.5667431910665093,1.95,1.3533712833873326,0.0006876621430815619,0.03593221362089067,0.8130188685915346,1,1.0,0.3891439702216972
+179,18,0.5861529695200809,1.95,1.3505794713615205,0.0006870288736705776,0.035829004995538066,0.8125938957847606,1,1.0,0.45384323173360264
+179,19,0.598077513214562,2.0,1.3857622168833856,0.0006998648376891194,0.03677526962998915,0.8288022047922619,1,1.0,0.4935917107152066
+179,20,0.6170106440004496,2.0,1.3859283788583372,0.0007001765645538933,0.036764845769678346,0.8288258685305585,1,1.0,0.556702146668165
+179,21,0.5910662490644006,2.0,1.385889610347611,0.0007004741399642205,0.03646847255336621,0.8288204526725613,1,1.0,0.5702208302146686
+179,22,0.5729347209317786,1.95,1.3856393499245285,0.0007006412336040969,0.03663740746505523,0.8178786320602546,1,1.0,0.5431157364392617
+179,23,0.5878645779195657,2.0,1.3859583995306386,0.0007004198912394652,0.036531791348964865,0.8288301966696789,1,1.0,0.5595485930652189
+179,24,0.6183006872519912,2.0,1.3856498391381071,0.0007004997407988956,0.03651602417100105,0.8287864392097206,1,1.0,0.5943356241733035
+179,25,0.6456211631700911,2.0,1.3857434085380689,0.0007001511646682403,0.03664236063679421,0.8287996173307284,1,1.0,0.6520705439003034
+179,26,0.6224255182239046,2.0,1.3609863853843394,0.0007125748862057709,0.036376849577201484,0.8252617595688093,1,1.0,0.6747517274130153
+179,27,0.6539852294518171,1.95,1.3596763167056138,0.000713784017193565,0.036415568137944505,0.8139833741245636,1,1.0,0.7132840981727234
+179,28,0.6185362959106397,1.95,1.3586224273189271,0.0007104141503260421,0.03620698891602354,0.8138227260754882,1,1.0,0.6951209863687992
+179,29,0.6789314046826463,1.9,1.3655511684895907,0.00070758811458217,0.03620935883174576,0.8032870155833711,1,1.0,0.7631046822754877
+179,30,0.6759467066801175,1.9,1.3644028605487961,0.000710530783320399,0.03631308664707264,0.8031064308569463,1,1.0,0.7864890222670581
+179,31,0.6862274006879361,1.95,1.3638671299986738,0.0007073064202021223,0.03646053009191141,0.8146151325265852,1,1.0,0.8207580022931203
+179,32,0.6449549000380541,2.0,1.3100499586571401,0.0007921501428975337,0.036649962393052016,0.8178180936253395,1,1.0,0.7831830001268469
+179,33,0.656134915555257,1.95,1.3647769143789446,0.0007065161402893157,0.03644511835504952,0.8147522478440721,1,1.0,0.7871163851841901
+179,34,0.6626985523667437,2.0,1.36312248603217,0.0007079104325245866,0.03629648463082166,0.8255682381119047,1,1.0,0.8089951745558122
+179,35,0.6890258816126765,2.0,1.3073028035926382,0.0008007543535969664,0.036645107971661255,0.8174110013938498,1,1.0,0.8300862720422548
+179,36,0.6719611500006262,2.0,1.304206669497383,0.0008033157504183368,0.03617718508480096,0.816949214464007,1,1.0,0.8398705000020871
+179,37,0.6519271900128629,2.0,1.3113333184143312,0.0007907802940550236,0.036254036973996984,0.8180088176814585,1,1.0,0.806423966709543
+179,38,0.6421639470596179,1.95,1.3088890253257146,0.0007959570939817501,0.036624863311748516,0.8061962170961892,1,1.0,0.7738798235320596
+179,39,0.6985175968900851,2.0,1.3633731766742891,0.0007076667951283536,0.036238098139357376,0.8256042657935249,1,1.0,0.8283919896336167
+179,40,0.6486828791809802,2.0,1.3039655334206692,0.0008038402759505465,0.03665877350440429,0.8169133083508877,1,1.0,0.7956095972699339
+179,41,0.6638213858588933,1.95,1.3637471743520182,0.0007080475417167911,0.03631855441754394,0.8145972403239851,1,1.0,0.8127379528629776
+179,42,0.6930910439810541,2.0,1.2966616066494392,0.0008124082153086212,0.03649196978617956,0.8158209347481253,1,1.0,0.8436368132701803
+179,43,0.7089437375736258,2.0,1.2958141660543772,0.0008147089687966392,0.03627067550665135,0.8156942584476629,1,1.0,0.8964791252454194
+179,44,0.7199604180634471,2.0,1.2929374074765956,0.0008187687115953437,0.036601634644254866,0.8152626048496161,1,1.0,0.9332013935448235
+179,45,0.6828792455959337,2.0,1.2899685149759454,0.0008221978461831253,0.03671311199235222,0.8148160777358364,1,1.0,0.9095974853197789
+179,46,0.7197366787264303,1.95,1.2871142588063684,0.0008265814456001406,0.036667974661883145,0.8027810409475696,1,1.0,0.9324555957547674
+179,47,0.6799258551475039,1.95,1.2818438599310933,0.0008329259071283309,0.03624619040412848,0.8019472958160063,1,1.0,0.8997528504916796
+179,48,0.68725560907656,1.9,1.2788873732055002,0.00083732374679026,0.03660874332456178,0.7892751969235732,1,1.0,0.8908520302551998
+179,49,0.6737125263754711,1.95,1.2851909146672238,0.000825335189487844,0.036557689384893524,0.8024759576746395,1,1.0,0.8790417545849033
+180,0,0.16073051204842312,2.0,1.3652955895310952,0.0007074953153802523,0.03614629476809367,0.8258808358243024,1,0.12618080364234321,0.23419396863828607
+180,1,0.1873599389158124,1.95,1.365532711254519,0.0007061941409186661,0.03634871805186479,0.8148661967504167,1,0.15898271149534204,0.27922284772558525
+180,2,0.16647350521527768,1.95,1.3647820172202234,0.0007053002535280298,0.03631500259128637,0.8147526509907206,1,0.16295811575014155,0.2709675297174035
+180,3,0.20405523122917488,1.9,1.364520622202002,0.0007056073584684111,0.03646495289509208,0.8031234944880506,1,0.1949009991822274,0.2869827718542797
+180,4,0.18545955263038866,1.9,1.3637007966005716,0.0007046330722794345,0.03621267609635443,0.8029935263542849,1,0.2411166322563122,0.2633763324262125
+180,5,0.23632530385940145,1.95,1.3853770456801062,0.0006996942099794161,0.036611360019639314,0.8178392755807607,1,0.2737174276787927,0.2894611092929478
+180,6,0.25545434587141597,1.95,1.3853052261250702,0.0006997230989405387,0.03644490023695824,0.8178285843968961,1,0.29645346096472086,0.3229098716184255
+180,7,0.27083853526113155,2.0,1.3851830139191246,0.0006997449853135308,0.03672544634388967,0.82871997252283,1,0.31528671527492574,0.3490794971705376
+180,8,0.312548398099916,2.0,1.385059245511212,0.0006997767062262695,0.03672051086726885,0.8287024127325694,1,0.35415849582062425,0.40294999923888775
+180,9,0.34953607159386035,2.0,1.3841415352692887,0.0006987450741267609,0.03652248975667717,0.8285718070614542,1,0.40061640083322664,0.4642983708685657
+180,10,0.3532346529653766,2.0,1.383678922233377,0.0006994441284165163,0.03663543655589457,0.8285062859033279,1,0.4117068183598881,0.49517308540473787
+180,11,0.337741562796555,2.0,1.3840153882627748,0.0007003610970711548,0.036700671687938766,0.828554347445571,1,0.41597760416454893,0.5045017371024512
+180,12,0.4060111706196755,2.0,1.3844681394665728,0.0007000193784835367,0.03634761056693412,0.8286185550566134,1,0.4725689759871744,0.5566119340826858
+180,13,0.4476230622107343,2.0,1.3846064354261287,0.0006996641255421485,0.0366464683687074,0.8286380926622142,1,0.5345757578323225,0.6126425302593511
+180,14,0.46312552487266817,2.0,1.363231512658147,0.0006850548605267543,0.03584628482281928,0.8255773556903477,1,0.5795730309921843,0.6376543749193149
+180,15,0.5097107732269547,2.0,1.3616774439610324,0.000684200787071203,0.036165661274693235,0.8253532112912022,1,0.6313812277315559,0.6905276071144408
+180,16,0.54208198543406,2.0,1.1580173815173564,0.0006777226698557413,0.03264049132740228,0.7940270741508394,1,0.6741326545032116,0.7414297454425848
+180,17,0.5052101086632639,2.0,1.1827942102691205,0.000667131473547278,0.03260623421066161,0.7980463516718167,1,0.7098303542815573,0.7042598898354699
+180,18,0.5132952228694696,2.0,1.1769507560099897,0.0006627503096756559,0.03263616635537672,0.7971015141313385,1,0.7537768003364784,0.6726150091162606
+180,19,0.5256458559170506,2.0,1.1708839152347603,0.0006579887220167051,0.0326946130459237,0.7961170052934985,1,0.8067741795648182,0.6431206136370777
+180,20,0.5370115307931629,2.0,1.3635832743641267,0.0007082033515368489,0.036323879842133436,0.825634668468368,1,0.8095041041594708,0.6440329637645819
+180,21,0.547672142732548,2.0,1.3625931482633902,0.0007091450971693032,0.03644578582419686,0.8254923532375483,1,0.8368808738624105,0.6430659772919459
+180,22,0.5658843082508274,2.0,1.3614659393812847,0.000710022171384302,0.03632292870271211,0.825330166765881,1,0.861923869282999,0.6703825351254256
+180,23,0.582839890235313,2.0,1.360170132607973,0.0007109016178279622,0.036255987116742924,0.8251435379143895,1,0.8933880586953007,0.6849488891906422
+180,24,0.5938925630095682,2.0,1.3586934876705246,0.0007117316917874713,0.03620491408821992,0.8249306225596247,1,0.9055058428238641,0.7056340862667414
+180,25,0.5930090473794265,2.0,1.3570404098443924,0.0007124875238080558,0.03626380727175178,0.8246919752104682,1,0.943117598275666,0.6858733602305335
+180,26,0.6066530449502922,2.0,1.3640525968493102,0.0007091373868519147,0.036445223595296325,0.8257024916249364,1,0.9498796878946332,0.6890038993081297
+180,27,0.6283186053748997,2.0,1.36230355260549,0.0007096316584450008,0.03631274924361275,0.8254507718906814,1,0.9932849812717117,0.7033487095540497
+180,28,0.6369296711263799,2.0,1.3603159049176394,0.0007101249352213842,0.036196610604625264,0.8251643450902242,1,1.0,0.7230989037545996
+180,29,0.6402909297293754,2.0,1.358122521839254,0.0007104463275725116,0.036210644660865834,0.8248477769209461,1,1.0,0.7343030990979179
+180,30,0.6450134521929414,2.0,1.355737027309566,0.0007106952272259169,0.03630862979901884,0.8245029400871252,1,1.0,0.7500448406431376
+180,31,0.6792217918094702,2.0,1.3531477143365103,0.0007108061734889207,0.03634266306603531,0.8241279893833503,0,1.0,0.7974059726982339
+180,32,0.6847489902183445,2.0,1.3475203207191158,0.0006761068503549688,0.035557262678719115,0.8233007651269899,0,1.0,0.7824966340611481
+180,33,0.6360969912640057,2.0,1.348852084086901,0.0006793710870468699,0.035356847830974585,0.8234953710649368,0,0.999970684465649,0.7870290582591534
+180,34,0.6667428411769069,1.95,1.3461109666701554,0.0006763315279037074,0.03515214086665842,0.8119091913616062,0,1.0,0.8224761372563562
+180,35,0.6474158369402778,1.95,1.3828529760010455,0.0006980763790782663,0.036520813868383704,0.8174624597062039,0,0.9975445578809434,0.8279933792930017
+180,36,0.691825817431171,2.0,1.3842276697817357,0.0006987326586864913,0.036654485888137245,0.8285840377834462,0,1.0,0.8060860581039032
+180,37,0.6474822131967494,2.0,1.3844579533981598,0.0006991030192935975,0.03651800329315678,0.8286168482638194,0,1.0,0.8249407106558311
+180,38,0.6802716052211508,1.95,1.3853712939123735,0.0006995236721711212,0.03674934690735687,0.8178383678781989,0,1.0,0.8675720174038359
+180,39,0.6997029580438944,1.95,1.3847228503791822,0.0006991149479536572,0.03670580398241546,0.8177416218133864,0,1.0,0.865676526812981
+180,40,0.662821922570197,2.0,1.3845597304677808,0.0006989698940350708,0.0366420656586381,0.8286312634325292,0,1.0,0.8760730752339901
+180,41,0.691134419295922,1.95,1.3853239598214644,0.0006995664887206485,0.036762554003364846,0.8178313287552722,0,1.0,0.9037813976530732
+180,42,0.7136204596127996,1.95,1.3846394617322555,0.0006992888724875898,0.03671249695319151,0.8177292450645763,1,1.0,0.9120681987093319
+180,43,0.6977354591612104,1.95,1.3031953514305177,0.0007482390179405731,0.03610449432617855,0.8052901004451112,1,1.0,0.9257848638707014
+180,44,0.729348319461513,2.0,1.3077391417804562,0.0007390029561547547,0.035995317468631174,0.8174576875202002,1,1.0,0.9644943982050432
+180,45,0.7386228964735664,2.0,1.3046582352247986,0.000737505164981278,0.03599375222008093,0.8169970551436108,1,1.0,0.9954096549118876
+180,46,0.74,2.0,1.2994453582475658,0.0007363428996209113,0.035852509336979456,0.8162160259840833,1,1.0,1.0
+180,47,0.75,2.0,1.293946291895779,0.0007347229359711102,0.035345825450050675,0.8153892026698257,1,1.0,1.0
+180,48,0.74,2.0,1.3093955437736813,0.0007245636263978893,0.035306986182288384,0.8177004220884437,1,1.0,1.0
+180,49,0.72,2.0,1.3037954794832314,0.0007226073360498026,0.035256926525672236,0.816863569465846,1,1.0,1.0
+181,0,0.13631588972747855,1.95,1.3702093941445828,0.0007027890621549174,0.03617491587017575,0.8155696547473372,1,0.13522101021466476,0.20742495213870882
+181,1,0.15767936036555638,1.9,1.369644030332071,0.0007030592251869225,0.03640446958745442,0.8039315268290176,1,0.17127356747068087,0.23056644459094686
+181,2,0.18881189540425192,1.9,1.3690106741798664,0.0007034287907607619,0.036360130345186384,0.8038317910013165,1,0.1800330853459608,0.25599553755289195
+181,3,0.23644613191884611,1.9,1.368724724181059,0.0007024712139747919,0.03647022919507059,0.8037863946568432,1,0.23698263814352666,0.3055102555381181
+181,4,0.25070648150000663,1.9,1.3851555159540712,0.0007002107479057548,0.03675451440153016,0.8063641236567738,1,0.2767982131795146,0.3332906540940026
+181,5,0.2928361730747747,1.95,1.3849577995452118,0.0007002605801603192,0.03660455578313903,0.8177769775239212,1,0.3218647435246453,0.38030091888305534
+181,6,0.31209875418870264,1.95,1.384912618081602,0.0006999133209871598,0.036414999549495675,0.8177701410866962,1,0.3696735025537295,0.4140978438907028
+181,7,0.33091107350012033,2.0,1.3836405868936021,0.0006986828803987142,0.03668475615644595,0.8285006226835749,1,0.383823331660596,0.45793913611960646
+181,8,0.32233903640591044,2.0,1.3844656303918221,0.0006990062099281493,0.036705096749560275,0.8286179109825168,1,0.4021039070861744,0.4716582452381356
+181,9,0.36041414379833253,2.0,1.3839203846707668,0.0007006150660792559,0.03651979410781367,0.8285409237283217,1,0.42588539433048067,0.5001999535538009
+181,10,0.3586426074116039,2.0,1.384031653763124,0.0007014878073185583,0.03669479788027781,0.8285569780800638,1,0.46042588743285534,0.514907508128206
+181,11,0.3502842414970694,2.0,1.3842583736467375,0.0007008895244993763,0.036726424146563505,0.828589011364066,1,0.5022608219318454,0.4645997090811041
+181,12,0.3652406579238161,2.0,1.3838180143162873,0.0007009339638117314,0.03634040500008025,0.8285264710303074,0,0.5130583022586245,0.4667244567345544
+181,13,0.35386982917574017,2.0,1.365532527552088,0.0006918436778709299,0.03603639071288076,0.8259104044648427,0,0.5194662511452998,0.4869444290587342
+181,14,0.44148612093996464,2.0,1.3665231123217447,0.0006906347683312172,0.03613804767067106,0.8260524397341922,0,0.6174007708341971,0.4817527086876194
+181,15,0.47609621760785714,2.0,1.279869259816115,0.0006509158697085696,0.03475693100980097,0.8132353209238626,0,0.7064215981175235,0.4784252612028258
+181,16,0.49091598191344527,2.0,1.288135191002354,0.0006735919254960641,0.03507213876296899,0.8144943837559041,0,0.7693174195038411,0.4772967137063627
+181,17,0.5308632978118915,2.0,1.2829512248149515,0.000670409432739289,0.03450424132214915,0.8137088791419572,0,0.8684451762648018,0.4449507576865691
+181,18,0.4833739849790168,2.0,1.3115124584800006,0.0006993844554491754,0.03485630366536907,0.8180082740639859,0,0.8653963451483189,0.4573848230656308
+181,19,0.4912551622168201,1.95,1.3120880036522986,0.0007042473879667799,0.034991192592391314,0.8066669447068808,0,0.8704840380113922,0.4768718233742107
+181,20,0.5364929171645334,2.0,1.310858572160949,0.0007089463667023986,0.03577274159771334,0.8179137574269786,0,0.9124315657813866,0.5050676361732626
+181,21,0.5962959034862233,2.0,1.311152011708946,0.0007101989263417082,0.035785502315085656,0.8179578285689596,0,1.0,0.48765301162074415
+181,22,0.590544615803752,2.0,1.309854812149072,0.000706696049119124,0.03562132406339918,0.8177635481836778,1,1.0,0.468482052679173
+181,23,0.5856030620162791,2.0,1.3856607545004735,0.0007007964564898796,0.03677843032380353,0.8287880722953593,1,1.0,0.48534354005426356
+181,24,0.5653194763091076,2.0,1.3856630854383352,0.0007003757001617095,0.03651492010579484,0.8287882836423147,1,1.0,0.48439825436369194
+181,25,0.5491575224641425,1.95,1.3854333170779802,0.0007005455659516335,0.03664709940736477,0.8178479122998458,1,1.0,0.4638584082138083
+181,26,0.5841249013196045,2.0,1.3858742818533718,0.0007003957464919944,0.03645913953114387,0.828818255654434,1,1.0,0.4804163377320147
+181,27,0.5636710068672741,2.0,1.3858310348301224,0.0007000760194417106,0.0365022394744997,0.8288120290146009,1,1.0,0.4789033562242468
+181,28,0.5706231254084357,1.95,1.3855886572878955,0.0007001263907803289,0.036601858822166856,0.8178709277294497,1,1.0,0.5020770846947858
+181,29,0.6218852185058059,2.0,1.3852031897268366,0.0007001613741691754,0.03644384873380749,0.8287229545276518,1,1.0,0.5729507283526862
+181,30,0.5979728037949302,2.0,1.3852557738053333,0.0007007435146198236,0.036549805453782794,0.8287305835005199,1,1.0,0.5932426793164339
+181,31,0.6473154917285422,1.95,1.3848124206963115,0.0007009326391645639,0.036627180909455256,0.8177555128038494,1,1.0,0.6577183057618072
+181,32,0.6228424810484476,1.95,1.3465768192147785,0.0007252800498123719,0.03594859971993646,0.8119952679209017,0,1.0,0.6761416034948255
+181,33,0.6274509003388467,1.9,1.341183332561863,0.0006749451496610695,0.035146686446256806,0.7993975388068635,0,1.0,0.6915030011294888
+181,34,0.611649758918196,1.95,1.3501155854004034,0.0006769955850362032,0.03607690313858415,0.8125201858957589,0,1.0,0.7054991963939865
+181,35,0.6126478373091054,2.0,1.3481561801303088,0.0006748014264279132,0.036043610798675296,0.823392869125102,0,1.0,0.7088261243636846
+181,36,0.6510238300388964,2.0,1.346105442227962,0.0006726339576699205,0.035938338149421524,0.8230938278543175,0,1.0,0.7034127667963213
+181,37,0.6542404199607631,2.0,1.3461496614029451,0.0006744825819803128,0.03594866689455173,0.823100804874874,0,1.0,0.7141347332025436
+181,38,0.6511630857623971,2.0,1.3455072668879122,0.0006761349699703832,0.035615169984432975,0.8230077304416721,0,1.0,0.7038769525413238
+181,39,0.6093502552719264,2.0,1.3443512959761537,0.0006774102575448569,0.03527938714064173,0.8228396537072589,0,1.0,0.6978341842397546
+181,40,0.6061950640392094,1.95,1.3418105381461953,0.0006747436574814692,0.035094949996669365,0.8112510941521129,0,1.0,0.6873168801306979
+181,41,0.6102435186891094,2.0,1.337976265005614,0.0006712789182753609,0.035806815034667774,0.82190662800501,0,1.0,0.7008117289636979
+181,42,0.6130349317880597,2.0,1.3361549056607291,0.0006689890995142798,0.03566312083955621,0.8216391970194311,0,1.0,0.7101164392935321
+181,43,0.6358319946976454,2.0,1.3330041492969884,0.0006659550019631909,0.03565591063831931,0.8211761001528067,0,1.0,0.7194399823254846
+181,44,0.6151225966947558,2.0,1.3432187500330144,0.0006703575319657372,0.03552299768401443,0.8226724392251871,0,1.0,0.7170753223158525
+181,45,0.6186715019954951,1.95,1.3399939284990623,0.000667744898529034,0.03510878838057808,0.8109706268112039,0,1.0,0.7289050066516506
+181,46,0.6624079590689486,2.0,1.3353076198562115,0.0006639838475630095,0.03556930907749932,0.8215135271209364,0,1.0,0.7080265302298284
+181,47,0.6130476385145387,2.0,1.3401789230207966,0.0006681106996840654,0.03529450774168865,0.8222278897775411,0,0.9944798873331351,0.7175189452709488
+181,48,0.6537706565937461,1.95,1.3367811967729042,0.0006650754251548178,0.035651127926495316,0.8104768116174871,0,1.0,0.7125688553124868
+181,49,0.656925948828065,1.95,1.3354565472478446,0.0006660288785634922,0.03490468804002522,0.8102735494164042,1,1.0,0.7230864960935497
+182,0,0.1659403110266174,2.0,1.369929765502786,0.0006898951377917738,0.03575771749980594,0.8265411854063963,0,0.16306296432204714,0.20238375099266182
+182,1,0.13483312389544125,1.95,1.3725150100605523,0.0006932569524741645,0.0362977243087646,0.8159133400925097,0,0.18269009124145158,0.20585695799620204
+182,2,0.21964605945573978,1.9,1.3729516415788647,0.0006926044665909197,0.03634415403878792,0.8044490777856518,0,0.28509425311067005,0.18536119403823925
+182,3,0.2087199728333016,1.9,1.3560124851336497,0.0006932962333810965,0.03638591266870072,0.8017708370463967,0,0.3172723907656447,0.20603672175681242
+182,4,0.22459624066454068,1.95,1.341545342359557,0.0006826967365495411,0.03570888577849875,0.8112129192752028,0,0.354696571511238,0.20905870686681832
+182,5,0.2731297228194466,2.0,1.342926052902661,0.0006816663719902596,0.03553015221673383,0.8226330359269504,0,0.43472019426516667,0.197472150377933
+182,6,0.2688330890009609,2.0,1.27841022144265,0.0007190099257762113,0.034656572532853355,0.8130343183604979,0,0.4660180610487758,0.20808621527150198
+182,7,0.33259783178759034,2.0,1.2774667927896002,0.0007185516553880793,0.03484552074931974,0.812890726468212,0,0.5626992479051938,0.19172710875170945
+182,8,0.35298538080167285,2.0,1.288992712612408,0.0007077898492372117,0.03513887720191651,0.814634242927566,0,0.6388815677770595,0.1914425123028302
+182,9,0.3837338418980939,2.0,0.6320887079894945,0.0003022635628530712,0.019585187507954537,0.6948077399116281,0,0.7064623133285292,0.20382972188894086
+182,10,0.43378706495478797,2.0,0.7255831206938937,0.0008750398649551616,0.030409852203660055,0.7144984154355694,0,0.8130795293584426,0.19518417737136975
+182,11,0.4186469115277212,2.0,1.1352611332374387,0.0007637901204462828,0.03314015046851996,0.7903089542252395,0,0.8439208315806984,0.20359526298480607
+182,12,0.48371620774777796,2.0,1.3383980254432037,0.0007598963601925179,0.03670182640391639,0.8219942897121624,0,0.9454472536037566,0.18512435435425095
+182,13,0.47145430663045984,2.0,1.1341956593778395,0.0007739561257640219,0.03296467132417269,0.7901357000228462,0,0.9709537970509048,0.21024262603365962
+182,14,0.4544073489748365,2.0,1.3406969757274647,0.0007569562721129799,0.036621981602231825,0.8223295632926226,0,0.9760780714647433,0.21325373462979708
+182,15,0.5121791340617564,2.0,1.3393789104258862,0.0007605751921824144,0.036158920807360495,0.8221379656864541,0,1.0,0.2072637802058547
+182,16,0.48730338219058533,2.0,1.3450566924735132,0.0007527183323073726,0.036491922680753436,0.8229644040895079,0,1.0,0.22434460730195097
+182,17,0.4681577178491265,1.95,1.3435783336635279,0.0007537030515282255,0.03673648604478836,0.8115457881096421,0,1.0,0.22719239283042164
+182,18,0.49413143742129834,2.0,1.3411991745554277,0.0007583954313796806,0.03672059106976065,0.8224033448952754,0,1.0,0.24710479140432773
+182,19,0.47556839187515454,2.0,1.340764471646097,0.0007581104235123955,0.03673950240312012,0.8223397617148743,0,1.0,0.2518946395838484
+182,20,0.5058370859580466,2.0,1.339388086380549,0.0007614012057417187,0.03669636669483233,0.8221395490256423,0,1.0,0.2861236198601552
+182,21,0.5136416231024117,2.0,1.3378240382200117,0.0007625671477283489,0.03620187036941441,0.8219110704291162,0,1.0,0.3121387436747057
+182,22,0.5167984428696885,2.0,1.3361483380587091,0.0007637181185680027,0.036430862370632804,0.821665997711946,0,1.0,0.32266147623229496
+182,23,0.5024256822695453,2.0,1.3343790628718188,0.000764752353452637,0.03670885520801094,0.8214068999525973,0,1.0,0.34141894089848435
+182,24,0.5468867826594946,2.0,1.3328480692637286,0.0007688845214082005,0.03667831673646723,0.8211834098794533,0,1.0,0.3229559421983153
+182,25,0.5408141906413291,2.0,1.3386030249669918,0.0007602004594793104,0.03672916332019741,0.8220243721760668,0,1.0,0.3360473021377633
+182,26,0.49929025481203254,2.0,1.3456950854320877,0.000752009387687072,0.03669648642181641,0.8230571884404817,0,1.0,0.3309675160401084
+182,27,0.546549594583849,1.95,1.3443413499285644,0.0007551777052683703,0.03629861256762017,0.8116629063342734,0,1.0,0.32183198194616314
+182,28,0.49865495014355976,1.95,1.348030906881172,0.0007491604662916318,0.036747969487822184,0.8122244311180821,0,1.0,0.3288498338118659
+182,29,0.5381932824948945,1.9,1.34673129577817,0.0007518210316193204,0.03660176244299632,0.8003103115230655,0,1.0,0.32731094164964836
+182,30,0.5268062292448223,1.9,1.3519129206066043,0.0007459187303015505,0.03659975102200925,0.8011352371326628,0,1.0,0.35602076414940786
+182,31,0.5501180001483302,1.95,1.350501958102597,0.000747179630233938,0.03618307109250847,0.8126004117093079,0,1.0,0.33372666716110044
+182,32,0.5306162208879036,1.95,1.3552969951524825,0.0007398574016054921,0.03625654505960601,0.8133272869982564,0,1.0,0.3687207362930118
+182,33,0.5131944801985855,2.0,1.3539068353126258,0.0007409700470755612,0.036565592573171,0.824246729594067,0,1.0,0.3773149339952849
+182,34,0.5375317430900929,2.0,1.3534883362647274,0.0007426591827549072,0.03640437188397337,0.8241865854190373,0,1.0,0.39177247696697604
+182,35,0.5490532092038813,2.0,1.3520896111021177,0.000743852909696241,0.03672640142273192,0.8239841602155461,0,1.0,0.4301773640129375
+182,36,0.5269006315328982,2.0,1.3139305091046078,0.0007194331580043997,0.0351081325518777,0.818373934349423,0,1.0,0.4230021051096608
+182,37,0.5523387321642073,1.95,1.3136698128598723,0.0007239156857788132,0.03536253318344111,0.8069196454388236,0,1.0,0.44112910721402393
+182,38,0.5607326564935733,1.95,1.3109244737781507,0.0007260932842947504,0.03596758960919262,0.8064922399493342,0,1.0,0.4691088549785775
+182,39,0.5852880554763293,2.0,1.3094346205309138,0.0007276055651018951,0.0356821792120362,0.8177071539269727,0,1.0,0.45096018492109774
+182,40,0.5389372504306197,2.0,1.3098709112240419,0.0007220212875455243,0.03585263932562111,0.8177705149942004,0,1.0,0.4631241681020656
+182,41,0.5712150134853453,1.95,1.309606594275378,0.0007268263349827595,0.035512559549156525,0.8062867142799974,0,1.0,0.437383378284484
+182,42,0.5565515014034195,1.95,1.3224016716261473,0.0007205683847289774,0.03560580329592259,0.8082753897243162,0,1.0,0.45517167134473135
+182,43,0.5614952922505203,2.0,1.3210306527255646,0.00072198252525595,0.03596097151308615,0.8194276555511099,0,1.0,0.4716509741684011
+182,44,0.5794940144965659,2.0,1.3208372196865261,0.0007227421369831956,0.03564759514617077,0.8193992570958687,0,1.0,0.46498004832188616
+182,45,0.5452617544554661,2.0,1.3336116543259267,0.0007166507641951977,0.03611216969761495,0.8212801750140059,0,1.0,0.4842058481848871
+182,46,0.5470154998532891,1.95,1.3332587475946938,0.0007209971178814345,0.036192376857009594,0.8099523735891774,0,1.0,0.49005166617763046
+182,47,0.5506992317943864,2.0,1.3315468148785259,0.0007254566885225456,0.03577631658187143,0.8209794872262279,0,1.0,0.5023307726479544
+182,48,0.5856853128509582,2.0,1.3318616763715876,0.0007281985628830398,0.03576665541338227,0.8210265642201118,0,1.0,0.4856177095031937
+182,49,0.5877395031931703,2.0,1.3429845939486256,0.0007222439309854183,0.03598368687869721,0.8226534177855861,0,1.0,0.49246501064390075
+183,0,0.18871614191901942,2.0,1.3701483070506264,0.000691294829760907,0.035766600226120195,0.8265729169512739,0,0.2160110995155451,0.17437234037600458
+183,1,0.14857316364439438,1.95,1.3608866534509967,0.0006909700788159518,0.03591831861401113,0.8141596633777995,0,0.22156167892473452,0.19982830691500192
+183,2,0.2192124238331661,1.9,1.3626125166194065,0.0006897733691500218,0.03624750999803725,0.8028166046140855,0,0.30170468119201077,0.19510183785453927
+183,3,0.21877827087462853,1.9,1.3609453439685602,0.0006889589836029065,0.036394833429906466,0.8025522963334708,0,0.3310008561299184,0.22125976140887055
+183,4,0.2435648482615648,1.95,1.3288822343831477,0.0006749153091092086,0.0354290293343403,0.8092635593680727,0,0.3703731444301126,0.2513853016317325
+183,5,0.2864165108956001,1.95,1.3307312512664886,0.0006742782216063147,0.03517345289298715,0.8095486066671308,0,0.42679750829472907,0.2523250252590282
+183,6,0.33907838520747696,1.95,1.287053865569719,0.0007230443891663383,0.03524901914011082,0.8027386911134723,0,0.5419111759585339,0.24104638274687795
+183,7,0.34941539288225476,1.95,1.2847196596464021,0.0007222201221582571,0.03503444859829809,0.8023685486512689,0,0.5990915013297227,0.232595974501219
+183,8,0.3494403231390996,2.0,1.2870780305884897,0.0007369492976612517,0.0356292911214799,0.8143537585258256,0,0.6329261696943586,0.25423285087118724
+183,9,0.41394811870232456,2.0,0.6946299761926906,0.00079017915809388,0.029013829557866945,0.7081074999963124,0,0.731487723868846,0.23784343051595389
+183,10,0.44187778090425245,2.0,0.6908572865440518,0.0007801163249898691,0.02868498616563252,0.7073229398646718,0,0.8253426843033557,0.20580235727636728
+183,11,0.47297641024012,2.0,1.363126468924413,0.0007270476631921013,0.03673994629937674,0.8255743233120086,0,0.9218902790470355,0.1807343287376859
+183,12,0.46818421663503407,2.0,1.1318059336906416,0.0007818427848035457,0.032839310091836056,0.789741777076201,0,0.9669864046452405,0.20463218258979277
+183,13,0.5104800273978033,2.0,1.3630576162115062,0.0007271615933789764,0.03668168318898205,0.825564441019123,0,1.0,0.201600091326011
+183,14,0.46446203206876996,2.0,1.365121199943905,0.0007229862043310528,0.036600392925532646,0.8258602125765122,0,1.0,0.2148734402292332
+183,15,0.47315056282380413,1.95,1.3640652901921362,0.0007235572945192609,0.03628909410102778,0.8146499639466728,0,1.0,0.24383520941268044
+183,16,0.5190505343591033,2.0,1.3623412504068972,0.0007247330769970272,0.03666831518159099,0.8254605549203726,0,1.0,0.23016844786367774
+183,17,0.4723829071005736,2.0,1.364538751632383,0.0007201040971480527,0.03663956275718923,0.8257756025052214,0,1.0,0.24127635700191205
+183,18,0.47773161827074606,1.95,1.3634100140296004,0.000720620496297019,0.036557151778150034,0.8145501126057192,0,1.0,0.2591053942358202
+183,19,0.5058890456056656,2.0,1.3616066981314425,0.0007216029351999171,0.036529131991724445,0.8253537962992759,0,1.0,0.2862968186855521
+183,20,0.490290593182373,2.0,1.3615585481343728,0.0007245056399668967,0.03654906740173009,0.8253476924585422,0,1.0,0.30096864394124323
+183,21,0.4951159465167484,2.0,1.3603071264090476,0.0007251290619654095,0.03628896041638716,0.8251674078450746,0,1.0,0.31705315505582793
+183,22,0.4966608414456484,2.0,1.3589710105927673,0.0007256559413096027,0.03637007662714099,0.8249747199520446,0,1.0,0.32220280481882796
+183,23,0.5382175537938857,2.0,1.3575609710270042,0.0007261945496590616,0.03662063701776456,0.8247711847012172,0,1.0,0.29405851264628535
+183,24,0.4891965952361274,2.0,1.3592495304207628,0.00072161033715414,0.03649818243636396,0.8250137640959967,0,0.992801451937738,0.3069200482034405
+183,25,0.5179005145485212,1.95,1.3578877814917412,0.0007220388538123031,0.03640440647407163,0.813714914571254,0,1.0,0.32633504849507056
+183,26,0.5243799764250351,1.95,1.3566082894812932,0.0007267894863977734,0.03630460098314946,0.8135223289214609,0,1.0,0.3479332547501168
+183,27,0.5466567736705051,2.0,1.3557891626930987,0.00073050323690152,0.03638575352336385,0.8245162159218329,0,1.0,0.3221892455683503
+183,28,0.5236138658664138,2.0,1.357897925227416,0.0007251468633467129,0.03633612438777798,0.8248195744675216,0,1.0,0.3453795528880457
+183,29,0.5079389054672028,1.95,1.357054534381698,0.0007281657022723959,0.03657904111132819,0.8135904339118293,0,1.0,0.3597963515573424
+183,30,0.509694309331023,2.0,1.355122130991477,0.0007297263394392889,0.036508326636925804,0.8244194578143915,0,1.0,0.3656476977700767
+183,31,0.5403494901540853,2.0,1.3545552262067067,0.0007298335926482233,0.03643831317755728,0.8243374131731669,0,1.0,0.40116496718028427
+183,32,0.525414628599819,2.0,1.2980753708127803,0.0007473900786715757,0.035669660763511246,0.8160137458282815,0,1.0,0.41804876199939656
+183,33,0.5547447824918661,2.0,1.2971584540308467,0.0007508230628343049,0.03602444303693769,0.8158770757697235,0,1.0,0.4491492749728871
+183,34,0.5398129868674428,2.0,1.295920195455728,0.000752909973545606,0.03599928553619863,0.8156916172216516,0,0.9998720448969467,0.466213896362214
+183,35,0.5854158968079575,2.0,1.2948986122510466,0.0007563169040931044,0.035630713476458666,0.8155390091378614,0,1.0,0.45138632269319146
+183,36,0.557677027593097,2.0,1.2945511200292732,0.0007503700112237438,0.035187960984714314,0.8154849387247476,0,1.0,0.45892342531032326
+183,37,0.5868821425359139,1.95,1.2933640375983044,0.000752455665111542,0.035338810567443486,0.8037452726171042,0,1.0,0.45627380845304616
+183,38,0.5784238831693362,1.95,1.2911751118549113,0.0007477324723747468,0.03594137190041292,0.8033982724470324,0,1.0,0.42807961056445415
+183,39,0.5286683464349828,2.0,1.2904587990076384,0.0007424139604366256,0.03561280258918592,0.8148659745937573,0,1.0,0.4288944881166092
+183,40,0.5537759579180843,1.95,1.291346112214074,0.0007446469558213052,0.03587352700301546,0.8034243058527739,0,1.0,0.4459198597269474
+183,41,0.5561389505333683,1.95,1.2886184602501098,0.0007479227225450228,0.03497787956208897,0.8029941975665813,0,1.0,0.453796501777894
+183,42,0.5802199708345757,2.0,1.2874389095933019,0.0007499999632790467,0.03531420346581538,0.8144122557596635,0,1.0,0.43406656944858546
+183,43,0.5348072135020749,2.0,1.2884295925300633,0.0007434633189336789,0.0349758423868801,0.8145599710894518,0,1.0,0.4493573783402497
+183,44,0.5709588226983813,1.95,1.2876746121580636,0.0007469738624381947,0.035420290194868594,0.8028445428921095,0,1.0,0.4365294089946039
+183,45,0.5738906891987139,1.95,1.3023193896200778,0.0007389143638289575,0.03569029390337665,0.8051497889396213,0,1.0,0.4129689639957127
+183,46,0.5682242538868796,2.0,1.3015477615035989,0.0007342873430398818,0.035082943586740675,0.81653057656115,0,1.0,0.39408084628959855
+183,47,0.5579348317988789,2.0,1.3556326653346693,0.0007088604138354734,0.03630185797593581,0.824487307599502,0,1.0,0.35978277266292963
+183,48,0.5321804492151166,2.0,1.3561159428888085,0.0007052486450632887,0.03626261288828912,0.8245561857768922,0,1.0,0.3739348307170555
+183,49,0.5174506921669206,1.95,1.3567299126474819,0.0007106041003335376,0.03632321752117132,0.8135358684653902,0,1.0,0.39150230722306867
+184,0,0.1863311873872111,2.0,1.3666119600357411,0.0006895293521925423,0.03565060209736655,0.8260648882193112,0,0.2003307849698716,0.18732957799754157
+184,1,0.17661826857924018,1.95,1.364054829952021,0.0006877093801561066,0.035912246500388094,0.8146375584374996,0,0.22758378339717492,0.2186158507345674
+184,2,0.16691732448854935,2.0,1.3051272805220813,0.0006602722481395073,0.03489700160236213,0.817044084130968,0,0.23775057302515276,0.23939031759496074
+184,3,0.17927152469652363,2.0,1.315793322662778,0.0006606309818819718,0.03535689789010994,0.8186331947031574,0,0.25796449871974325,0.25361908402875444
+184,4,0.21781058190236577,2.0,1.322753844838173,0.0006605279670154769,0.035336618774672486,0.819664321953127,0,0.2902939547203467,0.2723100000474236
+184,5,0.26320383309562384,2.0,1.3240612234728952,0.000660549467697032,0.034884145974718145,0.8198574973553657,0,0.3588456056086621,0.2655519695071967
+184,6,0.2888458014175296,2.0,1.3223099364836155,0.0006593152967620155,0.034554473894027174,0.8195983378490816,0,0.42726176019181217,0.2598036578026825
+184,7,0.2590640008274892,2.0,1.2913079527269011,0.0007020741855930677,0.03509060160050379,0.814981878109304,0,0.4341580019907934,0.28466933343723944
+184,8,0.2985841461263223,1.95,1.305855296868228,0.0006966127690393471,0.03507947601448846,0.80569067179118,0,0.467657815206526,0.3050700668123728
+184,9,0.3093666964646169,1.95,1.3030740038227493,0.0006933538627598199,0.03492207036711574,0.8052538590713259,0,0.4789100320580129,0.3260089454713724
+184,10,0.3728630160798398,2.0,1.3018953830351434,0.0006903451386470021,0.03480378590538254,0.8165694841634019,0,0.5731107833559095,0.3120623424582533
+184,11,0.39491866408363585,2.0,1.302062573231033,0.0006905852237498207,0.034887582219105324,0.8165945971285227,0,0.6496851827353696,0.31681530329829344
+184,12,0.4369328402042985,2.0,0.6456174788830625,0.0006631244117288899,0.02534629341082869,0.6978211395609567,0,0.7484828971263399,0.2917989378458753
+184,13,0.45504667738295834,2.0,0.6414215206468785,0.0006525175924011288,0.025764604366195654,0.6969311368744638,0,0.8258868804396517,0.282306417356992
+184,14,0.4606207501396233,2.0,1.3606879048117786,0.0006836759604624274,0.035962725480346444,0.8252103765603732,0,0.8683751747484278,0.31090226746750704
+184,15,0.5074397991084812,2.0,1.3598375301507526,0.0006830655785321255,0.036019426995448675,0.8250875099396121,0,0.9319431763837491,0.31554176184993843
+184,16,0.4766660990485701,2.0,1.3625941901151208,0.0006855473303423234,0.03584596384130416,0.8254857044815724,0,0.957473838071335,0.3122552127334537
+184,17,0.512915138473581,1.95,1.3664253863533264,0.0006871206128362463,0.03593557775411073,0.8149950755498541,0,0.9892388181835822,0.3240653706671604
+184,18,0.537438670805347,1.95,1.364985583617314,0.0006861038334855846,0.03621055278583063,0.8147775794665888,0,1.0,0.3247955693511566
+184,19,0.5357970555289155,1.95,1.367330697711095,0.0006881521730716295,0.036182534524424964,0.8151318486501652,0,1.0,0.3193235184297185
+184,20,0.5282606706921916,2.0,1.3690017712380678,0.0006902374293042432,0.0361409744517814,0.8264081959648812,0,1.0,0.3608689023073053
+184,21,0.5395915589484171,2.0,1.368512182119741,0.0006894682886782514,0.0360831883226916,0.8263377286677793,0,1.0,0.39863852982805703
+184,22,0.5459446423458849,2.0,1.3674983633471447,0.0006885074437717017,0.03592076132088667,0.8261919178465197,0,1.0,0.41981547448628304
+184,23,0.553284384404796,2.0,1.2885866234600585,0.0006929301084337744,0.03468442469432581,0.814568424493023,0,1.0,0.44428128134932
+184,24,0.5343212166392027,2.0,1.2878291775903294,0.0006969501972083321,0.03392403768319637,0.8144552025459565,0,1.0,0.4477373887973425
+184,25,0.5801057254964159,2.0,1.287877294772617,0.0007020529283891888,0.03433159126364201,0.8144640159813912,0,1.0,0.43368575165471973
+184,26,0.5745246446290215,2.0,1.2860438240643854,0.0006980806958197939,0.03490153557497594,0.8141855942031794,0,1.0,0.4150821487634047
+184,27,0.5491126489105045,2.0,1.2841054456778662,0.0006940930929967825,0.03515394467324004,0.8138909553211623,0,1.0,0.4303754963683482
+184,28,0.5696477766480174,1.95,1.2833871021900567,0.0006982410700225172,0.035126730873146786,0.8021495444143063,0,1.0,0.43215925549339107
+184,29,0.5527687829025626,1.95,1.298838007379348,0.0006930412277193607,0.03416485280999394,0.8045886123768337,0,1.0,0.4425626096752085
+184,30,0.5601080330596637,2.0,1.2978358059918533,0.000696336003390521,0.03460727486681122,0.8159624431111246,0,1.0,0.46702677686554556
+184,31,0.5667725338583063,2.0,1.2982951911966019,0.0006991217837988735,0.03449399672821947,0.8160322543581208,0,1.0,0.4892417795276875
+184,32,0.5911192214374834,2.0,1.2969786846078573,0.000701538641558233,0.03513152057449228,0.8158352596535816,0,1.0,0.47039740479161135
+184,33,0.5427893973874147,2.0,1.2953157356438068,0.0006978806709014419,0.03535492581686433,0.8155841731469009,0,1.0,0.475964657958049
+184,34,0.5547797117089778,1.95,1.2958742753430865,0.0007034750983398485,0.035408124142677216,0.8041255034713863,0,1.0,0.5159323723632592
+184,35,0.5575515423896367,2.0,1.2943262113606786,0.0007087832463872391,0.03444715848194132,0.8154385773206332,0,1.0,0.5251718079654557
+184,36,0.5844273174913651,2.0,1.2957254634565574,0.0007130083518791426,0.034472364962033264,0.8156503403448181,0,1.0,0.5480910583045502
+184,37,0.6073011527135922,2.0,1.2946733274801399,0.0007159115288665961,0.034692109867536756,0.8154929571696036,0,1.0,0.5243371757119739
+184,38,0.5768171946136295,2.0,1.2932632922415839,0.000711980232344188,0.03511304980771386,0.8152795188721889,0,1.0,0.5227239820454314
+184,39,0.5788167914094994,1.95,1.2921319126250157,0.0007146944980128796,0.03552681629336456,0.8035389239571861,0,1.0,0.529389304698331
+184,40,0.5625702279390234,2.0,1.289217811285399,0.000717475875663387,0.03461966752741983,0.8146711564616643,0,1.0,0.5419007597967448
+184,41,0.6053122533113957,2.0,1.2908114484341797,0.000721789125979767,0.03518014165202418,0.8149129475739295,0,1.0,0.5177075110379854
+184,42,0.5947632927848069,2.0,1.289555528345251,0.0007177898723990896,0.034434611189836456,0.8147222350572254,0,1.0,0.5158776426160226
+184,43,0.5528327786418019,2.0,1.3057377027450046,0.0007111596315428297,0.03481842881963446,0.8171505214704596,0,1.0,0.5094425954726728
+184,44,0.5920357190505413,1.95,1.305420807974081,0.0007151597859202856,0.03533408999437779,0.8056284507911033,0,1.0,0.4734523968351374
+184,45,0.5454543328364982,1.95,1.3026344225266748,0.0007119239734963169,0.035384076863124954,0.8051907404761403,0,1.0,0.48484777612166063
+184,46,0.5519337697646061,1.9,1.3021614596072983,0.0007157336331752173,0.034751940896892465,0.793080176040762,0,1.0,0.5064458992153535
+184,47,0.5928290066276711,1.95,1.2999261939069222,0.0007195969152062887,0.03567156531238901,0.8047679914502278,0,1.0,0.5094300220922368
+184,48,0.5973431071031866,1.95,1.3164152330420573,0.0007128272280306388,0.03540010733696767,0.8073435730539944,0,1.0,0.4911436903439551
+184,49,0.57338499962675,2.0,1.3151869718716525,0.0007093881305795533,0.03581989545958607,0.818557634030616,0,1.0,0.5112833320891668
+185,0,0.13746606787042337,1.95,1.3640640988935708,0.0006883466698639418,0.035568957880484364,0.8146391505376951,0,0.11995331636645767,0.23161580441280102
+185,1,0.19630722689587948,1.9,1.3647063624007587,0.0006875615070307834,0.036040011704532644,0.8031471552582937,0,0.21148305235816234,0.2057133531753818
+185,2,0.20902520996971863,1.9,1.2920684335167074,0.0006387226351033088,0.034510269357889284,0.7913935438079818,0,0.27529766042287995,0.19635381933522214
+185,3,0.20343400925824845,1.95,1.3627015939923715,0.0006850718376783065,0.03630199948731252,0.8144323312227935,0,0.3016617978765026,0.20923096702549138
+185,4,0.2736975989508845,2.0,1.3091557923671777,0.0006505539368146698,0.034916339262840206,0.8176426113559228,0,0.41438500167717174,0.19314532760005276
+185,5,0.29009828743494964,2.0,1.2235737111192986,0.0006676081956261137,0.03347548372774367,0.8045390559787091,0,0.4871572826025533,0.1841179146464278
+185,6,0.3326483816734642,2.0,1.2205309825183146,0.0006652711431997804,0.032953636104798865,0.8040593889450955,0,0.5943122629827382,0.1497449216012297
+185,7,0.3124779076988549,2.0,1.2285712632935997,0.0006949779675031803,0.033655236620066385,0.8053323367349537,0,0.6120096264712949,0.1589135237011232
+185,8,0.375981381044332,2.0,0.681796180957261,0.0004168277211265334,0.02258797018040532,0.7052926174472774,0,0.7090820220218826,0.14116190745192972
+185,9,0.4120115795106097,2.0,0.6772724011959266,0.00041039334910116085,0.02239616262250311,0.7043487752191873,0,0.8178759111800412,0.11620405012864406
+185,10,0.4369852259844423,2.0,1.1281512006681076,0.0007880176250201114,0.033897754020396534,0.7891363221075296,0,0.8950804554847456,0.1298434793018135
+185,11,0.40250986156939705,2.0,1.1276204195604456,0.0007823997793842338,0.03332456181337751,0.7890461162761452,0,0.9096791436704933,0.12879401367066567
+185,12,0.4369636272446073,2.0,1.1297101247501806,0.0007903901303373159,0.032939953408113745,0.7893963992999249,0,0.9341198104385042,0.14438567689735193
+185,13,0.42418621555773167,2.0,1.128965640090024,0.0007916842404749823,0.03338921182434525,0.7892730327400963,0,0.9383844903820583,0.16277473134969453
+185,14,0.4674772969431875,2.0,1.1306684275417405,0.0007993724066689943,0.03391610143796987,0.7895586576210752,0,0.9770924795886485,0.1888010170257601
+185,15,0.48056397979076426,2.0,1.1298586852471193,0.0008006763512718857,0.034219916089967585,0.789424516228042,0,1.0,0.20187993263588083
+185,16,0.488772727219776,2.0,1.37353063485061,0.0006963200527596798,0.03626815885771914,0.8270586761950186,0,1.0,0.22924242406591983
+185,17,0.5160728351884236,2.0,1.3729453628657486,0.000695146275385915,0.036279373632935034,0.8269746112776516,0,1.0,0.22024278396141192
+185,18,0.4639338795414333,2.0,1.3720588489658447,0.0006950993227160456,0.03633678860827778,0.8268477119118937,0,1.0,0.21311293180477764
+185,19,0.48790421270624784,1.95,1.3750269118320426,0.0006951293651616581,0.03632576206296901,0.8162908868504072,0,1.0,0.2263473756874927
+185,20,0.4989053528904449,1.95,1.374143989452588,0.0006940800114659444,0.036358621138497804,0.8161581318692858,0,1.0,0.26301784296814956
+185,21,0.5242739806560751,2.0,1.3734698591946435,0.0006931396232331619,0.036214383565288576,0.8270490732723683,0,1.0,0.24757993552025007
+185,22,0.5021760128198061,2.0,1.3729509377420754,0.0006931211142298835,0.03619780586735603,0.8269748294223233,0,1.0,0.2739200427326869
+185,23,0.5076924274625948,1.95,1.3722334865814856,0.0006922105604644509,0.03620826394869351,0.8158707374642066,0,1.0,0.29230809154198245
+185,24,0.5343074785857254,2.0,1.3711121258538563,0.0006911262050657645,0.03626208793470376,0.8267109887026458,0,1.0,0.2810249286190844
+185,25,0.5232007552588682,2.0,1.3706367464646008,0.0006911459802122858,0.036279049522920256,0.8266428809748935,0,1.0,0.2773358508628938
+185,26,0.5073164568666152,2.0,1.372001943543135,0.0006931809366417219,0.03636071226538782,0.8268390152443812,0,1.0,0.2910548562220505
+185,27,0.5208537044937126,2.0,1.3712709749359735,0.0006922721680775073,0.03624454468517309,0.8267340725368358,0,1.0,0.33617901497904185
+185,28,0.5017452028952926,2.0,1.370505113717565,0.0006913277423216903,0.036068331113036714,0.8266240687073548,0,1.0,0.33915067631764195
+185,29,0.5439597022776376,2.0,1.3735988379450075,0.0006922556033730179,0.03626337036805348,0.8270672685959286,0,1.0,0.31319900759212527
+185,30,0.5009221306186715,2.0,1.372820722547855,0.0006920315152995468,0.03632127633369553,0.8269558846248343,0,1.0,0.3364071020622383
+185,31,0.5407824532699677,1.95,1.3752988263670327,0.0006929226131377279,0.03632058908257872,0.8163309979310789,0,1.0,0.30260817756655856
+185,32,0.530795130998473,1.95,1.3742393508936908,0.0006924299493020808,0.03636501406203213,0.8161719447187366,0,1.0,0.269317103328243
+185,33,0.5183036103218995,2.0,1.373397488133608,0.0006920411855941827,0.036198328424279475,0.827038406896389,0,1.0,0.22767870107299848
+185,34,0.4684166086618924,2.0,1.3728474122975682,0.0006918794732809546,0.036279654743488515,0.8269596603770482,0,0.9940575797612987,0.23597858919124282
+185,35,0.5198834612870049,1.95,1.3750142485699735,0.0006926654955311842,0.03631746676391749,0.816288248887853,0,1.0,0.23294487095668281
+185,36,0.5127157500619777,1.95,1.3738219161741227,0.0006919607819340347,0.03633545436369235,0.81610916568809,0,1.0,0.20905250020659202
+185,37,0.4698223761634286,2.0,1.372859969581055,0.0006915052544003222,0.03634346093914681,0.8269613501854136,0,1.0,0.23274125387809513
+185,38,0.4788306052318646,1.95,1.375003713012148,0.0006924187825880096,0.03641409372899194,0.8162865949564557,0,1.0,0.2627686841062153
+185,39,0.49487082646419833,2.0,1.3760350391684315,0.0006930366297648674,0.03632985302227318,0.8274156566217704,0,1.0,0.24956942154732772
+185,40,0.5015387529287308,2.0,1.3757705462115561,0.0006929778490696364,0.03641339677386504,0.8273778672338387,0,1.0,0.27179584309576926
+185,41,0.5179541428275245,2.0,1.3751666283677628,0.0006927449614787521,0.036319622944918986,0.8272915298295417,0,1.0,0.25984714275841503
+185,42,0.5234819143466082,2.0,1.3773718938136745,0.0006940329377375889,0.03623891299025821,0.8276067588554492,0,1.0,0.2449397144886939
+185,43,0.5186725132047989,2.0,1.3766050961105578,0.0006934766968570306,0.036258250644513025,0.827497170618434,0,1.0,0.22890837734932967
+185,44,0.5141646742370944,2.0,1.3757769491340375,0.0006929869574547659,0.036471666350334275,0.8273787843229827,0,1.0,0.2472155807903148
+185,45,0.4756766149613846,2.0,1.3776037081199437,0.0006946268901410678,0.03640677586144848,0.8276399996314818,0,1.0,0.25225538320461516
+185,46,0.5183145421288575,1.95,1.378924144783364,0.0006951477955193209,0.036464530607910745,0.8168746014564616,1,1.0,0.26104847376285817
+185,47,0.49863620389744956,1.95,1.3407748398458348,0.000684706015007545,0.03576792138151526,0.8110955069236834,1,1.0,0.26212067965816505
+185,48,0.4995230738698628,2.0,1.3440317883222452,0.0006922204018401117,0.035461161994421404,0.8227973915498131,1,1.0,0.2650769128995425
+185,49,0.5454395764941266,2.0,1.3471642601095748,0.0006993237130817869,0.03599000984406294,0.8232557171468363,1,1.0,0.3181319216470883
+186,0,0.16353212095797828,2.0,1.3690400318686524,0.0007041661583236734,0.036142940218533225,0.8264176809084137,1,0.1319350466076082,0.2358603410497834
+186,1,0.21646662682265155,1.95,1.3688251960246582,0.0007033928946131567,0.03637465724576119,0.8153615403471728,1,0.2011845944949968,0.2866426300821762
+186,2,0.22446142828327156,1.95,1.3853248671742366,0.0006998539439573414,0.03669679392254993,0.8178315495875585,1,0.2250157954548275,0.3148503670044685
+186,3,0.20587923641671202,2.0,1.3852085996469061,0.0006998856989503628,0.036409352810407754,0.8287236441578472,1,0.2720276646399737,0.29022723520240845
+186,4,0.2291990488564202,2.0,1.3852506382310712,0.0007000693599926804,0.03670564833017216,0.8287296632007483,1,0.29655627772349336,0.3019217925567429
+186,5,0.2682463298483039,2.0,1.3856118506030084,0.0007000722167930626,0.03673273944964155,0.8287809272551834,1,0.327677945546188,0.32391717209942894
+186,6,0.2880591651365289,2.0,1.3854753663091548,0.0007000956095256668,0.03640690136646625,0.8287615654810299,1,0.3499493921996398,0.36026469418890994
+186,7,0.27583565365146434,2.0,1.385294748193373,0.000700132799113596,0.03667858917746601,0.8287359419454083,1,0.3627670713920298,0.3690960836488414
+186,8,0.31653478355606085,2.0,1.3856350392998027,0.0007000774529341078,0.03674061191568319,0.8287842192641265,1,0.3905814795597434,0.4010073057738783
+186,9,0.3022159503400686,2.0,1.3843507093747063,0.0007002759155335183,0.03646142774084997,0.8286019510510855,1,0.4134274887596331,0.3894831827873845
+186,10,0.2859576075765014,2.0,1.3818716705180822,0.0007012404263138805,0.03661227574301245,0.8282498636220521,1,0.4269558609199889,0.3505842106950195
+186,11,0.3621347364269632,2.0,1.382694948740566,0.0007006316916474381,0.036695725384021896,0.8283667718772685,1,0.4700774368212161,0.4136792056615893
+186,12,0.32805504410633896,2.0,1.3830300435799439,0.0007023597911303022,0.0363291551518759,0.828414900109404,1,0.5119943609647624,0.3775243324014467
+186,13,0.36933565943340996,1.95,1.3815031682672734,0.00070058875532271,0.03661578958654262,0.8172617087611713,1,0.5257942333345039,0.3967265536653614
+186,14,0.3613726206861282,1.95,1.3817464087483673,0.0006997506613774737,0.0364662592439987,0.8172977824176814,1,0.5486363897683888,0.4063935492625756
+186,15,0.35368124994514116,2.0,1.3827555755409962,0.0007024633179358783,0.03655231473680533,0.8283759121395106,1,0.5890656499536409,0.36018329987894937
+186,16,0.3625129354637733,2.0,1.382275325469884,0.0007015329334755382,0.03658640308360254,0.828307359946572,1,0.6276038579056251,0.33823797433841063
+186,17,0.44458101821833707,2.0,1.3622213079887435,0.0007008846058866014,0.036163857560992996,0.8254364008901254,1,0.6832389864514048,0.40428474545925064
+186,18,0.4091279148855098,2.0,1.3600585060320554,0.0007153672363000175,0.036597650386764005,0.825128720363624,1,0.7069372544864605,0.387843376969752
+186,19,0.4686134691390102,1.95,1.3443478701504215,0.0006964900165637136,0.03611834454099644,0.8116459597387778,1,0.7503122375514977,0.4282952470613705
+186,20,0.5223195506995104,1.95,1.3565812912200303,0.0007184066417572042,0.03606230295925921,0.8135156896749848,1,0.7910152216307884,0.5197115401573168
+186,21,0.5548154395079219,1.95,1.3540067923388417,0.0007182785604165078,0.036110424915476405,0.8131247636127683,1,0.826044670213866,0.5813252380745847
+186,22,0.5761600663369822,1.95,1.384188608987583,0.0007025573818276868,0.036781645571109196,0.8176630112886243,1,0.8734909575222944,0.6225456110935482
+186,23,0.6168508702547206,1.95,1.367272787223428,0.0007202209178145657,0.036511942523720406,0.8151327870071711,1,0.9090179494025763,0.6774789683123001
+186,24,0.598733577773358,1.95,1.3662057814103132,0.0007230859039898858,0.036672593000818404,0.8149728084542256,1,0.93268431489061,0.6855328393903798
+186,25,0.6349412795458684,2.0,1.3646865070434888,0.0007243144101124001,0.03665508882821348,0.8257980704486,2,0.9596776613212931,0.7035673833911705
+186,26,0.6702984788224771,2.0,1.3781232644603245,0.0006991020516976182,0.03658096155931795,0.8277153791257746,2,0.9886234678880763,0.7494969722241551
+186,27,0.6817349517177493,2.0,1.3809389458401862,0.0006990128651095456,0.03640255923446886,0.828116506881106,2,1.0,0.7724498390591643
+186,28,0.6157089877613515,2.0,1.3830097244378072,0.0006991446099616301,0.03655077098301802,0.828411097803709,2,1.0,0.7190299592045049
+186,29,0.6102084389485813,1.95,1.3828345534160018,0.0006996778027025854,0.03668008966327869,0.8174601886426871,2,1.0,0.7006947964952709
+186,30,0.5987259658623778,2.0,1.3824048979215773,0.0007001624064229497,0.03657647976612449,0.8283253964310746,2,1.0,0.6624198862079258
+186,31,0.6876370416705869,2.0,1.3820493078405711,0.0007005696950240079,0.03648503280640214,0.8282749406142339,2,1.0,0.6921234722352898
+186,32,0.6993555597653563,2.0,1.3815656040411313,0.0006993535091341131,0.03664034421628214,0.8282057837269171,1,1.0,0.7311851992178545
+186,33,0.6875318602254124,2.0,1.362626953034519,0.0007291904522490886,0.03638095345296732,0.8255029979749681,1,1.0,0.7917728674180408
+186,34,0.6859741198570952,2.0,1.3611334184598594,0.0007325050014306532,0.03642952608599949,0.8252887088400265,1,1.0,0.8199137328569838
+186,35,0.6459500136370341,2.0,1.2764226325082684,0.0007518089055662401,0.03547947139304942,0.812741981649431,1,1.0,0.7865000454567803
+186,36,0.6589431962822526,1.95,1.3634295604588753,0.000727891114568906,0.036626726304984716,0.8145552617728574,1,1.0,0.7964773209408419
+186,37,0.6626363814883046,2.0,1.3610914808005,0.0007301624651812929,0.03657108317216467,0.8252819863343058,1,1.0,0.8087879382943486
+186,38,0.6463648553540713,2.0,1.2776585280879658,0.0007757249075960179,0.03584848028277087,0.8129372768662099,0,1.0,0.7878828511802377
+186,39,0.6367118906149777,2.0,1.3342838267528887,0.0006611771283669153,0.03467945033554212,0.821362536255897,0,0.9986305576182724,0.7908655585588956
+186,40,0.6610698226027987,2.0,1.3300321042972862,0.0006579006322359445,0.03455076044765394,0.8207368807873633,0,1.0,0.8035660753426623
+186,41,0.6461325200568155,2.0,1.365837086396443,0.0006913966371623979,0.036231434801719295,0.8259540617947695,0,1.0,0.8204417335227183
+186,42,0.6862264125097179,2.0,1.3686023187904415,0.0006906101133015654,0.03600605520372661,0.8263509909244292,0,1.0,0.8207547083657263
+186,43,0.6508114131150531,2.0,1.3655715879197134,0.0006892268221359069,0.035840932936928485,0.8259152680893087,0,1.0,0.8360380437168436
+186,44,0.6610059681752507,1.95,1.3675121395631478,0.0006885930576989417,0.03613581773809701,0.8151593217677795,0,1.0,0.8700198939175021
+186,45,0.6998573052727681,2.0,1.3680100759821177,0.0006878592649823233,0.036095975222456,0.8262652008254181,0,1.0,0.8661910175758937
+186,46,0.703152751536688,2.0,1.3655402940796928,0.0006864709536078363,0.03637897926355776,0.8259099761480027,0,1.0,0.8771758384556265
+186,47,0.7085236914747188,2.0,1.362307712684423,0.0006845451427586561,0.03595248955404655,0.8254441421626184,0,1.0,0.8617456382490628
+186,48,0.7014875617339296,2.0,1.3666167139469343,0.0006907270745436121,0.03597437466233756,0.8260659154484445,0,1.0,0.8382918724464318
+186,49,0.6943152016087619,2.0,1.369491453891721,0.0006965946618988201,0.03601655262979266,0.8264802568762805,0,1.0,0.847717338695873
+187,0,0.09811912152735011,2.0,1.3529519811400887,0.0006812689326381293,0.03521941714645186,0.8240910542415427,0,0.09318910528343873,0.20281159804658208
+187,1,0.1663348325323592,1.95,1.3548166848920349,0.0006809498648032391,0.035677051521774986,0.8132364589952998,0,0.16292859793770734,0.20387797785758752
+187,2,0.2095994057912855,1.95,1.357711100780346,0.000686239808095385,0.0361439719279648,0.8136772768059432,0,0.2563925957320702,0.190141224994858
+187,3,0.20137693868822712,1.95,1.3608599012729758,0.0006832981037102775,0.036183247596586685,0.81415329399336,0,0.29772925873699324,0.20761745064476614
+187,4,0.2149608609575009,2.0,1.322347405713752,0.0006726397125549067,0.035416434942947154,0.8196078179528089,0,0.3172898815778991,0.22681636108780417
+187,5,0.28110330852029175,2.0,1.3255236390451037,0.0006722163013077631,0.0350938515380176,0.8200768251447196,0,0.4152986667430309,0.21661280607693137
+187,6,0.2794547503470322,2.0,1.308811742231352,0.000737891439224289,0.0360675564530039,0.8176173556280077,0,0.4631149168883032,0.24736261197236967
+187,7,0.34799858948964363,2.0,1.3083885554629167,0.0007341275582525466,0.035869223368531766,0.817553119028446,0,0.5799136011141571,0.22011049681326922
+187,8,0.381951535684197,2.0,1.3074291802741538,0.0007350415831021533,0.035518338897549004,0.8174102478490722,0,0.6844307029310001,0.1939308483726566
+187,9,0.4162822883564303,2.0,0.6104969687454166,0.0003215648865196291,0.019785784930769167,0.6902183064192593,0,0.7982355902996885,0.1566268407885163
+187,10,0.44920235056939367,2.0,0.6055022347601705,0.0003153890516145681,0.019474186657713725,0.6891466879935754,0,0.8895074906717564,0.14466451433563687
+187,11,0.44388840389111917,2.0,1.126778292569448,0.0008043819639009214,0.03365997159187535,0.788913229587215,0,0.9320826475702804,0.17018448287669008
+187,12,0.4715398230617367,2.0,1.125789490777238,0.0008050395029848972,0.03314595100657874,0.788748737352332,0,0.9817216539707916,0.19617053824473346
+187,13,0.4982433343638503,2.0,1.1246469180271803,0.0008060211445431339,0.03364450442545558,0.7885586216564925,0,1.0,0.19414444787950114
+187,14,0.4545732518328932,2.0,1.1244901827216753,0.0007976775121231131,0.033749099295571273,0.7885297047841963,1,1.0,0.18191083944297726
+187,15,0.5195081501424589,1.95,1.3262293315871658,0.000774073793776607,0.03609423173418337,0.8088843915522017,1,1.0,0.2316938338081963
+187,16,0.5412975524923848,1.95,1.3656930964979581,0.0006927206867203705,0.03612349625487023,0.8148863263155399,1,1.0,0.30432517497461586
+187,17,0.5137511762882756,1.95,1.3650662594951466,0.0006938933161098785,0.03603432126349303,0.8147921053333678,1,1.0,0.3125039209609188
+187,18,0.5615394073193507,1.9,1.3649051823757106,0.0006955947263139945,0.03598208839154206,0.8031811269744286,1,1.0,0.3717980243978354
+187,19,0.5334581919406766,1.9,1.3636674476393522,0.0006967956352561416,0.03633305620064262,0.8029857709172433,1,1.0,0.3781939731355884
+187,20,0.5827340440664786,1.8499999999999999,1.3633499835565306,0.000698641203290586,0.03641184692218401,0.7907988265409829,1,1.0,0.44244681355492843
+187,21,0.5831724203253563,1.8499999999999999,1.3842369140240667,0.0007013460127258174,0.03663352789477517,0.7942341762886399,1,1.0,0.47724140108452084
+187,22,0.595088311176298,1.9,1.3841089676059999,0.0007005844226081203,0.03655474860113579,0.8062007788981133,1,1.0,0.5169610372543266
+187,23,0.5759621058909744,1.95,1.3839041089873252,0.0006998536546207286,0.03657786342024162,0.817619784944426,1,1.0,0.519873686303248
+187,24,0.5780819588624374,2.0,1.3836962187506425,0.0007002171046037835,0.036617954331372854,0.828508963093055,1,1.0,0.5269398628747911
+187,25,0.6104385651547297,2.0,1.3833954194543225,0.0007004948983693902,0.0366040482871227,0.8284662997004192,1,1.0,0.5681285505157657
+187,26,0.6179739073221537,2.0,1.383071161627225,0.0006996541602271597,0.03670381745458016,0.8284199755428238,1,1.0,0.5932463577405123
+187,27,0.582213392027024,2.0,1.3826278731940689,0.0006988413691853653,0.03648598559006613,0.8283567260815919,1,1.0,0.5740446400900799
+187,28,0.6380382386977383,1.95,1.3840050710730425,0.0006990822237633787,0.03653700166391469,0.8176346096395433,1,1.0,0.6267941289924609
+187,29,0.5859756691913554,1.95,1.3600024707566685,0.0007310113090700853,0.03656513919013707,0.8140379692972047,1,1.0,0.5865855639711843
+187,30,0.5793959894124077,1.9,1.3838056097253753,0.000699709606173003,0.03664066088673913,0.8061531041161661,1,1.0,0.5646532980413588
+187,31,0.6402657346592721,1.95,1.3848418075369344,0.0006997734558829234,0.036464632177608876,0.8177595468226595,1,1.0,0.6342191155309067
+187,32,0.6405743006591864,1.95,1.3642904151905961,0.0007267731888483335,0.03626985345410767,0.814684925408985,1,1.0,0.6685810021972879
+187,33,0.601114654282502,2.0,1.3665332627353695,0.0007220654772778855,0.03654650838930818,0.8260629305403928,1,1.0,0.6370488476083399
+187,34,0.6448828464798047,1.95,1.3712665265371995,0.0007176118318669195,0.03644204412496556,0.8157330672527245,1,1.0,0.6829428215993487
+187,35,0.6521498616478608,1.95,1.3724321591631703,0.0007144142497369771,0.03652144954681491,0.8159072515120535,1,1.0,0.7071662054928691
+187,36,0.6604705347273939,2.0,1.3733115569853607,0.0007111743094693475,0.03667954087887741,0.8270315885224473,1,1.0,0.7349017824246463
+187,37,0.693059406203659,2.0,1.3739552829892043,0.0007080134540329182,0.036501242317520534,0.8271227504174378,1,1.0,0.8101980206788633
+187,38,0.7082435387320845,2.0,1.2756170815946724,0.0007434394376882325,0.035466047320787356,0.8126168031558333,1,1.0,0.8608117957736148
+187,39,0.7090190128727754,2.0,1.2887803227023769,0.0007325528954784231,0.035870711274243,0.8146096483688158,1,1.0,0.8967300429092511
+187,40,0.7244091908093813,2.0,1.2823776042489887,0.0007295105219121053,0.03576211846322333,0.8136398338904122,1,1.0,0.9480306360312707
+187,41,0.7264534107382747,2.0,1.275560580653103,0.0007260387352487029,0.035290382943814924,0.8126029000836678,1,1.0,0.9548447024609155
+187,42,0.7382015781169879,2.0,1.268465736055562,0.0007220314814714248,0.034467907073069216,0.8115188783935793,1,1.0,0.9940052603899598
+187,43,0.6982975624961132,2.0,1.26097818081474,0.000717708716449204,0.03420101997315622,0.8103696111991106,1,1.0,0.960991874987044
+187,44,0.7389799610864606,1.95,1.264933741180227,0.0007453874698063053,0.03521987748395585,0.799219686340139,1,1.0,0.9965998702882017
+187,45,0.7007775859625127,1.95,1.2544134888407195,0.0007412989384106548,0.035218387662518974,0.7975248912798933,1,1.0,0.9692586198750424
+187,46,0.7355981153456581,1.9,1.2571423982661258,0.0007689184464456139,0.03506279644472263,0.7856127849923557,1,1.0,0.9853270511521935
+187,47,0.74,1.95,1.2465545595981213,0.0007655523740678844,0.03561122049301776,0.7962607413627303,1,1.0,1.0
+187,48,0.74,2.0,1.2424353971843705,0.0007608929770513759,0.03509768033651781,0.807517142030476,1,1.0,1.0
+187,49,0.7189744284277584,2.0,1.2383035780703877,0.0007560433910825966,0.034250693885858684,0.8068725925909053,1,1.0,0.9965814280925277
+188,0,0.1027761614572398,1.95,1.3562881138094456,0.0006855852232580011,0.03534915629696976,0.8134612476804127,0,0.10652747527239763,0.2005505711609359
+188,1,0.18156054947440892,1.9,1.357029305752994,0.0006844145038077794,0.03577255422705231,0.8019295736885341,0,0.20441948636265672,0.16597584976448734
+188,2,0.21717558621221156,1.9,1.3558354076084906,0.0006803525411385849,0.03576144582345216,0.8017385769722096,0,0.3063472448476623,0.1487889609104888
+188,3,0.1755160381883226,1.9,1.3594188779552165,0.0006825853045203086,0.036054274198079383,0.8023082757475962,0,0.31331212508542916,0.1673039605138364
+188,4,0.18822831162802087,1.8499999999999999,1.3624224850690538,0.0006843580472797416,0.03601712769718257,0.7906406149898739,0,0.3388952686567854,0.17556734721768907
+188,5,0.2644943497461964,1.9,1.3642601853776695,0.0006859264354378833,0.03610427195467388,0.8030760871695521,0,0.4270473554741385,0.1455846918551365
+188,6,0.21730555161027068,1.95,1.243691994731497,0.0006789824567518372,0.033838961781968456,0.7957678173472461,0,0.43487531621946557,0.14451808374161484
+188,7,0.2265656523457035,1.9,1.2641802975723344,0.0006734216405653238,0.03411654579391174,0.7867637221642756,0,0.45986069779208366,0.14207124409623345
+188,8,0.29573779662359556,1.95,1.276602501665649,0.0006669067865976522,0.03463561790663607,0.8010605954321128,0,0.5209202517778002,0.1578989863749182
+188,9,0.31808798872588484,1.95,1.2768485902720754,0.0006667412830568334,0.034708421044840565,0.8010997570842455,0,0.5886661694159186,0.1420717365317246
+188,10,0.36840823868878064,1.95,1.274106834493527,0.0006651403770854709,0.03448261167371975,0.8006620169416069,0,0.6985932027720592,0.12990319193319005
+188,11,0.40735655430640394,2.0,0.5341237396335851,0.00023604812355539808,0.016544176763709912,0.6736182474992963,0,0.8050431367884089,0.11779766530346797
+188,12,0.424995042199296,2.0,1.0728949582287353,0.0006985392718090568,0.031393589799399504,0.7797640730955923,0,0.8716367826453296,0.12113443047054724
+188,13,0.42690668998516196,2.0,1.0716881796643254,0.0006949088159369358,0.03173348445484109,0.7795555127805226,0,0.9114129939792501,0.14113830797820612
+188,14,0.43156940756335593,2.0,1.0702341759512506,0.0006951089016003231,0.031815118098904784,0.7793056113727015,0,0.9185510515411521,0.14716328982298346
+188,15,0.4657211923047966,2.0,1.068707489674351,0.0006950895413741593,0.03161851507263381,0.7790429204542522,0,0.9766466387124885,0.18354178939933713
+188,16,0.4540055635366321,2.0,1.0669360859712922,0.000695167584615043,0.030989888447555257,0.7787378759700511,0,0.9978285931527258,0.18291375425180573
+188,17,0.4954636324794767,2.0,1.0801539322228826,0.0007106488097019647,0.03132452455038792,0.7810122820318103,0,1.0,0.18487877493158908
+188,18,0.49541831663591496,2.0,1.0789220869182068,0.0007060325355805123,0.031516682386354924,0.7807999438562464,0,1.0,0.18472772211971658
+188,19,0.4973960642322728,2.0,1.0775796826490656,0.0007015869475820078,0.03187264652446235,0.7805685800060964,0,1.0,0.191320214107576
+188,20,0.49712764959773087,2.0,1.076174848232649,0.0006974004751263021,0.03190941074030186,0.7803264280784494,0,1.0,0.190425498659103
+188,21,0.4807492348611029,2.0,1.0747534547751774,0.000693616234528991,0.031547428641974226,0.7800813814578379,0,1.0,0.20249744953700943
+188,22,0.5073183078358451,2.0,1.358308289266916,0.0006889807975635656,0.03616026915370333,0.824868412093651,0,1.0,0.19106102611948345
+188,23,0.4975461518420109,2.0,1.069280377635072,0.0006955766356266414,0.03093952283663594,0.7791416864248474,0,1.0,0.1918205061400363
+188,24,0.4834663635531963,2.0,1.0678495823451253,0.0006915947888970314,0.031178499381362263,0.7788940054653571,0,1.0,0.21155454517732075
+188,25,0.49475855204164054,2.0,1.3594463160091228,0.0006906054954950827,0.03593041507121741,0.8250332203091773,0,1.0,0.2491951734721351
+188,26,0.4770556077471852,2.0,1.3586186401841158,0.000691100607007934,0.035966886437851446,0.8249138533599567,0,1.0,0.2568520258239506
+188,27,0.4803617319818214,2.0,1.3590757356623153,0.0006934777626931167,0.036318739337328924,0.8249805487717313,0,1.0,0.26787243993940457
+188,28,0.5080861843525228,2.0,1.3592444633050418,0.0006955899702620047,0.03626986628535056,0.8250055195081356,0,1.0,0.2936206145084095
+188,29,0.4928226442748905,2.0,1.358494317558232,0.0006963254776418213,0.03592602118712449,0.8248974059782203,0,0.9974592246981484,0.3127965146521038
+188,30,0.5141168150728055,2.0,1.3584955292021268,0.0006984137274336556,0.035837359421004064,0.8248981842493303,0,1.0,0.3137227169093515
+188,31,0.5227096326650713,2.0,1.3577729086334196,0.0006991451827558488,0.03596394719762387,0.8247939949862159,0,1.0,0.34236544221690407
+188,32,0.5459952101122325,2.0,1.3570294654459951,0.000699851302176085,0.036098496970700784,0.8246867390946218,0,1.0,0.31998403370744144
+188,33,0.5218592272299487,2.0,1.3562174824442779,0.0006979879627423172,0.0362882440529153,0.8245687737584733,0,1.0,0.3395307574331621
+188,34,0.5537054141797814,1.95,1.355432842789823,0.0006986562012333012,0.03624004916750288,0.8133354012394658,0,1.0,0.3456847139326044
+188,35,0.5307584688998707,1.95,1.3538476257203231,0.0006967652298687572,0.03580275446964783,0.813094037815928,0,1.0,0.369194896332902
+188,36,0.508564782897266,1.9,1.3529799195862915,0.0006973896388340018,0.03592795824232268,0.8012897206082709,0,1.0,0.36188260965755353
+188,37,0.5280409856184417,1.8499999999999999,1.3523688439577017,0.0007001474647641201,0.03620822375534559,0.7889768504174399,0,1.0,0.36013661872813896
+188,38,0.5136789988236187,1.9,1.350707310548016,0.000700961489540765,0.03583576362034941,0.8009287567875052,0,1.0,0.37892999607872885
+188,39,0.565276201775799,1.95,1.3514596652028081,0.0007035994460093324,0.03576251534505758,0.8127329433463819,0,1.0,0.3842540059193297
+188,40,0.5182350410757022,1.95,1.3513616834220286,0.0007012174041147554,0.035814295543283504,0.8127173051179062,0,1.0,0.394116803585674
+188,41,0.5427586562225319,1.9,1.351184978031585,0.0007035493193259171,0.03575198808213176,0.8010057310216459,0,1.0,0.4091955207417731
+188,42,0.5220002619361547,1.9,1.2955346701359414,0.0006550725344355716,0.03464210026295828,0.7919705936006993,0,0.9855720617302963,0.42590479081345384
+188,43,0.5520713338396654,1.8499999999999999,1.2934605047475676,0.0006557080086745765,0.03453577150454059,0.7789868427109642,0,1.0,0.4402377794655516
+188,44,0.530886020404895,1.8499999999999999,1.2978717419392292,0.0006622541539973513,0.03436086520120171,0.7797476230371754,0,1.0,0.43628673468298307
+188,45,0.5288679377032256,1.7999999999999998,1.2958698422332304,0.0006629415175848636,0.034508909473698925,0.7662391468102142,0,0.9984517714755865,0.4316240970433033
+188,46,0.574160594161057,1.8499999999999999,1.291825642958327,0.0006628043406605227,0.03421781043521117,0.7787076918810797,0,1.0,0.41386864720352334
+188,47,0.5708270526352683,1.8499999999999999,1.291783906011609,0.000661010273005863,0.034445929035721,0.7786998812726096,0,1.0,0.40275684211756085
+188,48,0.5239955153391215,1.9,1.2895417846574047,0.0006585920196746729,0.034106709802184706,0.7909826827853312,0,1.0,0.41331838446373814
+188,49,0.5499448577129539,1.8499999999999999,1.2896385407090645,0.0006598577734612575,0.0343069688897714,0.7783295595165363,0,1.0,0.4331495257098461
+189,0,0.016420419335681863,1.8499999999999999,1.3669802789824161,0.0007053365840064623,0.036076936364013434,0.7914009848629355,1,0.1418551596996905,0.1655945181860189
+189,1,0.02978657821765396,1.7999999999999998,1.3812755415848856,0.0006976391714605422,0.03659522462262275,0.7811996054111836,1,0.1872991112953971,0.14955644566498372
+189,2,0.17822632392437096,1.8499999999999999,1.381614102177089,0.0006984007846377644,0.03656131161645534,0.793804245045681,1,0.21731549896077032,0.17100041446687603
+189,3,0.22482433100918514,1.8499999999999999,1.3761364106829457,0.0006953141627621825,0.036462518720411785,0.7929052049246698,1,0.2608415308421961,0.23495906224102237
+189,4,0.2312314759635838,1.8499999999999999,1.3859176368917456,0.0007000546004807124,0.036775361574556284,0.7945082930081526,1,0.28479872746134943,0.2577066165968133
+189,5,0.20406473847301076,1.9,1.3858203872393915,0.0007000682236122302,0.03654407398855951,0.8064678717046588,1,0.31941263487927707,0.2209989484043331
+189,6,0.21144008893557692,1.8499999999999999,1.385853036584848,0.0007002020929604777,0.03653024547518606,0.7944977940095941,1,0.36657369440792376,0.18270203724135797
+189,7,0.2843618785254376,1.9,1.3729960697358794,0.0006951963960136435,0.03627983941565038,0.8044568821716425,2,0.40557517240757684,0.2404393652080229
+189,8,0.2825697476183463,1.9,1.3858311850052232,0.0007000616875637537,0.03653730208111394,0.8064695549465238,2,0.4312830014065572,0.26685515685241157
+189,9,0.37404039751943013,1.95,1.385762810468475,0.000699909743511741,0.03661022481794972,0.8178968032800432,2,0.5089390055594923,0.3015493176521106
+189,10,0.3760714931993163,1.95,1.3855608231020888,0.0006998787820159686,0.03674962374642895,0.8178667077981103,2,0.5507334665485576,0.35259368859964424
+189,11,0.3250001688934282,2.0,1.385653995915813,0.0007001947063145753,0.036647199597538975,0.82878694248525,2,0.5769688651859686,0.3140420760634691
+189,12,0.3244203000097667,1.95,1.385945046035238,0.0007001479003774509,0.036428030240809074,0.8179240151033333,2,0.6020884768796957,0.2786163641929613
+189,13,0.3188499125292271,2.0,1.3848222662863277,0.0007012402683682947,0.03676027213966694,0.828669185375114,2,0.6193175928399363,0.23707625131084203
+189,14,0.3642025831634558,2.0,1.3845720129070893,0.000701380037261417,0.03675367844522144,0.8286336920314665,2,0.6435513351990867,0.255940163612737
+189,15,0.3315397231499513,2.0,1.384423987390576,0.0007019149880413823,0.03647188555461335,0.8286128233415518,2,0.6724878330920431,0.20848196637711353
+189,16,0.44731996169048965,1.95,1.384101991465641,0.0007021610795336415,0.03669804946666024,0.817649978932533,2,0.735961059850262,0.24311845916794952
+189,17,0.36330032401773826,1.95,1.3841500760227738,0.0007013651607007418,0.03653069555495883,0.8176569108244683,2,0.7622302789036718,0.1946940415208984
+189,18,0.4762627556730609,1.9,1.3861769416447194,0.0007000923685636165,0.03658772248153276,0.8065235232591197,2,0.823849792820693,0.22240946181594565
+189,19,0.5082175919017686,1.9,1.3150732168026598,0.0007652691483051967,0.035913863441401475,0.7952071644605365,2,0.8881784893554607,0.24315398719861442
+189,20,0.5055830060880101,1.9,1.3138196507740914,0.0007750330411180978,0.03606391320321093,0.7950061247510495,2,0.9178602338067399,0.2947963752177136
+189,21,0.5690722066945303,1.95,1.3106152676871328,0.0007755415690746072,0.03639220005172336,0.8064594164025738,2,0.9753435597982562,0.32978260925075953
+189,22,0.5375978978673684,1.95,1.310716749630969,0.0007834607120758308,0.036558197270709615,0.8064777273937691,2,1.0,0.3586596595578946
+189,23,0.5969007150418391,1.9,1.3168738470096086,0.0007724869060716748,0.03652154061246572,0.79550259449012,2,1.0,0.38966905013946346
+189,24,0.5079538720330545,1.9,1.313311424805412,0.000782171139546516,0.03639052105246632,0.7949256133416024,2,1.0,0.3598462401101817
+189,25,0.5467313493919405,1.8499999999999999,1.3252622544439085,0.0007704814012265534,0.03619537880442386,0.7844522460171864,2,1.0,0.3891044979731348
+189,26,0.5068642878921668,1.8499999999999999,1.328869407432368,0.0007623435544388184,0.036567840804363795,0.7850587961959329,2,1.0,0.3562142929738893
+189,27,0.5699277469305806,1.7999999999999998,1.3390283224841184,0.0007527334860132963,0.03661691252114068,0.7739119862533017,2,1.0,0.3997591564352685
+189,28,0.6095194546436181,1.7999999999999998,1.3349273235344659,0.0007552402916361097,0.036224727804007685,0.7731944986154485,2,1.0,0.43173151547872696
+189,29,0.5120026052210646,1.7999999999999998,1.3727132686680512,0.0006911438974361097,0.036279794805448476,0.779730329271909,2,1.0,0.37334201740354855
+189,30,0.5729481666756915,1.7499999999999998,1.3272667054462306,0.0007757168502472555,0.036722243368245935,0.7583799640764038,2,1.0,0.40982722225230483
+189,31,0.557185358936472,1.7499999999999998,1.37005632924499,0.0006899916353258367,0.036080447301376405,0.7661030957903238,1,1.0,0.42395119645490664
+189,32,0.5287306303421119,1.7999999999999998,1.3842289458748196,0.0007001726606647749,0.036601748645491504,0.7817048666785118,1,1.0,0.3957687678070396
+189,33,0.5143699282117102,1.7499999999999998,1.3568948784965744,0.0007041644051467247,0.03615167659709233,0.7637415668968067,1,1.0,0.3478997607057007
+189,34,0.5287852795080359,1.7999999999999998,1.3632823698109566,0.0007021448716520999,0.03628376108985344,0.7781100899140896,1,1.0,0.3626175983601193
+189,35,0.529598096388622,1.8499999999999999,1.3637459987831826,0.0007049445666870693,0.03634292498374934,0.7908664193070606,1,1.0,0.36532698796207336
+189,36,0.5773714013068513,1.9,1.3639117575404547,0.0007072376467708707,0.03626623187584338,0.8030277211250182,1,1.0,0.4245713376895041
+189,37,0.5505417779085071,1.9,1.3823383393226845,0.000700404662379956,0.03651378377108086,0.8059239277878044,1,1.0,0.4351392596950235
+189,38,0.6026785700864065,1.8499999999999999,1.3821107857360255,0.0007010682553052956,0.03669473560179027,0.7938864028451122,1,1.0,0.5089285669546879
+189,39,0.5561303599964617,1.8499999999999999,1.3815049166273776,0.0007016269213890541,0.03669217637419235,0.7937874292514817,1,1.0,0.48710119998820534
+189,40,0.5499824224396124,1.7999999999999998,1.3832309365404023,0.0007011685988760678,0.03649599954776972,0.7815348562128354,1,1.0,0.46660807479870803
+189,41,0.537489721456725,1.8499999999999999,1.384401941853263,0.0007008499535176753,0.03664335931810678,0.7942609827357664,1,1.0,0.42496573818908323
+189,42,0.5931175128284385,1.9,1.3852601567775498,0.0007006002424836942,0.03677209125322252,0.8063805834826248,1,1.0,0.4770583760947949
+189,43,0.6111273382388279,1.9,1.3848637443575793,0.0007007465376533115,0.03670433103039148,0.8063187294160259,1,1.0,0.5370911274627597
+189,44,0.558881994264848,1.95,1.3842865076489013,0.0007009132332940757,0.03670923610706522,0.8176771163438907,1,1.0,0.49627331421615983
+189,45,0.6040871090381091,1.9,1.3850103688698627,0.0007004982454103243,0.03674665690293298,0.8063415490229329,1,1.0,0.5469570301270302
+189,46,0.6070540105979563,1.9,1.385038838035363,0.0006999943700225094,0.03673802500250582,0.8063458372201017,1,1.0,0.5568467019931872
+189,47,0.6349876753613267,1.95,1.3848832681294638,0.0006995281374356183,0.03659787791681067,0.8177656524493807,1,1.0,0.6166255845377556
+189,48,0.6081220764148257,1.95,1.3732337899533913,0.000709744094997795,0.03665974466171398,0.816026225824564,1,1.0,0.6270735880494192
+189,49,0.61936593910874,1.9,1.3720690341164885,0.0007106226898576942,0.03639084838552298,0.8043158687315239,1,1.0,0.6645531303624667
+190,0,0.14057014721372782,1.95,1.3543569472941226,0.0006828504790538361,0.0353377399567677,0.8131672001577719,0,0.13718745243263492,0.21898388746891287
+190,1,0.1891097407307986,1.9,1.3573339449281945,0.000683010732705658,0.03578031298954342,0.8019775118131349,0,0.22080230991380195,0.2026293892175926
+190,2,0.22399921042863016,1.9,1.3335528442936835,0.0006989335069502618,0.035867110103181866,0.7981788379713811,0,0.29974347757026076,0.21367273133508616
+190,3,0.24615104291401854,1.9,1.3322346525952802,0.0006984718289879318,0.03605498387400004,0.7979662589610141,0,0.3554993123436647,0.21317105992184213
+190,4,0.267665424521783,1.9,1.3307253498020082,0.0006979119023821867,0.035740164161025,0.7977226449063213,0,0.42233915344904943,0.19576587714054397
+190,5,0.3084613863242986,1.9,1.290937498797035,0.0007425407561488376,0.03543433806821161,0.7912410756348559,0,0.5177100359235108,0.20459123984964755
+190,6,0.33026927246372756,1.9,1.2805324303854266,0.0007453874100679924,0.03559658062841321,0.7895181182045099,0,0.5727206219092785,0.20393674566672051
+190,7,0.3758921135076762,1.9,1.2812454248315577,0.000755293356316874,0.035373157735878555,0.7896398695827157,0,0.6701967750654315,0.19271134493834535
+190,8,0.4130691110945155,2.0,0.47106350575126255,0.0001760101997399611,0.014614023123552856,0.6595782950448504,0,0.7779609732438468,0.17294907265658907
+190,9,0.44282405435297195,2.0,0.488398488954954,0.00018829813100611486,0.015128371916567462,0.6634652543069705,0,0.8753808339668789,0.1422390692207346
+190,10,0.4356778510518044,2.0,1.062685546467486,0.0006925934103641548,0.030871151980531607,0.7780037290856815,0,0.9022568193500742,0.18258374437258235
+190,11,0.45066502262123037,2.0,1.0611629065356918,0.0006927609241883583,0.03083424948389033,0.777740694561074,0,0.9334304629530386,0.1909761248000496
+190,12,0.4659707024270574,2.0,1.0595058936590862,0.0006926759127248447,0.031145143887483816,0.7774541019048391,0,0.9688624145748254,0.1947524553237574
+190,13,0.4950373946394017,2.0,1.0577046316155072,0.0006925395829416737,0.031556970839960966,0.7771422459785735,0,1.0,0.18345798213133901
+190,14,0.4944067985782871,2.0,1.0564281877669937,0.0006889186444949476,0.031546289856941925,0.7769198425626528,0,1.0,0.18135599526095716
+190,15,0.48083466313989887,2.0,1.0550316502415826,0.00068527923799077,0.03124973890600339,0.7766764449917977,0,1.0,0.20278221046632952
+190,16,0.5049097388363915,2.0,1.3554938214464687,0.0006945101550897897,0.0362128110175562,0.8244630612676663,0,1.0,0.18303246278797142
+190,17,0.4814319757558407,2.0,1.0497613399697425,0.0006855070907869866,0.03053346962497681,0.7757610553938596,0,1.0,0.20477325251946885
+190,18,0.4912152851218942,1.95,1.3560193144423027,0.0006954597408666492,0.0357362489860007,0.8134234533231184,0,1.0,0.23738428373964726
+190,19,0.5156020413209954,2.0,1.355062732975558,0.0006972148927941811,0.03588798264970725,0.8244014469100477,0,1.0,0.2186734710699845
+190,20,0.46466616482634937,2.0,1.3548657558511452,0.0006955816847620182,0.0360083810933245,0.8243724570309129,0,0.9981060113706255,0.21807920092699726
+190,21,0.5081483199451239,1.95,1.3543075824504702,0.0006968165568721768,0.03630066248558737,0.8131639439468252,0,1.0,0.22716106648374612
+190,22,0.4919257577503288,1.95,1.360747364786593,0.0006957635704612235,0.03605624742664289,0.8141400382331458,0,1.0,0.23975252583442924
+190,23,0.47871638598047805,2.0,1.3604691013160692,0.0006973716407225157,0.035906609812302544,0.8251827658977764,0,1.0,0.2623879532682601
+190,24,0.5253138506977173,2.0,1.360511316580738,0.0006984040099834841,0.03589249398487625,0.8251891534694132,0,1.0,0.25104616899239085
+190,25,0.5032355984411991,2.0,1.3597271947133995,0.0006968693078295468,0.035945874569325,0.8250755704729095,0,1.0,0.27745199480399724
+190,26,0.50156038818485,1.95,1.35939098621372,0.0006984188286259193,0.036015423167867204,0.8139355131956116,0,1.0,0.2718679606161669
+190,27,0.5045151518490626,2.0,1.3583312693970346,0.0006998519871767937,0.03626679002190053,0.8248748726365092,0,1.0,0.28171717283020864
+190,28,0.5244351548394509,2.0,1.3584129944743766,0.0007010453172024874,0.03632614091141635,0.8248870227763012,0,1.0,0.2481171827981697
+190,29,0.4990889444279107,2.0,1.3576967105747757,0.0006993965753076409,0.03600004210207545,0.8247830560795351,0,1.0,0.2636298147597022
+190,30,0.5086677151640633,1.95,1.357115760109891,0.0007005616251508491,0.03586832165955299,0.8135913465416292,0,1.0,0.29555905054687753
+190,31,0.5181685612178697,2.0,1.3558205500460285,0.000701650417823289,0.03611750497521497,0.8245124079170013,0,1.0,0.3272285373928989
+190,32,0.5260121214637528,2.0,1.3558113675265864,0.0007024997690046641,0.036083807906448176,0.8245113250681775,0,1.0,0.35337373821250917
+190,33,0.5570203045477738,2.0,1.355111078694046,0.0007033042437186361,0.036322645018691146,0.8244102084771221,0,1.0,0.3567343484925794
+190,34,0.5489618476660807,2.0,1.3543387927340118,0.0007012906613911561,0.03626992105229675,0.8242978026258206,0,1.0,0.3632061588869355
+190,35,0.5470297785401166,2.0,1.3612718131049897,0.0006996841106981986,0.03609629209752524,0.8252991986275446,0,1.0,0.3567659284670552
+190,36,0.5152819195637247,2.0,1.366961012187581,0.0006986415979334668,0.03606434479790609,0.8261176528281604,0,1.0,0.3842730652124155
+190,37,0.5598134461075183,1.95,1.3668246425102346,0.0007001914550993086,0.036194856936075215,0.8150592076345893,0,1.0,0.3993781536917273
+190,38,0.5212906979086471,1.95,1.3711857871716933,0.0006993749301119484,0.03648728775399832,0.8157154479809554,0,1.0,0.40430232636215685
+190,39,0.5273485613791831,1.95,1.2416981256877089,0.0006301159149908857,0.032806683973778145,0.7954276769484186,0,1.0,0.4244952045972767
+190,40,0.5746705702985183,2.0,1.2393104799911705,0.0006295882577627278,0.032814227709628656,0.8069900593312161,0,1.0,0.4155685676617275
+190,41,0.5573443399259146,2.0,1.2399279347806917,0.0006296258453079137,0.032785510915317055,0.8070862257759475,0,1.0,0.45781446641971535
+190,42,0.5649647310329636,2.0,1.25452392332806,0.0006343953515491677,0.033195932194020374,0.8093500839336075,0,1.0,0.48321577010987854
+190,43,0.5909364952087977,2.0,1.2669950928661886,0.0006404387282630112,0.033671661631389606,0.8112688473082085,0,1.0,0.46978831736265886
+190,44,0.5801976379295416,2.0,1.2644461015192148,0.0006388193362388902,0.03384374937059877,0.8108777605233943,0,1.0,0.46732545976513845
+190,45,0.5456352836448543,2.0,1.27907584642952,0.0006425084235450025,0.03396000335008616,0.8131122292757568,0,1.0,0.48545094548284734
+190,46,0.5670836758052248,1.95,1.2767556506995381,0.0006420527963726404,0.033892983762212045,0.8010770795454776,0,1.0,0.4902789193507493
+190,47,0.550251220052299,1.95,1.2852086065256676,0.0006471428693842812,0.033997662379539405,0.8024222665593141,0,1.0,0.5008374001743298
+190,48,0.592482938888091,2.0,1.282997020434447,0.0006468500628847086,0.03419391165422428,0.8137086785743953,0,1.0,0.4749431296269698
+190,49,0.5837568616343368,2.0,1.2829871724580566,0.0006462132007618313,0.033963674157133604,0.8137069926647804,0,1.0,0.4458562054477893
+191,0,0.08154472131897753,2.0,1.3645034851063051,0.0006957373461060407,0.03568414075988338,0.8257635170688847,0,0.18572780437558106,0.19084533189581696
+191,1,0.20495693699415718,1.95,1.3711698288164311,0.0007028093842432195,0.03644110803442634,0.8157140816172223,0,0.25818962654358646,0.20560362125574191
+191,2,0.2483031348458583,1.95,1.3178776230587144,0.0006925462442070726,0.03556106470309946,0.8075646274507738,0,0.34455074923089213,0.20160945051167156
+191,3,0.24378514912631433,1.95,1.3211005426822073,0.0007049920585423757,0.035988059621863716,0.8080688461971091,0,0.38962670363411367,0.2264482255755629
+191,4,0.2600139400581724,2.0,1.3235839262684694,0.0007008671897256737,0.035726484158944485,0.8197989064784033,0,0.42557184411244064,0.23261734137732046
+191,5,0.2856722932099858,2.0,1.2479992258743442,0.0007469002286463085,0.0347439653135309,0.8083761313848807,0,0.47227614627489245,0.2558727823334293
+191,6,0.33434614257828554,2.0,1.2508966231971825,0.0007397962080691238,0.034941082267790795,0.8088223523560795,0,0.5459773207904683,0.2531840475403274
+191,7,0.3677972492031761,2.0,1.2534666160652164,0.0007557324844508897,0.03509366301409571,0.8092243523264865,0,0.6278228515887775,0.2555603618922169
+191,8,0.41444095579597856,2.0,0.6887525200554648,0.0008443809370241334,0.029600784944777365,0.7069136572045824,0,0.7239185700632148,0.24957842590230872
+191,9,0.4558268069840317,2.0,0.6852530148861241,0.0008342426889105239,0.029581391569878483,0.7061838743804382,0,0.8314973771298775,0.24409285377360243
+191,10,0.41855124340118804,2.0,1.370078495772958,0.0006922124898237681,0.036195800767090336,0.826563172372612,0,0.8518972388304951,0.2593078262299666
+191,11,0.45085550583886647,1.95,1.3708104796668952,0.0006938450059020759,0.03621525237291077,0.8156573607043723,0,0.8722942395322336,0.27312603341991
+191,12,0.4535866728815309,1.95,1.3698553782413154,0.0006937555410559356,0.03616709555850492,0.8155136810243506,0,0.8963599820960718,0.31680893347700717
+191,13,0.4979693694171857,2.0,1.3704043099628453,0.0006955654049379866,0.03638138836360182,0.8266108361008444,0,0.9323463944844728,0.3501027054113218
+191,14,0.5507649860131347,2.0,1.3701105500622848,0.0006957968172922409,0.036310419436967264,0.826568795164382,0,1.0,0.3358832867104489
+191,15,0.5411634525782195,2.0,1.3693494275029106,0.0006945149353951717,0.03641563774225886,0.8264592912702894,0,1.0,0.33721150859406485
+191,16,0.5257949005753888,2.0,1.3731996406324325,0.0006946813170119985,0.03629109851900114,0.8270108592114593,0,1.0,0.3526496685846292
+191,17,0.5260861413786293,2.0,1.372504701706493,0.0006947337309463042,0.0362730324833159,0.8269114309490354,0,1.0,0.35362047126209745
+191,18,0.505321722719102,2.0,1.371737435684596,0.0006947824648895876,0.03625229347046126,0.8268015994053253,0,1.0,0.35107240906367354
+191,19,0.5298098499717196,1.95,1.3723609834846697,0.0006967027858554306,0.03633278987718665,0.8158912395841456,0,1.0,0.36603283323906555
+191,20,0.5529571927779647,1.95,1.3712096936186509,0.000696808101863539,0.03639472623974162,0.8157182699606007,0,1.0,0.3431906425932155
+191,21,0.5253338009343879,1.95,1.3704755570771598,0.0006953481820110221,0.036312724909773816,0.8156074484070219,0,1.0,0.35111266978129263
+191,22,0.5512277155751356,1.9,1.3696463085381336,0.0006954627353027871,0.03621086864378623,0.8039294911217242,0,1.0,0.3374257185837851
+191,23,0.503119507317143,1.9,1.3684207701647917,0.0006939324069353751,0.03620377623193362,0.8037357585921696,0,1.0,0.34373169105714363
+191,24,0.5054942114049685,1.8499999999999999,1.369046334405174,0.0006960421710438828,0.0363055766940312,0.7917387901761641,0,0.9952558112830379,0.35797295630584464
+191,25,0.5326915867492715,1.9,1.368947535163199,0.0006979990422238491,0.03628576666888268,0.8038201221913679,0,1.0,0.3756386224975717
+191,26,0.5145896004386195,1.9,1.3685763265889037,0.0006983645314712955,0.03626893639390483,0.8037616937684038,0,1.0,0.3819653347953982
+191,27,0.5175031377254854,1.95,1.3686958389666812,0.0007003840889964035,0.036278086960140794,0.8153411592133832,0,1.0,0.39167712575161784
+191,28,0.5548730212224745,2.0,1.369007673619337,0.0007021390716602109,0.036353272818152496,0.826412457429771,0,1.0,0.3495767374082481
+191,29,0.551430657813771,2.0,1.3688124811470772,0.0007003917273807143,0.036299016875958975,0.8263839529329317,0,1.0,0.3381021927125696
+191,30,0.5394715160267686,2.0,1.3681805630660626,0.000698906286136697,0.036095346798585594,0.826292844305285,0,1.0,0.3315717200892284
+191,31,0.50111942720003,2.0,1.3725300881004605,0.0006983273323396316,0.036297213210848035,0.8269160931229929,0,1.0,0.3370647573334331
+191,32,0.5203074373754832,1.95,1.3724482592752953,0.0006995704318940692,0.03645399978898021,0.8159052106218121,0,1.0,0.33435812458494385
+191,33,0.4963671472638529,2.0,1.3715815753147835,0.0007000405129239578,0.036305568328740316,0.8267807850128377,0,1.0,0.321223824212843
+191,34,0.5392308585269798,1.95,1.3717443847917392,0.0007012585062471932,0.0364300218175164,0.8157999697568833,1,1.0,0.29743619508993263
+191,35,0.5394820731572794,1.95,1.357407837441923,0.0007111169226917392,0.03625986526767627,0.8136388401041565,1,1.0,0.3316069105242645
+191,36,0.5475092320910937,2.0,1.3570823224283917,0.0007075285821887734,0.036098064549934784,0.8246966008001565,1,1.0,0.358364106970312
+191,37,0.5822350902022198,2.0,1.3571082683016593,0.0007040927684132532,0.03600559133418853,0.8246993583871695,1,1.0,0.44078363400739906
+191,38,0.5532088777744381,2.0,1.3843048162126883,0.0006994511970450165,0.03671676766363394,0.8285951989096654,1,1.0,0.4440295925814602
+191,39,0.5804056319591033,1.95,1.3845440069382273,0.0007001996135809551,0.03652587498148803,0.8177152887796476,1,1.0,0.46801877319701096
+191,40,0.5910289233229881,1.95,1.3843123800975317,0.0006995708935207751,0.036659949138671544,0.8176805731800209,1,1.0,0.50342974440996
+191,41,0.6275431123984665,2.0,1.3839758157576545,0.0006990126935258063,0.03640348046545861,0.8285483429201208,1,1.0,0.5918103746615548
+191,42,0.6251794413845472,2.0,1.3835310228083162,0.0006989875580459378,0.03654260286593323,0.8284851410416134,1,1.0,0.6172648046151572
+191,43,0.6532150907917211,2.0,1.3730344510159447,0.0006915540087723004,0.03634298250004353,0.8269863303560799,1,1.0,0.6773836359724035
+191,44,0.6745715693644132,2.0,1.371477161591443,0.0006907652707679301,0.03618511665574474,0.8267631740700062,1,1.0,0.7485718978813772
+191,45,0.6510984152213329,2.0,1.36967001118348,0.0006898475671736953,0.03601286373634326,0.8265039274060768,1,1.0,0.7703280507377763
+191,46,0.6975943439661596,1.95,1.372226471108163,0.0006932771986197879,0.03623988457839357,0.8158700040317232,1,1.0,0.8253144798871983
+191,47,0.6731066054481485,2.0,1.1980637726227519,0.0007832067266357252,0.034023907561464936,0.8005331979020807,1,1.0,0.8436886848271613
+191,48,0.7042093327521461,2.0,1.2233277370873843,0.0007674505089054005,0.034479826210927066,0.8045317765910597,1,1.0,0.8806977758404869
+191,49,0.7147634921177259,2.0,1.2157717763196976,0.0007622749725945486,0.033897282447645935,0.80333915305444,1,1.0,0.9158783070590862
+192,0,0.18543190048562513,2.0,1.36726024530459,0.0007051975860875074,0.03607995800817887,0.8261625157799869,1,0.15129029595460378,0.24971927367927882
+192,1,0.14968255131355962,1.95,1.3670309313498805,0.0007056673279592464,0.03635911039436461,0.8150919517385818,1,0.1875479206705169,0.21554461015117612
+192,2,0.178044910328964,1.9,1.3704849214003312,0.0007045747370233292,0.03636784209974099,0.8040645164588915,1,0.21925405434977857,0.23447762863017524
+192,3,0.19438077787618682,1.9,1.3856428128991807,0.000699758101714381,0.03644214078504545,0.8064400580306649,1,0.24877616311801287,0.2495677087632723
+192,4,0.22928217592273095,1.95,1.385764583692499,0.0006997990427693266,0.03675789912343423,0.817897034410896,1,0.2614760828036647,0.28230580933755023
+192,5,0.27322376517762026,1.95,1.385654978896058,0.0006997490267154026,0.03668669480725422,0.8178806942420167,1,0.30760119032365,0.3339442968272008
+192,6,0.3101229975558228,1.95,1.3855730530448833,0.0006996618017197731,0.036399900481331335,0.8178684649299494,1,0.37248764971887455,0.3704264588942433
+192,7,0.32065429510383964,1.95,1.3854384774225388,0.0006995893497930765,0.036734982349337045,0.8178483961496174,1,0.4076645811189444,0.3919615421875397
+192,8,0.36717269348081805,2.0,1.3829849150917695,0.0007009910527395996,0.03659228254000011,0.8284080961593163,1,0.45357035088672554,0.45248184375375944
+192,9,0.3478476922692739,2.0,1.3826265280988308,0.0007024574497062413,0.03653766526763748,0.8283575631139423,1,0.4835275716212376,0.448122212069263
+192,10,0.39062815964980385,2.0,1.3831820991068218,0.0007016419703388784,0.036680012642864634,0.828436308711138,1,0.5172367436254129,0.47911154066546224
+192,11,0.42952350086771374,2.0,1.383185011435212,0.0007027345632506205,0.03672505619294163,0.8284370332175359,1,0.5540174958239917,0.5263883417937235
+192,12,0.39732938986971,2.0,1.3838806709336073,0.0007019045491741173,0.0363485513700173,0.8285356482664069,1,0.6094822075648746,0.4784550228125338
+192,13,0.4664091028711997,1.95,1.3278797265301459,0.0007123126951965476,0.03609813176178497,0.8091203201544156,1,0.6546668195728461,0.5151412501402043
+192,14,0.48583811570462304,1.95,1.3228917172413934,0.0007109553607077823,0.03529506395672858,0.8083483402935775,1,0.6916266268021593,0.5639582166125311
+192,15,0.4835650380278803,2.0,1.3285866259382595,0.0007055316864010089,0.03537626055709279,0.820538140331731,1,0.7257072194675094,0.5776071674695884
+192,16,0.5260455848845151,2.0,1.3321623887775784,0.0007181013130684964,0.03575849300895551,0.8210677803549625,1,0.7513607179361702,0.6183376590334898
+192,17,0.5554525741174627,2.0,1.1066127903685645,0.0006028201739976526,0.03061575394082077,0.7854675995613649,1,0.7972232083273597,0.6552109692883961
+192,18,0.5481574472008247,2.0,1.1233716487261605,0.0006466865239482452,0.03172944894896174,0.7882927357956323,1,0.8178854441975266,0.6700108984060469
+192,19,0.5421442206837271,2.0,1.3693722301275664,0.0006922932538763467,0.03625881113627696,0.8264619244193252,1,0.8569137989622203,0.63126233699613
+192,20,0.5940119379285183,2.0,1.3723617679663473,0.0006923791862633038,0.03624613483588372,0.8268902979708771,1,0.8822199428846297,0.6704132025822211
+192,21,0.5830894161824537,2.0,1.371824676740804,0.0006913078316159826,0.03612872716862485,0.8268130969452876,1,0.891107163408205,0.6888218360639055
+192,22,0.6268552190810021,2.0,1.3739866492051396,0.0006943221569938986,0.036312258653619645,0.827123320037598,1,0.9172824971723221,0.7331407340402439
+192,23,0.6453825248475248,2.0,1.3732752019843515,0.0006929889328439896,0.036391277193053524,0.827021184831133,1,0.9482288281673337,0.7536366452686375
+192,24,0.6895686904449398,2.0,1.3723176939209938,0.0006917983528439691,0.03635171001388547,0.8268838227116513,1,0.9965099090735551,0.8032157560517259
+192,25,0.6423911520509407,2.0,1.3059751762396146,0.0007925963584602105,0.03618130981877695,0.8172103319336956,1,1.0,0.7746371735031354
+192,26,0.680008156982818,1.95,1.372565652322237,0.0006918694641670621,0.036217959817465915,0.8159205295907257,1,1.0,0.8000271899427266
+192,27,0.689966770207515,1.95,1.2998061366973077,0.0008090046183148685,0.036754461925933804,0.8047772231654223,1,1.0,0.8332225673583831
+192,28,0.7010265752285474,2.0,1.2961184625879654,0.0008108895660719219,0.03653832241337811,0.8157388529438994,1,1.0,0.8700885840951579
+192,29,0.6630916335381478,2.0,1.2942583901789486,0.000810090751417377,0.03657805329442241,0.8154588627275876,1,1.0,0.8436387784604926
+192,30,0.6493225307166144,1.95,1.2916352007080858,0.0008185055269003789,0.03612990489688155,0.8034932830358205,1,1.0,0.7977417690553814
+192,31,0.6659396107155509,2.0,1.3721971435303386,0.0006916376045908714,0.03617376117062422,0.8268665195840311,1,1.0,0.8197987023851695
+192,32,0.6511366023526227,2.0,1.2867740593578407,0.0008297762019935112,0.03672518917215957,0.8143358704298141,1,1.0,0.8037886745087424
+192,33,0.6907021837472069,2.0,1.2838799710754776,0.0008348651160442706,0.03678449447489071,0.8138994481487158,1,1.0,0.8356739458240231
+192,34,0.6978475376641384,2.0,1.2806704597475282,0.0008378820792370343,0.036806178531911836,0.8134137386005383,1,1.0,0.8594917922137946
+192,35,0.7325291149912943,2.0,1.27719078534469,0.0008406006037207877,0.03668821156201965,0.8128858729968262,1,1.0,0.9417637166376474
+192,36,0.7314300464898551,2.0,1.2883287892389463,0.0008242527755677066,0.036205000664387726,0.8145691511947192,1,1.0,0.9714334882995167
+192,37,0.74,2.0,1.2845793267862364,0.0008266687447650537,0.03613147740082208,0.8140028724175213,1,1.0,1.0
+192,38,0.7051594215083233,2.0,1.2805127764417064,0.0008287377174982422,0.036538692653353924,0.8133870295309032,1,1.0,0.9838647383610777
+192,39,0.7031414132610491,1.95,1.2775342892818349,0.0008369186434052515,0.03668722676536003,0.8012631968860549,1,1.0,0.9771380442034968
+192,40,0.74,2.0,1.2719299566031141,0.0008468001434267108,0.036413385112887275,0.8120862628371007,2,1.0,1.0
+192,41,0.73,2.0,1.3836241937587397,0.0006985834041905373,0.03669448805097354,0.8284982651451637,2,1.0,1.0
+192,42,0.73,2.0,1.3838908425723593,0.0006984961891987067,0.036522474066460336,0.828536124880166,2,1.0,1.0
+192,43,0.73,2.0,1.3837571802659046,0.0006984352980056133,0.03647462606399124,0.8285171181400359,2,1.0,1.0
+192,44,0.75,2.0,1.3833210975411272,0.0006983601657959248,0.03666946070873757,0.8284551307999758,2,1.0,1.0
+192,45,0.75,2.0,1.3824927939909557,0.0006975667742306418,0.03646974038227449,0.8283371569363005,2,1.0,1.0
+192,46,0.7799999999999999,2.0,1.3814150405584131,0.0006967687626477414,0.03638607383916749,0.8281836247565278,2,1.0,1.0
+192,47,0.75,2.0,1.382988125849497,0.0006981279192084966,0.0366722344284505,0.8284077385840921,2,1.0,1.0
+192,48,0.75,1.95,1.3817897936592554,0.0006976406228531773,0.03652642337638046,0.8173036305209184,2,1.0,1.0
+192,49,0.75,2.0,1.3801787477975098,0.0006969844750489111,0.0363944607413065,0.8280076959068502,2,1.0,1.0
+193,0,0.11244845938663954,2.0,1.373023353396054,0.0006982397400990729,0.03593252354467124,0.8269866556971236,0,0.11929492201515665,0.21576830193525628
+193,1,0.1553742945404696,1.95,1.3738729812257138,0.0006973251028768699,0.036370141818356516,0.8161184391952048,0,0.15125606554916524,0.24957289440267844
+193,2,0.15010032082305283,1.95,1.3747109065871337,0.0006964172637670419,0.03640401706851527,0.816243880287351,0,0.1766669848020837,0.26477842300739785
+193,3,0.22815536998375519,2.0,1.3753618277313855,0.0006957414379519083,0.036564544239272564,0.8273202743460554,0,0.2804578249164403,0.21990746672393024
+193,4,0.21246064009279766,2.0,1.3273450472524853,0.0006879121660647161,0.03552346095315183,0.8203500451977088,0,0.30117377934039546,0.23997042785546502
+193,5,0.27463150307983203,2.0,1.326771887466133,0.0006856144264398902,0.03536474593068918,0.8202648822652704,0,0.39841642890181844,0.2175497717303488
+193,6,0.2847637779310655,2.0,1.3298641248492467,0.0006935028157590818,0.035640111592646295,0.8207226420354933,0,0.4519871280745844,0.21322975567077254
+193,7,0.2797269263703127,2.0,1.2534500564526805,0.0008217785569950673,0.035970296099707415,0.8092421876363187,0,0.47522600239722385,0.2321217513714106
+193,8,0.3504492598270913,2.0,1.2566389573875059,0.0008113807139613749,0.03579133314171182,0.8097307666536285,0,0.5843835355560042,0.22231948534896534
+193,9,0.3360041201778998,2.0,1.2550949003162106,0.0008121403065675912,0.035742034651225434,0.8094929991457595,0,0.5999667210237233,0.25339143922803486
+193,10,0.39947479906456235,2.0,1.2576364320282143,0.0008020385130355855,0.03533734036570928,0.8098815200700217,0,0.700858683557112,0.23043775213905837
+193,11,0.4167123580293732,2.0,0.6425971604829144,0.0007136662588208155,0.02685316722498467,0.6972052146387487,0,0.7703534871245415,0.22856987726518868
+193,12,0.46459037949869786,2.0,0.6665860746772049,0.0008116289852047189,0.027742033481848827,0.7022863968985531,0,0.8749276168453246,0.21539777586856013
+193,13,0.4956947607279764,2.0,1.3650868897236754,0.0007281554963487069,0.03676123522048063,0.825856765065802,1,0.9700055709537332,0.2256417744882771
+193,14,0.4846418171827462,2.0,1.3471055812146728,0.0007060058114022046,0.03575860081052947,0.8232491235014884,1,0.9956843327732751,0.2212269469114538
+193,15,0.48945214068811504,2.0,1.347790065216359,0.0007120658685967848,0.03618853770478439,0.8233504635458017,2,1.0,0.23150713562705
+193,16,0.5066990586321883,2.0,1.320046727324435,0.0007780568897815855,0.036349961763053655,0.8192986263451644,2,1.0,0.25566352877396087
+193,17,0.5631787376340694,2.0,1.3257284287452373,0.0007680203192250392,0.03661871842930843,0.8201353065373362,2,1.0,0.27726245878023137
+193,18,0.5740079196873187,2.0,1.3238032886135191,0.0007741350030164501,0.0365844520069777,0.8198529537703546,2,1.0,0.3133597322910622
+193,19,0.5578879879447194,2.0,1.3216726412682367,0.0007793807192837084,0.03664353693032929,0.819539606901395,2,1.0,0.35962662648239757
+193,20,0.5456860851953296,2.0,1.319151575398926,0.0007813523241156015,0.036507467438687914,0.8191670389889345,2,1.0,0.3856202839844317
+193,21,0.5733603694518455,2.0,1.3241449833345686,0.0007712633888027612,0.036319911738356456,0.8199025664880527,2,1.0,0.4112012315061517
+193,22,0.593424320604711,2.0,1.3597341260880902,0.0006822884714283991,0.03615651564158114,0.8250723620425311,2,1.0,0.47808106868236944
+193,23,0.5248799636478012,2.0,1.3585939204012552,0.0006815325636907199,0.03588374036582437,0.8249075191231426,2,1.0,0.4162665454926707
+193,24,0.5861525803535608,1.95,1.3630355273672885,0.0006853275048724812,0.03600927015346487,0.8144828713086928,2,1.0,0.453841934511869
+193,25,0.5961972922075813,1.95,1.361188266310145,0.0006838417674366484,0.035744549233926746,0.8142031375163213,2,1.0,0.48732430735860427
+193,26,0.5831059297810952,2.0,1.3597264446532833,0.0006827602604738996,0.0360511015991508,0.8250713895792904,2,1.0,0.510353099270317
+193,27,0.6167934003158788,2.0,1.3585992088174261,0.000682180357112569,0.03604504358801369,0.8249084700822686,2,1.0,0.5559780010529292
+193,28,0.6260490182875138,2.0,1.3569956283608307,0.0006810382467255344,0.03596357518563008,0.8246764068116589,2,1.0,0.5868300609583792
+193,29,0.6396468420875173,2.0,1.3552694703477484,0.0006800054925363219,0.03586010888580925,0.8244263909898305,2,1.0,0.6321561402917242
+193,30,0.5769689711038615,2.0,1.3759213907618522,0.0006929977999875032,0.03650983121133987,0.8273994160499285,2,1.0,0.5898965703462049
+193,31,0.6439661641688955,1.95,1.3499592081566654,0.0006768758138651356,0.03574957683094905,0.8124963271154838,2,1.0,0.6465538805629848
+193,32,0.5855568313588778,1.95,1.3756672573501347,0.0006927722987934565,0.036007266661593845,0.816386187017786,2,1.0,0.6185227711962593
+193,33,0.5699018106074005,1.9,1.3753832360467753,0.000693038692553389,0.03637645620552724,0.8048314470175847,2,1.0,0.5663393686913349
+193,34,0.6055341554556746,1.95,1.3416592252339572,0.0006721729129778629,0.035656460864294234,0.8112271362563257,2,1.0,0.5851138515189153
+193,35,0.6094568307056439,1.95,1.3408604587266253,0.0006716233995438617,0.035636082001736236,0.8111046162187902,2,1.0,0.5981894356854797
+193,36,0.5658059859785589,2.0,1.3388182958395622,0.0006704805526366237,0.03527216073818901,0.8220296142103789,2,1.0,0.5526866199285299
+193,37,0.6541131631157128,1.95,1.3458846205900314,0.0006743734791326439,0.0356865322266791,0.8118740248872671,2,1.0,0.5803772103857092
+193,38,0.5674102596667729,1.95,1.3513250415123195,0.0006776723285759941,0.03577110431310534,0.812704560104139,2,1.0,0.5580341988892432
+193,39,0.6020640965912606,1.9,1.3560836964330183,0.0006804120106793362,0.035851113432254125,0.8017780593783514,2,1.0,0.5735469886375353
+193,40,0.6322306627711488,1.9,1.3536097827086788,0.0006791336980550214,0.03576063218287786,0.8013841797761453,2,1.0,0.6074355425704958
+193,41,0.6699615502935495,1.9,1.3751033546927238,0.0006928560377924119,0.03633853069788924,0.8047874227307029,2,1.0,0.6332051676451651
+193,42,0.6522125251366735,1.9,1.373456741934125,0.0006913560615087786,0.03599668774226379,0.8045281306327166,2,1.0,0.674041750455578
+193,43,0.5894531703397037,1.95,1.3768622061794566,0.0006935516957853859,0.03643265317598896,0.8165654753555718,2,1.0,0.6315105677990123
+193,44,0.6248678360072892,1.9,1.376726001115425,0.0006934882677761849,0.03616934426191417,0.8050424203776027,2,1.0,0.6495594533576307
+193,45,0.6500681760451366,1.9,1.3773033151610168,0.0006942467156714576,0.0365257790134285,0.8051332513451285,2,1.0,0.6668939201504549
+193,46,0.5872396108077441,1.9,1.3799668224802606,0.0006957310313635372,0.03652857638113323,0.8055512642643867,2,1.0,0.6241320360258138
+193,47,0.6734483207375664,1.8499999999999999,1.3795632453588327,0.0006955693978831912,0.03638416293672745,0.793467432452286,1,1.0,0.6448277357918883
+193,48,0.6372801793933666,1.8499999999999999,1.3725567086251134,0.0006926046899503028,0.03626966185747943,0.7923158863933528,1,1.0,0.6576005979778883
+193,49,0.6604154448068394,1.7999999999999998,1.3714398347158272,0.0006913238995447273,0.0362036446668489,0.7795115997571326,1,1.0,0.7013848160227979
+194,0,0.19216952567628343,1.7999999999999998,1.3686119053366947,0.0007061728148674597,0.036156580315366414,0.7790302824203851,1,0.1634950507203924,0.2559050179604216
+194,1,0.23408018674237635,1.7499999999999998,1.3683392404149677,0.0007067834076538145,0.03643534976867482,0.7658012947906621,1,0.2307716745937435,0.3059050563495964
+194,2,0.21588668574168937,1.7499999999999998,1.3845388999681028,0.0006990095315830716,0.0365632383291196,0.768691414251866,1,0.25033958531738976,0.3191695053824449
+194,3,0.22476778894138794,1.7999999999999998,1.3847673393053341,0.0006991122389084195,0.036576891824288846,0.7817963636780002,1,0.29653939500276116,0.3205067698009449
+194,4,0.30834332962483785,1.8499999999999999,1.3851734932281947,0.000699457401516194,0.036744302777149906,0.7943865787782636,1,0.35418664947952117,0.3888955661100981
+194,5,0.28710957175465535,1.8499999999999999,1.3850920960960207,0.0006993532295960325,0.03652705214427614,0.7943732493017699,1,0.37687059388462874,0.38787111400267954
+194,6,0.3248556562134431,1.7999999999999998,1.3852825910097186,0.0006994631593002274,0.03660704446262884,0.7818843678136816,1,0.40643693430865724,0.4076029416332674
+194,7,0.3115013616363189,1.7999999999999998,1.3750049353097702,0.0007024642775785722,0.036530737292902335,0.7801275564153423,1,0.46124041974757163,0.39001731245763416
+194,8,0.33174206502306486,1.8499999999999999,1.3815379155945626,0.0007010516190875684,0.03632920990074496,0.7937926424276194,1,0.4816992744392322,0.39687451749123986
+194,9,0.3445773902597527,1.8499999999999999,1.3818681629268352,0.0007024383545522606,0.03665015688796161,0.7938471478986661,1,0.5072668277264633,0.4055688638972245
+194,10,0.3395060264446318,1.9,1.3760340169003458,0.0007024762272180732,0.03646678326725239,0.8049366136174658,1,0.5422689870183272,0.37532810545766965
+194,11,0.4187949000330629,1.95,1.3818517351438235,0.0007046419530620696,0.03650935305034442,0.8173149701063377,1,0.5952553235552251,0.4356425687032427
+194,12,0.44715834654802317,1.95,1.3770743540598704,0.0007024293286448007,0.036270288751444085,0.8165999091909207,1,0.6249490564275522,0.4905957465900076
+194,13,0.43564525222859796,1.95,1.3346731943086585,0.0007131371105916909,0.03586716506832003,0.8101675855893565,1,0.6513031218348982,0.5170800116487954
+194,14,0.47643759198559804,2.0,1.3359100743042582,0.0007235523045411907,0.03569016037626914,0.821619308832097,1,0.6797568970008897,0.5484494439508073
+194,15,0.5275627289733016,2.0,1.3402861105539996,0.0007175332738663467,0.03586389437742597,0.8222580034077769,1,0.7288448452421293,0.6200826362548328
+194,16,0.5616236022365007,2.0,1.1481390238606652,0.0006515888608604448,0.03197944598198924,0.7923981967288448,1,0.7656769065411513,0.6845094654001335
+194,17,0.529930277098827,2.0,1.1732415399814524,0.0006422904796067738,0.0320275855332927,0.7964943262982167,1,0.80195467839571,0.6638280191351434
+194,18,0.5436601205230648,1.95,1.3717099129202701,0.0006958375612208796,0.03605524924149808,0.8157931603433187,1,0.8516951938539314,0.643273476604974
+194,19,0.5526013193189911,2.0,1.3727918218447037,0.0006997498969217014,0.036518324412441495,0.8269539579285782,1,0.892979466516971,0.6180317757073426
+194,20,0.568837574654447,2.0,1.3739209488123263,0.0007033694364204414,0.03657429770646096,0.8271165127575156,1,0.9103184986089038,0.6157005840362846
+194,21,0.6128746377270449,2.0,1.3743190803570169,0.00070125971359971,0.0365230728151738,0.8271728328763822,1,0.9465040537978855,0.6475767206929688
+194,22,0.6607880297528044,2.0,1.3726370055690367,0.0007011886708258173,0.036402118059453856,0.8269322142479433,1,0.992025630775401,0.7132592581421465
+194,23,0.6615128551209342,2.0,1.3758054714924028,0.000699779169364932,0.036483140781147574,0.8273847980625755,1,1.0,0.7383761837364471
+194,24,0.6664459824398492,2.0,1.3739199756795237,0.0006995322984653584,0.036131902978740096,0.8271152762196502,1,1.0,0.7548199414661637
+194,25,0.6740520294738505,2.0,1.3718272985243085,0.000699101989728673,0.03626477445154959,0.8268157044922158,1,1.0,0.7801734315795014
+194,26,0.6846469138452922,2.0,1.3695085702410061,0.0006986615217308791,0.03643270904739301,0.8264833043411657,1,1.0,0.8154897128176406
+194,27,0.6479860232776501,2.0,1.2874094472470166,0.0008273310869758013,0.03672903024800489,0.8144311783454812,1,1.0,0.7932867442588335
+194,28,0.6377680449992551,1.95,1.3697124906495914,0.0006986791876406957,0.036442861971891206,0.8154936641226149,1,1.0,0.7592268166641835
+194,29,0.6978017666565437,2.0,1.370516309839036,0.0007036342502426574,0.03612345453941165,0.8266292006953548,1,1.0,0.8260058888551456
+194,30,0.7151250576059276,2.0,1.2806802714797105,0.0008323966871633075,0.03610535447221602,0.8134135626890383,1,1.0,0.8837501920197582
+194,31,0.6910173965067153,2.0,1.2903462583542653,0.0008169257050980832,0.03618242452538633,0.8148714783099342,1,1.0,0.903391321689051
+194,32,0.7405711215744186,1.95,1.3048257269116657,0.0008016971726329022,0.03668312676522674,0.8055623597755257,1,1.0,0.9685704052480621
+194,33,0.6931531111593111,1.95,1.310730650435902,0.0007907636364301911,0.036591645607260005,0.8064821764283168,1,1.0,0.9438437038643702
+194,34,0.7108432615948386,1.9,1.3073852738546905,0.0007927022369817859,0.036346548377396704,0.7939612957543575,1,1.0,0.9694775386494621
+194,35,0.6890101853188962,1.95,1.318721556289903,0.0007812664448398414,0.03663463219459033,0.8077233031387704,1,1.0,0.9300339510629875
+194,36,0.7047157364117055,1.9,1.3168711148936794,0.0007810289966119166,0.03643910332631119,0.795504929248582,1,1.0,0.9490524547056848
+194,37,0.6855638906680395,1.95,1.3264899524261984,0.0007705639374685719,0.03661939005007318,0.8089235927890789,1,1.0,0.9185463022267982
+194,38,0.7372878670372485,2.0,1.324435997798189,0.0007702383950080226,0.03668998611463873,0.8199452317167679,1,1.0,0.9576262234574949
+194,39,0.6861290263279479,2.0,1.3327548664364828,0.0007582383531095526,0.03661598434307719,0.8211665966519585,1,1.0,0.9204300877598263
+194,40,0.681294607318087,1.95,1.3293282147492016,0.0007592172276731595,0.03657461828445645,0.8093584061282222,1,1.0,0.9043153577269567
+194,41,0.6741244503985249,2.0,1.3242328503300398,0.0007611639029658217,0.03598130661854508,0.8199125582910298,1,1.0,0.8804148346617497
+194,42,0.6630454006585367,2.0,1.3219182925847823,0.0007603641008221303,0.035971361791234,0.8195703104238865,1,1.0,0.843484668861789
+194,43,0.7028499642611405,2.0,1.3179905912591772,0.0007604692458699864,0.035882231148842494,0.8189888043005468,1,1.0,0.8761665475371352
+194,44,0.7106693331745132,2.0,1.316744877625739,0.0007717701749075826,0.036470465890000435,0.8188074119484822,1,1.0,0.9022311105817106
+194,45,0.7150693429248223,2.0,1.314881915907869,0.0007815231892951088,0.036607357897284795,0.818533752727357,1,1.0,0.9168978097494072
+194,46,0.7454354071234026,2.0,1.3125727242910594,0.0007898515846705746,0.03665229922307217,0.8181929795047284,1,1.0,0.984784690411342
+194,47,0.74,2.0,1.3198838312453767,0.0007777419625828497,0.03654994857167569,0.8192744153303582,1,1.0,1.0
+194,48,0.72,2.0,1.3174344912865872,0.0007845520707246529,0.03626315698445946,0.8189134927956643,1,1.0,1.0
+194,49,0.7000701068101587,1.95,1.3288710802562946,0.0007724867301541261,0.03620876317224469,0.8092919575235933,1,1.0,0.9669003560338623
+195,0,0.16291614268599391,2.0,1.3686891808884025,0.0007078359205988753,0.03616991679007754,0.8263683981501513,1,0.13338933098210223,0.23186803431051006
+195,1,0.2096432182768,1.95,1.3689231572819336,0.0007066521946555478,0.03642313806885189,0.8153772689683332,1,0.16958007186734736,0.3060372984328702
+195,2,0.1775621413226394,1.95,1.368236965467654,0.0007072998831719133,0.03634264326831015,0.8152741443203264,1,0.2171229518129958,0.26904320199147025
+195,3,0.19258269670935788,1.9,1.3838387847286338,0.0006986625945639643,0.03653178085729197,0.8061579611033044,1,0.2355466306957408,0.26121348143687184
+195,4,0.2067572188782373,1.95,1.383974990542447,0.0006986085588331497,0.03669292254547117,0.817629983083825,1,0.25490329035783826,0.2826530091170067
+195,5,0.21181083423204822,2.0,1.3841284463663548,0.0006986687279312447,0.03662996673214845,0.8285699262095552,1,0.29900937759106727,0.274023610652071
+195,6,0.22881019930030214,2.0,1.3846913758952921,0.0006991464929731186,0.03631123893037817,0.8286500066212823,1,0.314218960771678,0.27707538330543646
+195,7,0.2278863896748287,2.0,1.3847308125323976,0.0006991118607443862,0.03666536167086238,0.8286555962896532,1,0.32471578483822333,0.2600002524651312
+195,8,0.24161223230447557,2.0,1.3847010042527097,0.0006990472594465832,0.03669711833471288,0.8286513455594684,1,0.35187729011851465,0.2695377208568991
+195,9,0.29108341752970235,2.0,1.3846159434160175,0.0006990111050945997,0.03649626974589485,0.8286392573112594,1,0.38931919490703193,0.31785246522296534
+195,10,0.30748533271084827,2.0,1.3843442276229159,0.0006988059269949956,0.03663219020599092,0.8286006129658696,1,0.41280612090130997,0.34120961450108095
+195,11,0.2868541538854032,2.0,1.3804374003750972,0.0007050661135539041,0.036727531707662645,0.8280468291663848,1,0.42114321787411674,0.327989555785855
+195,12,0.32658893346334267,1.95,1.3802658453068883,0.0007063391515747237,0.03654384427225881,0.8170785671374907,1,0.4620046095019315,0.3392902988752336
+195,13,0.34528463507004836,1.95,1.3808420860454826,0.0007050955747989647,0.036741850449045634,0.817164305426351,1,0.4918104952606721,0.36186812321926515
+195,14,0.3120965357274645,2.0,1.381286279507807,0.0007038120938819979,0.0365130840786152,0.8281673064920547,1,0.5058138735541546,0.3325699543526754
+195,15,0.3662155952005824,1.95,1.382602497036439,0.0007028957915753944,0.03634686328276363,0.8174265193740544,1,0.534900262364829,0.3741849675155026
+195,16,0.36824716111504435,1.95,1.3827749186926868,0.0007019797729927569,0.036733892042169515,0.8174519768592845,1,0.5746816294285103,0.39458169781213404
+195,17,0.36306527460856414,2.0,1.3826813806454186,0.000702953176249778,0.03660775792010953,0.8283655029414202,1,0.6083928468571662,0.3656937862189921
+195,18,0.36509522287615725,2.0,1.357412714131569,0.0006906916293535022,0.03635836608344815,0.8247394937876559,1,0.6334962568248743,0.33898906715402505
+195,19,0.41952957629590987,2.0,1.3590089708928434,0.0006890505312247626,0.03625290027506568,0.8249696300206837,1,0.6722408995201895,0.36877738829278034
+195,20,0.4643125382463679,2.0,1.3621287742824222,0.0006881799684375205,0.0360547794694024,0.8254194056981422,1,0.7202790025321928,0.4206697907783027
+195,21,0.4365158951707778,2.0,1.3385759233985106,0.0007172115880060681,0.035782548613927184,0.8220078280360346,1,0.7216886691277875,0.42613475839887593
+195,22,0.5042357814087514,1.95,1.3392644276102157,0.0007262147426159832,0.03602450373971612,0.810876704963787,1,0.7682592368399939,0.4897736222425127
+195,23,0.5118589042379018,1.95,1.3352046419228882,0.0007264715476892666,0.036361316551366145,0.8102534068525205,0,0.8009047126443657,0.5049900639338517
+195,24,0.5303874993246166,2.0,1.299464025072294,0.0006663442478887116,0.03498162554377566,0.8161978248131093,0,0.8733193628518441,0.47019918061292976
+195,25,0.48982185587027754,2.0,1.3125394751689825,0.00066519630982701,0.0352447069724535,0.8181509440624452,0,0.8655635581469647,0.4786547753716388
+195,26,0.5329336337665693,1.95,1.3091818291677872,0.0006632711674870975,0.03469108648748402,0.8062005031405063,0,0.8994902854596877,0.5104583986089809
+195,27,0.5764670403361591,1.95,1.3141673068096145,0.0006774993904078733,0.03480336281958445,0.8069826839824432,0,0.9769037545804251,0.48568512834663025
+195,28,0.5858689070050644,1.95,1.3235899179882595,0.0006748462140268081,0.03548694172460059,0.8084452995913886,0,1.0,0.48622969001688116
+195,29,0.5888876493587117,2.0,1.3309301435823842,0.0006730693425927517,0.03580676770092412,0.8208734301897535,0,1.0,0.4962921645290389
+195,30,0.591667920750921,2.0,1.3377022739121818,0.0006729699704861396,0.03589799486584404,0.821867013859812,0,1.0,0.47222640250306974
+195,31,0.5429143009321286,2.0,1.3406807118176813,0.0006723127289837511,0.03586719139863176,0.8223024519929419,0,1.0,0.4763810031070952
+195,32,0.5875187152136451,1.95,1.337601941429245,0.0006703884470111997,0.035341371625945715,0.8106044806452927,0,1.0,0.4583957173788168
+195,33,0.5337325849897795,1.95,1.3383314830753659,0.0006692186528072743,0.03521205125194263,0.8107160990205158,0,0.9946480513439723,0.45291121484063523
+195,34,0.5791774981651544,1.9,1.3353095609311445,0.0006672287285958257,0.035583533849412895,0.798451474038794,0,1.0,0.4305916605505144
+195,35,0.5335803934782303,1.9,1.335145015083921,0.0006661450403631336,0.035240704996239124,0.7984246440920343,0,1.0,0.44526797826076764
+195,36,0.5351905327122777,1.8499999999999999,1.33211465594851,0.0006642487561041154,0.03473859831318642,0.7855728517235747,0,1.0,0.4506351090409255
+195,37,0.560097920155454,1.9,1.3274281864274347,0.0006610011741444336,0.03542816790010704,0.7971781527119253,0,1.0,0.46699306718484657
+195,38,0.5403318998926163,1.9,1.336363937007664,0.0006723777180144082,0.03556765574870214,0.7986227540988584,0,1.0,0.4677729996420545
+195,39,0.5412874938458876,1.95,1.3332034689853636,0.0006705151201950999,0.03575621400119412,0.8099283220743656,0,1.0,0.47095831281962547
+195,40,0.5817029222933959,2.0,1.3313867846726533,0.0006695840792920534,0.03564103140620094,0.8209395403181964,0,1.0,0.43900974097798623
+195,41,0.5372171833929763,2.0,1.3339304721797256,0.0006695204518395361,0.03531715982305375,0.8213131329326561,0,1.0,0.4573906113099209
+195,42,0.5573403230275616,1.95,1.3309219578416793,0.0006678157409801661,0.035652710796079956,0.8095760154675071,0,1.0,0.45780107675853865
+195,43,0.563969779054649,1.95,1.3359433144989012,0.0006775130997505481,0.03501025802663705,0.8103518988567328,0,1.0,0.4798992635154964
+195,44,0.5479647603022869,2.0,1.3407478581120995,0.0006878225088926726,0.035439125470291044,0.8223167956446037,0,1.0,0.49321586767428977
+195,45,0.5987101811476971,2.0,1.3390131278723352,0.0006871582251893654,0.03528935758319921,0.8220629948696143,0,1.0,0.4957006038256568
+195,46,0.5929642829929878,2.0,1.3400033767273056,0.0006844164151455698,0.0354390870234461,0.8222069961426035,0,1.0,0.4765476099766259
+195,47,0.5828530414037911,2.0,1.3401422698063716,0.00068209864575827,0.035595342273056295,0.8222266214168518,0,1.0,0.44284347134597024
+195,48,0.5348957669485002,2.0,1.3396328539647948,0.0006798395034605617,0.03575727333897088,0.8221514872225285,0,1.0,0.44965255649500047
+195,49,0.5740199450804833,1.95,1.3372054049680033,0.000678880755251842,0.035726279541740326,0.8105462031330868,0,1.0,0.4467331502682776
+196,0,0.1104248311741878,1.95,1.3660696396418446,0.000692151053741367,0.035721512649955975,0.814942948020824,0,0.10855810245653216,0.22333863397191647
+196,1,0.08828275108791281,1.9,1.3669549197834054,0.0006913418709741301,0.036106152738379464,0.8035036076559293,0,0.19753073330803106,0.19756819254900138
+196,2,0.1825723614854813,1.8499999999999999,1.3687570359917123,0.0007209965026297225,0.03671357117801907,0.7916993148077738,0,0.23430224505175862,0.2295048782159262
+196,3,0.24559534839367309,1.8499999999999999,1.3003721224009628,0.0006852878249304406,0.03524052247822258,0.7801846416584223,1,0.3270478147509269,0.21592074164434097
+196,4,0.22802977223780224,1.8499999999999999,1.3830548108814908,0.0006979794426125389,0.03665710649634709,0.7940398212718995,1,0.356010841647041,0.21875145192995282
+196,5,0.28718266670741777,1.9,1.3829615498474233,0.0006978663672656655,0.036429266133890484,0.8060205921742235,1,0.3984738364090632,0.25931044047930835
+196,6,0.2504705932020904,1.9,1.3833179165610123,0.000698076634083713,0.03644427187573252,0.8060763702681372,1,0.42230172885750916,0.23849967219695573
+196,7,0.3026810940595216,1.8499999999999999,1.383757176860543,0.0007022209437091449,0.036758317188070704,0.7941560496303747,1,0.44866898807710015,0.2773783294289384
+196,8,0.2832462396301115,1.8499999999999999,1.3838710689845073,0.00070159437845305,0.03637502828990806,0.7941744623664233,1,0.4925616105904765,0.25407198464640285
+196,9,0.31097082816748045,1.9,1.3845454933096935,0.0007011816600864397,0.03669971466265821,0.8062691596067015,1,0.5221615179509814,0.2736874032902929
+196,10,0.3131771741782141,1.9,1.3845349427893847,0.0007017192574415159,0.03677624879595566,0.8062676795641106,1,0.5332281948774024,0.2662863207575106
+196,11,0.36242367837972406,1.95,1.3844001930577803,0.0007022069881849854,0.03649422971412046,0.8176944498156468,1,0.5777378288218251,0.30442848950331336
+196,12,0.4134792992257119,1.95,1.384601171175627,0.0007015358636159874,0.03653314248310302,0.8177242076943814,1,0.6286374137803284,0.37341444571193527
+196,13,0.38001794467921274,1.95,1.3393474747088758,0.0006763189762380864,0.035648929316924885,0.8108741370964385,1,0.6725166324012368,0.33670430572905996
+196,14,0.4015396570528968,1.9,1.3419402049617164,0.0006752278428237227,0.035206411224852054,0.7995189748293954,1,0.68803556698554,0.3544181008622691
+196,15,0.4461082311259516,1.9,1.3458483636970366,0.0006840806508849203,0.03549935569808978,0.800147505402927,1,0.720045325317233,0.39363366999686145
+196,16,0.43465970896724926,1.9,1.3502751567071885,0.0006826713549873072,0.036032611768635585,0.8008540103962059,1,0.7360226942574941,0.4008354375475051
+196,17,0.4211123043320314,1.95,1.3367923206753414,0.0006948210532641034,0.035674137362320904,0.8104876581610624,1,0.7628611492461079,0.35322614877862746
+196,18,0.49699637791403906,2.0,1.35918301153199,0.0007058367895276319,0.03649545364242891,0.8249996062456959,1,0.8201662714452272,0.3964328977864937
+196,19,0.4573800797414829,2.0,1.3451235772958514,0.0006972005790438604,0.035852850802567025,0.8229579715082825,1,0.8487693517959632,0.35957446341032545
+196,20,0.5364076583733903,1.95,1.3529595888961987,0.0006949114506095511,0.03572165118446769,0.8129584796896674,1,0.8959052506042734,0.426818527105603
+196,21,0.5025325877793292,1.95,1.3831302396125973,0.0006984579565541967,0.03651087731877341,0.8175039425276652,1,0.929246033899964,0.4027805807311454
+196,22,0.5848043247161153,1.9,1.3840615518203059,0.00069876431988653,0.036726248650691795,0.8061928017300558,1,0.9910413206054083,0.4612926549131731
+196,23,0.5614534510055939,1.9,1.383491762045385,0.0006985368831725236,0.03652628398403618,0.8061036877455664,1,1.0,0.4715115033519795
+196,24,0.6106795768716148,1.8499999999999999,1.3839094490195825,0.0006992979002301848,0.03669344011213254,0.7941799851942211,1,1.0,0.5355985895720492
+196,25,0.6286536372422897,1.8499999999999999,1.3832198685886932,0.0006992593014472046,0.03660572801260417,0.7940672321723256,1,1.0,0.5955121241409658
+196,26,0.6439610226376267,1.9,1.382414223801001,0.0006991756875001765,0.03666044450819178,0.8059354122135716,1,1.0,0.6465367421254221
+196,27,0.6434028097931392,1.95,1.3723521913794379,0.0007021733045832096,0.036430732111059135,0.815891562380891,1,1.0,0.6780093659771307
+196,28,0.624390277961504,2.0,1.3705414039156427,0.0007018308679748387,0.036387879892988695,0.8266322800927454,1,1.0,0.6813009265383466
+196,29,0.6492328816783058,2.0,1.3720453298684556,0.0006996170397661405,0.03640778599341649,0.8268470699823098,1,1.0,0.6974429389276858
+196,30,0.6745797490814035,2.0,1.3698737333457487,0.0006991622704192277,0.03603364916893211,0.8265358092357911,1,1.0,0.748599163604678
+196,31,0.6883245309076054,2.0,1.372830604515487,0.000697658799883527,0.0362524926026078,0.8269589092391669,1,1.0,0.7944151030253512
+196,32,0.6360652900250265,2.0,1.3747715655588397,0.0006963713600660851,0.03644924674690533,0.8272361124030954,1,1.0,0.7535509667500884
+196,33,0.6880826807966306,1.95,1.376221693472531,0.0007001232185783399,0.036565426787533994,0.8164714853117089,1,1.0,0.7936089359887685
+196,34,0.6879208753786766,1.95,1.3772394480620485,0.0006986197226451663,0.03650872095098951,0.8166234921479284,1,1.0,0.826402917928922
+196,35,0.6991298083089355,2.0,1.347746435205146,0.0007219154825574311,0.0359258603633877,0.8233469829185912,1,1.0,0.8637660276964515
+196,36,0.7243818438940635,2.0,1.3450578867586727,0.0007213195874689253,0.03595690941184161,0.8229554286940494,1,1.0,0.9146061463135448
+196,37,0.6744351474400236,2.0,1.3483439265151775,0.0007152725564584132,0.03587373779462176,0.8234319376408309,1,1.0,0.8814504914667453
+196,38,0.7175748206397503,1.95,1.3487670865931851,0.0007239191251260242,0.03626529779025421,0.8123289884319398,1,1.0,0.925249402132501
+196,39,0.6999430163159139,1.95,1.3442153520343483,0.0007244539214238635,0.036355530078427775,0.811634250578674,1,1.0,0.9331433877197133
+196,40,0.7245676386927288,2.0,1.3522495063524849,0.000718168065136933,0.03619683096137216,0.8239998995870187,1,1.0,0.9485587956424292
+196,41,0.7344702519270939,2.0,1.3494823991622837,0.0007176339495045332,0.03633370267808581,0.8235980874104173,1,1.0,0.9815675064236462
+196,42,0.7147163732829931,2.0,1.345544310135055,0.0007170897196171096,0.03590952564087703,0.8230250571473987,1,1.0,0.9823879109433105
+196,43,0.7012619583152067,2.0,1.3523689080102508,0.0007116242913893981,0.035870263400826566,0.8240153171603798,1,1.0,0.970873194384022
+196,44,0.6946851160536336,2.0,1.353087396276961,0.0007205109534576353,0.03635194632773491,0.8241220599839854,1,1.0,0.9489503868454453
+196,45,0.7345263475446575,2.0,1.352938437795364,0.0007285003817871336,0.03656551400847359,0.8241027844360665,1,1.0,0.9817544918155248
+196,46,0.75,2.0,1.3494540780575761,0.0007287970619161821,0.03660317703953566,0.8235972164469331,1,1.0,1.0
+196,47,0.75,2.0,1.3538206119499292,0.0007222977606470092,0.036463980584275704,0.8242288283242226,2,1.0,1.0
+196,48,0.73,2.0,1.3850597104162097,0.0007005632823508821,0.03660069065199549,0.8287027020442292,2,1.0,1.0
+196,49,0.7799999999999999,1.95,1.3842148773335026,0.0007005955715806659,0.03644303888142937,0.817666342644812,2,1.0,1.0
+197,0,0.07351483589306942,1.95,1.3748068032591623,0.0006945560489024264,0.03604512705773501,0.8162577050812764,0,0.1794903412689015,0.1723956646183627
+197,1,0.19601692900983841,1.9,1.3711833763405483,0.0007042310066711611,0.036428046463809996,0.8041744227529722,0,0.2525537810815132,0.1833180552574437
+197,2,0.17084918750889388,1.9,1.3736983572850046,0.0006929511733289747,0.03620851168836687,0.8045666265281133,0,0.26377806845389173,0.21779320042445724
+197,3,0.23841436333503838,1.8499999999999999,1.2990310904383164,0.0006774797030888293,0.035120316297825784,0.7799518927140145,0,0.3303496490931241,0.2209150123259625
+197,4,0.2625571510702152,1.8499999999999999,1.2952172379462041,0.000675935636443241,0.03472639575700129,0.7792961029284569,0,0.39493155659231244,0.21528176144430086
+197,5,0.2918140042928794,1.8499999999999999,1.2933208140491392,0.0006751172922020985,0.034620116588552644,0.7789694754364017,0,0.4772193512112708,0.20308754602790371
+197,6,0.3259975940438284,1.9,1.206891077212932,0.0008033226812680836,0.035075510313319194,0.7770397014323529,0,0.5591300125081526,0.1744852968018911
+197,7,0.3410553024189918,1.9,1.2757972362689474,0.0007371396488350447,0.035061162259409744,0.7887273996362597,0,0.6234940086524547,0.17219232986003302
+197,8,0.3880719585754387,2.0,0.41843637425415886,0.00013196715603427353,0.012651057043905095,0.6476442679189011,0,0.7326078849065168,0.15009601537610642
+197,9,0.415448034296385,2.0,0.43611544967014026,0.00014308473280042397,0.013188952331713572,0.6516730931835769,0,0.826067177596606,0.11673721085914197
+197,10,0.42673049474570623,2.0,1.044630154194693,0.0006847530880748219,0.030575744671768934,0.7748669297542782,0,0.8920615127754417,0.09968629878509869
+197,11,0.42592400409898845,2.0,1.0435686568400715,0.0006820924852801766,0.030401858186204195,0.7746807706373708,0,0.9232502548183621,0.12207967390547864
+197,12,0.47622010773352635,2.0,1.041959077549068,0.0006818331109435131,0.030747342421458795,0.774399602971664,0,0.9982174586929271,0.12311041418785187
+197,13,0.47727596436946546,2.0,1.0407123195214139,0.0006789559351025296,0.031081596977073883,0.774180707771194,0,1.0,0.12425321456488493
+197,14,0.45874699470488994,2.0,1.0393449913425166,0.0006761783596246768,0.03107555311008106,0.7739406031841255,0,1.0,0.12915664901629975
+197,15,0.48159936972320794,2.0,1.0377179749667094,0.0006761725900673187,0.030870557021681073,0.7736558171311186,0,1.0,0.13866456574402652
+197,16,0.4663224525847286,2.0,1.0363004923502652,0.0006735311746518192,0.030144000534806797,0.7734065761261717,0,1.0,0.15440817528242845
+197,17,0.4762140710624732,2.0,1.0346833932097579,0.0006736305621099605,0.030137560422616633,0.7731230909471568,0,1.0,0.1873802368749105
+197,18,0.4984321713921234,2.0,1.0329526424878537,0.0006737501612482647,0.030412223216748534,0.7728194092322924,0,1.0,0.1947739046404115
+197,19,0.4818872229414067,2.0,1.0314928866682975,0.0006711007778837217,0.030763071316025885,0.7725620874243325,0,1.0,0.20629074313802215
+197,20,0.4660711145923413,2.0,1.3393485879636304,0.0007549610444150483,0.0365736478182775,0.8221318897570231,0,1.0,0.22023704864113752
+197,21,0.5134209275893341,2.0,1.338159022315776,0.0007573189213342995,0.03636664394196075,0.8219585617829545,0,1.0,0.21140309196444684
+197,22,0.5066947994895588,2.0,1.3407034609747737,0.0007507733055920477,0.0363096029153606,0.8223287041013285,0,1.0,0.22231599829852916
+197,23,0.4953191593994788,2.0,1.3489265026508306,0.0007435627345211476,0.036644642916803145,0.8235248465323389,0,1.0,0.2510638646649291
+197,24,0.5182939659198781,2.0,1.3477852151819534,0.0007447554122642528,0.03650675051659842,0.8233592669899875,0,1.0,0.26097988639959335
+197,25,0.5078260973930246,2.0,1.354763538715064,0.0007383119869467453,0.036684861513990176,0.8243700309650211,0,1.0,0.29275365797674874
+197,26,0.5146237282377314,2.0,1.3535713361874346,0.000739387796079661,0.03665505630603275,0.8241976640191686,0,1.0,0.31541242745910464
+197,27,0.5411504778639616,2.0,1.352284251554518,0.0007404473099910912,0.03631274601165795,0.8240114002352618,0,1.0,0.30383492621320546
+197,28,0.515199819814296,2.0,1.3546209417195307,0.0007349360969073859,0.03632557862373989,0.8243484065919585,0,1.0,0.31733273271432
+197,29,0.5377348644026088,1.95,1.3533394182903473,0.000735908196552796,0.03659222200872618,0.8130286929383603,0,1.0,0.2924495480086957
+197,30,0.5074272461401987,1.95,1.3543176331609121,0.0007315837436201852,0.0365923491126345,0.813176034875501,0,1.0,0.2914241538006625
+197,31,0.5349673002898846,1.9,1.3530419352612273,0.0007324368246204471,0.03647173166500285,0.8013107549276655,0,1.0,0.28322433429961513
+197,32,0.5093248887438523,1.9,1.3535136193569017,0.0007283347283266813,0.036370322803291506,0.8013845361057529,0,1.0,0.2977496291461744
+197,33,0.5248415409919266,1.8499999999999999,1.3522071918756873,0.0007291238881956375,0.036384956488592676,0.7889595847676046,0,1.0,0.2828051366397553
+197,34,0.48450352793666296,1.9,1.3586172195118507,0.0007245799268512364,0.036500860820669195,0.8021944217501136,0,0.995357888536501,0.2878679084068751
+197,35,0.5295914503084332,1.8499999999999999,1.3585291740129102,0.0007269575642669145,0.03661692253154565,0.790009568022569,0,1.0,0.265304834361444
+197,36,0.5200643244744888,1.8499999999999999,1.358870460178487,0.000723327603450026,0.036379464862380716,0.7900649757548388,0,1.0,0.2335477482482958
+197,37,0.4965968485420037,1.9,1.359398203356322,0.0007195207149761217,0.036392065875831776,0.8023167130490649,0,1.0,0.25532282847334553
+197,38,0.5233645761716715,1.8499999999999999,1.3589626964787442,0.0007197369753833582,0.03642103340752652,0.7900790828328698,0,1.0,0.24454858723890485
+197,39,0.5061230631538084,1.8499999999999999,1.3585279410229893,0.0007166223373952108,0.036411413474250184,0.7900059343397376,0,1.0,0.2870768771793611
+197,40,0.4889488884295134,1.9,1.3574056347467427,0.0007173429108774201,0.0363718480252592,0.8019998004563177,0,1.0,0.2964962947650446
+197,41,0.5112827989696767,1.95,1.3575240316322126,0.0007196993695856629,0.036352383890707864,0.8136590605867061,0,1.0,0.3042759965655886
+197,42,0.5173266330589196,1.95,1.3570852113800946,0.0007199855108234171,0.03647405769932223,0.8135926051748735,0,1.0,0.32442211019639866
+197,43,0.5258927926525065,2.0,1.3558988024036949,0.0007207000114117142,0.036281007836193244,0.8245292423838392,0,1.0,0.35297597550835497
+197,44,0.511780250874338,2.0,1.3553279941205563,0.0007209077050643355,0.03645580700979991,0.8244467022232864,0,1.0,0.3726008362477932
+197,45,0.5535163177816486,2.0,1.3547025896498055,0.0007241978877881747,0.03633814621904036,0.8243571191432044,0,1.0,0.34505439260549486
+197,46,0.4999866243771776,2.0,1.3550527272853974,0.0007201520821099341,0.036376464273562045,0.8244066393337305,0,1.0,0.3332887479239254
+197,47,0.5047423350921381,1.95,1.3543955330076594,0.0007228825323768867,0.03632505338377625,0.8131852255167173,0,1.0,0.3491411169737936
+197,48,0.534011573640059,2.0,1.3528901349975786,0.0007259689928813581,0.036414730405938844,0.8240950485679754,0,1.0,0.3800385788001966
+197,49,0.5517397085326594,2.0,1.352529097634208,0.0007263671886760424,0.036318587647190925,0.824042821075194,0,1.0,0.37246569510886446
+198,0,0.06702312479526762,2.0,1.3801106583119744,0.0006967453776551518,0.03622412248486183,0.8279979308986399,0,0.17123420365103012,0.1950981444495186
+198,1,0.21317009131118303,1.95,1.3685110772525007,0.0007099997313567751,0.03640263834173558,0.8153162356587362,0,0.2802289023037009,0.1702617679656755
+198,2,0.24375587809159566,1.95,1.3795761104324085,0.0006955385674183581,0.036439598364175874,0.8169722260308592,0,0.37013997438705626,0.15233296112257716
+198,3,0.2776362148291193,1.95,1.380564308439703,0.0006962624841261226,0.036448196192444285,0.8171201599782493,0,0.47154740182424004,0.13005751366474438
+198,4,0.27324305504893304,2.0,1.202741788736322,0.0006899216789024995,0.03380795267707116,0.8012494231049756,0,0.5009393026801265,0.17622444658960806
+198,5,0.31956289203575783,2.0,1.216829011334975,0.0006874925359303425,0.033610270384887994,0.8034825121657876,0,0.5779941657281397,0.16121741914833992
+198,6,0.27537417474124615,2.0,1.2135873545312552,0.0006850551122713866,0.03321448459647948,0.802969385010957,0,0.5660635340859352,0.1631625370229068
+198,7,0.36446987361079913,2.0,1.2327546105821874,0.0006766726416733628,0.033488474234514225,0.8059816066193994,0,0.6690742358140213,0.15613393095063546
+198,8,0.3989581518103744,2.0,0.3925346695756813,0.00011076853494105992,0.011621741065366575,0.6417013625573383,0,0.76104442306713,0.1484679419450746
+198,9,0.4333898358945204,2.0,0.3890490278294684,0.00010836427826103819,0.011478521650761204,0.640898439395234,0,0.8658794823046501,0.12346014324220134
+198,10,0.42551703709071775,2.0,1.0255848897270632,0.0006711194423734123,0.030018699111362013,0.7715223290976821,0,0.9066670090829843,0.1428341115250801
+198,11,0.4759648930585847,2.0,1.024005195356947,0.0006709983486177048,0.029914683607781573,0.7712437053255284,0,0.9893761920941797,0.13404805406970935
+198,12,0.46584211626752947,2.0,1.0227084972051534,0.0006688171592774914,0.030223832192487247,0.7710140823088578,0,1.0,0.15280705422509816
+198,13,0.48698102039367797,2.0,1.0209584935386815,0.000668692696072693,0.03061147141431577,0.7707049262535364,0,1.0,0.15660340131225992
+198,14,0.4745876886510023,2.0,1.0195789518362541,0.0006666267612133525,0.030610654647419966,0.7704603134760035,0,1.0,0.18195896217000765
+198,15,0.4972042642164068,2.0,1.0178416732721216,0.0006665316556249393,0.03039944804116196,0.7701528956220636,0,1.0,0.19068088072135603
+198,16,0.48488749877936044,2.0,1.0163951412563086,0.0006645173192082892,0.02969756981442645,0.7698960205041534,0,1.0,0.21629166259786808
+198,17,0.5053713763213856,2.0,1.2811458375973759,0.0007733145997377803,0.03541387692875223,0.8134662828146925,0,1.0,0.21790458773795204
+198,18,0.47084669406068036,2.0,1.2976692979345696,0.0007622347932658039,0.03554231735817991,0.815957230660183,0,0.9994597094291733,0.23687603429670334
+198,19,0.5147615136609879,1.95,1.296726664073816,0.0007655030155895588,0.035684010400130875,0.8042792553170616,0,1.0,0.21587171220329296
+198,20,0.5137280814707309,1.95,1.2952920138035164,0.0007606427905375641,0.036110062038323634,0.8040517910205978,0,1.0,0.2124269382357694
+198,21,0.4757908860664124,2.0,1.2952155120699074,0.000754927121425168,0.036003733972382525,0.8155862591765224,0,1.0,0.2526362868880413
+198,22,0.50179523819274,1.95,1.2960294619703094,0.0007564757597873767,0.035998835306388144,0.8041666393111524,0,1.0,0.2726507939757999
+198,23,0.4839258426535635,1.95,1.2933916538701005,0.0007593275874431564,0.03534184891668676,0.8037517966306678,0,1.0,0.2797528088452115
+198,24,0.5274232399800395,2.0,1.2925057476756319,0.0007621822333286699,0.035473906441458376,0.8151805337709421,0,1.0,0.25807746660013164
+198,25,0.508731168933958,2.0,1.294050702285623,0.0007552493837164319,0.03542160107402949,0.815411098202825,0,1.0,0.29577056311319316
+198,26,0.4844823807824342,2.0,1.2930976627447182,0.0007569562024633575,0.03571101569830147,0.815268121649156,0,0.9952745359754983,0.287908554640783
+198,27,0.49244123047263444,1.95,1.2922582800580444,0.0007595768472736216,0.036071121469162394,0.8035730412279122,0,0.9968882113405055,0.31228648645477397
+198,28,0.49442343785308873,2.0,1.2896936448366179,0.0007632916998155878,0.03547319049082013,0.8147568182298478,1,1.0,0.314744792843629
+198,29,0.5143634898382943,2.0,1.3400269564376703,0.0006916292158215106,0.035766861202143965,0.8222125517918136,1,1.0,0.3145449661276475
+198,30,0.5144035698817022,2.0,1.3428297997702328,0.0007007083752798749,0.03611321433293487,0.8226245484312645,1,1.0,0.3146785662723408
+198,31,0.5438326072424042,2.0,1.3445672567128324,0.0007091422669343601,0.03612726776133513,0.8228803830530439,1,1.0,0.3461086908080139
+198,32,0.5721736469259158,2.0,1.3450238146657718,0.0007048444655920607,0.03571697639239817,0.8229456633422315,1,1.0,0.4072454897530522
+198,33,0.5227851534555301,2.0,1.3816767777078671,0.0006991496262127226,0.03638171111416012,0.828221543033092,1,1.0,0.37595051151843356
+198,34,0.5587094836590888,1.95,1.330928342458738,0.0007024498039446191,0.03563981599782795,0.8095876780247748,1,1.0,0.3956982788636292
+198,35,0.5391705174635637,1.95,1.3302567548482642,0.0006979031223795881,0.035842392807645576,0.8094827252169317,1,1.0,0.39723505821187893
+198,36,0.5166646331455351,2.0,1.332695265642732,0.0007079787318207362,0.035696990677282034,0.8211430814924087,1,1.0,0.3555487771517836
+198,37,0.5345044519613925,1.95,1.343805685626408,0.0007033358070895205,0.03607062282793639,0.8115651521237156,1,1.0,0.38168150653797495
+198,38,0.5359576208037228,2.0,1.3442410101035824,0.0007116695819011138,0.03600849424182945,0.8228335650265627,1,1.0,0.3865254026790758
+198,39,0.5381191535183358,2.0,1.345859975565443,0.0007189131775322392,0.036077102496217,0.82307156173015,1,1.0,0.3937305117277861
+198,40,0.5700735750845878,2.0,1.345841307084145,0.0007255043982192094,0.036198918506895994,0.8230707628254539,1,1.0,0.43357858361529256
+198,41,0.596879679976392,2.0,1.3806651901065088,0.000699368653036617,0.03666874742656075,0.8280776384143952,1,1.0,0.48959893325464
+198,42,0.6185697094999166,2.0,1.3796160465595197,0.0006992820501604544,0.036484506261971715,0.8279282009373633,1,1.0,0.5618990316663884
+198,43,0.6126041227853944,2.0,1.378374770928607,0.0006991863263205897,0.03648185835920263,0.8277512656852182,1,1.0,0.5753470759513147
+198,44,0.5960438801919575,2.0,1.3781695158867269,0.0006978209440771303,0.03651415114171079,0.827721609233,1,1.0,0.5868129339731916
+198,45,0.6202204839696147,2.0,1.3788326014826868,0.0006999415747529689,0.03637184836266657,0.8278167482629291,1,1.0,0.6007349465653823
+198,46,0.5818483611777175,2.0,1.376972335504192,0.0006985476961892045,0.036566436616516616,0.8275510334953038,1,1.0,0.5728278705923916
+198,47,0.6408896086870133,1.95,1.3784434461141535,0.0006984575228986651,0.036577289722975706,0.8168036730621235,1,1.0,0.6362986956233776
+198,48,0.5911307085675139,1.95,1.3776590297614997,0.0007015598483850229,0.036597023873380805,0.8166871963070447,1,1.0,0.6037690285583798
+198,49,0.6477113093668773,1.9,1.3780719717382506,0.0007044267243139601,0.03655173835666908,0.805257013274406,1,1.0,0.6590376978895908
+199,0,0.10411188182600559,1.9,1.3783236410565676,0.0006948602536412769,0.03616001602049154,0.8052934766117555,0,0.09904785102659615,0.2149758047178904
+199,1,0.0850885479279059,1.8499999999999999,1.378236394983336,0.0006947007492443712,0.03643470060373268,0.7932496227767994,0,0.19002320698937172,0.1969308837738574
+199,2,0.21696852881314732,1.9,1.3628710012164043,0.0007175098201634814,0.036474511370041436,0.8028663000217111,0,0.2828988953369174,0.1793632355946011
+199,3,0.1985811927218484,1.9,1.3815963353412068,0.0007014158538820505,0.03641029303610459,0.8058081606568382,0,0.30093331979420485,0.19402621601388823
+199,4,0.2493192625095357,1.95,1.3814835839638748,0.0007009686669311387,0.03666984612303879,0.8172588974022349,0,0.39007971310454886,0.1776245908923872
+199,5,0.2520116028970389,1.95,1.3814407370595037,0.0007012553777627893,0.0365818718553152,0.8172525839085316,0,0.4307348876897675,0.19905882607043957
+199,6,0.2990788550969152,2.0,1.2476872074066065,0.0007858309369376433,0.03510927637727075,0.8083398568640298,0,0.49699730366341005,0.20093311210517054
+199,7,0.33807246681073067,2.0,1.2338649241954465,0.0008047425095952159,0.03545125357417395,0.8061951967749114,0,0.5986687106361613,0.1620166085208871
+199,8,0.3723444186961218,2.0,1.2333578046755989,0.00077611037265804,0.03523934596409568,0.8061069996712802,0,0.7022985262374821,0.13808336067042984
+199,9,0.40171296824648933,2.0,0.35015201909318044,8.382309475458483e-05,0.010095842988945046,0.6318867768941944,0,0.8113316399564086,0.09060104087975304
+199,10,0.36255543283442776,2.0,1.0091202225476237,0.0006640835589100034,0.029685986757676502,0.7686045399234357,0,0.8170810178600877,0.11907675230130885
+199,11,0.37192805033210735,2.0,1.0281690357785331,0.0006760295115963833,0.030084737273099633,0.7719792600268384,0,0.8317492563530476,0.13076115930296103
+199,12,0.41519971447752096,2.0,1.0448989905626787,0.0006896400000837913,0.030924121190026216,0.7749155290705895,0,0.8768348670451153,0.14821922553158268
+199,13,0.4369235561724345,2.0,1.0434145102817107,0.0006894433787340282,0.03133488155420136,0.774656429554091,0,0.9079579972158343,0.17913452428700255
+199,14,0.48879791137975254,2.0,1.041757643799694,0.0006892039736246167,0.031410745669383774,0.7743669852972893,0,0.9887513757943268,0.1776578702067394
+199,15,0.4562092646889099,2.0,1.0406458985343894,0.0006858603592226314,0.03112333101919924,0.774171509724533,0,0.9997991356830612,0.18763203471895132
+199,16,0.4965091065990162,2.0,1.0560692640655547,0.0007008567307645939,0.03096587747484202,0.7768617682782312,0,1.0,0.18836368866338732
+199,17,0.48349853175918756,2.0,1.0548653538545998,0.000696676770156351,0.030841547434944022,0.7766515536783787,0,1.0,0.21166177253062496
+199,18,0.507210257358782,2.0,1.291879329052584,0.0007045828223715203,0.03478085224881956,0.8150687746558241,0,1.0,0.19070085786260643
+199,19,0.4934093615832432,2.0,1.0484383303659206,0.0006965227041964046,0.03150195127670059,0.7755346614180563,0,1.0,0.1780312052774774
+199,20,0.4870335799172191,2.0,1.0473229898674592,0.0006927218317697703,0.0315482042144717,0.7753391184197113,0,1.0,0.15677859972406352
+199,21,0.48962311763860406,2.0,1.0460762395117098,0.0006892331015762563,0.031197438212742713,0.7751206582312506,0,1.0,0.16541039212868022
+199,22,0.473509914018999,2.0,1.044741718748431,0.0006856691804399279,0.03061953209909704,0.7748867109913102,0,1.0,0.17836638006332986
+199,23,0.49045532754440757,2.0,1.0432296603081959,0.0006860882241706005,0.030465017341335738,0.7746229882951173,0,1.0,0.16818442514802526
+199,24,0.4887829581123426,2.0,1.0418665091043013,0.0006827280663655491,0.030727053186662096,0.7743837431257441,0,1.0,0.16260986037447545
+199,25,0.45328538975210986,2.0,1.040489060046102,0.0006796168087226224,0.031007929410066498,0.774141905160294,0,1.0,0.1776179658403662
+199,26,0.4560399511982967,2.0,1.0552856098983727,0.0006923989033537714,0.03154869423565433,0.7767229606930681,0,1.0,0.18679983732765562
+199,27,0.49761152597483427,2.0,1.067900165451399,0.0007057588212974175,0.03175929211115697,0.7789075951008831,0,1.0,0.19203841991611426
+199,28,0.48536518635323206,2.0,1.0666513489293366,0.000701951498614998,0.03118825268062616,0.7786911485737457,0,1.0,0.21788395451077341
+199,29,0.49944438185328816,2.0,1.2920348489296403,0.000705114836279226,0.03479987213062603,0.815092375644472,0,1.0,0.2648146061776271
+199,30,0.47809541892332297,2.0,1.2903318474669199,0.0007054005021011154,0.03474110910876728,0.8148356531819606,0,0.9965883173875436,0.26486697322768504
+199,31,0.5065853323641982,1.95,1.2924315563929007,0.0007142344507206944,0.03494262571973137,0.8035860774315284,0,1.0,0.2886177745473274
+199,32,0.4889047903857975,1.95,1.2888484558163773,0.0007149875764701425,0.03539910614400088,0.8030201599937793,0,1.0,0.2963493012859915
+199,33,0.5330090838106483,2.0,1.2904014457036084,0.0007236458011007004,0.03531830788172975,0.8148516591727997,0,1.0,0.2766969460354941
+199,34,0.5167849869557709,2.0,1.2912002412421693,0.0007181797708217755,0.03541397058523538,0.8149704934167361,0,1.0,0.2559499565192362
+199,35,0.5189480683427227,2.0,1.306869580445645,0.000711188308767476,0.03511934967078942,0.8173195894531715,0,1.0,0.22982689447574192
+199,36,0.5152256710559824,2.0,1.3057265684808521,0.0007071831658331188,0.03493722643265268,0.8171476695294335,0,1.0,0.21741890351994123
+199,37,0.48987932559179337,2.0,1.3044958767767907,0.0007035060559828778,0.03502488208982843,0.8169626113430207,0,1.0,0.23293108530597775
+199,38,0.4689480456203536,1.95,1.3031517483251753,0.0007040578824995678,0.03513113316987383,0.805269407710412,0,0.9945831089480603,0.237049340137098
+199,39,0.470523377789442,1.9,1.3028490600747522,0.000711131749689602,0.03531936592130218,0.7931914815254214,0,0.985254536653221,0.25473854376051175
+199,40,0.4756908896950004,1.95,1.3020378266076187,0.0007178082339838886,0.035136545154875944,0.8050989888886935,0,0.989627810960785,0.2661325510356212
+199,41,0.5083508521627019,2.0,1.3040274128002718,0.0007230044601766932,0.03513765621899914,0.8168983823553954,0,1.0,0.29450284054233977
+199,42,0.5146459883622738,2.0,1.3043252282982043,0.0007233511586511278,0.035052996652866764,0.8169430277236575,0,1.0,0.3154866278742462
+199,43,0.49915022852395086,2.0,1.3029799283121897,0.0007242797814267427,0.03519559434229521,0.8167420341829519,0,1.0,0.3305007617465028
+199,44,0.5302526146797091,2.0,1.303129519344067,0.0007300199326734998,0.03546221635315895,0.8167661412218293,0,1.0,0.3675087155990303
+199,45,0.5372896167797906,2.0,1.3017310884621245,0.000731046400311719,0.03580033554844915,0.8165570679545769,0,1.0,0.39096538926596847
+199,46,0.5570292729105536,2.0,1.3002250922278797,0.0007320296133182038,0.03580267480069222,0.8163316696167721,0,1.0,0.39009757636851183
+199,47,0.5600012113808935,2.0,1.3152696039933507,0.0007241858321663927,0.03555276355187644,0.8185743015827328,0,1.0,0.3666707046029781
+199,48,0.5125039217873364,2.0,1.3144509623295015,0.0007195210307842636,0.035200349120402416,0.8184513067914858,0,1.0,0.3750130726244547
+199,49,0.5631243135049427,1.95,1.31454739098725,0.0007249040968054972,0.03547622391595246,0.8070566433994916,0,1.0,0.3770810450164756
diff --git a/Strange/AntiStrange/results/train_metrics.csv b/Strange/AntiStrange/results/train_metrics.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a8ebe93d4560a6bbd9da6eaaf6110ce4a0bff233
--- /dev/null
+++ b/Strange/AntiStrange/results/train_metrics.csv
@@ -0,0 +1,201 @@
+episode,return,steps
+0,134.9415717340816,200
+1,131.52270317975314,200
+2,132.91036102530467,200
+3,131.25511233275654,200
+4,131.50533800860794,200
+5,133.5819227884146,200
+6,128.45274833287348,200
+7,133.57874011246963,200
+8,132.568894738234,200
+9,134.05991810553613,200
+10,129.08981396999616,200
+11,132.20708370067103,200
+12,132.8628753474675,200
+13,132.7506511894626,200
+14,129.066534436463,200
+15,134.9081701426488,200
+16,132.51702994943787,200
+17,130.81936480778793,200
+18,132.96147663828972,200
+19,135.49489425753555,200
+20,135.03832723331408,200
+21,127.12715855348614,200
+22,131.2379162280273,200
+23,133.54185985104027,200
+24,133.1078900274911,200
+25,132.23594520197173,200
+26,134.90038270077548,200
+27,122.02193144772616,200
+28,131.9140190160773,200
+29,135.17369687952842,200
+30,133.23833081254995,200
+31,133.07412219441784,200
+32,132.59100530899818,200
+33,132.36469831500415,200
+34,130.66154815743812,200
+35,127.64456677181123,200
+36,133.03996110199873,200
+37,135.41879298339703,200
+38,129.0187491523781,200
+39,133.14606694299587,200
+40,131.08073587718397,200
+41,135.15765539447764,200
+42,132.23835624694905,200
+43,133.47847714086382,200
+44,133.60334937087094,200
+45,131.79084245517853,200
+46,130.4031619510071,200
+47,135.99478942383453,200
+48,132.8221069775043,200
+49,124.80980854450154,200
+50,130.26103499087517,200
+51,134.4410832134178,200
+52,133.13521440956183,200
+53,129.50613974164244,200
+54,130.52650819445464,200
+55,135.47687212259478,200
+56,127.47248781024616,200
+57,135.20872076531626,200
+58,130.6099623797472,200
+59,132.08074728420885,200
+60,131.16231646560544,200
+61,131.06400087420587,200
+62,132.34676122982242,200
+63,135.36459609080583,200
+64,128.95127234284917,200
+65,132.58663517207322,200
+66,135.11372192437025,200
+67,129.4638181157401,200
+68,133.80126496950592,200
+69,134.55466426753506,200
+70,132.60985035894586,200
+71,134.76577562323877,200
+72,130.3265892306266,200
+73,134.94444292019836,200
+74,132.19429561667366,200
+75,133.86026928757934,200
+76,132.80561904730055,200
+77,134.35116490394807,200
+78,132.35582823223226,200
+79,133.75581255709656,200
+80,131.65042576956893,200
+81,131.6113056580759,200
+82,133.34760300806812,200
+83,129.279596493414,200
+84,128.8353851305061,200
+85,134.06213258996772,200
+86,127.56422877126923,200
+87,132.7036652620104,200
+88,133.27775348854382,200
+89,131.56376613112172,200
+90,126.83787626170911,200
+91,136.00605181635146,200
+92,133.1138999751239,200
+93,133.79933075357184,200
+94,129.9948520662668,200
+95,130.8778535072608,200
+96,132.45838125124467,200
+97,134.38815672363,200
+98,128.39357262163247,200
+99,133.823984175776,200
+100,135.08687804827053,200
+101,132.98410539762952,200
+102,132.95114592849973,200
+103,130.10307693692616,200
+104,134.89229358053657,200
+105,131.92771119071998,200
+106,125.75468212057966,200
+107,129.567976256606,200
+108,134.80519509386167,200
+109,133.1820789438046,200
+110,130.08003693237788,200
+111,135.5348910484606,200
+112,132.78315219928837,200
+113,133.47832141767668,200
+114,133.2000188700559,200
+115,132.3083252336145,200
+116,131.6844505571609,200
+117,133.85548641503942,200
+118,134.06032191624212,200
+119,134.5679963563041,200
+120,133.95700501154045,200
+121,131.91063753695786,200
+122,132.35003046951093,200
+123,132.67092887998197,200
+124,133.0039967266761,200
+125,134.24852516615223,200
+126,134.26082715424832,200
+127,129.345479919317,200
+128,133.4243708434858,200
+129,130.20576218386987,200
+130,130.72792346080684,200
+131,132.81833672127954,200
+132,133.00431538895182,200
+133,131.5476248036511,200
+134,129.81903633809648,200
+135,131.2846350169705,200
+136,136.34004657254613,200
+137,132.87608902680174,200
+138,135.73369940044958,200
+139,130.76031791838093,200
+140,133.83186631616428,200
+141,130.01877833059828,200
+142,130.0789898563709,200
+143,133.91836607687185,200
+144,133.39421189261748,200
+145,132.07210183606082,200
+146,131.87337967087743,200
+147,131.3680101389502,200
+148,131.53819011351572,200
+149,134.13713647723935,200
+150,128.12904879712994,200
+151,132.6088667336592,200
+152,130.55389872912113,200
+153,134.2879280007819,200
+154,135.8550797190346,200
+155,131.51204255326576,200
+156,132.21362436539286,200
+157,136.51214403688948,200
+158,133.39551947343725,200
+159,134.50259692803763,200
+160,131.62604693273855,200
+161,133.36596972101685,200
+162,134.89755824698486,200
+163,132.97741065274826,200
+164,131.9117169784448,200
+165,135.52172349215792,200
+166,133.58297486842818,200
+167,134.26682479733265,200
+168,134.70681725085063,200
+169,133.70624755009155,200
+170,135.0235985255266,200
+171,132.4453386010377,200
+172,131.88452853108942,200
+173,131.42821630703824,200
+174,135.17508849730405,200
+175,133.36925637327624,200
+176,134.9513807234642,200
+177,132.48642122904022,200
+178,133.24009596594152,200
+179,130.31326851201422,200
+180,133.8784639737373,200
+181,131.3226657348614,200
+182,135.33610303780375,200
+183,131.6093290100778,200
+184,133.80179999100315,200
+185,134.2109081132831,200
+186,131.06140641382066,200
+187,133.91264507919482,200
+188,129.91598208847574,200
+189,133.38496430671694,200
+190,133.43752863287796,200
+191,132.1236827396764,200
+192,134.63659331608324,200
+193,132.30107523279216,200
+194,131.71584019550625,200
+195,129.4140881869982,200
+196,133.28397729595318,200
+197,132.90722705482543,200
+198,132.2858762055802,200
+199,134.1848807392493,200
diff --git a/Strange/MODEL.md b/Strange/MODEL.md
new file mode 100644
index 0000000000000000000000000000000000000000..a979e78b12892d5ba5521b70d72b7b94080488ad
--- /dev/null
+++ b/Strange/MODEL.md
@@ -0,0 +1,88 @@
+\# Model Description: Strange / AntiStrange
+
+
+
+\## Purpose
+
+
+
+Strange / AntiStrange are reinforcement learning agents designed to study failure under hidden regime shifts and phase transitions. The focus is on internal instability rather than external performance.
+
+
+
+\## Strange Agent
+
+
+
+\*\*Role:\*\*
+
+Strange represents a standard learner assuming environmental stationarity.
+
+
+
+\*\*Key Properties:\*\*
+
+\- Performs well under initial regimes
+
+\- Fails abruptly when latent dynamics shift
+
+\- Continues acting confidently despite invalid assumptions
+
+
+
+\## AntiStrange Agent
+
+
+
+\*\*Role:\*\*
+
+AntiStrange is designed as a counterfactual probe with altered sensitivity to regime inconsistency.
+
+
+
+\*\*Key Properties:\*\*
+
+\- Detects instability earlier
+
+\- Deviates sooner from established policies
+
+\- Enables comparative analysis of collapse timing
+
+
+
+\## Dual Hypothesis Environment
+
+
+
+The `dual\_hypothesis\_lab\_env` exposes both agents to identical observations while enforcing hidden regime changes. This enables direct comparison of:
+
+\- Adaptation lag
+
+\- Behavioral divergence
+
+\- Collapse signatures
+
+
+
+\## Safety
+
+
+
+These models formalize a critical safety risk:
+
+> Systems that fail not because of noise, but because the world quietly changes.
+
+
+
+They are intended as diagnostic tools for studying early-warning signals and regime-aware control strategies.
+
+
+
+\## Notes
+
+
+
+The implementation prioritizes clarity and inspectability over complexity to support safety-focused analysis and experimentation.
+
+
+
diff --git a/Strange/README.md b/Strange/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..41f7cae99dd9d494693ed67dc07f22a676b4eaa3
--- /dev/null
+++ b/Strange/README.md
@@ -0,0 +1,116 @@
+\# Phase Shift \& Regime Uncertainty
+
+\## Strange / AntiStrange
+
+
+
+This project studies reinforcement learning systems operating under hidden regime shifts and non-stationary dynamics. It focuses on how agents fail when the environment changes phase without explicit signaling, a scenario common in real-world deployment and safety-critical systems.
+
+
+
+\## Core Idea
+
+
+
+Many environments appear stationary until they are not. This project explores:
+
+\- Latent phase transitions
+
+\- Sudden behavioral collapse despite stable metrics
+
+\- The gap between observed performance and underlying stability
+
+
+
+Strange / AntiStrange are paired agents designed to probe these dynamics from different behavioral assumptions.
+
+
+
+
+
+\## Project Structure
+
+
+
+\- `agents/`
+
+ #Strange and AntiStrange agent implementations.
+
+
+
+\- `envs/`
+
+ #Phase-shifting environments, including `dual\_hypothesis\_lab\_env`.
+
+
+
+\- `run\_all.py`
+
+ #Executes both agents in a shared environment for direct comparison.
+
+
+
+\- `results/`
+
+ #CSV logs capturing regime transitions and performance degradation.
+
+
+
+\- `graphics/`
+
+ #Comparative plots showing divergence under regime shifts.
+
+
+
+
+
+\## Running the Experiments
+
+
+
+This project is designed to run without notebooks. (I resorted to Anaconda)
+
+
+
+```bash
+
+conda activate your\_env
+
+python run\_all.py
+
+
+
+\## Safety
+
+\## Why This Matters for AI Safety
+
+
+
+-Hidden regime shifts are a major source of real-world AI failures.
+
+-This project operationalizes questions such as:
+
+
+
+ -How long can agents operate under false assumptions?
+
+
+
+ -What does “pre-collapse” behavior look like?
+
+
+
+ -Can instability be detected before performance drops?
+
+
+
+\## Related Work
+
+
+
+-This project accompanies the preprint:
+
+-Adaptive Stability Control in Sequential Learning Systems
+
+
+
diff --git a/Strange/graphics/graphics/antistrange_H_swarm.png b/Strange/graphics/graphics/antistrange_H_swarm.png
new file mode 100644
index 0000000000000000000000000000000000000000..4d4b8eedc7f3ebbdf728b15369c8c054a8c4d75b
Binary files /dev/null and b/Strange/graphics/graphics/antistrange_H_swarm.png differ
diff --git a/Strange/graphics/graphics/antistrange_S_t.png b/Strange/graphics/graphics/antistrange_S_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..92253d8e99b40d08bb7da49aa910c1d7c40c6b83
Binary files /dev/null and b/Strange/graphics/graphics/antistrange_S_t.png differ
diff --git a/Strange/graphics/graphics/antistrange_T.png b/Strange/graphics/graphics/antistrange_T.png
new file mode 100644
index 0000000000000000000000000000000000000000..ba216f3849b597f10ee254ab50a86651cfeec6ca
Binary files /dev/null and b/Strange/graphics/graphics/antistrange_T.png differ
diff --git a/Strange/graphics/graphics/antistrange_diversity.png b/Strange/graphics/graphics/antistrange_diversity.png
new file mode 100644
index 0000000000000000000000000000000000000000..79e8d3bbcafb42ba29667bcc8fb3bfb87a93da49
--- /dev/null
+++ b/Strange/graphics/graphics/antistrange_diversity.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:8f12265dbea48068fe1ff60bfaeb03d565685e1524ae1b5afc1149bd193cdeee
+size 100160
diff --git a/Strange/graphics/graphics/antistrange_episode_return.png b/Strange/graphics/graphics/antistrange_episode_return.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0e2be823dd3dc0d4c075efe2e9adc1f7f002a80
--- /dev/null
+++ b/Strange/graphics/graphics/antistrange_episode_return.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:098227673e7d689a788a6980579e4fc6b125a2b9f09d1e4b9fe4a0e08037fe86
+size 117512
diff --git a/Strange/graphics/graphics/antistrange_phase.png b/Strange/graphics/graphics/antistrange_phase.png
new file mode 100644
index 0000000000000000000000000000000000000000..3cc470869ed5cc9b4d057d01119a9f88c8c53691
--- /dev/null
+++ b/Strange/graphics/graphics/antistrange_phase.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:328d1f699b1192a127d92276c387c43428727240faee4eec2e254ae66c32ff8b
+size 108250
diff --git a/Strange/graphics/graphics/antistrange_progress.png b/Strange/graphics/graphics/antistrange_progress.png
new file mode 100644
index 0000000000000000000000000000000000000000..97d035a280955711c77d5a44cf2df1af727af5f4
--- /dev/null
+++ b/Strange/graphics/graphics/antistrange_progress.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fc71180e0ebb0bb68a6d20b70f20554cbba7bc050e2775abcbfab22f9d8f0502
+size 134112
diff --git a/Strange/graphics/graphics/antistrange_stability.png b/Strange/graphics/graphics/antistrange_stability.png
new file mode 100644
index 0000000000000000000000000000000000000000..01fcd4e75bfe0345371fccee2f375a49f7994be0
--- /dev/null
+++ b/Strange/graphics/graphics/antistrange_stability.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:358f21748c0658311c470fd86e646db45578f1d0a2bcb9a65500aeb3ce1c9522
+size 121926
diff --git a/Strange/graphics/graphics/antistrange_w_t.png b/Strange/graphics/graphics/antistrange_w_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..561a009fd5958a6df19071d11c3fafc0a9c2705f
Binary files /dev/null and b/Strange/graphics/graphics/antistrange_w_t.png differ
diff --git a/Strange/graphics/graphics/dual_episode_return.png b/Strange/graphics/graphics/dual_episode_return.png
new file mode 100644
index 0000000000000000000000000000000000000000..9382ad1b7d997042782ccd7754b0a232ad320b17
--- /dev/null
+++ b/Strange/graphics/graphics/dual_episode_return.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cac749295070101974c58b84c6c64680deedf76e66956346b7314ae9e0395f84
+size 217203
diff --git a/Strange/graphics/graphics/dual_stability.png b/Strange/graphics/graphics/dual_stability.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0596122b2d7b23ea5ba3463139920c3401fe7d8
--- /dev/null
+++ b/Strange/graphics/graphics/dual_stability.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7302431fa8c67d066c627559fc24276fe437291442f27781c25dd1a366b8c883
+size 234056
diff --git a/Strange/graphics/graphics/strange_H_swarm.png b/Strange/graphics/graphics/strange_H_swarm.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6e20db7857fc3f796d130ffacaf3d1e6003c037
Binary files /dev/null and b/Strange/graphics/graphics/strange_H_swarm.png differ
diff --git a/Strange/graphics/graphics/strange_S_t.png b/Strange/graphics/graphics/strange_S_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e5b21d67b08b57051e7c23a211acb5cd66d73dc
Binary files /dev/null and b/Strange/graphics/graphics/strange_S_t.png differ
diff --git a/Strange/graphics/graphics/strange_T.png b/Strange/graphics/graphics/strange_T.png
new file mode 100644
index 0000000000000000000000000000000000000000..45da07c4343c27044c94e9d2655f4f8ca145c4b4
Binary files /dev/null and b/Strange/graphics/graphics/strange_T.png differ
diff --git a/Strange/graphics/graphics/strange_diversity.png b/Strange/graphics/graphics/strange_diversity.png
new file mode 100644
index 0000000000000000000000000000000000000000..457595de4756ccb61b25bed3fece10227e2e749e
--- /dev/null
+++ b/Strange/graphics/graphics/strange_diversity.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9c5b9650da2a28bb92e4f9f5ee749601d66b27144f68ec4b6b418a4915e3b730
+size 105829
diff --git a/Strange/graphics/graphics/strange_episode_return.png b/Strange/graphics/graphics/strange_episode_return.png
new file mode 100644
index 0000000000000000000000000000000000000000..258f2fa9d931b32edf55ff50bfafd815288230af
--- /dev/null
+++ b/Strange/graphics/graphics/strange_episode_return.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4e6680b325bb9e0ffbff573dd28b12b6171529b19bf2f847a74e9711f3d495ec
+size 125201
diff --git a/Strange/graphics/graphics/strange_phase.png b/Strange/graphics/graphics/strange_phase.png
new file mode 100644
index 0000000000000000000000000000000000000000..4630bfcc1314ae50836a30ee93ac7a35e0f10309
--- /dev/null
+++ b/Strange/graphics/graphics/strange_phase.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:55943ee2a1a3f33382d22c166367386e156ac5f8c195a80807f7ceb146d2249e
+size 151199
diff --git a/Strange/graphics/graphics/strange_progress.png b/Strange/graphics/graphics/strange_progress.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddb07f1ed13fea004699391b09e84c336d3f2e95
--- /dev/null
+++ b/Strange/graphics/graphics/strange_progress.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f40d3f5104b512923362aac895309e994ba51a4ea5a2bd47ffbfa61f7a150218
+size 151338
diff --git a/Strange/graphics/graphics/strange_stability.png b/Strange/graphics/graphics/strange_stability.png
new file mode 100644
index 0000000000000000000000000000000000000000..efa7756bda95386cd48d0075351c40f9a0b7dca0
--- /dev/null
+++ b/Strange/graphics/graphics/strange_stability.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9b3a2abc79e3296b5b2a83ee6b824c4abc6921b9aeefe1e3c8905d807e67b865
+size 140393
diff --git a/Strange/graphics/graphics/strange_w_t.png b/Strange/graphics/graphics/strange_w_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeee5340391c64fbcf17a067f1196e6df1d2fb87
Binary files /dev/null and b/Strange/graphics/graphics/strange_w_t.png differ
diff --git a/Strange/graphics/index.html b/Strange/graphics/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..762b620473543abf03e956795a811a91238c9342
--- /dev/null
+++ b/Strange/graphics/index.html
@@ -0,0 +1,245 @@
+
+
+
+
+
+STRANGE • Graphics
+
+
+
+
+
+
+
+
+
+
+
+
STRANGE · Visual Diagnostics
+
+ Use keyboard arrows or the buttons below to navigate.
+
+
+
+

+
+
+
Strange — Episode Return
+
+
+
+
+
+ Interpretation will appear here.
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Strange/plot_dual_results.py b/Strange/plot_dual_results.py
new file mode 100644
index 0000000000000000000000000000000000000000..821b750cee262b43d5f3daa2911f9626275f1e4e
--- /dev/null
+++ b/Strange/plot_dual_results.py
@@ -0,0 +1,85 @@
+from __future__ import annotations
+import sys
+from pathlib import Path
+
+import pandas as pd
+import matplotlib.pyplot as plt
+
+ROOT = Path(__file__).resolve().parent
+STRANGE_CSV = ROOT / "strange" / "results" / "strange_hypothesis_lab.csv"
+ANTISTRANGE_CSV = ROOT / "AntiStrange" / "results" / "antistrange_hypothesis_lab.csv"
+OUT_DIR = ROOT / "graphics"
+
+def _episode_return(df: pd.DataFrame) -> pd.DataFrame:
+ # Prefer explicit episode_return/return, else sum reward per episode.
+ if {"episode", "episode_return"}.issubset(df.columns):
+ s = df.groupby("episode")["episode_return"].mean().reset_index()
+ s = s.rename(columns={"episode_return": "value"})
+ return s
+ if {"episode", "return"}.issubset(df.columns):
+ s = df.groupby("episode")["return"].mean().reset_index()
+ s = s.rename(columns={"return": "value"})
+ return s
+ if {"episode", "reward"}.issubset(df.columns):
+ s = df.groupby("episode")["reward"].sum().reset_index()
+ s = s.rename(columns={"reward": "value"})
+ return s
+ raise KeyError(f"Need columns episode + (episode_return|return|reward). Found: {list(df.columns)}")
+
+def _episode_mean(df: pd.DataFrame, col: str) -> pd.DataFrame | None:
+ if {"episode", col}.issubset(df.columns):
+ s = df.groupby("episode")[col].mean().reset_index()
+ s = s.rename(columns={col: "value"})
+ return s
+ return None
+
+def main() -> int:
+ OUT_DIR.mkdir(parents=True, exist_ok=True)
+
+ if not STRANGE_CSV.exists():
+ print(f"[dual-plot] Missing {STRANGE_CSV}")
+ return 2
+ if not ANTISTRANGE_CSV.exists():
+ print(f"[dual-plot] Missing {ANTISTRANGE_CSV}")
+ return 2
+
+ df_s = pd.read_csv(STRANGE_CSV)
+ df_a = pd.read_csv(ANTISTRANGE_CSV)
+
+ # --- Dual episode return ---
+ s_ret = _episode_return(df_s)
+ a_ret = _episode_return(df_a)
+
+ plt.figure()
+ plt.plot(s_ret["episode"], s_ret["value"], label="Strange")
+ plt.plot(a_ret["episode"], a_ret["value"], label="AntiStrange")
+ plt.xlabel("episode")
+ plt.ylabel("episode_return")
+ plt.title("Strange vs AntiStrange — Episode Return")
+ plt.legend()
+ plt.tight_layout()
+ plt.savefig(OUT_DIR / "dual_episode_return.png", dpi=180)
+ plt.close()
+
+ # --- Optional dual stability ---
+ s_stab = _episode_mean(df_s, "stability")
+ a_stab = _episode_mean(df_a, "stability")
+ if s_stab is not None or a_stab is not None:
+ plt.figure()
+ if s_stab is not None:
+ plt.plot(s_stab["episode"], s_stab["value"], label="Strange")
+ if a_stab is not None:
+ plt.plot(a_stab["episode"], a_stab["value"], label="AntiStrange")
+ plt.xlabel("episode")
+ plt.ylabel("stability (mean per episode)")
+ plt.title("Strange vs AntiStrange — Stability")
+ plt.legend()
+ plt.tight_layout()
+ plt.savefig(OUT_DIR / "dual_stability.png", dpi=180)
+ plt.close()
+
+ print(f"[dual-plot] Saved plots to {OUT_DIR}")
+ return 0
+
+if __name__ == "__main__":
+ raise SystemExit(main())
diff --git a/Strange/run_all.bat b/Strange/run_all.bat
new file mode 100644
index 0000000000000000000000000000000000000000..3c588926de39db9a05fd5bc6a3296283615221bb
--- /dev/null
+++ b/Strange/run_all.bat
@@ -0,0 +1,3 @@
+@echo off
+REM TwoQuarks Strange runner (Strange + AntiStrange)
+python run_all.py
diff --git a/Strange/run_all.py b/Strange/run_all.py
new file mode 100644
index 0000000000000000000000000000000000000000..5ed80339333a568c2b0247d51634b893f637c90a
--- /dev/null
+++ b/Strange/run_all.py
@@ -0,0 +1,43 @@
+import os
+import sys
+import subprocess
+from pathlib import Path
+
+ROOT = Path(__file__).resolve().parent
+STRANGE_DIR = ROOT / "strange"
+ANTISTRANGE_DIR = ROOT / "AntiStrange"
+OUT_GRAPHICS = ROOT / "graphics"
+
+def _run(cmd, cwd: Path):
+ print(f"[run] ({cwd}) $ {' '.join(cmd)}")
+ subprocess.run(cmd, cwd=str(cwd), check=True)
+
+def main():
+ py = sys.executable
+ OUT_GRAPHICS.mkdir(parents=True, exist_ok=True)
+
+ # 1) Run Strange
+ _run([py, str(STRANGE_DIR / "exp" / "run_strange_hypothesis_lab.py")], cwd=STRANGE_DIR)
+
+ # 2) Plot Strange -> ROOT/graphics
+ _run([py, str(STRANGE_DIR / "exp" / "plot_results.py"),
+ "--csv", str(STRANGE_DIR / "results" / "strange_hypothesis_lab.csv"),
+ "--out", str(OUT_GRAPHICS),
+ "--prefix", "Strange"], cwd=STRANGE_DIR)
+
+ # 3) Run AntiStrange
+ _run([py, str(ANTISTRANGE_DIR / "exp" / "run_antistrange_hypothesis_lab.py")], cwd=ANTISTRANGE_DIR)
+
+ # 4) Plot AntiStrange -> ROOT/graphics
+ _run([py, str(ANTISTRANGE_DIR / "exp" / "plot_results.py"),
+ "--csv", str(ANTISTRANGE_DIR / "results" / "antistrange_hypothesis_lab.csv"),
+ "--out", str(OUT_GRAPHICS),
+ "--prefix", "AntiStrange"], cwd=ANTISTRANGE_DIR)
+
+ # 5) Dual plot (both on same figure)
+ _run([py, str(ROOT / "plot_dual_results.py")], cwd=ROOT)
+
+ print(f"[ok] Finished. All plots saved to: {OUT_GRAPHICS}")
+
+if __name__ == "__main__":
+ main()
diff --git a/Strange/run_all.sh b/Strange/run_all.sh
new file mode 100644
index 0000000000000000000000000000000000000000..71da0a462f563462690830fcf08c9c5f1260d29b
--- /dev/null
+++ b/Strange/run_all.sh
@@ -0,0 +1,3 @@
+#!/usr/bin/env bash
+set -euo pipefail
+python3 run_all.py
diff --git a/Strange/strange/envs/__init__.py b/Strange/strange/envs/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..03d47fc653525e099e016f51e288a14983a432e9
--- /dev/null
+++ b/Strange/strange/envs/__init__.py
@@ -0,0 +1 @@
+# Package init
diff --git a/Strange/strange/envs/dual_hypothesis_lab_env.py b/Strange/strange/envs/dual_hypothesis_lab_env.py
new file mode 100644
index 0000000000000000000000000000000000000000..9f3515f447ba260c2793779e248fa1f7aeece3fe
--- /dev/null
+++ b/Strange/strange/envs/dual_hypothesis_lab_env.py
@@ -0,0 +1,265 @@
+# ======================================================================
+# DualHypothesisLabEnv
+# ----------------------------------------------------------------------
+# Entorno donde STRANGE y ANTI-STRANGE convergen sobre el MISMO estado.
+#
+# - phase: 0 = meseta, 1 = ambigua, 2 = claridad profunda
+# - progress: superficie (0..1)
+# - stability: superficie (0..1)
+# - latent_potential: nivel "subterráneo" (0..1) que anti-STRANGE excava
+#
+# STRANGE actúa sobre progress/stability (como HypothesisLabEnv).
+# ANTI-STRANGE actúa sobre latent_potential y mete ruido estructurado
+# que puede desviar el curso cuando hay mucha energía latente.
+#
+# Ambos reciben el MISMO reward global.
+# ======================================================================
+
+from dataclasses import dataclass
+import numpy as np
+
+
+@dataclass
+class DualHypothesisState:
+ phase: int
+ progress: float
+ stability: float
+ latent_potential: float
+ last_action_strange: int
+ last_action_anti: int
+
+
+class DualHypothesisLabEnv:
+ """
+ Entorno de convergencia STRANGE + ANTI-STRANGE.
+
+ step(a_strange, a_anti) -> (next_state_id, reward, done, info)
+
+ - Usa las tablas de HypothesisLabEnv para el efecto "superficie"
+ (progress, stability) controlado por STRANGE.
+ - Usa las tablas de AntiHypothesisLabEnv para el efecto "subsuelo"
+ (latent_potential) controlado por ANTI-STRANGE.
+ - La fase puede saltar a 2 cuando la latent_potential supera un
+ umbral, simulando "descubrimiento profundo".
+ """
+
+ def __init__(
+ self,
+ max_steps: int = 50,
+ phase_drift_prob: float = 0.04,
+ potential_threshold: float = 0.6,
+ seed: int = 0,
+ ):
+ self.max_steps = max_steps
+ self.phase_drift_prob = phase_drift_prob
+ self.potential_threshold = potential_threshold
+ self.rng = np.random.default_rng(seed)
+ self.step_count = 0
+ self.state: DualHypothesisState | None = None
+
+ # Ambos hadrones comparten el mismo espacio de acción (0..3)
+ @property
+ def n_actions(self) -> int:
+ return 4
+
+ # ----------------- Utils de estado -----------------
+
+ def _encode_state(self, s: DualHypothesisState) -> int:
+ """
+ Codificación discreta:
+ 3 fases x 5 bins de progreso x 5 de estabilidad x 3 de potencial
+ = 225 estados.
+ """
+ p_bin = int(np.clip(s.progress * 5, 0, 4))
+ st_bin = int(np.clip(s.stability * 5, 0, 4))
+ pot_bin = int(np.clip(s.latent_potential * 3, 0, 2))
+ return s.phase * 75 + p_bin * 15 + st_bin * 3 + pot_bin
+
+ def _sample_next_phase(self, phase: int, latent_potential: float) -> int:
+ """
+ Regla de fase híbrida:
+
+ - Si la energía latente cruza el umbral, saltamos a fase 2.
+ - Si no, hacemos drift local como en HypothesisLabEnv.
+ """
+ if latent_potential >= self.potential_threshold and phase < 2:
+ return 2
+
+ if self.rng.random() > self.phase_drift_prob:
+ return phase
+
+ delta = self.rng.integers(-1, 2)
+ next_phase = int(np.clip(phase + delta, 0, 2))
+ return next_phase
+
+ # ----------------- Reset -----------------
+
+ def reset(self) -> int:
+ self.step_count = 0
+ phase = int(self.rng.integers(0, 2)) # meseta / ambigua
+ progress = 0.1
+ stability = 0.2
+ latent_potential = 0.0
+ self.state = DualHypothesisState(
+ phase=phase,
+ progress=progress,
+ stability=stability,
+ latent_potential=latent_potential,
+ last_action_strange=-1,
+ last_action_anti=-1,
+ )
+ return self._encode_state(self.state)
+
+ # ----------------- Dinámica núcleo -----------------
+
+ def _surface_deltas(self, phase: int, a_strange: int):
+ """
+ Dinámica "superficie" copiada de HypothesisLabEnv,
+ gobernada por la acción de STRANGE.
+ """
+ # d_progress, d_stability, base_reward
+ if phase == 0: # meseta
+ if a_strange == 0:
+ return 0.10, -0.02, 0.05
+ elif a_strange == 1:
+ return 0.03, 0.02, 0.02
+ elif a_strange == 2:
+ return 0.07, 0.00, 0.04
+ else:
+ return 0.01, 0.01, 0.00
+ elif phase == 1: # ambigua
+ if a_strange == 0:
+ return 0.04, -0.03, 0.01
+ elif a_strange == 1:
+ return 0.05, 0.06, 0.05
+ elif a_strange == 2:
+ return 0.03, 0.03, 0.04
+ else:
+ return 0.02, 0.01, 0.02
+ else: # claridad
+ if a_strange == 0:
+ return 0.03, -0.04, 0.00
+ elif a_strange == 1:
+ return 0.04, 0.04, 0.05
+ elif a_strange == 2:
+ return 0.03, 0.02, 0.03
+ else:
+ return 0.06, 0.03, 0.08
+
+ def _latent_deltas(self, phase: int, a_anti: int):
+ """
+ Dinámica "subsuelo" basada en AntiHypothesisLabEnv.
+ Devuelve d_progress_extra, d_stability_extra, d_potential, base_r_anti
+ (los dos primeros van con peso bajo).
+ """
+ if phase == 0:
+ if a_anti == 0:
+ return 0.10, -0.03, 0.08, 0.02
+ elif a_anti == 1:
+ return 0.03, 0.02, 0.01, 0.03
+ elif a_anti == 2:
+ return 0.08, 0.00, 0.06, 0.03
+ else:
+ return 0.02, 0.02, 0.00, 0.02
+ elif phase == 1:
+ if a_anti == 0:
+ return 0.03, -0.04, 0.06, 0.00
+ elif a_anti == 1:
+ return 0.05, 0.06, 0.01, 0.06
+ elif a_anti == 2:
+ return 0.04, 0.03, 0.05, 0.05
+ else:
+ return 0.06, 0.06, 0.01, 0.08
+ else:
+ if a_anti == 0:
+ return 0.02, -0.05, -0.02, 0.00
+ elif a_anti == 1:
+ return 0.05, 0.05, -0.01, 0.07
+ elif a_anti == 2:
+ return 0.05, 0.03, -0.005, 0.06
+ else:
+ return 0.08, 0.05, -0.03, 0.12
+
+ # ----------------- Step conjunto -----------------
+
+ def step(self, a_strange: int, a_anti: int):
+ """
+ Paso conjunto:
+
+ - STRANGE elige a_strange.
+ - ANTI-STRANGE elige a_anti.
+ - El entorno combina ambas influencias y devuelve:
+ next_state_id, reward_global, done, info
+ """
+ assert self.state is not None, "Llama a reset() antes de step()"
+ self.step_count += 1
+ s = self.state
+ phase = s.phase
+
+ # Dinámica de superficie (STRANGE)
+ dP_s, dS_s, base_r_s = self._surface_deltas(phase, a_strange)
+
+ # Dinámica de subsuelo (ANTI-STRANGE)
+ dP_a, dS_a, dPot, base_r_a = self._latent_deltas(phase, a_anti)
+
+ # Mezcla: STRANGE domina la superficie, ANTI añade un 30% de ruido estructurado
+ d_progress = dP_s + 0.3 * dP_a
+ d_stability = dS_s + 0.3 * dS_a
+
+ # Ruido leve
+ d_progress += self.rng.normal(0.0, 0.01)
+ d_stability += self.rng.normal(0.0, 0.01)
+
+ new_progress = float(np.clip(s.progress + d_progress, 0.0, 1.0))
+ new_stability = float(np.clip(s.stability + d_stability, 0.0, 1.0))
+ new_pot = float(np.clip(s.latent_potential + dPot, 0.0, 1.0))
+
+ # Reward global:
+ # - Superficie (como HypothesisLabEnv)
+ # - Potencial latente
+ # - Sinergia cuando las acciones son distintas y hay potencial alto
+ reward_surface = base_r_s + 0.4 * new_progress + 0.3 * new_stability
+ reward_latent = 0.2 * new_pot + 0.3 * base_r_a
+
+ synergy = 0.0
+ if a_strange != a_anti and new_pot > 0.5:
+ synergy += 0.03
+ if a_strange == a_anti and new_pot < 0.2:
+ # si ambos se quedan pegados a lo mismo con potencial bajo: castigo
+ synergy -= 0.02
+
+ reward = reward_surface + reward_latent + synergy
+
+ # Penalización suave por repetir exactamente la misma acción
+ if a_strange == s.last_action_strange:
+ reward -= 0.01
+ if a_anti == s.last_action_anti:
+ reward -= 0.01
+
+ # Penalización si todo está hundido
+ if new_progress < 0.15 and new_stability < 0.15 and new_pot < 0.15:
+ reward -= 0.08
+
+ # Actualizar fase
+ next_phase = self._sample_next_phase(phase, new_pot)
+
+ # Actualizar estado
+ self.state = DualHypothesisState(
+ phase=next_phase,
+ progress=new_progress,
+ stability=new_stability,
+ latent_potential=new_pot,
+ last_action_strange=a_strange,
+ last_action_anti=a_anti,
+ )
+
+ done = self.step_count >= self.max_steps
+
+ info = {
+ "phase": next_phase,
+ "progress": new_progress,
+ "stability": new_stability,
+ "latent_potential": new_pot,
+ }
+
+ return self._encode_state(self.state), float(reward), bool(done), info
diff --git a/Strange/strange/envs/hypothesis_lab_env.py b/Strange/strange/envs/hypothesis_lab_env.py
new file mode 100644
index 0000000000000000000000000000000000000000..d9204f90b4450a74303a64a45afb8815e77b495f
--- /dev/null
+++ b/Strange/strange/envs/hypothesis_lab_env.py
@@ -0,0 +1,156 @@
+
+"""
+HypothesisLabEnv
+-----------------
+Entorno abstracto tipo "laboratorio de hipótesis".
+
+- El agente decide entre acciones de exploración, refinamiento y consolidación.
+- El entorno tiene 3 fases (regímenes) que cambian con el tiempo:
+ 0: Meseta (stuck) -> explorar ayuda más.
+ 1: Zona ambigua (ruido) -> combinar / refinar ayuda.
+ 2: Claridad (explotar) -> consolidar la hipótesis principal.
+
+Estado (discreto):
+ (phase, progress_bin, stability_bin)
+que se empaqueta en un entero para que sea fácil usar tabular Q.
+"""
+
+import numpy as np
+from dataclasses import dataclass
+
+ACTIONS = {
+ 0: "explore_new", # probar experimento radical nuevo
+ 1: "refine_current", # mejorar hipótesis actual
+ 2: "combine_paths", # combinar líneas previas
+ 3: "exploit_main" # consolidar y explotar la mejor
+}
+N_ACTIONS = len(ACTIONS)
+
+
+@dataclass
+class HypothesisState:
+ phase: int # 0,1,2
+ progress: float # [0,1]
+ stability: float # [0,1] (qué tan claros son los resultados)
+
+
+class HypothesisLabEnv:
+ """
+ Entorno minimalista pero no trivial.
+
+ Reward intuitivo:
+ - Fase 0 (meseta): explorar/combine mejoran más el progreso.
+ - Fase 1 (ambigua): refine/combine ayudan a subir estabilidad.
+ - Fase 2 (claridad): exploit/refine consolidan y dan mayor reward.
+
+ Además, el entorno cambia de fase con una dinámica lenta, para
+ forzar al swarm STRANGE a detectar el régimen mediante métricas
+ internas, no observables explícitos.
+ """
+ def __init__(self,
+ max_steps: int = 50,
+ phase_drift_prob: float = 0.05,
+ seed: int = 0):
+ self.max_steps = max_steps
+ self.rng = np.random.default_rng(seed)
+ self.phase_drift_prob = phase_drift_prob
+ self.step_count = 0
+ self.state = None
+
+ @property
+ def n_actions(self):
+ return N_ACTIONS
+
+ def _sample_next_phase(self, phase: int) -> int:
+ """Cambia de fase con prob pequeña y movimiento local."""
+ if self.rng.random() > self.phase_drift_prob:
+ return phase
+ # moverse -1,0,+1 pero quedando en 0..2
+ delta = self.rng.integers(-1, 2)
+ next_phase = int(np.clip(phase + delta, 0, 2))
+ return next_phase
+
+ def reset(self):
+ self.step_count = 0
+ # empezamos casi siempre en meseta-ambigua
+ phase = int(self.rng.integers(0, 2))
+ progress = 0.1
+ stability = 0.2
+ self.state = HypothesisState(phase, progress, stability)
+ return self._encode_state(self.state)
+
+ def _encode_state(self, s: HypothesisState) -> int:
+ # 3 fases, 5 bins de progreso, 5 de estabilidad -> 75 estados
+ p_bin = int(np.clip(s.progress * 5, 0, 4))
+ st_bin = int(np.clip(s.stability * 5, 0, 4))
+ return s.phase * 25 + p_bin * 5 + st_bin
+
+ def step(self, action: int):
+ """
+ Devuelve: next_state_id, reward, done, info.
+ """
+ assert 0 <= action < N_ACTIONS
+ self.step_count += 1
+ s = self.state
+
+ # Efecto base de la acción sobre progreso y estabilidad
+ d_progress = 0.0
+ d_stability = 0.0
+
+ # Matriz efecto (phase, action) -> (d_prog, d_stab, base_reward)
+ # Valores hechos a mano para inducir multi-modalidad.
+ phase = s.phase
+ if phase == 0: # meseta
+ if action == 0: # explore_new
+ d_progress, d_stability, base_r = 0.10, -0.02, 0.05
+ elif action == 1: # refine
+ d_progress, d_stability, base_r = 0.03, 0.02, 0.02
+ elif action == 2: # combine
+ d_progress, d_stability, base_r = 0.07, 0.00, 0.04
+ else: # exploit
+ d_progress, d_stability, base_r = 0.01, 0.01, 0.0
+ elif phase == 1: # ambigua
+ if action == 0:
+ d_progress, d_stability, base_r = 0.04, -0.03, 0.01
+ elif action == 1:
+ d_progress, d_stability, base_r = 0.05, 0.06, 0.05
+ elif action == 2:
+ d_progress, d_stability, base_r = 0.03, 0.03, 0.04
+ else: # exploit
+ d_progress, d_stability, base_r = 0.02, 0.01, 0.02
+ else: # phase == 2, claridad
+ if action == 0:
+ d_progress, d_stability, base_r = 0.03, -0.04, 0.0
+ elif action == 1:
+ d_progress, d_stability, base_r = 0.04, 0.04, 0.05
+ elif action == 2:
+ d_progress, d_stability, base_r = 0.03, 0.02, 0.03
+ else: # exploit
+ d_progress, d_stability, base_r = 0.06, 0.03, 0.08
+
+ # Ruido leve
+ d_progress += self.rng.normal(0.0, 0.01)
+ d_stability += self.rng.normal(0.0, 0.01)
+
+ new_progress = float(np.clip(s.progress + d_progress, 0.0, 1.0))
+ new_stability = float(np.clip(s.stability + d_stability, 0.0, 1.0))
+
+ # Reward combina:
+ # - progreso
+ # - estabilidad alta
+ # - penalización si todo muy bajo
+ reward = base_r
+ reward += 0.4 * new_progress + 0.3 * new_stability
+ if new_progress < 0.2 and new_stability < 0.2:
+ reward -= 0.1
+
+ next_phase = self._sample_next_phase(phase)
+ self.state = HypothesisState(next_phase, new_progress, new_stability)
+ done = self.step_count >= self.max_steps
+
+ info = {
+ "phase": next_phase,
+ "progress": new_progress,
+ "stability": new_stability
+ }
+ return self._encode_state(self.state), float(reward), bool(done), info
diff --git a/Strange/strange/exp/__init__.py b/Strange/strange/exp/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..03d47fc653525e099e016f51e288a14983a432e9
--- /dev/null
+++ b/Strange/strange/exp/__init__.py
@@ -0,0 +1 @@
+# Package init
diff --git a/Strange/strange/exp/plot_results.py b/Strange/strange/exp/plot_results.py
new file mode 100644
index 0000000000000000000000000000000000000000..eed8b6fb93909b6760dd47ee6d24ccc19ba7dd0c
--- /dev/null
+++ b/Strange/strange/exp/plot_results.py
@@ -0,0 +1,64 @@
+
+import os
+import sys
+from pathlib import Path
+
+THIS_DIR = Path(__file__).resolve().parent
+PROJECT_ROOT = THIS_DIR.parent
+sys.path.append(str(PROJECT_ROOT))
+
+import pandas as pd
+import matplotlib.pyplot as plt
+
+def plot_from_csv(csv_path: Path, out_dir: Path, prefix: str) -> None:
+ df = pd.read_csv(csv_path)
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ # Episode return
+ if {"episode","reward"}.issubset(df.columns):
+ ep_ret = df.groupby("episode")["reward"].sum().reset_index()
+ plt.figure()
+ plt.plot(ep_ret["episode"], ep_ret["reward"])
+ plt.xlabel("episode")
+ plt.ylabel("episode_return")
+ plt.title(f"{prefix} episode return")
+ plt.tight_layout()
+ plt.savefig(out_dir / f"{prefix.lower()}_episode_return.png", dpi=160)
+ plt.close()
+
+ # Stability / diversity if present
+ for col in ["stability","diversity","phase","progress","w_t","H_swarm","S_t","T"]:
+ if col in df.columns:
+ series = df.groupby("episode")[col].mean().reset_index()
+ plt.figure()
+ plt.plot(series["episode"], series[col])
+ plt.xlabel("episode")
+ plt.ylabel(col)
+ plt.title(f"{prefix} mean {col}")
+ plt.tight_layout()
+ plt.savefig(out_dir / f"{prefix.lower()}_{col}.png", dpi=160)
+ plt.close()
+
+def main():
+ import argparse
+ ap = argparse.ArgumentParser()
+ ap.add_argument("--csv", required=True, help="Path to results CSV (relative to project root is ok).")
+ ap.add_argument("--out", default="graphics", help="Output directory for plots (relative ok).")
+ ap.add_argument("--prefix", default="Strange", help="Plot filename prefix.")
+ args = ap.parse_args()
+
+ csv_path = Path(args.csv)
+ if not csv_path.is_absolute():
+ csv_path = (PROJECT_ROOT / csv_path).resolve()
+ out_dir = Path(args.out)
+ if not out_dir.is_absolute():
+ out_dir = (PROJECT_ROOT / out_dir).resolve()
+
+ if not csv_path.exists():
+ raise FileNotFoundError(f"CSV not found: {csv_path}")
+
+ plot_from_csv(csv_path, out_dir, args.prefix)
+ print(f"[ok] plots saved to: {out_dir}")
+
+if __name__ == "__main__":
+ main()
diff --git a/Strange/strange/exp/run_strange_hypothesis_lab.py b/Strange/strange/exp/run_strange_hypothesis_lab.py
new file mode 100644
index 0000000000000000000000000000000000000000..a786dc4e72319c596da4c601c471122e4fba745e
--- /dev/null
+++ b/Strange/strange/exp/run_strange_hypothesis_lab.py
@@ -0,0 +1,70 @@
+
+
+import os, sys
+THIS_DIR = os.path.dirname(os.path.abspath(__file__))
+PROJECT_ROOT = os.path.abspath(os.path.join(THIS_DIR, ".."))
+sys.path.append(PROJECT_ROOT)
+
+def _resolve_path(p: str) -> str:
+ """Resolve relative paths against PROJECT_ROOT for reproducible runs."""
+ if os.path.isabs(p):
+ return p
+ return os.path.abspath(os.path.join(PROJECT_ROOT, p))
+
+import os
+import csv
+import numpy as np
+from envs.hypothesis_lab_env import HypothesisLabEnv
+from levo.strange_swarm import StrangeConfig, StrangeSwarm
+
+
+def run_experiment(
+ n_episodes: int = 200,
+ max_steps: int = 50,
+ seed: int = 0,
+ out_path: str = "results/strange_hypothesis_lab.csv",
+):
+ env = HypothesisLabEnv(max_steps=max_steps, seed=seed)
+ out_path = _resolve_path(out_path)
+ os.makedirs(os.path.dirname(out_path), exist_ok=True)
+
+ cfg = StrangeConfig(n_actions=env.n_actions, seed=seed)
+ swarm = StrangeSwarm(cfg)
+
+ os.makedirs(os.path.dirname(out_path), exist_ok=True)
+ fieldnames = [
+ "episode", "step", "reward", "T", "H_swarm", "S_t", "diversity",
+ "w_t", "phase", "progress", "stability"
+ ]
+ with open(out_path, "w", newline="", encoding="utf-8") as f:
+ writer = csv.DictWriter(f, fieldnames=fieldnames)
+ writer.writeheader()
+
+ for ep in range(n_episodes):
+ s = env.reset()
+ done = False
+ step = 0
+ while not done:
+ a, info = swarm.act(s, step)
+ s_next, r, done, env_info = env.step(a)
+ swarm.update(s, a, r, s_next, done)
+ row = {
+ "episode": ep,
+ "step": step,
+ "reward": r,
+ "T": info["T"],
+ "H_swarm": info["H_swarm"],
+ "S_t": info["S_t"],
+ "diversity": info["diversity"],
+ "w_t": info["w_t"],
+ "phase": env_info["phase"],
+ "progress": env_info["progress"],
+ "stability": env_info["stability"],
+ }
+ writer.writerow(row)
+ s = s_next
+ step += 1
+
+
+if __name__ == "__main__":
+ run_experiment()
diff --git a/Strange/strange/graphics/index.html b/Strange/strange/graphics/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..d46d468f4873bea190afff54ce3f02e884e7cd4e
--- /dev/null
+++ b/Strange/strange/graphics/index.html
@@ -0,0 +1,147 @@
+
+
+
+
+
+
+CHARM • Graphics
+
+
+
+
+
+
+
+
+
+
CHARM · Visual Diagnostics
+
These figures show robustness to heavy noise, keeping exploration controlled and policies coherent.
+
+
+

+
+
Figure 01
+
+
+
+
Interpretation
These figures show robustness to heavy noise, keeping exploration controlled and policies coherent.
+
+
+
+
+
+
diff --git a/Strange/strange/graphics/strange_H_swarm.png b/Strange/strange/graphics/strange_H_swarm.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6e20db7857fc3f796d130ffacaf3d1e6003c037
Binary files /dev/null and b/Strange/strange/graphics/strange_H_swarm.png differ
diff --git a/Strange/strange/graphics/strange_S_t.png b/Strange/strange/graphics/strange_S_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..1e5b21d67b08b57051e7c23a211acb5cd66d73dc
Binary files /dev/null and b/Strange/strange/graphics/strange_S_t.png differ
diff --git a/Strange/strange/graphics/strange_T.png b/Strange/strange/graphics/strange_T.png
new file mode 100644
index 0000000000000000000000000000000000000000..45da07c4343c27044c94e9d2655f4f8ca145c4b4
Binary files /dev/null and b/Strange/strange/graphics/strange_T.png differ
diff --git a/Strange/strange/graphics/strange_diversity.png b/Strange/strange/graphics/strange_diversity.png
new file mode 100644
index 0000000000000000000000000000000000000000..457595de4756ccb61b25bed3fece10227e2e749e
--- /dev/null
+++ b/Strange/strange/graphics/strange_diversity.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9c5b9650da2a28bb92e4f9f5ee749601d66b27144f68ec4b6b418a4915e3b730
+size 105829
diff --git a/Strange/strange/graphics/strange_episode_return.png b/Strange/strange/graphics/strange_episode_return.png
new file mode 100644
index 0000000000000000000000000000000000000000..258f2fa9d931b32edf55ff50bfafd815288230af
--- /dev/null
+++ b/Strange/strange/graphics/strange_episode_return.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4e6680b325bb9e0ffbff573dd28b12b6171529b19bf2f847a74e9711f3d495ec
+size 125201
diff --git a/Strange/strange/graphics/strange_phase.png b/Strange/strange/graphics/strange_phase.png
new file mode 100644
index 0000000000000000000000000000000000000000..4630bfcc1314ae50836a30ee93ac7a35e0f10309
--- /dev/null
+++ b/Strange/strange/graphics/strange_phase.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:55943ee2a1a3f33382d22c166367386e156ac5f8c195a80807f7ceb146d2249e
+size 151199
diff --git a/Strange/strange/graphics/strange_progress.png b/Strange/strange/graphics/strange_progress.png
new file mode 100644
index 0000000000000000000000000000000000000000..ddb07f1ed13fea004699391b09e84c336d3f2e95
--- /dev/null
+++ b/Strange/strange/graphics/strange_progress.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f40d3f5104b512923362aac895309e994ba51a4ea5a2bd47ffbfa61f7a150218
+size 151338
diff --git a/Strange/strange/graphics/strange_stability.png b/Strange/strange/graphics/strange_stability.png
new file mode 100644
index 0000000000000000000000000000000000000000..efa7756bda95386cd48d0075351c40f9a0b7dca0
--- /dev/null
+++ b/Strange/strange/graphics/strange_stability.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9b3a2abc79e3296b5b2a83ee6b824c4abc6921b9aeefe1e3c8905d807e67b865
+size 140393
diff --git a/Strange/strange/graphics/strange_w_t.png b/Strange/strange/graphics/strange_w_t.png
new file mode 100644
index 0000000000000000000000000000000000000000..eeee5340391c64fbcf17a067f1196e6df1d2fb87
Binary files /dev/null and b/Strange/strange/graphics/strange_w_t.png differ
diff --git a/Strange/strange/levo/__init__.py b/Strange/strange/levo/__init__.py
new file mode 100644
index 0000000000000000000000000000000000000000..03d47fc653525e099e016f51e288a14983a432e9
--- /dev/null
+++ b/Strange/strange/levo/__init__.py
@@ -0,0 +1 @@
+# Package init
diff --git a/Strange/strange/levo/antistrange_swarm.py b/Strange/strange/levo/antistrange_swarm.py
new file mode 100644
index 0000000000000000000000000000000000000000..ff65a2553aee9960d04b4a8379408e426207ab0b
--- /dev/null
+++ b/Strange/strange/levo/antistrange_swarm.py
@@ -0,0 +1,359 @@
+"""
+ANTI-STRANGE Swarm
+------------------
+Contraparte "antiquark" del hadrón STRANGE.
+
+Diferencias conceptuales con StrangeSwarm:
+
+- Misma base HF-Levo tabular, pero:
+ * Termodinámica responde distinto a ΔR (premia mejoras fuertes).
+ * Gate w_t se activa cuando el sistema está demasiado ordenado.
+ * Usa una memoria *repulsora*: anti-proto, que empuja a acciones
+ históricamente poco visitadas (huecos del mapa de políticas).
+
+- Interfaz compatible con StrangeSwarm:
+ AntiStrangeConfig, AntiStrangeSwarm.act(), AntiStrangeSwarm.update().
+"""
+
+from dataclasses import dataclass
+from typing import Dict, List, Hashable
+import numpy as np
+import math
+
+
+# ===================== HF-Levo agent (copiado para independencia) =====================
+
+@dataclass
+class HFLevoAgent:
+ n_actions: int
+ alpha: float = 0.1
+ gamma: float = 0.99
+ tau_base: float = 1.0
+
+ def __post_init__(self):
+ # Q: dict[state][action] -> value
+ self.Q: Dict[Hashable, np.ndarray] = {}
+ # Fase fija por acción para inducir diversidad real entre acciones
+ self.action_phases = np.linspace(
+ 0.0, 2 * math.pi, self.n_actions, endpoint=False
+ )
+
+ def _ensure_state(self, s: Hashable):
+ if s not in self.Q:
+ self.Q[s] = np.zeros(self.n_actions, dtype=float)
+
+ def policy(
+ self,
+ s: Hashable,
+ t: int,
+ T: float,
+ hf_amp: float,
+ hf_omega: float,
+ phase_offset: float,
+ rng: np.random.Generator,
+ ) -> np.ndarray:
+ """
+ HF-Levo:
+ scores = Q + A(T) * cos(w(T)*t + phi_h,a)
+ p ~ softmax(scores / tau(T))
+ """
+ self._ensure_state(s)
+ q = self.Q[s]
+
+ # temperatura de softmax: tau sube con T (más exploración)
+ tau = self.tau_base * (1.0 + 0.5 * T)
+
+ # oscilación por acción: desfase del agente + desfase propio por acción
+ osc_vec = hf_amp * np.cos(
+ hf_omega * t + phase_offset + self.action_phases
+ )
+ scores = q + osc_vec
+
+ # softmax numéricamente estable
+ z = scores - scores.max()
+ exp_z = np.exp(z / max(1e-8, tau))
+ p = exp_z / exp_z.sum()
+ return p
+
+ def update(
+ self,
+ s: Hashable,
+ a: int,
+ r: float,
+ s_next: Hashable,
+ done: bool,
+ ):
+ self._ensure_state(s)
+ self._ensure_state(s_next)
+ q = self.Q[s]
+ q_next = self.Q[s_next]
+ target = r if done else (r + self.gamma * float(q_next.max()))
+ td = target - q[a]
+ q[a] += self.alpha * td
+
+
+# ===================== Config ANTI-STRANGE =====================
+
+@dataclass
+class AntiStrangeConfig:
+ n_agents: int = 5
+ n_actions: int = 4
+ hf_amp_base: float = 0.15
+ hf_omega_base: float = 0.35
+
+ T_init: float = 0.7
+ T_min: float = 0.0
+ T_max: float = 2.0
+ eta_T: float = 0.05 # pasos de T
+
+ # --- Excitación (sube T) ---
+ # Queremos subir T cuando:
+ # - Hay mejoras fuertes (|ΔR| grande positiva).
+ # - El sistema está demasiado ordenado (baja entropía y baja diversidad).
+ eps_R_pos: float = 0.03 # mejora significativa de recompensa
+ H_low: float = 0.7 # entropía baja
+ D_low: float = 0.08 # diversidad baja
+
+ # --- Regulación (baja T) ---
+ # Queremos bajar T cuando:
+ # - El sistema se vuelve caótico (H o diversidad altas).
+ # - Hay caídas fuertes de recompensa.
+ H_high: float = 1.25 # entropía muy alta (~max)
+ D_high: float = 0.20 # diversidad muy alta
+ eps_crash: float = 0.03 # caída fuerte de reward
+
+ # --- Gate memoria repulsora ---
+ # Gate alto cuando el sistema está demasiado "congelado":
+ # T baja, S_t baja, H_swarm baja.
+ T_mid: float = 0.9
+ S_mid: float = 0.06
+ H_mid: float = 0.8
+
+ kT: float = 1.5
+ kS: float = 2.0
+ kH: float = 1.0
+
+ proto_alpha: float = 0.1
+
+ seed: int = 1 # distinto de Strange por defecto
+
+
+# ===================== ANTI-STRANGE Swarm =====================
+
+class AntiStrangeSwarm:
+ """
+ Hadron ANTI-STRANGE.
+
+ Diferencias clave vs StrangeSwarm:
+ - T sube cuando hay mejoras fuertes y orden excesivo.
+ - Gate w_t empuja a memoria REPULSORA (anti-proto).
+ - Diseñado para explorar huecos de la política del enjambre.
+
+ Interfaz:
+ anti = AntiStrangeSwarm(cfg)
+ s = env.reset()
+ for t in ...:
+ a, info = anti.act(s, t)
+ s_next, r, done, env_info = env.step(a)
+ anti.update(s, a, r, s_next, done)
+ """
+
+ def __init__(self, config: AntiStrangeConfig):
+ self.cfg = config
+ self.n_actions = config.n_actions
+ self.agents: List[HFLevoAgent] = [
+ HFLevoAgent(n_actions=config.n_actions)
+ for _ in range(config.n_agents)
+ ]
+ self.rng = np.random.default_rng(config.seed)
+
+ # estado interno
+ self.T = config.T_init
+ self.proto: Dict[Hashable, np.ndarray] = {}
+
+ self.last_reward = 0.0
+ self.last_delta_R = 0.0
+
+ # fases diferentes para cada agente
+ self.agent_phases = np.linspace(
+ 0.0, 2 * math.pi, config.n_agents, endpoint=False
+ )
+
+ # --------- Métricas internas ---------
+ @staticmethod
+ def _entropy(p: np.ndarray) -> float:
+ p_safe = np.clip(p, 1e-8, 1.0)
+ return float(-(p_safe * np.log(p_safe)).sum())
+
+ @staticmethod
+ def _diversity(ps: np.ndarray) -> float:
+ H, A = ps.shape
+ if H <= 1:
+ return 0.0
+ d = 0.0
+ cnt = 0
+ for i in range(H):
+ for j in range(i + 1, H):
+ d += float(np.abs(ps[i] - ps[j]).mean())
+ cnt += 1
+ return d / max(1, cnt)
+
+ # --------- Core swarm policy ---------
+ def _compute_swarm_policy(self, s: Hashable, t: int):
+ cfg = self.cfg
+ ps = []
+ for h, agent in enumerate(self.agents):
+ phase = self.agent_phases[h]
+ p_h = agent.policy(
+ s,
+ t,
+ self.T,
+ hf_amp=cfg.hf_amp_base * (1.0 + 0.5 * self.T),
+ hf_omega=cfg.hf_omega_base * (1.0 + 0.25 * self.T),
+ phase_offset=phase,
+ rng=self.rng,
+ )
+ ps.append(p_h)
+ ps = np.stack(ps) # [H, A]
+ p_swarm = ps.mean(axis=0)
+ var = ps.var(axis=0)
+ S_t = float(var.mean())
+ H_swarm = self._entropy(p_swarm)
+ diversity = self._diversity(ps)
+ return p_swarm, S_t, H_swarm, diversity
+
+ def _update_proto(self, s: Hashable, p_swarm: np.ndarray):
+ cfg = self.cfg
+ if s not in self.proto:
+ self.proto[s] = p_swarm.copy()
+ else:
+ self.proto[s] = (
+ (1.0 - cfg.proto_alpha) * self.proto[s]
+ + cfg.proto_alpha * p_swarm
+ )
+
+ def _anti_proto(self, s: Hashable) -> np.ndarray:
+ """
+ Construye memoria repulsora:
+ anti_proto ∝ 1 - proto
+ Es decir, favorece acciones históricamente poco usadas.
+ """
+ proto_s = self.proto[s]
+ raw = 1.0 - proto_s
+ raw = np.clip(raw, 1e-8, None)
+ return raw / raw.sum()
+
+ def _thermo_step(
+ self,
+ delta_R: float,
+ H_swarm: float,
+ S_t: float,
+ diversity: float,
+ ):
+ """
+ Control térmico "anti":
+
+ - E_t (excitación, sube T):
+ * |ΔR| grande positiva (mejora fuerte de recompensa).
+ * Orden excesivo: H_swarm baja y diversidad baja.
+
+ - R_t (regulación, baja T):
+ * Caos fuerte: H_swarm muy alta o diversidad muy alta.
+ * Crash de recompensa: ΔR muy negativa.
+ """
+ cfg = self.cfg
+
+ improving = delta_R > cfg.eps_R_pos
+ too_ordered = (H_swarm < cfg.H_low) and (diversity < cfg.D_low)
+
+ E_t = (
+ (1.0 if improving else 0.0) +
+ (1.0 if too_ordered else 0.0)
+ )
+
+ too_chaotic = (H_swarm > cfg.H_high) or (diversity > cfg.D_high)
+ crashing = delta_R < -cfg.eps_crash
+
+ R_t = (
+ (1.0 if too_chaotic else 0.0) +
+ (1.0 if crashing else 0.0)
+ )
+
+ self.T += cfg.eta_T * (E_t - R_t)
+ self.T = float(np.clip(self.T, cfg.T_min, cfg.T_max))
+ return float(E_t), float(R_t)
+
+ def _gate(self, H_swarm: float, S_t: float) -> float:
+ """
+ Gate invertido:
+
+ - Queremos w_t alto cuando el sistema está demasiado
+ ordenado y frío (baja entropía / baja varianza / T baja),
+ para empujar hacia acciones en los "huecos" (anti-proto).
+
+ - Cuando T, S_t y H_swarm son altos, w_t tiende a 0
+ y se deja actuar más a p_swarm.
+ """
+ cfg = self.cfg
+ x = (
+ cfg.kT * (cfg.T_mid - self.T) +
+ cfg.kS * (cfg.S_mid - S_t) +
+ cfg.kH * (cfg.H_mid - H_swarm)
+ )
+ w = 1.0 / (1.0 + math.exp(-x))
+ return float(w)
+
+ # --------- Interfaz pública ---------
+ def act(self, s: Hashable, t: int):
+ """
+ Calcula la política ANTI-STRANGE y samplea una acción.
+ Devuelve:
+ action, info_dict
+ """
+ p_swarm, S_t, H_swarm, diversity = self._compute_swarm_policy(s, t)
+ self._update_proto(s, p_swarm)
+
+ # feedback térmico con ΔR real del paso previo
+ delta_R = self.last_delta_R
+ E_t, R_t = self._thermo_step(delta_R, H_swarm, S_t, diversity)
+
+ # memoria repulsora
+ anti_proto_s = self._anti_proto(s)
+ w_t = self._gate(H_swarm, S_t)
+
+ p_final = (1.0 - w_t) * p_swarm + w_t * anti_proto_s
+ p_final = p_final / p_final.sum()
+
+ a = int(self.rng.choice(len(p_final), p=p_final))
+
+ info = {
+ "T": self.T,
+ "S_t": S_t,
+ "H_swarm": H_swarm,
+ "diversity": diversity,
+ "E_t": E_t,
+ "R_t": R_t,
+ "w_t": w_t,
+ "p_swarm": p_swarm,
+ "p_final": p_final,
+ }
+ return a, info
+
+ def update(
+ self,
+ s: Hashable,
+ a: int,
+ r: float,
+ s_next: Hashable,
+ done: bool,
+ ):
+ # Actualizamos Q de todos los agentes
+ for agent in self.agents:
+ agent.update(s, a, r, s_next, done)
+
+ # ΔR real
+ delta_R = r - self.last_reward
+ self.last_reward = r
+ self.last_delta_R = delta_R
+
+ return delta_R
diff --git a/Strange/strange/levo/strange_swarm.py b/Strange/strange/levo/strange_swarm.py
new file mode 100644
index 0000000000000000000000000000000000000000..b98485535e539d4194312315bc19d88322df41ea
--- /dev/null
+++ b/Strange/strange/levo/strange_swarm.py
@@ -0,0 +1,309 @@
+"""
+STRANGE Swarm
+-------------
+Implementa:
+
+- HF-Levo tabular para cada agente del swarm.
+- Control termodinámico T con dT/dt = E - R.
+- Proto-memoria por estado.
+- Gate w_t que mezcla p_swarm y proto, dando la política final.
+
+Este archivo no depende de un entorno específico; sólo asume:
+- estados discretos hashables (por ejemplo enteros),
+- acciones indexadas 0..n_actions-1.
+"""
+
+from dataclasses import dataclass
+from typing import Dict, List, Hashable
+import numpy as np
+import math
+
+
+# ===================== HF-Levo agent =====================
+
+@dataclass
+class HFLevoAgent:
+ n_actions: int
+ alpha: float = 0.1
+ gamma: float = 0.99
+ tau_base: float = 1.0
+
+ def __post_init__(self):
+ # Q: dict[state][action] -> value
+ self.Q: Dict[Hashable, np.ndarray] = {}
+ # Fase fija por acción para inducir diversidad real entre acciones
+ self.action_phases = np.linspace(
+ 0.0, 2 * math.pi, self.n_actions, endpoint=False
+ )
+
+ def _ensure_state(self, s: Hashable):
+ if s not in self.Q:
+ self.Q[s] = np.zeros(self.n_actions, dtype=float)
+
+ def policy(
+ self,
+ s: Hashable,
+ t: int,
+ T: float,
+ hf_amp: float,
+ hf_omega: float,
+ phase_offset: float,
+ rng: np.random.Generator,
+ ) -> np.ndarray:
+ """
+ Devuelve distribución de prob de acciones usando HF-Levo:
+ scores = Q + A(T) * cos(w(T)*t + phi_h,a)
+ p ~ softmax(scores / tau(T))
+ """
+ self._ensure_state(s)
+ q = self.Q[s]
+
+ # temperatura de softmax: tau sube con T (más exploración)
+ tau = self.tau_base * (1.0 + 0.5 * T)
+
+ # oscilación por acción: desfase del agente + desfase propio por acción
+ osc_vec = hf_amp * np.cos(
+ hf_omega * t + phase_offset + self.action_phases
+ )
+ scores = q + osc_vec
+
+ # softmax numéricamente estable
+ z = scores - scores.max()
+ exp_z = np.exp(z / max(1e-8, tau))
+ p = exp_z / exp_z.sum()
+ return p
+
+ def update(
+ self,
+ s: Hashable,
+ a: int,
+ r: float,
+ s_next: Hashable,
+ done: bool,
+ ):
+ self._ensure_state(s)
+ self._ensure_state(s_next)
+ q = self.Q[s]
+ q_next = self.Q[s_next]
+ target = r if done else (r + self.gamma * float(q_next.max()))
+ td = target - q[a]
+ q[a] += self.alpha * td
+
+
+# ===================== Config STRANGE =====================
+
+@dataclass
+class StrangeConfig:
+ n_agents: int = 5
+ n_actions: int = 4
+ hf_amp_base: float = 0.15
+ hf_omega_base: float = 0.35
+
+ T_init: float = 0.7
+ T_min: float = 0.0
+ T_max: float = 2.0
+ eta_T: float = 0.05 # pasos de T más suaves
+
+ # umbrales E (excitación)
+ eps_R: float = 0.02 # estancamiento si |ΔR| pequeño
+ H_min: float = 0.7 # baja entropía = poca exploración
+ D_min: float = 0.10 # poca diversidad de políticas
+
+ # umbrales R (regulación)
+ S_max: float = 0.15 # strangeness muy alta
+ H_max: float = 1.25 # entropía casi máxima (~log(4)=1.386)
+ eps_crash: float = 0.02 # caída fuerte de reward
+
+ # gates (controlan cuánto pesa la memoria)
+ T_mid: float = 1.1
+ S_mid: float = 0.08
+ H_mid: float = 1.0
+
+ kT: float = 1.5
+ kS: float = 2.0
+ kH: float = 1.0
+
+ proto_alpha: float = 0.1
+
+ seed: int = 0
+
+
+# ===================== STRANGE Swarm =====================
+
+class StrangeSwarm:
+ """
+ Implementación de alto nivel del hadrón STRANGE.
+
+ Uso:
+ swarm = StrangeSwarm(config)
+ s = env.reset()
+ for t in ...:
+ action, info = swarm.act(s, t)
+ s_next, r, done, env_info = env.step(action)
+ swarm.update(s, action, r, s_next, done)
+ """
+ def __init__(self, config: StrangeConfig):
+ self.cfg = config
+ self.n_actions = config.n_actions
+ self.agents: List[HFLevoAgent] = [
+ HFLevoAgent(n_actions=config.n_actions)
+ for _ in range(config.n_agents)
+ ]
+ self.rng = np.random.default_rng(config.seed)
+
+ # fases internas
+ self.T = config.T_init
+ self.proto: Dict[Hashable, np.ndarray] = {}
+
+ # para métricas
+ self.last_reward = 0.0
+ self.last_delta_R = 0.0 # ΔR del paso previo
+
+ # fases diferentes para cada agente
+ self.agent_phases = np.linspace(
+ 0.0, 2 * math.pi, config.n_agents, endpoint=False
+ )
+
+ # --------- Métricas internas ---------
+ @staticmethod
+ def _entropy(p: np.ndarray) -> float:
+ p_safe = np.clip(p, 1e-8, 1.0)
+ return float(-(p_safe * np.log(p_safe)).sum())
+
+ @staticmethod
+ def _diversity(ps: np.ndarray) -> float:
+ # media de distancias L1 entre políticas
+ H, A = ps.shape
+ if H <= 1:
+ return 0.0
+ d = 0.0
+ cnt = 0
+ for i in range(H):
+ for j in range(i + 1, H):
+ d += float(np.abs(ps[i] - ps[j]).mean())
+ cnt += 1
+ return d / max(1, cnt)
+
+ # --------- Core ---------
+ def _compute_swarm_policy(self, s: Hashable, t: int):
+ cfg = self.cfg
+ ps = []
+ for h, agent in enumerate(self.agents):
+ phase = self.agent_phases[h]
+ p_h = agent.policy(
+ s,
+ t,
+ self.T,
+ hf_amp=cfg.hf_amp_base * (1.0 + 0.5 * self.T),
+ hf_omega=cfg.hf_omega_base * (1.0 + 0.25 * self.T),
+ phase_offset=phase,
+ rng=self.rng,
+ )
+ ps.append(p_h)
+ ps = np.stack(ps) # [H, A]
+ p_swarm = ps.mean(axis=0)
+ var = ps.var(axis=0)
+ S_t = float(var.mean())
+ H_swarm = self._entropy(p_swarm)
+ diversity = self._diversity(ps)
+ return p_swarm, S_t, H_swarm, diversity
+
+ def _update_proto(self, s: Hashable, p_swarm: np.ndarray):
+ cfg = self.cfg
+ if s not in self.proto:
+ self.proto[s] = p_swarm.copy()
+ else:
+ self.proto[s] = (
+ (1.0 - cfg.proto_alpha) * self.proto[s]
+ + cfg.proto_alpha * p_swarm
+ )
+
+ def _thermo_step(
+ self,
+ delta_R: float,
+ H_swarm: float,
+ S_t: float,
+ diversity: float,
+ ):
+ cfg = self.cfg
+ # Excitación
+ E_t = (
+ (abs(delta_R) < cfg.eps_R) * 1.0 +
+ (H_swarm < cfg.H_min) * 1.0 +
+ (diversity < cfg.D_min) * 1.0
+ )
+ # Regulación
+ R_t = (
+ (S_t > cfg.S_max) * 1.0 +
+ (H_swarm > cfg.H_max) * 1.0 +
+ (delta_R < -cfg.eps_crash) * 1.0
+ )
+ self.T += cfg.eta_T * (E_t - R_t)
+ self.T = float(np.clip(self.T, cfg.T_min, cfg.T_max))
+ return float(E_t), float(R_t)
+
+ def _gate(self, H_swarm: float, S_t: float) -> float:
+ cfg = self.cfg
+ x = (
+ cfg.kT * (self.T - cfg.T_mid) +
+ cfg.kS * (S_t - cfg.S_mid) +
+ cfg.kH * (H_swarm - cfg.H_mid)
+ )
+ # sigmoide
+ w = 1.0 / (1.0 + math.exp(-x))
+ return float(w)
+
+ def act(self, s: Hashable, t: int):
+ """
+ Calcula la política STRANGE completa y samplea una acción.
+ Devuelve:
+ action, info_dict
+ """
+ # política del swarm y métricas internas
+ p_swarm, S_t, H_swarm, diversity = self._compute_swarm_policy(s, t)
+ self._update_proto(s, p_swarm)
+
+ # usamos ΔR del paso anterior para la termodinámica
+ delta_R = self.last_delta_R
+ E_t, R_t = self._thermo_step(delta_R, H_swarm, S_t, diversity)
+
+ # gate memoria vs swarm
+ w_t = self._gate(H_swarm, S_t)
+ proto_s = self.proto[s]
+ p_final = (1.0 - w_t) * p_swarm + w_t * proto_s
+ p_final = p_final / p_final.sum()
+
+ # sample acción
+ a = int(self.rng.choice(len(p_final), p=p_final))
+
+ info = {
+ "T": self.T,
+ "S_t": S_t,
+ "H_swarm": H_swarm,
+ "diversity": diversity,
+ "E_t": E_t,
+ "R_t": R_t,
+ "w_t": w_t,
+ "p_swarm": p_swarm,
+ "p_final": p_final,
+ }
+ return a, info
+
+ def update(
+ self,
+ s: Hashable,
+ a: int,
+ r: float,
+ s_next: Hashable,
+ done: bool,
+ ):
+ # Actualizamos Q de todos los agentes (paralelo tabular compartiendo experiencia)
+ for agent in self.agents:
+ agent.update(s, a, r, s_next, done)
+
+ # ΔR real respecto al paso anterior
+ delta_R = r - self.last_reward
+ self.last_reward = r
+ self.last_delta_R = delta_R
+
+ return delta_R
diff --git a/Strange/strange/results/strange_hypothesis_lab.csv b/Strange/strange/results/strange_hypothesis_lab.csv
new file mode 100644
index 0000000000000000000000000000000000000000..5033653d4603c4e2822e0291fafc2d9bfae04ed1
--- /dev/null
+++ b/Strange/strange/results/strange_hypothesis_lab.csv
@@ -0,0 +1,10001 @@
+episode,step,reward,T,H_swarm,S_t,diversity,w_t,phase,progress,stability
+0,0,0.16239284849816465,0.75,1.3862943611198846,0.0007001722195526522,0.03633489525742447,0.4262163581318481,1,0.12867895136708699,0.23640422650443282
+0,1,0.20933495617024866,0.75,1.386281331431762,0.0007001717584162999,0.03673146826212116,0.42621317142129245,1,0.17332225763547587,0.3000201770535277
+0,2,0.17801207431534466,0.75,1.3862684578431035,0.000700154176952703,0.036747451665472435,0.4262100145180504,1,0.22279306726676829,0.26298282469545775
+0,3,0.18264295440323697,0.7,1.3862943611198846,0.0007001722195526527,0.03638937495624124,0.40798409882467046,1,0.2565603226413948,0.23339608448893018
+0,4,0.19903005490574757,0.75,1.3862772530362795,0.0007001723700085801,0.036663329245602116,0.4262121743266665,1,0.2743724060020693,0.23093697501639954
+0,5,0.20690411850521087,0.8,1.3862678456368887,0.0007001552885357025,0.03676404512539598,0.4446448750837256,1,0.2889298161734962,0.23777397345270798
+0,6,0.25168856799414946,0.8500000000000001,1.3862175464466147,0.0007001365160199148,0.036377976038477665,0.4632210053799499,1,0.329354949867923,0.2664886268232676
+0,7,0.27108231951048206,0.8500000000000001,1.3862356199957688,0.0007001303025030036,0.03678148944551728,0.4632254962322834,1,0.35270300313305686,0.3000037275241978
+0,8,0.29022787095346414,0.9000000000000001,1.386174993632612,0.0007001259206531205,0.03661655867294898,0.481901721653225,1,0.3836431261106656,0.3225687350306597
+0,9,0.28005755302120494,0.9500000000000002,1.3860439149199868,0.0007001182972983726,0.03669072981772187,0.5006110375744574,1,0.3990658678539922,0.33477068626536016
+0,10,0.28974317569197466,1.0000000000000002,1.3859899091665442,0.0006999826121500312,0.036624207990221196,0.5193378180678181,1,0.416974112105275,0.3431784361662154
+0,11,0.2886679303091198,1.0500000000000003,1.3862943611198844,0.0007001722195526525,0.036728371598992,0.5380996785026854,1,0.45912070333033844,0.31673216325661463
+0,12,0.3115014021845327,1.1000000000000003,1.3862608119778679,0.0007001716097388504,0.03653024600999235,0.5566707315232401,1,0.47782456699341075,0.3345719179572279
+0,13,0.30800691138033337,1.1000000000000003,1.3862428179098751,0.0007001385295675733,0.03678566263451503,0.5566662744633148,1,0.5052339116723695,0.31971115570461855
+0,14,0.36292552387412297,1.1500000000000004,1.3861621423796564,0.0007000954829436889,0.03650844638549437,0.5750687806949815,1,0.5430470256793738,0.3523557120079116
+0,15,0.3516383815576207,1.1500000000000004,1.3861991040524406,0.0007002279219950206,0.03678549623211641,0.5750778775236854,1,0.5976272325147434,0.3419582951724113
+0,16,0.37897093784853514,1.2000000000000004,1.3860593139038158,0.0007002882970907765,0.03643243413340943,0.5932603136197275,1,0.6307782701620871,0.3555320992790008
+0,17,0.4219225461212837,1.2000000000000004,1.3862943611198844,0.0007001722195526524,0.03676137695795967,0.593316973843189,1,0.6607337288308862,0.3920968486297642
+0,18,0.47279262544647843,1.2000000000000004,1.386229093357471,0.0007001695942799111,0.03644447127741131,0.5933012238951778,1,0.7146849494327063,0.4563954855779865
+0,19,0.5040710458633327,1.2000000000000004,1.3862943611198844,0.0007001722195526523,0.036787506764947984,0.593316973843189,1,0.7528437697651345,0.5097784598575962
+0,20,0.4716099418636316,1.2000000000000004,1.3862010453637463,0.0007001725789834356,0.036386056969374574,0.5932944574805368,1,0.7811457506874058,0.49717213862889753
+0,21,0.47915010274505065,1.1500000000000004,1.3861673366976155,0.0007000836765301547,0.03676941601076256,0.5750700442321866,1,0.8244354469820078,0.4645864131741583
+0,22,0.5373316045618527,1.2000000000000004,1.3862943611198844,0.0007001722195526521,0.0367823004872644,0.593316973843189,1,0.8676390568528262,0.5009199394024074
+0,23,0.5605907790312219,1.2000000000000004,1.386188254967173,0.0007001692684897793,0.0367226103761662,0.5932913696058555,1,0.8981593465954251,0.5377568013101728
+0,24,0.5845851849423765,1.2000000000000004,1.3858467930158915,0.0007001548572381312,0.03666095648662952,0.5932089663776962,1,0.9219802761483491,0.585976914943456
+0,25,0.6327442228194576,1.2000000000000004,1.3852321771430578,0.00070012296268094,0.03659605237682663,0.5930606282504965,1,0.9653649959301969,0.6553274148245962
+0,26,0.6201637820249163,1.2000000000000004,1.3862943611198846,0.0007001722195526526,0.03674385636281656,0.593316973843189,1,1.0,0.6672126067497208
+0,27,0.6198903436720586,1.2500000000000004,1.386152780310893,0.0007001716974051672,0.036494931806020404,0.611246090234244,1,1.0,0.6663011455735288
+0,28,0.6506338411092971,1.3000000000000005,1.385739506567511,0.000700145690119139,0.03640131608692197,0.6288157685538307,1,1.0,0.7021128036976568
+0,29,0.6647011634666281,1.3000000000000005,1.3857821555552388,0.0006998666481430653,0.03659183549920321,0.6288255927910008,0,1.0,0.7490038782220936
+0,30,0.6624947135896013,1.3500000000000005,1.3862943611198844,0.0007001722195526524,0.03670404437716347,0.6462725701333374,0,1.0,0.7416490452986708
+0,31,0.6489777423197474,1.4000000000000006,1.386146903082922,0.0007001666849408167,0.03660629424657204,0.6631910463249134,0,1.0,0.7632591410658243
+0,32,0.6687731816749951,1.4500000000000006,1.386091032225803,0.0007000331468817811,0.03653422755469134,0.6797212546206066,0,1.0,0.72924393891665
+0,33,0.6582802978971192,1.5000000000000007,1.3861395348024954,0.0007001682327702499,0.03647383206506106,0.6958344974031908,0,1.0,0.727600992990397
+0,34,0.6544391160629754,1.5500000000000007,1.3859361281974487,0.000700312397604385,0.03645556249702407,0.711429469271515,1,1.0,0.7147970535432513
+0,35,0.6756886925422516,1.6000000000000008,1.3856285959088381,0.000699705040695306,0.03647180847682657,0.7265181099011363,2,1.0,0.7522956418075054
+0,36,0.6874615879635892,1.6000000000000008,1.3862943611198844,0.0007001722195526524,0.036565616580524624,0.7266505561288239,2,1.0,0.7915386265452972
+0,37,0.7241864787108939,1.6500000000000008,1.3861569249762424,0.000700170458399889,0.036709670974368884,0.741265661982668,2,1.0,0.8139549290363131
+0,38,0.7357176766978036,1.6500000000000008,1.3862943611198846,0.0007001722195526521,0.0366263607507312,0.7412920207831094,2,1.0,0.8523922556593457
+0,39,0.7202499127395395,1.7000000000000008,1.3861411333710518,0.000700166768483538,0.036750998920412295,0.7553849001901436,2,1.0,0.9008330424651316
+0,40,0.7058447774394285,1.7500000000000009,1.386080387091801,0.0007004657890249639,0.03678801485168847,0.7689659021541283,2,1.0,0.9194825914647615
+0,41,0.7386201358121676,1.800000000000001,1.386138502747691,0.0007001648365760737,0.036738485158909026,0.782030540027593,2,1.0,0.9620671193738914
+0,42,0.7214911325719527,1.800000000000001,1.385890561252241,0.0007002857126393787,0.03657198705158819,0.7819883144832902,2,1.0,0.9716371085731758
+0,43,0.75,1.850000000000001,1.3857243118474316,0.0006998604819797546,0.036761790441010994,0.7944766646310573,2,1.0,1.0
+0,44,0.75,1.850000000000001,1.3853048828021182,0.0006998440192524237,0.036693520166020045,0.7944081649546788,2,1.0,1.0
+0,45,0.7799999999999999,1.900000000000001,1.3845709050373716,0.0006997863672420006,0.03666617130125145,0.8062726929865461,2,1.0,1.0
+0,46,0.6891136822532088,1.900000000000001,1.3847920099384996,0.0007008648139643359,0.03675176043697787,0.8063075634329013,2,1.0,0.9637122741773626
+0,47,0.724036942327593,1.850000000000001,1.3855558985828065,0.0007004794969806031,0.03663318229048396,0.7944493663308296,2,1.0,0.9801231410919764
+0,48,0.6796257467820309,1.850000000000001,1.3855151684408988,0.0006999366336324275,0.036619626167100204,0.7944425377333623,2,1.0,0.9320858226067696
+0,49,0.7688761728503519,1.800000000000001,1.3859415469088106,0.0006999605429639873,0.0365696944009321,0.7819968956567603,2,1.0,0.9629205761678398
+1,0,0.026497742200462998,1.800000000000001,1.3862845021303956,0.0007001676555638994,0.036350204937139516,0.7820554268396575,1,0.11988466938313413,0.19514624815736456
+1,1,0.019516293771656326,1.7500000000000009,1.3862943611198846,0.0007001722195526526,0.036763890345957194,0.7690038097261824,1,0.15882394684865664,0.15328905010731222
+1,2,0.041675750190347555,1.800000000000001,1.3862942602849189,0.0007001721992953265,0.036628073336070766,0.7820570916100549,1,0.1839544681874597,0.16031320971787894
+1,3,0.14318055949357922,1.800000000000001,1.3862939200448214,0.0007001718633956987,0.03657018689735704,0.7820570335037311,1,0.22159292188893026,0.14847796912669037
+1,4,0.2170658179365072,1.800000000000001,1.3862943611198846,0.0007001722195526524,0.036785422219763,0.7820571088036542,1,0.27245911451881566,0.19360724042993638
+1,5,0.1909365744712999,1.800000000000001,1.3862821702172305,0.0007001722075885436,0.03646591126481613,0.7820550309288111,1,0.3216339943532586,0.17427658909998817
+1,6,0.2737160341318815,1.7500000000000009,1.3862785670794593,0.0007001620781379868,0.036720978553673594,0.7690010005060769,1,0.3808005422415046,0.23798605745093226
+1,7,0.2496855984541225,1.7500000000000009,1.3860488032373928,0.000700005336572403,0.036631516994248624,0.7689601273944519,1,0.3992786126574217,0.23324717797051267
+1,8,0.23822594989390955,1.7000000000000008,1.3859512461583683,0.0006999328728934573,0.036594959170449214,0.7553497249581248,1,0.4199290162913246,0.2008478112579323
+1,9,0.24289387873898127,1.7500000000000009,1.3861160725444894,0.0007001406027927902,0.03670072890763938,0.7689721263347569,1,0.44950041488147957,0.1769790426212981
+1,10,0.32070593062952507,1.800000000000001,1.3862943611198846,0.0007001722195526524,0.03636156741739814,0.7820571088036542,1,0.4951317316255068,0.2421774599310745
+1,11,0.29431621575744027,1.800000000000001,1.3860747346570612,0.0007001458831986667,0.03664403293752468,0.7820196635397523,1,0.5490215313738899,0.21569201069294763
+1,12,0.28961589626279466,1.7500000000000009,1.3859396237589539,0.0007001515687211835,0.03675644623515725,0.7689407819119966,1,0.5695788816140345,0.17261447872393615
+1,13,0.3395641048133106,1.800000000000001,1.3862451381335483,0.0007001729373992025,0.03659905701814719,0.7820487191796685,1,0.599072840982921,0.1997832280671408
+1,14,0.380676534437491,1.800000000000001,1.3862375681479095,0.0007001309698046083,0.03676050324271105,0.7820474145773746,1,0.6362463485421821,0.2539266500687272
+1,15,0.3920312779687041,1.800000000000001,1.3862253851217718,0.0007001261265826501,0.03665664482496947,0.7820453363314404,1,0.6721097213574951,0.27729129808568675
+1,16,0.3647987285932172,1.850000000000001,1.3861303611630107,0.0007000760208544283,0.03655990207612958,0.7945430282253483,1,0.696058227388644,0.2545847921258653
+1,17,0.3843832414402365,1.800000000000001,1.3861813595476518,0.000700203520864321,0.036709845288896724,0.7820378584447276,1,0.7112944599146324,0.2662181915812783
+1,18,0.45462984167944037,1.850000000000001,1.386261154681394,0.0007001678209857771,0.03646637667635692,0.7945644086822337,1,0.7565763283672233,0.3399977011085035
+1,19,0.4285097174001525,1.850000000000001,1.3862279112492293,0.0007001285320626392,0.036403261776481996,0.7945589694168671,1,0.8196799632351822,0.30212577368693194
+1,20,0.4804251476293043,1.800000000000001,1.3862943611198846,0.0007001722195526527,0.03677434774272316,0.7820571088036542,1,0.8477249049568512,0.33778395215521284
+1,21,0.4665775048947026,1.800000000000001,1.3862343732050226,0.0007001697755190121,0.03645504737721418,0.7820468832300799,1,0.8621129238527596,0.3391077845119958
+1,22,0.528218142585106,1.850000000000001,1.386209494628649,0.0007001151765592432,0.03678425917424612,0.7945559588030302,1,0.9113394732555175,0.37894117760966334
+1,23,0.5104302761940477,1.850000000000001,1.386224092253377,0.0007001883935091352,0.03678445835306167,0.7945583655653375,1,0.9381198705267574,0.38394109327781584
+1,24,0.5549828533779508,1.900000000000001,1.3861145118876987,0.0007002714870083165,0.03649274924507934,0.806513837228153,1,0.9781438532551969,0.41241770691957347
+1,25,0.5896254124489322,1.900000000000001,1.3856694820732876,0.0006999150393136094,0.03645832611875234,0.8064442699011807,1,1.0,0.4654180414964402
+1,26,0.5933975148103103,1.900000000000001,1.3855381821546007,0.0006996573317777342,0.03667011327903164,0.8064236937629164,1,1.0,0.5113250493677008
+1,27,0.5710919792390495,1.950000000000001,1.38508341700482,0.0006994757557984327,0.03672310237815745,0.8177954621261926,1,1.0,0.5036399307968317
+1,28,0.5662397951640206,1.900000000000001,1.3854273253511828,0.0006995592110273412,0.03673615326056855,0.806406357290726,1,0.9889366319871671,0.5022171412305124
+1,29,0.621228895073714,1.950000000000001,1.3854359840774169,0.0006996381273048196,0.03672046216036203,0.8178480392427521,1,1.0,0.5707629835790465
+1,30,0.5948265490227556,1.950000000000001,1.3853264656050768,0.0006997753029343274,0.03667380433321295,0.8178317642942842,1,1.0,0.5827551634091851
+1,31,0.6228531334538993,1.900000000000001,1.38521077913032,0.0007000706462320829,0.03672845757951037,0.8063727086098369,1,1.0,0.6095104448463307
+1,32,0.631736628338225,1.900000000000001,1.38592013067118,0.0006999659003098862,0.036760760990561483,0.8064834069898673,1,1.0,0.6391220944607499
+1,33,0.6171507791326635,1.950000000000001,1.3855970535554678,0.0006996782328195618,0.03662321002329932,0.8178720449051342,1,1.0,0.6571692637755449
+1,34,0.6656405111498316,2.0,1.3853933539844114,0.0006996111914655502,0.03671111670165742,0.8287497888191848,1,1.0,0.7188017038327716
+1,35,0.662528092462991,2.0,1.3855146595951005,0.0006999586407258576,0.036761223494817634,0.8287671028733212,1,1.0,0.74176030820997
+1,36,0.6704897286374716,2.0,1.385151930253783,0.0006994824682457794,0.03654581502062994,0.8287154858369031,2,1.0,0.7682990954582383
+1,37,0.7176582686992744,2.0,1.3861384909514982,0.0007003866464242594,0.03659896722125504,0.8288557354211037,2,1.0,0.7921942289975813
+1,38,0.6231760620189759,2.0,1.3858481265320581,0.0007005934075831076,0.036785877125085284,0.8288146008320295,2,1.0,0.7439202067299198
+1,39,0.656831789893944,1.95,1.3859710539008097,0.0007002452798753475,0.036577258933710464,0.8179279172788885,2,1.0,0.7561059663131466
+1,40,0.7157667173154028,1.95,1.3861775022189695,0.0007001431644639983,0.03670687204931881,0.8179586295138098,2,1.0,0.7858890577180093
+1,41,0.7209069939151899,1.95,1.3858110915030988,0.0007000974257602247,0.03643977543009678,0.817904050130978,2,1.0,0.8030233130506329
+1,42,0.6277832898564861,2.0,1.3860759225650887,0.000700203366328362,0.03676613631483859,0.8288468076683793,2,1.0,0.7592776328549535
+1,43,0.7079751535184348,1.95,1.385115739989775,0.0007000195625940541,0.03654426113733762,0.8178004404544588,2,1.0,0.7599171783947825
+1,44,0.7139671006213363,1.95,1.3841688313640386,0.0006998846764800302,0.036385949483654395,0.8176592656602496,2,1.0,0.7798903354044543
+1,45,0.7194555081961133,2.0,1.3829720099826757,0.000699728824322987,0.03669102332860742,0.8284059028643769,2,1.0,0.7981850273203774
+1,46,0.6297186149100319,2.0,1.3816052923784936,0.0006994741120458757,0.036372604056431265,0.8282114648663421,2,1.0,0.765728716366773
+1,47,0.7178437176187876,1.95,1.3821430518133138,0.0006987053633001513,0.036673315687379325,0.8173566904521988,1,1.0,0.7928123920626254
+1,48,0.6644534944811371,1.95,1.3847158779456612,0.0006990921214293877,0.03673473056835509,0.8177405758335945,1,1.0,0.8148449816037904
+1,49,0.6561366690127689,1.9,1.3862943611198846,0.0007001722195526527,0.03662780030410882,0.8065418700441696,1,1.0,0.787122230042563
+2,0,0.1874570822126908,1.95,1.386287261483111,0.0007001685412730096,0.036348244745278604,0.8179749799082152,1,0.14974554683307456,0.2585295449315367
+2,1,0.15591489432773006,1.9,1.3862698574490029,0.000700157277520297,0.036743293178570655,0.8065380419937257,1,0.19029919658221012,0.23265071898282003
+2,2,0.17875085920170838,1.8499999999999999,1.3862634818753845,0.000700150345284038,0.03670387692702051,0.7945647828488852,1,0.2056659551851114,0.25494825709221275
+2,3,0.19440191738419546,1.8499999999999999,1.3860258701409185,0.0006999851468597502,0.03650418363109094,0.7945259404545151,1,0.2359675071633502,0.266716381729518
+2,4,0.2584820089914816,1.9,1.3859422687638898,0.0006999278327314944,0.03677515769320437,0.8064868501304395,1,0.28306768820265704,0.31751644570139603
+2,5,0.26920322751390396,1.9,1.3860900540836347,0.0007000605714201885,0.03663647565532972,0.806509954749688,1,0.3165467058223618,0.3419484839498642
+2,6,0.321282248708434,1.95,1.3860505809575723,0.0007000007081395879,0.03654424974544063,0.8179396874545479,1,0.36956386675737246,0.41152234001828353
+2,7,0.3028275772603417,1.95,1.3862943611198846,0.0007001722195526524,0.03676977664286273,0.8179760380796509,1,0.3937473917662647,0.4177620685127861
+2,8,0.2995445720436919,2.0,1.386272374406062,0.0007001711289895084,0.03667869502668627,0.828874665337209,1,0.43083456265232783,0.39070248994253587
+2,9,0.3524315366916407,2.0,1.38587134249005,0.0007001583923171539,0.03641913478375607,0.8288177712703357,1,0.4672764678842247,0.4184031651265027
+2,10,0.37303137974989814,2.0,1.3862943611198846,0.0007001722195526526,0.03670703823465997,0.8288777842514964,1,0.4938733666095626,0.45160677702024377
+2,11,0.34967736363694013,2.0,1.3862617917780944,0.0007001708908263136,0.03676058703790742,0.8288731642090781,1,0.5457649107344472,0.4045713311438708
+2,12,0.4060085547706524,1.95,1.386249253457403,0.0007002343122145336,0.03641884114442936,0.8179693403381919,1,0.5781215714298436,0.44919975399571654
+2,13,0.37774165051980624,1.95,1.3861600988859117,0.0007003033229341725,0.03678189045639651,0.8179560857994329,1,0.6156424868770527,0.4049488525632839
+2,14,0.4037338484116561,1.9,1.3860946165086188,0.0007000618906944042,0.03662065594754886,0.8065106671343772,1,0.6354437167666318,0.43185453901667786
+2,15,0.44469781419767185,1.9,1.38614810586777,0.0007000687496789601,0.03674072023676971,0.8065190162174296,1,0.6501527880173473,0.4821223299691098
+2,16,0.43660444329511533,1.9,1.386247343600414,0.0007001804533259332,0.03670709756670288,0.8065345362665238,1,0.6613581908703041,0.5068705564899789
+2,17,0.43279119086440865,1.95,1.3862304907262064,0.0007001263197545294,0.03644105277732847,0.8179665144757398,1,0.6976841648765232,0.4790584163793312
+2,18,0.453638928482049,2.0,1.386129351076636,0.0007000902886246181,0.0365820530926957,0.8288543548107195,1,0.7276175269210197,0.4753063923788038
+2,19,0.4532887716479921,2.0,1.3860394172498682,0.0006999927462540126,0.03666282824472393,0.828841569211855,1,0.7770861428009759,0.4415143817586723
+2,20,0.5277828572376878,2.0,1.3858726074749645,0.0006999030222769881,0.036761013467857824,0.8288178782817164,1,0.8173960184933938,0.5027481661344342
+2,21,0.5651571245913667,2.0,1.384964850478913,0.0006995933155649385,0.03646472698272069,0.8286889604264757,1,0.8597472788405286,0.5708607101838505
+2,22,0.5467815823462279,2.0,1.3847736543669198,0.0006998316198188454,0.03661175046307512,0.8286618835081089,1,0.8758015662562915,0.5882031861457042
+2,23,0.5815937214432826,2.0,1.384607726259261,0.0007001805940819811,0.0367379345093594,0.8286384226303705,1,0.894856603129995,0.6121702673042817
+2,24,0.6331495802758568,2.0,1.3846322366398982,0.0006991226202772419,0.03645378134062469,0.8286416025445076,1,0.9520460087881456,0.6744372558686617
+2,25,0.6623593198580671,2.0,1.3846529249779582,0.0006994345931679543,0.036599484566726945,0.8286446287545997,1,0.9911638914969546,0.7196458775309507
+2,26,0.6365055029339999,2.0,1.3844005428415582,0.0006997469868433729,0.03672602865270424,0.8286088780890768,1,1.0,0.7216850097799996
+2,27,0.6156442155002152,1.95,1.3841954772824407,0.0007002180791816451,0.03644568202663263,0.817663337749677,1,1.0,0.6854807183340506
+2,28,0.6090288887041648,1.9,1.3852223074267034,0.0007001516570771021,0.03674456003347302,0.8063745338800362,1,1.0,0.6634296290138828
+2,29,0.6652857909866292,1.95,1.3858682401156366,0.0007001459101127489,0.036740425358683874,0.8179125759618046,1,1.0,0.7176193032887637
+2,30,0.6690682616876438,1.95,1.3856597871066403,0.000700341739007836,0.03669746344845036,0.8178815870034474,1,1.0,0.7635608722921459
+2,31,0.6794002358865838,2.0,1.3854496967987506,0.000699831257162497,0.0367283652991187,0.8287578475074823,1,1.0,0.7980007862886126
+2,32,0.6580846679396125,2.0,1.3850485920954583,0.0006993475357622072,0.03673542365272969,0.828700778578145,1,1.0,0.7936155597987082
+2,33,0.6898440897213075,1.95,1.385003209258416,0.0006995737957788945,0.03651441611312913,0.8177835396011299,1,1.0,0.8328136324043581
+2,34,0.7166897676414805,1.95,1.3861905368191938,0.0007001692425685066,0.036743175424696434,0.8179605781539637,1,1.0,0.8889658921382682
+2,35,0.7379919699265549,1.95,1.3861261911954639,0.0007003986405217854,0.036360325225952755,0.8179510651436555,1,1.0,0.9599732330885161
+2,36,0.7048430587164258,1.95,1.385791152768015,0.000700600682902038,0.03674407049509487,0.8179012304055555,1,0.9903281629001606,0.9623726451878718
+2,37,0.74,1.9,1.3855898504146242,0.0007011417020115576,0.03671428090846787,0.8064322227028523,1,1.0,1.0
+2,38,0.7185310638168525,1.9,1.3858179727326332,0.000700575585902924,0.036779199867063406,0.8064676532301414,1,1.0,0.9951035460561749
+2,39,0.75,1.8499999999999999,1.3854576917719594,0.000700926966163574,0.03649881022108782,0.7944334748885007,1,1.0,1.0
+2,40,0.74,1.8499999999999999,1.3850710220768638,0.0007016060505744663,0.03656127783793452,0.7943705429371016,1,1.0,1.0
+2,41,0.74,1.9,1.385174973411155,0.0007007136531921997,0.036581139374862896,0.8063673187923035,1,1.0,1.0
+2,42,0.72,1.95,1.3849652679622704,0.0006999143137793498,0.03646268208991351,0.8177779872490675,1,1.0,1.0
+2,43,0.7026333871226096,1.9,1.3846819440190372,0.0007002943345914037,0.036637576361213495,0.8062901950318454,1,1.0,0.9754446237420318
+2,44,0.75,1.95,1.3856118737699825,0.0007002004595016023,0.03670953910297908,0.81787440805231,1,1.0,1.0
+2,45,0.72,1.95,1.3854160627354735,0.0007006151667268729,0.036757863870407345,0.8178453625971368,1,1.0,1.0
+2,46,0.7033093862918709,1.9,1.3850437184345585,0.0007010677684089206,0.03666195854418318,0.8063469345300466,1,1.0,0.9776979543062362
+2,47,0.72,1.95,1.385763963765704,0.000700684975739584,0.03664035617154624,0.8178972059823492,1,1.0,1.0
+2,48,0.75,2.0,1.3852593802375446,0.0007009313145520824,0.036779803308466724,0.828731148694295,1,1.0,1.0
+2,49,0.72,2.0,1.3850540188972005,0.0007017257506999617,0.036548643424728154,0.8287022241420784,1,1.0,1.0
+3,0,0.0801158561877828,1.95,1.3862943611198846,0.0007001722195526521,0.03633489525742446,0.8179760380796509,0,0.19650200784608118,0.1717168434978345
+3,1,0.17255209663316076,1.9,1.3862943611198846,0.0007001722195526523,0.0367432071699947,0.8065418700441696,0,0.23822652011954443,0.19087162861780999
+3,2,0.22554813692427222,1.9,1.3862943611198846,0.0007001722195526523,0.03670535651091443,0.8065418700441696,0,0.32525288165611693,0.15148994753941816
+3,3,0.25133887711380765,1.9,1.3862818646891746,0.0007001720403380289,0.03645464992309363,0.8065399201366734,0,0.406719151331212,0.16217072193774276
+3,4,0.24573778858847023,1.9,1.3862943611198844,0.0007001722195526525,0.036778381983893826,0.8065418700441696,0,0.4286974498296124,0.18086269552208423
+3,5,0.2848396856921421,1.95,1.3862795220870692,0.0007001723529354186,0.036643670209743684,0.8179738287069608,0,0.4952477163686592,0.1558019971489279
+3,6,0.2556285335588494,1.95,1.3862693183843815,0.000700154437427695,0.03642998107898363,0.8179723041107478,0,0.5033466276118369,0.18096627504704885
+3,7,0.3440509659776223,1.9,1.3862750625962201,0.0007001678577016235,0.036770291347834536,0.8065388574763374,0,0.617355510474465,0.15702920595945438
+3,8,0.286843270075026,1.9,1.3862943611198844,0.0007001722195526525,0.03656093887374286,0.8065418700441696,0,0.5883612931739216,0.17166250935152458
+3,9,0.37643802272088506,1.8499999999999999,1.3862926888159208,0.0007001737148227538,0.036636898044092675,0.7945695579323364,0,0.7059988838695154,0.1467948972435963
+3,10,0.3580871397072399,1.8499999999999999,1.3862683601419603,0.0007001714871540842,0.03671109655469061,0.7945655860369665,0,0.7289436043223045,0.15503232659439348
+3,11,0.3787734596969062,1.9,1.38625095419129,0.0007002304080299324,0.03647093919392229,0.8065351152396325,0,0.7554936190814466,0.1885867068810916
+3,12,0.39403691394295987,1.9,1.386163459396441,0.0007002818695259715,0.03670443149536033,0.8065214785767166,0,0.7775881709847678,0.21000548516350895
+3,13,0.3817616865989488,1.95,1.3862943611198844,0.0007001722195526526,0.036753785905403825,0.8179760380796509,0,0.7808258504250183,0.2314378214298049
+3,14,0.3899027062835046,2.0,1.3862593712391367,0.0007001729558668466,0.036622729309940955,0.82887282145947,0,0.7886904041441885,0.24808848208609735
+3,15,0.43322640042865956,2.0,1.3861542213816826,0.0007001668703728821,0.036435622131668684,0.8288579044809676,0,0.8223029416306222,0.2810174125880354
+3,16,0.4422811755744461,2.0,1.3862943611198846,0.0007001722195526524,0.03668521484534624,0.8288777842514964,0,0.8354013422008529,0.2937354623136829
+3,17,0.43044493973923736,2.0,1.3862485237435396,0.0007001724522046639,0.03677353809864446,0.8288712826733894,0,0.8483846946515059,0.30363687292878316
+3,18,0.4382037398294668,2.0,1.386228581624985,0.000700262593166165,0.03647731276441573,0.8288684795635516,0,0.8655951841515647,0.30655222056280323
+3,19,0.5051435212627722,2.0,1.3861158764661894,0.0007003447471805831,0.03668041366592027,0.8288525155568697,0,0.9370243206482328,0.30111264334493
+3,20,0.5054315487134239,2.0,1.3861609178885317,0.0007001702125634405,0.036771478814745635,0.8288588553431625,0,0.9800030382600528,0.3114344446980094
+3,21,0.4912900150955099,2.0,1.3861061915071065,0.0007003203722807989,0.03647503733877073,0.8288511347672186,0,1.0,0.3043000503183663
+3,22,0.5150074018329907,2.0,1.385958496214932,0.0007004681591632326,0.036646598279483474,0.8288302240819542,0,1.0,0.316691339443302
+3,23,0.5412249360943253,2.0,1.3858032495199506,0.0007007359057613408,0.036781011636139845,0.8288082739813367,0,1.0,0.30408312031441753
+3,24,0.4950948581013409,2.0,1.3860721258417759,0.0007004689254623078,0.03652264864192638,0.828846344409878,0,1.0,0.3169828603378029
+3,25,0.49997370168652194,1.95,1.3859007055404768,0.0007006648632907214,0.03666000854707555,0.8179175656131795,0,1.0,0.3332456722884064
+3,26,0.5454156585282002,2.0,1.385592946793765,0.0007008684728348057,0.03644995818297518,0.8287784707144374,0,1.0,0.3513855284273339
+3,27,0.503684061076152,2.0,1.385818134642749,0.0007004502528562801,0.03650195427259944,0.8288103048894043,0,1.0,0.34561353692050684
+3,28,0.5009612628524708,1.95,1.3854616610877857,0.0007005563484449627,0.03660390590916782,0.8178521379581429,0,0.9985625990789841,0.3384540774029236
+3,29,0.5083836669219266,2.0,1.3849481584117305,0.0007006467889127835,0.03647208169502831,0.8286868898608157,0,1.0,0.36127888973975525
+3,30,0.5077060188062571,2.0,1.384365264620898,0.0007006972856670813,0.03653622009279141,0.8286041378737254,0,1.0,0.3590200626875237
+3,31,0.5362927573601168,2.0,1.3836163089884155,0.0007007368124597815,0.03660096810174385,0.8284977567570851,0,1.0,0.3876425245337228
+3,32,0.5587801596167855,2.0,1.3837314780249346,0.0007020047060594286,0.036753227369467,0.828514480697462,0,1.0,0.36260053205595144
+3,33,0.5450308324430255,2.0,1.3844101160547277,0.0007012109571349341,0.036506315083411164,0.8286106534482007,0,1.0,0.35010277481008495
+3,34,0.5440697448621713,2.0,1.384847903086977,0.000700574025706419,0.03655033568355974,0.8286726359907932,0,1.0,0.3468991495405709
+3,35,0.5469841688212584,2.0,1.3849641473341965,0.0007000343807832643,0.036749956873251985,0.8286889858359255,0,1.0,0.32328056273752787
+3,36,0.5233987697307034,2.0,1.3854272811139385,0.0006998708942949638,0.0365598786944191,0.8287546775392897,0,1.0,0.3446625657690111
+3,37,0.5078159922215789,1.95,1.3856145288425032,0.0007004239549958493,0.03659113691267998,0.8178748701223942,0,1.0,0.3593866407385962
+3,38,0.5510216846938353,2.0,1.3851325031955581,0.0007004969402866405,0.036331268254224114,0.8287130162278185,0,1.0,0.37007228231278416
+3,39,0.5508477566936262,2.0,1.3852450560119913,0.0007000013443358762,0.036552235158023264,0.8287288515690113,0,1.0,0.36949252231208723
+3,40,0.552509083433898,2.0,1.3850977994863298,0.0006995823504414448,0.03651690856281796,0.8287078304040522,0,1.0,0.3416969447796598
+3,41,0.5414322014937846,2.0,1.3855661891281985,0.0006996874929905283,0.03675631568645296,0.8287743384626893,0,1.0,0.3381073383126151
+3,42,0.5454280255993762,2.0,1.3853240304310355,0.000699494668583406,0.03656812687062956,0.8287399168721409,0,1.0,0.35142675199792067
+3,43,0.5504688839564833,2.0,1.3849530390704656,0.0006993197447993874,0.03651486804886195,0.8286872059555073,0,1.0,0.3348962798549443
+3,44,0.5008637163662257,2.0,1.3852747930798586,0.0006998087251118776,0.03675402853958173,0.8287330176494683,0,1.0,0.3362123878874191
+3,45,0.5428024444833709,1.95,1.3850250665677482,0.0006994389779588628,0.036599674594094606,0.8177867564365081,0,1.0,0.3426748149445695
+3,46,0.5469113625504801,1.95,1.3845905823179128,0.0006993452813771083,0.03658264169995336,0.8177219763820829,0,1.0,0.32303787516826693
+3,47,0.4998557461105516,2.0,1.3847840641154736,0.0006999391888854349,0.03645378152329822,0.82866339203877,0,1.0,0.3328524870351719
+3,48,0.4960834250774321,1.95,1.3845464604706739,0.00069942293519606,0.03656387530081406,0.8177154229570909,0,0.9948111177024961,0.3271965933214455
+3,49,0.5340643391942363,2.0,1.3841216046594331,0.0006988972378994432,0.036560767731344125,0.8285690193151979,0,1.0,0.31354779731412097
+4,0,0.14139891794543563,2.0,1.3862928661589993,0.0007001719671972415,0.0363338218902678,0.8288775721354448,0,0.13277540361233459,0.227629188335006
+4,1,0.20450158065847512,1.95,1.3862895452297124,0.0007001700562619043,0.03673537291350701,0.8179753203905051,0,0.24060522527342046,0.19419830183035647
+4,2,0.2234932335927504,1.95,1.386276035408621,0.0007001973040269888,0.03672760305348685,0.8179733169956959,0,0.31321873372952086,0.19401913366980675
+4,3,0.264054579965666,2.0,1.3862450935555817,0.0007002192609623684,0.036392359704213,0.8288708094014418,0,0.4065599729320915,0.17143530264276471
+4,4,0.2687837225811101,2.0,1.3862488415442484,0.0007001806104260419,0.03672805076501065,0.8288713300657903,0,0.4523416427834937,0.15949021822570886
+4,5,0.3084527749177677,2.0,1.3862420500693688,0.0007002402188468914,0.0367473070001959,0.8288703836462913,0,0.53791242234021,0.17762601993894572
+4,6,0.2817502431436764,2.0,1.386188287122815,0.0007003014226492404,0.03636935004750159,0.8288627749089386,0,0.5568462585746513,0.19670579904605295
+4,7,0.3590511457798984,1.95,1.3862172395583976,0.0007002173042207926,0.036713407793168396,0.817964568499284,0,0.6398668602700452,0.17701467223960107
+4,8,0.34759577858844726,1.95,1.386040045606673,0.0007003232519051249,0.03667123016013557,0.8179382146477251,0,0.666667564140497,0.20309584310749476
+4,9,0.399445014470101,2.0,1.3861594868943634,0.0007003200689791667,0.03646432558369338,0.8288586948687485,0,0.7369905179798134,0.21549602426058542
+4,10,0.44825452251454995,2.0,1.3862005595638092,0.0007001925828634812,0.036701449900923395,0.8288644848613311,0,0.8422137349873102,0.20456342839875288
+4,11,0.4405487174257421,2.0,1.3842110575658255,0.0006989395212069904,0.03668238591694319,0.8285817370585583,1,0.873727965804542,0.23685843701308412
+4,12,0.43630850507286084,2.0,1.386042984343665,0.0007000344154661577,0.03642291235136557,0.8288420870733113,1,0.9082662776502072,0.21000664670925978
+4,13,0.4831927663184678,2.0,1.3862059077126219,0.0007001093710571674,0.03669163947438843,0.8288652198782152,1,0.9325349854925415,0.2339292404048373
+4,14,0.45682325815332386,2.0,1.386052789927029,0.0007000583819878258,0.03676494564778194,0.8288434849170151,1,0.9735899802691476,0.19129088681888262
+4,15,0.5238242650763429,1.95,1.3862943611198844,0.0007001722195526527,0.036447886326105246,0.8179760380796509,1,1.0,0.24608088358780972
+4,16,0.49846318237273585,1.95,1.3861103414221536,0.0007002013358813956,0.036783099182797804,0.8179486462269312,1,1.0,0.2615439412424527
+4,17,0.5487074320113486,1.9,1.3860458827735138,0.000700029510857997,0.036579990118634886,0.8065030519562747,0,1.0,0.329024773371162
+4,18,0.49991231249753043,1.9,1.3843901806372827,0.0006989743063087724,0.036707733191866355,0.8062442090969183,0,1.0,0.33304104165843473
+4,19,0.4978538548866886,1.8499999999999999,1.383878683651736,0.0006985257482271281,0.03657789105196256,0.7941747038652774,0,1.0,0.32617951628896186
+4,20,0.500418620378209,1.9,1.3831584518944184,0.0006979622203021831,0.03664403327810446,0.8060514061992484,0,1.0,0.33472873459402963
+4,21,0.5454126529116329,1.95,1.3824603836572458,0.0006975195974101361,0.03664244726589617,0.8174037045180137,0,1.0,0.31804217637210935
+4,22,0.540406000968799,1.95,1.3828631852455433,0.0006977751315240704,0.03664895611789784,0.8174638931977916,0,1.0,0.301353336562663
+4,23,0.5386037329894852,2.0,1.3828415365807647,0.0006979759712203487,0.03651906747950189,0.8283868569547294,0,1.0,0.2953457766316172
+4,24,0.49147150882164453,2.0,1.3826659263600374,0.0006981753613762693,0.03650087151540894,0.8283619471001122,0,1.0,0.3049050294054817
+4,25,0.5284744268259584,1.95,1.382031524829748,0.000697495583514076,0.03647201840025759,0.8173396793580237,0,1.0,0.29491475608652773
+4,26,0.5310253294469205,1.95,1.3819900786111163,0.0006979492409159704,0.036356068089530486,0.8173336270031156,0,1.0,0.3034177648230681
+4,27,0.536061164662879,2.0,1.3818017584061888,0.0006983743409324286,0.03653972641068169,0.8282391028023224,0,1.0,0.2868705488762633
+4,28,0.5236701369447626,2.0,1.3816655937402362,0.000698955472466391,0.03652877027750788,0.8282198966320973,0,1.0,0.27890045648254197
+4,29,0.5145617055169217,2.0,1.3813751535881114,0.0006994982114310273,0.03663594689425949,0.8281787257410612,0,1.0,0.31520568505640556
+4,30,0.5336566765358133,2.0,1.3831718134044961,0.0006995127188483254,0.036477499933966234,0.8284342415393102,0,1.0,0.3121889217860441
+4,31,0.5157588969254209,2.0,1.3828102663941606,0.0006998733216064105,0.03651567109934356,0.8283829509474872,0,1.0,0.31919632308473633
+4,32,0.5282098777804103,2.0,1.384180034902442,0.000699826915544088,0.03672855285169094,0.8285775828247681,0,1.0,0.2940329259347008
+4,33,0.49265361826158666,2.0,1.3837731500204553,0.0007000385374326674,0.03653664709734849,0.8285198426150571,0,1.0,0.3088453942052887
+4,34,0.5363063411294967,1.95,1.3834502061635956,0.0006993062256829749,0.036523762462555634,0.8175519269438691,0,1.0,0.28768780376498887
+4,35,0.5251906389703781,1.95,1.3833425297732846,0.0006999325256541397,0.03648965471912762,0.8175360521524834,0,1.0,0.2839687965679268
+4,36,0.5281422485570484,2.0,1.382907957593617,0.0007002388813385329,0.03666032647351406,0.8283969426685543,0,1.0,0.26047416185682765
+4,37,0.48362704193658895,2.0,1.3828143813404963,0.0007009705757563707,0.03648030522023707,0.82838384792696,0,1.0,0.2787568064552965
+4,38,0.5249491621708796,1.95,1.3825317772689876,0.0007000934377879328,0.03670289869647246,0.817415128402537,0,1.0,0.2831638739029321
+4,39,0.4871472368750198,1.95,1.3819841976027119,0.0007004692627186709,0.036653326228309045,0.8173335014475681,0,1.0,0.2904907895833993
+4,40,0.5267601810995542,1.9,1.3816033016257272,0.00069950559523307,0.03655303685422127,0.805808652910326,0,1.0,0.25586727033184736
+4,41,0.47687972774168236,1.9,1.3812968899254998,0.0007002882122338223,0.03665976355680932,0.8057609457626598,0,1.0,0.25626575913894106
+4,42,0.4787379779912998,1.8499999999999999,1.3808844676792504,0.0006993190251803582,0.03625899570215259,0.7936850942735908,0,1.0,0.2624599266376659
+4,43,0.5179050169774979,1.9,1.380209228885417,0.0006983391610007294,0.03652832239850106,0.8055900485538418,0,1.0,0.259683389924993
+4,44,0.47734680801553847,1.9,1.3799019532786514,0.0006988573876351724,0.03649672561609853,0.8055420825054199,0,1.0,0.25782269338512814
+4,45,0.5210048717817364,1.8499999999999999,1.3793187380804852,0.0006978480096333358,0.03652388401242515,0.7934281074202967,0,1.0,0.2700162392724545
+4,46,0.5192143889995927,1.8499999999999999,1.378559749072814,0.0006982352910548757,0.03627605398281937,0.7933038084656487,0,1.0,0.2640479633319757
+4,47,0.47787373846192327,1.9,1.3778732099397015,0.000698563677254858,0.036511834392817376,0.8052240028303549,0,1.0,0.2595791282064109
+4,48,0.5232781851903918,1.8499999999999999,1.377445047192641,0.0006974408963375818,0.036275950260087585,0.7931207071435565,0,1.0,0.24426061730130602
+4,49,0.4708335683571624,1.8499999999999999,1.377272056203624,0.0006986762044175043,0.03648431396206499,0.7930927267194908,0,1.0,0.2361118945238746
+5,0,0.19479445907257142,1.7999999999999998,1.3862827929860493,0.0007001716840058076,0.03634355836604481,0.7820551368981143,1,0.1626881527389123,0.2657306599233551
+5,1,0.236078810212491,1.7499999999999998,1.3862593780628236,0.0007001789534732532,0.03676513486460587,0.7689975977765632,1,0.2147379387181846,0.33394544908405727
+5,2,0.2221197177534656,1.7499999999999998,1.386103696349195,0.0007000707392681892,0.036621878365991206,0.7689699028236625,1,0.2460815127977029,0.3456237087812814
+5,3,0.2406730755531066,1.7999999999999998,1.3860178316304639,0.000700045823228657,0.036604385065275455,0.7820099293002927,1,0.2872509047808617,0.3525757121358731
+5,4,0.3056169429840926,1.8499999999999999,1.3859049602143259,0.0007000300300698532,0.03677332034753995,0.7945062153213642,1,0.3352781052076004,0.40501900300350824
+5,5,0.34763369898223967,1.8499999999999999,1.3862422316284706,0.000700138122019356,0.036557602964666785,0.7945613101251126,1,0.3926622012449277,0.4685627282808955
+5,6,0.33161497194646283,1.8499999999999999,1.3862536282544111,0.000700155271174134,0.036650902830009276,0.7945631760301418,1,0.42274217127915853,0.47506034478266457
+5,7,0.3327166440437883,1.9,1.386078361823006,0.0007004693763732303,0.036775306963019096,0.8065082577368688,1,0.4687749808696683,0.4506888389864032
+5,8,0.3899775071109916,1.95,1.3859643340399328,0.0007005777185255599,0.03657645731190186,0.8179270155578608,1,0.523499337657994,0.4685925734926467
+5,9,0.38062322093446854,1.95,1.3858488194257208,0.000700785385943395,0.0364982736221972,0.8179098740682244,1,0.5319576233950107,0.49280057192154736
+5,10,0.3899485210196758,2.0,1.3859797839915458,0.000700526593543347,0.03677955239468085,0.8288332607522547,1,0.5482370565165289,0.5021789947102141
+5,11,0.45326382088495115,2.0,1.3860039494995655,0.0007002908104713585,0.036755322189521836,0.8288366221544795,1,0.5913344223832582,0.5557668397721597
+5,12,0.4351803667416895,2.0,1.386218034052082,0.0007002298135882258,0.036416899765461135,0.828866974133028,2,0.6215389812399748,0.555215914152332
+5,13,0.40934565916761345,2.0,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8288777842514964,2,0.6407214617449136,0.51019024823216
+5,14,0.4824871336019146,1.95,1.386255118383679,0.000700170995926118,0.03676775834370116,0.8179701947427345,2,0.6678111763147413,0.55120887692006
+5,15,0.5129233841906469,1.95,1.3862233916517896,0.0007001258919048167,0.03655189421103734,0.8179654573129593,2,0.7141224672061868,0.590914657693907
+5,16,0.5078492603924003,1.95,1.3860643193073818,0.0007000730194180472,0.036778350740385844,0.8179417548193,2,0.741199638079988,0.6045646838680169
+5,17,0.475711709387744,2.0,1.3862943611198846,0.0007001722195526523,0.036593325623223386,0.8288777842514964,2,0.771149676777222,0.5575061289228507
+5,18,0.5571723369276427,1.95,1.3861256589743967,0.0007000551466678936,0.03646221182886737,0.8179508835947175,2,0.8186156253369867,0.5990869559761599
+5,19,0.5062047701436432,1.95,1.3862943611198844,0.0007001722195526525,0.036787772382363006,0.8179760380796509,2,0.8422922352404796,0.5642929201581709
+5,20,0.5526534401395979,1.9,1.3862327164338395,0.0007001716767306605,0.0365614619847633,0.8065322511443066,2,0.8746385302772322,0.5759934267623501
+5,21,0.6399342572613465,1.9,1.3861917462870177,0.0007003102095021222,0.036787945071792685,0.80652590139894,2,0.9363987393348048,0.6179158717580818
+5,22,0.5552824990237092,1.9,1.3807369131589422,0.00069826955431255,0.03652904082335629,0.8056726565575377,2,0.961463587242797,0.5689902137553011
+5,23,0.600150437432104,1.8499999999999999,1.3860595362419224,0.0007000069778898201,0.036620131238633315,0.7945314436693927,2,0.9845374902709387,0.5877848044124282
+5,24,0.6636688697031929,1.8499999999999999,1.38593569540814,0.00069998365346456,0.036502082846851,0.7945112181476552,2,1.0,0.6122295656773099
+5,25,0.6699620430052261,1.8499999999999999,1.3807310520111553,0.0006977768275332389,0.036501785273931754,0.7936594663566242,1,1.0,0.6332068100174206
+5,26,0.6127704672509049,1.9,1.3846647220684063,0.0006992272146639334,0.03669452075549712,0.8062871718418301,1,1.0,0.642568224169683
+5,27,0.6608355787680839,1.8499999999999999,1.3844423579308445,0.00069941801923,0.03670046694066511,0.7942671190922331,1,1.0,0.7027852625602794
+5,28,0.6335259219652243,1.8499999999999999,1.384296206754487,0.000699903521269658,0.036709422810007504,0.7942433946422579,1,1.0,0.7117530732174142
+5,29,0.6389371947050494,1.7999999999999998,1.383904425347218,0.000700289454534687,0.036609987945755075,0.7816495245319556,1,1.0,0.7297906490168311
+5,30,0.6746193529477889,1.8499999999999999,1.3832257356641149,0.0007006361460938911,0.03671416142304052,0.7940686418746722,1,1.0,0.7820645098259629
+5,31,0.6572478695285171,1.8499999999999999,1.3828954886026934,0.0006994490499183069,0.0366751405254751,0.7940142451183198,1,1.0,0.7908262317617236
+5,32,0.6610416448185925,1.9,1.38215288552025,0.0006996860597871623,0.03645902742880109,0.8058946943911187,1,1.0,0.8034721493953083
+5,33,0.7091644416633369,1.95,1.3847529043517084,0.0007020220561619658,0.03667427924215126,0.8177469675567305,1,1.0,0.8638814722111231
+5,34,0.6796373716563897,1.95,1.3843082271174632,0.0007028030417658708,0.0367607261851283,0.8176809177486322,1,1.0,0.865457905521299
+5,35,0.708907156955332,1.9,1.3836767650091937,0.0007035482142673594,0.03643502672595702,0.8061341685349908,1,1.0,0.8963571898511068
+5,36,0.7404555273233684,1.9,1.3841216807237755,0.0007023151861223211,0.036527881512510754,0.8062033060296185,1,1.0,0.9681850910778946
+5,37,0.7120468859551119,1.9,1.3835295421842382,0.0007032582563429947,0.03657482420712764,0.8061110686009689,1,1.0,0.9734896198503727
+5,38,0.74,1.8499999999999999,1.382809708459316,0.000704177416506812,0.036772062957203706,0.7940017617152403,1,1.0,1.0
+5,39,0.6997253599361122,1.8499999999999999,1.3830512840043923,0.0007026245717491719,0.0367592794746389,0.7940407638170224,1,1.0,0.9657511997870404
+5,40,0.75,1.7999999999999998,1.3845435758519922,0.0007018305097353751,0.036548588619472674,0.781759116822,1,1.0,1.0
+5,41,0.7026258162640042,1.7999999999999998,1.3839285583741556,0.0007027477059661886,0.036674172179032995,0.7816544824776317,1,1.0,0.9754193875466804
+5,42,0.75,1.7499999999999998,1.3849885773536967,0.00070187819563209,0.03659844951985987,0.7687723793216071,1,1.0,1.0
+5,43,0.75,1.7499999999999998,1.3842089076436066,0.0007025343568919931,0.03650116663259984,0.7686339884718643,1,1.0,1.0
+5,44,0.75,1.7999999999999998,1.383140047603681,0.0007030718154429593,0.036763311925617416,0.7815199875449533,1,1.0,1.0
+5,45,0.74,1.8499999999999999,1.3818584160992293,0.0007034695286533138,0.03665083998208764,0.7938458903011585,1,1.0,1.0
+5,46,0.7050066362648927,1.9,1.3827155163809246,0.0007017805973071441,0.03632983247569558,0.8059833457737346,1,1.0,0.9833554542163089
+5,47,0.7179962867022243,1.8499999999999999,1.383978447940881,0.000700890421202244,0.036595060209104406,0.7941917839997705,1,1.0,0.9933209556740809
+5,48,0.74,1.9,1.3839370030680933,0.000702378928518169,0.03664679848851686,0.8061744703672472,1,1.0,1.0
+5,49,0.7197756255143303,1.9,1.3844286408261195,0.0007011955796467828,0.0367668198499041,0.8062509110375697,1,1.0,0.9992520850477675
+6,0,0.1091574195244549,1.8499999999999999,1.3862740183455984,0.0007001609302773419,0.036342948096725905,0.7945665061839087,0,0.1070014683940082,0.2211894405561721
+6,1,0.16943261461320566,1.7999999999999998,1.3862791636001925,0.0007001624076119458,0.036757606426871155,0.7820545151249381,1,0.16123271228913846,0.21646509899183428
+6,2,0.04348379036960209,1.7999999999999998,1.3861799907301808,0.0007001836800318997,0.03664829871702946,0.7820376183594098,1,0.19548272547648804,0.1843023339300229
+6,3,0.19298905849087133,1.7499999999999998,1.3862884118338754,0.0007001702500533057,0.036571007353944654,0.7690027522117534,1,0.2286505385433226,0.2050961435784743
+6,4,0.2078944028727455,1.7499999999999998,1.3859498905505054,0.0007001698536235439,0.03676520147020587,0.7689426125139537,1,0.25252784219222385,0.22294421998618644
+6,5,0.19995788390316846,1.7999999999999998,1.3859213193765316,0.0007000528126714994,0.036404327628827025,0.7819934787531041,1,0.27539739756323306,0.23266308292625082
+6,6,0.23582125906171608,1.8499999999999999,1.385828300236287,0.0007000442150428924,0.036710990669526794,0.7944937036960442,1,0.2939353070845089,0.2608237874263751
+6,7,0.22262030345707826,1.8499999999999999,1.3857794612761405,0.0006999216825961519,0.036759350298414595,0.794485689461676,1,0.3046713687488426,0.2691725198584707
+6,8,0.24375802107636543,1.9,1.3856557967002505,0.0006998919282723312,0.03639231485127542,0.8064421265012591,0,0.3313640414125137,0.3040413483711998
+6,9,0.2560069651890128,1.9,1.3862943611198846,0.0007001722195526524,0.0366359785673994,0.8065418700441696,0,0.3586521862709988,0.3084869689353774
+6,10,0.32380437522984756,1.95,1.3862782530220563,0.0007001725891500446,0.036780268826242093,0.8179736398227804,0,0.46372532562669266,0.29438081659723514
+6,11,0.3164701819188105,1.95,1.3862943611198846,0.0007001722195526527,0.036654967538210355,0.8179760380796509,0,0.4967167821615589,0.3259448968472896
+6,12,0.29807440235177773,2.0,1.386270342811823,0.0007001717994307096,0.03651899116452455,0.8288743773629275,0,0.4997088333345718,0.32730289672649676
+6,13,0.3227689396580516,2.0,1.3862617467413634,0.0007002171177801551,0.036699727142833295,0.828873170934846,0,0.500427931608888,0.3419925567149879
+6,14,0.3641799520234124,2.0,1.3862056366970275,0.0007002616846096157,0.03676499253132464,0.8288652246459295,0,0.5658345117335091,0.32615382443336266
+6,15,0.4073459667185641,2.0,1.3862284189996537,0.0007001746842568261,0.036440681864450465,0.8288684315569005,0,0.6580684255329523,0.3137286550179439
+6,16,0.4235177424241639,2.0,1.3862069991364112,0.0007001340070445747,0.03668613398187745,0.8288653816831876,0,0.72524497423534,0.31139917576675985
+6,17,0.4103122492153116,2.0,1.386217969783375,0.0007002350370990277,0.03676996689306236,0.8288669664986095,0,0.7297859282316792,0.32799292640879985
+6,18,0.46828468536724155,2.0,1.3862777939557704,0.0007001836553810909,0.036464781447401666,0.8288754376061626,0,0.8261690458594135,0.29272355674492045
+6,19,0.42581996481634365,2.0,1.3786358751670191,0.0007004751632931904,0.036477619219007364,0.8277888579680149,0,0.8395359149218486,0.30001866282534717
+6,20,0.48991599470742603,1.95,1.3781921795283898,0.0006993426919203613,0.03657066135516708,0.8167663366322029,0,0.9021291634665778,0.2968810977359829
+6,21,0.5079274209172208,1.95,1.3773663558934712,0.0006997851718569413,0.03641362706481825,0.8166428447994654,0,0.9529273799830483,0.2891882297466713
+6,22,0.4726724621306393,2.0,1.3765817172603794,0.0007001879890133805,0.03649924584199073,0.827495749400623,1,0.9578567793101328,0.29843250135528726
+6,23,0.4971412227769409,1.95,1.3861809998042562,0.0007001748062758931,0.036777882446416145,0.8179591597348157,1,1.0,0.2904707425898028
+6,24,0.528170387935034,1.95,1.386288171361587,0.0007001714746061075,0.036653670229498184,0.8179751162552208,1,1.0,0.2939012931167798
+6,25,0.5526847680175303,1.95,1.3862127497610766,0.0007001390715497943,0.036776333709999255,0.8179638766765667,1,1.0,0.34228256005843405
+6,26,0.5048927772158751,1.95,1.3861418929717926,0.0007000703015662905,0.03647044918155668,0.8179533054552167,1,1.0,0.31630925738625043
+6,27,0.5386631916335589,1.9,1.3862002313376882,0.0007001324789089064,0.03668001693076149,0.8065271699521387,1,1.0,0.3288773054451961
+6,28,0.5623885674582592,1.9,1.3860777619789422,0.0007001654679599189,0.036370519973259074,0.8065080692780711,1,1.0,0.3746285581941968
+6,29,0.5845584826452842,1.9,1.3859411489030145,0.0006999437193860425,0.03672807279653581,0.8064866803171147,1,1.0,0.4485282754842806
+6,30,0.5611101883804143,1.9,1.384154243567271,0.0006994442247615928,0.03663391710290461,0.8062074964834035,1,1.0,0.47036729460138077
+6,31,0.5429080187249429,1.8499999999999999,1.3838546310728161,0.0006997531200629691,0.03647871217030254,0.7941711734338378,1,1.0,0.44302672908314294
+6,32,0.5790386817632979,1.9,1.384913131429062,0.0006997991246594957,0.03652568146452666,0.8063261461168265,1,1.0,0.463462272544326
+6,33,0.5399065043987986,1.9,1.384564760692812,0.0006992327426387797,0.03659417576520089,0.8062715603065665,1,1.0,0.4330216813293285
+6,34,0.530802263033064,1.8499999999999999,1.385373662142707,0.0006995615926465082,0.03651545387538974,0.7944193057824381,1,1.0,0.4026742101102132
+6,35,0.5418091941050032,1.9,1.3858112328844443,0.0006998554780939441,0.03643179841857298,0.8064663765023977,1,1.0,0.40603064701667696
+6,36,0.5465700601867791,1.95,1.3856373355872942,0.0006997250995132591,0.036558079946200715,0.8178780590954633,1,1.0,0.42190020062259714
+6,37,0.5770999174512247,2.0,1.3853345228193756,0.0006995840187034451,0.036690066419257775,0.8287414314151457,1,1.0,0.45699972483741536
+6,38,0.5395526369795366,2.0,1.3850522633157918,0.0006993151066384574,0.03675550678992586,0.8287012905215465,1,1.0,0.4318421232651219
+6,39,0.5782682482187551,1.95,1.385432933084026,0.0006996288056303785,0.03656909653991504,0.8178475819504659,1,1.0,0.4608941607291835
+6,40,0.5403545869628748,1.95,1.3850176980104316,0.0006995127980404192,0.03665065153797474,0.8177856804337835,1,1.0,0.4345152898762491
+6,41,0.5797944794320956,1.9,1.3852203962542067,0.0007000537594390563,0.03641979225598801,0.8063742049091586,1,1.0,0.4659815981069852
+6,42,0.5899344487776359,1.9,1.3846872825626875,0.0007001099183302918,0.036453357799942986,0.8062909712315387,0,1.0,0.4997814959254526
+6,43,0.5932041567870963,1.95,1.3862943611198846,0.0007001722195526526,0.0367411197041468,0.8179760380796509,0,1.0,0.510680522623654
+6,44,0.595516497488339,2.0,1.386209585067098,0.0007001710473835288,0.03647731797253908,0.8288657589989811,0,1.0,0.5183883249611297
+6,45,0.6026631438255412,2.0,1.385959567215085,0.0007001631390559241,0.036626954160400085,0.8288302894786459,0,1.0,0.508877146085137
+6,46,0.5977355451950481,2.0,1.3859744954815088,0.0007005386199851384,0.03655261269267224,0.8288325138893397,0,1.0,0.49245181731682686
+6,47,0.5872199431571938,2.0,1.385780871577745,0.000700869765584986,0.0367871995269961,0.8288051368469719,0,1.0,0.49073314385731254
+6,48,0.576627207866257,2.0,1.3854867486631735,0.0007012216783122732,0.03661859532088311,0.8287635004225891,0,1.0,0.5220906928875232
+6,49,0.5609765391613862,2.0,1.3857315793284999,0.0007007148732256164,0.03649334259962077,0.8287980988393678,0,1.0,0.5365884638712874
+7,0,0.105015737615397,2.0,1.386288228632041,0.0007001799742349331,0.036332453169537635,0.8288769166211752,0,0.09907321342017694,0.2179548408244207
+7,1,0.18828650505992067,1.95,1.3862903934376163,0.0007001731819282968,0.03673412635029168,0.8179754476123552,0,0.18280838209326639,0.21721050740871378
+7,2,0.203074848374209,1.95,1.3862747652269374,0.0007001777505480927,0.036726404019569954,0.8179731220517407,0,0.24757472662366733,0.21348319241580682
+7,3,0.22935393233089188,2.0,1.3862669855245073,0.0007001545269853262,0.03638440931789878,0.8288738962593347,0,0.31387967460462785,0.21267354163013572
+7,4,0.26659025063021574,2.0,1.3862752450144296,0.0007001758984976185,0.036726917291694965,0.828875073861116,0,0.41481241301156024,0.16888428475197212
+7,5,0.24247248730460438,2.0,1.3861599633561905,0.0007002999180622618,0.03674464344630761,0.8288587567388891,0,0.4307678460317499,0.16721782963968151
+7,6,0.28587003350567064,1.95,1.3862334568707706,0.0007002453804827247,0.03637313927639644,0.8179669915817988,0,0.48791269323975883,0.1690165206992236
+7,7,0.2516071329479353,1.95,1.3861862394586302,0.0007003152483861846,0.03676728529465949,0.81795998175246,0,0.49112803108105435,0.18385306838504517
+7,8,0.2922399074783243,1.9,1.3862149360633924,0.0007002315498152874,0.036684509367770256,0.8065294954012681,0,0.5248547738352042,0.20765999314747527
+7,9,0.3580348013564287,1.9,1.3862773350357622,0.0007001595615190295,0.036634745886290634,0.8065392094647919,0,0.6214926416302337,0.19812581568111737
+7,10,0.32313976134448474,1.9,1.3858529389185272,0.0007003651519419035,0.036776885905642105,0.8064730449226026,0,0.6473594644244383,0.2139865852490313
+7,11,0.4092341090637811,1.8499999999999999,1.3855188230779716,0.0007002386984917916,0.0364279023504429,0.7944432332044044,0,0.7458540140316977,0.23630834483700686
+7,12,0.41273442290508505,1.8499999999999999,1.3855603079103365,0.0007007230208436258,0.036770320760408995,0.7944501659056536,0,0.7850901043944806,0.2623279371576425
+7,13,0.4328110274349606,1.9,1.3856990332756174,0.0007003852382120102,0.036611762510943,0.8064490293487936,0,0.816623227375702,0.2872057882822657
+7,14,0.49870548802524634,1.9,1.376739101539603,0.0007015830569802178,0.03638413376986581,0.8050470173767121,0,0.9188109259922184,0.2706037254278633
+7,15,0.5268161850734983,1.9,1.3765503417085376,0.0007032624211220375,0.036555755628304695,0.8050179177107487,0,1.0,0.2560539502449941
+7,16,0.5204973078610995,1.9,1.3761260157393158,0.0007048345631377988,0.03648926340621418,0.8049517988261033,0,1.0,0.26832435953699807
+7,17,0.5208264971275453,1.95,1.375251478534219,0.0007056395730281324,0.03648155515311004,0.8163277122523316,0,1.0,0.23608832375848393
+7,18,0.47060569976321465,2.0,1.3749602831977505,0.0007070937438435948,0.0364311416757551,0.8272661460186743,0,0.9996283024005418,0.23584792934332635
+7,19,0.516171007291086,1.95,1.3750540479877869,0.0007049733206273605,0.03644195392329288,0.8162979084869609,0,1.0,0.22057002430362005
+7,20,0.49260232383125474,1.95,1.3741774308264065,0.0007064271075667033,0.03642731878984551,0.8161668546038998,0,1.0,0.2420077461041824
+7,21,0.4990980709470507,1.9,1.3776470656891435,0.0007050089844730364,0.036548310903278036,0.8051905543138287,0,1.0,0.263660236490169
+7,22,0.5255821024035107,1.95,1.380178398640635,0.0007039823653605754,0.036425189920836536,0.8170647923567423,0,1.0,0.25194034134503523
+7,23,0.48087680995173343,1.95,1.3797559525237386,0.0007047518586505109,0.03644715064335749,0.8170018710064916,1,0.9980441534749626,0.2721971618724947
+7,24,0.5325727144247182,1.9,1.3856172846143535,0.0006997096003737763,0.03662626280047355,0.8064360580330485,1,1.0,0.3085757147490605
+7,25,0.5406786250045592,1.9,1.3854243520974598,0.0006995866000964474,0.03643941826089879,0.8064059016720815,1,1.0,0.335595416681864
+7,26,0.5012178877158077,1.95,1.3850973582333281,0.0006994559461028665,0.03665967061934476,0.8177975335408243,1,1.0,0.3040596257193589
+7,27,0.5621029474770729,1.9,1.385320163936441,0.0006999012452355206,0.036668020250532694,0.8063897340221247,1,1.0,0.3736764915902428
+7,28,0.559162819667612,1.9,1.3849871660262827,0.0006994199590835854,0.03646404313276018,0.8063375889961956,1,1.0,0.39720939889204004
+7,29,0.5862617589848558,1.95,1.3846090557853628,0.0006994063046987921,0.036674726240455105,0.817724748078141,1,1.0,0.4542058632828523
+7,30,0.5354238499915828,1.95,1.3847141465718045,0.0007001100106900265,0.036651866834332726,0.8177406212023434,1,1.0,0.4180794999719424
+7,31,0.5246561728941171,1.9,1.38474326118966,0.0007008422123904918,0.03675000016386791,0.8062999428905414,1,1.0,0.38218724298039036
+7,32,0.5386273383343091,1.95,1.384048066045173,0.0006987342645964117,0.036713795784693845,0.8176409166928926,1,1.0,0.39542446111436347
+7,33,0.5195842470580333,2.0,1.3849073036803303,0.0006991936561474873,0.03667404353874555,0.8286806772446591,1,1.0,0.3652808235267776
+7,34,0.5303645866431853,2.0,1.3852191991026963,0.0006995022771746692,0.03657988150089705,0.8287250398018469,1,1.0,0.3678819554772843
+7,35,0.5356491338609659,2.0,1.3857224751400163,0.0006997678509231809,0.03676579244438976,0.8287965382745226,1,1.0,0.3854971128698861
+7,36,0.5819644607299483,2.0,1.3859543930228015,0.0007000469518534602,0.036579278973122145,0.828829522444202,1,1.0,0.4398815357664942
+7,37,0.5985762899468743,2.0,1.3846435560057189,0.0007013446640585768,0.0365383216030177,0.8286438408596999,1,1.0,0.495254299822914
+7,38,0.5748229477965053,2.0,1.385466269439073,0.0007009337283476303,0.036784149930551006,0.8287605123732263,1,1.0,0.5160764926550175
+7,39,0.6077163056670271,1.95,1.3854724682893098,0.0007003723062223815,0.036592916542192835,0.8178536930684462,1,1.0,0.5590543522234234
+7,40,0.5890554438725755,1.95,1.38504225551925,0.0007005838056654398,0.036666306506586685,0.8177896589564838,1,1.0,0.563518146241918
+7,41,0.5893358258957445,2.0,1.384890551891323,0.0006999345222635364,0.03644289647811198,0.8286785093588989,1,1.0,0.5644527529858149
+7,42,0.6188519791131003,2.0,1.3845904504966937,0.0006993469856684008,0.036539752488405866,0.8286357327714116,1,1.0,0.5961732637103342
+7,43,0.6068371649015425,2.0,1.3841320808989752,0.0006993972723171667,0.03648755968588152,0.8285706494314309,1,1.0,0.6227905496718081
+7,44,0.6051019906922376,2.0,1.3818196108481489,0.0006998222835349276,0.03668040527928908,0.8282420544203909,1,1.0,0.6170066356407917
+7,45,0.5883151778871284,2.0,1.3808437867055146,0.0006999712696242258,0.03648829232545006,0.8281032344036424,1,1.0,0.594383926290428
+7,46,0.597795196957006,2.0,1.3836631073982701,0.0006986940755150836,0.036443944673336094,0.8285038257198477,1,1.0,0.5926506565233534
+7,47,0.582838617888924,2.0,1.383048509242744,0.0006980559413024717,0.03665799200679269,0.8284163013517638,1,1.0,0.5761287262964133
+7,48,0.6362387764556746,2.0,1.3832979657152347,0.0006985979806183788,0.03651527098120801,0.8284519109402291,1,1.0,0.620795921518915
+7,49,0.6536155578430773,2.0,1.3825861073226242,0.0006996031653381833,0.036476769374747864,0.8283510042838695,1,1.0,0.678718526143591
+8,0,0.08011148170943286,2.0,1.3862688121570625,0.0007002033959215904,0.03633648909855731,0.828874169215636,1,0.19390529155835573,0.17516455028696848
+8,1,0.15698767245711923,1.95,1.386267605810853,0.0007001925024826125,0.036732306671126855,0.8179720604546465,1,0.20500589581164402,0.18328438044153872
+8,2,0.15850744357763624,1.95,1.3862264478744823,0.000700143088611988,0.03672090583574894,0.8179659174989652,1,0.25217633349093255,0.1587897006042107
+8,3,0.1563315870768981,2.0,1.3862157256805436,0.0007001229238683875,0.03638027055504615,0.828866616374409,1,0.2752255633106646,0.12080453917544082
+8,4,0.2335721361212973,2.0,1.3861936731204727,0.0007001009880653185,0.03672197321087991,0.8288634820446428,1,0.32775175554049274,0.17490477968366738
+8,5,0.2197063620430218,2.0,1.3861402716590574,0.0007000718176038741,0.036744863376612355,0.828855898701968,1,0.3589468256207146,0.18709210598245316
+8,6,0.28734157366756347,2.0,1.3861833141713005,0.0007001400811249897,0.036384081149931545,0.8288620237257055,1,0.3995542957410875,0.2583995179037616
+8,7,0.25609675041279595,2.0,1.385693845540661,0.0006999206373855948,0.036709184824039856,0.8287925192606455,1,0.3896042679424402,0.26751681078606615
+8,8,0.254885016467764,1.95,1.385530471351075,0.0006998852365819669,0.036728852238474635,0.8178621884577024,1,0.4373848417541201,0.23310359922038662
+8,9,0.30129169881299595,2.0,1.3858891274343392,0.0007003334529367475,0.03648779501818475,0.828820344237657,1,0.45435435394174817,0.2651665241209889
+8,10,0.2915879649184478,2.0,1.3858715862274724,0.0007005364912081773,0.03671168044628744,0.8288179131399693,0,0.46420128650188663,0.2863581677256437
+8,11,0.3378165273537744,2.0,1.3862215148516632,0.0007001502597269603,0.036759735919490485,0.8288674453029218,0,0.530567026013089,0.28529905649512927
+8,12,0.3066303551930203,2.0,1.3862254005309276,0.0007002299616559523,0.03641780491538757,0.8288680190818419,0,0.5509189059206708,0.28754264274917307
+8,13,0.3764943262414689,1.95,1.3862755218966427,0.0007001907928016095,0.03669418925233968,0.8179732385984079,0,0.6200309565415852,0.2949398120827827
+8,14,0.3421486402719642,1.95,1.3852820147951912,0.0006994790735902689,0.03659056385619971,0.8178250535182996,0,0.6206523966584051,0.31295893869534036
+8,15,0.34871687070744917,1.9,1.3856375392465365,0.0006997238142272739,0.03652756868541106,0.8064392241369998,0,0.6228392155034236,0.33193728168693243
+8,16,0.35167502588950816,1.95,1.3858237813379883,0.000699936461903397,0.03669524736602472,0.8179058921629109,0,0.6186466954859461,0.34738782565043236
+8,17,0.3545711849268347,2.0,1.3859084182873387,0.0007001439637717822,0.03659033722575728,0.8288230273844411,0,0.6211294389192664,0.3537313645304271
+8,18,0.42009924162651796,2.0,1.3858948047323991,0.0007003314841586507,0.03647775147325771,0.8288211491565517,0,0.6799555337052124,0.3603900938147766
+8,19,0.41590485245142184,2.0,1.3861503631083507,0.0007002534104623983,0.03667637905362754,0.828857381726551,0,0.700498419022209,0.3856849494751275
+8,20,0.4589589485962123,2.0,1.3860018996988634,0.0007003224075874208,0.036772583384963524,0.8288363403214364,0,0.7576742409228696,0.3862975074235482
+8,21,0.5078437435247081,2.0,1.3861524825676241,0.0007001962679747893,0.036476295249999235,0.8288576661659972,0,0.8637858398133538,0.37443135866455507
+8,22,0.4650820035847896,2.0,1.3798733285197335,0.0007054301017725289,0.03663460906279912,0.8279666024676187,0,0.8658062022519776,0.3958650756133287
+8,23,0.5474799036693788,1.95,1.3798979323119736,0.0007039533439775487,0.03668390975407813,0.8170228586726116,0,0.9652909703996255,0.37121171836509537
+8,24,0.5492883772158375,1.95,1.379056443670595,0.0007048491223943072,0.03650396664073194,0.8168972934729914,0,1.0,0.36429459071945786
+8,25,0.5517483853329482,2.0,1.3784489931535613,0.0007060420512110452,0.03669016272813057,0.8277638028287778,0,1.0,0.37249461777649395
+8,26,0.5552437409204887,2.0,1.377930401837489,0.0007069220949086532,0.0367111247708657,0.8276901052581329,0,1.0,0.38414580306829543
+8,27,0.5252281930942556,2.0,1.37708846623249,0.0007078614586929477,0.0365107506610303,0.8275702640399478,0,1.0,0.4174273103141853
+8,28,0.5744627703575247,1.95,1.3859948093727197,0.0007005104719777378,0.03664389418979397,0.8179315339453278,0,1.0,0.4148759011917489
+8,29,0.5651885996021413,1.95,1.3858000422105603,0.0007008292326229245,0.036409539003659286,0.8179026224642391,0,1.0,0.41729533200713764
+8,30,0.5500928222118123,2.0,1.3855237181047526,0.0007011657227912547,0.03668637245830895,0.8287687309794657,0,1.0,0.43364274070604086
+8,31,0.5705497041565395,2.0,1.3857271457105733,0.0007006587600326124,0.03659655569849927,0.8287974538203253,0,1.0,0.43516568052179816
+8,32,0.5714758257198038,2.0,1.3853693140366874,0.0007008821233749525,0.036776785818650085,0.8287467377126687,0,1.0,0.4382527523993459
+8,33,0.5751746595204331,2.0,1.3848492687585867,0.0007010870861065099,0.036569329503701856,0.8286729755635756,0,1.0,0.4505821984014434
+8,34,0.5718873278271799,2.0,1.384158908046063,0.0007012713430237168,0.03660890786751123,0.828574992342394,1,1.0,0.43962442609059926
+8,35,0.5844803126896293,2.0,1.38457607458265,0.0006990562854828186,0.03672332216612413,0.8286336088439356,1,1.0,0.4816010422987641
+8,36,0.6172458224935478,2.0,1.3842302813882617,0.0006990315153185555,0.03648718864151157,0.8285844936107754,0,1.0,0.5574860749784922
+8,37,0.5874369774184423,2.0,1.3826565426792221,0.0007014702107236206,0.0364788566152041,0.8283615498557517,0,1.0,0.5581232580614742
+8,38,0.6063714917827918,1.95,1.3829883398383305,0.0007004116593408902,0.036704281468588576,0.8174833543721766,0,1.0,0.5212383059426393
+8,39,0.5926551688038413,2.0,1.3830649823710623,0.0007019301424532813,0.03673728184794407,0.8284197442389363,0,1.0,0.5088505626794709
+8,40,0.5919700045331107,2.0,1.382164606342152,0.0007021182542613356,0.03655268266860946,0.8282917800274467,0,1.0,0.5065666817770355
+8,41,0.5916758216945788,2.0,1.380998549834894,0.000702328145456918,0.03671944945462533,0.8281259344735507,0,1.0,0.4722527389819291
+8,42,0.5423799719687374,2.0,1.380982098468422,0.0007043266662876418,0.03650710225483343,0.828124161800271,0,1.0,0.4745999065624582
+8,43,0.586356147055687,1.95,1.3824700689550853,0.0007030811435237941,0.03646618765410648,0.8174068102514377,0,1.0,0.48785382351895634
+8,44,0.584937627325571,1.95,1.3812126693430884,0.000703435178280775,0.03655305991496906,0.8172191705517072,0,1.0,0.48312542441856965
+8,45,0.5417792788635231,2.0,1.3798671856909737,0.0007036491249997712,0.03669760478693664,0.8279652201343329,1,1.0,0.4725975962117434
+8,46,0.595171564459599,1.95,1.3848769182797467,0.0006992498394723024,0.03648285352420376,0.817764623214128,1,1.0,0.517238548198663
+8,47,0.5977920702058441,1.95,1.3843829409328108,0.0006990927941980934,0.03644105694140661,0.8176909495439173,1,1.0,0.5259735673528138
+8,48,0.6270235964955858,2.0,1.3837505966701942,0.0006989589151886319,0.03671973937572227,0.8285163315517458,1,1.0,0.5900786549852858
+8,49,0.5790555080397245,2.0,1.3846268631304715,0.0006991034864227937,0.03645360966195883,0.8286408340994857,1,1.0,0.5635183601324149
+9,0,0.16103180358040106,1.95,1.3861923703607604,0.0007001792561377109,0.03638314439483822,0.8179608541521659,1,0.12731681525815053,0.23368359159046947
+9,1,0.16104481678264285,1.9,1.386219502494808,0.0007001561767619076,0.03674360101657273,0.806530184422407,1,0.15393722408123348,0.26489975716716485
+9,2,0.20537948540589987,1.95,1.3862320269129917,0.0007002072947832514,0.03670045823271069,0.8179667673235868,1,0.18004904899817464,0.31119955268876665
+9,3,0.2550492732288082,1.95,1.386244877757567,0.0007001692083758094,0.03638006982241344,0.8179686694278848,1,0.23286768410771852,0.37300733195240265
+9,4,0.2680248729030071,1.95,1.3856957339498315,0.000699885483570192,0.03673415362777526,0.8178868053545567,1,0.26563588364196133,0.4059017314874086
+9,5,0.2846065145214048,2.0,1.3862171376241328,0.0007001810190455538,0.03670539316427533,0.8288668331351313,1,0.2942230138893694,0.4230576965521901
+9,6,0.2810864077629793,2.0,1.3862737353823174,0.000700169820257923,0.036384960591195,0.8288748580087095,1,0.329252268753388,0.43128500087208027
+9,7,0.35270675590830086,2.0,1.3862177229398869,0.0007001676064156357,0.036718045817911,0.828866912355098,1,0.37317497980528697,0.5114558799539536
+9,8,0.32342079039308835,2.0,1.3862167068438551,0.0007002667365931543,0.03675369835990198,0.8288667963478943,1,0.42162447747865556,0.4825699980054204
+9,9,0.34940089799873847,1.95,1.386194990288147,0.0007001437990317692,0.03640802949268792,0.8179612337022019,1,0.4547371316874959,0.49168681774580025
+9,10,0.3704935883747592,1.95,1.3861102383724768,0.0007000442562137173,0.03677047289760287,0.8179485841008888,1,0.489033530120215,0.5162672544222439
+9,11,0.3680722227170015,1.95,1.3859578974026434,0.0006999451677889235,0.03664600151633314,0.8179258685935331,1,0.5364858650922664,0.4782595889336499
+9,12,0.3714336847217553,2.0,1.3859372390907811,0.0006999307673536679,0.03650253764043728,0.8288270558156642,2,0.560392730897906,0.457588641208643
+9,13,0.4157691084547689,2.0,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8288777842514964,1,0.5953377282049892,0.4921133905759106
+9,14,0.4165724884384194,2.0,1.3859037005135897,0.0006999331653562901,0.03675524627673247,0.8288222982328666,1,0.6228304669956558,0.49146767213385684
+9,15,0.4500477028880099,2.0,1.3860169671368099,0.0006999986271829686,0.03643554288461553,0.8288383860115617,1,0.6407678514491933,0.5124685410277752
+9,16,0.43746989540240555,2.0,1.3862012381265552,0.0007001167844209648,0.03668482991433626,0.828864559610451,1,0.6913867276309402,0.5030506811667648
+9,17,0.444950485759221,2.0,1.386040660336299,0.0007000607869639924,0.03676196962255732,0.8288417648649617,1,0.733120031794525,0.4723415768047034
+9,18,0.49936738878134473,2.0,1.3857826064942866,0.0007000104279573965,0.03644624268074383,0.8288051391514021,1,0.7689441306176147,0.5059657884476627
+9,19,0.49462307061238936,2.0,1.3858990988871414,0.0007003948311661765,0.0366560073900027,0.8288217763708601,1,0.792890884847143,0.5248890555784405
+9,20,0.49883099076091075,2.0,1.3859452405199848,0.0007001413348461342,0.036768864397837685,0.8288282507448443,1,0.8526725340830483,0.49253992375897143
+9,21,0.5062437384621237,2.0,1.3846080862225953,0.000699098632236119,0.03648114791565389,0.8286381664736435,1,0.8956363244671276,0.4599640289175755
+9,22,0.561926218638727,2.0,1.3850538703196893,0.0006997183850688942,0.03662717589272624,0.8287016331394061,1,0.9253747566018979,0.5059210533265596
+9,23,0.5393738766076897,2.0,1.3844671578003487,0.0006996241448836481,0.036714471545036986,0.8286183033960736,1,0.9597043419969907,0.48497379936297774
+9,24,0.5502942534485346,1.95,1.3847162054453737,0.0007004846938787186,0.03644460021694396,0.8177410397445722,1,1.0,0.46764751149511513
+9,25,0.5605080205914779,2.0,1.3846527940911293,0.0007012834812200482,0.03676354031669297,0.8286451352262733,1,1.0,0.46836006863825946
+9,26,0.5644788605738785,2.0,1.3846710408103715,0.0007005020392120305,0.036761715642371136,0.8286475041906735,1,1.0,0.4815962019129283
+9,27,0.6154176159602729,2.0,1.384442767085929,0.0006997866156740873,0.036494023734919834,0.828614885788388,1,1.0,0.5513920532009092
+9,28,0.6302752726305312,2.0,1.385359268018084,0.0006998517023215665,0.03661203205363998,0.8287450194325721,1,1.0,0.6009175754351039
+9,29,0.6501669520838923,2.0,1.3826777884843897,0.0006999312488426603,0.03668138358622389,0.8283641329259671,1,1.0,0.6672231736129742
+9,30,0.6625653143457214,2.0,1.3828485959178765,0.0007013890270334805,0.036509871694911586,0.8283888309298939,1,1.0,0.7085510478190713
+9,31,0.6537980734612305,2.0,1.3826466443656868,0.0007027281492901587,0.03662352952373414,0.8283605002280516,1,1.0,0.7126602448707684
+9,32,0.6601696849120186,2.0,1.382581255484375,0.0007013038684849262,0.036711830131589816,0.8283507980532074,1,1.0,0.7338989497067283
+9,33,0.6813701230222204,2.0,1.382224362374898,0.0007000258026659755,0.036467455267238075,0.8282996834597717,1,1.0,0.7712337434074013
+9,34,0.6807707764103539,2.0,1.3819452777165724,0.0007009741975304127,0.03647681104153455,0.8282602584027313,1,1.0,0.8025692547011792
+9,35,0.6904204434012224,2.0,1.384519871807413,0.0007011519034250251,0.03676228570629654,0.8286262230816477,0,1.0,0.8347348113374081
+9,36,0.6893654257027484,2.0,1.3862943611198844,0.0007001722195526524,0.036578998936567145,0.8288777842514964,0,1.0,0.8312180856758279
+9,37,0.6737376425491969,2.0,1.3861825572755342,0.0007001680076264268,0.03657936114473772,0.8288619242829283,0,1.0,0.8457921418306562
+9,38,0.6935455557066409,2.0,1.3861356665665931,0.0007000613191396758,0.036781228076486025,0.82885524247262,0,1.0,0.8451518523554694
+9,39,0.695988961688486,2.0,1.3858760507587489,0.0006999450951742828,0.03658317894546172,0.8288183787486221,0,1.0,0.8532965389616198
+9,40,0.6806227464147229,2.0,1.3853802135395918,0.0006998044727316026,0.03655284649080767,0.8287479787350088,0,1.0,0.8687424880490762
+9,41,0.6886621782186371,2.0,1.3852266320102702,0.0006994751206366625,0.03676051779735321,0.8287260871158896,0,1.0,0.8955405940621236
+9,42,0.7123298718156595,2.0,1.3848095275745043,0.0006991333799916193,0.03655991296812718,0.8286667785055803,0,1.0,0.9077662393855317
+9,43,0.7122807464219378,2.0,1.3842362187651387,0.0006987821098956768,0.03646593787177575,0.8285852660610593,0,1.0,0.9076024880731257
+9,44,0.7158920016614889,2.0,1.3834192431848211,0.0006983795006890775,0.03666745035090208,0.8284690840323566,0,1.0,0.9196400055382964
+9,45,0.7010256308102125,2.0,1.382332689183817,0.000697938970988918,0.03648888493041165,0.8283144955425954,0,1.0,0.9367521027007083
+9,46,0.7223382440668935,2.0,1.3818564729746794,0.0006972519099281351,0.03648005190724245,0.828246566966538,0,1.0,0.941127480222978
+9,47,0.6869091128378281,2.0,1.3806212527635304,0.0006966378057214675,0.03660244125410898,0.8280706056033079,0,1.0,0.9563637094594268
+9,48,0.7132793200708059,1.95,1.3818217209703083,0.0006970844098360627,0.03650099525568702,0.817308231705443,0,1.0,0.9775977335693525
+9,49,0.6932819807451861,1.95,1.3811168398396534,0.000696602362821303,0.03641132288842476,0.8172028144766408,0,1.0,0.9776066024839537
+10,0,0.08171616569233023,2.0,1.386260558593133,0.0007002119725659601,0.03633556421682378,0.8288730009453186,0,0.19778811729763268,0.1753363959109239
+10,1,0.1384307273362445,1.95,1.3862874148722035,0.00070017243580937,0.036735655990841165,0.8179750039063391,0,0.20752551467206845,0.18473507155805707
+10,2,0.1347446210806429,1.95,1.386211552038192,0.0007002849242410937,0.0367297308114314,0.8179637417714519,0,0.2036140412310858,0.17766334862736186
+10,3,0.180006826156524,2.0,1.3862337425340352,0.0007002425438413734,0.03639316205821123,0.8288692059263585,0,0.23539608876564833,0.21949463550088227
+10,4,0.2516781336401681,2.0,1.3862229732754912,0.0007001956381049868,0.03672776551647777,0.8288676650481941,0,0.3456103295573645,0.21144667272407452
+10,5,0.23869580644208518,2.0,1.386149312422267,0.0007002070340715547,0.03674333223804407,0.8288572195264596,0,0.3763783395917403,0.22714823535129694
+10,6,0.29654313931114973,2.0,1.3861486960929872,0.0007001344264068225,0.03637081802972454,0.828857111499099,0,0.46129401787918445,0.2067517738649199
+10,7,0.2513996065584796,2.0,1.3861774098521837,0.0007002654833143131,0.036711918537637556,0.8288612217744528,0,0.4702172172458487,0.21104239886713358
+10,8,0.2622098878302693,1.95,1.3862002928497286,0.0007001874148766941,0.03675611480401149,0.8179620362445689,0,0.48548709737267437,0.22671682960399836
+10,9,0.2750473554770562,2.0,1.3861752671471455,0.0007001194926289876,0.036475990641026135,0.8288608764131866,0,0.5029880085696518,0.24617384016398505
+10,10,0.3441408621548017,2.0,1.3861184349729019,0.0007000499441906644,0.036699598038896025,0.8288527948571164,0,0.5691990903171753,0.25487075342643867
+10,11,0.3750966992645498,2.0,1.3860301669598525,0.0007000263703716,0.036751329689703474,0.8288402664720231,0,0.6415450914006587,0.26159554234762106
+10,12,0.33498367779185134,2.0,1.3858109782419583,0.0006999068197775294,0.03639967451207397,0.8288091353003322,0,0.642964620809991,0.2593260982261833
+10,13,0.4072550765886523,1.95,1.385918948643472,0.0006999207416438543,0.036684983316849946,0.8179200608746954,0,0.7315513621013529,0.2487817724937039
+10,14,0.4536063438879402,1.95,1.3860834871989078,0.0007001238521522929,0.036623775466221295,0.8179446242900418,0,0.8296965791105047,0.23909237414579432
+10,15,0.41409243608467267,1.95,1.3766409608263503,0.000709460926084096,0.03654803704787172,0.8165371001007917,0,0.8393038970009706,0.2612362576142812
+10,16,0.45294686680027885,1.9,1.3769213169380665,0.00070747408695709,0.036680671425428885,0.8050774627615518,0,0.8733970169453357,0.27862686674048187
+10,17,0.43620203391983836,1.9,1.3794440341318874,0.0007061105829295947,0.03643045897822403,0.8054726151313705,0,0.8666775451801456,0.29843671949260037
+10,18,0.5073636071481926,1.95,1.3795559857349093,0.0007044936200493904,0.036669779044389686,0.8169718948857324,0,0.9425879120242224,0.30109480779501185
+10,19,0.5308693079725517,1.95,1.3789553453577532,0.00070504581322395,0.03671066632224253,0.8168822299408799,0,1.0,0.26956435990850564
+10,20,0.5070257603475984,1.95,1.3784281757794514,0.0007064369021980827,0.03653797677390769,0.8168037760747087,0,1.0,0.2900858678253281
+10,21,0.5252878322869196,1.9,1.3808605988266731,0.0007050688779466825,0.03662328611530408,0.8056941494682357,0,1.0,0.28429277428973165
+10,22,0.536387519493941,1.95,1.3799260807999187,0.0007058943227721037,0.03644039772406305,0.8170276470637156,0,1.0,0.2879583983131365
+10,23,0.5290171493918425,2.0,1.3795089179370128,0.0007070864734076442,0.03639953592198885,0.8279151623555123,0,1.0,0.2633904979728081
+10,24,0.5099909783903914,2.0,1.3789957508629413,0.0007080427889775917,0.036383241808934416,0.8278423108815279,0,1.0,0.29996992796797145
+10,25,0.49430310651107245,2.0,1.3810521721750957,0.0007064639599113093,0.03657722733461029,0.8281347438719133,0,1.0,0.31434368837024135
+10,26,0.5300110915348574,2.0,1.381475230166228,0.0007049536326337905,0.03675978896922079,0.82819451853413,0,1.0,0.30003697178285776
+10,27,0.5150844773979497,2.0,1.3808520572832843,0.0007057131641968401,0.03655249390300985,0.8281060463853238,0,1.0,0.3169482579931658
+10,28,0.5304387307371362,2.0,1.3825530781343154,0.0007044881648122454,0.03666083759268941,0.8283476971363993,0,1.0,0.301462435790454
+10,29,0.5294894396038384,2.0,1.3818666724823203,0.000705109548684633,0.03675400854493014,0.8282502534219833,0,1.0,0.29829813201279465
+10,30,0.49350796801857755,2.0,1.3810426533340894,0.0007056892625113125,0.03644608807501957,0.8281331685508656,0,1.0,0.3116932267285917
+10,31,0.4964231785320123,1.95,1.3815221943407503,0.0007041427129488413,0.03653853567292716,0.8172656117095702,0,1.0,0.3214105951067075
+10,32,0.4977196390904042,2.0,1.381563374415406,0.0007027957071330138,0.036440763515147676,0.8282064460111047,0,1.0,0.3257321303013473
+10,33,0.5429757565524799,2.0,1.3815843581018037,0.0007014803124358126,0.03652853957733722,0.8282090572552662,0,1.0,0.30991918850826605
+10,34,0.5434589953423338,2.0,1.3813216285188212,0.0007025518741886593,0.03655316379771017,0.8281719781516271,0,1.0,0.31152998447444563
+10,35,0.5407719331347852,2.0,1.38088867442149,0.0007035222390918867,0.03671211329990469,0.8281106349147113,0,1.0,0.30257311044928376
+10,36,0.511430013442994,2.0,1.380338590639455,0.0007043494836344671,0.03644481119655105,0.8280325555702518,0,1.0,0.3047667114766467
+10,37,0.5324363398345054,1.95,1.382318789955129,0.0007033903354283257,0.03649575361936079,0.8173843226396988,0,1.0,0.30812113278168485
+10,38,0.5393584819096453,1.95,1.3816943642571573,0.0007042480383526307,0.0364124538608135,0.817291354051958,0,1.0,0.2978616063654841
+10,39,0.4905075805553246,2.0,1.3811138763793813,0.0007050759330524358,0.036732556749315304,0.8281431308113835,0,1.0,0.3016919351844154
+10,40,0.4917768929241886,1.95,1.381359001949156,0.0007035744160374285,0.03656567547489324,0.817241069123373,0,1.0,0.30592297641396177
+10,41,0.5161877127268971,2.0,1.3811504525855511,0.0007023707733296967,0.03647981434666159,0.8281475663600226,0,1.0,0.32062570908965704
+10,42,0.5334779242482866,2.0,1.38307036716579,0.0007017394565856124,0.0365299134977108,0.8284204554266713,0,1.0,0.31159308082762166
+10,43,0.5401667196877548,2.0,1.3826655718786718,0.0007023523563395404,0.036465445158678896,0.8283630844547063,1,1.0,0.333889065625849
+10,44,0.545521558493903,2.0,1.3855575598118524,0.0007000089542399845,0.036764845475938564,0.8287732051310527,1,1.0,0.35173852831300984
+10,45,0.5073074477642086,2.0,1.3854276057915915,0.0006996760605560039,0.036584861315048574,0.8287546683159099,1,1.0,0.32435815921402833
+10,46,0.5614319322502772,1.95,1.3857547001223869,0.0006998018005524041,0.036522815683207886,0.8178955631542567,1,1.0,0.3714397741675904
+10,47,0.5625628050285586,1.95,1.3853585029142164,0.0006995862076300057,0.03648549527262383,0.8178364809163173,1,1.0,0.4085426834285285
+10,48,0.5693782487018139,2.0,1.3857857925845014,0.0006999131315381624,0.03677272566987842,0.8288055636061128,1,1.0,0.43126082900604595
+10,49,0.5549162970516563,2.0,1.3854652007246964,0.0006998552774526469,0.036481408838267566,0.828760054604502,1,1.0,0.4497209901721879
+11,0,0.14129998053806936,2.0,1.38625561738781,0.0007002157159377956,0.036334945156743764,0.8288723011329624,0,0.12801678116549767,0.23364422690623432
+11,1,0.15800954600902692,1.95,1.386273133944968,0.0007001945380082032,0.036733248597820414,0.8179728841640744,0,0.16070775255811032,0.24575481661927598
+11,2,0.16955913898152594,2.0,1.386274231411944,0.0007001714227593197,0.03672575138885455,0.8288749288208006,0,0.1752483916157583,0.26486594111740874
+11,3,0.2337967662828384,2.0,1.3862613310536016,0.0007001525740844266,0.03635984169315219,0.8288730936625965,0,0.27781479085989,0.24223616646294133
+11,4,0.2459329156568931,2.0,1.3860153686823815,0.0007001260963641405,0.03672227700919695,0.8288381954131465,0,0.33205023156259533,0.2437094101061832
+11,5,0.2447755195625517,2.0,1.3860444749706777,0.0007002742637492271,0.03674073928196582,0.8288423665889111,0,0.3750985869780347,0.24912028257112603
+11,6,0.22977910183774344,2.0,1.386033345382166,0.0007001532256943543,0.03637810855140785,0.8288407533678553,0,0.3784336251557787,0.2613521725847731
+11,7,0.26036262310442465,2.0,1.3861534345528983,0.0007001373662336525,0.03670891307805108,0.8288577844968504,0,0.40499354965719037,0.26121734413849496
+11,8,0.31061008406337653,2.0,1.385734624535802,0.0006999709273022147,0.03674201609484847,0.8287983198095636,0,0.49021815161753024,0.24840941138788147
+11,9,0.33649742887929607,2.0,1.385516448294822,0.0006999470333151082,0.036453687448514835,0.828767353417008,0,0.5580294166479011,0.24428554073378564
+11,10,0.3600439007714174,2.0,1.3852263597097403,0.0006999039486238861,0.036682784768412816,0.8287261702007336,0,0.6205036895002334,0.23947474990441364
+11,11,0.3298149858178306,2.0,1.384853371097749,0.000699990972595853,0.036721451129946146,0.8286732467498098,0,0.6321314277238462,0.2565413824276403
+11,12,0.4202224096253475,1.95,1.3850396903758715,0.0006997404800082741,0.03636870839287517,0.8177890253968373,0,0.7355489150761643,0.2533428119829393
+11,13,0.4414815634804947,1.95,1.3844947167412491,0.0006996285395978322,0.03673183070463179,0.8177077713653946,0,0.8064205135412398,0.2297111935466627
+11,14,0.47503823921847527,1.95,1.383124477225956,0.00070150545807058,0.03660189822872515,0.817503992151114,0,0.899529148899868,0.2174219321950935
+11,15,0.5112755967538934,1.95,1.382673433576351,0.0007018959120580204,0.03653637973807415,0.8174368073020096,0,0.995245256266852,0.21059164749050865
+11,16,0.5048237708236822,1.95,1.3820634268153411,0.0007023262989265201,0.03673765649047982,0.8173458845083742,0,1.0,0.2160792360789406
+11,17,0.5087560681337441,2.0,1.3817624455989224,0.0007033521564832222,0.03648944749826464,0.8282349264368715,0,1.0,0.19585356044581356
+11,18,0.46270914241097866,2.0,1.3862943611198844,0.0007001722195526521,0.036468552805060776,0.8288777842514964,0,1.0,0.20903047470326216
+11,19,0.5029853600038278,1.95,1.383082049429108,0.0007016144925032773,0.036600190773516734,0.8174976947461174,0,1.0,0.1766178666794257
+11,20,0.46964183239617546,1.95,1.3849863996200316,0.000700088306231032,0.03650295488850072,0.81778118806237,0,1.0,0.16547277465391808
+11,21,0.47238929326343304,1.9,1.3851392938992464,0.0007008365246663168,0.036589075008611346,0.8063617861366535,0,1.0,0.17463097754477658
+11,22,0.49762959814095387,1.95,1.3850478247740459,0.0007015295391548736,0.036590014118597705,0.8177907706740052,0,1.0,0.15876532713651292
+11,23,0.4748689749783555,1.95,1.3853833357592658,0.0007009316161399031,0.03654053899882993,0.8178405813548343,0,1.0,0.18289658326118485
+11,24,0.4995517138488424,1.9,1.3852267417114308,0.0007014293271408164,0.03666965977818522,0.8063756252002945,0,1.0,0.1651723794961413
+11,25,0.47525893259382923,1.9,1.385328062463497,0.0007008599397134436,0.03643199965468158,0.8063912665306511,0,1.0,0.18419644197943058
+11,26,0.46072490236962316,1.8499999999999999,1.3850992425410524,0.0007012427801626971,0.03666933933584099,0.7943750339227049,0,1.0,0.20241634123207705
+11,27,0.4811676931804214,1.9,1.3831004162945228,0.0007003260858289451,0.03645936566304474,0.8060430723089178,0,1.0,0.2038923106014046
+11,28,0.4871665707246889,1.9,1.3843656659259773,0.0007001243403964527,0.03642403633153269,0.8062407388242873,0,1.0,0.2238885690822961
+11,29,0.5098618041598658,1.95,1.385149712713269,0.0007000203544262507,0.036716412771882104,0.8178055026694154,0,1.0,0.23287268053288612
+11,30,0.5070436577063295,1.95,1.3846910557847414,0.0007000097824843049,0.036650010454631864,0.8177371498288188,0,1.0,0.22347885902109818
+11,31,0.503509400937195,2.0,1.384080431049627,0.0007000068205489116,0.03672461477550596,0.8285634860616065,0,1.0,0.211698003123983
+11,32,0.5099916245560209,2.0,1.3834221878703061,0.0006999507678971123,0.03671768297003241,0.8284699490736431,0,1.0,0.19997208185340284
+11,33,0.4961698063890506,2.0,1.3831021595694628,0.0007026080346933627,0.03648126442928147,0.8284252212659824,0,1.0,0.18723268796350206
+11,34,0.4572023415578113,2.0,1.3840544374929813,0.0007017754615224118,0.03654410676133476,0.828560296213275,0,1.0,0.1906744718593709
+11,35,0.4563710858960112,1.95,1.3833751618992114,0.0007019612195835745,0.03675680348515334,0.817541525094884,0,1.0,0.1879036196533707
+11,36,0.49467851688249465,2.0,1.3824919128760944,0.000702148239757087,0.03670707073477146,0.8283383345635612,0,1.0,0.18226172294164886
+11,37,0.4969854163155302,2.0,1.3833193899018197,0.0007011712987800755,0.03656656618737718,0.8284556871351465,0,1.0,0.15661805438510076
+11,38,0.4907806964421123,2.0,1.3839039457683873,0.0007004748007381403,0.0367381692338878,0.8285385485382112,0,1.0,0.13593565480704095
+11,39,0.46630188357423946,2.0,1.3841367424680944,0.0006998462030890898,0.03650818732655237,0.8285714390989046,0,1.0,0.15433961191413148
+11,40,0.440555982705524,1.95,1.384372846840168,0.0007008145818808244,0.0365188652835504,0.817689958132848,0,0.99488708397857,0.1420038303803199
+11,41,0.46844354246746756,1.9,1.3837047643402665,0.0007008941635724479,0.03650878745969085,0.8061377147381836,0,1.0,0.16147847489155848
+11,42,0.4546342097047896,1.9,1.383684315121344,0.0007020303193955075,0.03633416649452495,0.8061348740407671,0,1.0,0.18211403234929863
+11,43,0.4813662134880288,1.95,1.382981892458807,0.0007022623427966483,0.03668938423135457,0.8174829446548757,0,1.0,0.204554044960096
+11,44,0.46072713830040807,1.95,1.3828531688353394,0.0006988301189450098,0.03652537404540885,0.8174627134228227,0,1.0,0.20242379433469357
+11,45,0.5081965746386525,1.9,1.382755966084358,0.0006982803790980002,0.0366440611829865,0.805988576322306,0,1.0,0.22732191546217484
+11,46,0.5006751788277098,1.9,1.3817759865537227,0.0006979451311049378,0.03664811792952283,0.8058351850901995,0,1.0,0.20225059609236612
+11,47,0.481023356366203,1.95,1.3807687201558816,0.0006975840353597061,0.03651022500055946,0.817151099142904,0,1.0,0.2034111878873433
+11,48,0.4629601574967369,2.0,1.381857147514376,0.0006975929678501567,0.03665073892329814,0.8282467599563889,0,1.0,0.20986719165578965
+11,49,0.4896619934981804,2.0,1.3818651875333754,0.0006972457512846007,0.036357037401247086,0.8282478048933157,0,1.0,0.23220664499393445
+12,0,0.024054299130067805,2.0,1.3861278088465052,0.0007001705329083951,0.03639783501294393,0.8288541588039389,1,0.15193189953412575,0.17760513105472506
+12,1,0.06659518273389162,1.95,1.3862709020065809,0.000700168131232103,0.036732556653816306,0.8179725439796972,1,0.1691500522963323,0.196450539384529
+12,2,0.1917385390704859,1.95,1.3862616304464717,0.0007001710389883777,0.03672714015419504,0.8179711643668482,1,0.20562208008080374,0.23163235679388133
+12,3,0.21221729598031722,1.95,1.3856692377077784,0.0006998170549421968,0.0363778578297269,0.8178828383746551,1,0.2300820466137042,0.2672815911161184
+12,4,0.23625479439074984,1.95,1.3855951276539118,0.0006997196196081813,0.03672807238035238,0.8178717703574897,1,0.2607058480153285,0.3065748506153948
+12,5,0.26846866460640606,1.95,1.3854856980921837,0.0006996148645543153,0.03667179241440188,0.8178554382221456,1,0.31023492735029423,0.3479156455542945
+12,6,0.24045719068896942,1.95,1.385336631496644,0.000699496776424809,0.03640633378658889,0.8178331958432133,1,0.3481233633378833,0.30402615117938697
+12,7,0.2928268494754099,1.9,1.3855415770404949,0.0006996946979007088,0.03675048367456626,0.8064242353854144,1,0.3836400330543332,0.33123612084558873
+12,8,0.26865940788531956,1.9,1.385338482870897,0.0006996037934216629,0.0365345735449532,0.8063925011772755,1,0.4251445822281172,0.29533858331357565
+12,9,0.2788699390480592,1.8499999999999999,1.3858630516003485,0.0007003707026653921,0.036643434932012185,0.7944994842246976,1,0.4786620292274952,0.25801709119020366
+12,10,0.35833895474350885,1.9,1.3857078421054798,0.0007004452139377173,0.03669020315547078,0.806450423029459,1,0.5302279710190344,0.32082588778631704
+12,11,0.395556800292714,1.9,1.3859982556629473,0.0007003175649389575,0.03644570016863335,0.8064957092648404,1,0.5677011567104011,0.39492112536184526
+12,12,0.36104310671737894,1.9,1.3861332493772711,0.0007001967388516766,0.0366914490294217,0.8065167378543603,1,0.5989948933288866,0.37148383128608103
+12,13,0.43388631642016035,1.8499999999999999,1.3859566368843677,0.000700207724641641,0.03675215292183963,0.7945147102620007,1,0.6410345229094455,0.424908357521274
+12,14,0.4450815666724343,1.8499999999999999,1.3850165632129483,0.0007001425403930664,0.03660541585014067,0.7943611690250497,1,0.6666737011097557,0.46137362076177346
+12,15,0.4991264538426799,1.9,1.3851263451119256,0.0007008063888649138,0.03675908860112253,0.8063597548621474,1,0.7203069079012598,0.5366789689405865
+12,16,0.5044041647647568,1.9,1.3855764154661458,0.0007004472805054712,0.03668947284854952,0.8064299087089716,1,0.741423973819765,0.5594485841228357
+12,17,0.48261111523190114,1.95,1.385553367384794,0.0007009725627345312,0.036410356985507576,0.8178659230483165,1,0.775181832947602,0.5417946068428676
+12,18,0.4900919970634326,1.9,1.3851743883543732,0.0007011514848660642,0.03655798223053155,0.8063673641673372,1,0.8315714611278394,0.49154470870765593
+12,19,0.5092206579616333,1.95,1.3854608385682083,0.0007000528881844197,0.03664327674557528,0.8178518654262593,1,0.8407417390825307,0.5097465410954035
+12,20,0.544668311623955,2.0,1.3853785760316504,0.0006997051748248964,0.03653628891745302,0.828747718146255,0,0.8594110606044525,0.5363462912739132
+12,21,0.5362917395261385,2.0,1.3812931843750769,0.0007021192587088926,0.03656015667588813,0.8281678072950843,0,0.8700607592815983,0.5608914527116636
+12,22,0.6040068941503764,2.0,1.3821766696964177,0.000701002951738324,0.03661735399427267,0.8282931784808443,0,0.9818241324039683,0.5375908039626301
+12,23,0.5988979199883595,2.0,1.3823674464811786,0.0007028526096135311,0.036723222115901843,0.8283208358039527,0,1.0,0.5296597332945314
+12,24,0.5942551017453581,2.0,1.3811744833026078,0.0007031161006834676,0.03639080834419184,0.8281511985101706,0,1.0,0.514183672484527
+12,25,0.5941238929282024,2.0,1.3797996912310522,0.0007032666768550528,0.036495368042090436,0.8279554971349018,0,1.0,0.4804129764273411
+12,26,0.5870118980545098,2.0,1.3797979254105859,0.0007057472114707435,0.036735793847162704,0.8279559522822483,0,1.0,0.4900396601816993
+12,27,0.5720615418655285,2.0,1.37836921170714,0.0007061323335874128,0.03655809221247776,0.8277524537641747,0,1.0,0.5068718062184281
+12,28,0.5545878865773124,2.0,1.379484866991751,0.0007041019872825279,0.03659320573707222,0.8279108853263399,0,1.0,0.5152929552577079
+12,29,0.5885327563828896,2.0,1.3811280436484135,0.0007026922095643124,0.036711627648822395,0.8281444686095373,0,1.0,0.49510918794296516
+12,30,0.5703514664189825,2.0,1.379744097956109,0.000702784079671321,0.03637724737641197,0.8279474405034496,0,1.0,0.5011715547299415
+12,31,0.5506661381487394,2.0,1.3805481164247893,0.0007012972447505057,0.0364561007841233,0.8280615197417721,0,1.0,0.502220460495798
+12,32,0.5936029579394914,2.0,1.3818359680367474,0.0007003355657326392,0.036678131642134675,0.8282445273695017,0,1.0,0.47867652646497094
+12,33,0.5866498338852077,2.0,1.382189455355796,0.0007023060203526136,0.036547948424749926,0.8282953675463369,0,1.0,0.4554994462840258
+12,34,0.5853401626372814,2.0,1.3821324694980852,0.0007040627678447965,0.036625345417970565,0.8282877624583529,0,1.0,0.45113387545760447
+12,35,0.574893742601292,2.0,1.3817682192865384,0.0007056131677407251,0.03677031253036345,0.8282363911185177,0,1.0,0.4496458086709732
+12,36,0.5740878207599245,2.0,1.3807642023419773,0.0007062431986414259,0.03649739959353328,0.8280936910939137,0,1.0,0.4469594025330816
+12,37,0.5598071589568943,2.0,1.379588110344355,0.0007067874622783531,0.036474894984214176,0.8279263595383622,0,1.0,0.4660238631896476
+12,38,0.5777113340557721,2.0,1.3806311343561053,0.0007048848748806541,0.036728354712739386,0.8280743606751221,0,1.0,0.4257044468525737
+12,39,0.5627235253741829,2.0,1.3802586154357042,0.0007067337390473814,0.036619446500690475,0.8280218462759044,0,1.0,0.40907841791394267
+12,40,0.5633834224169466,2.0,1.3791389816063964,0.0007073632411095099,0.03659478807686177,0.8278625294059327,0,1.0,0.3779447413898218
+12,41,0.540597254361751,2.0,1.3805336327793993,0.0006970440950321273,0.0365685740209495,0.8280582465089938,0,1.0,0.4019908478725034
+12,42,0.5158534309785321,1.95,1.3774670122826373,0.0007116343585654051,0.036520558264832505,0.816661464613757,0,0.9969356361470442,0.39026392173238145
+12,43,0.5460854471831731,1.9,1.3805128457043558,0.0006969846130470028,0.03653909306233728,0.8056371707998459,0,1.0,0.42028482394391015
+12,44,0.5294735013343339,1.9,1.3804746954407947,0.0007080259931781204,0.03667591678100328,0.8056346548427071,0,1.0,0.43157833778111315
+12,45,0.5705657280625485,1.95,1.3814473447671272,0.0007062257798474624,0.0363340089784543,0.817255055428998,0,1.0,0.43521909354182803
+12,46,0.5322125989463204,1.95,1.380726383248935,0.0007068863701306395,0.03658672310390195,0.8171475531596833,0,1.0,0.44070866315440127
+12,47,0.5728788940898255,1.9,1.3813666282818806,0.0007051305909908871,0.03641655192475492,0.8057733759917302,0,1.0,0.40959631363275156
+12,48,0.5457408188367766,1.9,1.3806288212535105,0.0007065366199141301,0.03657119760727665,0.8056583214842052,0,1.0,0.4191360627892552
+12,49,0.5540952216937554,1.8499999999999999,1.3823629750983657,0.0007051043010800817,0.036778667949793495,0.7939289863730552,0,1.0,0.4469840723125179
+13,0,0.1337202252973953,1.9,1.3862173659395032,0.0007001467944457148,0.03635955445513304,0.8065298481076868,0,0.13306990097338167,0.20164088302680877
+13,1,0.14979621077686214,1.8499999999999999,1.386202430088271,0.0007001215759003642,0.03674879462906427,0.794554807696981,0,0.16063636233307824,0.21847221947876952
+13,2,0.14062558603367653,1.9,1.3861705568622331,0.0007000848298710745,0.03667723152926777,0.8065225246017168,0,0.16918184905640352,0.24317615470371712
+13,3,0.21985335977825604,1.95,1.3862177340374209,0.0007001219663659026,0.03644901505534622,0.8179646137351473,0,0.25985644713772527,0.21970260307721973
+13,4,0.17642272829237465,1.95,1.386085347289435,0.0007000337020699784,0.0367494890056729,0.8179448744295336,0,0.2707096978595998,0.22712949716178246
+13,5,0.181633926988513,1.9,1.386156614726189,0.0007000749510523577,0.03669915411102627,0.8065203459234662,0,0.28432056471070855,0.2263523370140986
+13,6,0.2732082121654195,1.95,1.38618994404511,0.0007001151699317601,0.036554314743187676,0.8179604737862975,0,0.38932544674301517,0.2249267782273781
+13,7,0.3107064094439111,1.95,1.3861297633035479,0.0007000537785884091,0.03676237121320359,0.8179514943507951,0,0.48791532957045486,0.21846759205243038
+13,8,0.3027165288168122,1.95,1.384483795873702,0.0006997878772629911,0.0366439345568195,0.817706190978512,0,0.5185676884472206,0.25096484479307996
+13,9,0.3124368310415758,2.0,1.38481865356434,0.000699622171631798,0.03649007449294763,0.8286682129874232,0,0.5430095311435335,0.2507767286138747
+13,10,0.3021715128698316,2.0,1.3850141668151956,0.0006994960794766921,0.03667512544332903,0.8286959338289436,0,0.5567018244575911,0.264969276955984
+13,11,0.3779397973121242,2.0,1.385095052857498,0.0006993938662169067,0.0367130431459488,0.8287073870053324,0,0.6481248248637026,0.22896622455547705
+13,12,0.32972711506158153,2.0,1.3816444924846734,0.0006989762290968378,0.03625381281820467,0.8282169004060593,0,0.6569036236628195,0.22321888532151243
+13,13,0.3632566979459069,1.95,1.3819451425965306,0.0006984774320950686,0.03654488767759065,0.8173270757104822,0,0.6789238149437109,0.23895723989474188
+13,14,0.4264190893092028,1.95,1.382388419683954,0.0006981437576294511,0.036504701869789734,0.8173931496242374,0,0.7794064402400129,0.21552171071065865
+13,15,0.4125419082487787,1.95,1.381514090176831,0.0006978103152988782,0.03653097661139387,0.8172625100001835,0,0.794669868113446,0.24891320334466752
+13,16,0.4291017922286907,2.0,1.3818577950977493,0.0006975224018909622,0.03663729849020693,0.8282468320011549,0,0.8193499167962001,0.27120608503403554
+13,17,0.444657998991637,2.0,1.3807729521572067,0.0006970739585864,0.03655703231935643,0.8280923260997384,0,0.8533127290919944,0.277776357849464
+13,18,0.47000192216812564,2.0,1.3817852102795887,0.0006972269724091506,0.036283999338764236,0.8282364222170815,0,0.8983254274758932,0.30223917059256117
+13,19,0.4976526310748929,2.0,1.3824004347482632,0.0006974647764481329,0.03654789876870076,0.8283239945333308,0,0.9378231272702621,0.3417446005559601
+13,20,0.48263491214635396,2.0,1.3826800839576707,0.0006976567444646011,0.03663950704121456,0.8283638125248254,0,0.948795467399055,0.34372241728910646
+13,21,0.5222733386226699,2.0,1.3825163762554222,0.0006977381663418217,0.036525861517729505,0.828340558924969,0,0.9980181348476536,0.3435536156120281
+13,22,0.5106061547178732,2.0,1.3825895902878103,0.0006981567507783789,0.03652608815839418,0.8283510881927147,0,1.0,0.36868718239291043
+13,23,0.5605804668903571,2.0,1.3823139627736958,0.0006983984376925258,0.036639026799407254,0.8283119631337914,0,1.0,0.3686015563011903
+13,24,0.5541977560385944,2.0,1.3838392112307913,0.0006987951535173177,0.0364331338783333,0.8285288747470874,0,1.0,0.3473258534619812
+13,25,0.5465601578349213,2.0,1.384853462723716,0.0006991901488928192,0.036596924891881086,0.8286730323660754,1,1.0,0.3218671927830707
+13,26,0.5459352223654852,2.0,1.3850012227197315,0.0006992817291537051,0.03672837458007201,0.8286940354320623,1,1.0,0.3531174078849503
+13,27,0.5042291569366898,2.0,1.384589663406886,0.0006990951427039185,0.0364640775041198,0.8286355494830442,1,1.0,0.3140971897889658
+13,28,0.5463354661440247,1.95,1.3849353087286265,0.0006996216335513508,0.03660220911860945,0.8177734355365014,1,1.0,0.35445155381341575
+13,29,0.5283006253476397,1.95,1.3843941322415316,0.0006995880537170724,0.03641544892258634,0.8176927655119276,1,1.0,0.36100208449213195
+13,30,0.5783565031471903,2.0,1.3850809228174084,0.0006995715599367268,0.03664991661467976,0.8287054316645108,1,1.0,0.4278550104906341
+13,31,0.592687328500903,2.0,1.3851930579226612,0.0006996850958010133,0.036585405543720695,0.8287213811942176,1,1.0,0.47562442833634316
+13,32,0.587236527045162,2.0,1.3856062490649064,0.0006997194897909745,0.0367612100778047,0.8287800322715843,1,1.0,0.49078842348387347
+13,33,0.6106504132795572,2.0,1.3851230818826417,0.0006995236551126232,0.03653905374503757,0.8287114025763034,1,1.0,0.5355013775985238
+13,34,0.5585604660083026,2.0,1.3853121067739658,0.0006994914232798178,0.03657396492225743,0.8287382236188404,1,1.0,0.4952015533610083
+13,35,0.5532426117627403,1.95,1.3857445089575333,0.0006999538802017247,0.03676801029896483,0.8178940905551841,1,1.0,0.4774753725424675
+13,36,0.5924953338726167,2.0,1.3858799990505115,0.0007003988998627825,0.03673083255544587,0.8288190676953646,1,1.0,0.5083177795753888
+13,37,0.5734728696520796,2.0,1.3854567809678866,0.0007004573607616745,0.03655300608561287,0.8287590305884114,1,1.0,0.5115762321735984
+13,38,0.5792107549226506,2.0,1.3856259706547291,0.0007001081059118572,0.03677595327406043,0.828782941110479,1,1.0,0.5307025164088351
+13,39,0.6101143401791339,2.0,1.385547368347801,0.0006997725184064863,0.03657624372499844,0.8287716917692783,1,1.0,0.5670478005971129
+13,40,0.5711285375723542,2.0,1.3850748551423864,0.0006996698732057672,0.03653909846561486,0.8287045982514882,1,1.0,0.5370951252411805
+13,41,0.5606495087218688,1.95,1.3852906770563833,0.0007003045739995806,0.03676275124977219,0.8178265900576575,1,1.0,0.5021650290728957
+13,42,0.6169928001046646,2.0,1.385223804914025,0.0007008850197444261,0.03674691062104902,0.8287260860800135,1,1.0,0.5566426670155487
+13,43,0.5931089637144324,2.0,1.3858258974316429,0.0007005621155037076,0.036535753489983176,0.828811438043278,1,1.0,0.577029879048108
+13,44,0.6214348285824561,1.95,1.3858345495141164,0.0007001706262715166,0.036772913179418984,0.8179075656752653,1,1.0,0.6047827619415203
+13,45,0.648015570125596,1.95,1.3812486681986145,0.0006994464021424993,0.03662047861938298,0.8172233561125503,2,1.0,0.6600519004186529
+13,46,0.685416802669509,1.95,1.3795828333315125,0.0006974580408614384,0.03647972975571645,0.8169738053236999,2,1.0,0.68472267556503
+13,47,0.6658858986985035,1.95,1.377672540993483,0.0006968508798888399,0.03654406345709876,0.8166878091102493,2,1.0,0.7196196623283447
+13,48,0.7029598766215096,2.0,1.3790070581538676,0.000700047519307063,0.036608744063959676,0.8278416434266591,2,1.0,0.7431995887383652
+13,49,0.6842909416377186,2.0,1.377176739137607,0.0006997595476680542,0.03655687417424887,0.8275805478911542,2,1.0,0.7809698054590619
+14,0,0.10952119133515736,2.0,1.3861762772001407,0.0007000908634392775,0.036365858374619406,0.8288610115675598,0,0.10825454020748065,0.2207312508405503
+14,1,0.08639257758819704,1.95,1.386202174928898,0.0007001100914654434,0.03673363322814553,0.8179622934593519,0,0.1998679296196953,0.18815135246772974
+14,2,0.19847323529668498,1.9,1.386283672966055,0.0007001868877483786,0.036723999743460384,0.8065402069212599,0,0.2644032614460601,0.17570643572753647
+14,3,0.19424237958590643,1.9,1.386265649947401,0.000700209448158812,0.03645874409822884,0.806537401758643,0,0.286781936372793,0.19843201678929742
+14,4,0.21316024421141946,1.95,1.3862705858408435,0.0007001766944980019,0.036778116301257796,0.8179724994547106,0,0.32195320159183327,0.21459654524895386
+14,5,0.28630807025068566,2.0,1.3859091263696854,0.0006999389816688212,0.03668617072355422,0.8288230696800725,0,0.42816324580118875,0.21680923976736713
+14,6,0.23592339315058086,2.0,1.385598365154386,0.0007001768490133842,0.03634328313619047,0.8287790433152438,0,0.42840993248097065,0.21519806719397538
+14,7,0.31928317534389045,1.95,1.3856391329476379,0.0007000223508730613,0.03669778178829677,0.8178784153716618,0,0.5321630755789736,0.18805981704100336
+14,8,0.33515339114068055,1.95,1.3862680395216616,0.0007002012305757025,0.03668400127588457,0.8179721276305911,0,0.6041662572345141,0.17828962748958313
+14,9,0.3611346711069775,2.0,1.385833820215172,0.0007007059103480877,0.03645160217343295,0.82881260295283,0,0.6677824527181035,0.1800723000657871
+14,10,0.3321936003128012,2.0,1.385966812726279,0.0007004551045889342,0.03669746347082427,0.8288314002437761,0,0.6906020958459191,0.18650920658144512
+14,11,0.3716407841831015,1.95,1.3858911366798397,0.0007006448391404015,0.03676634800660914,0.8179161345691677,0,0.7298335953844317,0.1990244867644292
+14,12,0.36704306901034306,1.95,1.3857012222796485,0.0007008201877733997,0.03653614626082071,0.8178879012722318,0,0.7577557333579521,0.21313591889054073
+14,13,0.40015476745370293,2.0,1.3813815192383214,0.0006967710852400812,0.03663823441927874,0.8281788554317704,0,0.7829917798397323,0.22319351839269994
+14,14,0.39220830975824383,2.0,1.3810713584429708,0.0006966104302707523,0.03659089349433248,0.8281346697489151,0,0.7913907004521225,0.25217343192464936
+14,15,0.4646121705887978,2.0,1.3816334247227906,0.0006972939638896595,0.03651188620965697,0.8282148470611947,0,0.8739402282897083,0.25012026424304823
+14,16,0.4357860400877651,2.0,1.3841594104232438,0.0006988942489163088,0.03659460816507157,0.8285743884207976,0,0.8883555743985039,0.26814603442787865
+14,17,0.4470773007210693,1.95,1.3838915271746495,0.0006989340753500167,0.03668870109618365,0.8176176345129174,0,0.893748559120522,0.2985929235762017
+14,18,0.45486254994376707,2.0,1.3834688223019345,0.0006989083065416749,0.03651863072450818,0.8284762798000102,0,0.9069348554239669,0.3069620259139343
+14,19,0.5294610892271256,2.0,1.3831020742762374,0.00069896657393082,0.03661060344400911,0.8284241739684363,0,0.9919942667790357,0.27554460838503775
+14,20,0.5230969566090069,2.0,1.3842115812165652,0.0006990890131414715,0.036707983065078734,0.8285818539006454,0,1.0,0.24365652203002278
+14,21,0.5102555068038949,2.0,1.3849053823141828,0.0006992843449836607,0.03644634344607718,0.8286804302200724,0,1.0,0.2341850226796493
+14,22,0.492478116140969,2.0,1.384595517832267,0.0006989854335016311,0.036587256164302064,0.82863634964509,0,1.0,0.2415937204698965
+14,23,0.49751359538642026,2.0,1.3849799572519337,0.0006993758618449345,0.03672745260464113,0.8286910432868076,0,1.0,0.2583786512880675
+14,24,0.5216980093664286,2.0,1.3851376297582625,0.0006997476190350033,0.03648344347031659,0.8287135312023248,0,1.0,0.23899336455476178
+14,25,0.4736260443298884,2.0,1.3857010070058755,0.0006998462713952197,0.03663115785807823,0.8287935143334944,0,1.0,0.24542014776629473
+14,26,0.4722111011618047,1.95,1.385459603132112,0.0006998310321902617,0.03676418912097937,0.8178516152831138,0,0.9926509787817638,0.2505023654969972
+14,27,0.5191638251896342,2.0,1.3850885050366637,0.0006997735851771863,0.03662754807638831,0.8287065653343997,0,1.0,0.2305460839654473
+14,28,0.5171386549869784,2.0,1.3855531517633484,0.0006997820025318893,0.03660182799709264,0.8287725151792036,0,1.0,0.25712884995659446
+14,29,0.5063191715888054,2.0,1.3854066747841434,0.0006995644733276208,0.036747759453677774,0.828751666085749,0,1.0,0.28773057196268453
+14,30,0.49149518277747023,2.0,1.3856665420896412,0.0006998871927382023,0.03652887518147068,0.8287886354981382,0,1.0,0.30498394259156736
+14,31,0.5187642993454463,2.0,1.3853601618708982,0.0006998614269401681,0.03661002800289924,0.8287451490544905,0,1.0,0.3292143311514876
+14,32,0.5329916796150687,2.0,1.385466339210864,0.0007003183358181687,0.036767119415147397,0.8287603476061944,0,1.0,0.30997226538356204
+14,33,0.5325319648333502,2.0,1.3853243135181401,0.0006998846546049078,0.0365291954878295,0.8287400677521444,0,1.0,0.30843988277783374
+14,34,0.48972091902816156,2.0,1.3850505866932825,0.000699472046358698,0.03655131625288417,0.8287010970726384,0,1.0,0.2990697300938718
+14,35,0.5140470216287285,1.95,1.384764672595582,0.0006994716167176196,0.03672950355102359,0.817747961237798,0,1.0,0.31349007209576163
+14,36,0.49722568773815257,1.95,1.3848080086521086,0.0006999202231583843,0.03671769376086106,0.8177545535049939,0,1.0,0.3240856257938418
+14,37,0.5257815808803681,2.0,1.384462328303906,0.0007000334993417029,0.03666874608647728,0.8286177338233434,0,1.0,0.3526052696012266
+14,38,0.5475997813993296,2.0,1.3844480698437505,0.000700627223492477,0.03675825713885209,0.8286158775959444,0,1.0,0.3253326046644319
+14,39,0.5014768597641786,2.0,1.38533255381163,0.000700431661117675,0.03655707923772489,0.8287413925659027,0,1.0,0.33825619921392863
+14,40,0.5314496743658803,1.95,1.384991084852759,0.0007005998521171038,0.03652102224545758,0.8177820386874673,0,1.0,0.37149891455293405
+14,41,0.5516796189937913,1.95,1.3848333515433255,0.0007011988540816034,0.036451387873448225,0.8177587114849629,0,1.0,0.3722653966459708
+14,42,0.5572682040250205,1.95,1.3847646295177385,0.0007004773800404305,0.036741075863171144,0.8177482546078091,0,1.0,0.39089401341673496
+14,43,0.5624083389950529,2.0,1.3845260638593513,0.0006998351692506363,0.03662874628747807,0.8286267284170272,0,1.0,0.374694463316843
+14,44,0.553870218364576,2.0,1.3854125767006782,0.0006998940048627103,0.036758879944580256,0.8287525972333321,0,1.0,0.34623406121525296
+14,45,0.5130475027271262,2.0,1.3859175796706085,0.0006999901184167479,0.03661253908245887,0.828824283502105,0,1.0,0.3768250090904207
+14,46,0.5157829702954453,1.95,1.3857205092009846,0.0006999958272335685,0.03650769526233497,0.8178905284194928,1,1.0,0.385943234318151
+14,47,0.511964347781668,2.0,1.3846511544766922,0.0006990324231993316,0.036441963133514346,0.8286442631456151,1,1.0,0.33988115927222656
+14,48,0.5222082686282625,2.0,1.3850478405892457,0.0006994801729927403,0.036602090276299196,0.8287007095547175,1,1.0,0.34069422876087513
+14,49,0.5742679486084079,2.0,1.3855641382714372,0.0006996679407516976,0.036485576241727886,0.828774041881448,1,1.0,0.4142264953613595
+15,0,0.023569789935362864,2.0,1.386132753094322,0.0007001676284647805,0.03639760405304382,0.8288548593447703,0,0.15966684406090298,0.16567684103667224
+15,1,0.02115239627407589,1.95,1.3862835511717893,0.0007001660228642612,0.03673457084623296,0.8179744267222728,0,0.17334335308069423,0.17271685013932733
+15,2,0.03422742768405049,2.0,1.3862824601707895,0.0007001676304195073,0.03672501482716155,0.8288760949195245,0,0.1961322013417054,0.18591515715789442
+15,3,0.03221321909736963,2.0,1.3862810949706357,0.0007001677457898405,0.036356015987631066,0.8288759013114742,0,0.1922792203521617,0.18433843652168314
+15,4,0.21111109833585423,2.0,1.3862791537401757,0.0007001686118417255,0.036724720157815735,0.8288756262116075,0,0.27071938036908494,0.17607782062740093
+15,5,0.2270010908545481,2.0,1.3862282373839512,0.0007001267601797322,0.03674861934803204,0.8288683921998823,0,0.3460859190122169,0.161889077498871
+15,6,0.2242674621217828,2.0,1.3862183277323756,0.0007001284899830213,0.036375831340576543,0.8288669870457531,0,0.37368492382852503,0.18264497530124268
+15,7,0.24056331235549336,2.0,1.386170152380965,0.000700084599222441,0.03671103920899004,0.828860140980374,0,0.39123568021717714,0.21356346756207503
+15,8,0.29195945384900773,2.0,1.3856307931193177,0.0006998493905484411,0.03674272396798947,0.8287835520015722,0,0.4619842804451125,0.2238858055698758
+15,9,0.26502415562688386,2.0,1.3856980632434384,0.0007001796812864457,0.03643980483555048,0.828793191246873,0,0.4859233444303926,0.235516059515756
+15,10,0.3037786068433573,1.95,1.3856843666873466,0.0006999947516552923,0.03669267316347572,0.8178851447684189,0,0.5111252250956981,0.2644283893502599
+15,11,0.36578769308472986,1.95,1.3858753924978764,0.0006999683954571008,0.03663355084202927,0.8179135883002238,0,0.6019899638615684,0.24997235846700833
+15,12,0.3227862375043883,1.95,1.3841971016117913,0.000698812476133615,0.03643898513948888,0.8176631607981517,0,0.6183554602195096,0.25148017805528144
+15,13,0.332007931918898,1.9,1.384634739670068,0.0006990279453459427,0.036738660503261265,0.8062824266547759,0,0.6375084322546536,0.2566818633901219
+15,14,0.3733737708408609,1.95,1.3848538078303605,0.0006991822018666022,0.03648007218175672,0.8177611589794551,0,0.6645288917051633,0.2918740471959852
+15,15,0.3504492368270846,1.95,1.3846792703442117,0.0006991482554044111,0.036482713060715544,0.8177351364722034,0,0.6611231930303221,0.2866665320498526
+15,16,0.43519454188237017,1.9,1.384824571819861,0.0006994340622431363,0.03673503291266588,0.8063122018673191,0,0.7589921621014332,0.2719922568059896
+15,17,0.3913558003169457,1.9,1.3844460194582866,0.0006990087626431096,0.03638651661403845,0.8062529425451763,0,0.7790881708596507,0.26573510657695143
+15,18,0.40006318519970885,1.8499999999999999,1.3845046317062102,0.0006992926382031529,0.03672766613852049,0.7942772538932719,0,0.7915981115726187,0.2780798019022045
+15,19,0.48019702098825773,1.9,1.3843796000584259,0.0006995122100510553,0.03648919173597002,0.8062427243096373,0,0.8863265221713511,0.25222137373239095
+15,20,0.4701728725030569,1.9,1.3859762517499983,0.0006999513908889075,0.03653753052792468,0.8064921610105705,0,0.9233321646787501,0.26946668877185603
+15,21,0.5066128521699529,1.95,1.385889539702248,0.0006999165382563315,0.036772102965740405,0.8179156798011937,0,0.9723903896322548,0.2588556543901697
+15,22,0.5018471971856378,1.95,1.3856630973335202,0.0006997355852920728,0.03676801195791771,0.817881899491061,0,0.9852433133620853,0.2924995728026787
+15,23,0.532122925589253,2.0,1.3854825898083365,0.0006996385708362495,0.036494817921290654,0.8287624608860238,0,1.0,0.30707641863084323
+15,24,0.5347247565609543,2.0,1.3851853505801839,0.0006994033053784382,0.03647783529045493,0.8287202071975304,0,1.0,0.31574918853651424
+15,25,0.5392235650603997,2.0,1.3847371010807903,0.0006991109605612048,0.03657853939147386,0.8286564889148647,0,1.0,0.29741188353466563
+15,26,0.5303808120768885,2.0,1.3852324367018467,0.0006997093637739797,0.036747478813162995,0.828726977523646,0,1.0,0.30126937358962824
+15,27,0.5328190494917068,2.0,1.3847225069207536,0.0006995945550595964,0.03648727290458311,0.8286545540819115,0,1.0,0.27606349830568894
+15,28,0.5271109215139047,2.0,1.384994948510346,0.0007003430844877113,0.03662227118064275,0.8286934460835408,0,1.0,0.2570364050463487
+15,29,0.5167215403681537,2.0,1.385013155498629,0.0007010334779457901,0.0367725811165598,0.82869622675832,0,1.0,0.22240513456051186
+15,30,0.49076969781452906,2.0,1.384846242302072,0.0007016231747925326,0.0365010259480552,0.8286726981064234,0,1.0,0.23589899271509682
+15,31,0.5175832293466014,1.95,1.3849152078275822,0.0007009645459028979,0.03657299844449253,0.8177708403267027,0,1.0,0.225277431155338
+15,32,0.4644331044139008,1.95,1.3846283951352762,0.000701459948338661,0.03641366720353882,0.8177282427964624,0,1.0,0.21477701471300262
+15,33,0.5004682576712851,1.9,1.3853364535812498,0.0007010986241407125,0.03672847046421613,0.8063926511139664,0,1.0,0.16822752557095022
+15,34,0.478368138772579,1.9,1.3818499501458366,0.0007058978419505638,0.03658988122585459,0.8058492460445498,0,1.0,0.1945604625752631
+15,35,0.4853811027808565,1.8499999999999999,1.3812469301487502,0.000706719403308146,0.03678451749020884,0.7937468639296188,0,1.0,0.21793700926952148
+15,36,0.47026422864546424,1.9,1.3854756672101387,0.0007000094060705672,0.036725847842111,0.806414044635547,0,1.0,0.2342140954848807
+15,37,0.4931930254682397,1.95,1.3858019277062916,0.0006999615288904302,0.03661845225366981,0.8179026448180725,0,1.0,0.24397675156079884
+15,38,0.49830523660997217,1.95,1.3857375082407382,0.0006997961320117211,0.03642649313716026,0.8178930008513705,0,1.0,0.26101745536657384
+15,39,0.5023473707803052,2.0,1.385532613394557,0.0006996508848498085,0.036737611272558035,0.8287695633737105,0,1.0,0.2744912359343509
+15,40,0.4863772849370084,2.0,1.3852507810016452,0.0006995005238587913,0.036530080819044006,0.8287295219875309,0,1.0,0.28792428312336127
+15,41,0.5105352989998199,2.0,1.3855061689729264,0.0006999092440993326,0.036771196542693285,0.8287658839271073,0,1.0,0.3017843299993996
+15,42,0.5331754137704982,2.0,1.3851362451162275,0.0006998746771976074,0.036590319722365615,0.8287133707270637,0,1.0,0.2772513792349936
+15,43,0.525043194761316,2.0,1.3855723797126573,0.0006998326418507715,0.03653607025708342,0.8287752581460921,0,1.0,0.2834773158710533
+15,44,0.5278715135324001,2.0,1.3854521456930613,0.0006996118329390004,0.036752402124125255,0.8287581327695408,0,1.0,0.2929050451080003
+15,45,0.5099473952241393,2.0,1.3851917482328138,0.0006993996498306701,0.03657912743730637,0.8287211142600356,0,1.0,0.2998246507471311
+15,46,0.5327840663291467,2.0,1.3848600915039748,0.0006991987024162671,0.03649627884997732,0.8286739759074698,0,1.0,0.275946887763822
+15,47,0.5083480316248238,2.0,1.3852201036698795,0.0006994375166640609,0.03674550246199226,0.8287251498117535,0,1.0,0.2944934387494126
+15,48,0.5184857103968868,1.95,1.3848358407398877,0.0006991569465847731,0.03659868112520383,0.8177584738398124,0,1.0,0.32828570132295604
+15,49,0.49784418957367665,2.0,1.384272589482948,0.0006988090885127553,0.03654702033816369,0.8285904394584939,0,1.0,0.32614729857892205
+16,0,0.12969183604232873,1.95,1.3861344071658324,0.0007001666244110291,0.036397522685299576,0.8179522194595955,1,0.11979414721466748,0.2059139238548725
+16,1,0.17600289202892463,1.9,1.386145973875737,0.0007002410124531296,0.036744712593757445,0.806518737290116,1,0.15389119334416684,0.24815471563752628
+16,2,0.1517053396618402,1.9,1.3861500829060733,0.0007001729084434606,0.03669720361145641,0.8065193572334399,1,0.1947495489365772,0.2126850669573643
+16,3,0.20683071875334444,1.8499999999999999,1.3862047345060047,0.0007001596676291459,0.03644678744289418,0.7945551963000126,1,0.24448607930504407,0.23012095677108935
+16,4,0.19571248325849605,1.8499999999999999,1.3854275370454299,0.0006997753884392,0.03675543495560862,0.7944281741759047,1,0.2600146778255801,0.23902204042754677
+16,5,0.1962671978025517,1.9,1.3853327709852123,0.0006996327353671642,0.03651625564842792,0.8063916184524327,1,0.30995230416739405,0.20762092045198022
+16,6,0.27226804044996117,1.95,1.3854461050019644,0.0006998218675696706,0.03651601708615002,0.8178496017227683,1,0.35228683244438647,0.271177691574022
+16,7,0.3085730409148421,1.95,1.385771168373969,0.0006998970241018101,0.03675683442917811,0.8178980443278615,1,0.3965109530513043,0.33322886564773463
+16,8,0.3163961061391161,1.95,1.3859698584506397,0.0006999511030135274,0.03666987619046706,0.8179276516313808,1,0.4180861775204397,0.3638721171031342
+16,9,0.33989896858342833,2.0,1.3859800129755375,0.0007000018027999468,0.036469441790685175,0.8288331443351343,1,0.462720406849779,0.3827026861450558
+16,10,0.31848971569781603,2.0,1.3860566697859582,0.0007001730374952224,0.03670541034569253,0.8288440678511395,1,0.49427911625896426,0.36926023064743435
+16,11,0.39577173291266193,1.95,1.3859168739733625,0.0007001935629014076,0.0367495883763579,0.8179198331613445,1,0.5421776208134297,0.42966894862430033
+16,12,0.37614652157080464,1.95,1.3856994672660727,0.0006997548427419203,0.03649454557208341,0.8178873225065203,1,0.5601853785634736,0.4402412338180507
+16,13,0.3727298940949578,2.0,1.385443952073766,0.0006995874060381537,0.036749025149092895,0.8287569630103312,1,0.5951909835553412,0.4155116689094045
+16,14,0.4475576269139437,2.0,1.3853591970994017,0.0006995247167801797,0.036731762808330695,0.8287449165513264,1,0.6371961515682218,0.4755972209555165
+16,15,0.4844041330929241,2.0,1.383946060991555,0.0007014694844972328,0.03650812450405798,0.8285448140524023,1,0.6832907366893372,0.5369594613906309
+16,16,0.5177826913724702,2.0,1.3843821298672758,0.0007007677698722104,0.03666784987161044,0.8286065530712982,1,0.7146836010292357,0.6063641698692532
+16,17,0.49937818814490265,2.0,1.3862943611198844,0.0007001722195526522,0.036773098486905194,0.8288777842514964,1,0.7251100308080497,0.6311139194056091
+16,18,0.5681958704852863,2.0,1.3862358710431395,0.0007001715774218337,0.036472540082810735,0.8288694877121751,1,0.7688549861801768,0.7021795867107185
+16,19,0.5507059883155897,2.0,1.3861946752096643,0.0007003048586844061,0.03667945055780723,0.8288636820273191,1,0.7971437339041554,0.7061616491797584
+16,20,0.586792956287494,2.0,1.386042518927425,0.0007004514158793931,0.03677231743661671,0.8288421393617765,1,0.8189190923966922,0.73075106442939
+16,21,0.6393303156120689,2.0,1.381086967246105,0.0007000258982972391,0.03650446589741822,0.8281378635204857,1,0.8721342451664394,0.8015887251516435
+16,22,0.6757145072775921,2.0,1.3845233488945345,0.0007011427690712844,0.036620979408411636,0.8286267142499256,1,0.9278313691093449,0.8486065321128466
+16,23,0.6518854636191747,2.0,1.3836770188833445,0.0007013666261642755,0.03674504849972793,0.8285065617791683,1,0.9359078523228612,0.8584077423001002
+16,24,0.6924967016251125,1.95,1.3835578428849313,0.0007026736581571787,0.03653917056726474,0.81756898607858,1,0.959988641770148,0.8950041497235104
+16,25,0.6669259371339358,1.95,1.3836833165615872,0.000701430371281646,0.036722471174229346,0.81758732888105,1,1.0,0.8564197904464523
+16,26,0.6563930848820452,1.9,1.384884310376754,0.0007009085610383907,0.03642331589388427,0.8063219917724327,1,1.0,0.8213102829401505
+16,27,0.6483424719813913,1.95,1.3855297744373845,0.000700518208160264,0.036754885403090506,0.8178622732223814,1,1.0,0.7944749066046374
+16,28,0.6632643372358709,2.0,1.3803507181578658,0.0007007506040167537,0.03664103576046407,0.8280332575404119,1,1.0,0.8108811241195696
+16,29,0.7170179007426832,2.0,1.3858067200571704,0.0007001996388193842,0.036776111767857014,0.8288086142220571,1,1.0,0.8900596691422772
+16,30,0.6892688308821363,2.0,1.3852038332313277,0.0007001842617757941,0.036533859426159485,0.8287230523648312,1,1.0,0.897562769607121
+16,31,0.6960858829438736,1.95,1.385294926341746,0.0007010279509052759,0.036630299908991484,0.8178274386876868,1,1.0,0.9202862764795788
+16,32,0.6728485440662777,2.0,1.3850281580646946,0.0007018335317515097,0.03634562597766769,0.8286985836409325,1,1.0,0.876161813554259
+16,33,0.6601173369565676,1.95,1.3853346130576396,0.0007010212067993328,0.0365276371144693,0.8178333493575168,2,1.0,0.8337244565218918
+16,34,0.6374070868199597,2.0,1.3862050973789575,0.0007001269319346995,0.036743080575523786,0.8288651099161862,2,1.0,0.7913569560665326
+16,35,0.7247585778343797,1.95,1.3775590382578986,0.0007011571459041211,0.03662641021285688,0.816672105598817,2,1.0,0.815861926114599
+16,36,0.6310162423927395,1.95,1.3859002143441492,0.0006999970335598406,0.0367250610821457,0.8179172935422725,2,1.0,0.7700541413091315
+16,37,0.6629243669087705,1.9,1.3762564280256304,0.000701023470133855,0.03645667328963743,0.8049710766902912,2,1.0,0.7764145563625683
+16,38,0.6223039998803581,1.9,1.3779123115100032,0.0006995224484833637,0.03659421106225376,0.8052304361180538,2,1.0,0.7410133329345269
+16,39,0.7138223090294612,1.8499999999999999,1.3788282218051564,0.0006982192316650031,0.03656321513566648,0.7933478219794204,2,1.0,0.779407696764871
+16,40,0.6691745737542811,1.8499999999999999,1.376396404389531,0.0006975493288253248,0.03625527589049711,0.7929486282857141,2,1.0,0.7972485791809368
+16,41,0.6751310673517921,1.7999999999999998,1.3778959213457194,0.0006966650408142632,0.036345862221802715,0.7806210551999556,2,1.0,0.8171035578393065
+16,42,0.7060837366257589,1.8499999999999999,1.384949587592026,0.0006998032874662968,0.036512959618939154,0.7943501174017268,2,1.0,0.8536124554191961
+16,43,0.7209824790327805,1.8499999999999999,1.3848900532189579,0.0006993530971691765,0.03638374760471715,0.7943402447251093,2,1.0,0.903274930109268
+16,44,0.6577511388737222,1.9,1.3844538167028122,0.0006988824481059288,0.036656595885463814,0.8062541210803081,2,1.0,0.8591704629124072
+16,45,0.7443974013569612,1.8499999999999999,1.3838752216201433,0.0006986010409778642,0.036419014095498844,0.7941741625716539,2,1.0,0.8813246711898708
+16,46,0.7574379991453027,1.8499999999999999,1.3845261542654033,0.0006989446463410993,0.03648312411224022,0.7942806569535458,2,1.0,0.9247933304843424
+16,47,0.717269966222196,1.9,1.384719269067313,0.000699336506170505,0.036714566208035135,0.8062957254342796,2,1.0,0.9575665540739864
+16,48,0.75,1.8499999999999999,1.3856422368658594,0.0006997217396482842,0.03650537921125068,0.7944632175065346,2,1.0,1.0
+16,49,0.7799999999999999,1.8499999999999999,1.3853422165427207,0.000699676353872965,0.03655622157508921,0.7944142076109459,2,1.0,1.0
+17,0,0.025859096101312568,1.8499999999999999,1.386163311743417,0.0007000849016896607,0.03637637834824755,0.7945484100704571,1,0.15120230348081815,0.18459391569661765
+17,1,0.18394355583737013,1.7999999999999998,1.3861569250085277,0.0007001718623564288,0.0367509267720706,0.7820336826424696,1,0.18696611473032262,0.23052369981747017
+17,2,0.17926974738088627,1.7999999999999998,1.3861701148041428,0.0007000850485583486,0.03665075384031141,0.782035901331301,1,0.2144838035057076,0.24492075326201077
+17,3,0.254093996893149,1.8499999999999999,1.385829294446949,0.0006998853090252507,0.03655626192552031,0.7944938141339654,1,0.27717147261253017,0.31075135949378974
+17,4,0.22914519752787854,1.8499999999999999,1.385951485233804,0.0006999312743482983,0.03677234295345178,0.7945137789292234,1,0.2924444025173863,0.3072247884030801
+17,5,0.23215219084144484,1.7999999999999998,1.3858931271147017,0.0006999005773062486,0.03654758078963176,0.7819886206002755,1,0.3510889762833812,0.2723886677603078
+17,6,0.2814222871055237,1.8499999999999999,1.3860246652173347,0.0006999854161793209,0.036708816752478404,0.7945257438332191,1,0.38157338809414393,0.29597643955955383
+17,7,0.32689328707627424,1.8499999999999999,1.3859111536997324,0.0006999446645749826,0.0367644828403638,0.7945071986311796,1,0.42944470030279647,0.3503846898505188
+17,8,0.3427450724874935,1.8499999999999999,1.3858232591576038,0.0006999799725542979,0.03640477209695766,0.7944928596422216,1,0.46270263261263955,0.39221339814145884
+17,9,0.31418181118128813,1.9,1.3858576999266332,0.0007001681450282507,0.03673099698263345,0.8064737264971465,1,0.504567476315297,0.3411827355172311
+17,10,0.321802475704693,1.8499999999999999,1.3857225183660153,0.000700222316148988,0.0367626527829733,0.7944764899481846,1,0.5380361786896566,0.32196001409610114
+17,11,0.36812228262041946,1.9,1.385500748941684,0.0007002784054030621,0.03643336510963578,0.8064180441113327,1,0.5604100003589828,0.34652760825608786
+17,12,0.4148776545685069,1.9,1.3855025758414592,0.0007006194830341157,0.03667552141309256,0.8064184357945509,1,0.6049345290561863,0.4096794764867746
+17,13,0.386386165828833,1.9,1.3843566878162168,0.0007005901632301298,0.0367339998480557,0.8062394818298476,1,0.6501330886175473,0.38777643460604694
+17,14,0.4104510973185117,1.8499999999999999,1.3862505812309154,0.0007001485513337044,0.036345697813188374,0.794562676462528,1,0.6668968233683593,0.4123078932372266
+17,15,0.42036736126251034,1.8499999999999999,1.384379199433926,0.0007005831043643835,0.0367318127488193,0.7942571791482971,1,0.6881306477205763,0.41705034058093265
+17,16,0.46201026557220776,1.9,1.384882742774864,0.0007002221001354683,0.036396617247700006,0.8063215325597332,1,0.7347205943482154,0.4270734261097389
+17,17,0.4895735954966787,1.9,1.3850435411299031,0.0007009646699310682,0.036393531796451765,0.8063468746456663,1,0.7826523447820078,0.45504219194625206
+17,18,0.5292290419858169,1.9,1.3849541541742263,0.0007016843171041079,0.03676593540945327,0.8063331411082953,1,0.8136645135082712,0.5125441219416945
+17,19,0.5052173672880382,1.9,1.3856982309927202,0.0007002108312123799,0.03664992791164727,0.8064488496751756,1,0.8284433190406032,0.5128001322393233
+17,20,0.5225954468589102,1.8499999999999999,1.3855538453805991,0.0006998488294154704,0.03652628078035687,0.7944488250677769,1,0.8613001049599891,0.5269180162497151
+17,21,0.5361745381897662,1.9,1.385249879339566,0.0006994987396476282,0.036598554778959125,0.8063786348917984,1,0.8917279435973394,0.5316112025027682
+17,22,0.5389818247568398,1.95,1.3848545318567609,0.0006991642141222478,0.03650806613523902,0.817761261518178,1,0.9529681525806691,0.4926485457485735
+17,23,0.5471682448362292,2.0,1.384998690293751,0.0006993689428184706,0.03647003987653688,0.8286937006897694,0,0.9952033874718178,0.46362296615834003
+17,24,0.5786743871048196,2.0,1.382244733327329,0.0007051393904353887,0.0364318539163791,0.8283040350609451,0,1.0,0.462247957016065
+17,25,0.5621737671983457,2.0,1.3814801393737497,0.0007058944806789117,0.03658204359835028,0.8281954847985007,0,1.0,0.47391255732781873
+17,26,0.5464010550964717,2.0,1.3828669337089294,0.0007045015227914343,0.036786229102145365,0.828392322765952,0,1.0,0.48800351698823896
+17,27,0.5512110537685344,2.0,1.3834871579344843,0.0007032390790811141,0.0365589616069303,0.8284801161549286,0,1.0,0.5040368458951147
+17,28,0.5906921383277077,2.0,1.3837541329566165,0.0007021258213752676,0.036635233305310856,0.8285177338614218,0,1.0,0.5023071277590255
+17,29,0.5825157282488429,2.0,1.383059234353114,0.00070256044465876,0.03673712940651438,0.8284191063949198,0,1.0,0.5417190941628097
+17,30,0.5989408177704618,2.0,1.3842700200592866,0.0007017767663113231,0.03648387783149973,0.8285909175156336,0,1.0,0.5298027259015394
+17,31,0.5976889602316795,2.0,1.3834789677715587,0.0007020737030809026,0.03655983163474885,0.8284786211191942,0,1.0,0.5256298674389316
+17,32,0.5961575668401626,2.0,1.3825086771307444,0.0007022977787381581,0.03673630604931568,0.8283407608524282,0,1.0,0.520525222800542
+17,33,0.5578505286036582,2.0,1.3813573017110408,0.0007025011125463127,0.0365469997509378,0.8281770400531739,0,1.0,0.5261684286788607
+17,34,0.6034880831772542,1.95,1.381821271381355,0.000701168536483209,0.036541105919204925,0.8173093842187382,0,1.0,0.5449602772575138
+17,35,0.605440460974937,1.95,1.380425812399893,0.0007012271646718352,0.036291588118201795,0.8171009468584833,0,1.0,0.5514682032497896
+17,36,0.6089769839140158,2.0,1.3789422477592341,0.0007012433328128119,0.036590794692946724,0.8278327473307916,0,1.0,0.5632566130467191
+17,37,0.5700866087791243,2.0,1.3774759240058456,0.000701102464646338,0.036354563838247866,0.8276236178594997,0,1.0,0.5669553625970811
+17,38,0.5934622701683377,1.95,1.3778936133786555,0.0006994780223535469,0.036615015104003557,0.816721689783043,1,1.0,0.5782075672277923
+17,39,0.6015376292160506,1.95,1.3849226858770312,0.0006994930643498571,0.03671167859855183,0.8177715161519735,1,1.0,0.6051254307201683
+17,40,0.6270430383501369,2.0,1.3798427736753944,0.0007019572525591674,0.03659612286270829,0.8279612609030758,1,1.0,0.6234767945004559
+17,41,0.5885272248335781,2.0,1.3795419800849413,0.0007004342232777601,0.036626782543937815,0.8279179772418654,1,1.0,0.5950907494452602
+17,42,0.6475770630110093,1.95,1.3848663319272818,0.0006994072377434693,0.03656003743356786,0.8177630924838931,1,1.0,0.6585902100366973
+17,43,0.6687957091198762,1.95,1.38265100749017,0.000700088505386385,0.036574425873849355,0.8174329210855831,1,1.0,0.7293190303995871
+17,44,0.6668106070264379,1.95,1.3821588909872515,0.0007006777425939155,0.03648621823087239,0.8173596438727012,1,1.0,0.7560353567547928
+17,45,0.6464465573518898,2.0,1.381648999463851,0.000699386629735605,0.036639074829002145,0.8282176584075923,1,1.0,0.7548218578396325
+17,46,0.6250992937970453,1.95,1.3814545011881372,0.0007002017523265942,0.03648811450966571,0.8172543248660891,1,1.0,0.716997645990151
+17,47,0.6680363196974668,1.9,1.3833123260242552,0.0007000351098617564,0.03646121921376663,0.8060761086577576,1,1.0,0.7601210656582225
+17,48,0.6741544317580181,1.9,1.3827024053978703,0.000699004784479728,0.036489257582907296,0.80598042740671,1,1.0,0.7805147725267271
+17,49,0.6553473272749682,1.95,1.3819263812505869,0.000697940016767771,0.036645290974764974,0.8173241140807115,1,1.0,0.7844910909165607
+18,0,0.10485433406360697,2.0,1.3862020147159377,0.0007001056641989609,0.036356514518762525,0.8288646666133892,0,0.10420555332575983,0.21057370911101017
+18,1,0.1724467227237342,1.95,1.386214902814371,0.0007001247396978573,0.036734409838657736,0.8179641929957815,0,0.17052237299771222,0.21412591174883103
+18,2,0.13918051755355912,1.95,1.3862574768372984,0.0007001455344457218,0.03672359465531815,0.8179705383221565,0,0.18344516255796725,0.21934150843457406
+18,3,0.16272975115918056,1.9,1.3862627334659308,0.0007001527151264897,0.03638181411820273,0.8065369289808815,0,0.18818726508496114,0.2248494837506537
+18,4,0.1493857719404421,1.9,1.3862492816898748,0.0007001564911501988,0.0367766533246905,0.8065348312012485,0,0.20424180289456162,0.22563016927539153
+18,5,0.15738216224205023,1.95,1.3857857338413053,0.000700212927311855,0.0366177323764645,0.817900307811545,1,0.22083089607155376,0.23016601271142909
+18,6,0.22401002682361618,2.0,1.3860143755575056,0.0006999737235061181,0.03641885520508984,0.8288380112900837,1,0.2629359972014683,0.2627854264767628
+18,7,0.20094023120895496,2.0,1.3859186005123119,0.0006999300029384508,0.03670600147418038,0.8288244112758482,1,0.3077401495268662,0.22614723799402828
+18,8,0.2797941160831506,1.95,1.38602960808525,0.0007000570000971907,0.036749085387456644,0.8179365810375491,1,0.3660019021537997,0.27797785073876896
+18,9,0.3073896999579362,1.95,1.386083237133775,0.000700037110753493,0.03646977395565644,0.8179445612189961,1,0.3858874014001702,0.343449131326227
+18,10,0.2995544066542025,1.95,1.3860736296144387,0.0007000218584934361,0.036773336729712086,0.8179431260043603,1,0.43114294985811236,0.3569907557031919
+18,11,0.3427341921895639,2.0,1.3854096494632524,0.0007000470190594926,0.03661622221994672,0.8287522252264916,1,0.4724757522061766,0.37914630435697766
+18,12,0.33259809877165303,2.0,1.3853790156015373,0.0007002695015845941,0.036425772905527155,0.8287479407161497,1,0.4896266863564733,0.38915808076354574
+18,13,0.4001311084992068,2.0,1.3857993711812113,0.0007002304468008477,0.03668032470849404,0.8288075802674586,1,0.5440080843597132,0.4417595825177386
+18,14,0.4388585696153222,2.0,1.3858063449198093,0.0006999322767279986,0.03674820486712524,0.8288084851264086,1,0.600293019115177,0.4958045398975048
+18,15,0.45091489320172173,2.0,1.3853168133914848,0.0007004085802179513,0.03645768550491938,0.8287391519789578,1,0.6351502527249405,0.5228493070391518
+18,16,0.49736116866724295,2.0,1.3852151578391783,0.000700795516455409,0.03668207609507583,0.8287248333097923,1,0.6846623035940534,0.5783208240987386
+18,17,0.5341936886013162,2.0,1.3851173607021252,0.0007002565148011119,0.03674149940340433,0.8287107985177974,1,0.7333353887205601,0.6361984437103071
+18,18,0.5536081512693918,2.0,1.385964193740293,0.0006999525435355512,0.03645685763899649,0.8288308860912735,1,0.7775332585815581,0.675316159455895
+18,19,0.5308660500215236,2.0,1.3856778988107288,0.0006997539879051017,0.03665459864460492,0.8287902091857776,1,0.8227064192352121,0.6392782744247959
+18,20,0.6115142712133532,1.95,1.3821750539025959,0.0006978793818628159,0.03662145725248865,0.8173612212190163,1,0.8704307835885654,0.7111398592597568
+18,21,0.567359746757459,1.95,1.3817291636191147,0.0006981606693357756,0.036457756016176096,0.8172947324767464,1,0.8958505682208276,0.6633983982304266
+18,22,0.6221801153619949,1.9,1.3834516290905374,0.000698591525282463,0.03670293344487398,0.8060974319478993,1,0.9401007032801497,0.6871327801664499
+18,23,0.6466896254971356,1.9,1.3826097484128625,0.0006977390166849369,0.03648717885735397,0.8059655417751579,1,0.9706005917471967,0.7281646293275228
+18,24,0.620270723441734,1.9,1.3815896632658382,0.0006968965514726727,0.03660380497884332,0.8058057022162852,1,1.0,0.7009024114724463
+18,25,0.6787106997138149,1.8499999999999999,1.3831769033237902,0.0006980920240528795,0.036524668356638576,0.7940598244449597,1,1.0,0.7623689990460496
+18,26,0.6502495561148961,1.8499999999999999,1.3828094865881437,0.0006977207609972541,0.03663126288279265,0.7939996132776103,1,1.0,0.7674985203829868
+18,27,0.6503154756308149,1.7999999999999998,1.3832579940959295,0.0006982280939655126,0.03631370523757998,0.7815384718349814,1,1.0,0.7677182521027163
+18,28,0.6991261264792752,1.8499999999999999,1.3832101315094372,0.0006986195592817148,0.03653578429916171,0.7940654306888452,2,1.0,0.8304204215975836
+18,29,0.7370232284300329,1.8499999999999999,1.3853988128179613,0.0006998630611966114,0.036639280537668475,0.7944235117602705,2,1.0,0.8567440947667763
+18,30,0.7182139685744688,1.8499999999999999,1.3852943483280127,0.000700301789969258,0.03648093818747746,0.7944065939492819,2,1.0,0.894046561914896
+18,31,0.7043670845459984,1.9,1.3849086338179237,0.0007006606822740204,0.036760383686674905,0.8063257128392683,2,1.0,0.9145569484866612
+18,32,0.7131934689682022,1.95,1.3857576830409992,0.0007004048399312653,0.03676050692558007,0.8178961870727934,2,1.0,0.9439782298940071
+18,33,0.7419981465830932,2.0,1.3861249510847644,0.0007002154390344765,0.03671535071607148,0.8288537661562667,2,1.0,0.973327155276977
+18,34,0.7253321883422885,2.0,1.385709003777085,0.0007002428920640416,0.03658067249925197,0.8287947615871811,2,1.0,0.9844406278076282
+18,35,0.6828023256768716,2.0,1.3858046243271573,0.0006999372687544801,0.036770749907560574,0.828808242416605,2,1.0,0.9426744189229054
+18,36,0.6656984215757336,1.95,1.3859589172616589,0.0006999378670546948,0.03656861254615516,0.8179260182995979,2,1.0,0.885661405252445
+18,37,0.7229067326938485,2.0,1.3858176866156047,0.0006999307878035599,0.036719413600620095,0.8288100939141809,2,1.0,0.9096891089794952
+18,38,0.7086332302605359,2.0,1.3854594742349833,0.0006995806242401407,0.036755884828752174,0.8287591639615928,2,1.0,0.9287774342017863
+18,39,0.7172215936827186,2.0,1.3855130542651355,0.0006997568777588429,0.036577840075745105,0.8287668177919888,2,1.0,0.9574053122757289
+18,40,0.7204148374568866,2.0,1.3852659264052463,0.0006998867487784089,0.03655316027474855,0.8287317813065024,2,1.0,0.9680494581896218
+18,41,0.7768769774405845,2.0,1.3847792475091025,0.0007000121087668877,0.036759839696308846,0.8286627288805587,2,1.0,0.9895899248019482
+18,42,0.6791171238798291,2.0,1.385599722447659,0.0006999327624020186,0.03657979989918224,0.8287791666471163,2,1.0,0.9303904129327637
+18,43,0.6666584909525342,1.95,1.3856860818522672,0.0007004568854214466,0.03652625163500353,0.817885537909005,2,1.0,0.8888616365084473
+18,44,0.7510531036140953,2.0,1.385475690972009,0.0007009300687968056,0.03649474446011212,0.828761848401609,2,1.0,0.9035103453803177
+18,45,0.7375121731200164,2.0,1.3860146354524048,0.0007005478619665679,0.03663775861269939,0.8288382110610784,2,1.0,0.9583739104000544
+18,46,0.7269009739413246,2.0,1.386058126126608,0.0007001955131095691,0.03654229210765315,0.8288442808266708,2,1.0,0.9896699131377484
+18,47,0.75,2.0,1.3858188020949467,0.0007003523554859163,0.03677672705013346,0.8288103718099383,2,1.0,1.0
+18,48,0.73,2.0,1.3856479986092027,0.0006998812691708196,0.0366182904602224,0.8287860025175875,2,1.0,1.0
+18,49,0.684742826305726,1.95,1.3852527187753836,0.0006999078662900664,0.036469449471307085,0.8178208165162836,2,1.0,0.94914275435242
+19,0,0.12972021867957645,1.9,1.3862108868186287,0.0007001578151241202,0.03635093463508209,0.8065288405465417,1,0.11508295300855785,0.212290124920511
+19,1,0.03434041100577853,1.8499999999999999,1.3861995411164436,0.0007001760256016749,0.036749754812739927,0.7945543538846334,1,0.16568311740117952,0.19355721348435576
+19,2,0.18932011475391072,1.7999999999999998,1.3860591853583004,0.0007001766794918194,0.03668451824199522,0.7820170234177909,1,0.20924596733843132,0.21873909272846068
+19,3,0.23679264561073093,1.7999999999999998,1.3860644966441495,0.0007000408885710526,0.03656105277648443,0.7820178825167616,1,0.2652750326713217,0.26894210847400757
+19,4,0.2504963487606395,1.7999999999999998,1.3860262179877303,0.0007000613704268117,0.03677591320484358,0.7820113642232366,1,0.29182531868865197,0.3125540709505956
+19,5,0.26225641593738325,1.8499999999999999,1.3859429953504645,0.0006999630580454167,0.03645908405280173,0.7945124032316992,1,0.31141208580962965,0.32563860537843803
+19,6,0.3057028058086858,1.9,1.3858331246166382,0.0006998495925525667,0.036630634623553864,0.8064697914679473,1,0.3599264767093213,0.372440717083191
+19,7,0.275292699236724,1.9,1.385772025765551,0.0006998565590194961,0.036769079983423957,0.8064602573834755,1,0.4009846741914935,0.34966276520042194
+19,8,0.290895994563276,1.8499999999999999,1.3856654017254857,0.0006999842765087413,0.036555931234147236,0.7944670858422523,2,0.4110999378007643,0.354853398143234
+19,9,0.3223089571658003,1.9,1.3862943611198844,0.0007001722195526525,0.0367391592065816,0.8065418700441696,2,0.4451335616322466,0.3808517750430055
+19,10,0.3448208601266858,1.9,1.3862688006310009,0.000700172753235651,0.03677924378083146,0.806537881923171,2,0.48845059905799054,0.39813540167829864
+19,11,0.3612651369037406,1.9,1.3861843311906397,0.0007001680127266024,0.03645165801503162,0.8065246999532844,2,0.5095514759840589,0.4248151550337234
+19,12,0.4378173209731537,1.95,1.3862007484855665,0.0007001723871403311,0.03669630277015403,0.8179620996135378,2,0.5695795096781333,0.4332850570063344
+19,13,0.40693856114464333,1.95,1.386193825562335,0.0007001015147738412,0.03677971052186489,0.8179610476813857,2,0.6055122502766438,0.4491122034466193
+19,14,0.3735306097184301,1.9,1.3859103515672169,0.0006999492788269577,0.036605981255053495,0.8064818755926741,2,0.640637812208222,0.39091828278380436
+19,15,0.41424243510176995,1.8499999999999999,1.3862943611198846,0.0007001722195526528,0.036747700941451564,0.7945698304121885,2,0.6517008274633895,0.4118736803880471
+19,16,0.38363609058552833,1.8499999999999999,1.3859084496370402,0.0006999102130072945,0.03643825404091091,0.7945067459011298,2,0.6766813464145826,0.37654517339898447
+19,17,0.4932360264754328,1.7999999999999998,1.3862143841702412,0.0007001725492158063,0.03671253160917318,0.7820434770343357,2,0.7313640255527842,0.4023013875143971
+19,18,0.4642633871272087,1.7999999999999998,1.385853132186079,0.0006998714671228763,0.036454741482152074,0.7819817921654701,2,0.7644287588739731,0.4283062785920647
+19,19,0.5418151632987671,1.7499999999999998,1.385880591699714,0.0006999675910705,0.0367073691897745,0.7689302280919815,2,0.8187354702868614,0.4477365839467418
+19,20,0.4984449213860598,1.7499999999999998,1.3852328766992055,0.000699473105649947,0.03647701466478299,0.7688149485126022,2,0.8353759685261594,0.44764844658531994
+19,21,0.4650346645108571,1.6999999999999997,1.3850482233524326,0.0006992942756568908,0.03671114794824421,0.7551825748811599,2,0.8563678277022267,0.408291778099888
+19,22,0.5179047516471462,1.6499999999999997,1.3852223667325616,0.0006995354672717992,0.036427514466439506,0.7410861381429925,2,0.890099318519356,0.4395500807980125
+19,23,0.5987615709113485,1.6499999999999997,1.384889980050731,0.0006995218754220694,0.036554733605235055,0.7410223502987592,2,0.9475968869295379,0.46574272046511134
+19,24,0.5621684821738593,1.6499999999999997,1.384413925990237,0.000698949864043574,0.036587530456176624,0.7409307615284573,2,0.9656667998401661,0.48633920745930914
+19,25,0.609588831818371,1.5999999999999996,1.3839586980966048,0.0006988857213995354,0.03668637345656546,0.7261858673620649,2,1.0,0.5319627727279029
+19,26,0.5957186196159159,1.5999999999999996,1.38485213861478,0.0006991901903242926,0.03672223148315324,0.7263636041602286,2,1.0,0.5523953987197194
+19,27,0.6534237724233073,1.6499999999999997,1.3842749160830816,0.0006989277807841786,0.03642312744692362,0.7409040688754898,2,1.0,0.5780792414110244
+19,28,0.6121317565854992,1.6499999999999997,1.3837943161834672,0.0006984481868075289,0.03644581401874743,0.7408116155509978,2,1.0,0.6071058552849972
+19,29,0.6432854287756954,1.5999999999999996,1.3775190728133997,0.0006955951944502414,0.0364786606982848,0.7249022368536852,2,1.0,0.6442847625856511
+19,30,0.6810249522654207,1.5999999999999996,1.379029420021027,0.000698743725170277,0.036405626409050706,0.7252045813260439,2,1.0,0.6700831742180691
+19,31,0.6948534728755807,1.5999999999999996,1.3767863107555707,0.0006981794700388921,0.0364947380328178,0.7247571171553178,2,1.0,0.7161782429186025
+19,32,0.7059289563505692,1.6499999999999997,1.3741594003755442,0.0006974933165627209,0.036559985122820236,0.7389569612663114,2,1.0,0.7530965211685638
+19,33,0.6121794769261811,1.6999999999999997,1.3715657437399618,0.0006967648117973664,0.03655639794501979,0.7526803997401514,2,1.0,0.7072649230872704
+19,34,0.6759153197146213,1.6499999999999997,1.3737517282940823,0.0006955242153430527,0.036561939680243155,0.738877554010117,2,1.0,0.7530510657154038
+19,35,0.7108946572764779,1.6499999999999997,1.375263642642146,0.0007000319004251626,0.03614447162758096,0.7391708917783673,2,1.0,0.7696488575882598
+19,36,0.6959655230655342,1.6499999999999997,1.3724063111568672,0.0006994204769224049,0.03638486058434532,0.7386193935910434,2,1.0,0.8198850768851139
+19,37,0.6283183653619261,1.6999999999999997,1.3849947172939194,0.000699709056029335,0.036601099356135,0.7551728358217064,2,1.0,0.7610612178730869
+19,38,0.6637182402817188,1.6499999999999997,1.373848065391809,0.0007040163740795283,0.036547334394844366,0.7388994173704069,2,1.0,0.7790608009390625
+19,39,0.7228671762966671,1.6499999999999997,1.3755908680029085,0.0007016873672995053,0.03651394781783954,0.7392346132403276,2,1.0,0.8095572543222236
+19,40,0.6753022905321603,1.6499999999999997,1.3850748273471911,0.0007004927427648645,0.03642906782554363,0.7410581950366391,2,1.0,0.8176743017738676
+19,41,0.7023295050954131,1.5999999999999996,1.3844639641295364,0.0007007827716593886,0.036764965694520965,0.7262870771995712,2,1.0,0.8410983503180436
+19,42,0.6871640701504208,1.5999999999999996,1.3841814664795382,0.0006997714096901374,0.03672191181907266,0.7262305125697686,2,1.0,0.8572135671680692
+19,43,0.6427423182163465,1.6499999999999997,1.3833861821408169,0.0006998966475082935,0.036443440979070076,0.7407337984734697,2,1.0,0.8091410607211551
+19,44,0.6790363082554356,1.5999999999999996,1.383500003269347,0.0007010722104019369,0.036632149491866696,0.7260955207441572,2,1.0,0.8301210275181184
+19,45,0.7394033907161132,1.5999999999999996,1.3824755911581073,0.0007014868181965504,0.03650845434484804,0.725891902638086,2,1.0,0.8646779690537107
+19,46,0.6518869225148121,1.5999999999999996,1.384161180857791,0.0007008151971372985,0.03661141926720456,0.7262268944236528,2,1.0,0.8396230750493734
+19,47,0.7156864542164119,1.5499999999999996,1.3840775882148486,0.0007020081530077738,0.03671552566415013,0.7110484624463987,2,1.0,0.8856215140547059
+19,48,0.6484613559804442,1.5499999999999996,1.3840523810528074,0.000700775914582078,0.03655288990896356,0.71104277703849,2,1.0,0.828204519934814
+19,49,0.7141598269578232,1.4999999999999996,1.3837600333255549,0.0007016930234912753,0.036614302434153964,0.6953312901418749,2,1.0,0.8805327565260772
+20,0,0.1837000354260201,1.4999999999999996,1.386217774746876,0.0007001937701353912,0.036348293818066556,0.6958510673532611,0,0.20038255309397895,0.1784900472947617
+20,1,0.15341794291860855,1.4499999999999995,1.3859518600758096,0.0006999592709933888,0.03677560289965931,0.679690923880891,0,0.23254694246393162,0.20133055311011971
+20,2,0.18948592725364152,1.3999999999999995,1.3857990586877533,0.0007000927948834541,0.03644102025236594,0.663113311357512,0,0.27315162770104,0.20075092057741842
+20,3,0.1995407287225516,1.3999999999999995,1.385833246374235,0.0006999902947643449,0.03677095373432511,0.6631209028452616,0,0.27485625648886614,0.2319940870900172
+20,4,0.24702283996836058,1.4499999999999995,1.385824010657729,0.0006999070572100991,0.03636253003281925,0.6796630662587407,0,0.3503327751162678,0.22296576640617816
+20,5,0.20797814560503308,1.4499999999999995,1.3859557281946515,0.000700107205220002,0.0367606428609121,0.6796918304267664,0,0.34768722143660535,0.2296775234346364
+20,6,0.24837486619983,1.3999999999999995,1.3860643864254028,0.0007000832680842401,0.03651011875533609,0.6631725771732228,0,0.38212394809442823,0.2517509565401957
+20,7,0.26450433564385056,1.3999999999999995,1.386032736794117,0.00070000535076785,0.03677679152588788,0.6631654725996243,0,0.4130692794874244,0.26425541282960263
+20,8,0.33052228695808095,1.4499999999999995,1.385858603786851,0.0007005328950753732,0.0363646617310736,0.6796708703817849,0,0.5126324118745782,0.2515644073608322
+20,9,0.3174482966606096,1.4499999999999995,1.385765796806651,0.0007007566641647011,0.03672813746461021,0.6796507617001687,0,0.5510995190849884,0.2566949634220473
+20,10,0.3881980895054369,1.4999999999999996,1.3860073877588375,0.0007005575548819947,0.036615532834911195,0.6958066927172966,0,0.655677424249037,0.2530903993527404
+20,11,0.42221553916552795,1.4999999999999996,1.380772571557558,0.0006962671222268291,0.03651568263100008,0.6946957385995893,0,0.754662298363229,0.2345020660674547
+20,12,0.439870015926538,1.4999999999999996,1.3797684805877366,0.000695580974831421,0.036532401752968895,0.6944824445705815,0,0.8224010022622044,0.23636538340552082
+20,13,0.47879696132958194,1.5499999999999996,1.3801744973276533,0.0006964778218083139,0.0365234430069276,0.7102436027107762,0,0.9060372927279691,0.22127348079464765
+20,14,0.5129358743223241,1.5499999999999996,1.3804327050848548,0.0006972338250134534,0.03654722757620766,0.7102970495032159,0,1.0,0.20978624774108026
+20,15,0.4646154317067155,1.5499999999999996,1.3802445258085783,0.0006978250650588893,0.036432408097184996,0.7102585686961091,0,1.0,0.21538477235571832
+20,16,0.5039618712397436,1.4999999999999996,1.3823159796361157,0.0006982267843378949,0.0365722464531287,0.6950238178894452,0,1.0,0.17987290413247836
+20,17,0.49999552538981423,1.4999999999999996,1.3737103907680803,0.0007125050666447267,0.03659881559093929,0.6932027461543508,0,1.0,0.16665175129938067
+20,18,0.45636307967482764,1.5499999999999996,1.375263832473812,0.0007094382434246362,0.03669900852811269,0.7092373025268938,0,1.0,0.18787693224942537
+20,19,0.49890396120838165,1.4999999999999996,1.3750903674658235,0.0007117875569482165,0.036674516060169346,0.6934958462234879,0,1.0,0.1963465373612722
+20,20,0.5001607934106076,1.4999999999999996,1.3775812487530392,0.0007094491248176085,0.03666918930632051,0.6940240578592557,0,1.0,0.20053597803535866
+20,21,0.49323240043161326,1.5499999999999996,1.3820978090326836,0.0006973157602741272,0.03649927542609731,0.7106396001992167,0,1.0,0.17744133477204418
+20,22,0.5030731484100978,1.5999999999999996,1.3816711411721085,0.000703187308574256,0.036506141124019106,0.7257324867980178,0,1.0,0.1769104947003256
+20,23,0.4489430678993341,1.6499999999999997,1.3832288266237294,0.0007021289416976148,0.03653272760117242,0.7407044351121631,0,1.0,0.1631435596644469
+20,24,0.47190260251372396,1.5999999999999996,1.3831799924341355,0.0007032436193515386,0.03666872603613218,0.7260327359509471,0,1.0,0.17300867504574632
+20,25,0.4743093544955588,1.5999999999999996,1.3822774463754548,0.000703706444977741,0.036306364532548985,0.7258533588108043,0,1.0,0.18103118165186255
+20,26,0.49871745167870823,1.6499999999999997,1.3813147523061782,0.0007040731305559449,0.036734678561088065,0.7403373935236808,0,1.0,0.1623915055956941
+20,27,0.4866647447131035,1.6499999999999997,1.3826526297896065,0.0007027002708663919,0.03674301325033713,0.7405939741297556,0,1.0,0.12221581571034495
+20,28,0.47939378170523467,1.6999999999999997,1.3833302657120496,0.0007016392233224499,0.0365173369606441,0.7548656842991476,0,1.0,0.13131260568411557
+20,29,0.4778540251843268,1.7499999999999998,1.3841318983694415,0.0007008789020322721,0.03651327025609214,0.7686197043610976,0,1.0,0.12618008394775607
+20,30,0.4784234803925227,1.7999999999999998,1.384522025246682,0.0007002560621541475,0.036503708570010125,0.7817549027664364,0,1.0,0.12807826797507568
+20,31,0.4809363412423184,1.8499999999999999,1.384613931417161,0.0006997188436163916,0.03647225404114311,0.7942952522654292,0,1.0,0.136454470807728
+20,32,0.4473345581061127,1.9,1.3844943441006365,0.0006992738610781055,0.036520256776558555,0.8062605740031774,0,1.0,0.15778186035370895
+20,33,0.47269706310700793,1.8499999999999999,1.3847955401860723,0.0006998753835558607,0.036626103297468494,0.7943249749403006,0,1.0,0.17565687702335972
+20,34,0.4806243197438959,1.8499999999999999,1.3842701691467434,0.0006998956424980316,0.03669968820949722,0.7942391369471768,0,1.0,0.20208106581298618
+20,35,0.4857643660079051,1.9,1.3828852452025395,0.0006978826932996091,0.036260050840360776,0.806008666663237,0,1.0,0.2192145533596836
+20,36,0.49093837282351394,1.95,1.382137776627165,0.0006974565999029298,0.03641145409416162,0.8173555301019756,0,1.0,0.2364612427450464
+20,37,0.5068563109478351,2.0,1.381303063385893,0.0006970809749341817,0.03655595853370265,0.8281677791815957,0,1.0,0.22285436982611684
+20,38,0.46934411807902726,2.0,1.3816498909669563,0.0006969778317631218,0.036606321807612086,0.8282170998292037,0,1.0,0.23114706026342408
+20,39,0.4967486504719234,1.95,1.3828445729240886,0.00069828404294102,0.0364661190416333,0.8174612677905181,0,1.0,0.2558288349064112
+20,40,0.5219109170231111,1.95,1.3818366062773677,0.0006978435888326873,0.03656935647341471,0.8173106810139152,0,1.0,0.23970305674370365
+20,41,0.5195264582927547,1.95,1.3822574034338955,0.0006976221638350772,0.03655425111858546,0.8173734373965836,0,1.0,0.23175486097584896
+20,42,0.5161812905731783,2.0,1.3823237246695232,0.0006974413527420604,0.03664401275864031,0.8283130791658678,0,1.0,0.22060430191059424
+20,43,0.4991022383545405,2.0,1.3822262017416493,0.0006973149511757573,0.036494209865293954,0.8282991739817577,0,1.0,0.26367412784846816
+20,44,0.5137320175231592,2.0,1.3814306623492194,0.000696787278765684,0.036635347950116734,0.8281858529252638,0,1.0,0.245773391743864
+20,45,0.5119388183259181,2.0,1.3818706061870403,0.0006970936583659518,0.03646469634615042,0.8282485324424225,0,1.0,0.23979606108639354
+20,46,0.5132506597649997,2.0,1.3819819890069758,0.0006974389262215443,0.0363993827273575,0.8282644746158863,0,1.0,0.24416886588333223
+20,47,0.4931648198119488,2.0,1.3818431707756207,0.000697693904848525,0.03662864717081556,0.8282448004170277,0,1.0,0.24388273270649605
+20,48,0.5157810428928252,1.95,1.381148895299235,0.0006969713069144502,0.0364768018928721,0.8172077131738404,0,1.0,0.2192701429760838
+20,49,0.48961392751827965,1.95,1.3809662455081322,0.0006973406435868691,0.03646975955744055,0.8171805378564255,0,1.0,0.23204642506093207
+21,0,0.15220194814941718,1.9,1.3862215875695831,0.0007001782291712941,0.03634179213404211,0.8065305166577685,1,0.11679105157397265,0.21828509173276034
+21,1,0.20238231398466838,1.8499999999999999,1.3862014702482317,0.000700136203610806,0.03674822196897037,0.794554655790665,1,0.1719150466882297,0.2787209843645884
+21,2,0.1756584676792744,1.8499999999999999,1.3861715637056176,0.0007001578200957296,0.036675801576070546,0.794549780934141,1,0.22468975761384552,0.25260854877912053
+21,3,0.19569863961850723,1.7999999999999998,1.3859414518054436,0.0006999334477898614,0.03650502616682087,0.7819968702055022,1,0.24556268028175066,0.25824522501935665
+21,4,0.26236280319332217,1.7999999999999998,1.3859690293545617,0.0006999791564077679,0.03677280215404749,0.7820015871122472,1,0.29169162390415343,0.3189538454388693
+21,5,0.23972530218436058,1.7999999999999998,1.3858911139470296,0.000699993225170082,0.036462812952550036,0.7819883089800863,1,0.30370550385101613,0.3274770021465139
+21,6,0.31296379199456387,1.7499999999999998,1.3859006989362743,0.0007000907419937991,0.036711950689054376,0.7689338444183135,1,0.34761007855064296,0.41306586858102234
+21,7,0.28940238096964277,1.7499999999999998,1.3862173368243373,0.0007001750020232679,0.03662955997138086,0.768990128070303,1,0.3610229556541195,0.4166439956933165
+21,8,0.2911610494016763,1.6999999999999997,1.386150013774048,0.0007001998284133756,0.03660101633112311,0.7553865533119117,1,0.4136880309721085,0.3856194567094431
+21,9,0.3063858011902225,1.7499999999999998,1.3857039233617523,0.0006999725022430929,0.036680039146244514,0.7688988385283053,1,0.416217212318429,0.399663054209503
+21,10,0.30212894092043663,1.7999999999999998,1.3860100215773015,0.0007000356774259728,0.036408488558381955,0.7820085944553421,1,0.45784090716725867,0.36330859351177713
+21,11,0.3043488152731466,1.8499999999999999,1.3859313450954867,0.0007000664893738435,0.03664360997232722,0.7945105349492009,1,0.48800703188180494,0.33048667506808194
+21,12,0.3296708205964058,1.9,1.3858124758016368,0.0007000807269672404,0.03676709231239068,0.8064666408076872,1,0.4989280301729365,0.3669986950907705
+21,13,0.40317416312838245,1.9,1.386045705267264,0.0007000848479981594,0.036751958524398096,0.8065030415267528,1,0.5599682499947733,0.4306228771015772
+21,14,0.38807505889134253,1.9,1.3858631025095924,0.0007003158277978465,0.03638782543578787,0.8064746157963811,1,0.5848964969310532,0.44705486706307074
+21,15,0.40304801630561077,1.95,1.385662301807437,0.0007004035427153476,0.036728174769669976,0.8178819799825467,1,0.6118434058671951,0.4610355131957757
+21,16,0.4110134983975011,2.0,1.3850295039501808,0.0007000913507607257,0.03675077614838333,0.8286982800684957,1,0.6270859081723488,0.4672637837618719
+21,17,0.48180276015656404,2.0,1.3856369246872915,0.0007000947241385944,0.036753027040231104,0.8287844917038063,1,0.6841778277817644,0.5271054301461943
+21,18,0.46411509119658767,2.0,1.3854372777609716,0.0006997556362204167,0.03644090333285961,0.82875606354767,1,0.7137914420520661,0.5286617145858706
+21,19,0.5364966049410643,2.0,1.3858931911275,0.0006999094867547553,0.036655223401668116,0.828820800480252,1,0.7718029565213833,0.5925847411083698
+21,20,0.5001102537394366,2.0,1.3855956144139372,0.0006996913426135585,0.03675636474912215,0.8287785151816566,1,0.8089961304517033,0.5550393385291842
+21,21,0.5265782448763482,1.95,1.3853093461453527,0.0006995690589943482,0.03646192841095713,0.8178291523181126,1,0.8422625088419111,0.5655774711319459
+21,22,0.5412772414206855,1.95,1.3848617934492085,0.0006991670880053358,0.03672876147858717,0.8177623445512604,1,0.8675360329826103,0.5808760940921375
+21,23,0.539524920524798,2.0,1.384284059407023,0.0006987743635214418,0.03650293784309226,0.8285920586426461,1,0.9068624919104583,0.5559330792020486
+21,24,0.5584464801334432,2.0,1.3842253630096497,0.0006987435495044643,0.036484913161575996,0.8285837132402276,1,0.9258962788060621,0.5602932287033946
+21,25,0.6056901857699142,2.0,1.3835660546883526,0.0006982556116668307,0.036537446741074286,0.8284899109164964,1,0.9657022076168089,0.5980310090773017
+21,26,0.6099431360768939,2.0,1.3837468148880299,0.0006984838947913569,0.036696062488468156,0.828515659267396,1,1.0,0.6331437869229797
+21,27,0.6549543120662489,2.0,1.3834586726583586,0.000698837249576218,0.03648717010140795,0.8284748173020157,1,1.0,0.6831810402208295
+21,28,0.608276414206019,2.0,1.383089665961701,0.0006991404360048407,0.036518602913569745,0.8284224596987325,1,1.0,0.6609213806867299
+21,29,0.6139175922519884,1.95,1.3844568100709829,0.0006993532603315209,0.03673859911623502,0.8177020387926822,1,1.0,0.6463919741732944
+21,30,0.6404406747005094,2.0,1.384363376850321,0.0006997845948097735,0.036653928008648626,0.8286036105337163,1,1.0,0.668135582335031
+21,31,0.6052734521822758,2.0,1.3839433786428896,0.0006990710454407487,0.0365567473568831,0.8285437515635115,1,1.0,0.6509115072742525
+21,32,0.6637919491889265,1.95,1.3850445065475085,0.0006993963581247906,0.0367369460224002,0.8177896404991212,1,1.0,0.7126398306297548
+21,33,0.6334360798101506,1.95,1.3847447620318103,0.0006994743419657608,0.0366667794752097,0.8177449946359323,1,1.0,0.7114535993671686
+21,34,0.6769183984490388,1.9,1.3847067802728927,0.0006999339230864051,0.0367145084033856,0.8062939615043376,1,1.0,0.7563946614967958
+21,35,0.6918566120304848,1.9,1.3842547171499802,0.0007002291907651458,0.03673095417706597,0.8062234389546988,1,1.0,0.8061887067682825
+21,36,0.7150860666555661,1.95,1.385293686257544,0.0007009969164063966,0.0365403121372851,0.8178272446853756,1,1.0,0.8836202221852199
+21,37,0.6895464222363799,1.95,1.3847723038073405,0.000701371075328432,0.03670113332480857,0.8177496647349785,1,1.0,0.8984880741212659
+21,38,0.7356631924032347,1.9,1.384448776727099,0.0007022177970158418,0.03636628251192609,0.8062543758126938,1,1.0,0.9522106413441156
+21,39,0.7075412546140862,1.9,1.383660450604503,0.0007029262239100405,0.03651066211400186,0.8061314244629205,1,1.0,0.9584708487136206
+21,40,0.75,1.8499999999999999,1.3831151852028143,0.0007040838359334609,0.03671680687841925,0.7940516913023896,1,1.0,1.0
+21,41,0.72,1.8499999999999999,1.3820831634735713,0.0007051270129695706,0.03655496914801286,0.7938832112497882,1,1.0,1.0
+21,42,0.75,1.7999999999999998,1.3813031088720198,0.0007065955834165338,0.0367803159809036,0.7812073790807872,1,1.0,1.0
+21,43,0.72,1.7999999999999998,1.380020618816165,0.0007080081053560653,0.036768326735707686,0.780988576946649,1,1.0,1.0
+21,44,0.7023521443945844,1.7499999999999998,1.3790084655257517,0.0007097685401412178,0.03636377469184289,0.7677104522483995,1,1.0,0.9745071479819477
+21,45,0.6880538514095085,1.7999999999999998,1.379878693237299,0.0007074675239673437,0.036497891910771796,0.7809641153156089,2,1.0,0.9268461713650281
+21,46,0.7414925290192014,1.8499999999999999,1.3840594112379323,0.0007020457412637218,0.03667765145157561,0.7942053948907953,2,1.0,0.9716417633973377
+21,47,0.7799999999999999,1.8499999999999999,1.384046127633116,0.0007008016653089017,0.03674419106635474,0.7942028170926719,2,1.0,1.0
+21,48,0.75,1.8499999999999999,1.385332993939937,0.0007005148090731508,0.036597951239270045,0.7944129752436581,2,1.0,1.0
+21,49,0.75,1.7999999999999998,1.3850563100967523,0.0006997813422740948,0.03652586604390305,0.7818458836734952,2,1.0,1.0
+22,0,0.015516798054678524,1.8499999999999999,1.3862788331058835,0.0007001642468131774,0.036353364652249025,0.7945672931815935,1,0.14080634485173604,0.16398086704661372
+22,1,0.060821879810720264,1.7999999999999998,1.385785851955688,0.0007001653589559321,0.03673899728170401,0.7819704218052377,1,0.16608592500132938,0.18129169936729503
+22,2,0.033572381104887555,1.7999999999999998,1.38572720094393,0.00070017030952484,0.03665568685157397,0.7819604237597425,1,0.19742424828108673,0.14867560597484292
+22,3,0.15558968072065532,1.7499999999999998,1.3857614298056204,0.0007002933352103645,0.036574376308756845,0.7689091709029314,1,0.26327283585441075,0.13426848792963672
+22,4,0.17834107226237683,1.7499999999999998,1.3859987005045213,0.0007001312385000452,0.03676463096565597,0.7689512707372286,1,0.29047857492139234,0.14049880764606631
+22,5,0.1770011011118167,1.7499999999999998,1.3860240913122055,0.0007002581403165359,0.03639460726329581,0.7689558268611609,1,0.3354637994954553,0.1093852710454485
+22,6,0.18390592268649716,1.7999999999999998,1.386013952403048,0.0007001587228630058,0.036765430893390086,0.7820093064982941,1,0.3829871128327815,0.06903692517794854
+22,7,0.2391555373124938,1.8499999999999999,1.3859849014017733,0.0007000573362905833,0.03670676647300382,0.7945192756150616,1,0.41457831523794536,0.11108070405771883
+22,8,0.21964588860518558,1.8499999999999999,1.3861427747714552,0.0007001005535534293,0.03638620550224407,0.7945450626796502,1,0.44528435020421103,0.10510716174500379
+22,9,0.232785894504077,1.9,1.3861808673912261,0.0007000930380472203,0.03673320754307937,0.8065241360538755,1,0.48197076141324147,0.09999196646260126
+22,10,0.24952131784701584,1.95,1.3861785408313194,0.0007000963059551745,0.03677604168732612,0.8179587702108652,1,0.49068139786834314,0.1108291956655953
+22,11,0.31407702866804815,2.0,1.3862481170094956,0.0007001450538593969,0.03665393140541135,0.8288712172081619,1,0.5248304805806053,0.18048278811935337
+22,12,0.29215267998697814,2.0,1.3861698594522325,0.0007001230186632278,0.0364281288884968,0.8288601103278088,1,0.541696755078886,0.18491325985141233
+22,13,0.3280025497212447,1.95,1.3862013874375458,0.0007002286728648762,0.03670064084279824,0.8179622115154271,1,0.5606232909626895,0.21251077778722963
+22,14,0.3064830130263152,1.95,1.385987964421246,0.0006999751369660757,0.03661598223945526,0.8179303551516514,1,0.591188674583955,0.20002514397577734
+22,15,0.3161510883512811,1.9,1.3858619218531438,0.00069994307574594,0.03654409041266189,0.806474315173951,1,0.6380131823916954,0.16981938464867638
+22,16,0.3217579456703401,1.95,1.3862943611198844,0.0007001722195526524,0.036709825353979306,0.8179760380796509,1,0.6777543920465522,0.13552062950573068
+22,17,0.39997974276995535,2.0,1.3862695318186877,0.0007001709894427567,0.03658977065071316,0.8288742621005171,1,0.7268213405334253,0.19750402185528415
+22,18,0.434709687480054,2.0,1.3862485725365523,0.000700142862185966,0.0364676573181415,0.8288712812000556,1,0.7767992597728975,0.2466332785696499
+22,19,0.4084834156267111,2.0,1.3862354174993428,0.0007002032512065605,0.03667677323498579,0.8288694323648386,1,0.7864941445531806,0.24628585935146277
+22,20,0.4752458574475133,1.95,1.3861028320544952,0.0007002212569334986,0.036770292110511436,0.8179475339472608,1,0.8409640768071873,0.29620075574879456
+22,21,0.4898088833798642,1.95,1.3856017438594543,0.000699706576964574,0.03660066182662298,0.817872752003519,1,0.8692364932874422,0.34038095354962433
+22,22,0.5460109564849661,2.0,1.3852809176714893,0.0006995914680519224,0.03675941104989256,0.8287338252668508,1,0.9214029222345816,0.4248326253037781
+22,23,0.5192079536581881,2.0,1.3833536473015904,0.0006981478883167444,0.03668000808010366,0.8284596962969266,1,0.9247322168224744,0.4310502230973276
+22,24,0.563394623270786,1.95,1.3826013134298565,0.0006975656297088586,0.036526577813565726,0.8174247517744543,1,0.9495483663657294,0.478584255748314
+22,25,0.5862491179186539,1.95,1.3824918583327788,0.0006975938884541038,0.036638548328663936,0.817408424396424,1,0.9799712172877673,0.5142021033451565
+22,26,0.571588600497897,1.95,1.3821918248778258,0.0006977067481817727,0.03636951763148859,0.8173636732663786,1,0.9807090005110652,0.5310166676449026
+22,27,0.6295253279618627,2.0,1.381356899070696,0.000696870474107658,0.03648429448791003,0.8281753802733783,1,1.0,0.5984177598728754
+22,28,0.5757359409336212,2.0,1.383143017539674,0.0006979783151035273,0.03651035941703975,0.8284297125357977,1,1.0,0.5524531364454041
+22,29,0.5873710059344904,1.95,1.3834415766334869,0.0006982318003695131,0.03667104169766769,0.8175503192267566,1,1.0,0.5579033531149679
+22,30,0.6373780146473024,2.0,1.3825269532045623,0.0006975135739685696,0.03656195411925515,0.8283419990120895,1,1.0,0.6245933821576743
+22,31,0.6327187090699795,2.0,1.3840468516249111,0.00070038035891344,0.03658549377018361,0.8285588223064246,1,1.0,0.6423956968999315
+22,32,0.6095459078446126,2.0,1.3837059136311747,0.0006994834361293174,0.036697401940893846,0.8285101320746004,1,1.0,0.6318196928153752
+22,33,0.6450374609432034,1.95,1.3836369620531361,0.0007001550291558156,0.0364691177177379,0.8175800351310274,1,1.0,0.6834582031440111
+22,34,0.629746079396837,1.95,1.3831115762840969,0.0006992183567229493,0.036668692295828295,0.8175013849986007,1,1.0,0.6991535979894568
+22,35,0.6093412401798335,2.0,1.3828729545093346,0.0006997785276431233,0.03628344816593484,0.8283918358456076,1,1.0,0.6644708005994447
+22,36,0.6509219006851971,1.95,1.3844145884210683,0.0006998145583527156,0.03654782379662123,0.8176958824513212,1,1.0,0.7030730022839902
+22,37,0.6117363092393462,1.95,1.383880536121814,0.0006990243010453034,0.036634565739867106,0.8176160224408918,1,1.0,0.6724543641311538
+22,38,0.6288694617324035,1.9,1.385017430141618,0.0006993825308893732,0.0364836607394998,0.8063423032252073,1,1.0,0.6962315391080117
+22,39,0.6349065862285019,1.95,1.3847663806229074,0.0006994958380846574,0.03644298646513088,0.8177482230153331,1,1.0,0.7163552874283395
+22,40,0.6158016890037863,2.0,1.384390788163935,0.0006995951566094033,0.03664964212169182,0.8286074496373488,1,1.0,0.6860056300126208
+22,41,0.60876129201737,2.0,1.3853011621799673,0.000699705453892042,0.03675000727487142,0.8287367309897705,1,1.0,0.6625376400578997
+22,42,0.6208668549035211,2.0,1.3857676264447871,0.0006998209456662422,0.036591682405572416,0.8288029598931939,1,1.0,0.6695561830117368
+22,43,0.6467332914032168,2.0,1.3853617483360494,0.0006996643211460065,0.03653967977791948,0.8287453182669509,1,1.0,0.6891109713440559
+22,44,0.6310298015308494,2.0,1.3851170013219947,0.0006993485308074466,0.03674430321252807,0.8287104897286277,1,1.0,0.7034326717694981
+22,45,0.6321399121974687,2.0,1.3845991524398216,0.0006991028342411229,0.03657503328631033,0.8286368990933146,1,1.0,0.7071330406582287
+22,46,0.6614932771938153,2.0,1.3838869484810505,0.0006987918409319796,0.036429154850284556,0.8285356556723563,1,1.0,0.7383109239793844
+22,47,0.675963386870985,2.0,1.3835153317521383,0.0006983016603106904,0.03666866759628702,0.828482716439255,1,1.0,0.7865446229032831
+22,48,0.6323230645042635,2.0,1.3828986058830004,0.0006978167222631499,0.03649560246072103,0.8283949246163166,1,1.0,0.741076881680878
+22,49,0.6432668833987384,1.95,1.3836700532079427,0.0006985097614682791,0.03644302971844532,0.8175844796404018,1,1.0,0.7442229446624611
+23,0,0.138764764471481,2.0,1.386214609198583,0.0007001398040213362,0.03634281328497892,0.8288664627938078,0,0.12089823804475519,0.23468489751192978
+23,1,0.2051915330640079,1.95,1.3862064337123372,0.0007001608211666998,0.03673578467045149,0.8179629426985235,0,0.2210882634410195,0.22252075895866702
+23,2,0.22312494406587777,1.95,1.3860052421699829,0.0006999687477679121,0.03671312801808117,0.8179329262419158,0,0.2950246870439416,0.21705023082767047
+23,3,0.2226524652925981,2.0,1.3860826058570186,0.0007000326804981266,0.03637890582821514,0.8288477073298988,0,0.3267616934479968,0.23982595971133122
+23,4,0.26696698660391277,2.0,1.3860158019504911,0.0006999747170332416,0.036713551055679125,0.8288382139279261,0,0.3999384802827689,0.22330531496935072
+23,5,0.30776442848972385,2.0,1.386056398351578,0.0007000244883540438,0.036741529036766016,0.8288439871981832,0,0.4892732055724747,0.20685048753577995
+23,6,0.3416920345505039,2.0,1.3855419751709452,0.0007008467844945261,0.03634846525723355,0.8287712313239385,0,0.5927999713907084,0.18190681998073518
+23,7,0.36497033115005545,2.0,1.3861965727746277,0.000700232036858716,0.03671254136026917,0.8288639305348992,0,0.6729731975030461,0.1859368404961234
+23,8,0.3824589155758456,2.0,1.3852081721495417,0.0007014904573808811,0.03674181727929736,0.8287240390394639,0,0.7263440753925442,0.17307095139609321
+23,9,0.4233383444235208,2.0,1.3853721982852918,0.0007010152309988957,0.03636881191407963,0.8287471848436229,0,0.8257321960092535,0.14348488673273138
+23,10,0.4438132096131361,2.0,1.3804504526995363,0.000699691884182571,0.03656299276959214,0.8280471572026944,0,0.9031563842783401,0.14183551967266667
+23,11,0.40967598798441957,2.0,1.3805083572140187,0.0006986548195632051,0.03662022279480395,0.8280551064700022,0,0.9081302810983257,0.1547462518169642
+23,12,0.4503454686779221,1.95,1.3810427065860253,0.0007003292698867641,0.03652774150177522,0.8171928535329599,0,0.9360070566049358,0.1864754867864925
+23,13,0.4976045307480198,1.95,1.3799447929989563,0.0007003215626549236,0.03662062757772993,0.8170287782300804,0,1.0,0.19201510249339934
+23,14,0.4591275658037178,1.95,1.3798711798024743,0.0006990326663069388,0.03639008654600955,0.8170173879541717,0,1.0,0.19709188601239258
+23,15,0.4995099991296053,1.9,1.380279182964801,0.0007008112078206011,0.03640729068808078,0.805601778441924,0,1.0,0.19836666376535098
+23,16,0.5056310354807109,1.9,1.379874380953912,0.0006994588109442156,0.03657631800293046,0.8055379518506642,0,1.0,0.18543678493570293
+23,17,0.45701237605773304,1.95,1.3818373300713138,0.0006992212765511542,0.03647494521885376,0.8173112005018014,0,1.0,0.19004125352577675
+23,18,0.48756008293971953,1.9,1.3822148840445014,0.0007004607893349331,0.036512183183779856,0.805904634909524,0,1.0,0.22520027646573162
+23,19,0.47043778000303027,1.9,1.383059457321529,0.0007018254778014532,0.03662263447143096,0.8060371376336829,0,1.0,0.23479260001010088
+23,20,0.49562682520726153,1.95,1.3842847792143194,0.0007014053618632243,0.03655312938286456,0.8176770054009613,0,1.0,0.25208941735753826
+23,21,0.4752440891848232,1.95,1.3842325698044886,0.0007006404746202797,0.036598434873071704,0.8176689937556443,0,1.0,0.2508136306160773
+23,22,0.48028251441688236,1.9,1.3851222294434393,0.0007004883478217774,0.03676102045501263,0.8063590129051486,0,1.0,0.26760838138960785
+23,23,0.4831018868082672,1.95,1.38570250254698,0.0007003778235040127,0.03660829086025467,0.8178879601866524,0,1.0,0.2770062893608906
+23,24,0.48718974484977595,2.0,1.3860749246210962,0.0007002852649869798,0.03664053483007732,0.8288466893364853,0,0.9994025199212243,0.29142912293762074
+23,25,0.5149709500752202,2.0,1.3862473790185699,0.0007002191359435939,0.036643409115214395,0.8288711335449227,0,1.0,0.31656983358406726
+23,26,0.4992657827895117,2.0,1.3862111559116723,0.0007001174606760948,0.036779538639327675,0.8288659666167016,0,1.0,0.3308859426317058
+23,27,0.5422313828667654,2.0,1.386276509147875,0.0007001813898893394,0.036523798355522635,0.8288752547250382,0,1.0,0.30743794288921794
+23,28,0.5197568886521524,2.0,1.3862164175255578,0.0007001223209950743,0.03663260994962887,0.8288667143393212,0,1.0,0.3325229621738413
+23,29,0.5413392798555297,1.95,1.3861396021934267,0.000700083799453928,0.03677966848032318,0.8179529683648529,0,1.0,0.337797599518432
+23,30,0.5393105579231652,1.95,1.386213026220069,0.0007001266386788723,0.03670053864820107,0.8179639141385402,0,1.0,0.33103519307721707
+23,31,0.542558174477351,2.0,1.3861376941762107,0.0007001634815207286,0.0367562084505679,0.8288555590817193,0,1.0,0.3085272482578367
+23,32,0.5211145971618067,2.0,1.3860812746595588,0.0007003168279742424,0.03678636178250384,0.8288475991051434,0,1.0,0.33704865720602223
+23,33,0.5296143512312286,1.95,1.38601603951263,0.0007000832341439998,0.03655852898672197,0.8179345682602118,0,1.0,0.3653811707707619
+23,34,0.512229336171054,2.0,1.3858204464934312,0.0006998609070684907,0.03672809466983548,0.8288104656662457,0,1.0,0.3740977872368468
+23,35,0.5552960067373638,2.0,1.3861064844793087,0.0007000562932774377,0.03677971740402011,0.8288511014044795,0,1.0,0.3509866891245456
+23,36,0.5041855793488795,2.0,1.386040632371414,0.0007000035127690489,0.036566980633761154,0.8288417446475868,0,0.9948372413568173,0.3541689426871752
+23,37,0.5332526545183367,1.95,1.3861754994319713,0.0007001094097469588,0.03658922965558298,0.817958321241686,0,1.0,0.37750884839445575
+23,38,0.5536708802631755,1.95,1.3860063103314746,0.0007000817726332497,0.036364499646892104,0.8179331189740302,0,1.0,0.3789029342105848
+23,39,0.5179379064297234,1.95,1.3861356667617228,0.000700068708468272,0.03675209415183532,0.8179523778607956,0,1.0,0.3931263547657445
+23,40,0.5657491094679363,1.9,1.386220068405768,0.0007002184513061232,0.03670873240398605,0.8065302921612495,0,1.0,0.385830364893121
+23,41,0.5538303871806792,1.9,1.386199883713053,0.0007001095509641331,0.03675435235334527,0.8065271085529997,0,1.0,0.3794346239355971
+23,42,0.558874318577299,1.95,1.3862542923402361,0.0007001735343051397,0.03637040440685101,0.8179700725049046,0,1.0,0.3629143952576631
+23,43,0.5467575861066823,2.0,1.3861457575854408,0.0007002103196783009,0.03668439097035158,0.8288567161940017,0,1.0,0.35585862035560767
+23,44,0.507311387932526,2.0,1.3860935086398665,0.0007004001185129923,0.036785158351704365,0.8288493582323888,0,0.997452963998401,0.36110067444388516
+23,45,0.5502623577320572,1.95,1.3862221361835843,0.0007002635846720382,0.03663193205168516,0.8179653113805958,0,1.0,0.33420785910685735
+23,46,0.5051223934459097,1.95,1.386076677872441,0.000700367481154115,0.03664520623947767,0.8179436828612477,0,1.0,0.3504079781530322
+23,47,0.5512533044514989,1.9,1.3861045555057778,0.0007001725479220699,0.03650092382106575,0.8065122526583702,0,1.0,0.33751101483832924
+23,48,0.5281867282119684,1.9,1.385866125388851,0.0007002102743185056,0.036536572979732965,0.8064750546386124,0,1.0,0.3606224273732279
+23,49,0.5544227565938871,1.8499999999999999,1.3860674714083356,0.0007001051158146772,0.03677944399114537,0.7945327711341539,0,1.0,0.3480758553129568
+24,0,0.1804537300578654,1.8499999999999999,1.3862818424185321,0.0007001649014321931,0.036352695456020524,0.7945677846052985,1,0.1407401609318875,0.24719221895036805
+24,1,0.2132422886940416,1.7999999999999998,1.3862576540075087,0.0007001581684992747,0.03675761678444044,0.7820508474496918,1,0.17126284709124123,0.31579049952515037
+24,2,0.22102565808672434,1.7999999999999998,1.3862056314026925,0.0007001469460420895,0.03664998475351643,0.7820419763802547,1,0.19917584750898387,0.337851063610436
+24,3,0.2756753966617336,1.8499999999999999,1.3861967337452408,0.0007001131346710109,0.036567501859532704,0.794553875082964,1,0.26512155099467866,0.3987559208795403
+24,4,0.2873355711406137,1.8499999999999999,1.3859172332254328,0.0007000884087472132,0.03677468413140534,0.7945082381430252,1,0.2950262952301236,0.431083510161881
+24,5,0.30694315495377805,1.9,1.3860713147086097,0.0007000295639480361,0.03655485728636983,0.8065070207448974,1,0.32852307301721934,0.45177975248963437
+24,6,0.2934787687812365,1.95,1.3861945468283383,0.0007001056898151515,0.03654874500496251,0.8179611563217591,1,0.33285661330902655,0.4677870781920863
+24,7,0.3577866466227835,2.0,1.3861358191782167,0.0007000676167129569,0.03676377090842873,0.8288552659078977,1,0.37564834086736554,0.5250910342527909
+24,8,0.32950155604140346,2.0,1.386184829019736,0.0007001614304426548,0.0367521884341067,0.8288622446632851,1,0.42005960547760474,0.5049257128345385
+24,9,0.32950875179067507,1.95,1.3852408057087118,0.0007005271595890242,0.03636019834982286,0.8178192261208641,1,0.4560578323175405,0.4569520628788628
+24,10,0.3754025029013534,2.0,1.3852085044999114,0.0007001559668978706,0.03674794703068072,0.8287237073766797,1,0.4868503482939789,0.46887454527920625
+24,11,0.3611199357848488,2.0,1.3856441444609557,0.0007000786994537406,0.03675543188157232,0.8287855116449218,1,0.49698853755506267,0.4744150692094124
+24,12,0.40237670779878215,2.0,1.3853579428941314,0.000700056301777788,0.03645559148484229,0.8287448894383033,0,0.5347649210271077,0.4949024646264637
+24,13,0.4318469423181093,2.0,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8288777842514964,0,0.611673401641344,0.49059193887190566
+24,14,0.4780267415070211,2.0,1.3862943611198846,0.0007001722195526525,0.03676835788889028,0.8288777842514964,0,0.7171999323218827,0.4704892285942267
+24,15,0.47015903189349495,2.0,1.3862407843927431,0.0007001716349733162,0.03645190376429853,0.8288701846607625,0,0.7547207510797443,0.4942357715386574
+24,16,0.48710902064678563,2.0,1.3862175583021488,0.0007001177579817775,0.03668159577682902,0.8288668748601418,0,0.7808725545162691,0.5158666628009264
+24,17,0.5119428634217857,2.0,1.3860801217010086,0.0007000665836379692,0.03676696868106317,0.828847364548222,0,0.8258289213748451,0.5387043162394922
+24,18,0.49570804480017244,2.0,1.3793939298967004,0.0006988782050044325,0.03622419307781605,0.8278964401223734,0,0.8294157373631826,0.5464724995163311
+24,19,0.5710996507289992,2.0,1.3794497079379267,0.000697833774030004,0.036484779349426545,0.8279040898326719,0,0.9099239566563476,0.5237668935548666
+24,20,0.6026049247972347,2.0,1.3802781212275326,0.0007000135550453774,0.03664954999428497,0.8280227100006579,0,0.9985840762961412,0.5105709809292606
+24,21,0.5821747220755096,2.0,1.3806090916734728,0.0007021317650998819,0.036511888914869436,0.8280704385792237,0,1.0,0.5405824069183652
+24,22,0.605373145921758,1.95,1.3823851060977317,0.0007012480592695552,0.03660689803969171,0.8173935817386853,0,1.0,0.5512438197391928
+24,23,0.5922336093665923,1.95,1.3810859263792838,0.0007013409831704662,0.036352889410559475,0.8171996122614724,0,1.0,0.5741120312219742
+24,24,0.6117361880605845,2.0,1.3824229663168424,0.0007004817230485637,0.036551125777233025,0.8283280565997247,0,1.0,0.572453960201948
+24,25,0.6150514798782571,2.0,1.381261739621739,0.0007003589366269315,0.03649919769171285,0.8281628314559698,0,1.0,0.5835049329275237
+24,26,0.6012855239989718,2.0,1.379796383783027,0.0007002305415064154,0.03665315365067438,0.8279541610349582,0,1.0,0.6042850799965727
+24,27,0.5835124914077854,2.0,1.3856529904895019,0.0007003725338136623,0.036529815176869075,0.8287868502832357,0,1.0,0.6117083046926179
+24,28,0.6065815409204658,2.0,1.385929098300522,0.0007001548929053025,0.03663104370821956,0.8288259644510854,1,1.0,0.6219384697348859
+24,29,0.6378511894826611,2.0,1.3842919923164074,0.0006994455926739706,0.0367125152490406,0.8285933759936801,1,1.0,0.6595039649422034
+24,30,0.6451739936994325,2.0,1.3835146014071635,0.0006993347208581892,0.03642689329324028,0.8284829062517629,1,1.0,0.6839133123314417
+24,31,0.6078679131203336,2.0,1.3825215962166815,0.0006992136958345767,0.03651261644829632,0.8283417207794632,1,1.0,0.6595597104011118
+24,32,0.667036964123317,1.95,1.3829534464708866,0.0007006976016922237,0.03672100959659051,0.8174782334028929,1,1.0,0.7234565470777233
+24,33,0.6646888745700493,1.95,1.384086701180217,0.0007001989523520808,0.03667722726644289,0.817647114056162,1,1.0,0.7489629152334976
+24,34,0.6485297429991407,2.0,1.3830431896973037,0.0007001568067389464,0.03664951661386599,0.8284161424624878,1,1.0,0.7617658099971355
+24,35,0.6510529975031607,2.0,1.3832078989970678,0.0006992677769566555,0.03668208082873879,0.8284393007320332,1,1.0,0.7701766583438687
+24,36,0.6799559119770474,2.0,1.382934216057628,0.0006984790747049076,0.03643595728609288,0.8284001750959321,1,1.0,0.7998530399234913
+24,37,0.6388357862900522,2.0,1.3818945691050124,0.0006981847303421453,0.036437794052421785,0.8282522516214083,1,1.0,0.762785954300174
+24,38,0.6937961014465746,1.95,1.3825451672933329,0.0006997555509838179,0.03671297144446203,0.8174170259667485,2,1.0,0.8126536714885815
+24,39,0.6364096346797947,1.95,1.385313935169079,0.0007002334838667169,0.036744532767857906,0.8178300339886433,2,1.0,0.7880321155993157
+24,40,0.6721327175413631,1.9,1.3753020678608912,0.0007014225334162786,0.03651112787255208,0.8048213309301985,2,1.0,0.8071090584712102
+24,41,0.7063300027132836,1.9,1.3850379540595419,0.0007005886417957791,0.03674119112547131,0.8063458847790261,2,1.0,0.8544333423776118
+24,42,0.6927557678235572,1.9,1.3847618413233285,0.0006998181916502067,0.03635080712448911,0.8063025248653282,2,1.0,0.8758525594118572
+24,43,0.6989818839330613,1.95,1.3844947056949308,0.0007002210825161496,0.03670443293704613,0.8177079463697403,2,1.0,0.8966062797768707
+24,44,0.7303642142318282,2.0,1.384050568497907,0.0007005904026542808,0.03646830762450249,0.8285594099571396,2,1.0,0.9345473807727604
+24,45,0.7411542598845531,2.0,1.383726416228468,0.0006995380293153774,0.03655731034344819,0.8285130605995253,2,1.0,0.9705141996151766
+24,46,0.6787582591590728,2.0,1.3831006591927797,0.0006985940875805605,0.03646227538013304,0.8284238669431023,2,1.0,0.9291941971969097
+24,47,0.770004604073712,1.95,1.3830359434831796,0.0006991890411909916,0.036683279158264595,0.8174900921052024,2,1.0,0.9666820135790398
+24,48,0.6735780168378871,1.95,1.3846128493762873,0.0006994139912004074,0.03672186407604281,0.817725315807277,2,1.0,0.9119267227929572
+24,49,0.6673767320153722,1.9,1.384377878370721,0.0006997544210191081,0.036596614247953324,0.8062425310296047,2,1.0,0.8912557733845738
+25,0,0.026733922908481367,1.95,1.3860172627046485,0.0007000621259691381,0.03641800795373129,0.8179347441282201,1,0.15938246987254265,0.17660311653154767
+25,1,0.03325935536644775,1.9,1.3858216193520234,0.000700443358927646,0.03672809413952668,0.8064681811097828,1,0.19209059960789598,0.15474371841096446
+25,2,0.15936830107166206,1.95,1.3858083675324142,0.0007005458722159086,0.03671239231501401,0.8179037780113103,1,0.2218797223146195,0.16872137381938085
+25,3,0.1596089497540235,1.95,1.3861262438758546,0.0007000887819198065,0.036375090816757244,0.8179509807078214,1,0.2687875847460366,0.14031305285202955
+25,4,0.24009586208236144,2.0,1.3860908552989626,0.0007000411460468649,0.03674905558988008,0.8288488799876567,1,0.3274907307437347,0.19699856594955853
+25,5,0.21839334052415102,2.0,1.3860234335696358,0.0007000224561395924,0.036741082741090746,0.8288393101331225,1,0.38853293488982577,0.17660055522740228
+25,6,0.24182707134532241,1.95,1.3859619358279434,0.000699953896528129,0.036389681832245245,0.8179264726075616,1,0.4066627664953287,0.19720654915730307
+25,7,0.31671517539979466,1.95,1.3862284506670628,0.0007001329243566421,0.03676763819029426,0.8179662126830707,1,0.4753461344971315,0.25525573866980683
+25,8,0.3091748517890431,1.95,1.3859053560424985,0.00069995711157181,0.03667652898605286,0.8179180473959166,1,0.4995663324098768,0.2978277294169745
+25,9,0.3166744181678162,2.0,1.3860436604140978,0.0006999974908553914,0.03646735663028974,0.8288421725061309,1,0.5138430451913266,0.30379066697095186
+25,10,0.361408203475213,2.0,1.3860960293794427,0.0007000456365346562,0.036696974305388784,0.828849615247282,1,0.5608068343673953,0.3236182324275163
+25,11,0.40737281847536105,2.0,1.386223244315135,0.0007001293181111243,0.036760419368322715,0.828867684679639,1,0.6086138910971582,0.37975754012165924
+25,12,0.4531647288321209,2.0,1.3859150396164137,0.0007006661370383748,0.036448279244056726,0.8288241149526206,2,0.6674704697599696,0.4539218030937768
+25,13,0.5137175444644501,2.0,1.386213339177906,0.0007001174211845999,0.036695040015328945,0.8288662762954255,2,0.7269593108502961,0.47644606708110554
+25,14,0.4793966003860838,2.0,1.3862565346773483,0.0007002174419799734,0.0367663955139393,0.8288724317336857,2,0.7675563282854909,0.4745802302396248
+25,15,0.56728590726607,1.95,1.3862541032718414,0.0007001478325051771,0.03644450395455374,0.8179700366998164,2,0.8489746084142112,0.492320213001285
+25,16,0.5279557529233605,1.95,1.3829386467680982,0.0006981037598803145,0.0366503742132056,0.8174752511145852,2,0.8671960989142384,0.5035910445255503
+25,17,0.5580810336199553,1.9,1.382131467487978,0.0006977982262609088,0.03641944398751856,0.8058907533497659,2,0.9154418794635462,0.5396809394484562
+25,18,0.6018915290649949,1.9,1.380979303897134,0.0006973213434995798,0.03660628061172357,0.8057103065963853,2,0.9657099525111478,0.5520251602017856
+25,19,0.552608721586738,1.9,1.3821081771798096,0.0006974717515766025,0.03653149500288195,0.8058870078582772,2,0.9932008556122819,0.5177612644727507
+25,20,0.5885595663626828,1.8499999999999999,1.3831630367170593,0.0006988286140655848,0.0364951977074484,0.7940577977551331,1,1.0,0.5285318878756092
+25,21,0.5584602544119511,1.8499999999999999,1.383371641133328,0.0006981977001468812,0.03654294620704664,0.7940917024237072,1,1.0,0.4948675147065036
+25,22,0.5695779236515206,1.7999999999999998,1.383520193635193,0.0006982248119629289,0.03649724518058893,0.7815832343335999,1,1.0,0.49859307883840187
+25,23,0.5510706766049269,1.8499999999999999,1.3825468670710999,0.0006975401074888147,0.03642086312093449,0.7939565956965932,1,1.0,0.47023558868308984
+25,24,0.5980542944465255,1.9,1.3825654151196942,0.0006975906928181658,0.03636665361250456,0.80595856222265,1,1.0,0.5268476481550846
+25,25,0.6124173997968645,1.9,1.3828179281778479,0.0006979751832492612,0.03634878970289686,0.8059981697686246,1,1.0,0.5747246659895482
+25,26,0.5732404778879732,1.95,1.3826483383306247,0.0006983134851591874,0.03658324809613115,0.8174319929531013,1,1.0,0.544134926293244
+25,27,0.6112298602373332,1.9,1.3825945880223762,0.0006988043922139477,0.0365712723631162,0.8059635041257358,1,1.0,0.5707662007911102
+25,28,0.6001789425967717,1.9,1.3821742853523296,0.0006992853382884642,0.03651614666545765,0.8058979165446031,1,1.0,0.6005964753225724
+25,29,0.6323067488085818,1.95,1.3829314298529076,0.0006996241341462991,0.03666350058064702,0.8174746279901665,1,1.0,0.6410224960286062
+25,30,0.6426351006584171,1.95,1.3819649918576709,0.0006995431432112319,0.03657597423130333,0.8173303574811455,1,1.0,0.6754503355280569
+25,31,0.6493258491572023,2.0,1.380681644562149,0.0006994424424157004,0.03665383771705373,0.8280800019511974,1,1.0,0.6977528305240075
+25,32,0.6121212282641927,2.0,1.3793412972191113,0.0006992446795000218,0.036618999904852866,0.827889045119515,1,1.0,0.6737374275473088
+25,33,0.6294798128884849,1.95,1.3799571190591793,0.0007017692089043817,0.03652716354692574,0.8170310537010343,1,1.0,0.698266042961616
+25,34,0.6781175069319645,2.0,1.379915575220971,0.0007001629138036916,0.036547847015105564,0.8279711194579018,1,1.0,0.7603916897732146
+25,35,0.684602546493483,2.0,1.3820094275336205,0.0006995696847809678,0.036655873280384485,0.82826898366037,1,1.0,0.8153418216449431
+25,36,0.6434626927943955,2.0,1.3810201941016649,0.0007047831268655096,0.03657818101531828,0.8281297139936338,1,1.0,0.7782089759813183
+25,37,0.6600269557157673,1.95,1.3823228115797477,0.000699593967477839,0.03646022086550266,0.8173837895893422,1,1.0,0.800089852385891
+25,38,0.6916175385796546,2.0,1.3806465259720073,0.0007014463738843089,0.03650403407617041,0.8280755728735953,1,1.0,0.8387251285988482
+25,39,0.7243136016250431,2.0,1.3829993730063483,0.0007009432877816133,0.0365000652850788,0.8284101377356993,1,1.0,0.914378672083477
+25,40,0.7246578088011497,2.0,1.3824146128495338,0.0007016002555197984,0.036459368150208296,0.8283271868413582,1,1.0,0.9488593626704986
+25,41,0.6870957822408919,2.0,1.3841885503530635,0.0007010769714690182,0.03674370398363487,0.828579147434041,1,1.0,0.9236526074696396
+25,42,0.6773448320473185,1.95,1.3839437417413856,0.0007000784815382561,0.0365707661826129,0.8176257618636952,1,1.0,0.8911494401577286
+25,43,0.6903405481424789,2.0,1.383408174059498,0.000699128855188341,0.03657896086400199,0.828467723994776,1,1.0,0.9011351604749298
+25,44,0.673033654902929,2.0,1.383290493192064,0.0006997692749176504,0.03671148389445111,0.8284511818760737,2,1.0,0.8767788496764297
+25,45,0.6490973923187665,2.0,1.3846505590125964,0.0006994397558336865,0.036576791674022176,0.8286442942706338,2,1.0,0.8303246410625551
+25,46,0.6826009736195513,1.95,1.3844253123698531,0.0006997622228924142,0.03650385792078851,0.8176974654545774,2,1.0,0.8420032453985044
+25,47,0.6864046756018898,1.95,1.3841312819121325,0.00070023667300259,0.03645449633783779,0.8176537722110271,2,1.0,0.8546822520062992
+25,48,0.7438491343644796,2.0,1.383667643630321,0.000700661685712185,0.03671498610137846,0.8285050293848221,2,1.0,0.8794971145482656
+25,49,0.7490961630288125,2.0,1.385062933389683,0.0007003988361032152,0.036468031712224284,0.828703112871754,2,1.0,0.8969872100960418
+26,0,0.10224622789794897,2.0,1.386143744399969,0.0007000718324584958,0.03633469150290276,0.8288563913271072,0,0.10377240646040516,0.2024575510459564
+26,1,0.14777245360085625,1.95,1.3861373976604223,0.0007000863048006833,0.03673213411936237,0.8179526408427528,0,0.13648797613560265,0.2439242104887174
+26,2,0.20102402454567028,1.95,1.3861206034108198,0.0007000985534213977,0.036716284467622415,0.8179501437107112,0,0.21019749026833673,0.2564834281277853
+26,3,0.15913154450965472,1.95,1.385919602542949,0.0007000325777432636,0.03638740946836138,0.8179201915686309,0,0.20399613673736466,0.2584436327156962
+26,4,0.24511743079472237,1.9,1.3860488401174451,0.0007000488749964535,0.036749841616812426,0.8065035195105277,0,0.306850666450051,0.24125721404900655
+26,5,0.28197005176355605,1.9,1.3859450399489486,0.0007000302665079904,0.03662378468628488,0.8064873145900794,0,0.41062587636311204,0.2257323373943708
+26,6,0.2670075790849823,1.9,1.3854767541983946,0.0007008921380055514,0.0365243446338635,0.8064144899326949,0,0.4289421792181904,0.251435691325687
+26,7,0.29144465520586266,1.95,1.3856572474881528,0.0007006174985435223,0.036778819665316334,0.8178812908732743,0,0.46744087818834074,0.2815610131017545
+26,8,0.3470357942876609,1.95,1.385750034983984,0.0007003672201846519,0.036686041835843605,0.8178950367466306,0,0.5530994775604172,0.25265334421164665
+26,9,0.36032869842889487,1.95,1.3854988654413956,0.0007004115014581035,0.03648075429099484,0.8178576370711441,0,0.6180056112026046,0.24375484649284349
+26,10,0.3601626514684375,2.0,1.383996969302751,0.0007002962288130691,0.03672734458323469,0.8285517125493161,0,0.6544549549596672,0.2612688982819021
+26,11,0.3517545468791261,2.0,1.3843268125597301,0.0006998818578594382,0.03670388201744764,0.8285984452501381,0,0.6825114468596698,0.26249989378419397
+26,12,0.3824236632836481,2.0,1.3846408621324107,0.0006996084490280312,0.036352631867449976,0.8286429652846184,0,0.7049899560749966,0.26809226951216475
+26,13,0.4278539926406108,2.0,1.3847709242676838,0.0006993959212617891,0.03664731210873785,0.8286613721621311,0,0.7647235278061466,0.27321527172717397
+26,14,0.4518203904441079,2.0,1.3851340806440002,0.0007000396573574513,0.03674131512837233,0.8287131103224913,0,0.8255239820213567,0.27203599211855073
+26,15,0.4479787131519678,2.0,1.3855248242164815,0.0007003174389118138,0.036410268016946135,0.8287686471871719,0,0.8528443155138253,0.2894699564881253
+26,16,0.4605971126311945,2.0,1.385362807154041,0.0007005117055509527,0.03665294957089449,0.8287457090735775,0,0.8753437721945219,0.3015320125112859
+26,17,0.4808525020647004,2.0,1.3851100974971193,0.0007007114498050495,0.036765330530907026,0.8287098966650241,0,0.9177451668234329,0.3125147844510908
+26,18,0.5368276073485196,2.0,1.3847480981657412,0.0007008912331157172,0.036474658200654486,0.8286585558688027,0,1.0,0.2894253578283988
+26,19,0.530219530112986,2.0,1.385432124470649,0.0007005868734640012,0.036671616536842866,0.8287555681324356,0,1.0,0.267398433709953
+26,20,0.5203853791569591,2.0,1.3857993666569643,0.0007003363968795156,0.036766065885618884,0.828807609691107,0,1.0,0.23461793052319685
+26,21,0.5168513998771376,2.0,1.3859258251661422,0.0007001150194835555,0.03646668261330504,0.8288254887656167,0,1.0,0.2228379995904586
+26,22,0.510794683642157,2.0,1.3858749994588684,0.0006999305907837785,0.036641155857989764,0.8288182254760235,0,1.0,0.20264894547385653
+26,23,0.5064478288664932,2.0,1.3856959415198882,0.0006997548429141822,0.03675576618117141,0.8287927696195052,0,1.0,0.1881594295549773
+26,24,0.5014344850858229,2.0,1.3779856773849102,0.0007007666085339325,0.03653749422373035,0.8276962327449122,0,1.0,0.17144828361940956
+26,25,0.48129063084423934,2.0,1.3799864315751607,0.0006998944299557391,0.03651260833454005,0.8279811351648418,0,1.0,0.20430210281413105
+26,26,0.5056118813059401,1.95,1.3858929303861032,0.0007002109128420542,0.03677100169237528,0.8179162724558946,0,1.0,0.185372937686467
+26,27,0.5003200066694383,1.95,1.3724383277438363,0.0006986290706471206,0.03633274683284859,0.8159034360681947,0,1.0,0.16773335556479418
+26,28,0.49725551083156094,2.0,1.374585045765335,0.0006973183753636492,0.036463613398189335,0.8272097247361457,0,1.0,0.1575183694385365
+26,29,0.4530005465578593,2.0,1.376192833450872,0.0006964398427247708,0.036495325097056934,0.827439160169589,0,1.0,0.17666848852619768
+26,30,0.47860595381352483,1.95,1.3775001782040044,0.0006994664605749898,0.03655726469090287,0.8166627867051472,0,1.0,0.19535317937841593
+26,31,0.5008241151867108,1.95,1.3757317305874088,0.0006991035798088116,0.036471468731629667,0.8163977493750015,0,1.0,0.16941371728903584
+26,32,0.496499258040156,1.95,1.376698562441569,0.0006978272393329396,0.03613076861438406,0.816542243460712,0,1.0,0.18833086013385328
+26,33,0.49365569591824493,2.0,1.3780437856157794,0.0006969960984653531,0.03644432873317614,0.8277034442772231,0,1.0,0.1788523197274831
+26,34,0.48051047042445927,2.0,1.3789713277564355,0.000696494662248717,0.036362168794405424,0.8278355383444381,0,1.0,0.20170156808153084
+26,35,0.4953597567953872,2.0,1.3854783261108734,0.0007005561871713595,0.036774151893084604,0.8287621162495743,0,1.0,0.1845325226512907
+26,36,0.4654489056296942,2.0,1.3722318717410322,0.0006937755889141776,0.03650398102558124,0.8268721032840067,0,1.0,0.2181630187656474
+26,37,0.4929173847064765,1.95,1.3852424062202733,0.0007010872566167109,0.036604522487314585,0.8178196314809997,0,1.0,0.24305794902158817
+26,38,0.49513144055677294,1.95,1.384729889414531,0.000701267714987518,0.03632065431557178,0.8177433126048872,0,1.0,0.2504381351892429
+26,39,0.5125761665427854,2.0,1.384129857514474,0.0007014260849552088,0.036718568405378973,0.8285709099692701,0,1.0,0.24192055514261784
+26,40,0.513968619517944,2.0,1.38454807575271,0.0007007056282539952,0.03651210458988573,0.8286301013961672,0,1.0,0.21322873172648002
+26,41,0.5043011113579227,2.0,1.3850356812653346,0.0007003071864126648,0.03676243224291618,0.8286992182612605,0,1.0,0.1810037045264088
+26,42,0.4793823968566814,2.0,1.3754772926251215,0.0007020694881892778,0.03653568826988688,0.8273385771279451,0,1.0,0.19794132285560453
+26,43,0.4999931352765861,1.95,1.373848263941571,0.000701900107418602,0.036558840816324156,0.8161161030162464,0,1.0,0.19997711758862036
+26,44,0.5052337694881945,1.95,1.3747727317028744,0.0007000473190198336,0.036169645195843085,0.8162542421407961,0,1.0,0.18411256496064843
+26,45,0.4990156351042273,2.0,1.3766680299265264,0.0006987232562723533,0.036516200691484264,0.8275076517384904,0,1.0,0.16338545034742438
+26,46,0.45593871595594243,2.0,1.3780439548642693,0.0006977869720857625,0.036267107722317046,0.8277036939873735,0,1.0,0.18646238651980807
+26,47,0.48145753060173,1.95,1.3790364209566919,0.0007003795379071366,0.036601770351384275,0.8168929614275869,0,1.0,0.20485843533909998
+26,48,0.49700702586564116,1.95,1.3845411959907534,0.0007006964419194292,0.03674942641300646,0.8177150178995855,0,1.0,0.19002341955213714
+26,49,0.5035193880547296,2.0,1.3724189573668344,0.0006992701288518833,0.03626218025367234,0.8269004567589917,0,1.0,0.17839796018243206
+27,0,0.07093808328208992,2.0,1.3862458005546578,0.0007001385638734009,0.03634062824659072,0.828870886792204,0,0.17955565684290525,0.19705273514975935
+27,1,0.2167645441590461,1.95,1.3862914616141317,0.0007001713172723664,0.03673437714203211,0.8179756060995644,0,0.2860065499589306,0.17453974725157956
+27,2,0.24900684027284786,1.95,1.3861211705570193,0.0007001379875217195,0.03671616648665964,0.8179502399072138,0,0.3889315433006024,0.14478074317535636
+27,3,0.23088458727411665,1.95,1.3861561980471915,0.0007001039779473538,0.036376919110368465,0.817955445581849,0,0.40857144561419223,0.15818669676146585
+27,4,0.28270240162927357,2.0,1.3860180896182668,0.0007002643593926985,0.03675544264637555,0.8288386206489884,0,0.4774459687003769,0.17241338049707594
+27,5,0.32342245508209483,2.0,1.3858652894565147,0.0007002845560423962,0.03673811840164665,0.8288169482711223,0,0.5756681666546692,0.14385062806742385
+27,6,0.3196756274425408,2.0,1.3858764765650313,0.0007005503660288908,0.03635541551942948,0.8288186109110528,0,0.6165175116814483,0.1768954092332048
+27,7,0.31347715976205603,2.0,1.3860497385317407,0.0007002958352712917,0.036718490791070986,0.8288431194109592,0,0.644005299758276,0.18625013286248537
+27,8,0.38607633519446455,2.0,1.3859070293511195,0.0007003450342102525,0.03674418604434808,0.8288228873823954,0,0.725409972806639,0.18637448690602976
+27,9,0.3774861267279442,2.0,1.3860802927916327,0.000700226569134851,0.03638984771783305,0.8288474342099226,0,0.7518233026134504,0.18918935227521322
+27,10,0.3990627249928778,2.0,1.3860738101910028,0.0007004215404008457,0.03669778312632128,0.8288465699075819,0,0.7816234572214084,0.22137780701438142
+27,11,0.3854987130916875,2.0,1.3843267898441793,0.0007026431467596685,0.036744146732103924,0.8285992263560027,0,0.7841664340053951,0.23944046496509802
+27,12,0.4784740750610709,2.0,1.3848546953016738,0.0007020195635616562,0.03638223626385857,0.8286740107647791,0,0.8998276875059281,0.22847666686233234
+27,13,0.5114238365323597,2.0,1.3843653274978467,0.0007011373897708974,0.03668812959353106,0.8286042718099971,0,1.0,0.20474612177453222
+27,14,0.46609439880449033,2.0,1.3847789768151009,0.0007005543810560851,0.03672936990361216,0.8286628444316925,0,1.0,0.2203146626816343
+27,15,0.4692685646771353,1.95,1.3848262214448663,0.000701320149875822,0.03640090099576012,0.8177576850416912,0,1.0,0.23089521559045081
+27,16,0.4770996028154463,2.0,1.3846599022496031,0.0007020378255204897,0.03677761091311767,0.8286463587493903,0,1.0,0.25699867605148746
+27,17,0.5022722104126257,2.0,1.384441989945157,0.0007026044316043251,0.03677998803716806,0.8286155757525708,0,1.0,0.27424070137541884
+27,18,0.5222079548869434,2.0,1.3839760170110809,0.0007030286061946951,0.03651125127200584,0.8285495124750819,0,1.0,0.24069318295647765
+27,19,0.5160572035298053,2.0,1.384375889098569,0.0007021071742388592,0.03668489517389578,0.8286060472092247,0,1.0,0.2535240117660175
+27,20,0.48281918299478277,2.0,1.385085101343676,0.0007015247756542269,0.03676761496478011,0.8287065793433529,0,1.0,0.2760639433159425
+27,21,0.48489036371057936,1.95,1.3848616376603653,0.000702052647892108,0.03644685602021655,0.8177631813862085,0,1.0,0.28296787903526455
+27,22,0.5294838917921071,2.0,1.3844953368660196,0.0007025826360454456,0.03678703912297637,0.8286231453219609,0,1.0,0.2649463059736902
+27,23,0.4867437921682437,2.0,1.3848621615746917,0.0007017573741560604,0.03678131464657304,0.8286749963268163,0,1.0,0.2891459738941456
+27,24,0.5188520357762754,1.95,1.384507592946484,0.0007021145775831788,0.036536612979160436,0.8177104318467321,0,1.0,0.3295067859209177
+27,25,0.5385100106086298,1.95,1.3841220264344227,0.0007027881309300256,0.03676512330538471,0.8176531530795118,0,1.0,0.32836670202876606
+27,26,0.5053971312397846,2.0,1.3848869963915975,0.0007020747108680722,0.03643811579071848,0.8286786122700477,0,1.0,0.35132377079928173
+27,27,0.536706547102255,1.95,1.3845502376772592,0.0007024297544318975,0.03648308154112046,0.8177168823456618,0,1.0,0.3890218236741829
+27,28,0.5187285564285973,1.95,1.3841231643992644,0.0007031303492524094,0.03678165495197651,0.817653424792991,0,0.9972925915829278,0.3993717326514204
+27,29,0.5612163772836398,2.0,1.3836640913218512,0.0007036731214075526,0.03648906240298973,0.8285053804131003,0,1.0,0.37072125761213237
+27,30,0.5530588934677871,2.0,1.3842289912139947,0.0007025673591656308,0.036579897222243515,0.8285853147704634,0,1.0,0.3435296448926238
+27,31,0.5350172925585394,2.0,1.38442658397864,0.0007016632410798712,0.03662423978738505,0.8286131205892073,0,1.0,0.3833909751951312
+27,32,0.5528705091255757,2.0,1.3840963858577422,0.0007022230431005315,0.03676910745105444,0.8285663819707052,0,1.0,0.37623503041858536
+27,33,0.5154932528638352,2.0,1.3849952055522374,0.0007016536405824647,0.03652425215358604,0.8286938546676877,0,1.0,0.38497750954611715
+27,34,0.5218012519089904,1.95,1.3846603056043294,0.0007020578677032407,0.0365647269200217,0.8177331771988045,0,0.9985158483920308,0.40798304184059336
+27,35,0.5277959525200242,2.0,1.3790064958358823,0.0007006558648558832,0.03618586591484144,0.8278417366878014,0,1.0,0.4259865084000806
+27,36,0.5566514633917916,2.0,1.3796759129042098,0.0006993912701210841,0.03635647834667797,0.8279367606330846,0,1.0,0.4555048779726388
+27,37,0.5657966485840554,2.0,1.3810708470228559,0.0006987179149453817,0.03641086123847459,0.8281351968656911,0,1.0,0.48598882861351794
+27,38,0.5851397912138354,2.0,1.3818711494052789,0.0006982320441424516,0.036656305452282614,0.8282489335937796,0,1.0,0.4837993040461179
+27,39,0.5826638578230201,2.0,1.3805831994977842,0.0006977834715602839,0.036518793597001345,0.8280655141285443,0,1.0,0.47554619274340004
+27,40,0.5489462268566772,2.0,1.379121717090647,0.0006972953326825216,0.03653448410371782,0.8278571995627282,0,1.0,0.4964874228555905
+27,41,0.584869659925265,1.95,1.3796604852303778,0.0006966691149779895,0.036565949143005025,0.8169851802196039,0,1.0,0.48289886641754975
+27,42,0.5446078288731369,1.95,1.3779157555650943,0.0006958947834493617,0.03648955888018557,0.8167239314468675,0,1.0,0.4820260962437896
+27,43,0.5686843727195965,1.9,1.3781148436212265,0.0006952608123780156,0.036454167190846855,0.8052608615723913,0,1.0,0.4956145757319883
+27,44,0.555041277355539,1.9,1.378941154728995,0.0006952025962549261,0.036445602804933766,0.8053903892817794,0,1.0,0.5168042578517965
+27,45,0.5596443872837074,1.95,1.3788611247369453,0.0006949326683286503,0.03618280906162872,0.8168651097042318,0,1.0,0.532147957612358
+27,46,0.5985728995608036,2.0,1.378641344811507,0.0006948755755769253,0.03635307554934193,0.8277880411962648,0,1.0,0.49524299853601195
+27,47,0.5922855330515557,2.0,1.3808431448669483,0.0006964769931029331,0.036559331157623574,0.8281021482278966,0,1.0,0.5076184435051856
+27,48,0.561843230144027,2.0,1.3796719707960672,0.0006958550383077437,0.03637224216041263,0.8279351915192681,0,0.9992998210329719,0.5404110057694611
+27,49,0.5627572210197912,1.95,1.379200097638845,0.0006952877171062422,0.03629143514514612,0.8169159196234771,0,1.0,0.5425240700659707
+28,0,0.10927390599076628,2.0,1.3862419234759042,0.0007001363879626775,0.036340727313973295,0.8288703362340963,0,0.11160248932936556,0.21544303419673347
+28,1,0.14604889942050062,1.95,1.3862406931913727,0.0007001470469328479,0.036734907835874325,0.8179680397626856,0,0.15014555199788673,0.2199689287378198
+28,2,0.15686387174758784,1.95,1.3862284510902083,0.0007001545108896586,0.03672094323830384,0.8179662191744369,0,0.15808041986454335,0.24543901267256837
+28,3,0.20085916297956338,2.0,1.3862059954651844,0.0007001666136665402,0.03637576164153689,0.8288652485651707,0,0.2153724865977534,0.24903389446820673
+28,4,0.17404349197046232,2.0,1.3857329082908478,0.0007000110622297476,0.036713176454017296,0.8287980876782083,0,0.2354550837897812,0.2662048615151661
+28,5,0.2118961388203798,1.95,1.385867192931596,0.0006999856585480828,0.03673091427160609,0.8179123722698854,0,0.25792783694281785,0.29575001347750896
+28,6,0.2606554031453413,1.95,1.3858272484795435,0.0006999006646467703,0.036415625983609125,0.8179063978810285,0,0.31588917622572965,0.31433244218349815
+28,7,0.23319178334450405,1.95,1.3859357317190644,0.0007000708047573582,0.03675579098421837,0.8179226050080547,0,0.34239565466638067,0.32077840492650594
+28,8,0.3131643671355883,1.9,1.3860597419578404,0.0007000675660863158,0.03668026459407941,0.8065052266316647,0,0.43812584366392165,0.29304676556673215
+28,9,0.26923321286497504,1.9,1.385301842510077,0.0007013344581043834,0.036653181600162336,0.8063873210936124,0,0.4439523903775402,0.30550752237986306
+28,10,0.33414405940898034,1.8499999999999999,1.3856171153673937,0.000701050560002517,0.036774119422548476,0.7944595493271838,0,0.5060158462818565,0.30579240298745936
+28,11,0.2977376593069731,1.8499999999999999,1.3854333743248286,0.0007013339548628067,0.03643172587311614,0.7944296365354719,0,0.5151727981288566,0.3055618001847681
+28,12,0.30276546643589974,1.7999999999999998,1.3856708656412375,0.0007010187412897388,0.03677984512198827,0.7819511078541714,0,0.5204842265584112,0.31523925270845093
+28,13,0.3145440646546794,1.8499999999999999,1.3857821668641392,0.000700748452267295,0.0363636381427879,0.7944864012111353,0,0.5454681981041584,0.3211892847100533
+28,14,0.3945354832716349,1.9,1.385830689124451,0.0007004771021408643,0.03662178646327323,0.8064696072240599,0,0.6283720304639748,0.3106222369534831
+28,15,0.3590547480719374,1.9,1.3813651937524078,0.0007049099187130779,0.03673378486405729,0.8057730824123193,0,0.6591398390129768,0.31799604155582223
+28,16,0.3689582687312832,1.8499999999999999,1.3821381718523464,0.0007037046799756117,0.03665048292659652,0.7938917468059181,0,0.6657127756391726,0.3422438615853803
+28,17,0.3733675385024049,1.9,1.3824956124276333,0.0007026621378661304,0.03663428134504403,0.8059492318942025,0,0.6679676496428183,0.3539349288175919
+28,18,0.43756591465286393,1.95,1.3827897393961806,0.0007016340338938428,0.036698859535665075,0.8174540852727676,0,0.7390798365673096,0.3397799334198004
+28,19,0.4441285392226091,1.95,1.3827843277515819,0.0007026579136268418,0.03674114326843313,0.8174535833035242,0,0.7810064262906107,0.3724198956878825
+28,20,0.4883272437079672,2.0,1.383945058018411,0.0007019563207351686,0.03656580812631696,0.8285448098899989,0,0.8515172321934076,0.3590678361020138
+28,21,0.5305512501178729,2.0,1.38530928439169,0.0007008799177695795,0.03644876958503749,0.8287382171761163,0,0.9555885559981451,0.3277194257287158
+28,22,0.4846922568511531,2.0,1.3853171761524297,0.0007003593063171024,0.03662246218961177,0.8287391894788764,0,0.9711811314441804,0.3207326809116031
+28,23,0.5342398282081852,1.95,1.3852272071672889,0.0007007600706682263,0.036769183028309185,0.8178172694565159,0,1.0,0.3141327606939504
+28,24,0.521973312334402,1.95,1.3857796755836023,0.0007005482141445429,0.03665885749608942,0.8178995053717734,0,1.0,0.3399110411146732
+28,25,0.507376067850831,2.0,1.3854900716555083,0.0007007261954760328,0.03676937878229465,0.8287638313708748,0,1.0,0.35792022616943675
+28,26,0.5503173552220426,2.0,1.3853762508352707,0.0007011404714130357,0.03677296394118157,0.8287477955516476,0,1.0,0.36772451740680867
+28,27,0.5292381328360964,2.0,1.3858138808867033,0.0007007822922592621,0.03650578965068511,0.8288097955718152,0,1.0,0.3641271094536547
+28,28,0.5165919340152147,1.95,1.3855129360114042,0.0007009866064134956,0.036608482619147766,0.8178599044468295,0,1.0,0.3886397800507156
+28,29,0.5447972252080429,2.0,1.3853125789478444,0.0007014853240898308,0.036469320294387986,0.828738856627499,0,1.0,0.41599075069347596
+28,30,0.5442637468106064,2.0,1.3798266278619145,0.0006961897498143422,0.03627530839710939,0.8279573179723599,0,1.0,0.414212489368688
+28,31,0.5677225102833195,2.0,1.3806746528775802,0.0006963430519693339,0.03643033372748726,0.8280781241020788,0,1.0,0.39240836761106485
+28,32,0.55537764135448,2.0,1.385746575531799,0.0007006252063260314,0.036779033735014593,0.8288002012215603,0,1.0,0.38459213784826624
+28,33,0.5605648502414684,2.0,1.3859272045505953,0.0007003272785527357,0.036546125496947586,0.8288257446919766,0,1.0,0.3685495008048945
+28,34,0.5506713567037942,2.0,1.386091507943399,0.0007001624781387702,0.03659107751828196,0.8288490069946803,0,1.0,0.33557118901264726
+28,35,0.5407920830208279,2.0,1.3860631414474396,0.0007000307207595063,0.036783571672608775,0.8288449455509168,1,1.0,0.33597361006942617
+28,36,0.5220226514366779,2.0,1.3844671432316,0.0006989358257135395,0.036533136076596806,0.8286181058306498,1,1.0,0.3400755047889263
+28,37,0.5071200225475146,2.0,1.3849482322153708,0.0006994894082573131,0.03654581226978304,0.8286865717231862,1,1.0,0.32373340849171534
+28,38,0.5459214802481918,2.0,1.3854259325152314,0.0006996015400607902,0.0367512599259818,0.8287544096918058,1,1.0,0.3530716008273058
+28,39,0.5063338366706096,2.0,1.3851685597574193,0.0006993905840101065,0.036548663092168185,0.8287178202327348,1,1.0,0.3211127889020319
+28,40,0.5186160187145513,1.95,1.3854427863046082,0.00069967150939096,0.03654790367521426,0.817849062532185,1,1.0,0.3287200623818378
+28,41,0.5011584399943186,2.0,1.3858282665319768,0.0006998496462993847,0.03640840083053689,0.8288115720037988,1,1.0,0.30386146664772895
+28,42,0.49310538283838024,2.0,1.3859653032497368,0.0007000150053592074,0.03659368143531867,0.8288310612205316,1,1.0,0.2770179427946007
+28,43,0.5058272724430228,2.0,1.3859325374477929,0.0007001627637610049,0.03653425280764548,0.8288264546076691,1,1.0,0.28609090814340954
+28,44,0.5341826797519724,2.0,1.3862015229650633,0.0007001656155718054,0.03678468778367619,0.8288646138674578,1,1.0,0.3139422658399078
+28,45,0.4927644399054395,2.0,1.3860893660860059,0.0007002312438744544,0.036628242094434584,0.8288487226641637,1,1.0,0.275881466351465
+28,46,0.4845928465119357,1.95,1.386016455555645,0.0007004259345729158,0.0365497827649428,0.8179347322845438,1,1.0,0.24864282170645224
+28,47,0.5398088294197804,2.0,1.385825161896749,0.0007006022254390688,0.03649365375985592,0.8288113450651714,1,1.0,0.2993627647326011
+28,48,0.5627275759544277,2.0,1.3858330867409565,0.0007002201460733837,0.03661925143818798,0.8288123610430281,1,1.0,0.3757585865147589
+28,49,0.5592796599223534,2.0,1.3856600439792428,0.0006998731151427142,0.03649496510750414,0.8287877094318998,1,1.0,0.3975988664078444
+29,0,0.17486907278737335,2.0,1.386279111792997,0.0007001636073833799,0.03635581107887284,0.8288756188421121,0,0.18389684927049366,0.20436777693058625
+29,1,0.22100849044977938,1.95,1.3862803876770389,0.0007001635643404587,0.03673432766755881,0.817973954969792,0,0.28789822558935346,0.18616400071346
+29,2,0.20796088564764661,1.95,1.3860363061573888,0.0007000638688679033,0.036712719656545954,0.8179375805334844,0,0.320648267096307,0.1990052626970794
+29,3,0.26876598722257794,2.0,1.3859246499720932,0.0007000455483007695,0.036365675807726226,0.828825302324012,0,0.4153460344093042,0.1754252448628542
+29,4,0.2339944824828159,2.0,1.3859860761232252,0.0007003576882621753,0.036727528671346585,0.8288341054823173,0,0.4472264702325227,0.18367964796602276
+29,5,0.2797724128060082,1.95,1.386089630139245,0.0007002677024826383,0.03674415417680104,0.8179455818826538,0,0.4898662470684566,0.21275304659541835
+29,6,0.33427778244190476,1.95,1.3851029124855527,0.0007009857642070194,0.03638354247330262,0.817798817047411,0,0.5684765533689731,0.22295720364771837
+29,7,0.3339142784183058,1.95,1.3850115800395923,0.0007014284408582254,0.03675095120688064,0.8177853396894027,0,0.5971670199050606,0.2501582348542717
+29,8,0.3985858156598983,2.0,1.3854504078127832,0.0007010767083187603,0.03669336061603788,0.8287583019174569,0,0.6898066936040909,0.24221046072753996
+29,9,0.4282540990729245,2.0,1.381405423924488,0.0007056944996075433,0.03649450491809363,0.828184796534105,0,0.7807353782471105,0.21986649258026766
+29,10,0.4581936187559086,2.0,1.3809679666393904,0.0007067757532622769,0.03672835860591413,0.8281228475282917,0,0.8847247563051908,0.1810123874461076
+29,11,0.47593115160259497,2.0,1.3712879572765275,0.000700725727364097,0.036449944687429806,0.8267389269734314,0,0.9633425436642017,0.1686471137897143
+29,12,0.4432559485779417,2.0,1.37272351397382,0.0006988681444619247,0.03657346364485855,0.8269439304072365,0,0.9728519763506409,0.18038386012561775
+29,13,0.4977817138553506,1.95,1.3737359621417973,0.0007027289915776383,0.036483801435398124,0.8160994980182524,0,1.0,0.1592723795178353
+29,14,0.5008228967609408,1.95,1.3755723228799657,0.0007009648171379412,0.03632873398882455,0.8163744121823143,0,1.0,0.1694096558698025
+29,15,0.4495315433749148,2.0,1.3769576640955186,0.0006995168000371189,0.03627877031789527,0.827549216328533,0,1.0,0.16510514458304923
+29,16,0.4924079719479985,1.95,1.3779262066532938,0.000702370896782699,0.03647680319286345,0.8167274345683491,0,1.0,0.17469323982666168
+29,17,0.4557898348867907,1.95,1.3790480466318675,0.0007010015401893206,0.036548892691335745,0.8168948864516441,0,1.0,0.18596611628930224
+29,18,0.48186635854737775,1.9,1.3794566418943168,0.0007034114649694964,0.03654331369691309,0.8054737447642241,0,1.0,0.20622119515792567
+29,19,0.48489058809962904,1.9,1.3841661755000931,0.0006998996068333756,0.036565263515185596,0.8062095029795618,0,1.0,0.21630196033209656
+29,20,0.49166961579916624,1.95,1.3840517865024218,0.0007003606912122096,0.03646368554485651,0.8176419564408051,0,1.0,0.2388987193305539
+29,21,0.4729820337696038,2.0,1.3838795816313494,0.0007007644311183707,0.036551500057504314,0.8285351695746734,0,1.0,0.24327344589867933
+29,22,0.5129760601866782,2.0,1.383668574237377,0.0007011195466864642,0.036584305573582,0.8285052917192961,0,1.0,0.20992020062226047
+29,23,0.4908024284038877,2.0,1.3834625852695241,0.0007003345419519488,0.03672511074029629,0.8284757988419909,0,1.0,0.23600809467962555
+29,24,0.5097338082223605,1.95,1.383213904906214,0.0007007526400695836,0.03647075692651697,0.8175171089815464,0,1.0,0.23244602740786813
+29,25,0.4737261624456831,2.0,1.3843865917176204,0.0007005674540408554,0.03673819622258184,0.8286071298356,0,1.0,0.2457538748189437
+29,26,0.47559034110243426,1.95,1.3841963881064359,0.0007008847922083134,0.0367343263744372,0.817663672344687,0,1.0,0.2519678036747807
+29,27,0.5166696226307463,2.0,1.3838108590916818,0.0007012271368818043,0.03661218755414573,0.8285255377853793,0,1.0,0.22223207543582107
+29,28,0.46872202558309284,2.0,1.3836996855600932,0.0007004017196845492,0.0365599401697453,0.8285095081240157,0,0.9888119418807786,0.24399082943593794
+29,29,0.4784588838078204,1.95,1.383332170093684,0.0007006437445658664,0.036723438790527994,0.8175347189726975,0,1.0,0.26152961269273467
+29,30,0.5040230560006725,2.0,1.3827737722711262,0.0007009231657475383,0.03664327270706422,0.8283780612199109,0,1.0,0.2800768533355749
+29,31,0.5243910021448928,2.0,1.382704571826659,0.000701754304982934,0.03658255354551375,0.8283684592511826,0,1.0,0.28130334048297573
+29,32,0.5115935158029407,2.0,1.3840836270785926,0.0007012868468155987,0.03674725215981371,0.8285643036886178,0,1.0,0.30531171934313533
+29,33,0.5316663277720299,2.0,1.3838469642034643,0.0007019289974803479,0.03649138190550506,0.8285308666360367,0,1.0,0.27222109257343297
+29,34,0.5096205771005029,2.0,1.3837830305763152,0.0007010402871364654,0.0365255760326256,0.8285215310322067,0,1.0,0.2987352570016762
+29,35,0.49504368740936894,1.95,1.3834906746074602,0.0007015512944876215,0.03674641681863619,0.8175586329049259,0,1.0,0.316812291364563
+29,36,0.5315711157660254,2.0,1.383066243584277,0.0007020626619737991,0.0367067129997958,0.828419961181043,0,1.0,0.30523705255341793
+29,37,0.5343608269972177,2.0,1.384389810085907,0.0007015245814148781,0.036596569030645995,0.8286078587559143,0,1.0,0.2812027566573919
+29,38,0.5256583397306148,2.0,1.3843216082328873,0.0007007489944989048,0.03674394862837575,0.8285979524219446,0,1.0,0.2855277991020494
+29,39,0.5244814478479585,2.0,1.3852193419883176,0.000700553545190444,0.03655655666964726,0.8287253585164203,0,1.0,0.2816048261598614
+29,40,0.49005468515351647,2.0,1.3857938537655867,0.0007004095772294909,0.03655190195918242,0.8288068482565752,0,1.0,0.30018228384505474
+29,41,0.5379956079667542,1.95,1.38556106668361,0.000700546830741011,0.036774107600168054,0.817866943108166,0,1.0,0.32665202655584713
+29,42,0.541849645997377,1.95,1.3859424169463912,0.0007003636324848422,0.03676645672213292,0.8179236878233493,0,1.0,0.3061654866579232
+29,43,0.4955300424405029,2.0,1.38593164845256,0.000700095923837288,0.03666548258926577,0.8288263095174722,0,0.9954784998480981,0.32446214167087895
+29,44,0.5219102501834492,1.95,1.3857009019064006,0.0007001095884222067,0.036769135311580915,0.8178876418696793,0,1.0,0.33970083394483047
+29,45,0.543904793794794,1.95,1.3857058807504075,0.0007004932856992303,0.03676954887120352,0.8178884977556803,0,1.0,0.34634931264931285
+29,46,0.5412442208357037,1.95,1.3860470723096818,0.0007003205366185623,0.03666114694973805,0.8179392602202235,0,1.0,0.3374807361190121
+29,47,0.5054062432726099,2.0,1.3861654222455144,0.0007001799897775552,0.03651731051370658,0.8288594970674253,0,1.0,0.3513541442420329
+29,48,0.5003905723234554,1.95,1.385963062884291,0.000700184748662366,0.03663827746899714,0.8179267092100548,0,1.0,0.3346352410781845
+29,49,0.5228830078656618,2.0,1.3856393093594952,0.0007001753418953439,0.036598358503564944,0.8287848529697388,0,1.0,0.3429433595522058
+30,0,0.07616258374958298,2.0,1.3862724015416994,0.0007001711070040318,0.03635094487476577,0.8288746691799302,0,0.18158256245919938,0.17843186255301072
+30,1,0.19362481157062436,1.95,1.386257132147658,0.0007001749081966763,0.03673274785492946,0.8179704957468731,0,0.25660965497555877,0.16993649860133617
+30,2,0.23522004441487082,1.95,1.3859288679910047,0.0006999483038716538,0.03670910352380507,0.8179215463365278,0,0.3552781227661738,0.14369598436133763
+30,3,0.26486027836193055,1.95,1.3858811649193559,0.0006998919916036229,0.03637828564918557,0.8179144252331485,0,0.4590764385375193,0.10409900982307603
+30,4,0.3043389282387632,1.95,1.3860896775858815,0.0007000579698941997,0.03675104207119188,0.8179455264851406,0,0.5579239438112129,0.10389783571426012
+30,5,0.3211375224853079,1.95,1.3861203000181674,0.0007001649918209366,0.036698737337744355,0.8179501183195852,0,0.6374101915628766,0.08724481953385757
+30,6,0.2982906100154672,2.0,1.3854612591947078,0.0007009960876783801,0.036457309147497806,0.8287598190352796,0,0.66249453901717,0.11097598136199727
+30,7,0.37694274140345446,1.95,1.385389394313983,0.0007013069028363188,0.03672890034482386,0.8178415957586017,0,0.7558580699544537,0.08199837807224324
+30,8,0.36157323728662294,1.95,1.3855806444546506,0.0007009267027793603,0.03666431153318594,0.8178699725771678,0,0.7847893543153522,0.09219165186827348
+30,9,0.3856427524945753,2.0,1.385323720058405,0.000701083627875837,0.03643711570999684,0.8287403238627469,0,0.8204569927495301,0.12486651798254406
+30,10,0.3772073336047212,2.0,1.3734902238693298,0.0007033328542558694,0.03643964659279,0.8270549021926032,0,0.8316237627484082,0.1485260950178596
+30,11,0.443365266414124,2.0,1.3739086300745598,0.0007066887438630226,0.036611756775866075,0.8271157005280445,0,0.8999978341093894,0.14455377590122737
+30,12,0.4405279899668348,2.0,1.3754156919121514,0.0007044883791875707,0.03660253832751943,0.8273304684234758,0,0.9204023698296451,0.1745568067832558
+30,13,0.43119592415686503,2.0,1.3739999791172839,0.0007045019534503516,0.03652557351242623,0.8271281372580719,0,0.928084418121045,0.19987385636148985
+30,14,0.4956368268539237,2.0,1.3742395489355652,0.0007078048772727837,0.036578478725138176,0.8271633343881364,0,0.9962099943973963,0.1905094303165505
+30,15,0.4980879388677007,2.0,1.3754255514407632,0.0007053955376755876,0.036247709846711065,0.8273321360815649,0,1.0,0.1936264628923356
+30,16,0.49973184662543907,2.0,1.3760345739946354,0.0007031924835276238,0.0364653955872242,0.8274184906682823,0,1.0,0.19910615541813018
+30,17,0.5023096073305101,2.0,1.3761876691003234,0.0007012825952437461,0.03660947205701106,0.827439805715331,0,1.0,0.2076986911017003
+30,18,0.484026546907395,2.0,1.3821946050840748,0.0006979439918995307,0.03652861439544605,0.8282948591970324,0,1.0,0.21342182302464988
+30,19,0.46911065561513254,2.0,1.38362684131109,0.0006984641795528169,0.036580589560663054,0.8284986074516743,0,1.0,0.23036885205044175
+30,20,0.5059045959934686,2.0,1.383074694377063,0.000697953683436124,0.036654614581140534,0.8284199942763849,0,1.0,0.21968198664489508
+30,21,0.4915659712473561,2.0,1.3829264036797628,0.0006980731901776767,0.03639468451627735,0.8283989491413002,1,1.0,0.23855323749118706
+30,22,0.47221947792817304,2.0,1.3856280226706903,0.000699770998529729,0.0366399129742085,0.8287831366228295,1,1.0,0.20739825976057677
+30,23,0.4619456669264992,2.0,1.385406971225384,0.0006997443919093068,0.03674451009344667,0.828751759226297,1,1.0,0.1731522230883305
+30,24,0.4757750545456824,2.0,1.3861837254732747,0.0007001705088402402,0.036512273513811394,0.828862090701114,1,1.0,0.18591684848560797
+30,25,0.4768028160668917,2.0,1.3861730764308355,0.0007003328458383856,0.036655450908037714,0.828860626187314,1,1.0,0.1893427202229722
+30,26,0.4547327007472733,2.0,1.386043823939986,0.0007004772791028326,0.036781200157106994,0.8288423318325496,1,1.0,0.14910900249091086
+30,27,0.44510470504726146,1.95,1.3861229281087806,0.0007002713696138915,0.03651405086476732,0.8179505413431398,1,1.0,0.11701568349087138
+30,28,0.48678347873890626,2.0,1.3860674278934464,0.0007000930767518556,0.036767803390017034,0.8288455713213008,1,1.0,0.15594492912968755
+30,29,0.45251723480423295,2.0,1.3862427093844225,0.0007001353236091077,0.03678280899109028,0.8288704474087678,1,1.0,0.1417241160141097
+30,30,0.49381079499796965,1.95,1.3861360043950175,0.000700085833637384,0.0365387547906321,0.8179524332365995,1,1.0,0.1793693166598989
+30,31,0.4582471965693742,1.95,1.386185345109423,0.0007002478485254912,0.036760186540541584,0.8179598285106421,1,1.0,0.16082398856458058
+30,32,0.510051165856983,1.9,1.3860156877920808,0.0007003055825112875,0.03640213766785633,0.8064984259750811,0,1.0,0.20017055285660984
+30,33,0.48793449412712375,1.9,1.3780861845850165,0.000696811689297011,0.036443086222537883,0.8052568537552797,0,1.0,0.22644831375707902
+30,34,0.5096474620014261,1.8499999999999999,1.3806031054235248,0.000697280987710536,0.0365184126278453,0.793638350095515,0,1.0,0.19882487333808674
+30,35,0.45760552260514886,1.8499999999999999,1.373587167603322,0.0006954275230789444,0.03641034300228353,0.7924863272498792,0,1.0,0.19201840868382955
+30,36,0.48349246344603586,1.7999999999999998,1.3742282052793384,0.0006974539886442956,0.036403383158783664,0.7799925764812716,0,1.0,0.2116415448201194
+30,37,0.46554501154080574,1.7999999999999998,1.379942203925578,0.0006961230714123568,0.036455320759186075,0.780971098175698,0,1.0,0.21848337180268568
+30,38,0.5031581554858261,1.8499999999999999,1.3791181914175534,0.000695334767793144,0.03651612649540799,0.7933944119602909,0,1.0,0.17719385161942028
+30,39,0.4582839297357562,1.8499999999999999,1.3681656682237453,0.0006978347571255204,0.03622877628953659,0.7915941326177014,0,1.0,0.19427976578585404
+30,40,0.5015979973184261,1.7999999999999998,1.368938731353391,0.0007014030790551708,0.036278328747203596,0.7790848959574949,0,1.0,0.1719933243947537
+30,41,0.48126301115068515,1.7999999999999998,1.3729782201264302,0.0007000764497488217,0.03641283845417707,0.7797788994404438,0,1.0,0.20421003716895036
+30,42,0.46507366482428025,1.7499999999999998,1.3784652286438548,0.0006947403160254553,0.03649254550606018,0.7676082005198794,0,1.0,0.21691221608093417
+30,43,0.5069871762366159,1.7999999999999998,1.377233573729832,0.0006938216130454592,0.03616922846410643,0.7805066316325385,0,1.0,0.18995725412205292
+30,44,0.45958955113637795,1.7999999999999998,1.3653587781943115,0.0006995831601662024,0.03610907494178661,0.778467501146045,0,1.0,0.1986318371212598
+30,45,0.49806139840927205,1.7499999999999998,1.366349842193155,0.0007044471442114735,0.03634877865221013,0.7654434693181165,0,1.0,0.16020466136424016
+30,46,0.49393112918013615,1.7499999999999998,1.3704023028546857,0.0007023091764711703,0.03639123910013938,0.7661694982946278,0,1.0,0.17977043060045386
+30,47,0.45923471626399487,1.7999999999999998,1.3706820031436595,0.0006998819726355043,0.036210868369389415,0.7793842642204437,0,1.0,0.19744905421331618
+30,48,0.5022378687692525,1.7499999999999998,1.3717588131370955,0.0007035313313829231,0.036454455906935676,0.7664128721026323,0,1.0,0.17412622923084137
+30,49,0.4809444693828863,1.7499999999999998,1.3750421432235673,0.0007019300421074671,0.03657460301438869,0.7669995810129109,0,1.0,0.20314823127628762
+31,0,0.158589043240457,1.6999999999999997,1.3860076919960986,0.000700049191537555,0.03642051845833745,0.7553601987913626,1,0.1136191788615576,0.2438045723194465
+31,1,0.18072519346600444,1.6499999999999997,1.3859856074185302,0.0006999899842485222,0.03676376839602392,0.7412327342470719,1,0.1431868101923672,0.2781682312968585
+31,2,0.23272411081652689,1.6499999999999997,1.3859333349891287,0.0006999236063950605,0.03654474149961772,0.7412226824508228,1,0.20065092007736915,0.34154580928526407
+31,3,0.26451217502667645,1.6499999999999997,1.3858753314100236,0.000700086471765126,0.036685495908608944,0.7412116190155108,1,0.2445777551307936,0.38893690991453006
+31,4,0.24481373506417833,1.6499999999999997,1.385775021790492,0.0007001249900553378,0.036702958222864776,0.7411923922418375,1,0.2761001804758877,0.38124554291274426
+31,5,0.24182524557530954,1.6999999999999997,1.3857488031926888,0.0007002837911806376,0.0365458626806506,0.7553124419794466,1,0.32068973188309696,0.3451645094069026
+31,6,0.2586109072832226,1.7499999999999998,1.3860107825375136,0.0007002378593879316,0.036780296540953515,0.7689534551726275,1,0.33464713911750504,0.3491735054540686
+31,7,0.2567800880878133,1.7999999999999998,1.3859687336858681,0.000700342775943445,0.03662189634880918,0.7820016606842437,1,0.3796636430083076,0.3163821029483007
+31,8,0.2606277344755268,1.8499999999999999,1.3861454398628872,0.0007002828560512746,0.03645097618132477,0.7945455572565671,1,0.4114831622063415,0.2867815653099671
+31,9,0.31012036423350064,1.9,1.3861953589919163,0.0007001031477359234,0.03673502809354111,0.806526400511074,1,0.4382835889940586,0.31602309545292406
+31,10,0.3318169532544444,1.9,1.3862440275728267,0.0007001544167557334,0.03677784489975587,0.8065340107190689,1,0.46640349107713924,0.35085185607862895
+31,11,0.36061631287691615,1.9,1.386225740039688,0.0007002010889883884,0.03645358615750509,0.8065311717384321,0,0.5110000838997988,0.38738759772332204
+31,12,0.41211277157390197,1.9,1.384023615229022,0.0007016361280402129,0.03664577736594148,0.8061877716579302,0,0.620494894607573,0.3797160457695758
+31,13,0.44008483490497347,1.9,1.3790871493468027,0.000709543052496027,0.03676910752003488,0.8054177658892844,1,0.7106385648002326,0.352764696616268
+31,14,0.40933496031443084,1.9,1.3856750327382614,0.0007008502675943588,0.036311738343501127,0.8064454282755769,1,0.770338945807373,0.3039979399716054
+31,15,0.42121838535729705,1.8499999999999999,1.3858367108544263,0.0007005283268761339,0.03673533683078624,0.7944952350077529,1,0.7756484827520982,0.30319664085485926
+31,16,0.4891192960097785,1.9,1.3857173996122354,0.0007008473768596997,0.03647537205299271,0.8064520403834823,1,0.824490621559703,0.36441015795299087
+31,17,0.4700170409580214,1.9,1.3855796528507438,0.0006997411327478796,0.03643087166602971,0.8064301936065157,1,0.8397780891198785,0.3803526843668998
+31,18,0.47997809875919917,1.95,1.3859313998611955,0.0006999223695763368,0.03676859969103649,0.8179219156726829,0,0.859878999682798,0.38675499628693305
+31,19,0.5013484207526085,2.0,1.3775897513217334,0.000694176376932796,0.03652270211300381,0.82763788012231,0,0.8994649100306676,0.4052081891344714
+31,20,0.48567398384097116,2.0,1.3833949130188286,0.0007005290971404011,0.03672069760313509,0.8284662374508851,0,0.8961947469042654,0.4239869502642166
+31,21,0.5589699949159105,2.0,1.3835341123328828,0.0006998094038008151,0.036508260520146926,0.8284858136187965,0,0.9754855050676637,0.4292526429628165
+31,22,0.5661305025033028,2.0,1.38263778056411,0.0006997197289067158,0.036578536082552196,0.8283583844971832,0,1.0,0.4204350083443422
+31,23,0.552193382510699,2.0,1.3815698650386843,0.0006995828164213067,0.03663450734559212,0.8282064552368378,0,1.0,0.44064460836899677
+31,24,0.5628704922271113,2.0,1.3826015049007823,0.0006991049874815557,0.03637369843898397,0.8283530519209,0,1.0,0.47623497409037074
+31,25,0.5714528816115109,2.0,1.383142549548425,0.0006986662665395448,0.03652437399022972,0.8284298415808008,0,1.0,0.504842938705036
+31,26,0.5771000828001015,2.0,1.3832879226659762,0.0006983279057628633,0.03667673163058062,0.8284504068577249,0,1.0,0.523666942667005
+31,27,0.5968413503886785,2.0,1.3831218428514835,0.0006979970800121507,0.03648856944129466,0.8284267082076814,0,1.0,0.5228045012955945
+31,28,0.5836854212389985,2.0,1.3822094721136846,0.0006974757901781126,0.03650186172808971,0.8282968404362484,0,1.0,0.5456180707966614
+31,29,0.5886333416788265,2.0,1.3818521604027856,0.0006971052707441874,0.03665464649681828,0.8282459117640434,0,1.0,0.5621111389294217
+31,30,0.6118660802397825,2.0,1.3812774045372374,0.0006966913621793195,0.036379059033854064,0.8281640168547848,0,1.0,0.539553600799275
+31,31,0.5596847022312723,2.0,1.3825594096479967,0.0006976815704485685,0.036458621657447864,0.8283466617686432,0,1.0,0.5322823407709075
+31,32,0.594636787232538,1.95,1.3834182444262648,0.000698168489409547,0.036663797224592225,0.8175468200396324,0,1.0,0.5154559574417933
+31,33,0.5826038935419623,1.95,1.3825992635015472,0.0006976015288176485,0.03659919954556522,0.8174244565551134,0,1.0,0.5420129784732076
+31,34,0.566918630821908,2.0,1.3820704673897684,0.0006972640961241329,0.03662409800859852,0.8282770098973082,0,1.0,0.5563954360730264
+31,35,0.6080008265905238,2.0,1.3828385903818468,0.0006979830638631709,0.036670930855783164,0.8283864401331943,0,1.0,0.5600027553017458
+31,36,0.5746355246805243,2.0,1.382088013329521,0.0006973197718556129,0.036458241406924524,0.8282795213535251,0,1.0,0.5821184156017474
+31,37,0.6209967169433203,1.95,1.382487006552543,0.0006978823157773799,0.03644829940377349,0.8174077863548255,0,1.0,0.569989056477734
+31,38,0.6139400480022581,1.95,1.3838777466973688,0.000698503100920846,0.0365084101668688,0.8176154510382593,0,1.0,0.5464668266741933
+31,39,0.5861588632817758,2.0,1.3848018427854014,0.0006991916647630179,0.03671754202264784,0.8286657039811055,0,1.0,0.5538628776059193
+31,40,0.5699171165905844,1.95,1.3845560819346736,0.0006989504122378482,0.036510764349180325,0.8177167162335952,0,1.0,0.5663903886352815
+31,41,0.573157123251511,2.0,1.3848592592669642,0.0006992972414235629,0.03638337367478413,0.8286738857317576,0,1.0,0.5771904108383701
+31,42,0.6032821191879711,2.0,1.3849648111127866,0.0006996317802338267,0.03657643828326361,0.828688965759083,0,1.0,0.6109403972932369
+31,43,0.586472065074866,2.0,1.3852646593551088,0.0006995983685043981,0.036522091191465114,0.8287315196043071,0,1.0,0.6215735502495536
+31,44,0.5890227501733251,2.0,1.3855312279977243,0.0007001448976936169,0.036765683277125955,0.8287695069825358,0,0.9979754107493624,0.6327752862452671
+31,45,0.6154550698643364,2.0,1.3855223353404988,0.0007006440123139425,0.03659717908785881,0.8287683866765271,0,1.0,0.6515168995477878
+31,46,0.6330728083663576,2.0,1.3850690157098455,0.000700878327374908,0.036499920246857845,0.8287041124123808,0,1.0,0.6435760278878585
+31,47,0.5983835512261765,2.0,1.3850274491349026,0.0007001642794305006,0.036750736287726696,0.8286980090775422,1,1.0,0.661278504087255
+31,48,0.6477995267901875,1.95,1.382321684744942,0.0006995236674300844,0.036496836020269006,0.8173836004023889,1,1.0,0.6926650893006249
+31,49,0.6088417478323742,1.95,1.3809436985505577,0.0006993301135015344,0.03652343901926415,0.8171777638431064,1,1.0,0.662805826107914
+32,0,0.1632889726504037,1.9,1.385781331573051,0.000699874752710743,0.0364373863941571,0.806461715528796,1,0.1345656783223561,0.23154233773820418
+32,1,0.15833473699216358,1.8499999999999999,1.3857208531580252,0.0006997943907953929,0.03672904698512069,0.7944760783003469,1,0.16750316978845153,0.23777823025594325
+32,2,0.19669782426536905,1.9,1.385821163506947,0.0006999219890402442,0.03665950077140308,0.806467947214667,1,0.19641406424817096,0.26044066188700216
+32,3,0.24789531294469153,1.9,1.3857678521368753,0.0006998436130644384,0.0364364773785277,0.8064596019125951,1,0.2488923257000009,0.32779460888230394
+32,4,0.2586065227464661,1.9,1.3862313198455052,0.0007002390941541129,0.036776259018107785,0.8065320542627662,1,0.2796564903940551,0.35581308862948036
+32,5,0.30679132153550764,1.95,1.3862272816144174,0.0007001741481250644,0.03664476781955537,0.817966050890244,1,0.3350359875516773,0.4092564217161224
+32,6,0.3169042103926046,1.95,1.386049518456642,0.0007000052105255014,0.036424415455912115,0.8179395305737943,0,0.35937988978069974,0.44384084826774894
+32,7,0.3595975088002153,2.0,1.3862943611198846,0.0007001722195526524,0.03676977664286273,0.8288777842514964,0,0.45631707483150374,0.4235689295587128
+32,8,0.3105151257328484,2.0,1.3862506694407342,0.0007001709233706811,0.0367565053898431,0.8288715865930494,0,0.4591374163237304,0.4228671973445208
+32,9,0.3193520190473609,1.95,1.386245765174042,0.0007001402941068228,0.03640507747149493,0.8179687929501156,0,0.4740052162103454,0.4324997752107423
+32,10,0.33201673547912747,2.0,1.3861863404847854,0.0007001057096023976,0.03677350030326426,0.8288624432559822,0,0.5011949619135282,0.4384625023790539
+32,11,0.33745224708368415,2.0,1.386079429590821,0.0007000754785216944,0.03675759290498141,0.8288472688895032,0,0.49918544317284264,0.459260232715157
+32,12,0.37219104672280434,2.0,1.3859136552490146,0.0007000381907003614,0.036423692018994085,0.8288237403661856,0,0.5204086243731763,0.4800919899117795
+32,13,0.41507162455307883,2.0,1.38599526303275,0.0007002863163365779,0.03669726775134998,0.8288353885573826,0,0.5872276329587938,0.46726857123187115
+32,14,0.4151731847939053,2.0,1.3859841357943012,0.0007000952272384512,0.03676124613388548,0.8288337557414859,0,0.6273706221100919,0.4807497864995618
+32,15,0.4750800254874646,2.0,1.3842049170864081,0.0006997253029156305,0.03637332066612688,0.8285810881159766,0,0.7304982489911536,0.4429357529700106
+32,16,0.5072683326279953,2.0,1.3843023070171943,0.000699279992802971,0.036601847249484384,0.8285947939096742,0,0.8257562481972347,0.42321944449700477
+32,17,0.48995700766140693,2.0,1.3849922256880323,0.0006992679073105184,0.03672335800010932,0.8286927542832588,0,0.8449924748151544,0.439866725784484
+32,18,0.46760879268904615,2.0,1.3850954510157303,0.0006994279264012902,0.036427923367675655,0.8287074531942475,0,0.8417051136987929,0.4364224906984299
+32,19,0.5042019955484095,1.95,1.384929992262957,0.0006995093722832543,0.0366446256451982,0.8177726098167432,0,0.8664555937428577,0.4587325268375547
+32,20,0.5652879282326839,1.95,1.3848692152433486,0.0006997880551183655,0.03649789646328081,0.8177636356779535,0,0.9669642683401632,0.4283407363220621
+32,21,0.5706893721617877,1.95,1.385623241583309,0.0006998959132403964,0.036591532587999756,0.8178760106213467,0,1.0,0.40229790720595876
+32,22,0.5580817678633724,2.0,1.3860554401842302,0.0007000244854341557,0.03677763098797686,0.8288438512701282,0,1.0,0.39360589287790765
+32,23,0.5414732746567545,2.0,1.3755601671766056,0.0006927652239111873,0.03634790358249588,0.8273477573012307,0,1.0,0.40491091552251507
+32,24,0.5679233457579205,2.0,1.3837086873945381,0.0006990526928795893,0.03641144391888783,0.828510403772817,0,1.0,0.42641115252640144
+32,25,0.5534788440877219,2.0,1.3827684826093602,0.0006987362150723486,0.03651661462969374,0.8283766873675702,0,1.0,0.4449294802924059
+32,26,0.5598825965522811,2.0,1.3830932750853586,0.0006983848521116371,0.036677638340631605,0.828422757899222,0,1.0,0.466275321840937
+32,27,0.5836580151358441,2.0,1.3830768597301712,0.0006980459120293713,0.036502191906376616,0.8284203282788846,0,1.0,0.4455267171194803
+32,28,0.5582478384586598,2.0,1.383967918566909,0.0006991404310860923,0.03657478343236026,0.8285472573659447,0,1.0,0.46082612819553254
+32,29,0.5750349474442089,1.95,1.3837894767716754,0.0006986810308836462,0.03671762973085728,0.8176023408893209,0,1.0,0.45011649148069605
+32,30,0.5720012360625777,2.0,1.382938211129205,0.0006983229321853364,0.03656248265076555,0.8284006986156506,0,1.0,0.4400041202085923
+32,31,0.5786200468539568,2.0,1.3821009359631553,0.000698067802616035,0.03645241052622834,0.8282815721516819,0,1.0,0.42873348951318907
+32,32,0.5301854783476049,2.0,1.3828683405899063,0.0006995297698059568,0.03667980419820087,0.8283911092088965,0,1.0,0.43395159449201615
+32,33,0.5752918906862124,1.95,1.3837824607372244,0.000699288932246099,0.03650144906131799,0.8176014759064028,0,1.0,0.45097296895404126
+32,34,0.5836007685576471,1.95,1.3827856091869688,0.0006990570855530255,0.036647018625931546,0.8174526998674446,0,1.0,0.4453358951921568
+32,35,0.5783952332236204,2.0,1.3833388368648158,0.0007005363784326488,0.03631008499886425,0.8284582703952975,0,1.0,0.4279841107454013
+32,36,0.5738693683542618,2.0,1.3835573469733635,0.000701878865309931,0.0365160329227385,0.8284897032869966,0,1.0,0.41289789451420605
+32,37,0.5536031563464192,2.0,1.383403400212155,0.0007030528335446359,0.03652362541895481,0.8284681608528027,0,1.0,0.4453438544880638
+32,38,0.5626358090048722,1.95,1.3836896205414673,0.0007019540585311647,0.03674923844015064,0.8175884252469009,0,1.0,0.475452696682907
+32,39,0.5883291438316525,2.0,1.3836254348032806,0.000700980719380425,0.03672975236568811,0.8284991227458122,0,1.0,0.4610971461055082
+32,40,0.5758133486252511,2.0,1.3834780876367774,0.0007017927223696869,0.03656524305451006,0.8284784161946372,0,1.0,0.4527111620841704
+32,41,0.5761632363691018,2.0,1.3828945552982446,0.0007022611538772081,0.03675348808071198,0.8283956124092806,1,1.0,0.420544121230339
+32,42,0.5340197812581997,2.0,1.3815248167583625,0.0006980057832113934,0.03647609574424095,0.828199596873246,1,1.0,0.4133992708606654
+32,43,0.5427917036299719,1.95,1.3813441596325582,0.0006985559965188218,0.03650080640114282,0.8172373531905281,1,1.0,0.40930567876657276
+32,44,0.5218942845919433,2.0,1.380532014511883,0.0006975091570108451,0.036300059973001085,0.8280581485326146,1,1.0,0.37298094863981096
+32,45,0.5107912464344461,1.95,1.3837337809696337,0.0007008293010103448,0.03654817822975095,0.8175946756563726,1,1.0,0.3359708214481533
+32,46,0.5229392184817391,2.0,1.3838504263111164,0.0007000624392701446,0.03661756015465508,0.8285308281345033,1,1.0,0.34313072827246355
+32,47,0.5296766112019673,2.0,1.383121953446576,0.0007000505326461383,0.03671946584426503,0.8284273076650492,1,1.0,0.36558870400655763
+32,48,0.5765864215828302,2.0,1.3821793314023554,0.00069996187184478,0.03656862271872448,0.8282932609059621,1,1.0,0.421954738609434
+32,49,0.5507263220205686,2.0,1.380662956620608,0.0006975984991812896,0.03651443850741131,0.8280768164263458,1,1.0,0.4357544067352284
+33,0,0.1947989256150236,1.95,1.3855645949497897,0.0006997847854255967,0.03644002865653204,0.8178672416511812,1,0.16062212329568548,0.26850025432249797
+33,1,0.21017684294557631,1.9,1.385407397007305,0.0006997326751331061,0.03671407794048746,0.8064033003168538,1,0.19460294786689533,0.30778554599606056
+33,2,0.19086363612241197,1.95,1.3853000688343253,0.000699572774169223,0.03666059212136144,0.8178277712443013,1,0.24214130440393863,0.2800237145361217
+33,3,0.2660334999706242,2.0,1.3862244427835089,0.0007001781191261576,0.03637786781608717,0.8288678685220227,1,0.28814802240203014,0.3359143033660405
+33,4,0.296962463454747,2.0,1.3861821515402355,0.0007002047417386815,0.03671966347947768,0.8288618771508935,1,0.3346441967486454,0.37701594918429615
+33,5,0.3162322794469165,2.0,1.386094424205527,0.0007002392495638805,0.03675246097205838,0.8288494424716502,1,0.3827314298765575,0.4104656916543117
+33,6,0.2971101044174246,2.0,1.3861330449420628,0.0007000664557258798,0.03637689800552123,0.8288548720410671,1,0.4274998164586556,0.38703392611320786
+33,7,0.31947406772219367,2.0,1.3860181032317251,0.0007002855697520085,0.036706034607665826,0.8288386285982858,1,0.4583846441184933,0.38706736691598786
+33,8,0.32624533102845954,2.0,1.386127500780116,0.0007001927047122934,0.03675485986136361,0.8288541213935556,1,0.466579816386092,0.39871134824674237
+33,9,0.33309631106328563,2.0,1.386148231255506,0.0007001149333570142,0.03640779303782228,0.8288570400302007,1,0.48912470254888213,0.3914881001457759
+33,10,0.35021486783368533,2.0,1.3860991955783504,0.0007000379983460941,0.03669940546578535,0.8288500622301683,1,0.5377106822058814,0.38376864983777587
+33,11,0.4188955191127603,2.0,1.385991799788722,0.0006999665431952066,0.03675129770576791,0.8288348065048657,1,0.5897530596205287,0.44331431754849615
+33,12,0.3851318034743746,2.0,1.385472321334742,0.0007000133602863742,0.03645521441105762,0.8287611100055301,1,0.6157845415993324,0.4293932894488055
+33,13,0.4086718860914763,1.95,1.3851086324996569,0.00069955010047759,0.03666245708591303,0.8177992415124805,1,0.6426946132480739,0.43864680264082245
+33,14,0.4469662035208691,1.95,1.3855098783123547,0.0006996508840977246,0.036600323706420426,0.817859051002922,1,0.6590700274749954,0.47779397510290306
+33,15,0.42756064010330835,1.95,1.3857027248971914,0.0006999513903070693,0.03654388784872871,0.8178878662729855,0,0.7026473058367376,0.45500572589537774
+33,16,0.42856162292977285,2.0,1.3823166437602963,0.0006975139893784872,0.036622841154070565,0.8283120928432122,0,0.7160763534708433,0.4737702718047849
+33,17,0.4644737445420951,2.0,1.3831538939526127,0.0006979743460904379,0.0366388091407171,0.8284312573092699,0,0.7327711015392215,0.5045510130880214
+33,18,0.44849118401000077,2.0,1.3827291134261817,0.0006977511566435373,0.03639602061106863,0.828370810131127,0,0.7456866360128973,0.5007217653494727
+33,19,0.4587737307115919,2.0,1.3832223950029479,0.0006983055821364222,0.0365774674386726,0.8284410874986234,0,0.7605954162155886,0.5151185474178548
+33,20,0.5281272416404849,2.0,1.383453843139176,0.0006988720695784175,0.036697094295126145,0.8284741409016861,0,0.8418472255582552,0.5046278380572756
+33,21,0.4882183172993385,2.0,1.3829991091132607,0.0007016942091814988,0.036468990853153596,0.828410313706195,0,0.8326744192292331,0.5171618320254843
+33,22,0.5274360010411081,1.95,1.3841973308214246,0.0007012020091155203,0.036661263652371934,0.817663907481355,0,0.864657403218883,0.5385767991785161
+33,23,0.5464105119147034,1.95,1.3840991223781447,0.0007003987052668504,0.03644286155478522,0.8176490256192939,0,0.8994278917295376,0.5554645174096275
+33,24,0.5861271264372016,2.0,1.383854143127535,0.0006996423167728762,0.03655582807327345,0.8285312368014134,0,0.9569841578678727,0.5444448776335079
+33,25,0.6009590964866123,2.0,1.3833350024582003,0.0006997529961547902,0.0365361559532592,0.8284575028056058,0,1.0,0.536530321622041
+33,26,0.6037472919665303,2.0,1.382573791736517,0.0006998358336780467,0.036674439206628814,0.8283493193422753,0,1.0,0.5124909732217676
+33,27,0.5805627384943772,2.0,1.3826962700430596,0.0007011077477343128,0.0364853120665304,0.8283670951003558,0,1.0,0.5352091283145907
+33,28,0.5995524278643345,1.95,1.382449045355534,0.0006999823317094275,0.036564940758885646,0.817402747369375,0,1.0,0.49850809288111464
+33,29,0.5756790533483489,2.0,1.3822700158136634,0.0007010416615760742,0.03647606824602085,0.8283064651040443,0,1.0,0.5189301778278295
+33,30,0.5827282514188551,1.95,1.382017786087678,0.0006999042965868917,0.03646542018079739,0.8173383474416823,0,1.0,0.5424275047295167
+33,31,0.5905773564148086,2.0,1.3814053132984945,0.0006988526963899512,0.03660595750306718,0.8281828336785114,0,1.0,0.5685911880493617
+33,32,0.6114731281890949,2.0,1.3808813114382725,0.0006978906152338182,0.036607343891423755,0.8281079835772578,0,1.0,0.5715770939636495
+33,33,0.6166109090611449,2.0,1.3803114691778395,0.0006981841220003662,0.03638156312313702,0.8280269377177867,0,1.0,0.5553696968704829
+33,34,0.5688017736321105,2.0,1.380286787468882,0.0006992317536480788,0.036486149882787484,0.8280237214218567,0,1.0,0.5626725787737014
+33,35,0.6142018263974782,1.95,1.382396043318866,0.0006992163764489058,0.03667218911661986,0.817394607737152,0,1.0,0.5473394213249273
+33,36,0.6078734855983643,1.95,1.382113250297889,0.0006999281862532431,0.036609449699593614,0.8173526066031218,0,1.0,0.5262449519945475
+33,37,0.5967686791994221,2.0,1.3817401480829263,0.0007005739743600938,0.036647498335282046,0.8282309638565821,0,1.0,0.5225622639980736
+33,38,0.5980175132164793,2.0,1.3814537653333896,0.000701219059544013,0.036675206572046336,0.8281904015266703,0,1.0,0.5267250440549309
+33,39,0.5903720553367915,2.0,1.380913751595585,0.0007018488730687495,0.03652939997443401,0.8281137280779063,0,1.0,0.5679068511226384
+33,40,0.5792267771807932,2.0,1.3805462753261133,0.0007004821621327763,0.03647033182603839,0.8280610255177908,0,1.0,0.5974225906026438
+33,41,0.625802614987767,2.0,1.3826276850132864,0.0007002410051449237,0.03671097699582894,0.8283570973310691,0,1.0,0.5860087166258899
+33,42,0.621793566803148,2.0,1.3823341535095428,0.0007009827019832358,0.03648803506429989,0.8283155694765825,0,1.0,0.5726452226771597
+33,43,0.5733178245662097,2.0,1.3818798612535477,0.0007016365279265539,0.036444030953512244,0.8282511414595217,0,1.0,0.5777260818873656
+33,44,0.5979845922812816,1.95,1.38358866655359,0.0007011914586156715,0.03674125271171645,0.817573141250178,0,1.0,0.5932819742709387
+33,45,0.6158958825563579,1.95,1.3832638670486441,0.0007002271525012752,0.036700875497632325,0.8175244055772981,0,1.0,0.5863196085211926
+33,46,0.6231418325117529,2.0,1.3829411043762814,0.0007008315276347231,0.03656511823792048,0.8284018231050697,0,1.0,0.6104727750391762
+33,47,0.60950369219982,2.0,1.3836958245881141,0.000702068593786964,0.03674393244724373,0.8285094332152564,0,1.0,0.6316789739993999
+33,48,0.595247411152457,2.0,1.3833409371926073,0.0007030542552479245,0.03665348052045785,0.8284592845383065,0,1.0,0.6508247038415232
+33,49,0.6358805373456872,2.0,1.3826511946142148,0.0007036511497025129,0.03654328157912161,0.8283614096409211,0,1.0,0.6196017911522904
+34,0,0.18280820817613913,2.0,1.3855958624662446,0.0006996959010656825,0.036445788600537786,0.8287785516751702,1,0.14481378364823655,0.24960898238948176
+34,1,0.1544616590366612,1.95,1.3854767314830374,0.0006996283476834038,0.03670453949789311,0.8178541064983514,1,0.18422860654794157,0.2359007213916152
+34,2,0.16319769262545825,1.9,1.3855661428716224,0.0006996584879025694,0.036693416727888006,0.8064280588807726,1,0.2357861651614443,0.1962774218696018
+34,3,0.20776453959044633,1.95,1.3859991464184818,0.0007000211981410301,0.03643572826016058,0.8179320340907832,1,0.24518227800458642,0.23230542796203915
+34,4,0.2345951492909876,1.95,1.3860896106747487,0.0007002159117488671,0.036749416417377376,0.817945563559804,1,0.2876852870062837,0.2650701149615804
+34,5,0.27508228552516917,1.95,1.3860678335819445,0.0007001196677541355,0.036705486836991846,0.8179422920330854,1,0.3273152329627339,0.31385397446691865
+34,6,0.24077856626614846,1.95,1.3859628946352376,0.000700122295096886,0.036432081357041304,0.8179266655524674,1,0.3723182789152682,0.272837515666804
+34,7,0.31796465656280887,1.9,1.3860944137912596,0.0007001070867425743,0.0367639592587111,0.8065106496058833,1,0.4223490071679743,0.3300835123187305
+34,8,0.36022794567042626,1.9,1.3860779129417717,0.0007000878772701532,0.03654774926196925,0.8065080686197545,1,0.47935974060040853,0.3949468314342095
+34,9,0.3367131988633083,1.9,1.3860886200909421,0.0007002237743851218,0.03662354991954586,0.8065097819088902,1,0.49922048113421824,0.3900833546987366
+34,10,0.3783802337141361,1.8499999999999999,1.385972434105271,0.000700281420524074,0.03677543525947398,0.7945173133845477,1,0.5335334483566956,0.41655618123819294
+34,11,0.37918055846773796,1.8499999999999999,1.3853080286526192,0.0006996154263140262,0.036434553324244945,0.7944086040773415,1,0.5675080742099698,0.44059109594583334
+34,12,0.41705488100509996,1.9,1.3849785181777072,0.0006995141378532145,0.03673583131957782,0.8063362679816485,1,0.5906559814950402,0.4693082946902798
+34,13,0.3976969863756785,1.9,1.3853579400215414,0.0006995630522274854,0.03671272538429444,0.8063955261590803,1,0.6267622233409117,0.45664032346437944
+34,14,0.46952056806321313,1.95,1.385599010776515,0.000699936365617849,0.036415093690647986,0.8178724133488924,1,0.6678929255746467,0.5078779927778482
+34,15,0.45360488544474853,1.95,1.3854240739173858,0.0006996551400531045,0.03652796840313103,0.8178462700171494,1,0.6851201547541159,0.531856078477007
+34,16,0.4976134425166384,2.0,1.3857887431435776,0.0006998185290195421,0.0367659508689455,0.828805955405725,1,0.727222382118432,0.5557482988975521
+34,17,0.4702298412160424,2.0,1.38594109742811,0.0007000025630740203,0.03675956141642396,0.8288276235796262,1,0.7630588086270564,0.516687725884066
+34,18,0.49314536792146546,1.95,1.3857543433391573,0.0007000105846855745,0.03643913302034281,0.8178955722077264,1,0.7802233528860175,0.5368534225568614
+34,19,0.5049459066431516,1.95,1.3860280050619351,0.0007000194051830926,0.0367774310911451,0.8179363311240728,1,0.7946017829514938,0.5570173115418471
+34,20,0.5474194373004472,2.0,1.3861135366692572,0.0007000493155443307,0.036552119207482345,0.8288520998246676,1,0.8284010594363325,0.5868633784197137
+34,21,0.5758773261394129,2.0,1.3820785451654825,0.0007000067193717097,0.036421704312740784,0.8282789390143972,2,0.8640443522100308,0.6341986175180016
+34,22,0.643641965114629,2.0,1.3766981423907403,0.0006994078483623713,0.03635734314820041,0.8275121453429224,2,0.9195434149021302,0.6527486638459232
+34,23,0.6484783163061966,2.0,1.3746060715053767,0.0006990575143013985,0.03648222072148692,0.8272132271603624,2,0.9631189065248147,0.710769178987569
+34,24,0.6665319135230717,2.0,1.3755992972093056,0.0007030905182156921,0.03656147228015514,0.8273562964040652,2,0.9823106038575292,0.7453589066002
+34,25,0.7194413466179279,2.0,1.3758860859561084,0.0007068277689549329,0.036583636306066224,0.827398324286511,2,1.0,0.7981378220597599
+34,26,0.6258236896704934,2.0,1.3736335046717794,0.0007071825259649515,0.036625068111711505,0.8270764965851531,2,1.0,0.7527456322349779
+34,27,0.7149751072586941,1.95,1.3763480638161523,0.0007047289807280587,0.03629818399946914,0.8164918008133107,2,1.0,0.7832503575289804
+34,28,0.6179254989000666,1.95,1.3736698664012321,0.0007048923091141869,0.03658328161512086,0.8160902274614935,2,1.0,0.7264183296668889
+34,29,0.6730663973742348,1.9,1.3757218576670136,0.0007025776128014678,0.03659698121223419,0.8048876275315584,2,1.0,0.7435546579141156
+34,30,0.7119834383660391,1.9,1.3758744842379913,0.0007066387178408883,0.036529323562145874,0.8049128708510773,2,1.0,0.773278127886797
+34,31,0.6246923922962119,1.9,1.3734828829636443,0.0007068975152420452,0.0361715186507363,0.8045371296620171,2,1.0,0.748974640987373
+34,32,0.691032552680536,1.8499999999999999,1.3751384085443816,0.0007041682048400819,0.03657444755679794,0.7927441880084902,2,1.0,0.803441842268453
+34,33,0.6782137171071099,1.8499999999999999,1.3844397921436398,0.0007005204329224456,0.03659579547532118,0.7942670601089151,2,1.0,0.8273790570236996
+34,34,0.7147942995453842,1.9,1.3837830566109286,0.0007008260260722692,0.03671865347882461,0.8061499286414666,2,1.0,0.8826476651512803
+34,35,0.7498201072804345,1.9,1.3835557863335293,0.0006997056558447888,0.03670293762845965,0.8061140599247683,2,1.0,0.8994003576014483
+34,36,0.7343113543025193,1.9,1.3848928533232079,0.0006997101197100564,0.03653939183147799,0.806322951581971,2,1.0,0.9477045143417306
+34,37,0.7238465457310546,1.95,1.3844261986123516,0.0006990494335858834,0.03657997437897746,0.8176973850566348,2,1.0,0.9794884857701815
+34,38,0.75,2.0,1.3838742555640604,0.0006989619899163352,0.03643541087727579,0.8285339007987768,2,1.0,1.0
+34,39,0.6827049590710723,2.0,1.383290892940987,0.0006982380929217035,0.03648141303343294,0.8284508034653655,2,1.0,0.942349863570241
+34,40,0.7474408737678295,1.95,1.3836657974428517,0.0006989173779390571,0.036500906653534906,0.8175839665185384,2,1.0,0.991469579226098
+34,41,0.7799999999999999,1.95,1.3828131688196326,0.0006979894145896241,0.03651622148285102,0.8174564937456765,2,1.0,1.0
+34,42,0.75,1.95,1.3843059290268558,0.0006987819530399017,0.036690547479019675,0.8176793762284577,2,1.0,1.0
+34,43,0.75,1.9,1.3833651099647784,0.0006981935243979079,0.03655838404004001,0.8060837838478213,1,1.0,1.0
+34,44,0.7155131376261159,1.95,1.3825290328747997,0.0006986815023542623,0.03660179110778623,0.8174142973506707,1,1.0,0.9850437920870531
+34,45,0.7155604097515231,1.9,1.382208198839614,0.000699248832068566,0.03666797209885184,0.8059032100356479,1,1.0,0.9852013658384106
+34,46,0.74,1.95,1.3814317429026721,0.0006996545837948287,0.03663201038319714,0.8172507624572709,1,1.0,1.0
+34,47,0.7035742878436257,1.95,1.383579573542908,0.0006996076564198552,0.036455312272031686,0.8175713126054239,1,1.0,0.9785809594787525
+34,48,0.691719199911055,1.9,1.3830054810328636,0.0006986238010664453,0.03666160027437275,0.8060276976292923,1,1.0,0.9390639997035168
+34,49,0.7050699851994611,1.95,1.3821234047727822,0.0006976259270244825,0.03664269194542502,0.8173534351398021,1,1.0,0.9502332839982037
+35,0,0.14077304393814627,2.0,1.386275944945686,0.0007001693017710423,0.03635190010342188,0.8288751712687984,0,0.1271598793824028,0.23303030728395047
+35,1,0.12060480626708739,1.95,1.3862649301395278,0.0007001543118422173,0.03673423479136844,0.8179716506908037,0,0.12911789468696916,0.22985882797433246
+35,2,0.160587418677033,1.9,1.386282219415165,0.0007001633640183532,0.036724367782089776,0.8065399727781376,0,0.15776171928917734,0.25827576987120693
+35,3,0.1414085010928121,1.9,1.3862606768913417,0.0007001575730856324,0.036450287056066025,0.8065366095988609,0,0.15199614556650307,0.2687001428873696
+35,4,0.20995887212529796,1.95,1.3862711304177848,0.000700182054409262,0.036777027905525186,0.817972582134769,0,0.21545191079587622,0.2792603593564915
+35,5,0.20599664535052778,1.95,1.3858193711760092,0.0007000087978424526,0.03668250214526183,0.8179052568776821,0,0.24083918424752704,0.29886990550505654
+35,6,0.2501660467649935,2.0,1.385805343181007,0.0006999207846657318,0.03641361606304868,0.8288083397335674,0,0.29713571990240817,0.3043725293467674
+35,7,0.21560402844933307,2.0,1.3859175971553241,0.00070010861676828,0.03670035805242333,0.8288243196065492,0,0.3111202768962142,0.30385305896949133
+35,8,0.2990295551022728,1.95,1.3860375945976338,0.000700088428543037,0.036754480298174366,0.8179377797170163,0,0.4101504358503043,0.2832312692071702
+35,9,0.2882831378190225,1.95,1.3819825227062597,0.0007019409274295109,0.03655177552821006,0.8173336908238351,0,0.4447800511239226,0.30123705789817795
+35,10,0.2952123952023738,2.0,1.3826241666885535,0.0007011641410269609,0.03671055763474046,0.8283568595957445,0,0.456253620961249,0.30903648939291395
+35,11,0.31642942775959026,2.0,1.3830839125074645,0.0007004963160733011,0.03667918384120043,0.8284220273558922,0,0.4885143599653164,0.33674561257821234
+35,12,0.30847108472121426,2.0,1.3832453013560175,0.0006998675452181306,0.03632094974422463,0.8284447870582272,0,0.505172090326803,0.35467416196831014
+35,13,0.3789736075202616,2.0,1.3838683323030134,0.0006996170215715509,0.03662623380828163,0.828533245421651,0,0.567473450213076,0.37328075811677064
+35,14,0.4082942232353309,2.0,1.3841794034643904,0.0007005307749394648,0.036731074317209414,0.8285776930851505,0,0.6434312409561913,0.36973908950951456
+35,15,0.36867963123987335,2.0,1.3806251722058847,0.0007074248275339193,0.036516814821197216,0.8280742350723354,0,0.6385885478935605,0.3774807069414972
+35,16,0.40428615741741836,1.95,1.3811975627827515,0.0007060105323010158,0.03670378056657041,0.817217683421463,0,0.6589703880195209,0.4023266740320332
+35,17,0.4601178645001368,1.95,1.3858074121877322,0.0007001713329932264,0.03657023365845457,0.8179035241591851,0,0.750533969289521,0.3996809226144281
+35,18,0.5011976992868582,1.95,1.3806723426099337,0.0007064602776315193,0.03650161706804478,0.817139351072233,0,0.8542149467115255,0.36503906867415986
+35,19,0.4508610998443201,1.95,1.3742640625282887,0.0006920227223251568,0.03641167841303365,0.8161755301123464,0,0.8473895808361686,0.37301755836617556
+35,20,0.48671784249758704,1.9,1.3731491938042617,0.0006910663016098766,0.03611270799914641,0.8044796691250281,0,0.8708892015542112,0.3945405395863416
+35,21,0.5436422305651651,1.9,1.3758035945176905,0.0006929242845635184,0.03636719387205727,0.8048974316033043,0,0.967342450686721,0.3890175009682555
+35,22,0.5610898902399712,1.9,1.375161796138093,0.000692474538054942,0.036408822872453686,0.8047964841221291,0,1.0,0.3702996341332374
+35,23,0.5532700220781603,1.95,1.3764763468088121,0.0006935517898746478,0.03642770208889913,0.8165076718764211,0,1.0,0.3442334069272007
+35,24,0.5086789189116148,2.0,1.377431353367963,0.0006947590824743457,0.036453633261132504,0.8276154492069475,0,1.0,0.36226306303871575
+35,25,0.5512966317728535,1.95,1.3766408798201124,0.0006938817857579212,0.03643396275528884,0.8165324202761276,0,1.0,0.37098877257617796
+35,26,0.5534459489968738,1.95,1.375822519517572,0.0006938890955028049,0.03619758971777292,0.8164097944214003,0,1.0,0.3448198299895792
+35,27,0.5091594526493766,2.0,1.3762994316767205,0.0006950654987872359,0.036322338914867434,0.8274539876758901,0,1.0,0.36386484216458864
+35,28,0.5516338707561235,1.95,1.375575854933406,0.0006941025246762371,0.03626112734530447,0.8163728842432126,0,1.0,0.3721129025204114
+35,29,0.515817646273259,1.95,1.3746805829273891,0.0006942804420873117,0.036487335133310914,0.8162386909877183,0,1.0,0.38605882091086335
+35,30,0.5187210993182181,1.9,1.373635614973639,0.0006930423492136828,0.03634430993834006,0.8045567894645618,0,1.0,0.3957369977273934
+35,31,0.5365192410096095,1.95,1.3721108325116342,0.0006916181804584114,0.03603228136632025,0.8158521329643955,0,1.0,0.38839747003203134
+35,32,0.5579608782320135,2.0,1.3760299262905227,0.0006932386023633507,0.03613968808715165,0.8274149841899088,0,1.0,0.3598695941067112
+35,33,0.5308684654216064,2.0,1.376857453874003,0.0006943981897182649,0.036275095986261066,0.8275334536369597,0,1.0,0.3695615514053543
+35,34,0.5337430228241729,1.95,1.3795407869398386,0.0006955423271627996,0.03633744601536351,0.816966945223453,0,1.0,0.37914340941390956
+35,35,0.5517266038223445,2.0,1.3813536814399727,0.0006967067404286915,0.0365465280331699,0.8281748758020738,0,1.0,0.3724220127411481
+35,36,0.5386703499501524,2.0,1.3811662544898102,0.0006966135912361096,0.03647177341577063,0.8281481765583287,0,1.0,0.3955678331671745
+35,37,0.5444480396359591,2.0,1.38258833388069,0.000697648125053141,0.03646867518812797,0.8283507649110496,0,1.0,0.4148267987865304
+35,38,0.569196416770025,2.0,1.3833268983988187,0.0006987998364551359,0.036694842146196296,0.8284560801692523,0,1.0,0.39732138923341653
+35,39,0.5178092602486858,2.0,1.3820861852183564,0.0006972247062107388,0.03644616577770025,0.8282792342935522,0,1.0,0.3926975341622859
+35,40,0.5442928451365211,1.95,1.381270149791273,0.000696745569444887,0.03636864767012672,0.8172257579484588,0,1.0,0.41430948378840365
+35,41,0.5648644755848028,1.95,1.3805776644667718,0.0006986379969553566,0.036386250536988816,0.81712286578659,0,1.0,0.4162149186160091
+35,42,0.5469666485523691,1.95,1.381023595861404,0.0007003542476153668,0.03666069684316014,0.8171900060523385,0,1.0,0.4232221618412301
+35,43,0.5296794257918082,2.0,1.3806944115552542,0.0006991120128950119,0.03656128595164144,0.828081725416118,1,1.0,0.4322647526393606
+35,44,0.5342511681089155,2.0,1.3820476509629975,0.0007000495499309309,0.03666685152593785,0.8282745569807183,1,1.0,0.4141705603630517
+35,45,0.5345634924518184,2.0,1.3816605556876,0.0007005660817664042,0.03654720977723748,0.8282196381478771,1,1.0,0.41521164150606144
+35,46,0.5473452045116193,2.0,1.3811520116431688,0.0007010060467993718,0.036466829285496924,0.8281473997902452,1,1.0,0.42448401503873084
+35,47,0.5263749714303815,2.0,1.3807405813112308,0.0006998253906132579,0.036662041767115336,0.8280885012630216,1,1.0,0.38791657143460495
+35,48,0.5180506368450666,1.95,1.3825386148381398,0.0007026571657646587,0.036630433860699974,0.8174169141474699,1,1.0,0.36016878948355513
+35,49,0.5586436966846181,2.0,1.3826702524409935,0.0007015056256940559,0.03651928878669032,0.8283635091533984,1,1.0,0.39547898894872685
+36,0,0.1892386834300891,2.0,1.386265203768601,0.0007001532202090922,0.03635105946339703,0.8288736431607242,0,0.2141467748554528,0.17859991162635994
+36,1,0.20440717220779225,1.95,1.3857887853855746,0.0006998270788991226,0.03672248008052294,0.8179006473703962,0,0.26942401531867155,0.1887918869344121
+36,2,0.2511373517976223,2.0,1.3858658951149918,0.0006999054859587216,0.03671118313791871,0.8288169266371083,0,0.3751961662670128,0.17019628430272404
+36,3,0.22805996582583601,2.0,1.3857765349751128,0.0006998992960980745,0.03640798845436004,0.8288042461424451,0,0.3817519591614193,0.1845306072042276
+36,4,0.24423533796415972,1.95,1.3856858027188075,0.0006997814278148372,0.0367023377499278,0.8178852951151103,0,0.40406979790181263,0.2086913960114489
+36,5,0.3086142364080447,2.0,1.3841203807743434,0.0007023404850420219,0.03666404737104174,0.8285698236442992,0,0.5094539779495565,0.18277548409407363
+36,6,0.34247829167839705,2.0,1.3859690405774185,0.0007001999262354681,0.03636719100819116,0.8288316439044193,0,0.6103127166348917,0.16117735008146783
+36,7,0.3645589771017278,2.0,1.381969301435478,0.0007018196592067174,0.03666614100690271,0.8282639161563574,0,0.693318659832109,0.15743837722961398
+36,8,0.4113749817808346,2.0,1.3827081846256024,0.0007010238648515511,0.036676763764139135,0.8283687651981864,0,0.8067011865662559,0.1289816905144406
+36,9,0.42572317835279555,2.0,1.3816681604142054,0.0007010635903108376,0.03643403332038733,0.828220861646033,0,0.8783165910328514,0.11465513979884996
+36,10,0.41082387445610136,2.0,1.3814503322154654,0.0007000904291869259,0.036589788035866475,0.828189591835148,0,0.8903116125414668,0.11566409813171538
+36,11,0.431744051430726,2.0,1.380873430596488,0.0007002160453386276,0.036651718882637234,0.8281075238045552,0,0.918206212761607,0.14820522108694384
+36,12,0.42107254105926495,2.0,1.380179957803982,0.0007003754211307329,0.036470538054683144,0.828008834037755,0,0.9309396032982,0.16232233246661643
+36,13,0.4929921183909537,2.0,1.3802523252878918,0.000701720777886495,0.036583206225531774,0.828019522827861,0,1.0,0.14330706130317902
+36,14,0.48248538712393196,2.0,1.3822006108269316,0.0007011057113814631,0.03666013797762139,0.8282966126768168,0,1.0,0.1416179570797733
+36,15,0.4822517385051116,2.0,1.382021138737638,0.0007000824983346679,0.03644266348984085,0.8282707953329594,0,1.0,0.10750579501703866
+36,16,0.4589162871218487,2.0,1.383457043276201,0.0006998537840849458,0.036596913635424264,0.8284748746676445,0,1.0,0.12972095707282874
+36,17,0.47034035138129693,1.95,1.3828638708880703,0.0006999133924866713,0.036714114091993565,0.8174646336343131,0,1.0,0.1678011712709897
+36,18,0.49400648317973717,2.0,1.3820470443661783,0.0006999077705787811,0.03649788013770352,0.8282744303686849,0,1.0,0.1466882772657905
+36,19,0.4476949286817308,2.0,1.3833513472369303,0.0006996089909976635,0.03659794157477874,0.8284597847119539,0,1.0,0.15898309560576912
+36,20,0.4852713345718068,1.95,1.3836359867888588,0.0007006740564032505,0.03670767577342003,0.8175800444957436,0,1.0,0.15090444857268942
+36,21,0.4977974938810261,1.95,1.3835217034796612,0.0006998832264299682,0.036532829866714044,0.8175627634205979,0,1.0,0.15932497960342043
+36,22,0.4512475637032168,2.0,1.3844526679079119,0.0006997395242122059,0.03674838979670456,0.8286162784468448,0,1.0,0.17082521234405584
+36,23,0.48995698335152116,1.95,1.3846858610060095,0.0007004512446698105,0.03675082785242316,0.8177365071757822,0,1.0,0.13318994450507055
+36,24,0.4708943391610711,1.95,1.3852651624780212,0.0007002237011648902,0.03663859931953349,0.8178227646069863,0,1.0,0.16964779720357026
+36,25,0.49058785352854345,2.0,1.3847908637401307,0.0007002302622471057,0.036738272972025136,0.8286644401028941,0,1.0,0.13529284509514472
+36,26,0.47169288477057997,2.0,1.3852145701728287,0.0006999512120125397,0.0367476569691666,0.8287245102150801,0,1.0,0.17230961590193308
+36,27,0.48172174901499143,2.0,1.3847067614317192,0.0006998878692158538,0.03646738766111997,0.8286524017223995,0,1.0,0.2057391633833046
+36,28,0.4669094579742244,2.0,1.381018505695382,0.0006965319055958055,0.03642178954827441,0.8281271248584623,0,1.0,0.2230315265807479
+36,29,0.5050243152636354,2.0,1.3801772656588631,0.0006959995804500519,0.03653680503351263,0.828007204313965,0,1.0,0.21674771754545152
+36,30,0.4950561288561374,2.0,1.3798132489946253,0.0006956565348887089,0.03647694888900369,0.8279552603167409,0,1.0,0.25018709618712465
+36,31,0.5226466547689254,2.0,1.381288338862202,0.0006969791187486678,0.036486950929654705,0.8281656547949903,0,1.0,0.24215551589641782
+36,32,0.5135618048488931,2.0,1.382155743803834,0.0006972810173212967,0.03664143076008504,0.8282891435939785,0,1.0,0.21187268282964372
+36,33,0.4938848555992206,2.0,1.382616761170724,0.000697637765200855,0.03644840512492202,0.8283548038835991,1,1.0,0.24628285199740185
+36,34,0.4711270293496483,2.0,1.3823346499216895,0.000701650740602725,0.036500150883722306,0.8283158300727014,1,1.0,0.20375676449882746
+36,35,0.46076673353710423,1.95,1.3822574928926923,0.0007005989537319723,0.036718635620093414,0.817374339464008,1,1.0,0.16922244512368065
+36,36,0.5009141139407942,2.0,1.382219985952077,0.0006988484697013431,0.03663271907606595,0.8282987261668058,1,1.0,0.20304704646931407
+36,37,0.45835463072076077,2.0,1.3822982956528556,0.0007008643005524109,0.036525359369431964,0.828310436434399,2,1.0,0.1611821024025359
+36,38,0.5121262671542873,1.95,1.3862943611198846,0.0007001722195526525,0.036788073654356365,0.8179760380796509,2,1.0,0.20708755718095775
+36,39,0.45072103693261256,1.95,1.3862943611198844,0.0007001722195526527,0.036756998612821994,0.8179760380796509,2,1.0,0.1690701231087085
+36,40,0.5382288075301336,1.9,1.3862312603196234,0.0007001705743261057,0.03670670984535847,0.8065320235910514,2,1.0,0.19409602510044538
+36,41,0.5437474683757342,1.9,1.3861937562997324,0.0007003090769672408,0.03675620563042452,0.8065262146914478,2,1.0,0.21249156125244717
+36,42,0.45243774221596367,1.95,1.3862323135950627,0.0007001713521479671,0.036376130744771334,0.8179667993062127,2,1.0,0.17479247405321224
+36,43,0.4883530683330578,1.9,1.3860184591960585,0.0007004244148490807,0.03667280630949013,0.8064988955660349,2,1.0,0.19451022777685933
+36,44,0.5163246904856602,1.9,1.386086958200279,0.0007002107351946337,0.03671807130325887,0.8065095184982246,2,1.0,0.22108230161886727
+36,45,0.5546165793076605,1.9,1.3860379727046146,0.0007001685931907931,0.03640995944453062,0.806501860949964,2,1.0,0.24872193102553508
+36,46,0.45987019874400853,1.9,1.3860457024303545,0.0007000180175383271,0.03676174482609449,0.8065030202254622,2,1.0,0.19956732914669498
+36,47,0.4522429285093745,1.8499999999999999,1.3860272176587438,0.0007004240484359036,0.03664661046601249,0.7945263037478746,2,1.0,0.1741430950312482
+36,48,0.5372455296661969,1.9,1.3862029218168115,0.0007002970581324096,0.03664120495514721,0.8065276411392528,2,1.0,0.19081843222065606
+36,49,0.44288963414430993,1.9,1.386033314322232,0.0007004096236753611,0.036783506849594694,0.8065012092065709,2,1.0,0.1429654471476996
+37,0,0.1890970902161716,1.8499999999999999,1.3855691151058378,0.0006996655988725439,0.036457876785426925,0.7944512587584853,1,0.14041639501893421,0.27643510736199306
+37,1,0.15588105323388884,1.7999999999999998,1.3854125448101016,0.0006995614098640284,0.03672557546645776,0.7819065629883826,1,0.19579930958409014,0.225204431334176
+37,2,0.2334113648401434,1.7499999999999998,1.3854494880497334,0.0006995761093014482,0.03662148896979326,0.7688534830635538,1,0.24561134070274512,0.2838894285301512
+37,3,0.2787861456101338,1.7499999999999998,1.385929342931471,0.0007000856067255221,0.03660616414251604,0.7689389318643494,1,0.30471449317820065,0.35633449446284526
+37,4,0.2874437721379541,1.7499999999999998,1.3857464457209057,0.0007000549647433751,0.03675791799432696,0.7689064236905204,1,0.33220692448999245,0.38187000780652375
+37,5,0.3068140949623953,1.7999999999999998,1.3857294757348488,0.0006999053189484575,0.036438122670696585,0.781960721246729,1,0.35055971310554257,0.4219673657339277
+37,6,0.29789804280034005,1.8499999999999999,1.3858178672175523,0.0006999366686049589,0.036702598359120986,0.7944919651365835,1,0.37382714499502745,0.4278906160077635
+37,7,0.30660071100190434,1.9,1.3858025806692735,0.000699846174053718,0.03675152611117043,0.8064650231709279,1,0.3897552399116238,0.4356620501241827
+37,8,0.3454634155059429,1.95,1.3857220905784418,0.0006997692745065983,0.03653711380333804,0.8178906964705966,1,0.42619268686609346,0.44995446919835186
+37,9,0.3949965326619615,1.95,1.38515736125943,0.0006993874458869387,0.03644732087397445,0.8178064536919654,1,0.477733852400619,0.5130099723390463
+37,10,0.43297987699574964,1.95,1.3855056748320886,0.0006996526121133628,0.036749199743665,0.8178584253428571,1,0.5301348862867422,0.5697530749368426
+37,11,0.47449443175543576,1.95,1.3856804372200222,0.0006999437767310653,0.03664913814964985,0.8178845442919528,1,0.5837269961165134,0.6366787776961013
+37,12,0.5161368787549164,1.95,1.3862943611198846,0.0007001722195526523,0.0365171926191442,0.8179760380796509,1,0.6385247968188704,0.7024232000912274
+37,13,0.47831791087511455,1.95,1.385972071323633,0.0007005131123955747,0.03677998709989873,0.8179281485674758,2,0.6702522569822231,0.667390026940751
+37,14,0.47185557530063166,1.9,1.3862138348768596,0.000700170328757865,0.03662679853062205,0.8065293044665879,2,0.6970225077224652,0.6434885740388185
+37,15,0.540006033901876,1.95,1.3860200628776607,0.000700162712800893,0.0367429854748215,0.8179351910808327,2,0.7248032217879523,0.6669491506223169
+37,16,0.5709665359127567,1.95,1.3860399141249602,0.0007000213441234018,0.03677827552167227,0.817938105150691,2,0.7646889115538904,0.7169699043040018
+37,17,0.6408965560105465,1.95,1.385866967344347,0.0006998774989997985,0.036576943978612594,0.8179123064560025,2,0.8424247578829617,0.7464221761912062
+37,18,0.6032525611453161,1.95,1.3755776725094118,0.0007080100824781268,0.036532439034390025,0.8163773263849717,2,0.8598881533795202,0.7643243326450267
+37,19,0.6872913422549625,1.9,1.3780299298943353,0.0007057125378631565,0.03668810950079731,0.8052508235532175,2,0.9260843944458079,0.7895252815887976
+37,20,0.6060089503554622,1.9,1.375752780032585,0.0007060918003753369,0.036324013377598816,0.8048935873810604,2,0.9498195871959425,0.7536037182569509
+37,21,0.6052617161194577,1.8499999999999999,1.3771452411939902,0.0007037647546140817,0.03665833153557475,0.7930735861745963,2,0.989838313717456,0.6977546354415842
+37,22,0.6944674084216528,1.9,1.3775978337292767,0.0007017067577256583,0.036500547457877966,0.8051817957359387,2,1.0,0.7148913614055092
+37,23,0.674451488201042,1.9,1.375795521498586,0.00070164701966597,0.03647011172601265,0.8048989034259149,2,1.0,0.7481716273368064
+37,24,0.661287937757753,1.8499999999999999,1.3762179771311285,0.0007053050517508977,0.03659876537635778,0.7929218793116475,2,1.0,0.770959792525843
+37,25,0.6919809770846573,1.9,1.3787178114289926,0.0007034617037096911,0.03653118302810799,0.8053579701508143,2,1.0,0.8066032569488576
+37,26,0.7069944125721233,1.9,1.382623728930631,0.0006977836801760375,0.036561409860572415,0.8059677420795848,2,1.0,0.8566480419070773
+37,27,0.6439150923436792,1.95,1.381282664149904,0.0006971610879769967,0.03661202663311679,0.8172277513126618,2,1.0,0.813050307812264
+37,28,0.730441013091502,1.9,1.3820173818919987,0.0006972191408088022,0.03661213363640787,0.805872725034185,2,1.0,0.8348033769716734
+37,29,0.6858873155188654,1.9,1.3833429952129408,0.0006987560489638392,0.03664909259571192,0.8060805028692779,2,1.0,0.852957718396218
+37,30,0.6439230923247737,1.8499999999999999,1.383420856807771,0.0006983517821069175,0.0366021674236387,0.7940997999520741,2,1.0,0.8130769744159123
+37,31,0.7282716703651062,1.7999999999999998,1.3837573664800944,0.0006983790527734605,0.03669034002117908,0.7816237722693498,2,1.0,0.827572234550354
+37,32,0.710642386070726,1.7999999999999998,1.384759501676146,0.0006993721485385263,0.03666968587941279,0.7817951153243072,2,1.0,0.8688079535690866
+37,33,0.6970549313716874,1.8499999999999999,1.38375928237509,0.0006990484451185747,0.03663511860650618,0.7941553565918792,2,1.0,0.8901831045722912
+37,34,0.6536806257573726,1.9,1.3838770927275372,0.0006986391404861451,0.03666880853917037,0.8061639399907227,2,1.0,0.8456020858579087
+37,35,0.7168282594139901,1.8499999999999999,1.3843118402584316,0.0006987855752391544,0.036717276089491394,0.79424558408241,2,1.0,0.8894275313799666
+37,36,0.7261244655985561,1.8499999999999999,1.383260293882274,0.0006981085030933005,0.03662637984530763,0.7940734662594923,2,1.0,0.9204148853285202
+37,37,0.7377394501252894,1.9,1.3819623906487921,0.0006974384445297317,0.03657167500724857,0.8058641905750954,2,1.0,0.959131500417631
+37,38,0.7781755442186237,1.95,1.3804968390760761,0.0006967323838844461,0.036581524552729186,0.817110217936115,2,1.0,0.9939184807287456
+37,39,0.75,1.95,1.3820977865916106,0.0006991644775137215,0.03663919488730959,0.8173500700300623,2,1.0,1.0
+37,40,0.75,1.9,1.380404420446034,0.0006987550181771825,0.03656002904976308,0.8056207468455899,2,1.0,1.0
+37,41,0.75,1.95,1.3781925334882688,0.0006981887467484734,0.03650915384878138,0.8167660442085707,2,1.0,1.0
+37,42,0.75,2.0,1.3760901174762892,0.0006976683482534215,0.03650799608084726,0.8274248443642492,2,1.0,1.0
+37,43,0.75,2.0,1.3737898579253658,0.0006970001062348997,0.03653268067992221,0.8270959449143577,2,1.0,1.0
+37,44,0.75,2.0,1.3709090530726922,0.000696137692267056,0.03637716334179073,0.8266833306565211,2,1.0,1.0
+37,45,0.6844620896071025,2.0,1.3677067399309988,0.0006950210691214752,0.0360465401095882,0.826223708882641,2,1.0,0.9482069653570083
+37,46,0.6691541817285789,1.95,1.3696442528886401,0.0006935109348641726,0.035985587578457365,0.8154818412509091,2,1.0,0.8971806057619298
+37,47,0.7051032528722732,2.0,1.3701600673665897,0.0006919496513706955,0.036484459938390126,0.8265747905236238,2,1.0,0.9170108429075772
+37,48,0.7349274006977664,2.0,1.3726761192731938,0.0006918487552047552,0.036442369064877064,0.8269351386288167,2,1.0,0.9497580023258879
+37,49,0.7468241470687388,2.0,1.369895931045317,0.0006904162160575231,0.03647751623648358,0.826536483895855,2,1.0,0.9894138235624624
+38,0,0.1793496814251614,2.0,1.3852062247052224,0.000699420934606473,0.036486980193381015,0.8287231751182828,1,0.13866969526048956,0.2462726777365519
+38,1,0.14377352058866877,1.95,1.3850426486233982,0.0006993273885200649,0.036693284687864355,0.8177893430958493,1,0.15490257973558638,0.23937496231478067
+38,2,0.1576134237772952,1.9,1.3850555590070013,0.0006992965353049799,0.036674768080095024,0.8063482302889506,1,0.19917574088468504,0.22647709141140387
+38,3,0.2336854552642914,1.95,1.3850213490131629,0.0006992925788335065,0.036410383779139764,0.8177861588467444,1,0.25618311911641417,0.27070735872575247
+38,4,0.20954893188158993,1.95,1.3857811464828587,0.0006999130539631026,0.036737363899669764,0.8178995352459727,1,0.27555437226754204,0.2644239432485771
+38,5,0.2118877799762539,1.9,1.3858673091911586,0.0007000976206539061,0.036703641134313104,0.8064752042337945,1,0.3268651100262979,0.2371391198857824
+38,6,0.2295373199195349,1.95,1.3859994226931913,0.0007000695278645275,0.036550573690745256,0.817932089627841,1,0.34850559415981264,0.2337836075186995
+38,7,0.27427619015204924,2.0,1.386054326744051,0.000700213135929668,0.03676617988590693,0.8288437468401304,1,0.3855901438706684,0.2668004420126062
+38,8,0.26333548253276223,2.0,1.3860381080590845,0.0007000946726019231,0.03674560336902226,0.8288414124049751,1,0.4075313971617402,0.26774307889355375
+38,9,0.275535189125324,2.0,1.3859599620651972,0.0007001345030851122,0.03639272383630146,0.8288303373710719,1,0.43404885958154604,0.2730521509756852
+38,10,0.2740543029852713,2.0,1.3858447769127475,0.0007001566319419868,0.036687633252931715,0.8288140016437068,1,0.4822379065289871,0.2371971345789213
+38,11,0.2955539547230636,2.0,1.3860378111082936,0.0007001296766366235,0.03675763538040147,0.8288413802101237,1,0.5123856098491191,0.23533236927805323
+38,12,0.30930704018561317,2.0,1.38589432845548,0.0007001287382169339,0.036426535041434824,0.82882102405411,1,0.5333837374709383,0.25317848399079274
+38,13,0.3727010951037242,2.0,1.3856998924612636,0.0007001170193001529,0.036687508781415,0.8287934330208195,1,0.57091262963687,0.31445347749658736
+38,14,0.41628236633344523,2.0,1.385757415610589,0.0007004652364966457,0.03675916013462756,0.8288016939234375,1,0.623663100539271,0.38939042039245625
+38,15,0.37978515820573816,2.0,1.3848753731220431,0.0007013424938413526,0.03640258573617826,0.8286767541959335,1,0.6595243300595901,0.3532514206063403
+38,16,0.3974168437870883,1.95,1.3850433378326155,0.0007008091118246224,0.036645852781868125,0.8177898873772189,0,0.7201882652290312,0.33113845898491934
+38,17,0.45459863163220177,2.0,1.3742045883365763,0.0007117970346425152,0.036427692532984786,0.8271594777124802,0,0.7866145204434248,0.3331760781827728
+38,18,0.49248162533489687,2.0,1.3739390161268215,0.0007139211773995011,0.036314158608035454,0.8271221139054438,0,0.8765078354017344,0.3062616372473437
+38,19,0.4502232663976308,2.0,1.3782346789934632,0.0006959640014717325,0.03644313319870156,0.8277303716262322,0,0.8858816257159047,0.31956872037089645
+38,20,0.5320703986370544,1.95,1.3774567207974315,0.0006950523379215251,0.03647192837121237,0.8166549581230609,0,0.9928320743373809,0.2831252296736735
+38,21,0.48809593521356515,1.95,1.3772589128417057,0.0006957808801864808,0.03634677093380877,0.8166255567503448,0,1.0,0.2936531173785505
+38,22,0.5133323290451888,1.9,1.3763564732841786,0.0006946814945538308,0.03642068689460354,0.8049847914073747,0,1.0,0.31110776348396263
+38,23,0.5331099855216271,1.9,1.3790827100402645,0.0006955581953093633,0.03646964309406481,0.8054126866976321,0,1.0,0.3103666184054237
+38,24,0.5363328124219291,1.95,1.3788451744196761,0.0006959323836770565,0.036547563751791336,0.8168630226911715,0,1.0,0.32110937473976364
+38,25,0.524494805541762,2.0,1.3785800261858714,0.0006962892338306161,0.036529858887688296,0.8277797028078216,0,1.0,0.3483160184725398
+38,26,0.5479202602048058,2.0,1.3810504981464349,0.0006970477588919261,0.03662717112974275,0.8281318252214162,0,1.0,0.3264008673493523
+38,27,0.5435037470748284,2.0,1.3812203637777105,0.0006976966808141323,0.036376997327114836,0.8281561854659186,0,1.0,0.31167915691609455
+38,28,0.4992007322181154,2.0,1.381131078233825,0.000698330935541262,0.03649761643123532,0.8281436590903148,0,1.0,0.33066910739371796
+38,29,0.502863980055771,1.95,1.3805284159934097,0.0006974648829795092,0.03657987092285059,0.8171151557048989,0,1.0,0.34287993351923657
+38,30,0.547655373286277,2.0,1.3796516207108491,0.0006965106760424362,0.03645530361387488,0.8279324792618621,0,1.0,0.32551791095425653
+38,31,0.5055665384397553,2.0,1.3796043857900169,0.0006971240814006266,0.03647759708828817,0.8279259248343075,0,1.0,0.35188846146585095
+38,32,0.512996797081378,1.95,1.378840233424834,0.0006961642413666196,0.03651504026686213,0.8168623528989525,0,1.0,0.3766559902712602
+38,33,0.5178361791131245,2.0,1.377741350924814,0.0006950881601996937,0.036448356573653654,0.8276597653619339,0,1.0,0.39278726371041495
+38,34,0.5462503409597875,2.0,1.3769258523511327,0.0006941442889532023,0.036272452106658734,0.8275431429034206,0,1.0,0.42083446986595835
+38,35,0.567437322559074,2.0,1.3797230862191148,0.0006992483162973752,0.036577713676090765,0.8279434399923106,0,1.0,0.39145774186357957
+38,36,0.558863000758167,2.0,1.3763041925982211,0.000693911425959984,0.036484449794990645,0.8274543378679479,0,1.0,0.39621000252722316
+38,37,0.5203828274522302,2.0,1.376244048653239,0.0006945995119908531,0.03647791222062883,0.8274459472166518,0,1.0,0.4012760915074339
+38,38,0.5614166236365817,1.95,1.3750847537107416,0.0006994672672699878,0.036532486194918126,0.8163008616372566,0,1.0,0.4047220787886057
+38,39,0.5619664950735508,1.95,1.3753321576239812,0.0007024290992384242,0.036515826134617305,0.8163388460174088,0,1.0,0.37322165024516907
+38,40,0.5526076922687753,2.0,1.3777110763751013,0.0006965982728810946,0.03641455535544015,0.8276558777955163,0,1.0,0.3753589742292508
+38,41,0.5564864266634404,2.0,1.3774915871315125,0.0006972615201220227,0.03649194563833256,0.8276247564818067,0,1.0,0.35495475554480094
+38,42,0.5021698631827876,2.0,1.3772872351207983,0.000698240183691599,0.03647422999580241,0.8275958805329736,0,0.9909626018155328,0.352616074855248
+38,43,0.5378807963673629,1.95,1.376600352672625,0.0006970913569578779,0.0365032101763987,0.8165273105953047,0,1.0,0.3262693212245428
+38,44,0.5235415945705371,1.95,1.3758927914758892,0.0006977316189931318,0.03619102888859522,0.816421478706607,0,1.0,0.34513864856845694
+38,45,0.5453709446838346,2.0,1.379001807658266,0.0006978501008751431,0.03655541034331186,0.82784026877091,0,1.0,0.31790314894611543
+38,46,0.532835537349638,2.0,1.3789791904590676,0.0006987007500216829,0.0363517327964626,0.8278372878004145,0,1.0,0.27611845783212624
+38,47,0.5204698977287106,2.0,1.3786222716964736,0.0006994370305573752,0.03659394420131824,0.8277866227401539,0,1.0,0.26823299242903503
+38,48,0.5187218295378325,2.0,1.3782542136068314,0.0007001628497860547,0.03643549209008402,0.8277343545361623,0,1.0,0.2624060984594417
+38,49,0.5199231722959504,2.0,1.3777917690725023,0.0007008065651195067,0.0364928195587692,0.8276685881172384,0,1.0,0.2664105743198347
+39,0,0.012216534860174336,2.0,1.3847143592262139,0.0006990661500522993,0.03650706484590083,0.82865324716548,1,0.13126555489218358,0.16570104301100302
+39,1,0.06025234347519762,1.95,1.3858813005614268,0.0007003984257875691,0.036720577682941416,0.817914596281226,1,0.16554002544888893,0.1801211109854735
+39,2,0.14367629648298463,1.95,1.3858358779653135,0.0007004206030251766,0.03672964498935136,0.8179078379881588,1,0.21169713450882024,0.16332480893152174
+39,3,0.19889950598677217,1.95,1.3862017101934214,0.0007001119120293636,0.03638276691566813,0.8179622248024025,1,0.25659242330351034,0.18754178888456002
+39,4,0.22201875054552903,1.95,1.3862181817446806,0.0007001412301825782,0.03675579639525053,0.8179646861347846,1,0.2862108610669096,0.22511468706255047
+39,5,0.27246608804096883,1.95,1.3860461393787165,0.0007001916316564595,0.036707224169746894,0.8179390829014213,1,0.3449330934247073,0.28164283557028646
+39,6,0.23474451792451223,1.95,1.3859422482517543,0.0007002189469812996,0.03643607840884282,0.8179236196061294,1,0.3878301648092726,0.2320415066693438
+39,7,0.28362227318544253,1.9,1.3860917047488501,0.0007001809442054786,0.03676615780062386,0.8065102499072865,1,0.40944133066302696,0.2661524697341059
+39,8,0.2651828081375553,1.9,1.3857128824763787,0.0007006454504618955,0.036535134633328414,0.8064512722792451,1,0.4808235305852652,0.20951131967816394
+39,9,0.2770582434652174,1.95,1.3859230884108564,0.0007004860669999446,0.036620611320630665,0.817920845780066,2,0.5403443926067083,0.16973495474178021
+39,10,0.31211354470487607,2.0,1.3862943611198844,0.0007001722195526521,0.03677866945806729,0.8288777842514964,2,0.5677215172832611,0.18341645930523873
+39,11,0.32879901406206113,2.0,1.386271583464544,0.000700171193846629,0.036761086517789435,0.8288745531672833,2,0.5977186163284289,0.19903855843563187
+39,12,0.2965141332517665,2.0,1.386197889421204,0.0007001725299352905,0.03641875288871946,0.8288641004172566,2,0.6229099808504817,0.1578338030385794
+39,13,0.3805208761671136,1.95,1.3862943611198846,0.0007001722195526525,0.03669645096191351,0.8179760380796509,2,0.681251998573726,0.19340025579207737
+39,14,0.33011676888098657,1.95,1.3862596005075731,0.0007001706726508898,0.03662151647388359,0.8179708620111522,2,0.7178175146763387,0.143299210034837
+39,15,0.443270300255106,1.9,1.3862499747191295,0.0007001420239019848,0.036553625816762844,0.806534934824181,2,0.7807833046457024,0.16985659465608344
+39,16,0.35975616537553445,1.9,1.3862509643152439,0.0007001847741548541,0.03671215773793665,0.8065351025782607,2,0.8105291586987664,0.11848167298675957
+39,17,0.4319474796007454,1.8499999999999999,1.386102414928263,0.0007002770546173046,0.0364529148916099,0.7945385317576925,2,0.8387802194198404,0.1547846394426975
+39,18,0.37854814151816074,1.8499999999999999,1.38603638476517,0.0007004847394738291,0.0367271971447755,0.7945278201290098,2,0.8601412024912918,0.11497220173881326
+39,19,0.4629219047485034,1.7999999999999998,1.3860627430734698,0.0007002771063695011,0.03639260293604455,0.78201766412682,2,0.9111828072259683,0.16149593952705354
+39,20,0.5229251810768595,1.7999999999999998,1.38591490087527,0.0007004265891832947,0.03672311095788552,0.7819925119701288,2,0.9640098476246651,0.19107080675664465
+39,21,0.4954857844507492,1.7999999999999998,1.3857447866214385,0.0007007099300924969,0.03648174966579337,0.7819636060802558,2,0.9899666441050861,0.23166375602904932
+39,22,0.5388923813111506,1.7499999999999998,1.385777617745025,0.0006999264713720415,0.03676430338221074,0.7689119169172957,2,1.0,0.2963079377038351
+39,23,0.47966321962366265,1.7499999999999998,1.38590354221758,0.0006998996997859597,0.03656980940367352,0.7689342817101658,2,1.0,0.26554406541220876
+39,24,0.5140755280498184,1.6999999999999997,1.3855717070172031,0.0006997335708053585,0.03675730965211878,0.755279506974249,2,1.0,0.280251760166061
+39,25,0.5214874073787514,1.6999999999999997,1.3858384652736744,0.0007001767340496139,0.03670384522716058,0.7553289729777042,2,1.0,0.30495802459583804
+39,26,0.5303603473317958,1.7499999999999998,1.3858675376878733,0.0007006117090417143,0.0367068496531681,0.7689281375831041,2,1.0,0.33453449110598577
+39,27,0.48651532901501665,1.7999999999999998,1.3857099305158285,0.0007009773315770377,0.03668168153095105,0.7819577543607986,2,1.0,0.2883844300500555
+39,28,0.4771875068701605,1.7499999999999998,1.3854430892664134,0.0007012453946696497,0.03667602311673952,0.7688529392088441,2,1.0,0.2572916895672016
+39,29,0.5444431678253191,1.7999999999999998,1.3850074540922437,0.0007015519750312511,0.03677190509852017,0.7818381545615837,2,1.0,0.3148105594177303
+39,30,0.5578350010787118,1.7999999999999998,1.3853594929915403,0.0007008797391308231,0.036770786284208226,0.781897965635013,2,1.0,0.3594500035957055
+39,31,0.542888375507135,1.8499999999999999,1.3853921619512817,0.0007003103616576298,0.03642153517950904,0.7944225716753109,2,1.0,0.3762945850237831
+39,32,0.5519760599388152,1.9,1.3853135972194566,0.0007007716563049705,0.03651571648934854,0.8063889805765811,2,1.0,0.4065868664627171
+39,33,0.5587812155998111,1.95,1.3795498772152803,0.0006978020884610133,0.036405755930560134,0.8169689803143904,2,1.0,0.4292707186660369
+39,34,0.5707887832589333,2.0,1.3782106293698688,0.0006974684055960692,0.036480725270070326,0.8277273713366947,2,1.0,0.46929594419644416
+39,35,0.6054016371385814,2.0,1.3767312192301349,0.0006970172412526026,0.03648183880245182,0.8275161841040388,2,1.0,0.5180054571286046
+39,36,0.6196221293041859,2.0,1.3781386352065312,0.0006963699271656833,0.036298494020424434,0.8277167918137378,2,1.0,0.5654070976806195
+39,37,0.6049431285042403,2.0,1.3788421292620403,0.0006957722964814786,0.03629756519647721,0.827816917770139,1,1.0,0.5831437616808007
+39,38,0.5756977274868246,2.0,1.3807199163251602,0.0006998352690244413,0.03663523624346467,0.8280855622309039,1,1.0,0.5523257582894151
+39,39,0.5897768010597371,1.95,1.3800803158962944,0.0007002394960365798,0.03645617026718765,0.817049012516136,1,1.0,0.5659226701991232
+39,40,0.589218302902591,2.0,1.3793491960209299,0.0006988829249818771,0.03651615096775797,0.8278900675157819,1,1.0,0.5640610096753031
+39,41,0.5687366022414422,2.0,1.3788201405511082,0.0006976405715377612,0.03656342270423084,0.8278143161633291,1,1.0,0.5291220074714738
+39,42,0.5816928139815778,1.95,1.3781190155365595,0.000697990131369271,0.036458634612874415,0.8167549818570745,1,1.0,0.538976046605259
+39,43,0.5622686180100827,2.0,1.3771148138485865,0.0006966188188506873,0.03638772162228303,0.8275708151858585,1,1.0,0.5075620600336086
+39,44,0.6236756495719481,2.0,1.3765390234294905,0.0006969313112544174,0.036438181687249584,0.8274887251321137,1,1.0,0.5789188319064935
+39,45,0.5811014141191366,2.0,1.3794983863465706,0.000697194397029762,0.03639993787347405,0.8279108431787336,1,1.0,0.5703380470637889
+39,46,0.5925405876850707,1.95,1.3786581534791615,0.0006971944108934327,0.036358172345518316,0.8168354207447839,1,1.0,0.575135292283569
+39,47,0.6237976351992421,2.0,1.3776374316158204,0.0006958985909691,0.03644044225178998,0.8276451731165855,1,1.0,0.6126587839974735
+39,48,0.5840197420253641,2.0,1.3799913822995136,0.0006971864047795276,0.03640024670855625,0.8279810688892058,1,1.0,0.5800658067512138
+39,49,0.6478997538384244,1.95,1.3784135479313036,0.0006977070902246654,0.03647110320140338,0.8167989746052221,1,1.0,0.6596658461280809
+40,0,0.10510549923304875,1.95,1.386276297498603,0.0007001698288953797,0.036349284530004064,0.8179733478373417,0,0.09617963790683653,0.2221121469010471
+40,1,0.1882136059572354,1.9,1.386287388622564,0.0007001689377626049,0.03674245719599123,0.8065407810844377,0,0.1955158230586748,0.20002425577921837
+40,2,0.14377164347310328,1.9,1.3862845422871135,0.0007001813307479107,0.03670660909771734,0.8065403408299338,0,0.20947491698822124,0.1999389222593826
+40,3,0.18272552840071957,1.8499999999999999,1.3850457807283043,0.0006993293756570717,0.03640107668703811,0.7943656760501052,0,0.23785892486072785,0.2252731948547614
+40,4,0.2455213271335051,1.8499999999999999,1.385484996477727,0.0006999988850106874,0.03676621800978686,0.7944376308317342,0,0.3319633933235209,0.20911989934698924
+40,5,0.26449680961819283,1.8499999999999999,1.3852508051114634,0.000699954708704042,0.03651360792103436,0.7943993687959765,0,0.41043602778708344,0.20107466167786495
+40,6,0.23054843106426529,1.9,1.3843583849264511,0.0007022434925345504,0.03661450555561268,0.8062402635043074,0,0.41126569939654695,0.22014050435215501
+40,7,0.26792017914415367,1.8499999999999999,1.3848713869176186,0.0007017447911538988,0.036779461862453525,0.7943379767500764,0,0.44055576116184375,0.23899291559805372
+40,8,0.28311788360305745,1.8499999999999999,1.3850442152137385,0.0007013279494114063,0.03643649322662215,0.7943660732542628,0,0.4626159159805764,0.26023839070275623
+40,9,0.33781565546708375,1.9,1.3851377987065865,0.0007008968685567609,0.036732039116961324,0.8063615715179956,0,0.5597624582883234,0.21303557383918129
+40,10,0.31845908879699614,1.9,1.3848702978594056,0.0007010124546062494,0.03675139328360152,0.8063198359222584,0,0.580217460304906,0.22124034891677916
+40,11,0.37915520173946204,1.95,1.3848888783433173,0.0007005505621012192,0.03640208338868502,0.817766793242321,0,0.6761562136440031,0.1956423876062026
+40,12,0.37202640396750175,1.95,1.383178873446119,0.0006985325775031293,0.03646780790606806,0.8175112204227666,0,0.7150237396939527,0.22005636029973538
+40,13,0.39203410806000877,2.0,1.3614207240410474,0.0007179747703309155,0.03648991736486773,0.8253259413671868,0,0.7571949471915655,0.23052043061127497
+40,14,0.44399648624406457,2.0,1.365948897960585,0.0007137029738153156,0.036553506716928696,0.8259765472502013,0,0.8272837620977446,0.2102766046832223
+40,15,0.4040867593653204,2.0,1.3777482278475794,0.0006948416778493054,0.036290537602456825,0.8276606759619224,0,0.8486097122891725,0.21547624816550467
+40,16,0.4215184421076526,1.95,1.377102444809044,0.0006942485668209131,0.03642075041951402,0.8166016658059645,0,0.8815536094702794,0.22965666106513616
+40,17,0.4181849984211489,2.0,1.3761020093788043,0.0006933708874285728,0.036422346116356204,0.8274253151494352,0,0.8757946193650681,0.22622383558373885
+40,18,0.5037785581298496,2.0,1.3755317191584124,0.0006928696458269586,0.036477777146028595,0.8273437234829701,0,0.9759113214731716,0.21138009846860312
+40,19,0.4563257475067763,2.0,1.3747802466087888,0.0006926072657132973,0.03630959858735443,0.8272362771659579,0,0.9792019878091236,0.21548317461042282
+40,20,0.4895659931179949,1.95,1.3738511388660257,0.0006918009633444935,0.03625686624492096,0.8161135032742632,0,1.0,0.23188664372664963
+40,21,0.4765720716600334,1.95,1.3762226769992936,0.0006932514550704003,0.03632142494179428,0.8164695732715548,0,1.0,0.255240238866778
+40,22,0.5174049941510163,2.0,1.3751966531019444,0.0006925336771319976,0.036418583829934806,0.8272957593535022,0,1.0,0.22468331383672058
+40,23,0.4717700541486155,2.0,1.3746998107697967,0.0006922390407139006,0.03643535885876774,0.8272246760049512,0,1.0,0.23923351382871821
+40,24,0.5204765725983919,1.95,1.3736806071696557,0.0006915102831712445,0.03640181270244169,0.8160878225632793,0,1.0,0.23492190866130613
+40,25,0.47229005359923554,1.95,1.372450811978367,0.0006907363275425649,0.03619076318841743,0.8159029402031062,0,1.0,0.240966845330785
+40,26,0.4772155577394183,1.9,1.37137370460181,0.000690018482129272,0.03617288077377778,0.8041999176785556,0,1.0,0.25738519246472763
+40,27,0.481613921994001,1.95,1.3697677063821991,0.0006889108126149508,0.03622129548982655,0.8154990324556224,0,1.0,0.27204640664667
+40,28,0.5274405679560548,2.0,1.3688632454005254,0.0006883977557051591,0.0362481118077622,0.8263877945906933,0,1.0,0.25813522652018234
+40,29,0.4826941652770384,2.0,1.3682985233276537,0.0006879543512470212,0.0362027223990193,0.8263066311333019,0,0.9998347357514066,0.2758675699215859
+40,30,0.5214515123387629,1.95,1.3669900974153224,0.0006871493384901105,0.03630413768568374,0.8150802151260396,0,1.0,0.27150504112920953
+40,31,0.5264466290461465,1.95,1.3690313175308582,0.0006884400069584987,0.036050286505457385,0.8153880676399992,0,1.0,0.2548220968204883
+40,32,0.5187477631893096,2.0,1.3680088072399448,0.0006880217169749047,0.03607339075973907,0.826265065336443,0,1.0,0.22915921063103198
+40,33,0.513091501530488,2.0,1.3673602841474108,0.0006879622726337607,0.036057834808817704,0.8261719323555067,0,1.0,0.21030500510162653
+40,34,0.47003672844338423,2.0,1.3662212797353157,0.0006875277347416874,0.03608525395747152,0.8260081721242684,0,1.0,0.23345576147794733
+40,35,0.4974585088169192,1.95,1.365153869941611,0.0006866319880023233,0.03615958999651143,0.8148031344606006,0,1.0,0.2581950293897306
+40,36,0.5137986989906226,1.95,1.368458582048,0.0006881840396932892,0.03601936251602984,0.8153017608944993,0,1.0,0.21266232996874163
+40,37,0.5060440260461075,2.0,1.3673185209653806,0.000687564654724575,0.03594324095954525,0.8261658203766705,0,1.0,0.2201467534870252
+40,38,0.4925034718086389,2.0,1.370082418126763,0.0006899493185361104,0.036117582088828586,0.8265630857868821,0,1.0,0.24167823936212957
+40,39,0.49210888345408876,2.0,1.3730717322416734,0.000691272370783843,0.03621376532114305,0.8269915838950426,0,1.0,0.2403629448469625
+40,40,0.5149589476726927,2.0,1.3752929864938106,0.0006927011435536225,0.03635923795726913,0.8273095706437157,0,1.0,0.21652982557564202
+40,41,0.49009150314926075,2.0,1.3743974657986922,0.0006920313150866297,0.03640092138271415,0.8271813999838361,0,1.0,0.233638343830869
+40,42,0.5113676176156607,1.95,1.376113702593331,0.0006934049991697061,0.03632022642755672,0.8164532892390006,0,1.0,0.20455872538553568
+40,43,0.4997438000947254,1.95,1.374920268389428,0.000692457721538412,0.036271176036028266,0.8162740927171729,0,1.0,0.1991460003157513
+40,44,0.48389662293971203,2.0,1.3806542225672875,0.0006991619482966645,0.03629098449086646,0.8280760181588646,0,1.0,0.21298874313237326
+40,45,0.5094261236740678,2.0,1.3725558480234294,0.0006913801106612301,0.036311289500616836,0.8269177913734748,0,1.0,0.1980870789135593
+40,46,0.5021761600890985,2.0,1.37190160050483,0.0006969516749418547,0.03611006005153643,0.8268257278610167,0,1.0,0.173920533630328
+40,47,0.4798222437246611,2.0,1.373255737236145,0.0006956081591499981,0.0363742037052282,0.8270191496484377,0,1.0,0.1994074790822034
+40,48,0.4799598480910059,1.95,1.3715034903129455,0.0006950262047973951,0.03646328237832095,0.8157618943453883,0,1.0,0.19986616030335289
+40,49,0.46325346600478745,2.0,1.3691853602453825,0.0006941828946722906,0.03612144159586274,0.826435663517577,0,1.0,0.21084488668262474
+41,0,0.07789363410561137,2.0,1.3862907276686756,0.0007001702066401728,0.036344191795168915,0.8288772683133082,0,0.18152561268018663,0.18427796344512237
+41,1,0.19617964416580816,1.95,1.3862452745912899,0.0007002355558107359,0.03673164718655793,0.8179687482725213,0,0.2536726409608723,0.18236862593819744
+41,2,0.16748660202656554,1.95,1.3847246854277924,0.0006991483263245801,0.03666588794610911,0.8177419052587827,0,0.28172087012566327,0.18266084658766746
+41,3,0.1731367055504332,1.9,1.385028451249974,0.0006995286382178275,0.03635969925370734,0.8063440698441754,0,0.2895872671550126,0.19100599562809384
+41,4,0.2137959684333869,1.95,1.3851985333416006,0.0006998473964017655,0.03673752941109936,0.8178127252739146,0,0.3176336975519807,0.22247496470864875
+41,5,0.2329658068355108,1.95,1.3854660318658911,0.0007006711572327219,0.03667857971274702,0.81785282327817,0,0.35350207464356387,0.23854992326028418
+41,6,0.29650342090504683,2.0,1.3855452710081688,0.0007004257371749325,0.03640117862133935,0.8287715795329854,0,0.44632191664328835,0.2265821808257716
+41,7,0.28529707084667316,2.0,1.3848493452135275,0.0007005566370845386,0.03667487294691525,0.8286728357981311,0,0.4797883101646348,0.24460582260273075
+41,8,0.3374444741738918,2.0,1.3847897421266557,0.0007001797008527181,0.03673810509640112,0.8286642664991138,0,0.5587367200734631,0.24649928714835528
+41,9,0.327999062977386,2.0,1.3847736307962943,0.0007005866121212153,0.0364049034457806,0.8286620945510935,0,0.5747586297965351,0.26031870352923986
+41,10,0.3892413793864064,2.0,1.3846660689216737,0.0007001614291677529,0.03667695608729562,0.8286467014996414,0,0.66598631514613,0.24282284442651467
+41,11,0.3842652244111281,2.0,1.3488512447665495,0.0007124111049718095,0.036138697989725986,0.8235048536513981,0,0.7094682738625382,0.26825971622037587
+41,12,0.4556039153020386,2.0,1.3532668397600836,0.0007080549601467706,0.0356678294477421,0.8241444574129169,0,0.8155255065434218,0.2646457089488994
+41,13,0.4625659432700134,2.0,1.3754665952208653,0.0006945520629818224,0.03629181291453689,0.8273349012584034,0,0.8775843829240487,0.2384406336679796
+41,14,0.4742014455763773,2.0,1.3778498047873171,0.0006950979645644118,0.0364181036815669,0.8276752373679483,0,0.9270383826154778,0.2779536417672871
+41,15,0.4612070548556324,2.0,1.3787978728931023,0.0006965191574557996,0.03642597899565422,0.8278108224651167,0,0.9411584919110857,0.2824788603039937
+41,16,0.5347288254190298,2.0,1.3780618444162345,0.0006964398044594968,0.03645415491230209,0.8277058609708289,0,1.0,0.2824294180634324
+41,17,0.5252659375100974,2.0,1.3773543344670607,0.0006953690310028569,0.036504043398983006,0.8276046348372179,0,1.0,0.2842197917003247
+41,18,0.5280966507189214,2.0,1.379497508032844,0.0006959708184099574,0.0364312373140956,0.8279103693834738,0,1.0,0.26032216906307143
+41,19,0.5066054120531407,2.0,1.3787906452829164,0.0006952364474256097,0.03636408286318111,0.8278094265614707,0,1.0,0.28868470684380215
+41,20,0.4973598624975567,1.95,1.3797019911805073,0.0006963651509243919,0.03651190624663343,0.8169912952287564,0,1.0,0.32453287499185557
+41,21,0.5247115558206543,2.0,1.3788691052394237,0.0006961587339142838,0.03640881785444952,0.8278208729464631,0,1.0,0.3490385194021808
+41,22,0.5353072968479021,2.0,1.3796831858225207,0.0006975216478672525,0.03644701371014799,0.8279372640307702,0,1.0,0.38435765615967377
+41,23,0.5222786167759006,2.0,1.3799789619696403,0.0006987583051317025,0.036635643786567126,0.8279797476438078,0,1.0,0.40759538925300204
+41,24,0.5264149968926533,2.0,1.3700293583700585,0.0007026795379499457,0.03620093565256521,0.8265591292082013,0,1.0,0.42138332297551084
+41,25,0.5516590316895904,2.0,1.373669949611557,0.0007010255712981161,0.03636537273571404,0.8270799478011833,0,1.0,0.43886343896530117
+41,26,0.5784168626774695,2.0,1.3739147245506684,0.0006989654200229134,0.03650487685675175,0.8271143632072011,0,1.0,0.42805620892489804
+41,27,0.5517989281437139,2.0,1.3721040762494217,0.0006987573854947261,0.03650081958750567,0.8268552344527067,0,1.0,0.439329760479046
+41,28,0.5755531939040188,1.95,1.37200482531567,0.0006967896504392653,0.03634777558688707,0.8158377601781474,0,1.0,0.4185106463467294
+41,29,0.5664394000927034,1.95,1.369749443229089,0.0006963189688826427,0.03616686300239829,0.8154985138421827,0,1.0,0.4214646669756781
+41,30,0.5651284218409851,2.0,1.3710149650469845,0.000700507705290727,0.03637252074071485,0.8266997571507239,0,1.0,0.41709473946995035
+41,31,0.552163835261518,2.0,1.371962565989783,0.0007041606753259283,0.0363058535030561,0.826836521375241,0,1.0,0.4405461175383933
+41,32,0.5815281457577144,2.0,1.3718736466675971,0.0007017279158928448,0.03652910108352656,0.8268230930481456,0,1.0,0.4384271525257143
+41,33,0.5332906100762606,2.0,1.3702193109772454,0.0007018654091957323,0.036400488863973984,0.8265861255637655,0,1.0,0.4443020335875351
+41,34,0.5760067372128592,1.95,1.3742114739583131,0.0007005043550550125,0.03641435182821984,0.816170185079612,0,1.0,0.4200224573761971
+41,35,0.5532608610641468,1.95,1.372167443605044,0.0007004618298637736,0.03627622738968124,0.8158632951019529,0,1.0,0.44420287021382276
+41,36,0.5531540585245325,1.9,1.3720251839683688,0.0006982661474750722,0.03637844134946881,0.8043050772121589,0,1.0,0.4438468617484415
+41,37,0.5778406726219807,1.95,1.3711389130034894,0.000696235350096351,0.03627546242439539,0.8157074576389295,0,1.0,0.4261355754066019
+41,38,0.5306670680411495,1.95,1.3698420807920484,0.0006961371110534505,0.03636806525915576,0.8155123970245297,0,1.0,0.4355568934704982
+41,39,0.557272469077538,1.9,1.3735807955923656,0.0006956908188815995,0.0363256943896501,0.8045490021827079,0,1.0,0.4575748969251266
+41,40,0.5622881845266116,1.9,1.3726311800963216,0.0006940451320613036,0.03631315535739582,0.8043991141805383,0,1.0,0.4742939484220385
+41,41,0.5822380661489559,1.95,1.3717501922964344,0.0006925444734093016,0.03633561972895058,0.815798223524371,0,1.0,0.4407935538298527
+41,42,0.58233103319619,2.0,1.370596480982332,0.0006923515518439879,0.03633734794588218,0.8266374562134076,0,1.0,0.44110344398729956
+41,43,0.5351978984495128,2.0,1.369336204607603,0.0006920069299753936,0.036185123875698846,0.8264566753517987,0,1.0,0.450659661498376
+41,44,0.5807726570700199,1.95,1.3726939916279624,0.0006924032764545656,0.03640367819750905,0.815939964968963,0,1.0,0.4359088569000662
+41,45,0.5693962726864624,1.95,1.3706099378848988,0.0006914696659880071,0.03618019355935213,0.8156264908410839,0,1.0,0.39798757562154113
+41,46,0.5594736059541208,2.0,1.3810320514071919,0.0006981239662920052,0.036507936381044534,0.8281295060458795,0,1.0,0.3982453531804023
+41,47,0.5596904289542438,2.0,1.3829667154937653,0.0006985253974486382,0.036687001640750116,0.8284048081191149,0,1.0,0.36563476318081245
+41,48,0.5180982206448562,2.0,1.3823606958069594,0.0006977981816442605,0.03651011881875554,0.8283184382739666,0,0.9980011826089953,0.39632582533752686
+41,49,0.5618050029520039,1.95,1.3820031391053642,0.0006979242591066239,0.0363812789168796,0.8173355694591115,0,1.0,0.3726833431733461
+42,0,0.07271450435558144,1.95,1.3862907473915336,0.0007001699204461998,0.03634542467289701,0.817975499341905,0,0.1870217747102722,0.15968598157157515
+42,1,0.15838741537489734,1.9,1.3861317868278047,0.0007003169918060762,0.0367364673584018,0.8065165471574598,0,0.2168103245557655,0.17221095184197044
+42,2,0.14296223912643452,1.9,1.3847979556412247,0.0006997823981000584,0.03665196799141157,0.8063081539123033,0,0.22679340726378056,0.17414958740307426
+42,3,0.22609388999105506,1.95,1.3849395706804222,0.000700188442312711,0.036394384018483064,0.8177742395830983,0,0.3340346112852772,0.14160015158981382
+42,4,0.2583061005299399,1.95,1.3849634959333086,0.0006998973405959988,0.03670821826239593,0.8177777181276151,0,0.42770750816952907,0.12407699087376091
+42,5,0.24213587892317787,1.95,1.3858668808264663,0.0007005682955319632,0.03669257493033731,0.8179124993337565,0,0.4475215635802649,0.14375751163690642
+42,6,0.2614025815775726,2.0,1.3858707959459875,0.000700381505971387,0.03640873566061325,0.8288177570375072,0,0.48678027791350803,0.15563490137389793
+42,7,0.27234850031237995,2.0,1.3858440005930857,0.0007001992401551242,0.03669782858422983,0.8288139035890228,0,0.49738831134893685,0.17797725257601718
+42,8,0.3380603060816255,2.0,1.3857721826057787,0.0007000394323680934,0.03674740163783195,0.8288036683609474,0,0.595737786389156,0.16588397175321035
+42,9,0.36072103604574557,2.0,1.3856837504299686,0.0007001293869965709,0.03640283546450325,0.828791146046958,0,0.6759147839545055,0.16785040821314448
+42,10,0.323435925492951,2.0,1.3797859779727526,0.000697616356283353,0.036469589918595974,0.8279519339959656,0,0.6911185190006599,0.15662839297562353
+42,11,0.35599557577744145,1.95,1.3805371214250406,0.0006992741308041309,0.03659839828302348,0.8171169973604755,0,0.7058618241354175,0.17883615374424805
+42,12,0.33560200954390307,1.95,1.379556368370576,0.0006991280321517541,0.036526417226351485,0.8169703474756846,0,0.699253058005534,0.18633595447229837
+42,13,0.40103224198822124,1.9,1.3800638835669374,0.0007009657864405843,0.036683001024536886,0.8055681071342959,0,0.7605287167471944,0.18940251763114505
+42,14,0.44598822948319045,1.9,1.381385833825779,0.0007002280437788733,0.036278603234608894,0.805774847182685,0,0.861347197348042,0.17149783514657874
+42,15,0.40109036554463934,1.9,1.3639787921596778,0.0006863151634775902,0.03597077364116836,0.8030317054477648,0,0.8754913629044465,0.16964606794286913
+42,16,0.4327091067168881,1.8499999999999999,1.3672905267310476,0.0006912166199073506,0.036309678428960046,0.7914475364296001,0,0.8999636880991245,0.17574543825746075
+42,17,0.4860678022435506,1.8499999999999999,1.3647809572549017,0.0006900379541690263,0.03627870376648884,0.7910326184356681,0,0.9857843644618733,0.17251352152933752
+42,18,0.49741439914745555,1.8499999999999999,1.3667220917377891,0.0006893057023626291,0.03608757301366179,0.7913530649175246,0,1.0,0.15804799715818513
+42,19,0.4702260070427964,1.9,1.3680012134983357,0.0006886967243225113,0.03571713004634529,0.803667915136754,0,1.0,0.16742002347598772
+42,20,0.4934047113135159,1.8499999999999999,1.3665054909198546,0.0006880150010210763,0.035840343949037345,0.7913168726866383,0,1.0,0.14468237104505294
+42,21,0.4817342670424694,1.8499999999999999,1.36667267035779,0.0006871444869084951,0.03632077757439846,0.79134419095568,0,1.0,0.13911422347489794
+42,22,0.4651707291278655,1.9,1.3682685273449748,0.0006874627030092346,0.03640015963555889,0.803709700682252,0,1.0,0.1505690970928848
+42,23,0.43994510429359385,1.95,1.3669046809882628,0.0006866355670828337,0.03636534621872829,0.8150671855506543,0,0.9893029952508227,0.14741302064421594
+42,24,0.4895884838232909,1.9,1.370872576716371,0.0006908261802124425,0.03640615500743638,0.8041212512862744,0,1.0,0.1319616127443029
+42,25,0.48117117250442926,1.9,1.3709676496537524,0.0006901168791133665,0.03595879986766803,0.8041360023852266,0,1.0,0.1372372416814308
+42,26,0.491834866487217,1.95,1.3722339323507569,0.0006902895830931488,0.036152742108016896,0.815870227269397,0,1.0,0.13944955495739
+42,27,0.4720992611460407,2.0,1.3727234291112023,0.0006905610433692993,0.03616195143278439,0.8269415406299945,0,1.0,0.17366420382013573
+42,28,0.45653579167901914,2.0,1.3715987388622108,0.0006897336481051129,0.03604950999742118,0.8267802908967864,0,1.0,0.18845263893006384
+42,29,0.4799799382690654,2.0,1.3746249015022807,0.0006926001616537095,0.03636148791690289,0.8272140726402518,0,1.0,0.19993312756355108
+42,30,0.5072620686208986,2.0,1.3731154989403644,0.0006917593811157782,0.03647667897054675,0.8269979851471068,0,1.0,0.19087356206966188
+42,31,0.49539028025764464,2.0,1.3731438852722486,0.0006912675491711531,0.03642705235670984,0.8270019056751976,0,1.0,0.18463426752548207
+42,32,0.4832990523740326,2.0,1.3744034591732581,0.0006917804966160013,0.03639081707983544,0.8271821850391229,0,1.0,0.21099684124677523
+42,33,0.5086707087823477,2.0,1.382121033632132,0.0007048438399776584,0.03649110073800969,0.8282863581425545,0,1.0,0.19556902927449216
+42,34,0.48359163699915036,2.0,1.3665191936834034,0.0006867267606208031,0.03587038025955984,0.8260507535776118,0,1.0,0.21197212333050106
+42,35,0.48638797190136207,1.95,1.3814266822901708,0.0007057002618796371,0.03676911693229671,0.8172518125102317,0,1.0,0.2212932396712067
+42,36,0.5128637294085308,2.0,1.3808667259991672,0.0007071017691542013,0.03676464434732963,0.8281085297362302,0,1.0,0.24287909802843557
+42,37,0.5007119433577266,2.0,1.3818247970558981,0.0007053593009513467,0.03662349689517614,0.8282443675438733,0,1.0,0.2690398111924219
+42,38,0.5209052608088252,2.0,1.381346529377792,0.0007063747508406121,0.03678026613267858,0.828176609587697,0,1.0,0.2696842026960836
+42,39,0.5173691907347167,2.0,1.381874918056303,0.0007048774566099116,0.03651579240889489,0.8282513603356416,0,1.0,0.25789730244905557
+42,40,0.4806757578359259,2.0,1.382104520280026,0.0007035569479632139,0.03647307555621345,0.8282836433990658,0,1.0,0.2689191927864197
+42,41,0.5207442406111762,1.95,1.3815852730309057,0.0007040661475325317,0.036734299946803585,0.8172750089842922,0,1.0,0.26914746870392037
+42,42,0.5091339549702102,1.95,1.3815203426140403,0.0007028010444247114,0.036708944252958134,0.8172649344306931,0,1.0,0.29711318323403385
+42,43,0.5190192012124563,2.0,1.38113683735334,0.0007036889425748456,0.03658801703654181,0.8281460038473,0,1.0,0.2633973373748542
+42,44,0.48317090051831585,2.0,1.381172235131426,0.0007023289869927511,0.036695037732254396,0.828150654517991,0,1.0,0.27723633506105283
+42,45,0.5294034072505092,1.95,1.380708165862663,0.0007028557140002927,0.03650274572055963,0.817143626631373,0,1.0,0.26467802416836383
+42,46,0.5256943067497212,1.95,1.382536220301041,0.0007022090073841697,0.036629926851673336,0.8174164229985277,0,1.0,0.2523143558324039
+42,47,0.4786207624309792,2.0,1.3839455060103627,0.0007016428399418053,0.03651934821486792,0.828544784465874,0,1.0,0.26206920810326395
+42,48,0.5231487885433904,1.95,1.3835641149450284,0.0007019158599458038,0.03663020351701941,0.8175696955037757,0,1.0,0.27716262847796796
+42,49,0.5266289494189869,1.95,1.3834563360091152,0.000701003608907166,0.036544735667055794,0.8175533476380624,0,1.0,0.2554298313966227
+43,0,0.15285286692353697,2.0,1.3846696965389587,0.0006990478136966905,0.03651063054280618,0.8286469003422909,1,0.11446288795051987,0.22355903914443004
+43,1,0.028559233357997982,1.95,1.3847325842671967,0.0006990789182510568,0.03668082216195071,0.8177430618104308,1,0.16256289318580497,0.17844692027891992
+43,2,0.13830838957551936,1.9,1.3858269200414377,0.0007005582424219421,0.03673223191505702,0.8064690442867684,1,0.2112129907968429,0.14607731085594067
+43,3,0.21279874381892194,1.9,1.3861058574880691,0.0007002350022908947,0.03646225897235149,0.806512475324959,1,0.2540820668378919,0.20388639027921718
+43,4,0.2142416311712242,1.9,1.3860572790370245,0.000700067573716389,0.03676846506179214,0.806504842283766,1,0.2797368076238788,0.20782302707224215
+43,5,0.1987352434793165,1.95,1.386003875434681,0.0006999981278638804,0.036638665261867945,0.8179327314599413,1,0.28544187564917883,0.21519497739881663
+43,6,0.2084009563317308,2.0,1.386042290981261,0.0007000642327907695,0.036428428082466754,0.8288419971708471,1,0.3044136178072956,0.22211836402937524
+43,7,0.270717777769641,2.0,1.3860470355162808,0.0007001350985507901,0.036715125723610485,0.8288426903498746,1,0.33469117415782434,0.28947102702170424
+43,8,0.25483872704201205,2.0,1.3859753208726522,0.0007001707254299823,0.036743818801589105,0.828832526601106,1,0.36103792533169204,0.3014118563644507
+43,9,0.2494094564035675,2.0,1.3859480992853943,0.0007002798163014248,0.03638710150040249,0.8288286956163758,1,0.3972558265235815,0.2683570859804496
+43,10,0.3074985082134494,2.0,1.3861233932824157,0.0007002449498963172,0.036700430540985644,0.8288535535463358,1,0.4421286241509133,0.30215686184361346
+43,11,0.28912832882997025,2.0,1.38585714360711,0.000700542724680263,0.036764124755306285,0.8288158657976927,1,0.4917975457465823,0.27469770177112446
+43,12,0.3390769589888998,2.0,1.3860117225553585,0.0007003881905957097,0.03643882573437443,0.8288377525175006,1,0.5228922947346856,0.2997334703167518
+43,13,0.38408395654777155,2.0,1.3860800041097328,0.000700234564416351,0.03669711459287052,0.8288473955260992,1,0.5631137826590682,0.3627948116138143
+43,14,0.34609214529856547,2.0,1.3860536355061326,0.0007004222692960688,0.03676429528616086,0.828843708115946,1,0.6013261031447649,0.31853901346886504
+43,15,0.35192915459596563,1.95,1.3843924487795023,0.0006990563872967164,0.0364821095057424,0.8176923560432698,1,0.6400737497796318,0.28633218228037616
+43,16,0.4242150820340063,2.0,1.3840227820023396,0.0006986946887016631,0.036699392731345384,0.8285549243071763,1,0.6859747693023266,0.33275058104358557
+43,17,0.39798344079709574,2.0,1.383770994398256,0.0006986717931257429,0.03667244079963759,0.8285191479949257,1,0.740650695769643,0.3057438749641284
+43,18,0.459786812118434,1.95,1.3833797309628346,0.0006982807246071161,0.036362389745968796,0.8175411086301795,1,0.7957250280467582,0.3383226696657691
+43,19,0.5131448511769438,1.95,1.384253004393806,0.0006987349383950908,0.036715596581094925,0.8176714720830147,1,0.8585597258604938,0.39906986944248757
+43,20,0.5167399542868704,1.95,1.3822186148579545,0.0007019627800543484,0.036436034095804135,0.8173689431069979,1,0.8752923093158951,0.42207676853504106
+43,21,0.5352248609934876,2.0,1.3763706118784862,0.0006976340594836298,0.036405747382683665,0.8274648835243861,1,0.9018824350679787,0.4482396232209871
+43,22,0.5105074092986899,2.0,1.3766415535287972,0.000699027565294082,0.03643665954591063,0.8275039593729807,1,0.9370427587618336,0.41896768597985473
+43,23,0.591634993459512,1.95,1.375960912122637,0.0006995112647241482,0.03653666074410073,0.8164322216691388,1,0.9786644446261382,0.5005640520301885
+43,24,0.5930055777371988,1.95,1.379024378884081,0.0006991558304501042,0.036404299004792535,0.8168907940967397,1,1.0,0.5100185924573292
+43,25,0.5758437207558498,2.0,1.3789510784897199,0.0007005084395378665,0.036586712864627065,0.8278337964518717,1,1.0,0.5194790691861657
+43,26,0.5805763691020648,2.0,1.3785487224179795,0.0006991082188963487,0.03656478438927552,0.8277760438489402,1,1.0,0.5352545636735493
+43,27,0.6296107515022671,2.0,1.3778522142733851,0.0006977834194896709,0.036284150069733595,0.8276763470747326,1,1.0,0.598702505007557
+43,28,0.6325504488462179,2.0,1.3807103140540726,0.0006980306369837588,0.03650000087941798,0.8280836814304037,1,1.0,0.6418348294873928
+43,29,0.6114385362060628,2.0,1.3809549934613903,0.0006990500699117476,0.03662005871890976,0.8281188016717047,1,1.0,0.6381284540202091
+43,30,0.5972526151275134,1.95,1.3808290891901984,0.0006979635515260685,0.036319893260401845,0.8171602324269363,1,1.0,0.6241753837583779
+43,31,0.6102189714223252,2.0,1.381409904665266,0.0006997527999559642,0.03667415923416245,0.8281837431721808,1,1.0,0.6340632380744173
+43,32,0.6573291204044633,2.0,1.3812050268292784,0.0006985673965520792,0.03664864484739362,0.8281542506314402,1,1.0,0.6910970680148778
+43,33,0.6298847943207616,2.0,1.382877277539011,0.0006986161723289533,0.03649592321696372,0.8283921199240635,1,1.0,0.6996159810692052
+43,34,0.6150555439898926,1.95,1.382401880801869,0.000697842502323912,0.03645678747383048,0.8173950689125574,1,1.0,0.6835184799663087
+43,35,0.631559020580094,2.0,1.3829117243192741,0.000698851097857777,0.03645622848714792,0.828397083567117,1,1.0,0.70519673526698
+43,36,0.6304352383702154,2.0,1.3824238096993544,0.0006980488529990902,0.03643005378538272,0.828327484616956,1,1.0,0.7014507945673846
+43,37,0.6586084250044488,2.0,1.3817093945656709,0.0006972432266029288,0.03645464227010204,0.828225640965585,1,1.0,0.7286947500148291
+43,38,0.6227018260880393,2.0,1.3809674409020378,0.0006971171043186513,0.036640913788016274,0.8281200231436052,1,1.0,0.7090060869601307
+43,39,0.6845392549191105,1.95,1.3814813030955653,0.0006981793474170191,0.036470164699773606,0.8172577236071003,1,1.0,0.7817975163970349
+43,40,0.684140720776218,1.95,1.3831841845884338,0.00069848134884767,0.03657854338647569,0.8175119974876175,1,1.0,0.813802402587393
+43,41,0.7112666037306292,2.0,1.3825734435001942,0.0006976272545695524,0.03628600004189995,0.8283486417653746,1,1.0,0.8708886791020971
+43,42,0.6811937129748653,2.0,1.382673581617436,0.0006980865825506942,0.036499880167841156,0.8283630102651247,1,1.0,0.8706457099162176
+43,43,0.7124775714318463,1.95,1.3824406207564488,0.0006984637362931809,0.03643606437858947,0.8174010366280127,1,1.0,0.9082585714394873
+43,44,0.6704424211866808,1.95,1.3840935407644577,0.0006988858139656778,0.03649363007097537,0.8176477422607747,1,1.0,0.8681414039556026
+43,45,0.6830876151105896,1.9,1.3833378922660342,0.0006981716574027354,0.03668131451172542,0.8060795225036365,1,1.0,0.8769587170352984
+43,46,0.7320227277285019,1.95,1.3829145411918284,0.0006981561321536231,0.036640450760071594,0.8174716699360387,1,1.0,0.9400757590950062
+43,47,0.6861952884888828,1.95,1.383095620480486,0.0006988905273638104,0.03643410848062925,0.8174989066737811,1,1.0,0.9206509616296091
+43,48,0.7232640272667946,1.9,1.3823154126928294,0.000697887960059605,0.036635235309006156,0.8059195545060124,1,1.0,0.9442134242226486
+43,49,0.7091033023654514,1.9,1.3839700543602849,0.0006985727582108463,0.036698984323206715,0.8061784453554707,0,1.0,0.9636776745515048
+44,0,0.13515884517051582,1.95,1.386289615900414,0.0007001697526621844,0.036346012458575654,0.8179753308223786,0,0.1329098131161603,0.2066497330801724
+44,1,0.1456181098225486,1.9,1.3862898104485646,0.0007001759016541212,0.036743784667663336,0.8065411611415141,0,0.148615751258872,0.22057269772999943
+44,2,0.12335910832329383,1.95,1.386279544427444,0.0007001823839066865,0.03670329707966332,0.8179738350203538,0,0.14908335015315158,0.21241922754011067
+44,3,0.16963120377022883,1.9,1.3862743353107816,0.0007001974832811322,0.03637964544984005,0.8065387532403027,0,0.18952912807345584,0.246065175136155
+44,4,0.18614236271865867,1.9,1.3862528727612276,0.0007002152370536449,0.036776635859694574,0.806535409871425,0,0.2118844788214573,0.27129523730025257
+44,5,0.24028655046282574,1.95,1.3848721259144385,0.0007005113671301282,0.036590019888568484,0.8177642850285005,0,0.29070096977595283,0.28002054184148195
+44,6,0.27037449778478995,1.95,1.3849483495775432,0.000700989132006479,0.03638631587961128,0.8177757864419499,0,0.36359047800221267,0.28312768861301635
+44,7,0.30600996040202066,1.95,1.3849031085296337,0.0007014384413874069,0.03674838400831977,0.8177691785043638,0,0.4516106043013464,0.28455239560494033
+44,8,0.3486245844550057,1.95,1.3822932984081084,0.0007007170062025947,0.03664026569942451,0.8173797194623161,0,0.5397274068537917,0.27577873904496336
+44,9,0.3017259005030366,1.95,1.381676854349998,0.0007007557174214685,0.03650170485383649,0.8172876963456869,0,0.5516806505909186,0.27017880088889706
+44,10,0.3422261457185521,1.9,1.3827761206457625,0.0007002998072263952,0.03669045217023718,0.8059923594429991,0,0.5803944711179444,0.30022785757124765
+44,11,0.3833494715765806,1.9,1.3827044461153948,0.0006996081579605408,0.03635947135572285,0.8059809352316405,0,0.6354322818937439,0.2972551960636101
+44,12,0.4158179023310078,1.9,1.3263459433024318,0.0006997476347705144,0.03535118240619063,0.7970156510213117,0,0.7174687710352957,0.29610131305629844
+44,13,0.46259812244033355,1.9,1.329049893253106,0.0007133913660475202,0.036055783838635315,0.7974571568285413,0,0.8143907506152545,0.2894727406474391
+44,14,0.41468995724276314,1.9,1.372693798685996,0.0007041104789049818,0.03650408633803949,0.8044121337224133,0,0.8224620825428267,0.2856837474187748
+44,15,0.4330616501284721,1.8499999999999999,1.3720608105229766,0.0007047117599826941,0.03641723262277671,0.7922382594245714,0,0.851297955377847,0.30847489325777755
+44,16,0.4992076449026581,1.9,1.3709534008254722,0.0007054653783045114,0.036262535909660734,0.8041385929803101,0,0.912919313043703,0.31346639895058986
+44,17,0.49935141015828344,1.9,1.3708650624516827,0.0007032144913429546,0.036255925292888416,0.8041239702705076,0,0.943259085491751,0.34015925320527673
+44,18,0.5499166372047039,1.95,1.3704961843752406,0.000704953378595857,0.03647696468261906,0.8156134395993063,0,1.0,0.3330554573490126
+44,19,0.5457186895003238,1.95,1.3751793459164978,0.0007034456904278572,0.03658598599206353,0.8163162387549133,0,1.0,0.31906229833441224
+44,20,0.5389598504836127,2.0,1.3785223903348947,0.0007024264593742624,0.03645407336882811,0.8277732359693443,0,1.0,0.32986616827870907
+44,21,0.5228632434758069,2.0,1.3783275428705986,0.0007009201827140406,0.0365009815897763,0.8277450262847499,0,1.0,0.34287747825268944
+44,22,0.5326211044720371,2.0,1.3780326697068956,0.000701979198125926,0.0364414980185949,0.8277032803165603,0,1.0,0.37540368157345705
+44,23,0.5149321377354481,2.0,1.3776057940568496,0.0007029256643632166,0.03660712869934054,0.8276426648522912,0,1.0,0.38310712578482675
+44,24,0.5577020340673967,2.0,1.3770728895217845,0.0007036734083369012,0.03640353001786156,0.8275668460015018,0,1.0,0.39234011355798876
+44,25,0.5472370970648182,2.0,1.3766978022457683,0.000702008502655724,0.03647576832649126,0.8275128392038692,0,1.0,0.42412365688272713
+44,26,0.5711719018259038,2.0,1.3645000512907155,0.0006889294701550741,0.036144130171993825,0.8257610639953559,0,1.0,0.4039063394196793
+44,27,0.5647502526286474,2.0,1.3621259351509865,0.0006879417005459324,0.03632567795713718,0.8254189279026514,0,1.0,0.38250084209549107
+44,28,0.5565856847017278,2.0,1.3770620545655068,0.000700744146001115,0.03642265044335024,0.8275644638293885,0,1.0,0.3552856156724256
+44,29,0.5411751020833997,2.0,1.3799335504991428,0.0007002942458502594,0.036623442777518486,0.8279737171626633,0,1.0,0.33725034027799866
+44,30,0.5297570002150966,2.0,1.3794497242587067,0.000699127782606023,0.03637075751446646,0.8279044608955793,1,1.0,0.36585666738365547
+44,31,0.5798550908337248,2.0,1.384335228201997,0.0007008209813652603,0.03660687276949202,0.8285999072148659,1,1.0,0.4328503027790822
+44,32,0.5965678994078845,2.0,1.3806131504802588,0.0006989219178622162,0.03661034459902037,0.8280701024598851,1,1.0,0.488559664692948
+44,33,0.6169561905438817,2.0,1.3827292128038549,0.000699056204396658,0.036477279198170044,0.8283711953436608,1,1.0,0.5565206351462723
+44,34,0.6333514533112392,2.0,1.3842464337367413,0.0006992591179975934,0.036547109244953205,0.828586852405819,1,1.0,0.6111715110374639
+44,35,0.6486721330947125,2.0,1.383228364855822,0.0006985219535555706,0.03666945708674518,0.8284419974749223,1,1.0,0.6622404436490417
+44,36,0.6218998740296873,2.0,1.3843569202462276,0.0006988996919264521,0.0364931490262494,0.8286024422185679,1,1.0,0.6729995800989574
+44,37,0.650372051319375,1.95,1.3838221508222879,0.0006984392709844251,0.03650265061308385,0.8176071413739621,1,1.0,0.7012401710645831
+44,38,0.6164616316361061,1.95,1.3831688054205946,0.0006980981443024302,0.036444805885215745,0.8175095887791073,1,1.0,0.6882054387870205
+44,39,0.6714617717996902,1.9,1.38373345222324,0.0006988420067670721,0.03666066588489715,0.8061415566221052,1,1.0,0.7382059059989674
+44,40,0.6240678758383547,1.9,1.3847178490061098,0.0006991297251592515,0.03663332980578968,0.8062954390534733,1,1.0,0.7135595861278489
+44,41,0.6637445138295153,1.8499999999999999,1.3850305369781444,0.0006996576058724711,0.03673401060929292,0.7943632932228897,1,1.0,0.7458150460983839
+44,42,0.6433688703007838,1.8499999999999999,1.3844693094577396,0.0006996529544117551,0.03671354644462978,0.794271599900571,1,0.9995600061160914,0.745149559514491
+44,43,0.6458902969244338,1.7999999999999998,1.3840674545781133,0.000698958134494903,0.03645694782022652,0.7816768936303193,1,1.0,0.7529676564147791
+44,44,0.6184997885755087,1.8499999999999999,1.383402000433387,0.0006982814059043361,0.036391459828661106,0.7940966938036595,1,1.0,0.6949992952516955
+44,45,0.6625022234182162,1.7999999999999998,1.3837701249517487,0.0006988756939808263,0.03665097396809449,0.7816261195203575,1,1.0,0.7416740780607205
+44,46,0.6687275639883614,1.7999999999999998,1.3831679593228556,0.0006989626243748476,0.03660279017698058,0.7815233500946167,1,1.0,0.7624252132945377
+44,47,0.6970842915945747,1.8499999999999999,1.3824249921924654,0.000699041263770815,0.036461035177227555,0.7939371487110664,1,1.0,0.8236143053152488
+44,48,0.7108769023309149,1.8499999999999999,1.383869029865542,0.0006985018257085531,0.03654529422850336,0.7941731180200453,1,1.0,0.869589674436383
+44,49,0.7087721478069113,1.9,1.383687727728183,0.0006983748518457711,0.0364898560663421,0.8061342648036902,2,1.0,0.8959071593563709
+45,0,0.18775130510086413,1.95,1.3861064293714238,0.0007002663703757734,0.03639563150632932,0.8179480830564272,0,0.20208864798447806,0.1897194863569096
+45,1,0.2167365792111547,1.9,1.384912172583195,0.0006997079882928724,0.03671964811931073,0.8063259679147856,0,0.29407384758166527,0.16369013392829532
+45,2,0.22981636026448818,1.9,1.384770931685323,0.0006994445116123467,0.03664992649556185,0.80630382786172,0,0.3420957744947881,0.17659350155524303
+45,3,0.27566128109392296,1.95,1.385158226033861,0.000699524154349669,0.036400033598951234,0.8178066232813438,0,0.4422914408000043,0.1624823492464041
+45,4,0.26375155810963824,1.95,1.3853560015262265,0.0007005025699008246,0.03674615166921126,0.8178363812988348,0,0.4639395422682781,0.1939191373410899
+45,5,0.2519073973164283,2.0,1.3852919034035085,0.0007002251877175972,0.03667645647427349,0.8287355644023517,0,0.4689604784635604,0.21441068643668035
+45,6,0.3376803721059414,2.0,1.382834629318199,0.0007031889370102649,0.036404610555025384,0.8283873571754297,0,0.5637942285822588,0.20720893557679282
+45,7,0.2955821787280105,2.0,1.3824217606680664,0.0007035026160502691,0.0366525123322166,0.8283287443006702,0,0.5736730265574645,0.22037656035008232
+45,8,0.3420557403728126,1.95,1.3834955239023956,0.0007028196537166226,0.03675810943165939,0.8175597345743569,0,0.6175376485508974,0.2501356031748453
+45,9,0.4053811905250242,1.95,1.3018159693891602,0.0007012005208696099,0.0357416825692123,0.8050589611500633,0,0.7288298585539164,0.21283082367819217
+45,10,0.3691011105642294,1.95,1.2979336992933024,0.0006991442138128137,0.0353245882174828,0.8044483128151575,0,0.7495166185126528,0.23098154386389416
+45,11,0.4429445663039438,1.9,1.3066644009176773,0.00069384072280695,0.03487075489478737,0.7938109850416776,0,0.835237776966645,0.22949818505761915
+45,12,0.4366117892715291,1.9,1.3765009713016563,0.0006936513600221446,0.03642093471510864,0.805007150922963,0,0.8505093357039205,0.2546935166332028
+45,13,0.43229341246391684,1.95,1.3776736583575917,0.0006948531356170375,0.03647181595213556,0.8166873782292103,0,0.8837108111746792,0.2626969599801505
+45,14,0.4822179997966017,2.0,1.3772601163002745,0.0006948406528817092,0.036389467680913015,0.8275910410439257,0,0.9368762889995714,0.2915582806559103
+45,15,0.5254562218694189,2.0,1.3783263092948308,0.0006963086181255172,0.03645234152516601,0.8277435353292114,0,1.0,0.28485407289806264
+45,16,0.514389937470049,2.0,1.3776068147405642,0.0006953914386384812,0.036326466094206644,0.8276406609250085,0,1.0,0.31463312490016343
+45,17,0.5395996102572853,2.0,1.378182877942448,0.0006966565910011119,0.03648759871879031,0.8277231825669265,0,1.0,0.2986653675242844
+45,18,0.49189867265034765,2.0,1.380474542725294,0.0006970567819677846,0.036335007200056724,0.8280498368475896,0,1.0,0.3063289088344921
+45,19,0.533476666430807,1.95,1.3798952837997804,0.0006970511747514643,0.03651814670782451,0.8170203990160793,0,1.0,0.31158888810269003
+45,20,0.5163088090048098,1.95,1.3790583847097526,0.0006960780966401739,0.0364466843711593,0.816894959922787,0,1.0,0.3210293633493658
+45,21,0.5281890163719183,2.0,1.379556461738738,0.0006971891164654552,0.0364189147509783,0.8279191157777664,0,1.0,0.2939633879063943
+45,22,0.5271512956338636,2.0,1.3790487310977726,0.0006963687494926736,0.036403024224860324,0.8278465339981442,0,1.0,0.25717098544621214
+45,23,0.47954702605562266,2.0,1.38113501684257,0.000696985392151909,0.03657171967590349,0.8281438366397378,0,1.0,0.2651567535187421
+45,24,0.5072711603795461,1.95,1.3806281536070584,0.00069693694292778,0.03634064648586923,0.8171299020421515,0,1.0,0.2909038679318205
+45,25,0.513244076384633,1.95,1.3809025856241823,0.0006977476413630021,0.03660710514024623,0.8171711487131017,0,1.0,0.3108135879487765
+45,26,0.49449397021978564,2.0,1.381051518745386,0.0006986125734156684,0.03651061272094575,0.8281324159205095,0,1.0,0.3149799007326188
+45,27,0.5365399118222061,2.0,1.3807066119555094,0.0006988424846258988,0.03647421151007914,0.828083385546429,0,1.0,0.2884663727406868
+45,28,0.5256268664797775,2.0,1.382535440200252,0.0006989220295220806,0.03648271554077438,0.8283436063259453,0,1.0,0.28542288826592505
+45,29,0.53231152423644,2.0,1.3820700017081657,0.0006981987833208341,0.036635079896087885,0.828277209550344,0,1.0,0.27437174745480003
+45,30,0.5211308036406167,2.0,1.3834615215059074,0.000698528176562286,0.03644173767747327,0.8284751342940491,0,1.0,0.27043601213538887
+45,31,0.48418766393510837,2.0,1.3829715930690207,0.000698032899165953,0.036529719711554755,0.828405361449566,0,1.0,0.28062554645036125
+45,32,0.5238188663219762,1.95,1.3825689067179565,0.0006979246211053712,0.03666302237141232,0.817420022452564,0,1.0,0.2793962210732536
+45,33,0.4855915897359773,1.95,1.3819047476998838,0.0006973008349212578,0.03653757703908551,0.8173206931831445,0,1.0,0.2853052991199243
+45,34,0.5261892694377485,1.9,1.3814170185269994,0.0006971775679215882,0.036553984379175,0.8057787728030897,0,1.0,0.2872975647924948
+45,35,0.5140768380668425,1.9,1.3806376816631611,0.0006964306753811291,0.03659835840326894,0.8056565441429597,0,1.0,0.31358946022280804
+45,36,0.5155155455657958,1.95,1.3811923772314498,0.0006972606811809028,0.03648641431091574,0.8172142948340321,0,1.0,0.31838515188598604
+45,37,0.5357591665687592,2.0,1.3815516828706134,0.0006980349833047951,0.03656353200415527,0.8282034277943082,0,1.0,0.3191972218958641
+45,38,0.5372427958555379,2.0,1.3810418768461323,0.0006973181601271777,0.036630435304826424,0.8281306751251079,0,1.0,0.3241426528517931
+45,39,0.5273418115621924,2.0,1.3802956179095587,0.0006964817152123194,0.03648295806010449,0.8280241956666039,0,1.0,0.357806038540641
+45,40,0.5171553034699392,2.0,1.3804091453069818,0.0006971061277297008,0.03649409566237026,0.8280405391999232,0,1.0,0.39051767823313044
+45,41,0.5544534494657692,2.0,1.3800600437516812,0.0006974385405467491,0.03657484800536613,0.8279909198303707,0,1.0,0.3815114982192306
+45,42,0.5524920903565131,2.0,1.3792959089954382,0.0006964457130023837,0.03636519557186567,0.8278817800431012,0,1.0,0.3749736345217104
+45,43,0.5350849343528823,2.0,1.3784048005852494,0.0006954863829561306,0.03632016967807463,0.8277544921936921,0,1.0,0.3836164478429409
+45,44,0.5173615138222818,2.0,1.3784722371917693,0.0006961815804970553,0.036515668227503684,0.8277643051192398,0,1.0,0.39120504607427253
+45,45,0.5493632765777052,2.0,1.378123028814051,0.0006966680673718634,0.036475601730724456,0.8277146513356451,0,1.0,0.43121092192568405
+45,46,0.5582356938504629,2.0,1.35322674700959,0.0006838572638603821,0.03614818129476772,0.8241316324256873,0,1.0,0.46078564616820944
+45,47,0.567059261386493,2.0,1.35332471140445,0.0006823339340986,0.03570638290298454,0.8241453892541662,0,1.0,0.4901975379549765
+45,48,0.5715399107893507,2.0,1.3527890043334865,0.000680833071910182,0.035542289793493304,0.8240673006802425,0,1.0,0.5051330359645024
+45,49,0.5761132449534413,2.0,1.3517671978283683,0.0006795110729050841,0.035738167445774675,0.823918726139862,0,1.0,0.5203774831781375
+46,0,0.061167942984974466,2.0,1.3861604501981737,0.0007001808320132379,0.0363893189540358,0.8288587920131865,0,0.16111955724030344,0.18906706696284364
+46,1,0.13350038843074044,1.95,1.3861939756060482,0.0007001882139028695,0.03672940332421575,0.8179610958421402,0,0.17508378115667111,0.21155625322690666
+46,2,0.22870743857045295,1.95,1.3861451252277113,0.0007001856745782215,0.03671737294836887,0.8179538211153619,0,0.2935134174068491,0.20434023869237775
+46,3,0.261556105091724,1.95,1.384505669789704,0.000702436200199154,0.03643121475631376,0.8177102410629349,0,0.3834781913174788,0.19388276188244158
+46,4,0.25294528244759684,1.95,1.385053460555031,0.0006993615680232538,0.03670408968786707,0.8177909643616272,0,0.41725689158709567,0.2201417527091952
+46,5,0.23594698295723365,2.0,1.382950629367498,0.0006992618110030646,0.03658628960714027,0.8284027308245494,0,0.4241633079132269,0.22093886597314294
+46,6,0.30843091798209715,2.0,1.3839412622910885,0.0006993621015114663,0.03648480925558441,0.8285435336108447,0,0.5003600241484369,0.22762302774240792
+46,7,0.33635333445595067,2.0,1.3839344836865435,0.0006996879394121446,0.03663645684769489,0.8285426632228245,0,0.5772565589351483,0.21816903627297124
+46,8,0.34650809467779553,2.0,1.383849079343819,0.000700024931495249,0.036709637818818884,0.8285306261168679,0,0.6225431820598862,0.2583027395128034
+46,9,0.38874486571388406,2.0,1.3155123616491788,0.0007360858226172686,0.03632612372191352,0.8186138848062384,0,0.6737646266443744,0.26413005018711433
+46,10,0.43992122648545584,2.0,1.3160259324847574,0.0007489610235242899,0.03630938855455408,0.8186939522635918,0,0.78083017716182,0.25863051873575943
+46,11,0.4499387423289895,2.0,1.3127058031229868,0.0007483676226075889,0.03597644849151146,0.8182004335451558,0,0.8330653341475671,0.25570869556654224
+46,12,0.4152274999119089,2.0,1.3779589964591534,0.0006956946733754734,0.036210297434958946,0.8276909809066517,0,0.8421821144773609,0.2611821804032149
+46,13,0.44206053661310507,1.95,1.377494693553369,0.0006958158525168989,0.03643091382903138,0.8166608723375948,0,0.8493753566223069,0.2743679798806077
+46,14,0.45687992860215093,1.95,1.3775027485894422,0.0006967557364826976,0.03646664432758197,0.8166623598303059,0,0.8723775191860279,0.29309640309246576
+46,15,0.4822074717314137,2.0,1.3775045428708244,0.0006976805881646927,0.03649249060503724,0.8276267243350266,0,0.9208479039458246,0.31289436717694613
+46,16,0.5282877986581793,2.0,1.3775316782579272,0.0006985752294601593,0.03639706633994044,0.8276308507104018,0,0.9892347352316226,0.3086463485517673
+46,17,0.5363682465724533,2.0,1.376860284478795,0.0006974203826599177,0.03649741450378595,0.8275347202882479,0,1.0,0.3212274885748443
+46,18,0.5360821454895506,2.0,1.3760582391240699,0.0006961753583883611,0.03616138767034709,0.8274198659258674,0,1.0,0.2869404849651683
+46,19,0.5337139014853635,2.0,1.37912216451256,0.0006966956019696998,0.03646350416532709,0.8278570923898089,0,1.0,0.27904633828454467
+46,20,0.5229241445849463,2.0,1.3814084372389612,0.0006972923194002479,0.03659745394136395,0.8281828341319359,0,1.0,0.2764138152831543
+46,21,0.5277995936956951,2.0,1.380654067497915,0.000696543380768732,0.036541197174376136,0.8280752504902497,0,1.0,0.25933197898564997
+46,22,0.5043503431093594,2.0,1.3824299664080617,0.0006974689723018838,0.0365205646631155,0.8283281951870093,0,1.0,0.2811678103645314
+46,23,0.5118564699752621,1.95,1.3824621805290818,0.0006976285054352313,0.03663698743450691,0.8174040052198368,0,1.0,0.3061882332508738
+46,24,0.5342088693541323,2.0,1.3821863924372872,0.000697748826139051,0.03651553296308549,0.8282936356566195,0,1.0,0.314029564513774
+46,25,0.5292138775759374,2.0,1.381594527427667,0.0006970905922535722,0.03646788021768229,0.8282092550064374,0,1.0,0.2973795919197913
+46,26,0.5335243382782751,2.0,1.3807935334154942,0.0006964059895888297,0.036578468911274684,0.8280950657581996,0,1.0,0.2784144609275832
+46,27,0.4921441009403175,2.0,1.3824415335997857,0.0006974784696968108,0.036517513819010874,0.8283298427433723,0,1.0,0.3071470031343917
+46,28,0.49318057828639117,1.95,1.3826503605445066,0.00069762498853713,0.03649325552370333,0.8174320892438287,0,1.0,0.31060192762130384
+46,29,0.5338902785974621,2.0,1.3825277885061862,0.0006977232894996913,0.036311345249319275,0.8283421774243785,0,1.0,0.3129675953248735
+46,30,0.5376471049081294,2.0,1.381895182688871,0.0006971211189197764,0.03637507044908528,0.8282520363054603,0,1.0,0.29215701636043107
+46,31,0.5173235528291795,2.0,1.383292839153069,0.0006981035678824956,0.036517408240655906,0.8284510418236151,1,1.0,0.32441184276393187
+46,32,0.4995757264932058,1.95,1.3840220283818974,0.0007029504693344536,0.03677668608648358,0.8176382916600837,1,1.0,0.2985857549773526
+46,33,0.5087106882570274,2.0,1.3842778682969175,0.0007020860484571484,0.03669396579785243,0.828592120035307,2,1.0,0.2957022941900913
+46,34,0.4768207814610473,2.0,1.3848143983825405,0.0007014073232925042,0.0366214239118626,0.8286681157502688,2,1.0,0.25606927153682424
+46,35,0.5657675906649666,1.95,1.3845579278442675,0.0007019308017510888,0.03677293727960861,0.8177178798651769,2,1.0,0.28589196888322205
+46,36,0.5221548924859966,1.95,1.3852991638907157,0.0007014154154773245,0.03672613357761524,0.817828185474154,2,1.0,0.30718297495332164
+46,37,0.5524239390959339,1.9,1.3849217265534104,0.0007017788106604007,0.036737393859814726,0.806328106673323,2,1.0,0.34141313031977955
+46,38,0.4891308580836505,1.9,1.3850962301913112,0.0007010704474610685,0.036763286836912615,0.8063551350272973,2,1.0,0.29710286027883487
+46,39,0.5211234534878039,1.8499999999999999,1.384863345680163,0.0007015701091524027,0.036435568585570254,0.7943366060147795,2,1.0,0.303744844959346
+46,40,0.5533404602191876,1.8499999999999999,1.384411498064549,0.0007020357023102751,0.0366138332868287,0.7942629318414862,2,1.0,0.3444682007306251
+46,41,0.4919711822285437,1.8499999999999999,1.3844973033988202,0.000701123793568005,0.03661698680048928,0.7942766548654798,2,1.0,0.30657060742847886
+46,42,0.4813254036065574,1.7999999999999998,1.3842268796118153,0.0007016856155660541,0.0367520551264372,0.7817050304348698,2,1.0,0.2710846786885246
+46,43,0.539750346999735,1.8499999999999999,1.3837914363255948,0.0007022135374070949,0.036768822430943225,0.7941616476232903,2,1.0,0.2991678233324499
+46,44,0.47715050000429216,1.8499999999999999,1.3838264856023519,0.0007011562495658162,0.03665712393730104,0.7941670313713134,2,1.0,0.2571683333476405
+46,45,0.5355041953201581,1.7999999999999998,1.3834030524815988,0.0007015492238992468,0.03671040309700049,0.7815643715036671,2,1.0,0.28501398440052705
+46,46,0.5720740913226635,1.7999999999999998,1.383135354320888,0.0007005300765130975,0.0366227896169743,0.781518318192729,2,1.0,0.30691363774221175
+46,47,0.5222238834880041,1.7999999999999998,1.3845342621547263,0.0007003235833865206,0.036435274704420643,0.7817570135892048,2,1.0,0.30741294496001365
+46,48,0.5186703091018386,1.7499999999999998,1.384359341444914,0.0007008842920713618,0.03675147782788229,0.7686601530689586,2,1.0,0.29556769700612884
+46,49,0.5772744310643325,1.7999999999999998,1.3839775664350724,0.0007013892830732278,0.036744938941553375,0.7816623829311438,2,1.0,0.3242481035477752
+47,0,0.0186068891300694,1.7999999999999998,1.3845457190738935,0.0006989462681571623,0.03651311421866148,0.7817584983090198,1,0.14780763039654066,0.16494612323817714
+47,1,0.04618247835286041,1.7499999999999998,1.3857507001352523,0.0007007459382865719,0.036753248928654066,0.768907425210319,1,0.18694299434428507,0.17135093538382132
+47,2,0.14706705682356377,1.7499999999999998,1.385767906487669,0.0007006591386053988,0.036641523400895416,0.7689104517258509,1,0.2344143466543395,0.14433772720609317
+47,3,0.19696355045302727,1.7499999999999998,1.385952164111704,0.0006999649795065186,0.036614608119167155,0.7689429436571971,1,0.2664836487300066,0.1679003032034154
+47,4,0.24966149885308592,1.7499999999999998,1.385889773649654,0.0006999521223778979,0.03675557858908844,0.7689318540081591,1,0.3264994028207845,0.23020579241590702
+47,5,0.22219414606133547,1.7499999999999998,1.3860599710093897,0.0007001244924932022,0.03635457229454762,0.768962153798221,1,0.3370270405889479,0.22461109941918775
+47,6,0.23551967329627163,1.6999999999999997,1.3860299234147022,0.0007001767868653732,0.03676116455612621,0.755364354094311,1,0.3675224242858926,0.22836901193971537
+47,7,0.26970972208324545,1.7499999999999998,1.3859634246672203,0.0007002378771645051,0.03650005083844777,0.7689450412812651,1,0.39239805848936393,0.24250166229166623
+47,8,0.31911024667935517,1.7499999999999998,1.3859134841143255,0.0007000780477706696,0.036593893426902425,0.7689361115008861,1,0.44518014379316007,0.30346063054030387
+47,9,0.35263181616354666,1.7499999999999998,1.3861066794086305,0.0007003883769494609,0.036776548212467744,0.768970545638998,2,0.4808744110098256,0.3676068391987214
+47,10,0.41695304500754743,1.7499999999999998,1.3860127852603772,0.000700167754692234,0.03634443595269172,0.7689537860741278,2,0.5429734002694738,0.3992122829991928
+47,11,0.4559214589756619,1.7499999999999998,1.3860390674906529,0.00070003514770284,0.03675202750519986,0.7689584083253498,2,0.599681511252101,0.4534961815827381
+47,12,0.48745481988595535,1.7499999999999998,1.3859990290579631,0.0007000344905106215,0.03664181308299238,0.7689512947322408,2,0.667678776512068,0.46794436427042724
+47,13,0.4579655516804785,1.7499999999999998,1.3860520754955497,0.00070020118437952,0.036588054083719165,0.7689607783334854,2,0.6976193651423938,0.4963926854117366
+47,14,0.42935611461806045,1.6999999999999997,1.3859913916057915,0.0007000104080103691,0.03676546932376637,0.7553571722768203,2,0.718109965958644,0.47370709411534295
+47,15,0.5020797120361509,1.6499999999999997,1.3861504898297317,0.0007000736341485965,0.03660688242168657,0.7412643906382032,2,0.7505222012999716,0.5062361050538737
+47,16,0.5671420799546861,1.6499999999999997,1.3862194439124664,0.0007001798790052089,0.03659327560390685,0.741277655977085,2,0.8064184370386461,0.5485823504640922
+47,17,0.4938011034038935,1.6499999999999997,1.3714109098186023,0.0006920402365607277,0.03640344990162136,0.7384243239534732,2,0.8521565250823451,0.509794977903185
+47,18,0.5740354633164954,1.5999999999999996,1.3737999372202392,0.0006962630673751408,0.03637726587863111,0.7241602174073767,2,0.8917732460124815,0.5577538830383421
+47,19,0.6367316303337168,1.5999999999999996,1.374287071446273,0.0006947779352987138,0.03632899978823628,0.7242569197254172,2,0.9436929115443956,0.597514885719862
+47,20,0.6362801310844577,1.5999999999999996,1.3760362272998679,0.0006943192646382802,0.03649509565166055,0.7246059214835513,1,0.9971120047732365,0.624784430583877
+47,21,0.6057592186499369,1.6499999999999997,1.3825990976253852,0.0006989165420708021,0.036554914650354355,0.740582235831489,1,1.0,0.6191973954997895
+47,22,0.6593822610027793,1.5999999999999996,1.3821158014143786,0.0006980093692558584,0.03660806386527833,0.7258189243670967,1,1.0,0.6979408700092642
+47,23,0.6851400107173448,1.5999999999999996,1.383549818260469,0.0006984165398969179,0.03645283433318272,0.7261043715773248,1,1.0,0.7838000357244823
+47,24,0.6346571254473123,1.5999999999999996,1.3844956120623264,0.000698910138817556,0.03671659195634677,0.7262926240517806,1,1.0,0.7488570848243743
+47,25,0.6549456334244921,1.5499999999999996,1.3850825032207466,0.000699437704030092,0.036426498379333296,0.7112538312313622,1,1.0,0.7831521114149737
+47,26,0.6537792768022755,1.5499999999999996,1.3845228973395498,0.0006989384034171089,0.0365384480439887,0.7111386852354784,1,1.0,0.7792642560075851
+47,27,0.6791010873447936,1.5999999999999996,1.3837537993444269,0.0006984317217461879,0.036601091941019306,0.726144942852274,1,1.0,0.7970036244826453
+47,28,0.6589905986378444,1.5999999999999996,1.3833230448015743,0.0006981257888395579,0.036649593243817016,0.7260591536229475,2,1.0,0.7966353287928144
+47,29,0.6977222270887126,1.5499999999999996,1.3775243786062157,0.0007080696078310632,0.03651776515164625,0.7097026872548363,2,1.0,0.8257407569623751
+47,30,0.7415801879236154,1.5499999999999996,1.3741855556147355,0.0006922278621999092,0.03631370129570095,0.7090077888889955,2,1.0,0.8719339597453843
+47,31,0.7549019298923997,1.5499999999999996,1.3770402408814442,0.0006960630015588442,0.036557795269577274,0.7095979844133194,2,1.0,0.9163397663079993
+47,32,0.7089001621226938,1.5999999999999996,1.3787319993821674,0.0006998121266047035,0.03661840675948767,0.7251457323949199,1,1.0,0.9296672070756458
+47,33,0.6747326024902995,1.5499999999999996,1.3822784055262123,0.0006976283642394952,0.036644520118930955,0.7106768635689116,1,1.0,0.8824420083009982
+47,34,0.68614525366353,1.4999999999999996,1.3809920390976371,0.0006965104119383523,0.03656595506063994,0.6947423874560077,1,1.0,0.8871508455450997
+47,35,0.6961709760258392,1.5499999999999996,1.3811123741907045,0.0006970554692151055,0.03659656291532078,0.71043681514177,0,1.0,0.9205699200861307
+47,36,0.7058330572821407,1.5999999999999996,1.3804714513811094,0.00069633877812463,0.036518420766646006,0.7254909022603148,0,1.0,0.9527768576071359
+47,37,0.7135960999326115,1.6499999999999997,1.379675620566763,0.000696198438732662,0.03644603598891004,0.7400191360823082,0,1.0,0.9786536664420383
+47,38,0.7347324203008827,1.6999999999999997,1.3786665545041348,0.0006960531631573855,0.03634526648063151,0.7539995972685435,0,1.0,0.9491080676696089
+47,39,0.7092827589327229,1.6999999999999997,1.3811366784919188,0.0006968033324665551,0.036436124531377394,0.7544577566789049,0,1.0,0.9642758631090761
+47,40,0.7150269241744276,1.6499999999999997,1.379846358418518,0.0006962518388679033,0.03652504761266595,0.7400520036761846,0,1.0,0.9834230805814251
+47,41,0.72,1.6999999999999997,1.37800270690887,0.0006955042904646237,0.0365577586012489,0.7538762395808828,0,1.0,1.0
+47,42,0.7,1.7499999999999998,1.376262505083214,0.0006948347124854793,0.03641158706699366,0.7672150679210918,0,1.0,1.0
+47,43,0.7,1.6999999999999997,1.3781757125669243,0.000698050469364596,0.03632498321679845,0.7539092836134337,0,1.0,1.0
+47,44,0.72,1.7499999999999998,1.378785728705475,0.0007008769110851074,0.03645159081948941,0.76766755727315,0,1.0,1.0
+47,45,0.7435081464197973,1.7499999999999998,1.3771115674464856,0.0007009578535235655,0.03653021229061294,0.7673688588872731,0,1.0,0.978360488065991
+47,46,0.6979839741974495,1.7499999999999998,1.3798730495148226,0.0006998575579967505,0.03658227616195512,0.7678610655307433,0,1.0,0.9932799139914984
+47,47,0.744033859193985,1.6999999999999997,1.380380133451183,0.0007025490455911303,0.0365424978536938,0.7543197084000036,0,1.0,0.9801128639799501
+47,48,0.7384204336077657,1.6999999999999997,1.3821621370219552,0.0007013377567661618,0.03659726999971787,0.7546493537152591,0,1.0,0.994734778692552
+47,49,0.7316576000596428,1.7499999999999998,1.3825232192556922,0.0006999659190374521,0.03655483730309086,0.7683331626745028,0,1.0,0.972192000198809
+48,0,0.14255943038282792,1.7999999999999998,1.3860710584446,0.0007000298049104016,0.03638127895287564,0.7820189972992437,0,0.13796884701115986,0.2245729719278799
+48,1,0.20791288192734597,1.7499999999999998,1.3860319295904615,0.0007000268903586881,0.03676015339810815,0.768957137259722,0,0.23613870822901958,0.21152466211912704
+48,2,0.22949822793720973,1.7499999999999998,1.3842566532679534,0.0007027438424252913,0.03665550661208788,0.7686425537494447,0,0.2983741879925765,0.23382850913393033
+48,3,0.19940111047432368,1.7499999999999998,1.3840593762703843,0.0007030478566914459,0.036652988398791296,0.7686075780271604,0,0.3180668992052859,0.24058116930736437
+48,4,0.2931921928387304,1.6999999999999997,1.3845404077751768,0.0007025527368406189,0.03676037617943106,0.755089882001118,0,0.43467965296800315,0.23106777217176364
+48,5,0.25060910665650143,1.6999999999999997,1.3803694358965035,0.0006961730194325229,0.03654610862030664,0.7543153626580742,0,0.44813970588942903,0.23784408100243276
+48,6,0.2923341939527897,1.6499999999999997,1.3818532722228865,0.0006970534810234921,0.03663550411028628,0.7404382058858153,0,0.4889581900161528,0.2558363931544284
+48,7,0.34775791588234556,1.6499999999999997,1.38115676832971,0.0006965284744448416,0.0361657096058741,0.7403041208877406,0,0.573665840686028,0.260971932026448
+48,8,0.3379104716518377,1.6499999999999997,1.3812586388100265,0.0006966796614309416,0.03660111516975133,0.7403237635381699,0,0.593868007261885,0.2678775624902788
+48,9,0.40008963736857883,1.6999999999999997,1.3805758206308854,0.0006961329006133663,0.03650750391465255,0.7543535937639931,0,0.6857486227503107,0.25263396089484863
+48,10,0.4265366787734111,1.6999999999999997,1.2970090342533669,0.0008014527399863439,0.03596840257391944,0.7385820901380652,0,0.780614715047417,0.21430264251481446
+48,11,0.4599381969536278,1.6999999999999997,1.2939303726468576,0.0008019645691100264,0.03648555579685804,0.7379874279811953,0,0.8784176401768117,0.19523713627634368
+48,12,0.4981414523033994,1.6999999999999997,1.351911456811144,0.0006772000898848238,0.035218401477505205,0.74899620477094,0,0.9772965406033245,0.19074278687356522
+48,13,0.48229451178384874,1.6999999999999997,1.3529818589292735,0.0006771533125232703,0.03550937513898741,0.7491973701031232,0,1.0,0.20764837261282904
+48,14,0.490010400912637,1.7499999999999998,1.3766089807029729,0.0006979862530549421,0.03629964467688511,0.7672780668844467,0,1.0,0.23336800304212318
+48,15,0.5127304193900712,1.7999999999999998,1.3792258097584564,0.0006978238735583028,0.03636469242818984,0.780849112628092,0,1.0,0.24243473130023724
+48,16,0.501635441385215,1.7999999999999998,1.3783199134884097,0.000697652891023274,0.03632086679911915,0.7806939942498765,0,1.0,0.27211813795071654
+48,17,0.5196222838717471,1.8499999999999999,1.3801099896483113,0.0006974956308854242,0.036628983082015384,0.7935576479435557,0,1.0,0.2654076129058237
+48,18,0.5231710613317627,1.9,1.3791557768293812,0.0006972060218972125,0.036541548367248364,0.8054246541764974,0,1.0,0.2439035377725422
+48,19,0.5152721159830187,1.95,1.3802727440018012,0.0006993959789195209,0.03655118373601711,0.817077522752687,0,1.0,0.2509070532767289
+48,20,0.49754164065400924,2.0,1.3793438451841533,0.0006992664152542517,0.03651425077562764,0.8278894143698184,0,1.0,0.25847213551336407
+48,21,0.47327139615437996,2.0,1.3809365250677585,0.0006987795387863192,0.036558388592625564,0.8281160958859082,0,1.0,0.24423798718126638
+48,22,0.51615778352316,1.95,1.3810044646942714,0.0006980142721197578,0.036499274021960404,0.817186448870629,0,1.0,0.2538592784105331
+48,23,0.5126882687384123,1.95,1.3798238808746592,0.0006976402686991198,0.03626283696752948,0.8170099003199112,0,1.0,0.24229422912804116
+48,24,0.5137128966696057,2.0,1.378673205193282,0.0006973457321244979,0.03643363035948374,0.8277932872560408,0,1.0,0.2123763222320189
+48,25,0.4568153079888333,2.0,1.3798142900828463,0.000699627212637913,0.036460866193893174,0.8279565398202863,0,0.9824209485378631,0.21282309524562673
+48,26,0.5071156552423525,1.95,1.3798598525307149,0.0006986300375334095,0.03664314950764484,0.8170155741343585,0,1.0,0.22371885080784154
+48,27,0.504325175379194,1.95,1.3786027059327097,0.0006983829075686283,0.036465762583135775,0.8168274804436912,0,1.0,0.21441725126397992
+48,28,0.4688352667917296,2.0,1.3774069886593507,0.0006981412983789979,0.0364763489451974,0.827612938194111,0,1.0,0.22945088930576527
+48,29,0.50537620811611,1.95,1.3775467037488904,0.0006970899579526069,0.036481681025356615,0.8166690410025261,0,1.0,0.18458736038703308
+48,30,0.495274190503634,1.95,1.3396690975447276,0.0006689516354010138,0.035768109921568085,0.8109211961362592,0,1.0,0.18424730167878
+48,31,0.4561800243753442,2.0,1.3434507717269977,0.0006696199750797351,0.03524758621718027,0.8227060694340401,0,1.0,0.18726674791781406
+48,32,0.4585242165736325,1.95,1.350828529654286,0.0006782387945696075,0.03570444689871942,0.8126291438948559,0,1.0,0.19508072191210823
+48,33,0.4572909202968487,2.0,1.354736237833598,0.0006853638886148041,0.035691121526079755,0.8243507453149935,0,1.0,0.19096973432282885
+48,34,0.4806749010920137,2.0,1.3589613476174442,0.0006933093721891933,0.03580741908268081,0.8249639833069407,0,1.0,0.2022496703067122
+48,35,0.5053864620905284,2.0,1.3756538028430054,0.0006940278562422353,0.0363704846282942,0.8273614928275954,0,1.0,0.18462154030176114
+48,36,0.49955670476736375,2.0,1.3404158365706482,0.0006852758523519119,0.03606179131717419,0.8222675338061223,0,1.0,0.1985223492245459
+48,37,0.4638726681564767,2.0,1.3448469793585576,0.0006832101216478772,0.03609636216537855,0.822913590568179,0,0.9943228047116317,0.22047848757274668
+48,38,0.49947869707074755,1.95,1.3739049490272368,0.0006920646533645813,0.03641638829023931,0.8161216576914347,0,1.0,0.2649289902358251
+48,39,0.5218122914447503,1.95,1.3751975409441073,0.0006924469320272996,0.03632291071419406,0.8163156685936471,0,1.0,0.2727076381491674
+48,40,0.5109005175279254,1.95,1.3738281520363034,0.0006915361904054649,0.03619715257408944,0.816109974092558,0,1.0,0.30300172509308454
+48,41,0.5359932704128669,2.0,1.3749692703671523,0.0006921784758234686,0.03606225670627437,0.8272631675465113,0,1.0,0.28664423470955624
+48,42,0.48787781828671145,2.0,1.377856343671195,0.0006944731152613515,0.036267571644497884,0.8276759917575233,0,1.0,0.2929260609557047
+48,43,0.5272456134648521,1.95,1.3776763020227514,0.0006942023925420959,0.036279268371546276,0.8166875791655426,0,1.0,0.29081871154950695
+48,44,0.5283812947633693,1.95,1.3762211283295256,0.000693243955266285,0.036505079316465475,0.8164693389602593,0,1.0,0.2946043158778976
+48,45,0.49097455642750903,2.0,1.3748589043656072,0.0006924117731644082,0.03632663641027339,0.8272474624862105,0,1.0,0.30324852142503
+48,46,0.5160189148298976,1.95,1.3748367595870314,0.0006922272935298436,0.036452700229044496,0.8162614993944277,0,0.9973827484948325,0.32355271810654834
+48,47,0.5361712763367735,1.95,1.3757376662116925,0.0006927444213825647,0.036144459231583624,0.8163967326983168,0,1.0,0.32057092112257835
+48,48,0.49602523197685877,1.95,1.3744120190823492,0.0006918060876248537,0.03639645036751661,0.8161976624459888,0,1.0,0.32008410658952907
+48,49,0.4998637471441938,1.9,1.3740153029019428,0.0006916496946193243,0.036412262349131176,0.8046160487749854,0,1.0,0.33287915714731264
+49,0,0.15987088549716078,1.95,1.384611222193509,0.0006989995021083502,0.03651099855118163,0.817724949714668,1,0.12752626382325521,0.22953459989286232
+49,1,0.15911915070900515,1.9,1.3846168241136916,0.0006989985506899902,0.036680587133370086,0.8062796192069426,1,0.1587172311289414,0.252107527524762
+49,2,0.21908491917658696,1.95,1.3849909346355544,0.000699280276113862,0.03664864782344747,0.8177816230304288,1,0.1935363903605722,0.3055678767745269
+49,3,0.25681379848481056,1.95,1.3848045620651959,0.0006991997677851523,0.03633402450686097,0.8177538251100979,1,0.22703008295455204,0.3866725510099658
+49,4,0.21965162021968615,1.95,1.385913809843464,0.0007001656391102341,0.036742879883128646,0.8179193685120608,1,0.261659536820656,0.3499593516380791
+49,5,0.26787382977547564,1.9,1.3860892260563502,0.0007001678913084567,0.036705737011467496,0.8065098590295388,1,0.28223826218824366,0.3832617496672605
+49,6,0.26189682615547816,1.9,1.386025641498217,0.0007000525294159502,0.036548119808353645,0.806499900351118,1,0.30057233222367136,0.405559644220032
+49,7,0.3393140353668601,1.95,1.385952090427423,0.0007000130906441628,0.03677542475554198,0.8179250240295847,1,0.36012809613096886,0.48420932304824194
+49,8,0.3159498633787574,1.95,1.3861182480270604,0.0007000555974108929,0.036675541193729164,0.8179497801826744,1,0.37264135054796393,0.48964441053190605
+49,9,0.3176783064573748,1.9,1.386037807515426,0.0006999980498080122,0.03646960642590617,0.806501781942243,1,0.38304140385575225,0.481539149716913
+49,10,0.32804772922677816,1.95,1.3859018969770067,0.0006999238651827094,0.036765422295361734,0.8179175223405801,1,0.3985929095815443,0.49536855131386803
+49,11,0.3942274383102046,2.0,1.3857296633283276,0.0006998727845551454,0.03664668725777656,0.8287975880030587,1,0.4507276072940126,0.5464546513086652
+49,12,0.37273938067084555,2.0,1.3857114873819716,0.000699997647883968,0.03642038763899034,0.8287950443982817,1,0.4723350160857678,0.5460179141217948
+49,13,0.4159991736021387,1.95,1.3855078181507265,0.0007000248501087951,0.036679661450823,0.8178588555257388,1,0.5084321198153854,0.5754210855866153
+49,14,0.4078324995986393,1.95,1.3858461918186475,0.0007000061419226704,0.036603985561129516,0.817909250618385,1,0.525933157197412,0.5915307890655818
+49,15,0.4111475692555784,2.0,1.3855794048070675,0.0006999575343033984,0.0365222846431444,0.8287762904986825,1,0.5646270920175401,0.5843224414952077
+49,16,0.4328945387518056,2.0,1.3855107831854134,0.0006997403108083373,0.03666262613467201,0.8287664907953028,1,0.5820770292883746,0.6002124234548526
+49,17,0.5028471687396575,2.0,1.3861765362489522,0.0007001712938378211,0.036772699862741426,0.8288610711319123,1,0.6337416748447905,0.6645016626724711
+49,18,0.5511767676654448,2.0,1.3858794025522976,0.0007006854766120148,0.03644688356189231,0.8288190643832626,1,0.7033151802229004,0.7328356519209487
+49,19,0.5231360021198329,2.0,1.38610055154298,0.0007004209949898485,0.036663784348890074,0.8288503632458933,1,0.7537509705834744,0.7054520462881437
+49,20,0.541179276864683,1.95,1.3859041817468873,0.0007005881156699604,0.03678002119169257,0.8179180604587861,1,0.7673306807867937,0.7141566818332185
+49,21,0.5365460278636933,2.0,1.3860616997713637,0.0007003269463886979,0.036631896603493294,0.8288448250789999,1,0.8075901249914741,0.6783665928903456
+49,22,0.5538648741259055,2.0,1.3842156010138045,0.0006987758652767396,0.03657599357030121,0.8285823358925835,1,0.8269392346479885,0.6769639342223669
+49,23,0.6183529602447368,2.0,1.383730517270625,0.0006983858616058482,0.03667361814652662,0.8285133158739749,1,0.8737851074667258,0.7294630575268216
+49,24,0.5989099377668978,2.0,1.38449879404936,0.0006990441822565534,0.036442493390071454,0.828622631295791,1,0.8879384351309992,0.745781879048327
+49,25,0.6721155289194459,2.0,1.3838956070487924,0.0006988084341157651,0.03657919912771451,0.8285368904569932,1,0.9389136336679702,0.8218335848408592
+49,26,0.6950176045877943,2.0,1.382273282208179,0.0006975373834879573,0.03663454422947138,0.8283059329123752,1,0.985861054294465,0.8689106095666937
+49,27,0.7308715755885655,2.0,1.3838656467536825,0.0006984719203834776,0.03650851388028891,0.8285325385358179,1,1.0,0.9362385852952182
+49,28,0.75,2.0,1.3835696929710342,0.000698350435457556,0.036522395641583785,0.828490454843184,1,1.0,1.0
+49,29,0.74,2.0,1.3829568569490078,0.0006982129182113344,0.036650700480448536,0.8284033178810434,1,1.0,1.0
+49,30,0.72,2.0,1.3842009499302337,0.0006987377918443363,0.03646036668826389,0.8285802441201896,1,1.0,1.0
+49,31,0.7048602456076982,1.95,1.3846708306609914,0.000699311365161266,0.03657421356575479,0.8177339272028935,1,1.0,0.9828674853589943
+49,32,0.6963656653835701,2.0,1.3840509320936254,0.0006986819299719812,0.03650117349564763,0.8285589194127064,1,1.0,0.9545522179452336
+49,33,0.6857563409983474,2.0,1.3833128355355446,0.0006980749597700921,0.03648185338458823,0.8284538755576321,1,1.0,0.9191878033278247
+49,34,0.6743650171084296,2.0,1.3822969877959592,0.0006974173489969643,0.03647287281445743,0.8283092700404535,1,1.0,0.8812167236947651
+49,35,0.6637349173434095,2.0,1.3810661636720125,0.0006967218754667902,0.036592183792234015,0.8281339621117407,1,1.0,0.8457830578113652
+49,36,0.6762522998148015,2.0,1.3796257553010705,0.000695937038477989,0.03630692269049348,0.8279286309928733,1,1.0,0.8541743327160052
+49,37,0.6794095770052397,2.0,1.3803435737606216,0.0006960389966846932,0.03637956745413726,0.8280308983960463,1,1.0,0.864698590017466
+49,38,0.7046836960367653,2.0,1.3804965832960832,0.0006960931247719396,0.03655873475750079,0.8280527006206049,1,1.0,0.8822789867892173
+49,39,0.6837672663143128,2.0,1.3824419490036828,0.0006976166581089439,0.0365027979691256,0.8283299411142325,1,1.0,0.8792242210477091
+49,40,0.7268261908486715,1.95,1.3823004552718638,0.0006973794155576224,0.036506356167721334,0.8173797913631016,1,1.0,0.9227539694955714
+49,41,0.6729006342114581,1.95,1.3826038372942417,0.0006977166009612366,0.036291661321173396,0.8174251735018111,1,1.0,0.876335447371527
+49,42,0.7246431111080153,1.9,1.3815409386326871,0.0006968549698490037,0.03659603571458358,0.8057980645181082,1,1.0,0.9154770370267173
+49,43,0.6961325930569049,1.9,1.381462235028329,0.0006970911394580555,0.03656584466904615,0.805785822006712,1,1.0,0.9204419768563493
+49,44,0.6782672584864837,1.8499999999999999,1.3813239917306024,0.0006975351169369536,0.03655308415045937,0.7937564725596387,1,1.0,0.8942241949549455
+49,45,0.6921342953887366,1.9,1.3800892479834976,0.0006962921290440954,0.036503806639374706,0.8055706158507459,1,1.0,0.9071143179624555
+49,46,0.743589860461578,1.95,1.3798358695422168,0.0006967133718178092,0.03653226469407482,0.8170114155265435,1,1.0,0.9786328682052602
+49,47,0.74,1.95,1.3799900511202856,0.0006977951892673578,0.036347349030726214,0.8170347885656287,1,1.0,1.0
+49,48,0.75,2.0,1.3825207082381734,0.000698238575899602,0.0366478870783133,0.82834131720795,1,1.0,1.0
+49,49,0.7001697282792922,2.0,1.3823450525302734,0.0006988442829173936,0.03643329849433977,0.8283165112077508,1,1.0,0.9672324275976407
+50,0,0.17957804350393713,1.95,1.3859053210753671,0.0006998956457588117,0.03637689092769241,0.817918023880351,0,0.18795339407164507,0.21465561958426366
+50,1,0.22173439391515976,1.9,1.3860037143076416,0.0006999933562635358,0.03673601324774646,0.8064964599496417,0,0.27543648849584323,0.20519932838940827
+50,2,0.183297563557353,1.9,1.3835776989394106,0.00070340535710522,0.03672212909575785,0.8061186411800464,0,0.2991155215836155,0.21217118307968927
+50,3,0.2407553984129642,1.8499999999999999,1.3840400759012392,0.0007028012371410272,0.0364929474387072,0.7942024816077997,0,0.3510983530451238,0.20105352398304885
+50,4,0.2627392009801232,1.8499999999999999,1.3838014955404758,0.0007033725641019335,0.03678691538473312,0.7941636709146631,0,0.40631461918498,0.2007111776871039
+50,5,0.3123260602126909,1.8499999999999999,1.3802410665811247,0.0006970480393133089,0.03646975942118121,0.7935789740114262,0,0.5198495499754232,0.18128746740840523
+50,6,0.35068269355371523,1.8499999999999999,1.3860800878200816,0.000700153353740436,0.03663778178650533,0.7945348465109625,0,0.6211692682096888,0.17404995423279906
+50,7,0.3040869753039343,1.8499999999999999,1.3795561178132918,0.0006958163232639143,0.036549946426258785,0.7934663453410586,0,0.6337892691451358,0.16857089215293336
+50,8,0.3916183077535685,1.7999999999999998,1.380234548079095,0.0006967285477679659,0.03648120407305836,0.7810213081737248,0,0.7354377784346154,0.1581439879324077
+50,9,0.4275505154527641,1.7999999999999998,1.3795092526703518,0.000695996672281132,0.0365108709253922,0.7808969873320463,0,0.8296811492026124,0.15226018590573068
+50,10,0.4589577981587665,1.7999999999999998,1.348251746609261,0.0007056052650985903,0.036390254070927094,0.7755053416320481,0,0.921669685045181,0.13429974713564688
+50,11,0.4882784826032978,1.7999999999999998,1.3525917255114155,0.0007017513827374508,0.036354220156521316,0.7762586758722144,0,1.0,0.1275949420109927
+50,12,0.47700045192229257,1.7999999999999998,1.3556677728024293,0.0006983845458672659,0.036048681136770365,0.7767913057245193,0,1.0,0.12333483974097526
+50,13,0.47197963620446487,1.8499999999999999,1.359793389838007,0.0006959103297312224,0.03565021750931628,0.7902089237595686,0,1.0,0.10659878734821629
+50,14,0.43552693500301803,1.9,1.363306584716674,0.0006940301666439955,0.035925377268861546,0.802927801112173,0,1.0,0.11842311667672678
+50,15,0.4701766628545316,1.8499999999999999,1.3659072428594579,0.0007001573201459942,0.036277283646554664,0.7912220756876106,0,1.0,0.10058887618177192
+50,16,0.47452529542574085,1.8499999999999999,1.3672981536307809,0.0006978148863500801,0.03652101490066096,0.7914509734898267,0,1.0,0.08175098475246953
+50,17,0.45232867262266324,1.9,1.369809875483918,0.0006961937151240663,0.0363693029220314,0.8039555028058953,0,1.0,0.107762242075544
+50,18,0.43216428346523617,1.8499999999999999,1.368410761532757,0.0006957866701250613,0.03631495700446562,0.7916338878108323,0,0.9935265317802536,0.11584556917711566
+50,19,0.45586447812738207,1.7999999999999998,1.369593727865582,0.0007005117504878055,0.03593780331355604,0.7791973011571461,0,1.0,0.11954826042460673
+50,20,0.47294092869017207,1.7999999999999998,1.3671704933313367,0.0007000825066956519,0.03640177893946596,0.7787799564445438,0,1.0,0.10980309563390693
+50,21,0.4396861031346453,1.8499999999999999,1.3689738850180564,0.0006979576519350036,0.036532310762542194,0.7917274755619278,0,1.0,0.13228701044881766
+50,22,0.43955514688397473,1.7999999999999998,1.3707001573917277,0.0007026322454244131,0.03653365290961362,0.7793883315036427,0,1.0,0.13185048961324905
+50,23,0.4425643752508471,1.8499999999999999,1.3709251643672518,0.0007069846850490699,0.03624331969194763,0.7920520223931581,0,1.0,0.14188125083615685
+50,24,0.4669957911651168,1.9,1.3714725363918125,0.0007105970563591648,0.03621796904509538,0.8042219597355024,0,1.0,0.15665263721705588
+50,25,0.4798104664566853,1.9,1.3702661175921327,0.0007106245448488564,0.03616231048646729,0.8040319492476744,0,1.0,0.19936822152228417
+50,26,0.5091599754495605,1.95,1.3685115266373513,0.0007107433511925551,0.03641238956579364,0.8153165272670962,0,1.0,0.1971999181652016
+50,27,0.5019428421145523,1.95,1.3719252491773675,0.0007076101602625987,0.0364313194827698,0.8158290554695293,0,1.0,0.1731428070485074
+50,28,0.4782223127589703,2.0,1.3739426454387618,0.0007050728817306029,0.03657579320442113,0.8271201024001146,0,1.0,0.1940743758632342
+50,29,0.4794426104658615,1.95,1.3726994277048135,0.0007049840558039581,0.03656248004839256,0.8159445601367625,0,1.0,0.19814203488620494
+50,30,0.48052231308970317,2.0,1.3706205710312074,0.0007049782417563064,0.036500095124788794,0.8266445274061451,0,1.0,0.2017410436323437
+50,31,0.4801895181227826,2.0,1.369955058395147,0.0006931650804295225,0.03604012520051239,0.8265457492514784,0,1.0,0.20063172707594187
+50,32,0.4990066081369054,2.0,1.370048601782229,0.0006919222239128484,0.03619164241983061,0.826558803608412,0,1.0,0.1966886937896846
+50,33,0.46321238596575215,2.0,1.359309623907723,0.0007030193921183916,0.03591628574366847,0.8250170717281802,0,0.9979886600414367,0.2133897398305915
+50,34,0.4868282045543373,1.95,1.3746251065071362,0.0006938174285683457,0.036454333785133006,0.8162302308594493,0,1.0,0.22276068184779071
+50,35,0.5082829418290229,1.95,1.3738331977649252,0.000692683695506441,0.03621865834469928,0.8161110757475948,0,1.0,0.19427647276340965
+50,36,0.45918647310851796,1.95,1.360270097848478,0.0007191174056848207,0.036532573883544237,0.8140748788991581,0,1.0,0.1972882436950598
+50,37,0.4978668964836868,1.9,1.3599478353749739,0.000724472747107489,0.03648817465127066,0.8024054430368619,0,1.0,0.1928896549456227
+50,38,0.48864148082702696,1.9,1.3633204402934378,0.0007201005024568844,0.036613171390766336,0.8029382438030855,0,1.0,0.22880493609008978
+50,39,0.5119014104613324,1.95,1.372550745624228,0.0006914506439552209,0.036203290148649064,0.8159181648703494,0,1.0,0.2396713682044414
+50,40,0.5152039799811627,1.95,1.3715168818068206,0.0006909253078541278,0.03622547614349119,0.8157626743270914,0,1.0,0.21734659993720917
+50,41,0.49320337388494573,2.0,1.3737633356337995,0.0006939216292623781,0.036232227919814626,0.827091271462925,0,1.0,0.24401124628315227
+50,42,0.5158988312223283,1.95,1.3734973356307734,0.0006929707980883351,0.03621495816755939,0.8160607524848894,0,1.0,0.21966277074109403
+50,43,0.5079000551614241,1.95,1.3747947451917004,0.0006954055979864158,0.03628475493326663,0.8162561514269502,0,1.0,0.19300018387141346
+50,44,0.48181106647301586,2.0,1.3533911777840684,0.0007204436602786259,0.03595079974136075,0.8241660677220616,0,1.0,0.20603688824338612
+50,45,0.5080362610810173,1.95,1.3744586101231409,0.0006944176579498913,0.036324814476277695,0.8162054354323064,0,1.0,0.19345420360339083
+50,46,0.4809904851873642,1.95,1.3412203985512823,0.0007189423829894539,0.03638743052148907,0.8111742540137001,0,1.0,0.20330161729121385
+50,47,0.5003713239628037,1.9,1.3738013577212154,0.0006936948322525194,0.03624081107907162,0.8045830555729927,1,1.0,0.2012377465426791
+50,48,0.48254266268033075,1.95,1.384608487441979,0.0007017438243956565,0.0364838563073054,0.8177253601844253,1,1.0,0.20847554226776893
+50,49,0.45909475642931163,2.0,1.3842679874670965,0.0007020895727126153,0.0365802656370164,0.8285907176850602,1,1.0,0.1636491880977053
+51,0,0.1865586451294058,1.95,1.3843425744621547,0.000698973811562679,0.03652034453374993,0.8176848964626614,1,0.14756587815455682,0.25844097955861023
+51,1,0.21985856717419006,1.9,1.3840465595482674,0.0006988337453779302,0.03666928357940838,0.8061904809323475,1,0.18985355817012867,0.3130571463537952
+51,2,0.26248938183392745,1.9,1.3836658844771978,0.0006986440137282257,0.036597727766560006,0.8061309352093456,1,0.24407092303554986,0.38287004206569164
+51,3,0.24108811746284034,1.9,1.3860342737323101,0.0007000311952990927,0.03644175766042701,0.8065012408164349,1,0.2524161541336017,0.4004055193646655
+51,4,0.3019417703645722,1.8499999999999999,1.3858726991624548,0.0007002297555864461,0.03677075122193334,0.7945010133535898,1,0.28974011871428446,0.45348574292952804
+51,5,0.27380145562334346,1.8499999999999999,1.3858530680165626,0.0007004441351576112,0.03656961160922552,0.7944978781784373,1,0.29012392856542335,0.4591729473239136
+51,6,0.26531630068425593,1.7999999999999998,1.3857011863566842,0.00070052489181046,0.036653904399077154,0.7819561091969193,1,0.32025804435561267,0.4240436098067029
+51,7,0.3498951496898124,1.8499999999999999,1.3856839259985922,0.0007002863856889225,0.03669776447943081,0.7944702092994911,1,0.3842634280032925,0.487299261628318
+51,8,0.3944780687385521,1.8499999999999999,1.385649528144897,0.0007005404154339726,0.036388026634594076,0.7944646754714144,1,0.43418616323944753,0.5693453448092437
+51,9,0.41077741902607645,1.8499999999999999,1.3854664372727294,0.0006997112360683294,0.03671672150067344,0.7944345060257876,1,0.47021206876455274,0.6089753050675178
+51,10,0.4294016963793285,1.9,1.3858369627764393,0.0007001580271048628,0.03670780220636173,0.8064704867912785,1,0.5090776980680068,0.6192353905070861
+51,11,0.4678880705677187,1.95,1.385899929833005,0.0006999921503485534,0.03645573321380332,0.817917249715924,1,0.5320339672868323,0.6835816121766193
+51,12,0.4317509270935642,1.95,1.3855930777148708,0.0006999259919987929,0.036503586949032815,0.8178715264849372,1,0.5655102372101376,0.6518227740316972
+51,13,0.45651883357035516,1.9,1.385740250127497,0.0006998474858134143,0.0367689582217797,0.8064552948941388,1,0.5915661240298637,0.6663079465280323
+51,14,0.5176055664949305,1.9,1.385934464938618,0.0007001837562918673,0.03632061051714402,0.8064857120994143,1,0.6300611792060475,0.7186036493750381
+51,15,0.4897902341138518,1.9,1.3827146809528386,0.0007005292400749682,0.03668092016185061,0.805982823773857,1,0.6742195877126719,0.7003413300959433
+51,16,0.5375101690083406,1.8499999999999999,1.3816957965240668,0.0007004877426983551,0.036594558609403346,0.7938182995281676,1,0.6949200172374018,0.7318072070445992
+51,17,0.5076062164142792,1.8499999999999999,1.3819166650168846,0.000702444432265605,0.03661898731563672,0.793855087328712,1,0.7209831092186736,0.6973765757560323
+51,18,0.5247499987414149,1.7999999999999998,1.3807807921600599,0.0007025902974605578,0.036673283620345706,0.7811167207454363,1,0.746968076743451,0.6865425601467817
+51,19,0.5579988713235944,1.8499999999999999,1.3813644267250547,0.000701277444159717,0.03666355716332602,0.7937643172376331,1,0.769583945756316,0.7005509767368934
+51,20,0.5831955216709018,1.8499999999999999,1.3816544581842476,0.0007031872884035125,0.036729180254401514,0.7938124172602687,1,0.8107382833904437,0.7296673610490809
+51,21,0.5526110272917605,1.8499999999999999,1.3837553994878815,0.0006987771727649966,0.036553343952801035,0.7941546331539601,1,0.8379242007811817,0.6914711565976259
+51,22,0.635696417293204,1.7999999999999998,1.3844511449508121,0.0006989485941622617,0.03652486835116588,0.7817423631784448,1,0.8931558273171062,0.7614469545545383
+51,23,0.6470401384368396,1.7999999999999998,1.3850050085837102,0.0006996821326957711,0.036519544990058814,0.7818370995683203,1,0.9359923103138411,0.775477381037677
+51,24,0.629677946498949,1.8499999999999999,1.3847239542063354,0.0006992012206780725,0.03658619795644953,0.7943130592021481,1,0.9307246511542375,0.79129362012418
+51,25,0.6974376606254606,1.9,1.3841641515539926,0.0006990215241236839,0.03659663558898328,0.8062089123903566,1,0.9767815790784735,0.8557500966469042
+51,26,0.6736182721174195,1.9,1.3831778311274316,0.0007013672801604589,0.03661661942168437,0.8060555004143803,1,0.9858777535567383,0.8642239023157472
+51,27,0.7289382217448825,1.8499999999999999,1.3827009147416172,0.0007021699377773673,0.036713322733699844,0.7939833097819982,1,1.0,0.9297940724829414
+51,28,0.6841730065351759,1.8499999999999999,1.3819326712535753,0.0007031504932175838,0.03672970395682129,0.793857937814356,1,1.0,0.9139100217839198
+51,29,0.7396122568774339,1.7999999999999998,1.3817786974045752,0.0007015450050504353,0.036554202475018546,0.7812869308902167,1,1.0,0.9653741895914463
+51,30,0.7128021367524644,1.7999999999999998,1.3808066328056965,0.0007023525298538306,0.036676978485434296,0.7811210574734121,1,1.0,0.9760071225082145
+51,31,0.6919404470744539,1.7499999999999998,1.380273244638201,0.0007038109081386012,0.03644534352579475,0.7679338019121253,1,1.0,0.9398014902481797
+51,32,0.75,1.6999999999999997,1.37986072945862,0.0007019679495711881,0.0365028672822158,0.7542232235296773,1,1.0,1.0
+51,33,0.72,1.6999999999999997,1.3787345241621245,0.00070301000567943,0.03662451493432683,0.7540147850194068,1,1.0,1.0
+51,34,0.6958869306496276,1.6499999999999997,1.3780738792207325,0.0007046976877093166,0.03634212690411355,0.739714130164444,1,1.0,0.9529564354987587
+51,35,0.75,1.5999999999999996,1.3774980852892165,0.0007025286387000393,0.03649971326084233,0.7249008168614787,1,1.0,1.0
+51,36,0.75,1.5999999999999996,1.376212367019451,0.0007038191915122451,0.036415746414825936,0.7246448603040276,1,1.0,1.0
+51,37,0.75,1.6499999999999997,1.3748116277136857,0.0007049644452892333,0.03657659109466159,0.7390856374759062,1,1.0,1.0
+51,38,0.74,1.6999999999999997,1.3733984886696646,0.0007057844194970048,0.036482963743503946,0.7530247669056764,1,1.0,1.0
+51,39,0.74,1.7499999999999998,1.3779447402288505,0.0007038167719584222,0.03647724573452296,0.7675185789277919,1,1.0,1.0
+51,40,0.75,1.7999999999999998,1.3810790506530228,0.0007023745668022533,0.036494286888757305,0.7811676369791719,1,1.0,1.0
+51,41,0.6959827354130539,1.8499999999999999,1.379639644545544,0.0007026522260981486,0.03656382710997559,0.7934822735405038,1,1.0,0.9532757847101798
+51,42,0.75,1.7999999999999998,1.3798951066035559,0.000700708423300943,0.036617155472990395,0.7809646105597031,1,1.0,1.0
+51,43,0.701054268575316,1.7999999999999998,1.3779999992659198,0.000700863978318467,0.03663217848558501,0.780640316277012,1,1.0,0.9701808952510533
+51,44,0.75,1.7499999999999998,1.3777374964780322,0.0006988468687447937,0.036383434085146514,0.7674798237866727,1,1.0,1.0
+51,45,0.7197997686041375,1.7499999999999998,1.3755848274008786,0.0006987580068310254,0.03645599286320026,0.767095417283431,1,1.0,0.9993325620137915
+51,46,0.7025094081270802,1.6999999999999997,1.3762313556732675,0.0007021037375702385,0.03659674141679563,0.7535498743533047,1,1.0,0.9750313604236003
+51,47,0.75,1.7499999999999998,1.3755548634005463,0.0006996966758260087,0.03643150882355623,0.767090399281624,1,1.0,1.0
+51,48,0.72,1.7499999999999998,1.373941306863719,0.0006999361922357865,0.03633787979134971,0.7668020783124552,1,1.0,1.0
+51,49,0.72,1.6999999999999997,1.3742961849989161,0.0007033077943269467,0.036514534106672804,0.7531907603885672,1,1.0,1.0
+52,0,0.16643158261841445,1.7499999999999998,1.3856251663619379,0.0006998494516556631,0.03636288038484521,0.7688847998992965,0,0.1618895250273615,0.20558590869156618
+52,1,0.18530037340509173,1.6999999999999997,1.3857472314836752,0.000700071329612945,0.03675667598039537,0.7553120729705758,0,0.213437249669724,0.19975157845734043
+52,2,0.22996846147429212,1.7499999999999998,1.3837100659193833,0.000698815689182643,0.036501546735019354,0.7685439416954978,0,0.3224978130509617,0.16989778751302473
+52,3,0.20992150095787207,1.7499999999999998,1.3836256558897824,0.0006985895735480412,0.03650563927137977,0.7685288457002216,0,0.34238035933352456,0.17656452408154086
+52,4,0.1968193735430565,1.6999999999999997,1.3833390745833638,0.0006984727556392917,0.03665693621595153,0.7548661424546698,0,0.3589094315153148,0.1775186697897686
+52,5,0.2576513302142211,1.7499999999999998,1.3836630941268422,0.0006990456215437697,0.0364767827053307,0.7685356678573458,0,0.41312538435946955,0.17467058823477755
+52,6,0.2617307686308232,1.7499999999999998,1.38590588169119,0.000700473487479911,0.036759756755610294,0.7689349012687562,0,0.44295554686718974,0.21516183294649094
+52,7,0.3109971441941299,1.7999999999999998,1.3805439099978536,0.0006967392624918833,0.036449030890627516,0.7810742164867067,0,0.5077720226023644,0.22629445051061375
+52,8,0.3442505977381406,1.7999999999999998,1.3808028856160175,0.0006973596732121209,0.03629752858220677,0.7811187095368677,0,0.5904048459316233,0.2269621978849709
+52,9,0.31395058898894324,1.7999999999999998,1.380756998252019,0.0006978174767272597,0.03659551039396429,0.7811110205162348,0,0.6130321867106153,0.2291257143489903
+52,10,0.3465601668503898,1.7499999999999998,1.287945575469973,0.0007980903633651847,0.035833605629931334,0.7511101262946198,0,0.6361849301805602,0.24028731592721897
+52,11,0.3319044491688681,1.7499999999999998,1.2969814016993908,0.0007869962460599917,0.036226999018848724,0.7527913524756015,0,0.6447010866430596,0.24674671503881412
+52,12,0.4087492689757804,1.7999999999999998,1.3071732173318469,0.0007751628136048571,0.03650373515434779,0.768297631059702,0,0.7214642779069297,0.2672118593766952
+52,13,0.3768928494207986,1.7999999999999998,1.3079217746163523,0.0007836251788972189,0.036673463328904594,0.7684338714105886,0,0.7404176798251194,0.26908592496916944
+52,14,0.46118683778032915,1.7499999999999998,1.3163030974923564,0.0007725722694851625,0.036539062798081286,0.7563641489723748,0,0.8342277396889288,0.25831913968252534
+52,15,0.4873020547579832,1.7499999999999998,1.3800761101266685,0.0006960031176328827,0.03656241679821505,0.767895885242514,0,0.9171634960741072,0.2681221877611346
+52,16,0.5178886490924429,1.7499999999999998,1.3799208111014147,0.0006957335002709707,0.036512182408121666,0.7678681087501911,0,0.9967770086660442,0.26392615208675063
+52,17,0.5225580743039213,1.7499999999999998,1.3795192214219387,0.0006954417256201629,0.036367298811857886,0.7677964149863002,0,1.0,0.24186024767973743
+52,18,0.5151908988688484,1.7999999999999998,1.3802169613846906,0.000696159845229382,0.03641261035611219,0.7810181058298568,0,1.0,0.2506363295628277
+52,19,0.5017890741310682,1.8499999999999999,1.379899042141647,0.000696202888330507,0.03651266774671541,0.7935226639416858,0,1.0,0.27263024710356076
+52,20,0.5069179176869755,1.9,1.3792826400728406,0.0006955836785606234,0.03656219438937581,0.8054440264236772,0,1.0,0.2897263922899183
+52,21,0.525376283384012,1.95,1.3785814566837158,0.0006948930026281488,0.036520335977630984,0.8168232567643139,0,1.0,0.28458761128003984
+52,22,0.5278991142958596,2.0,1.378229546770517,0.0006949488883946987,0.03654107680671702,0.8277293503101376,0,1.0,0.2929970476528652
+52,23,0.524454753200364,2.0,1.377767434227274,0.0006949106424737536,0.0365001610457381,0.8276634351872854,0,1.0,0.2815158440012135
+52,24,0.4822091838348551,2.0,1.3770307403580002,0.0006948037347672732,0.036451165836170286,0.8275582997456511,0,1.0,0.27403061278285024
+52,25,0.5098660364021568,1.95,1.3791173684811242,0.000695506508066467,0.03634575750045276,0.8169036114205708,0,1.0,0.29955345467385575
+52,26,0.5285364266831227,1.95,1.3782176957420593,0.0006947355818822817,0.03631536926587152,0.8167687763610977,0,1.0,0.2951214222770757
+52,27,0.5301078138655598,2.0,1.377455530133986,0.0006944481990608566,0.036432699895500305,0.827618809728406,0,1.0,0.26702604621853265
+52,28,0.5231104378743483,2.0,1.3786764540404637,0.0006958089713786089,0.03640814159893307,0.8277933122489901,0,1.0,0.2770347929144943
+52,29,0.5283357043932083,2.0,1.3779630354674242,0.000695717610632846,0.03655548333509686,0.8276915634862219,0,1.0,0.2611190146440275
+52,30,0.48826133700395313,2.0,1.3786537489408333,0.0006971014473704215,0.03644055512019199,0.8277904440719525,0,1.0,0.2942044566798437
+52,31,0.48762908886816503,1.95,1.3806908766441581,0.0006973882152509776,0.03638522424869599,0.817139409333524,0,0.9979349405503685,0.29485037549339216
+52,32,0.5328205402050701,2.0,1.3820690656507852,0.0006976746850291034,0.03644193911162919,0.8282769273216357,0,1.0,0.2760684673502336
+52,33,0.48491894133387214,2.0,1.382672845847154,0.0006985949789363004,0.03644463945249766,0.8283630502202615,0,1.0,0.28306313777957365
+52,34,0.5143088202636621,1.95,1.3837778359573782,0.0006988100936212933,0.03655076005208703,0.8176006433969938,0,1.0,0.31436273421220706
+52,35,0.4967289282260464,1.95,1.3833102189986102,0.0006982753532977838,0.03646987477351215,0.817530737862828,0,1.0,0.32242976075348806
+52,36,0.49555524481211244,2.0,1.3841409673332052,0.0006986829440914066,0.0366494177124632,0.8285717087414972,0,1.0,0.31851748270704144
+52,37,0.5265774454746325,2.0,1.3847041392614308,0.0006990919204665906,0.036524061072940664,0.8286518033762043,0,1.0,0.35525815158210816
+52,38,0.5475182473366347,2.0,1.3843288613905007,0.0006989338442130362,0.036706837162652786,0.828598466951755,0,1.0,0.35839415778878203
+52,39,0.5085715146862768,2.0,1.3839464764055194,0.000698566622396957,0.03649313674796062,0.8285440483127098,0,1.0,0.36190504895425585
+52,40,0.5148993434576732,1.95,1.3843479264292151,0.0006990095421358552,0.03649824728254434,0.8176857049659143,0,1.0,0.38299781152557705
+52,41,0.5360372025272082,2.0,1.384482716466368,0.000699433708737371,0.03638515019329978,0.8286204587839722,0,1.0,0.3867906750906938
+52,42,0.5215399535130173,2.0,1.384179946940098,0.0006994901448807182,0.036564098856754754,0.8285774746632177,0,1.0,0.4051331783767242
+52,43,0.5447297806476069,2.0,1.3530820890298019,0.0006842306849605288,0.035556071130397215,0.8241107731617,0,1.0,0.4157659354920228
+52,44,0.5718309708146088,2.0,1.3533666783654843,0.0006827441653852139,0.03585843118579947,0.8241515903394783,0,1.0,0.4061032360486955
+52,45,0.5653764130386536,2.0,1.3503891070887222,0.000681232391015927,0.03604544425107049,0.8237192079770302,0,1.0,0.3845880434621785
+52,46,0.557183677915294,2.0,1.3832058390713897,0.0006980743985697427,0.03644738455694321,0.8284386687346909,0,1.0,0.357278926384313
+52,47,0.5539751789993538,2.0,1.3838851611624428,0.0006984987996043527,0.0367010893573238,0.82853531849645,0,1.0,0.3799172633311791
+52,48,0.5524357209081864,2.0,1.3834513995420967,0.0006983214070608235,0.03655659615758292,0.8284736371508685,0,1.0,0.37478573636062096
+52,49,0.5600342229243539,2.0,1.3829298914795747,0.0006981018784850011,0.03640670822239693,0.8283994531021847,0,1.0,0.36678074308117936
+53,0,0.1720011292832031,2.0,1.3858609534956914,0.0007002903831976283,0.03636551426510098,0.8288163347401736,0,0.16714417541463816,0.21714486372449276
+53,1,0.21628152870346473,1.95,1.3858543610010052,0.0007004397955066705,0.03672458069793953,0.8179105964524145,0,0.2682342822266337,0.19662605270937084
+53,2,0.24181407020185486,1.95,1.3844296734365071,0.0006992038720156005,0.03665895631767231,0.8176979490861055,0,0.3482643240717658,0.20836113524382843
+53,3,0.24533105778119518,1.95,1.3829983631937168,0.0007046569273201354,0.03645246534515999,0.8174861167085029,0,0.38496310641286896,0.23781938405349204
+53,4,0.2914783590707016,2.0,1.3835493433777992,0.0007038637435213343,0.03677217243777601,0.8284891300998212,0,0.4608015803964549,0.22385908970706553
+53,5,0.2813085227883824,2.0,1.3850587773289895,0.0006993085471781296,0.03670690095084819,0.8287022133570223,0,0.4644791537465932,0.2517228709658171
+53,6,0.2721502461583576,2.0,1.3848000796524502,0.0006991297381086871,0.036502559788803235,0.8286654360687907,0,0.4764871300266583,0.2718513138256474
+53,7,0.31202993681719177,2.0,1.3852277430545454,0.0006995222849745346,0.036680871614763626,0.8287262582054455,0,0.5055421744335853,0.2993768901458587
+53,8,0.33283446092402813,2.0,1.3849228539331113,0.0006994065095985149,0.0367130353114989,0.8286829453239678,0,0.5428252311521086,0.31901456154394897
+53,9,0.34902516906324665,2.0,1.3845465329938984,0.0006992431830212292,0.036327798659285766,0.8286294669789575,0,0.5677399932350147,0.3397639058974693
+53,10,0.3938569611154265,2.0,1.3840945786273253,0.0006991009840733397,0.036629945401340507,0.8285652383208696,0,0.6299972033896211,0.33952693253192695
+53,11,0.3541219128162106,2.0,1.2945892751087826,0.0007648562428591619,0.03589756271703255,0.8154950391420872,0,0.6307533400352191,0.33940192267374314
+53,12,0.44071750849076763,1.95,1.3029819692232965,0.0007547117217035378,0.035496830897543095,0.8052586704417585,0,0.731219125122608,0.32743286147241485
+53,13,0.4587153169430393,1.95,1.2973369208750472,0.0007547319349850124,0.03572008210423204,0.8043719107223778,0,0.8046458300586281,0.32285661639862684
+53,14,0.4895007977533055,2.0,1.370708263070127,0.0006937966064445239,0.036352503353044976,0.8266538890378969,0,0.8801064246376537,0.3248607596608135
+53,15,0.4606147767831853,2.0,1.3701793419354331,0.0006927285062022902,0.036423583112391626,0.8265777767876448,0,0.9062607045827681,0.32703498316692686
+53,16,0.4953164722176899,1.95,1.3706240029095629,0.0006943710744361069,0.0363400117450305,0.8156294785467386,0,0.92522229795467,0.350758510119406
+53,17,0.5458780945576871,1.95,1.369468190774907,0.0006947247070324239,0.03618183369735045,0.8154557128163169,0,0.9835301406523659,0.3748867943224691
+53,18,0.5381642893493374,1.95,1.368450315404559,0.0006931592273757656,0.035987933904589944,0.8153020144387991,0,0.9975541559900318,0.39714208984441535
+53,19,0.5577802037395995,2.0,1.3675158947344794,0.0006936006934684291,0.036134102244150965,0.8261958980667128,0,1.0,0.3926006791319982
+53,20,0.5189315420772962,2.0,1.3668767245614692,0.0006921580611256332,0.036056184886895486,0.8261036820123223,0,1.0,0.3964384735909871
+53,21,0.5638377570908344,1.95,1.3673645988422456,0.0006942508088271767,0.03640496473758051,0.8151387952059631,0,1.0,0.37945919030278125
+53,22,0.5544992239800371,1.95,1.3718529861673496,0.000694373583534713,0.03638078323882883,0.8158142197001099,0,1.0,0.38166407993345697
+53,23,0.5621954384609881,2.0,1.3707909162468805,0.0006929005775957539,0.03606698427891424,0.8266654759067631,0,1.0,0.3739847948699599
+53,24,0.5149831453235123,2.0,1.3751085331684494,0.000693926290057948,0.03619764871730084,0.827283566604481,0,1.0,0.3832771510783744
+53,25,0.549984083415489,1.95,1.3755094683261724,0.0006951160365367652,0.0362734282427686,0.8163632360175666,0,1.0,0.36661361138496323
+53,26,0.5547739192170987,1.95,1.3742280727928653,0.0006937630633379512,0.03648588550301385,0.8161706526302944,0,1.0,0.38257973072366214
+53,27,0.5384605545350833,2.0,1.3730662630244395,0.0006924816551166441,0.03639785996360033,0.8269911474184748,0,1.0,0.3948685151169445
+53,28,0.5578829579388642,2.0,1.3727771326612503,0.0006929909844204803,0.03639998702044887,0.8269499214371496,0,1.0,0.39294319312954723
+53,29,0.5624654015973,2.0,1.3715881256960931,0.0006916940103772948,0.036329338837511,0.8267793324390696,0,1.0,0.37488467199099973
+53,30,0.5120580884701014,2.0,1.3753583868912955,0.000693000531893264,0.036181860725884904,0.8273189996394075,0,0.9935879801325119,0.38207632139032177
+53,31,0.540790312970049,1.95,1.375903002944098,0.0006940520239620989,0.03625481058035031,0.8164219061983903,0,1.0,0.4026343765668297
+53,32,0.5444679715823177,1.95,1.3304414091508017,0.0006705899152802276,0.03572500348334922,0.8095027773684919,0,1.0,0.41489323860772553
+53,33,0.5680025500202601,2.0,1.331385057871178,0.0006694596801441442,0.03544468868799831,0.8209392499091696,0,1.0,0.4266751667342004
+53,34,0.5750433617508304,2.0,1.3389163768377337,0.000680631317413904,0.03582924418341207,0.8220469325502218,0,1.0,0.41681120583610115
+53,35,0.5724861999949362,2.0,1.3352398993292256,0.0006789394998925003,0.03531086524258892,0.8215079831231212,1,1.0,0.408287333316454
+53,36,0.5214762648705893,2.0,1.3853264219395935,0.000699575543930393,0.03653772401140974,0.8287402792560937,1,1.0,0.37158754956863094
+53,37,0.5107716138890983,1.95,1.3840365634031038,0.0007029059078280211,0.0366194511060773,0.8176404456190778,1,1.0,0.33590537963032746
+53,38,0.5648799551063161,2.0,1.3842809585197484,0.000702026614947227,0.036387193997236174,0.8285925420482966,1,1.0,0.38293318368772
+53,39,0.5853551397426047,2.0,1.383955848072206,0.0007026677026675599,0.03654609734337823,0.828546544815249,1,1.0,0.45118379914201545
+53,40,0.5326680119203067,2.0,1.3853758426107645,0.0006995697947450203,0.036547380521329914,0.8287472917776257,1,1.0,0.4088933730676889
+53,41,0.545090211803291,1.95,1.3852161183919771,0.0006995905561744376,0.036749983823000855,0.8178152688100994,1,1.0,0.41696737267763656
+53,42,0.526003342683612,2.0,1.384802996283074,0.0006991748217845063,0.03670590897210941,0.8286658629706322,1,1.0,0.3866778089453735
+53,43,0.5146382735012859,2.0,1.3823901879206728,0.000704119533107498,0.03658105905046283,0.8283244300570777,1,1.0,0.348794245004286
+53,44,0.5744098397615212,2.0,1.3827060774805782,0.0007028224206727888,0.03675974221853977,0.8283689770325283,1,1.0,0.414699465871737
+53,45,0.5254128315405113,2.0,1.3848834964355448,0.0006992158763508447,0.03657622530577269,0.8286773036364403,1,1.0,0.38470943846837097
+53,46,0.5892928743674263,1.95,1.3805134094716738,0.0007037903010191637,0.036392582782717335,0.8171148036757345,1,1.0,0.46430958122475396
+53,47,0.5315404365786439,1.95,1.3848510703360277,0.00069918490526854,0.03646552255263864,0.8177607518219826,1,1.0,0.40513478859547974
+53,48,0.5908270872929142,1.9,1.3846162141321996,0.0006991598901709071,0.0367193287682414,0.8062795743323535,1,1.0,0.46942362430971407
+53,49,0.5969833708283141,1.9,1.3853204959748173,0.00069948425293106,0.03675133261338537,0.806389655655591,1,1.0,0.5232779027610468
+54,0,0.18511417520501522,1.95,1.3856458542947248,0.000700526969233655,0.036358765835065684,0.817879566864902,0,0.2004684564365993,0.18308930876791835
+54,1,0.21706615432231557,1.9,1.384903185199603,0.0006992789258570504,0.03670678982643982,0.8063244303922131,0,0.29776294252440966,0.1598699243751724
+54,2,0.2533874131218807,1.9,1.3847801520215783,0.0006991227299811804,0.03664873333037266,0.8063051673611535,0,0.40595439964821683,0.13668551087531317
+54,3,0.24803829629961313,1.9,1.3855391936351356,0.0006996798038542463,0.03643153535430096,0.8064238586755315,0,0.44672273600207835,0.16449733966260596
+54,4,0.2969775908469934,1.95,1.3853685103290458,0.0006995235629841971,0.036739908717788664,0.8178379531504734,0,0.5153585054233611,0.16944729559216312
+54,5,0.2919484385758136,1.95,1.38539081785536,0.0006996035928644545,0.036673862342689184,0.8178413003258751,0,0.5354548798362141,0.1925549554710931
+54,6,0.3570248032130529,2.0,1.3851771109085387,0.0006994068998646013,0.03647972254581038,0.8287190386508709,0,0.6332074705148419,0.17913938335705362
+54,7,0.30509013283457387,2.0,1.369476675738741,0.0006888361718633811,0.036141445887767944,0.8264759121888322,0,0.6298399065081083,0.1771805674377685
+54,8,0.34884137504996726,1.95,1.370939921779132,0.0006893832954947175,0.03626210941778367,0.8156754812573389,0,0.6652614057490929,0.2091227091677671
+54,9,0.36234499940498294,1.95,1.2940591095092806,0.0008029600855704332,0.03666036964890283,0.8038708150835421,0,0.6898797962090429,0.22131026973788587
+54,10,0.43029622463074696,2.0,1.3061780367924332,0.0007898426580697018,0.03656244980276464,0.8172398102294388,0,0.7879349576862597,0.21707413852081034
+54,11,0.46880996610922016,2.0,1.305357446543307,0.0007884977186637497,0.03640776320783838,0.8171168138959337,0,0.8950402295760611,0.20264624759598557
+54,12,0.4953523965448031,2.0,1.376284579216016,0.0006932808498658113,0.03608075236461007,0.8274513575139705,0,0.9763996133210147,0.21597517072132416
+54,13,0.48865239509037084,2.0,1.3751343263847584,0.0006922930688099233,0.0362746888507768,0.8272867853293474,0,0.9865413319502161,0.24678620770094783
+54,14,0.515058499949117,2.0,1.3751869130322898,0.0006926873444705272,0.036358921669633844,0.8272944116238824,0,1.0,0.25019499983039006
+54,15,0.5136456188148667,2.0,1.373956293527689,0.0006916151103798448,0.036504291227056264,0.8271182052463116,0,1.0,0.24548539604955572
+54,16,0.5144089742281658,2.0,1.3726177931453205,0.0006905083076552231,0.03637063559878931,0.8269264075312703,0,1.0,0.2480299140938857
+54,17,0.4751494357486935,2.0,1.371163815122081,0.000689406934079044,0.036246177826958395,0.8267179009893374,0,1.0,0.2504981191623117
+54,18,0.5184198635952089,1.95,1.371578322899555,0.0006899283958551245,0.03592117927114779,0.8157716087232336,0,1.0,0.2613995453173629
+54,19,0.4835067204735934,1.95,1.3696822472792642,0.0006884511419763695,0.03619478275523004,0.815486035569578,0,1.0,0.27835573491197796
+54,20,0.5198782534354642,1.9,1.3697952861245286,0.0006889639957751606,0.03641840090590141,0.8039509243538349,0,1.0,0.2662608447848807
+54,21,0.5226046673500401,1.9,1.3677848224416553,0.000687285852865582,0.03607289944546248,0.8036333241678787,0,1.0,0.2753488911668001
+54,22,0.521051989290454,1.95,1.3660555412057735,0.0006858905415877837,0.03582527845132436,0.8149389334813395,0,1.0,0.27017329763484654
+54,23,0.5196015119639552,2.0,1.3647572984627736,0.0006847337550080807,0.03569352646256797,0.8257968663894912,0,1.0,0.265338373213184
+54,24,0.48477922374303234,2.0,1.3634198100397172,0.0006837236996941249,0.0356646592088231,0.8256040854093114,0,1.0,0.2825974124767744
+54,25,0.525063716993998,1.95,1.3635366570958884,0.0006841403750844318,0.03583893227369868,0.8145582217009624,0,1.0,0.28354572331332645
+54,26,0.5257972971931392,1.95,1.3610188256595919,0.0006821869657193801,0.03629750255933687,0.814177003063329,0,1.0,0.2859909906437972
+54,27,0.5127393700081933,2.0,1.3589411095257178,0.0006805337434996135,0.036137776080872354,0.8249573712993704,0,1.0,0.3091312333606442
+54,28,0.5346026763097623,2.0,1.3608559879046103,0.0006823103528542023,0.036217719978502066,0.8252342253368802,0,1.0,0.2820089210325409
+54,29,0.4847585275888171,2.0,1.3662855791826858,0.0006857842043698746,0.0360516339930808,0.8260169118264274,0,1.0,0.28252842529605704
+54,30,0.5320973688309208,1.95,1.366465829943192,0.0006860591200939668,0.03576902122432252,0.8150008533881209,0,1.0,0.27365789610306945
+54,31,0.49956602450368387,1.95,1.3703158558726638,0.0006889476992103891,0.03625008583126613,0.8155815040588408,0,1.0,0.26522008167894606
+54,32,0.5009127191492293,1.9,1.3713060297048087,0.0006894460870191046,0.03648219629116528,0.8041890809378822,0,1.0,0.2697090638307643
+54,33,0.48469277491764257,1.95,1.371382395177952,0.0006896720795780845,0.03609827092368782,0.8157420842067801,0,1.0,0.2823092497254751
+54,34,0.5125000024419238,2.0,1.3719088459466242,0.0006905381503243685,0.03622667231925123,0.8268249286574122,0,1.0,0.3083333414730794
+54,35,0.5445440706898722,2.0,1.372391336768433,0.0006914878796124911,0.03627886433048743,0.8268942753257552,0,1.0,0.315146902299574
+54,36,0.519519513302953,2.0,1.376041352916686,0.0006931401950431367,0.03622663391141871,0.8274165877946761,0,1.0,0.33173171100984317
+54,37,0.49758219130002135,1.95,1.3759476442997194,0.0006934547991648985,0.0362001115564725,0.8164284178085074,0,0.9952399177346539,0.3316207473538658
+54,38,0.5468021202824316,1.9,1.3758267290476114,0.0006940306561649221,0.03652951399026273,0.8049014120463698,0,1.0,0.32267373427477164
+54,39,0.5381480139828088,1.9,1.3786291583073416,0.0006950903969872373,0.036226715087906994,0.8053414481514857,0,1.0,0.3271600466093626
+54,40,0.538383468127081,1.95,1.3775500913476715,0.0006941127533224531,0.03635896755133196,0.8166686566975047,0,1.0,0.32794489375693675
+54,41,0.5366763316304524,2.0,1.3765940745465763,0.0006933563327928517,0.036084370845116905,0.8274955629698233,0,1.0,0.3222544387681744
+54,42,0.5033303847729755,2.0,1.3755751172472712,0.0006925207642457392,0.036205778993910954,0.8273498229721388,0,1.0,0.3444346159099183
+54,43,0.529233263616071,1.95,1.3757429967271282,0.0006928677679558205,0.03619638712143538,0.8163975686819673,0,1.0,0.3641108787202366
+54,44,0.5477796226798374,1.95,1.3756343334566032,0.0006931930321226131,0.03652337244686443,0.8163813778202196,0,1.0,0.35926540893279096
+54,45,0.5471504300388751,2.0,1.3743672203329425,0.0006920299513588992,0.03633057218724214,0.8271770758912999,0,1.0,0.32383476679625034
+54,46,0.5376834291304119,2.0,1.3776849173653216,0.0006940642241838388,0.036530166508484174,0.8276514234646064,0,1.0,0.2922780971013728
+54,47,0.5266869486702399,2.0,1.3798557202319963,0.0006958756663088589,0.03654964157119038,0.8279613724893842,0,1.0,0.2889564955674661
+54,48,0.51374060570558,2.0,1.378728696827644,0.0006952935807895397,0.03637479305597944,0.8278006124769898,0,1.0,0.3124686856852667
+54,49,0.5390348197607036,2.0,1.3789265749154407,0.0006950610580344357,0.03622060322803378,0.8278287512452347,0,1.0,0.3301160658690118
+55,0,0.1657803749284855,2.0,1.3831982494445128,0.0006984892750828567,0.0365487689985844,0.8284377079649308,0,0.14972847401674746,0.21962995107262162
+55,1,0.1626280790718869,1.95,1.3855033453195216,0.000700574621675597,0.03671799909852862,0.8178583530208193,0,0.17841675316294364,0.23753792602236484
+55,2,0.1844932558637045,2.0,1.3855062872495583,0.0007003695909158104,0.036717914859961766,0.8287660313704373,0,0.21623729491393845,0.25999445966043044
+55,3,0.17093764328419894,2.0,1.3823388062053659,0.0007048671401047122,0.03649328832094136,0.8283173359273149,0,0.23730635136486114,0.25338367579418164
+55,4,0.2492232969611522,2.0,1.382955908140364,0.0007040600659039719,0.03673759122780261,0.8284048453601414,0,0.3363006172590033,0.2156768335251697
+55,5,0.26305984418894196,2.0,1.3827351480846375,0.0007047021490813304,0.03672254548200603,0.8283736445572092,0,0.40318214528677343,0.20595662024744193
+55,6,0.22465142964707274,2.0,1.3834405651372699,0.000698343563170596,0.03646582202487542,0.8284721038185721,1,0.4042979085799502,0.20977422071697552
+55,7,0.23381389947849046,1.95,1.386143253824244,0.0007003112590083691,0.03672230931614523,0.8179535798536077,1,0.4350565142854475,0.1659709792143714
+55,8,0.2879844762283454,2.0,1.386039983122308,0.0007001003631231402,0.03666957639455566,0.828841680022066,1,0.4737773731707893,0.19491175653343235
+55,9,0.25442687511659173,2.0,1.3860125413154711,0.000700003097084674,0.036388172506675115,0.8288377594083574,1,0.4934579612706156,0.15681230202781837
+55,10,0.3362911745177647,1.95,1.3860996864067001,0.0007000399335654916,0.03670260139146989,0.8179470115287649,1,0.5424987704392098,0.23097222114026933
+55,11,0.29320248287888073,1.95,1.3861018588186622,0.0007003424398181915,0.036661511871615385,0.817947425113838,1,0.5719070212872613,0.18146558121325396
+55,12,0.3544100867754542,1.9,1.3856739726073097,0.0006998527005498644,0.0365010307442609,0.8064449513751453,1,0.5939762561732908,0.22273194768712629
+55,13,0.33776122562886035,1.9,1.386103717716424,0.0007003406730134631,0.036746946830448955,0.8065121743930507,0,0.6209784381133462,0.2312328346117395
+55,14,0.40264969700956027,1.95,1.2674784627792741,0.0007876894812645006,0.036248756568761156,0.7996412759311017,0,0.7301027706396096,0.20202862917905476
+55,15,0.35421336432414874,1.95,1.2667233884835063,0.0007851235661827679,0.036173639660007896,0.7995194516818642,0,0.7296892983853098,0.20779214990008277
+55,16,0.3905252597248283,1.9,1.2778762576344624,0.0007728589341361462,0.035856702293830034,0.7890855222339509,0,0.758815159898366,0.22333065255160608
+55,17,0.4063825818383807,1.9,1.2890207615742217,0.0007614588963123787,0.03514134968223366,0.7909305515087276,0,0.7725382650444077,0.2578909194020587
+55,18,0.4714113482732712,1.95,1.3005738962119207,0.0007505916244480406,0.03580050128514783,0.8048794715927277,0,0.8671009899490302,0.24856984097886373
+55,19,0.42996056557073176,1.95,1.3828672936412945,0.0007042243846354363,0.03677238398507053,0.8174664308974807,0,0.872781183203882,0.26949364096392975
+55,20,0.5154125730949828,1.9,1.3825378694985344,0.00070501216405325,0.036499678485731074,0.8059565756511615,0,0.9636822021734346,0.2664656407520295
+55,21,0.47472076250776624,1.9,1.3829819238044214,0.0007038920997469206,0.03676999576672706,0.8060256618839442,0,0.9849401830874753,0.26914896424258683
+55,22,0.5183945468445726,1.8499999999999999,1.3825912306224637,0.0007045932749905251,0.03660429305076748,0.7939661605928291,0,1.0,0.26131515614857526
+55,23,0.5074433923782881,1.8499999999999999,1.3836161475333864,0.000703703020171484,0.03678174395902273,0.7941334788934273,0,1.0,0.29147797459429364
+55,24,0.5268029849501336,1.9,1.3831346121085861,0.000704219467154845,0.03644110948248553,0.8060496356814637,0,1.0,0.28934328316711166
+55,25,0.4890826143141135,1.95,1.3840300988952672,0.000703142278336011,0.036418430578642545,0.8176395522176982,0,1.0,0.2969420477137116
+55,26,0.49004184272353946,1.9,1.3837423043168546,0.0007036776753369968,0.03642462195296401,0.8061444513983107,0,1.0,0.3001394757451314
+55,27,0.5369417720791682,1.95,1.3832559318184878,0.0007043199438449179,0.03677361074818731,0.8175244429244479,0,1.0,0.28980590693056035
+55,28,0.529096847571364,1.95,1.3839776542668378,0.0007032043154601227,0.03678087137296079,0.817631750825807,0,1.0,0.2636561585712131
+55,29,0.5065596602241311,2.0,1.3843240856672845,0.0007023151291426997,0.03646916863562834,0.8285987491295859,0,1.0,0.2885322007471036
+55,30,0.5121057378925135,1.95,1.384041466582877,0.0007027521588722975,0.036578028424120036,0.8176411308551411,0,1.0,0.30701912630837813
+55,31,0.5165860893164461,2.0,1.3835623407989432,0.0007032690453790989,0.03672884329833975,0.8284908079533234,0,1.0,0.3219536310548205
+55,32,0.5419582770903281,2.0,1.3831156579454122,0.0007036334661306106,0.03677296162889522,0.8284274313748959,0,1.0,0.30652759030109333
+55,33,0.5199380039895874,2.0,1.3834043434963483,0.0007025232693570504,0.03649035100620103,0.8284681443903399,0,1.0,0.3331266799652913
+55,34,0.5348974871360451,1.95,1.3828434310120186,0.0007028895013543737,0.03652075439988518,0.8174624718309569,0,1.0,0.31632495712015013
+55,35,0.5244302830472316,2.0,1.3839303137795347,0.0007021791648734903,0.036475760190295,0.8285427786525532,0,1.0,0.34810094349077203
+55,36,0.541929283116067,2.0,1.3833816565829984,0.0007023813063269308,0.036583836025066,0.8284648800100858,0,1.0,0.3397642770535567
+55,37,0.5447885377920079,2.0,1.3842184757517775,0.0007016316202733209,0.0366006342058028,0.8285835554252688,0,1.0,0.3492951259733594
+55,38,0.5049980498623938,2.0,1.3846935694011755,0.0007009744786712597,0.03675998626363434,0.8286508371821278,0,1.0,0.34999349954131254
+55,39,0.5459986795799564,1.95,1.3846604388933452,0.0007017384049827375,0.03655313724045809,0.8177331018358939,0,1.0,0.35332893193318776
+55,40,0.5073992703319861,1.95,1.384880873209224,0.0007010781918335778,0.036703687739283224,0.8177657575400747,0,1.0,0.3579975677732868
+55,41,0.5512787355384301,1.9,1.3847529292756198,0.0007016899066164536,0.0364570154310425,0.806301717635718,0,1.0,0.37092911846143356
+55,42,0.5598815167653229,1.9,1.3848068945921783,0.0007010101967691904,0.03640848466508868,0.8063099334532591,0,1.0,0.3662717225510764
+55,43,0.538819934228589,1.95,1.3855060076384031,0.0007007065918843253,0.036720484679539166,0.8178587889337539,1,1.0,0.39606644742862973
+55,44,0.5858127248373726,1.9,1.3774803105199602,0.0007045196576062217,0.03627059515024019,0.8051642424532701,1,1.0,0.45270908279124167
+55,45,0.539934860667364,1.9,1.384232187759695,0.0006990767385272753,0.03642866771757784,0.8062195591327241,1,1.0,0.4331162022245464
+55,46,0.5827796503792054,1.8499999999999999,1.3837953183444964,0.0006985563153801236,0.03666993888983919,0.7941610865278738,1,1.0,0.4759321679306846
+55,47,0.5652504272494825,1.8499999999999999,1.3846087788556896,0.0006989854387588514,0.03671735282794505,0.7942941707222485,1,1.0,0.4841680908316081
+55,48,0.5692313804302762,1.9,1.3841444427894605,0.000698723861047994,0.03657937234816116,0.8062057401386514,1,1.0,0.49743793476758735
+55,49,0.6203263306735951,1.95,1.3835971708541888,0.0006984510189719139,0.03669657960575655,0.8175735921848702,1,1.0,0.56775443557865
+56,0,0.19129258948569433,1.95,1.383140343634993,0.0006983228320281943,0.03654563341964549,0.8175054096359873,1,0.15234708800099803,0.26784584761765046
+56,1,0.23359462996837904,1.9,1.3828205211960403,0.000698187772810548,0.03662820926353975,0.8059986417089744,0,0.21320012667218388,0.327715264331685
+56,2,0.2237295801809491,1.9,1.3808448024260986,0.0007060209620336063,0.0367183635072966,0.8056919746149167,0,0.25914343471850443,0.33357402097849115
+56,3,0.24393672027679025,1.95,1.381651516895942,0.0007048859832486231,0.03652317988996412,0.8172851462603599,0,0.2992464668475625,0.3474604451258842
+56,4,0.23138665116542323,1.95,1.3823123017380279,0.0007037580825511698,0.0367426940838509,0.8173834639453456,0,0.31267667380952197,0.3543866054720481
+56,5,0.31030150395721223,2.0,1.3831197823723032,0.0007029900331280467,0.03665625914871877,0.828427834692435,0,0.39248022898557566,0.3443647078766066
+56,6,0.29167444496386746,2.0,1.3830456380736953,0.0007037577415343129,0.036299912807973345,0.8284175141714858,0,0.41336361253163867,0.3544299998373733
+56,7,0.28216097913962285,2.0,1.3829690001109831,0.0006981826241713206,0.03657517336856185,0.8284050354273412,0,0.4308825095430063,0.36602658440806773
+56,8,0.3470963661625022,2.0,1.3837441324665916,0.00069848529124819,0.03665352018357225,0.8285152785522419,0,0.4976684952665872,0.3600965601862246
+56,9,0.3453712126611654,2.0,1.3834269288311811,0.0006983451779709215,0.03643765374439529,0.8284701664668791,0,0.5240414210969401,0.38584881407463106
+56,10,0.38826860183302153,2.0,1.383102893092018,0.0006980445517367887,0.03662160933664367,0.8284240282448924,0,0.5745328016163851,0.39485160395489177
+56,11,0.3585200315534069,2.0,1.3827040021560895,0.0006978443117917172,0.03664137102239458,0.828367266455509,0,0.5758074807212872,0.4273234642163067
+56,12,0.3626278200280859,1.95,1.385963208906448,0.0007003533919816263,0.036438580228160405,0.8179267811856499,0,0.5797715560773142,0.4357306586572008
+56,13,0.3689158909928133,2.0,1.3858113204842404,0.0007004632019925743,0.03677856111953896,0.8288093417432095,0,0.5938534685600063,0.4379150118960359
+56,14,0.43095892275132885,2.0,1.3856157401919589,0.0007005679248200972,0.03675744411711942,0.8287816198838224,0,0.6669324564364202,0.41395313392253597
+56,15,0.42686408308693147,2.0,1.3851136237734791,0.0007008621799479294,0.036459151270441026,0.8287104400108065,0,0.698753464626597,0.4245423241209754
+56,16,0.4917617013173758,2.0,1.3850908901536045,0.0007003436076591313,0.03667137409524572,0.8287070657375811,0,0.8067421621580279,0.39688278818054895
+56,17,0.44202761455049167,2.0,1.3818309364822428,0.0006988494296865384,0.036616067584665304,0.8282433887779138,0,0.8011649793121001,0.40520540941883887
+56,18,0.52767491666619,1.95,1.3498483653164965,0.0006853995907523073,0.03566273319337167,0.8124820373556793,0,0.9165984650612384,0.3701184354723154
+56,19,0.48563444425615127,1.95,1.382637311254629,0.0007034237952371889,0.03676553486571239,0.817431872600077,0,0.9248738698334913,0.3856163210758492
+56,20,0.5518290309094159,1.9,1.3827453617002852,0.0007023360167981527,0.03655085443537206,0.8059881864721344,0,0.9990742576563065,0.37399775948964403
+56,21,0.538799404525703,1.9,1.3820188664374502,0.0007028157601676511,0.03672313554378215,0.8058747083628338,0,1.0,0.3959980150856762
+56,22,0.5423886723511964,1.95,1.3834871588494195,0.0007020732980484972,0.036489081013200045,0.8175582642268844,0,1.0,0.4079622411706545
+56,23,0.5641174375337188,2.0,1.3242448602057648,0.0006733922707457858,0.034877870192607865,0.8198884103490577,0,1.0,0.3803914584457292
+56,24,0.5118477910508425,2.0,1.3806152433348027,0.0007034203336677916,0.03642040087021295,0.8280716812928461,0,1.0,0.3728259701694752
+56,25,0.5512993029585626,1.95,1.3805200722832014,0.000702075759915579,0.036502381193959425,0.817115286917932,0,1.0,0.3709976765285417
+56,26,0.5194952335131345,1.95,1.3796401035611525,0.0007025710890910949,0.036441269949223795,0.8169838976718801,0,1.0,0.39831744504378186
+56,27,0.5616949332863141,1.9,1.3794047002587273,0.0007011614594376922,0.036533215741207235,0.8054649010076813,0,1.0,0.4056497776210471
+56,28,0.5245323761878832,1.9,1.2914182619720729,0.0006541316645623435,0.033960922794508894,0.7912912764097669,0,1.0,0.4151079206262772
+56,29,0.5707754035223388,1.8499999999999999,1.3024580218243997,0.0006527108949479816,0.03439221496699972,0.7805309963668708,0,1.0,0.4025846784077957
+56,30,0.5624569341720773,1.8499999999999999,1.2946097682260862,0.0006474452084426925,0.0348521439362005,0.7791818004162361,0,1.0,0.40818978057359084
+56,31,0.5598899520140652,1.9,1.3037298151441747,0.0006661682383961591,0.03483119271175797,0.793321177895086,0,1.0,0.39963317338021703
+56,32,0.5474311664660084,1.95,1.3813201384512253,0.0006993959204338372,0.03663508115829275,0.8172340162549899,0,1.0,0.42477055488669474
+56,33,0.5731514201304846,2.0,1.319701689392831,0.0007058926406218617,0.03581809467638334,0.8192261651135442,0,1.0,0.41050473376828156
+56,34,0.5498182778425382,2.0,1.316893424359388,0.0007042371509428924,0.03588286813967084,0.8188094119591447,0,1.0,0.43272759280846057
+56,35,0.5747617424650318,1.95,1.3215145543222189,0.000699156813211575,0.03540315619400863,0.8081312389944059,0,1.0,0.4158724748834391
+56,36,0.5660550833702653,1.95,1.3152692408106037,0.0006967720518985472,0.03521817617479151,0.8071602647113287,1,1.0,0.42018361123421755
+56,37,0.5475298813219094,2.0,1.3820904446717706,0.0006972647761617366,0.036550049009303545,0.8282798515249395,1,1.0,0.42509960440636446
+56,38,0.5488806367716195,2.0,1.3813878734740181,0.0006967507701661961,0.036589459743429795,0.8281797538473846,1,1.0,0.4296021225720648
+56,39,0.5798342136124028,2.0,1.3804315300015317,0.0006960962892963336,0.036346673270288135,0.8280434389432946,1,1.0,0.46611404537467616
+56,40,0.5811554578950495,2.0,1.3811447066889693,0.0006966103948828175,0.036410528329000914,0.8281451089702269,1,1.0,0.47051819298349834
+56,41,0.6128806150509661,2.0,1.3814158632343219,0.0006970435332562001,0.03660817359566477,0.8281838200167735,0,1.0,0.5429353835032202
+56,42,0.6050747477048483,2.0,1.3134791414999551,0.0006852090490946066,0.03473546297783707,0.8182966571581761,0,1.0,0.5169158256828272
+56,43,0.5978433783157452,2.0,1.3083756216895996,0.0006824892704824594,0.03466450846802662,0.8175357844512042,0,1.0,0.49281126105248385
+56,44,0.5860725544536625,2.0,1.3031448512094,0.0006797823642514584,0.035054143262434875,0.8167533984032546,0,1.0,0.4869085148455414
+56,45,0.5910622285324768,2.0,1.308617182475924,0.0006982318860238839,0.03568718403757175,0.8175765114742923,0,1.0,0.470207428441589
+56,46,0.5668553834655696,2.0,1.3035514899452445,0.0006958078292161888,0.03559538060669979,0.8168190467709965,0,1.0,0.48951794488523176
+56,47,0.5885178803151543,1.95,1.308157322869782,0.0006912053243514912,0.035156344241677434,0.8060491170403349,0,1.0,0.495059601050514
+56,48,0.5526677956649533,1.95,1.310567362857666,0.0007078185186085222,0.035391330065882035,0.8064307968998208,0,1.0,0.5088926522165107
+56,49,0.5942645123551431,1.9,1.3222530273372002,0.0007014220138969374,0.03595099331869512,0.7963532301773371,0,1.0,0.5142150411838103
+57,0,0.06462618003147819,1.9,1.3853861083290469,0.0006999131803215762,0.03641916269443991,0.8064000331308095,0,0.16563799509826826,0.19456993997390296
+57,1,0.02483347906339743,1.8499999999999999,1.3862507037671699,0.0007001578425599109,0.03674768746643227,0.7945626994977328,0,0.1654924014069184,0.19545506166876694
+57,2,0.17336746151521118,1.7999999999999998,1.3862518895615665,0.0007001548420507639,0.03668334707592995,0.7820498637797633,0,0.21675972742791588,0.22221190181348277
+57,3,0.20195581091196405,1.7999999999999998,1.3834653093171903,0.0007022799056217891,0.03658758625542824,0.7815752493753223,0,0.2714451154736888,0.24459254907496172
+57,4,0.18255434788619557,1.7999999999999998,1.383545150720352,0.0007016613887383305,0.03674056139652939,0.7815886680530266,0,0.2741772461207018,0.24294483145971618
+57,5,0.2694943796931014,1.8499999999999999,1.384270484331921,0.0007013274622034225,0.036405759032771705,0.7942396564407915,0,0.3769094185049314,0.2291020409704295
+57,6,0.23471521708252052,1.8499999999999999,1.3842385690391157,0.0007018094535267488,0.03659800584722807,0.7942345982380057,0,0.39860704851091,0.25090799226052174
+57,7,0.23683462004321493,1.7999999999999998,1.3848310426138013,0.0007014398635059125,0.03676445416285617,0.7818080247950476,0,0.40509934304849343,0.24931627607939177
+57,8,0.24315360188116125,1.8499999999999999,1.3811736297879735,0.0006972523240883111,0.03642750540208019,0.7937317635509593,0,0.4111613019441348,0.26229693701169104
+57,9,0.2867786502117685,1.9,1.3823330960780025,0.000697629039447879,0.036613361081584306,0.8059222394100212,0,0.447733611939903,0.2922840181193575
+57,10,0.3401340782513523,1.9,1.3821146975113034,0.0006974058685999878,0.03666110073066152,0.8058880072396817,0,0.526329743161984,0.2986739366218623
+57,11,0.2978250293605186,1.9,1.3817098398784915,0.0006972033334377778,0.03643406666937769,0.8058246031118954,0,0.5185374444828609,0.301366838557914
+57,12,0.380203625040262,1.8499999999999999,1.3826003253479966,0.0006976377296093661,0.03654303969000345,0.7939653727119226,0,0.6273863025541571,0.2641636800619974
+57,13,0.40209281830461546,1.8499999999999999,1.2563286602376569,0.0007315516458238224,0.03540790153183796,0.7725544747562861,0,0.6984201981586267,0.27574913013721597
+57,14,0.4329367381804084,1.8499999999999999,1.2592751328928284,0.0007560971073336755,0.03573716715299506,0.7730804075960865,0,0.7818719131876325,0.26729324301785123
+57,15,0.463287528112913,1.8499999999999999,1.2608202841167395,0.0007784938512061957,0.03549468629126036,0.7733592058635527,0,0.846629245006619,0.2821194337008848
+57,16,0.49708443881283604,1.8499999999999999,1.3782159218615027,0.0006995488412029707,0.03652340094223093,0.7932478553031884,0,0.9231653310709097,0.2927276879482404
+57,17,0.4635527279595206,1.8499999999999999,1.3778195373547466,0.0007002025414716745,0.036489869084249435,0.7931830529007895,0,0.9357386527932795,0.2975242228073627
+57,18,0.501594421086001,1.7999999999999998,1.377376530388201,0.0006991728127302737,0.03650542613694092,0.7805329547575828,0,0.9724040042615574,0.3087760646045938
+57,19,0.5150622858027508,1.7999999999999998,1.3798946542418538,0.0006990583890462151,0.036559388622827746,0.7809639686724885,0,0.9897617234774807,0.3305253213725283
+57,20,0.5215857111152935,1.8499999999999999,1.382001184441333,0.0006990764361541305,0.03656917013741938,0.7938678162332566,0,1.0,0.3386190370509782
+57,21,0.542638153191284,1.9,1.3836312960716801,0.000699241244764138,0.036545294872884625,0.8061257162219273,0,1.0,0.34212717730427966
+57,22,0.540923703153318,1.9,1.3833830089887285,0.0006994876496948816,0.03645119082885716,0.8060869862492928,0,1.0,0.3364123438443929
+57,23,0.5305808219337108,1.95,1.382981824395676,0.0006996670303491355,0.03651933176520194,0.8174821600332282,0,1.0,0.36860273977903607
+57,24,0.5392113261958846,2.0,1.3842665838126045,0.0006996849679732405,0.03659380392399209,0.8285898352817433,0,1.0,0.3973710873196154
+57,25,0.5643699714019408,2.0,1.3851198003043013,0.000699726397092488,0.03660171248962368,0.8287109943177315,0,1.0,0.3812332380064692
+57,26,0.5545555548852724,2.0,1.3851819100534002,0.0007001707023370665,0.036765685008542916,0.8287199366918722,0,1.0,0.3818518496175747
+57,27,0.5537366252302279,2.0,1.3848418537792864,0.0007002852022210412,0.036515704047721455,0.8286716951315057,0,1.0,0.3457887507674264
+57,28,0.5462205956731121,2.0,1.3847755525251335,0.000700839290959573,0.036628732265422945,0.8286624391515417,0,1.0,0.3540686522437068
+57,29,0.5106181577083028,2.0,1.384380889548189,0.0007010767354821315,0.03674543539546961,0.828606464681166,0,1.0,0.36872719236100915
+57,30,0.5416691849194036,1.95,1.384293968654697,0.0007003986860280292,0.03646929650457424,0.8176780752193011,0,1.0,0.4055639497313454
+57,31,0.5637850756036057,1.95,1.3115168924676273,0.0006695834122233395,0.03522078806007452,0.8065670451578087,0,1.0,0.3792835853453522
+57,32,0.5152758708534217,1.95,1.3821386880080893,0.0007007764680279999,0.0363732057197079,0.8173566573713318,0,1.0,0.38425290284473906
+57,33,0.5437941261499079,1.9,1.3818278816795073,0.0006998707402976533,0.03661855391835511,0.8058439072842876,0,1.0,0.4126470871663595
+57,34,0.5488415213614002,1.9,1.2806776881037834,0.0006503776997212091,0.03359096232029755,0.7895106796415762,0,1.0,0.42947173787133386
+57,35,0.5386262924439716,1.95,1.2858056956250394,0.0006500600995672376,0.03440051314286642,0.8025178370973586,0,1.0,0.46208764147990544
+57,36,0.5823213775723511,2.0,1.2998359394745465,0.0006504113219345304,0.03430944734254196,0.8162488330496483,0,1.0,0.47440459190783685
+57,37,0.5672723243349477,2.0,1.3106541543431367,0.0006691844341833837,0.034541532009923846,0.8178714659355094,0,1.0,0.49090774778315893
+57,38,0.5547429295111387,2.0,1.3140136117546626,0.0006673560738458082,0.03502767560682157,0.8183708052720812,0,1.0,0.5158097650371288
+57,39,0.5971668474414871,2.0,1.3231011544905187,0.000666088478027714,0.035556602883188695,0.8197172972130137,0,1.0,0.49055615813829023
+57,40,0.5912658345424489,2.0,1.3184051070742369,0.000663238867765453,0.03540975908366202,0.8190214243243124,0,1.0,0.47088611514149614
+57,41,0.581928049958155,2.0,1.3135736235101914,0.0006601934537128529,0.034877838818737635,0.8183032663342408,0,1.0,0.4730934998605162
+57,42,0.5880450447196819,2.0,1.3210678222476657,0.0006756177351439494,0.034643662754268716,0.819419434407155,0,1.0,0.46015014906560586
+57,43,0.5638782098351063,2.0,1.3163240473505855,0.0006728824101507184,0.03459879783287445,0.8187156163560821,0,1.0,0.47959403278368734
+57,44,0.5859686465314338,1.95,1.31960004902826,0.0006710161917519617,0.035175930103097816,0.8078254728320278,0,1.0,0.48656215510477924
+57,45,0.5729586007230856,1.95,1.3240995358285355,0.0006847329466716684,0.03541438622564383,0.8085272685350713,0,1.0,0.5098620024102851
+57,46,0.5556412350938662,2.0,1.3262604127341713,0.0006816268205672935,0.03495562576966865,0.8201882868087764,0,1.0,0.5188041169795538
+57,47,0.5980166666687111,2.0,1.3364720671664096,0.0006800991380361344,0.035494643675920784,0.821688927359673,0,1.0,0.49338888889570354
+57,48,0.5514171992577257,2.0,1.3324305666009573,0.0006780039345252417,0.03492465603681415,0.8210953963106065,0,1.0,0.5047239975257524
+57,49,0.5912162414710751,1.95,1.3395019612868428,0.0006767245506513252,0.035137018854973535,0.8108979519822102,0,1.0,0.504054138236917
+58,0,0.0189139064528447,1.95,1.3818403389548584,0.0006977820046011373,0.03656367000711577,0.8173112199632824,1,0.14678227813632763,0.16733665066104553
+58,1,0.16807720885810076,1.9,1.3857607010357738,0.0007007514137151939,0.03673059849516631,0.8064587691330198,1,0.1670964368901166,0.20412878034018042
+58,2,0.16255518446086661,1.9,1.3816411051897022,0.0006977193179686804,0.036523328980910694,0.8058140093591635,1,0.19072657567269194,0.2208818473059661
+58,3,0.22551034730099329,1.95,1.3822953791518233,0.0006988105110982615,0.03632137963547873,0.817379460889543,1,0.23209048957594747,0.2755805049020477
+58,4,0.2717212151458267,1.95,1.3860398095918653,0.0007000165465512195,0.036746261750514424,0.8179380881552425,1,0.28920847445698195,0.35345941787677976
+58,5,0.2824420563812126,1.95,1.3859770320603118,0.0007000312999950217,0.036701894452384885,0.8179287438233847,1,0.32435032481346837,0.3756730881860843
+58,6,0.2714122018815003,2.0,1.3858821887535782,0.0006999071677058988,0.03641808188846579,0.8288192388340635,1,0.3376761178356757,0.3878058491574332
+58,7,0.3410833303996162,2.0,1.3859070727870004,0.0006999981474014511,0.03670903795704032,0.8288227951153784,1,0.38620892409623453,0.45533253587040806
+58,8,0.32362283281237314,2.0,1.3854859716166845,0.0007008456657279579,0.036743133175785085,0.8287632834249473,1,0.4114557369998823,0.4634684600414008
+58,9,0.34005466308426724,2.0,1.3856332484999458,0.0006997699053378104,0.03638761254382182,0.8287838778650942,1,0.44383082211843866,0.4750744474563058
+58,10,0.33794333874099863,2.0,1.38540160237083,0.0006996742520441845,0.036671602556294196,0.8287509773559781,1,0.485886077798403,0.44529635873879136
+58,11,0.3876467957067062,2.0,1.3852744342086347,0.0006995070175277252,0.03673855225214483,0.828732881067688,1,0.5085773995947911,0.48071945289596574
+58,12,0.3727265680527677,2.0,1.385536395104736,0.0006996390701476539,0.03644006290563105,0.8287700966844522,1,0.5066871606253649,0.5001723460087392
+58,13,0.3892167890608189,2.0,1.38528077505917,0.0006994724348363927,0.03665490351179174,0.8287337712355588,1,0.5363709908242004,0.5155613091037959
+58,14,0.4584147854757276,2.0,1.3849416806753627,0.0006992921847086904,0.036715899128345816,0.8286855856329198,1,0.5825206691247904,0.5846883927527049
+58,15,0.4291603027426558,2.0,1.385350439640683,0.0006998115893007998,0.03639963957364902,0.8287437550600723,1,0.6249510396443548,0.5639329562830462
+58,16,0.4355779519250794,1.95,1.3860571843022242,0.0007003816963638849,0.036690547717539844,0.8179407842540216,1,0.6657247322474691,0.5309601967536394
+58,17,0.4680825683535932,2.0,1.3859682011343049,0.0007006182395838592,0.036578235246645545,0.828831643504855,1,0.705173701975135,0.5533769585451305
+58,18,0.5351067699002375,2.0,1.3860884500282034,0.0007003675499600041,0.03645361205206617,0.8288486313859009,1,0.7532575749281745,0.6126791330965591
+58,19,0.5163392972908268,2.0,1.3798392965060324,0.0007085433353693993,0.036614602390047046,0.827962641867635,1,0.7813989108207076,0.612599109875146
+58,20,0.5526877600575668,2.0,1.3805967531794505,0.0007066648002695884,0.036762259497186554,0.8280699726844597,1,0.8102703270097452,0.6285987641788954
+58,21,0.529277231124409,2.0,1.3845226687057373,0.0006994656861068185,0.03643165131576628,0.8286261413527102,1,0.8527521194964592,0.593921277752751
+58,22,0.613825635593939,1.95,1.3852020669303937,0.0007009586238025075,0.03662786658903887,0.8178135828944737,1,0.9211234688898968,0.6512541601266006
+58,23,0.590380732089953,1.95,1.3848870573875367,0.0006994632078183396,0.03647865459911148,0.8177661977906223,1,0.9366299950986993,0.6524291135015776
+58,24,0.6020648591630883,1.9,1.3842630050062408,0.000699314928215795,0.036615724888738724,0.8062244480759592,1,0.9640310316634028,0.6548414883257571
+58,25,0.6626576027122653,1.95,1.3833777707327033,0.000699072416265557,0.036361138164150444,0.8175410524168212,1,1.0,0.7088586757075508
+58,26,0.634420830331159,1.95,1.3839345709965434,0.000700441942976976,0.03640810600737028,0.8176245027693021,1,1.0,0.7147361011038633
+58,27,0.61643795986539,1.9,1.382989921639111,0.0007004574816440472,0.03657085595162694,0.8060258383383312,1,1.0,0.6881265328846331
+58,28,0.6602544768797116,1.95,1.3838775746252658,0.00069993247883352,0.036530032670802945,0.8176158516773366,1,1.0,0.7341815895990386
+58,29,0.6249589463546319,1.95,1.3840442125567942,0.0006992940121275374,0.036501862647821605,0.817640509042521,1,1.0,0.7165298211821064
+58,30,0.6371531754970543,1.9,1.3846234126788939,0.0006991945575348366,0.03664987878586886,0.8062807095207384,1,1.0,0.7238439183235144
+58,31,0.6631330793158938,1.95,1.3837213650739202,0.0006988502767848998,0.03633279599614869,0.8175922337380745,1,1.0,0.7437769310529793
+58,32,0.6879513002538221,1.95,1.3837368759817328,0.0006984789080845362,0.03633612772994268,0.8175944361813947,1,1.0,0.7931710008460735
+58,33,0.6579985002405441,1.95,1.3845194929706848,0.0006995298221094022,0.03665628719981105,0.8177114350954409,1,1.0,0.7933283341351468
+58,34,0.6393356616026604,1.9,1.3836617222956258,0.0006993489961994533,0.03666421354857815,0.8061305050819708,1,1.0,0.7644522053422014
+58,35,0.6956922579528658,1.95,1.3842625968850368,0.0006991176058347027,0.036718213785175535,0.8176730162727388,1,1.0,0.8189741931762193
+58,36,0.7123414582652486,1.95,1.3745913911543552,0.0006978397211614036,0.03647198801830743,0.81622638025307,1,1.0,0.8744715275508286
+58,37,0.6874137196646992,2.0,1.3725944314823004,0.0006977101228784256,0.036398535411390785,0.8269251254617404,1,1.0,0.891379065548997
+58,38,0.6709087754652528,1.95,1.373814359117434,0.0007013813202274874,0.036533439887615454,0.8161108591312836,1,1.0,0.8696959182175095
+58,39,0.7317766985196013,2.0,1.3730514204337507,0.000698998505799998,0.036330699030113926,0.8269908886082451,1,1.0,0.9392556617320038
+58,40,0.689187073599948,2.0,1.3714272388309836,0.0006990951662044959,0.03627431261365769,0.8267584099018614,1,1.0,0.9306235786664934
+58,41,0.7305646476266554,1.95,1.3706878608117672,0.0006966770893041005,0.03626224330318936,0.8156397746978581,1,1.0,0.9685488254221846
+58,42,0.75,1.95,1.3747308985092903,0.0006962559645452208,0.03649866276474471,0.8162468304670906,1,1.0,1.0
+58,43,0.72,2.0,1.372729922085573,0.0006959150352465779,0.036293145467800374,0.8269440022320068,1,1.0,1.0
+58,44,0.74,1.95,1.3741982935607941,0.0006995902919677215,0.03654605252737632,0.8161679332438512,1,1.0,1.0
+58,45,0.72,1.95,1.3775758642832754,0.0006987399358786476,0.03649388399292508,0.8166739009604893,1,1.0,1.0
+58,46,0.75,1.9,1.378169440115442,0.0007015463675759271,0.03649315913372715,0.8052713942985086,1,1.0,1.0
+58,47,0.7049785846189328,1.9,1.3761282984532932,0.0007018225623041793,0.036444484650789075,0.8049512114268027,1,1.0,0.983261948729776
+58,48,0.75,1.8499999999999999,1.3758991848909203,0.000699507950252805,0.03634845159201998,0.7928676256739223,1,1.0,1.0
+58,49,0.6984964865897766,1.8499999999999999,1.373614445696303,0.0006995285509244257,0.03641870394458163,0.7924921619618107,1,1.0,0.9616549552992553
+59,0,0.18580198846744755,1.7999999999999998,1.3853261831670949,0.0006997944173032498,0.036418871647596995,0.781891914964777,0,0.21274264976019902,0.1690164285445597
+59,1,0.2023283167644901,1.7499999999999998,1.384566691871821,0.0006989736818439425,0.036716266732232834,0.768696343003961,0,0.27935147512537717,0.16862575571446403
+59,2,0.24747280498271074,1.7999999999999998,1.3847343783403216,0.0006990963385599102,0.03657380718178694,0.7817907353630655,0,0.37636882296646323,0.1564175859870848
+59,3,0.28398228224640754,1.7999999999999998,1.3846145090269182,0.0006990840349525501,0.036509390103690635,0.7817702814907845,0,0.4704253398357937,0.15270715437363339
+59,4,0.3026003589209755,1.7999999999999998,1.3847035939328705,0.0006994994355189973,0.03672440712924947,0.7817856212170601,0,0.530714182802608,0.16771561933310777
+59,5,0.27903914216765024,1.8499999999999999,1.384728750504777,0.0006997835732880515,0.036455996610480546,0.7943140331081636,0,0.546903872060362,0.20092531114501821
+59,6,0.363279533936045,1.7999999999999998,1.3833712589496887,0.0007010940939416406,0.036571576206573475,0.7815587882117057,0,0.6570055179525198,0.16825775585012356
+59,7,0.32588651226508397,1.7999999999999998,1.3663266152512585,0.0006873532466537002,0.03615838530652715,0.7786301493291377,0,0.6736960894118664,0.1880269216677913
+59,8,0.3639525896620165,1.7499999999999998,1.3678792974352598,0.0006892627065369485,0.036350113121441964,0.7657125078246048,0,0.7033184991009135,0.20875063340550348
+59,9,0.38501783654593447,1.7499999999999998,1.2517807879390357,0.0008464915668036827,0.036268904172449726,0.7443065609513284,0,0.7342482655400047,0.23772843443310865
+59,10,0.44123823204353135,1.7499999999999998,1.265793535786991,0.0008297739385393539,0.035630534712846045,0.7469579258821363,0,0.8185105382078661,0.2461133892012832
+59,11,0.4644372513328678,1.7499999999999998,1.3791824823435956,0.0007000614413434279,0.03656986097630048,0.767738021564744,0,0.8876175125295513,0.23130082107015748
+59,12,0.5018281853999833,1.7499999999999998,1.3786739670836912,0.0007004580694687641,0.036520124239943344,0.7676474741225637,0,0.9755694178039392,0.23866806092802514
+59,13,0.5141569607994415,1.7499999999999998,1.3780145524678302,0.0007008225494311075,0.036422176413915555,0.7675299670560607,0,1.0,0.21385653599813828
+59,14,0.5030333114936638,1.7999999999999998,1.3778394016246591,0.0007021803119694795,0.036575505246736015,0.7806132649957085,0,1.0,0.2101110383122126
+59,15,0.4689526891800931,1.8499999999999999,1.3773588364802132,0.000702613694062655,0.03640688805114388,0.7931082588993037,0,1.0,0.2298422972669769
+59,16,0.5194165539645624,1.7999999999999998,1.3772373121235761,0.0007011286587926694,0.036484761648497926,0.7805097756912576,0,1.0,0.23138851321520798
+59,17,0.4692870881410676,1.7999999999999998,1.3767627049579467,0.0007025135553353166,0.036613748789751197,0.7804289325197328,0,1.0,0.2309569604702253
+59,18,0.5165090966062402,1.7499999999999998,1.3763715377237458,0.0007011166189365616,0.03629624325392507,0.7672367838687281,0,1.0,0.22169698868746723
+59,19,0.4682584205774787,1.7499999999999998,1.3757751196958883,0.0007023276788622494,0.03653499038264158,0.7671306885675049,0,1.0,0.22752806859159552
+59,20,0.4911357734754754,1.6999999999999997,1.3753524726778943,0.0007009999233765628,0.036517687731999524,0.7533862082925342,0,1.0,0.2371192449182512
+59,21,0.49734320459863013,1.6999999999999997,1.378233586648623,0.0007004849087511852,0.036559159077450526,0.75392092413419,0,1.0,0.25781068199543355
+59,22,0.48407106724363985,1.7499999999999998,1.3806925886733885,0.0007001845781792283,0.036363394570028615,0.7680072332162726,0,1.0,0.2802368908121328
+59,23,0.4881068096434298,1.7999999999999998,1.380443507220472,0.0006992689888850024,0.03643965393972322,0.7810579126001664,0,1.0,0.2936893654780993
+59,24,0.5268407712921382,1.8499999999999999,1.3801173495476606,0.0006984403897701292,0.03649294911676643,0.7935591632150943,0,1.0,0.2894692376404607
+59,25,0.5141074232963364,1.8499999999999999,1.3798406806722987,0.0006988762553776494,0.03650591668934544,0.7935139776366056,0,1.0,0.3136914109877878
+59,26,0.49418651659605606,1.9,1.3818989852411458,0.0006989379768535282,0.036606452705037026,0.8058547400034903,0,1.0,0.31395505532018675
+59,27,0.5423516919285574,1.95,1.3815601616837918,0.0006982456209707997,0.03657919087825607,0.8172695204429511,0,1.0,0.30783897309519126
+59,28,0.5160381615373595,1.95,1.381606552577708,0.0006989252130441651,0.03662444101127098,0.8172766513340314,0,1.0,0.32012720512453174
+59,29,0.5241162585411416,1.9,1.38323634008411,0.0006990709724245161,0.03650493854322791,0.8060639290185687,0,1.0,0.34705419513713875
+59,30,0.551069743973182,1.95,1.3843692436429471,0.0006992533074118513,0.03665458919634816,0.8176889555029399,0,1.0,0.33689914657727316
+59,31,0.5274069886367181,1.95,1.384310822779855,0.0006995844851039561,0.0367092606225543,0.8176803450689055,0,1.0,0.35802329545572703
+59,32,0.5391504958663238,1.9,1.3851795252251504,0.0006997009062351792,0.03636280885105949,0.806367713249256,0,1.0,0.39716831955441245
+59,33,0.5622897999623683,1.95,1.3857371230972007,0.0006998557517604605,0.03663361224168822,0.8178929612465453,0,1.0,0.37429933320789405
+59,34,0.5583408177110495,1.95,1.385619253855617,0.0006999268503649265,0.03671773451910579,0.8178754258457381,0,1.0,0.36113605903683127
+59,35,0.5098522146386778,2.0,1.3853818681429146,0.0006999904127567029,0.03642397952027177,0.8287482663429968,0,0.9888839290820793,0.3809954766861535
+59,36,0.5594605847228062,1.95,1.3852134627335346,0.0006996410188784285,0.03653389255156701,0.8178148881712891,0,1.0,0.3648686157426873
+59,37,0.5552715392197164,1.95,1.3848754859480426,0.0006996340820441002,0.0366815629474159,0.8177645242839459,0,1.0,0.3509051307323877
+59,38,0.5057192078122476,2.0,1.384453123860692,0.0006996344172724338,0.036458447791143066,0.828616313344553,0,1.0,0.3523973593741584
+59,39,0.5101753685899676,1.95,1.3842578605773073,0.0006991691122640915,0.03652764712215764,0.8176723255222627,0,1.0,0.36725122863322535
+59,40,0.5304094412119157,2.0,1.3838649844427429,0.000698715079369997,0.03663563361924229,0.8285325135331344,0,1.0,0.36803147070638553
+59,41,0.5471237382526408,2.0,1.3846761610521312,0.0006990539426645137,0.036730805880060315,0.8286478199849318,0,1.0,0.32374579417546945
+59,42,0.539484765278756,2.0,1.384300458882195,0.000698898056447065,0.03655225082929773,0.8285944229377553,0,1.0,0.33161588426252003
+59,43,0.527367239075021,2.0,1.384660548136662,0.0006994144187479853,0.036481583132021364,0.8286457054556232,0,1.0,0.3578907969167366
+59,44,0.5114585110279481,2.0,1.3852585423348134,0.0006995496483918807,0.03674396036717158,0.8287306375493971,0,1.0,0.37152837009316036
+59,45,0.5516092839129982,2.0,1.3850131308641807,0.0006992993210381386,0.03657469326565685,0.8286957309030399,0,1.0,0.3386976130433273
+59,46,0.5082245200835311,2.0,1.3846707130941693,0.0006991315692249505,0.03648880175860419,0.8286470684692334,0,1.0,0.3607484002784372
+59,47,0.5559173098819628,1.95,1.3843612071163591,0.000698852479086342,0.0367326549568318,0.8176876379583202,0,1.0,0.3530576996065421
+59,48,0.5482265356279681,1.95,1.3838864589313773,0.0006985972135214195,0.03668261214448222,0.8176167782747696,0,1.0,0.32742178542656
+59,49,0.5221897596741673,2.0,1.3833575436311378,0.0006983740837522744,0.03651765497413327,0.8284603143110886,0,1.0,0.3406325322472241
+60,0,0.02510832026117621,1.95,1.3820326135087282,0.0006987535341298203,0.036563317707660505,0.8173402175051135,1,0.16373275978249496,0.16538405449392735
+60,1,0.04298842525742971,1.9,1.3853245072065627,0.0007010621058480402,0.03672278638582122,0.8063907745939791,1,0.17448751159836887,0.17731140206027388
+60,2,0.14242275911373342,1.95,1.3853529686630066,0.0007009219067489319,0.03671402728540194,0.8178360544081755,1,0.21666904632297426,0.1525171352818124
+60,3,0.2267244322134831,1.95,1.38560279071628,0.0006996939992030968,0.03636526672963743,0.8178729041929422,1,0.2646198754697792,0.2362549400852381
+60,4,0.1973031952329479,1.95,1.3858958998367936,0.0006999880913061477,0.03674076810561365,0.817916648324353,1,0.3124033407313786,0.20780619646798815
+60,5,0.2162654459384595,1.9,1.386064808966906,0.0007000444052212081,0.03670164143922436,0.8065060101315419,1,0.3357306328595795,0.20657730931542573
+60,6,0.2654142660572578,1.95,1.386045905903912,0.0007000736274056793,0.03654938120136829,0.8179390129884266,1,0.376154659778738,0.24984134048587542
+60,7,0.2432440156808245,1.95,1.3859695237635647,0.0006999783095841458,0.03676154916319149,0.81792760989242,1,0.4157958902316236,0.22308553196058345
+60,8,0.24952183295906,1.9,1.3808721896551415,0.0007004901352807057,0.036526304121893456,0.8056945304104652,1,0.44699107013080996,0.20241801635578663
+60,9,0.3057181505916924,1.95,1.381347494501725,0.0006998189841862932,0.036494723359045814,0.8172382285673416,1,0.49230404801094263,0.2293217712910511
+60,10,0.35227006665958793,1.95,1.3820277467300783,0.0006992280438036188,0.03664629443217702,0.8173396326017814,1,0.5495022652084767,0.2748972019206576
+60,11,0.38880372318637735,1.95,1.3825193232396233,0.0007006726968987311,0.03660466365914221,0.8174134425681545,1,0.5932425603693636,0.3383556634621063
+60,12,0.40700150442999633,1.95,1.3827379017899935,0.0007020434193619128,0.03652512909692348,0.8174464719707215,1,0.6330665973406642,0.37924955164576885
+60,13,0.40580923818324766,2.0,1.3829404910022034,0.0006981622957606126,0.03669622454354189,0.8284009770363214,1,0.6814222899810963,0.3774677406360303
+60,14,0.473442017908258,2.0,1.3835094141065931,0.0006989550891989754,0.03667920622003432,0.8284820612494475,1,0.731887073205984,0.4356239620862148
+60,15,0.4456930844772166,2.0,1.3862254383857362,0.0007002638465128559,0.036456798649849714,0.828868034064239,1,0.7838342610486195,0.40719793352589595
+60,16,0.48722028431505,1.95,1.3861270281957043,0.0007003626222718518,0.03669244343449499,0.8179511790521753,1,0.8096079581003687,0.4112570035830084
+60,17,0.5047907126643497,1.95,1.384856543826602,0.0007020436532344041,0.036621510581302766,0.8177624195875597,2,0.8299063860780144,0.4427605274438131
+60,18,0.45879623887635546,2.0,1.3775306628042165,0.0006940632009774944,0.03622138143655499,0.8276294184889191,2,0.8535139839197592,0.39130215102817256
+60,19,0.5118538427864318,1.95,1.3846490556544107,0.0007011047711877783,0.03662498494060403,0.8177312163250183,2,0.8924661898768695,0.41622455611894627
+60,20,0.5295802180590669,1.95,1.3787486868047902,0.0006950980683936065,0.03646384812674143,0.8168483382736521,2,0.9242616681944162,0.4329185026043344
+60,21,0.5500134796803738,2.0,1.3775040672314103,0.0006943925387866336,0.03644549929140466,0.8276257183265907,2,0.951979038937221,0.4640728803516179
+60,22,0.5961516093617675,2.0,1.3763020652953104,0.0006938204573939735,0.03644415923050584,0.8274540081690536,2,0.981105562065376,0.5123646151187234
+60,23,0.617525327876915,2.0,1.375750551484286,0.0006930531491556055,0.036431324133257295,0.8273750330031346,2,1.0,0.5584177595897166
+60,24,0.5533580430405333,2.0,1.3748809039730066,0.0006923796375983595,0.03627734502928965,0.8272505972228351,2,1.0,0.5111934768017775
+60,25,0.6438354383718159,1.95,1.377074895239852,0.0006942985502496534,0.036254437237213666,0.8165975548248696,2,1.0,0.546118127906053
+60,26,0.5567461247420465,1.95,1.378791969261735,0.0006949923592520931,0.03646545862897919,0.8168547819202181,2,1.0,0.5224870824734883
+60,27,0.6188739844781093,1.9,1.3804294320203843,0.000696553535917446,0.036525873376792445,0.8056239740502856,2,1.0,0.5629132815936975
+60,28,0.6322345544438055,1.9,1.3795294072387905,0.0006956331412681688,0.03639615532439551,0.8054827083975428,2,1.0,0.6074485148126848
+60,29,0.6757094321900928,1.95,1.3772430376705167,0.0007118047277241356,0.036761533121917135,0.816627978545204,2,1.0,0.652364773966976
+60,30,0.6281500694056058,1.95,1.3760882494743454,0.0007127642044678123,0.03672665749260866,0.8164552771316488,2,1.0,0.6605002313520191
+60,31,0.5835588085847077,1.9,1.3784907931771075,0.0007100339249424229,0.03671622685404065,0.8053244418493143,2,1.0,0.6118626952823589
+60,32,0.6680928628160142,1.8499999999999999,1.3797069752280302,0.0007079172124061023,0.03673324939501762,0.7934950321308621,2,1.0,0.6269762093867141
+60,33,0.6458998267066436,1.8499999999999999,1.378114341132867,0.0007090212067141304,0.03666679093843627,0.7932343022005157,2,1.0,0.6529994223554783
+60,34,0.5866075607661119,1.7999999999999998,1.3773413069573124,0.0007113457773157013,0.036720375689308485,0.7805310914221328,2,1.0,0.6220252025537061
+60,35,0.6739897135350034,1.7499999999999998,1.3783014736231292,0.0007089688950538657,0.036735198566613544,0.7675840644216523,2,1.0,0.6466323784500113
+60,36,0.6784897231849407,1.7499999999999998,1.3765926426194688,0.0007102738746936023,0.03671318610859266,0.7672795377285146,2,1.0,0.6616324106164692
+60,37,0.6874186035409626,1.7999999999999998,1.374807195972734,0.0007112489626907707,0.03652506502335665,0.7800966505620439,2,1.0,0.6913953451365421
+60,38,0.5976788963638672,1.8499999999999999,1.373062679257514,0.0007117778785560197,0.03660468075151773,0.7924054402802546,2,1.0,0.658929654546224
+60,39,0.6582862604273421,1.7999999999999998,1.3745593145322428,0.0007083750848135755,0.036632337712034016,0.7800531384309454,2,1.0,0.6942875347578066
+60,40,0.5994605517553039,1.7999999999999998,1.3737186999510236,0.0007118620197039132,0.03663750374908765,0.7799100771029562,2,1.0,0.6648685058510128
+60,41,0.660924637546555,1.7499999999999998,1.374408839059876,0.000708761251040801,0.03660557133764638,0.7668888257579767,2,1.0,0.7030821251551828
+60,42,0.5974299949184727,1.7499999999999998,1.3733275253902644,0.0007117450828762757,0.03648915980194123,0.766696530601322,2,1.0,0.6580999830615758
+60,43,0.6857862973533309,1.6999999999999997,1.3736467310266167,0.0007086790269437343,0.03643400455960755,0.753072008271309,2,1.0,0.685954324511103
+60,44,0.6695301562457626,1.6999999999999997,1.371709175318733,0.0007101518718567765,0.0364419092154636,0.7527120826135054,2,1.0,0.7317671874858752
+60,45,0.7018571853072136,1.7499999999999998,1.3708140756194247,0.0007130308599653995,0.03658220772284475,0.7662471016604846,2,1.0,0.7395239510240457
+60,46,0.6574267422364721,1.7499999999999998,1.3694595387321515,0.0007141470621757287,0.03659276503408977,0.7660047998465342,2,1.0,0.7580891407882405
+60,47,0.6621769689979149,1.6999999999999997,1.3742881493593408,0.0007109663296309791,0.0365120201029911,0.7531921139636077,2,1.0,0.7739232299930497
+60,48,0.7269723744027593,1.7499999999999998,1.3776492672287945,0.0007085768290232563,0.03663178476615253,0.7674675513617518,2,1.0,0.8232412480091978
+60,49,0.6833605824768034,1.7499999999999998,1.3801090623146097,0.0006994536403181122,0.03662056835200752,0.7679029882799737,2,1.0,0.8445352749226778
+61,0,0.13340434445054838,1.6999999999999997,1.3814109250657143,0.0006985372808527605,0.03656867605010434,0.7545091999960841,1,0.12431581739590282,0.2122600583072909
+61,1,0.029805733703857945,1.6499999999999997,1.3817823707331582,0.0006996443119558482,0.03666157610753598,0.7404255750274028,1,0.16739150642534434,0.17616377044573409
+61,2,0.17698803209664402,1.5999999999999996,1.3851492305378503,0.0007013131893527523,0.03658562489176959,0.726423493854756,1,0.18825996158011854,0.20561349154865527
+61,3,0.19748193585040838,1.5999999999999996,1.381507536374967,0.000699617011375844,0.036607363214025884,0.7256984994982438,1,0.212881867102922,0.24109729669746527
+61,4,0.1721309344212541,1.5999999999999996,1.3861719758047375,0.0007000926394145567,0.036657160543363605,0.7266262145017764,1,0.24790148563226017,0.2099011338945001
+61,5,0.22393082408169332,1.5499999999999996,1.3862175832038228,0.0007001616129611345,0.03662175173023607,0.7114871859603252,1,0.276000756024409,0.2451017389064324
+61,6,0.2751069647447161,1.5499999999999996,1.3861346929651492,0.0007001510365578299,0.036694407589965825,0.7114701661777255,1,0.32357751410378255,0.3189198636773436
+61,7,0.28016056518163324,1.5499999999999996,1.386151055424614,0.0007000922701001066,0.03659828929067825,0.711473500930783,1,0.33080564378753746,0.3594610255553942
+61,8,0.26617725050139124,1.5999999999999996,1.3860279544945426,0.0007000623389710294,0.03674812559730556,0.7265975930559126,1,0.33936270854303263,0.3681072236139272
+61,9,0.30910247862558843,1.6499999999999997,1.3860844749783365,0.0007000330492305954,0.036387920870793414,0.741251713781408,1,0.3674223826128403,0.4071117519348411
+61,10,0.3019646184578888,1.6499999999999997,1.3850507519591801,0.000701355945637252,0.036693593375273996,0.7410539064461721,1,0.38901385872934324,0.4211969165538384
+61,11,0.37061516111093484,1.6999999999999997,1.384813709611772,0.0007015819127432673,0.03669359945199695,0.7551400609369168,1,0.43239989882467667,0.492184005270214
+61,12,0.4124940053362391,1.6999999999999997,1.3850013830410222,0.000699368968417276,0.03640785502456545,0.7551739424733899,1,0.4921204033152541,0.5521528133671249
+61,13,0.3988748792797441,1.6999999999999997,1.3852671876981617,0.0006997816296309292,0.03671674880490402,0.7552232353388394,1,0.5288575980260929,0.5577728002310229
+61,14,0.4733961578764732,1.7499999999999998,1.3849259775862703,0.0006997756350451077,0.036634730391833674,0.7687605037773162,1,0.5917208655570225,0.6223593721788808
+61,15,0.514521104440821,1.7499999999999998,1.3851239499534147,0.0007001576074140052,0.036487559837001894,0.7687958308055718,1,0.6479652476217577,0.6844500179737261
+61,16,0.4820629448241408,1.7499999999999998,1.373719048458898,0.0007116831108868265,0.03663386003990251,0.7667665340133267,1,0.685981728042449,0.6589008453572041
+61,17,0.5348931867439686,1.6999999999999997,1.373123054179434,0.0007145100182216704,0.03667582571380388,0.7529767844364423,1,0.709384369770508,0.7037981294525512
+61,18,0.5059639243883333,1.6999999999999997,1.3710754327239618,0.0007157728430707711,0.03669597373131566,0.7525961942294679,1,0.7366076616854155,0.6710695323805571
+61,19,0.5100258001144523,1.6499999999999997,1.3702402624462762,0.0007188435716305213,0.036408691355285835,0.7382085057941189,1,0.7687597354756902,0.6417396864139205
+61,20,0.5356392309416291,1.6999999999999997,1.3687148119533135,0.000722141053667814,0.0367645370683717,0.7521587703005117,1,0.789508090997657,0.6661199818085543
+61,21,0.5333553147830481,1.6999999999999997,1.3709466812614899,0.000717569477832255,0.036718575301759024,0.7525728896426415,1,0.8259802548888231,0.6432107094250626
+61,22,0.5810196511613446,1.7499999999999998,1.3846036054145605,0.0007000794619187125,0.03639145875231884,0.7687032994631418,1,0.8434952522192396,0.6787385009121621
+61,23,0.6226445404492296,1.7499999999999998,1.3847179251870263,0.0006995573730530582,0.03651428398865293,0.7687234390851253,1,0.8884532038087022,0.7242108630858285
+61,24,0.6306577380787461,1.7499999999999998,1.3850071197402913,0.0007004264859603259,0.03675395429876015,0.7687751593147619,1,0.9052804900030867,0.7618184735917044
+61,25,0.612894265548299,1.7999999999999998,1.3848816976912368,0.000699776364788558,0.036431870366823556,0.781816098111792,1,0.9133689225641344,0.7584889884088174
+61,26,0.6281348889531171,1.8499999999999999,1.384324240391868,0.0006997755513096931,0.03646660987277421,0.7942479340593828,1,0.9394702569573841,0.7744892872338779
+61,27,0.647328494303792,1.9,1.3835856765929868,0.0006997645943842502,0.036504551672554474,0.8061187499788482,1,0.9821192567295095,0.7816026387066276
+61,28,0.6332485509817666,1.95,1.382654691861354,0.0006996917929210114,0.03652340199861133,0.8174333525194268,1,1.0,0.7441618366058886
+61,29,0.6239294376400203,2.0,1.3837517498315457,0.0006993637688013441,0.03652419314009452,0.8285166104300837,1,1.0,0.7130981254667342
+61,30,0.6339587351622963,2.0,1.3842929059986204,0.0006991251769800772,0.03649903818877215,0.8285934147456954,2,1.0,0.7131957838743207
+61,31,0.676613060160185,2.0,1.3762103650843451,0.0007086582504509068,0.03658122465143369,0.8274451524933133,1,1.0,0.7553768672006165
+61,32,0.6511987226097394,2.0,1.3848429925024244,0.0006993317780480593,0.03673233212760664,0.8286715860769656,1,1.0,0.7706624086991314
+61,33,0.7006890925959595,1.95,1.384039166758999,0.0006990409118534284,0.03648031405305534,0.8176396812130851,0,1.0,0.835630308653198
+61,34,0.6943792911796126,1.95,1.3829910815450002,0.0006998685014437463,0.03669147547345934,0.8174836013635159,0,1.0,0.8479309705987085
+61,35,0.6789643605680853,2.0,1.3827667442109353,0.000698824159453156,0.0364763523483489,0.8283764652274086,0,1.0,0.8632145352269508
+61,36,0.6828332663950039,2.0,1.3817777906095507,0.0006987104861201993,0.03649923871601444,0.8282357887794274,0,1.0,0.8761108879833461
+61,37,0.6882514954967418,2.0,1.3804502256594473,0.0006984692847803681,0.036466343131189446,0.8280467767154586,0,1.0,0.8941716516558059
+61,38,0.7073207494718483,2.0,1.3788578547031802,0.0006981556309308236,0.036543796960696075,0.8278198386153162,0,1.0,0.8577358315728275
+61,39,0.6843655113083067,2.0,1.3806553291590171,0.000697756416621027,0.036385551079548176,0.8280757754997068,0,1.0,0.8812183710276886
+61,40,0.6904802854330758,1.95,1.3789707889049,0.0006971744533499507,0.03632287279574232,0.8168821851889471,0,1.0,0.9016009514435862
+61,41,0.6950611006785659,2.0,1.3767637764738723,0.0006964448547404094,0.036560139551125886,0.8275206676587787,0,1.0,0.9168703355952194
+61,42,0.7193697298634549,2.0,1.3747609813335042,0.0006957809616243029,0.036494152172685944,0.8272344309805094,0,1.0,0.9312324328781831
+61,43,0.720518683861645,2.0,1.3751227776751835,0.0006944956627377814,0.03648083126119446,0.8272857646365744,0,1.0,0.9350622795388165
+61,44,0.7045619566918051,2.0,1.3748254102034145,0.0006933265607287672,0.03634442035322821,0.8272429372817348,0,1.0,0.9485398556393505
+61,45,0.735007468405612,2.0,1.3726540800949332,0.000692305909002628,0.03607517911904935,0.8269321153555518,0,1.0,0.9833582280187065
+61,46,0.72,2.0,1.371958750080469,0.0006911312079174417,0.03618246880832826,0.8268322439163796,0,1.0,1.0
+61,47,0.72,2.0,1.3696486759019524,0.0006899292947834929,0.03625762326740868,0.8265008914471319,0,1.0,1.0
+61,48,0.72,2.0,1.3670415671812854,0.000688698752117109,0.03633287076491734,0.8261263676357429,0,1.0,1.0
+61,49,0.74,2.0,1.3641326660292852,0.0006872523934551508,0.03629947574513316,0.8257077156663538,0,1.0,1.0
+62,0,0.07960767279781175,2.0,1.385244423782431,0.0006998139034417358,0.0364101323832561,0.8287287086222559,0,0.1945371140512304,0.17264275725773198
+62,1,0.20849241911712224,1.95,1.386074072214222,0.0007001108613269977,0.03673128566715454,0.8179432184200455,0,0.29205627780301235,0.13889969331972424
+62,2,0.22930127872096123,1.95,1.3845282888532233,0.0006990873255666992,0.03666952871016408,0.8177126142852604,0,0.3685909866652845,0.13954961351615805
+62,3,0.22836383842713928,1.95,1.3846792548793359,0.0006993746113342784,0.03640185350627609,0.8177352016414013,0,0.3971031278913268,0.16507529090202855
+62,4,0.24030200859365422,2.0,1.3845220719974034,0.0006991595318670481,0.036689500896155705,0.8286259696663797,0,0.41690190847034786,0.17847081735171688
+62,5,0.23225359303731447,2.0,1.3860641203329334,0.0007000205677445213,0.036740115120519216,0.828845081535917,0,0.4367390191177268,0.19185995130074587
+62,6,0.24890560758771224,2.0,1.3861484004655804,0.0007000730577538554,0.03637705883641049,0.8288570521528011,0,0.45045521688016377,0.22907840278548913
+62,7,0.3247704101152399,2.0,1.3836009691102777,0.0007009828817712866,0.036641468046799,0.8284956470430122,0,0.5387469624264608,0.23090541714885188
+62,8,0.36470416115257837,2.0,1.3833992876608887,0.0007012809045859736,0.036719415022686865,0.8284670728079611,0,0.6306113389396881,0.2081987519223436
+62,9,0.37713405635271424,2.0,1.2661178789411818,0.0008575328278421253,0.036777159977931795,0.811201005529821,0,0.6892997132502428,0.20471390350872382
+62,10,0.4052186854053219,2.0,1.2641158529438514,0.0008608061241123988,0.03684948447845957,0.8108952002062852,0,0.7533873396444409,0.21287916515848507
+62,11,0.45055281435646805,2.0,1.2620691808548152,0.0008637969522701067,0.03661880194085788,0.810582073664886,0,0.8522349460752808,0.1988627864211856
+62,12,0.4338201448965281,2.0,1.329652453060252,0.0007154155436425258,0.03629656815542068,0.820697944302289,0,0.8809221635453465,0.2048375982612982
+62,13,0.4966051283493895,2.0,1.365390786250723,0.0006995415483960948,0.036253606523187945,0.8258922374478623,0,0.9701720932537313,0.19512097015965668
+62,14,0.461807538005445,2.0,1.3010480964375533,0.0007034391729099808,0.03509487198226098,0.8164464649669443,0,0.9874897066196178,0.22270551785865958
+62,15,0.47410622980881134,1.95,1.3687317477373262,0.0006966323481046716,0.03596763336756997,0.81534543587404,0,0.9992015408032273,0.24808537829173483
+62,16,0.47722309624923015,2.0,1.3674999639302803,0.0006952055201681162,0.03625618358542822,0.8261940713497593,0,0.9994149973631129,0.25819032434661654
+62,17,0.5015969901285198,2.0,1.367035027657415,0.0006938664246089613,0.03616018588436833,0.8261269128728569,0,1.0,0.2719899670950659
+62,18,0.4804080860496779,2.0,1.3718871896433367,0.000694202809749898,0.03648828840981447,0.8268228772318635,0,1.0,0.26802695349892625
+62,19,0.5219626458502704,1.95,1.3709608193691718,0.0006929882722510078,0.03637040852487265,0.8156797071606421,0,1.0,0.2732088195009014
+62,20,0.50449334118437,1.95,1.370530824041765,0.0006940643870745823,0.03606880791013416,0.8156153738363261,0,1.0,0.2816444706145665
+62,21,0.5100535867185497,2.0,1.3747001198074287,0.0006946525290225873,0.036277057149826174,0.8272254100634766,0,1.0,0.3001786223951655
+62,22,0.5356537279452422,2.0,1.3781393646202447,0.000695501786687164,0.03638211891105607,0.8277166482327054,0,1.0,0.2855124264841406
+62,23,0.48369711265185,2.0,1.3778413839151347,0.000695972639834993,0.03651510032290217,0.8276742858138161,0,1.0,0.2789903755061666
+62,24,0.4925892638721434,1.95,1.3770751152686638,0.0006950489367929568,0.036510855785897384,0.8165978125423262,0,1.0,0.3086308795738113
+62,25,0.5357171140699492,2.0,1.3759527749273313,0.0006939490874509362,0.036388428799788666,0.8274041696649502,0,1.0,0.2857237135664972
+62,26,0.523378657738579,2.0,1.3757884933754547,0.000694486003527188,0.0364059846448652,0.8273808612947142,0,1.0,0.2779288591285965
+62,27,0.5236760175787581,2.0,1.3759323308636706,0.0006954670356314327,0.036189722108047814,0.8274016836511692,0,1.0,0.24558672526252695
+62,28,0.5234519993545582,2.0,1.375448043921743,0.0006960051509598671,0.03634989247478234,0.8273326663119759,0,1.0,0.24483999784852736
+62,29,0.5145117191386112,2.0,1.3748480896510802,0.0006963944132161771,0.036439856122560954,0.8272470552757267,1,1.0,0.21503906379537044
+62,30,0.5150692168275268,2.0,1.3744920882450977,0.0007046896813069988,0.036546781974153425,0.8271985448962719,1,1.0,0.25023072275842273
+62,31,0.5458132524211317,2.0,1.3769027051029976,0.0007028340307339705,0.03652787435972018,0.8275423197525208,1,1.0,0.31937750807043885
+62,32,0.5152482308545242,2.0,1.3751828461537143,0.0007027866045040051,0.036591892016813676,0.8272967164743247,1,1.0,0.31749410284841406
+62,33,0.5432229011990631,1.95,1.3755826088958267,0.0007062250743282844,0.03634345877548204,0.8163775312111246,1,1.0,0.3440763373302103
+62,34,0.5235660894527631,1.95,1.377314435650485,0.0007042410067149572,0.03664299207029351,0.8166364047237448,1,1.0,0.34522029817587685
+62,35,0.5355924083305363,2.0,1.3773920472054073,0.0007071453384534659,0.0365981913434694,0.8276133757085045,1,1.0,0.38530802776845424
+62,36,0.5202813111176159,2.0,1.377314886164635,0.0007095591374892068,0.03660990181887401,0.8276030556895799,1,1.0,0.3676043703920528
+62,37,0.5773044526754169,2.0,1.3788725142078617,0.0007072990153838887,0.03661143288238759,0.8278245345338116,1,1.0,0.4243481755847226
+62,38,0.5923348464209537,2.0,1.3842666403298345,0.0007025475025025634,0.036778419982071986,0.8285906564314844,1,1.0,0.47444948806984544
+62,39,0.6104177062710954,2.0,1.3837911783565722,0.0007032081384449581,0.03654962830089242,0.828523304598331,1,1.0,0.5347256875703178
+62,40,0.5637333837260123,2.0,1.3831482303793747,0.0007038210967762624,0.03651035079157715,0.8284321143588007,1,1.0,0.512444612420041
+62,41,0.6047282729428753,1.95,1.3835088185490059,0.000702614035451844,0.036755125919850015,0.8175616562020255,1,1.0,0.5490942431429174
+62,42,0.5634842868164179,1.95,1.3845890768649363,0.0007019212393159939,0.03677250178174111,0.8177225198967609,1,1.0,0.5116142893880598
+62,43,0.6026054939290275,1.9,1.3847424082883615,0.0007010930808086517,0.036640969112267434,0.8062998880455488,1,1.0,0.5420183130967583
+62,44,0.6300298619070132,1.9,1.385489527998002,0.0007007426710915643,0.036718992443101395,0.8064164373785482,1,1.0,0.6000995396900437
+62,45,0.6245552512319668,1.9,1.3823505111414462,0.000697395425072627,0.036548058056423124,0.8059248902339377,1,1.0,0.6151841707732223
+62,46,0.6332954087864986,1.95,1.3823006025671016,0.0006974432572521851,0.03664267627616432,0.8173798324091764,1,1.0,0.6443180292883285
+62,47,0.6403731429122105,2.0,1.382043379787397,0.0006975091286788653,0.036499857892316696,0.8282732267847154,0,1.0,0.6679104763740348
+62,48,0.6283153846425525,2.0,1.3834142332001562,0.0007031151870565495,0.036654570338767456,0.8284697180306347,0,1.0,0.6943846154751752
+62,49,0.6332488823758973,2.0,1.38293463245048,0.0007041895641084634,0.03656001938924204,0.8284018578111313,0,1.0,0.7108296079196573
+63,0,0.19284321837227258,2.0,1.3825591270963289,0.0006992231496385044,0.0365442349158616,0.8283470599822595,1,0.1544421211913486,0.2702212329857772
+63,1,0.1714456148104044,1.95,1.3822072826571579,0.0006991565647134278,0.03662411371195802,0.8173664136504223,1,0.16905077152323186,0.2794176873370389
+63,2,0.2123885439492491,1.9,1.382465922134335,0.0007001094361062761,0.03660156930434423,0.805943789960917,1,0.20393673104752857,0.30271283843412555
+63,3,0.25960498442611674,1.9,1.3861509980153666,0.0007000753854896864,0.036450438943459035,0.8065194695963424,1,0.24229156742141597,0.37562785819183453
+63,4,0.29950430739223466,1.9,1.3861409106729052,0.0007000667512994075,0.03677116534547817,0.806517892809227,1,0.30124078090157513,0.43002665010534874
+63,5,0.26836905145691153,1.9,1.3846641128925548,0.000701989960845131,0.036659517432193374,0.8062879397111448,1,0.3331382901843551,0.41704578461056496
+63,6,0.27828313521464254,1.8499999999999999,1.3847578283224358,0.0007015136880731986,0.036573018233559004,0.7943193490990051,1,0.37624453811475517,0.3926177332291349
+63,7,0.3032607090931279,1.9,1.3861407835729362,0.0007000684630242712,0.036766614851529496,0.8065178735099037,1,0.40163234118503904,0.4086925753970409
+63,8,0.2974410154061111,1.9,1.3851260558488643,0.0007000048076171081,0.03650827728101745,0.8063594593716465,1,0.438784879489798,0.37309021203397297
+63,9,0.3539494935747527,1.95,1.382876181399804,0.0007017147638442687,0.03654908159129332,0.8174670081377775,1,0.4778489213656294,0.40936641676166985
+63,10,0.34945717445225677,1.95,1.3848845434936572,0.0006994454451012472,0.03673002434129671,0.81776581786401,1,0.5056435433108455,0.42399919042639517
+63,11,0.35165956030328815,2.0,1.384619318730501,0.0006994354760713919,0.03662543092772127,0.8286398571105522,1,0.554180091657642,0.3999584121341043
+63,12,0.37543886760910783,2.0,1.3832374890865973,0.0007012420175304147,0.03652329275165685,0.8284440674369465,1,0.5849045036119465,0.4049235538810973
+63,13,0.37487045427316423,2.0,1.384206806012035,0.0006988607862088562,0.03661806714126422,0.8285811108261811,1,0.6261045731676239,0.38142875002038223
+63,14,0.3985952398789023,2.0,1.3825907103456547,0.000698831457492968,0.036656124706736876,0.8283514393155931,1,0.6548930237907249,0.3887934345420409
+63,15,0.4385431639074154,2.0,1.3829261110222673,0.0006998540853210421,0.036428747354260084,0.8283994138615296,1,0.6830962920409815,0.417682156970076
+63,16,0.44041770938791547,2.0,1.3848231055461198,0.000701077475851462,0.03668208245186918,0.8286692583048803,1,0.7176678955149223,0.4445018372731553
+63,17,0.49398968349162803,2.0,1.3850996134757645,0.0007005833647516183,0.036745130394051126,0.8287083720915707,1,0.7429595931423256,0.48935282078232584
+63,18,0.5336420759058096,2.0,1.3854618019517717,0.0007002445025886487,0.03642768132104458,0.8287596827363063,1,0.7999270042655627,0.5455709139986148
+63,19,0.5484816248205315,2.0,1.3855735942220915,0.0006999513119669463,0.03664364827199039,0.828775464173377,1,0.832893245322275,0.584414422305405
+63,20,0.5685930639093396,2.0,1.3841517981937153,0.0007011039333855032,0.03674332139063962,0.8285739349100074,1,0.857505832034394,0.6186357703186065
+63,21,0.5575623226807388,2.0,1.3824686563671218,0.0006975381545090026,0.036348135943958956,0.8283337165273694,1,0.8805980321155347,0.6177436994484163
+63,22,0.5517948762735616,2.0,1.3814777328760584,0.0006969233832314761,0.03647471418742376,0.828192589410015,1,0.9197954602589221,0.5795889738999757
+63,23,0.6281748500781079,2.0,1.3849730041864032,0.0007001586379114987,0.03675034318074482,0.8286902784622093,1,0.9616838410263272,0.6450043788919233
+63,24,0.6014852403929507,2.0,1.381511601422854,0.0006969043072584468,0.036538827761939875,0.8281974030707405,1,0.997906565161594,0.6410753810943768
+63,25,0.6586354144040485,1.95,1.3814509125466523,0.0006967634241199919,0.03645261213050239,0.8172527618718677,1,1.0,0.6954513813468279
+63,26,0.6775858636065659,1.95,1.3828948411737512,0.0006980532433473295,0.03634175109175104,0.8174686997388817,1,1.0,0.7586195453552196
+63,27,0.6243828935075082,2.0,1.383832061338862,0.0006993703994241445,0.03659372658053634,0.8285280224179615,1,1.0,0.7146096450250274
+63,28,0.6848452583507737,1.95,1.3837575513938463,0.0006988235800211166,0.03655791590903519,0.8175976223664683,2,1.0,0.7828175278359122
+63,29,0.721576634461267,1.95,1.3742045782320627,0.0007148723460669919,0.03651671976623945,0.8161734618906433,2,1.0,0.8052554482042235
+63,30,0.6763660901634062,1.95,1.379079507800997,0.0007006922806863077,0.03659722418316804,0.8168994997770912,2,1.0,0.8212203005446872
+63,31,0.6856675708196198,1.9,1.3806914440292553,0.000699595127382746,0.03660036857200159,0.8056659527052996,2,1.0,0.8522252360653995
+63,32,0.747060385051424,1.95,1.3814312235585922,0.000698689933102952,0.03664012290947357,0.8172503967470028,2,1.0,0.8902012835047467
+63,33,0.7032940520799231,1.95,1.3823548127818108,0.0007009653547184736,0.036621671203434854,0.8173889756797186,2,1.0,0.9109801735997434
+63,34,0.7329048982165921,1.9,1.3827850019437822,0.0006998772730757269,0.03668596514306196,0.8059936160545097,2,1.0,0.9430163273886402
+63,35,0.745336223936284,1.9,1.3812315974937113,0.0006997019671702619,0.03665197454301671,0.8057505431101074,2,1.0,0.984454079787613
+63,36,0.6795591535045798,1.95,1.3794442901598096,0.0006994164637256098,0.03634092752414485,0.816953674112344,2,1.0,0.9318638450152662
+63,37,0.714202614338558,1.9,1.380964432090836,0.0006986539101441734,0.0365622056870092,0.8057083957419108,2,1.0,0.9473420477951934
+63,38,0.7429325405100318,1.9,1.381221331803423,0.0006977251685377252,0.036626175218038313,0.8057483175458129,2,1.0,0.9764418017001057
+63,39,0.7789329369519854,1.9,1.3794736266934295,0.000697133883239238,0.03656396538844335,0.8054744388242521,2,1.0,0.9964431231732849
+63,40,0.75,1.9,1.3807641008604534,0.0006999540313845979,0.03657452793689582,0.8056774405920262,2,1.0,1.0
+63,41,0.73,1.8499999999999999,1.3788716547541515,0.0006996834291670118,0.0365407141286754,0.7933554226818798,2,1.0,1.0
+63,42,0.75,1.7999999999999998,1.379043250183338,0.0006981581227690436,0.03661549228994136,0.78081798515021,2,1.0,1.0
+63,43,0.6863480864012583,1.7999999999999998,1.3767150965100718,0.0006975967262234249,0.0364852511974903,0.7804190891040563,2,1.0,0.9544936213375279
+63,44,0.75,1.7499999999999998,1.378686001850976,0.0006969216359783455,0.036171545795765106,0.7676483591498905,2,1.0,1.0
+63,45,0.7799999999999999,1.7499999999999998,1.376136638585057,0.0006960335213843573,0.036566248880852956,0.7671930161321443,2,1.0,1.0
+63,46,0.75,1.7499999999999998,1.3778259889644173,0.000700003207461252,0.036552152671775175,0.7674960279871751,2,1.0,1.0
+63,47,0.6848248408689173,1.6999999999999997,1.3753590900191102,0.0006995641788274837,0.03636970324509313,0.7533869042540765,2,1.0,0.9494161362297242
+63,48,0.776262529603195,1.6499999999999997,1.3769581548667023,0.0006981014795370471,0.0365219779431525,0.7394967129491505,2,1.0,0.9875417653439835
+63,49,0.75,1.6499999999999997,1.3779410872361797,0.0007021294860512108,0.03629598021830717,0.7396875729496689,2,1.0,1.0
+64,0,0.1471581082663659,1.5999999999999996,1.3852286411567114,0.0006997532878667848,0.03642221947351209,0.7264386550499025,0,0.14646873691071052,0.22856871167360568
+64,1,0.193897921867477,1.5499999999999996,1.38511283170521,0.0006996065826179193,0.036752061466048286,0.7112601291723822,0,0.21659915278899666,0.2241942025062611
+64,2,0.22103388307263422,1.5499999999999996,1.3854850434399566,0.0007007848475534808,0.03650417411442454,0.711337047853856,0,0.2840447897891395,0.22471989052326138
+64,3,0.19221597690036174,1.5499999999999996,1.3852757082360707,0.000700851115688946,0.03675148687714237,0.7112940889793029,1,0.3008927014195471,0.2395296544418096
+64,4,0.26948389933126304,1.4999999999999996,1.3861146829628483,0.0007000684220266556,0.03660084174159965,0.6958291952642482,1,0.34017546323370473,0.2780457134592706
+64,5,0.27607442754777856,1.4999999999999996,1.3860643799249237,0.0007000999036769015,0.03673813229922326,0.6958185618013027,1,0.3689532530299501,0.2949770877859952
+64,6,0.25275611535412523,1.5499999999999996,1.3859765148050316,0.0006999792646962645,0.03659873013502252,0.7114376236930547,1,0.40409241440005883,0.2703971653136723
+64,7,0.26655882292841065,1.4999999999999996,1.3822171599496742,0.0007015188657435148,0.036487852637687265,0.6950042667694756,1,0.41327773987435573,0.27082575659556113
+64,8,0.3074269537310767,1.5499999999999996,1.3814908567434137,0.0007015734543000004,0.036609875253961366,0.7105165275352298,1,0.45097035937191243,0.2901293666077058
+64,9,0.3584284682452822,1.5499999999999996,1.3819371814046624,0.0007006167710814247,0.03652696720719563,0.7106079267385396,1,0.5089950830741428,0.349434783385417
+64,10,0.3283164553681754,1.5499999999999996,1.3821343066199625,0.0007020540069241297,0.036728512922524256,0.7106490538019374,1,0.5552569107278027,0.320712303590181
+64,11,0.3785761384383428,1.4999999999999996,1.3831706789832845,0.0007013386006122101,0.036297296020197656,0.6952062733948512,1,0.5918752566258489,0.33942011929334426
+64,12,0.3566406650411643,1.4999999999999996,1.3833094769411862,0.0007005448005157208,0.03670062569423044,0.6952353467377229,1,0.6382582523810454,0.30445788029582044
+64,13,0.4347424157541292,1.4499999999999995,1.3837711777962045,0.0006994613088648694,0.036483337483761896,0.6792157620743197,1,0.6765902013708929,0.3803544506859069
+64,14,0.44700307178326976,1.4499999999999995,1.3829398456236888,0.0006993538361377216,0.036583975418326295,0.6790345561717791,1,0.7088130406502466,0.41159285174390375
+64,15,0.5027364734004269,1.4999999999999996,1.3813380783690559,0.0006991123558894024,0.036545728514479806,0.6948168723947264,1,0.7760641979154387,0.4743693141141713
+64,16,0.5147587198244586,1.4999999999999996,1.381719292963647,0.0006983481839358094,0.03667092943847143,0.6948973775362102,1,0.8051818194953839,0.5089533067543501
+64,17,0.5041680283314586,1.5499999999999996,1.3821714117337232,0.000699919517465896,0.036559581405258855,0.71065580575035,1,0.8328167841053616,0.5034710489643794
+64,18,0.5029951983984737,1.5999999999999996,1.3826834892245439,0.0007016474841447132,0.036567927843590545,0.7259333306961266,0,0.8786120199007079,0.4718346347939686
+64,19,0.5270241830826581,1.6499999999999997,1.309815078577578,0.0006447969245181024,0.034475995117015414,0.7263346148093919,0,0.9008580284364471,0.4889365723602641
+64,20,0.5858619496219974,1.6499999999999997,1.3135420820218227,0.0006480860153480388,0.03479356772848953,0.7270761212307885,0,0.9905083211387854,0.46552873722161053
+64,21,0.5828294490061385,1.6499999999999997,1.3086388729777827,0.0006444496175100809,0.03502296341286769,0.7261006169405935,0,1.0,0.47609816335379496
+64,22,0.5648693090654147,1.6999999999999997,1.319603411466227,0.0006563163885258184,0.035063720389807276,0.7428655636262341,0,1.0,0.4828976968847153
+64,23,0.5506885676436714,1.7499999999999998,1.3223128373808273,0.0006578503763672651,0.034871871095176164,0.7574277479760236,0,1.0,0.5022952254789044
+64,24,0.5953530635067662,1.7999999999999998,1.3307319503479944,0.0006609053885222713,0.03497705507170977,0.7724247712753736,0,1.0,0.5178435450225539
+64,25,0.5844852762597282,1.7999999999999998,1.3405193101054764,0.0006708041011414969,0.035110319512080386,0.7741441125239211,0,1.0,0.5482842541990941
+64,26,0.5875705706329589,1.8499999999999999,1.3407346330188488,0.000670405682902369,0.03520432687953333,0.7870233604028436,0,1.0,0.5585685687765296
+64,27,0.593082503418578,1.9,1.3413429057384643,0.0006705836721486082,0.03524691409426715,0.7994217282238647,0,1.0,0.5769416780619266
+64,28,0.6200444568832851,1.95,1.3413298964321339,0.0006707911303139798,0.035346854005370264,0.8111762751487679,0,1.0,0.5668148562776169
+64,29,0.5961699609830508,1.95,1.3393240128877584,0.0006694250765829435,0.03520600097942816,0.8108684245301577,0,1.0,0.5872332032768358
+64,30,0.602532682106116,1.9,1.337883052676176,0.0006688841721053674,0.035254009189463656,0.7988658315372522,0,1.0,0.6084422736870532
+64,31,0.5886508857940218,1.95,1.3826388108404704,0.0007046067337140716,0.036354948134912565,0.8174324494694645,0,0.9961310979085236,0.6339948221020412
+64,32,0.5903643567914748,2.0,1.3820024122274939,0.0007052555006331375,0.03634158992479075,0.8282696033009442,0,1.0,0.6345478559715827
+64,33,0.6165676109656306,2.0,1.3812177372509071,0.0007058456130629627,0.03648567564187535,0.8281581310733522,0,1.0,0.6552253698854351
+64,34,0.6365461081135446,2.0,1.3805810130616318,0.0007073438261598922,0.03652956276177866,0.8280679250987188,0,1.0,0.6551536937118151
+64,35,0.6244865615488789,2.0,1.381288718337664,0.0007053718696794216,0.03675188766532263,0.8281680974828597,0,1.0,0.6816218718295963
+64,36,0.6279130993793645,2.0,1.3805708106300163,0.000706565246266928,0.03661495149411312,0.828066250862339,0,1.0,0.6930436645978816
+64,37,0.6144986279769988,2.0,1.3797058161140068,0.0007075953702241105,0.03661566475149636,0.8279433579397005,0,1.0,0.7149954265899962
+64,38,0.6413666964658945,2.0,1.3788729346844844,0.0007089632424544897,0.036763417286841335,0.8278250688722851,0,1.0,0.7378889882196483
+64,39,0.6637289322265749,2.0,1.3778729010360147,0.0007101962648428423,0.03648616827627178,0.8276828383377483,0,1.0,0.7457631074219164
+64,40,0.6280381069007024,2.0,1.3786173456400896,0.0007076205190907098,0.036441222195183066,0.8277882537051249,0,1.0,0.7601270230023411
+64,41,0.6677201021545801,1.95,1.3777526796563784,0.000709047693861568,0.036731721826130895,0.8167034579993149,0,1.0,0.7590670071819334
+64,42,0.6721826426761477,1.95,1.3779158228132293,0.0007067673043245843,0.03668803908924249,0.8167271964176719,0,1.0,0.740608808920492
+64,43,0.6501276289157458,2.0,1.3807825354043939,0.0007051865266541925,0.03659858235698055,0.8280960000320198,0,1.0,0.7670920963858193
+64,44,0.6715367579004989,1.95,1.3801155412689181,0.0007060701596273954,0.036734846034460755,0.8170560210322583,0,1.0,0.7717891930016628
+64,45,0.6591715832648846,1.95,1.3801434076875456,0.0007041443398058591,0.036678987343537986,0.8170596106255312,0,1.0,0.7972386108829485
+64,46,0.6383517794676672,2.0,1.3792070415269324,0.0007050472948498796,0.036629046159197196,0.827871568102788,0,1.0,0.7945059315588904
+64,47,0.6626618700134713,1.95,1.378728284273573,0.0007064334252656414,0.03669393612351475,0.8168486776096877,0,1.0,0.8088729000449044
+64,48,0.6831989875170666,1.95,1.3636413234449192,0.0006872493264120822,0.03593272542087872,0.8145749705295018,0,1.0,0.8106632917235553
+64,49,0.6726609677428913,1.95,1.3630837027903904,0.0006859333398540502,0.03581575184186072,0.8144903336084152,0,1.0,0.8422032258096376
+65,0,0.18200938257692767,2.0,1.3825075046489868,0.0006994908552538385,0.036526433435125585,0.8283397958862843,1,0.14758444878024335,0.2432520102161011
+65,1,0.21311366966366413,1.95,1.382291754333929,0.0006994723552211322,0.036627743415847416,0.8173791173990302,1,0.1900822337178651,0.29026925392172703
+65,2,0.18890034197784683,1.95,1.381791217225907,0.0006993927092610727,0.036568321148078654,0.8173043663219707,1,0.21591060890294955,0.2751203280555567
+65,3,0.17486345144675491,1.9,1.3862121596580326,0.0007001215225584316,0.036385659466334735,0.8065290278342333,1,0.2302537414731832,0.24253984952493876
+65,4,0.20555819866201439,1.95,1.3862380202277529,0.0007001616155808869,0.03677670540334462,0.8179676461063293,1,0.2671610340064191,0.26231261686482243
+65,5,0.20346738679210108,1.95,1.386264892400669,0.0007001574413723347,0.03670384066394005,0.8179716460036497,1,0.3131856261855399,0.22731045439295028
+65,6,0.2840516943237378,2.0,1.3862760474940568,0.0007001861754108528,0.0364272795192411,0.8288751906011254,1,0.3652201735162298,0.2932120830574861
+65,7,0.29894594184279133,2.0,1.3862706898316102,0.0007001573557784364,0.03671534902714786,0.8288744224873571,1,0.4036542589618627,0.3249474608601542
+65,8,0.2971817047463974,2.0,1.3842942155774265,0.0007003311728330606,0.036702066706727925,0.8285939433061912,1,0.44193631437436265,0.33469059665550777
+65,9,0.33450942364738906,2.0,1.3838928396259877,0.0007003538477805041,0.036337109580867895,0.8285369364009708,1,0.4663688082469417,0.35987300116204135
+65,10,0.3577133582494744,2.0,1.383935952884457,0.0006998113869090021,0.0366191550825698,0.8285429070103623,1,0.4980654915051724,0.39495720549135155
+65,11,0.339793234917452,2.0,1.3838374271943792,0.0006993212428908004,0.0366831393522219,0.8285287707729379,1,0.5156551472586772,0.37843725337993694
+65,12,0.41190927289953666,2.0,1.383393235887503,0.0006992630669554757,0.03649235148522609,0.8284656392821172,1,0.5598937445466767,0.45983925026955325
+65,13,0.3787979729459126,2.0,1.3839696495811629,0.0006986297891136674,0.03660638925887376,0.8285473581878666,1,0.5988986755201585,0.430795009126164
+65,14,0.4023248148748224,1.95,1.3835779244763995,0.0006982891725101499,0.03665253824356873,0.8175706733491281,1,0.6217738229812261,0.44538428560777316
+65,15,0.44182794172103795,1.95,1.377792270396168,0.0006973920722196932,0.03655039847314927,0.8167058950097901,1,0.6444796974174032,0.4801202091802558
+65,16,0.42312899414619864,1.95,1.3764544096750326,0.0006969673932569476,0.036510268052744724,0.8165054086519039,1,0.69306603007132,0.4530086070589023
+65,17,0.4995067865727954,2.0,1.3775947583651094,0.0006998900378195333,0.036366313546868256,0.8276402245280725,1,0.7511939550770735,0.4967640151398866
+65,18,0.46936742517893043,2.0,1.3782530130254536,0.0006985355474667481,0.03622965205477866,0.8277337192694015,1,0.7987478340443652,0.46622763853728105
+65,19,0.5169429609581897,1.95,1.3789995625282807,0.0007010249436290926,0.03646344459883762,0.8168876412043438,1,0.823928243302892,0.4912388787901093
+65,20,0.49268441951691816,1.95,1.3830353564578997,0.0006979230504014485,0.03646435149587744,0.817489626748789,1,0.8700312388243685,0.448906413290569
+65,21,0.5475328803649613,1.9,1.3824432240202358,0.0006974901570785311,0.0364654927661988,0.8059394206728195,1,0.9083056040038224,0.48070212921144084
+65,22,0.5732759036365264,1.9,1.3833409299430217,0.0006983334929536302,0.03643706818550875,0.8060800479333179,1,0.9472226424321497,0.5146228222122214
+65,23,0.5530475720546955,1.9,1.383920062948897,0.0006992507014292671,0.03656049467416796,0.8061708457100454,1,0.9441859616722803,0.517910624619278
+65,24,0.5542598161408532,1.8499999999999999,1.3847581784438519,0.0006993181794358993,0.0367320365140395,0.7943186889123303,1,0.9756422020093242,0.5133431177904116
+65,25,0.6068984231072061,1.9,1.3841065783591036,0.00069912283539519,0.03661549098835284,0.8061999488783024,1,1.0,0.5563280770240202
+65,26,0.5696596681715613,1.9,1.3845717564131295,0.0007000834480542877,0.03665949194592456,0.8062729187751027,1,1.0,0.5321988939052043
+65,27,0.554158783569369,1.8499999999999999,1.383885191437366,0.0007000929850082065,0.036677265073451655,0.7941762799964854,1,1.0,0.4805292785645633
+65,28,0.592767808718707,1.9,1.3829785502164467,0.0007000872366075805,0.036687498306194985,0.8060239446557235,1,1.0,0.5092260290623567
+65,29,0.5987637574360134,1.9,1.3832917607351984,0.0007014823993782721,0.036679689816030855,0.806073346403093,1,1.0,0.5292125247867112
+65,30,0.6210838199176785,1.95,1.3831793975848128,0.0007027782318735135,0.03671802511206616,0.8175125654030915,1,1.0,0.5702793997255948
+65,31,0.6424163975129112,1.95,1.3833905378609024,0.0007014764579585647,0.03672381194899478,0.8175436740557284,1,1.0,0.6413879917097041
+65,32,0.5908088520934884,1.95,1.3835810036623952,0.0006986131974830485,0.03637454672966976,0.8175712292614895,1,1.0,0.6026961736449613
+65,33,0.6495333775966323,1.9,1.3831906832940903,0.0006981263488624755,0.03663524935174148,0.806056496282268,0,1.0,0.665111258655441
+65,34,0.6329528859983716,1.9,1.3760177154713786,0.0007088748685798145,0.03650898686884678,0.8049360634180452,0,1.0,0.6431762866612386
+65,35,0.5964486895786947,1.95,1.376281180156718,0.0007061613607733162,0.03662315978997677,0.816482208479054,0,1.0,0.6548289652623156
+65,36,0.597045824377537,1.9,1.375905257296866,0.0007079053291629649,0.036646687398035914,0.8049181008214407,1,1.0,0.6568194145917899
+65,37,0.6240257016351155,1.95,1.3815216595621413,0.0006968938198629628,0.03646584047287362,0.817263366697582,1,1.0,0.6800856721170515
+65,38,0.6239934738665058,1.95,1.3807112937822488,0.0006963004128415823,0.036349258668283015,0.8171421350149947,1,1.0,0.6799782462216858
+65,39,0.6721132855731156,2.0,1.3795892143537458,0.0006955158754185955,0.0365268225705055,0.8279233052012919,1,1.0,0.7403776185770518
+65,40,0.6859238738232476,2.0,1.3814192132824086,0.0006973128475389582,0.03642342304120086,0.8281843733567904,1,1.0,0.7864129127441584
+65,41,0.6371831359640349,2.0,1.3824124120515258,0.0006988867419133215,0.03667783603554701,0.8283261021522966,1,1.0,0.7572771198801161
+65,42,0.6948935129395085,1.95,1.3820072065002096,0.0006980132163807148,0.03651643061281083,0.8173362032750382,1,1.0,0.8163117097983614
+65,43,0.7055958544921102,1.95,1.373707040752326,0.0007045739960080926,0.03642882507806133,0.8160957112345085,1,1.0,0.8519861816403669
+65,44,0.7246956998628309,2.0,1.3712788432851202,0.0007046423389057124,0.03616216985882652,0.8267387435139563,1,1.0,0.915652332876103
+65,45,0.7015117685611931,2.0,1.3689440212415047,0.0007043905248618927,0.036248213288824035,0.8264039719839834,1,1.0,0.9383725618706436
+65,46,0.6822868573218572,1.95,1.3694523829119023,0.0007098315031159333,0.0361913875464578,0.8154578806914164,1,1.0,0.9076228577395242
+65,47,0.7398101670792774,2.0,1.370271377274407,0.0007064589185418621,0.036536026492998634,0.8265949055304573,1,1.0,0.9660338902642579
+65,48,0.75,2.0,1.3680173711351853,0.0007064654583688793,0.03643607033973819,0.8262715898353258,1,1.0,1.0
+65,49,0.7179470910908659,2.0,1.3650193910938793,0.0007064349026916712,0.03652629994354238,0.8258408094164372,1,1.0,0.9931569703028862
+66,0,0.06334455265913169,1.95,1.3854006040280487,0.0007001418381674676,0.03643019092986072,0.817842918606276,0,0.16175222187735316,0.1954788796939681
+66,1,0.13058227671620493,1.9,1.3861440823898,0.0007000706787014391,0.03674012970357586,0.8065183889706734,0,0.1667402292856435,0.21295395000649173
+66,2,0.2190520747128174,1.9,1.3853655542371393,0.0007000357094358582,0.03668718330949737,0.8063968624846508,0,0.27307673186856374,0.1994046065513063
+66,3,0.20294646669876978,1.9,1.3842874287546958,0.0006989352272836041,0.03638567325409228,0.8062281450492794,0,0.2994970353848913,0.21049217514937757
+66,4,0.2646866718985866,1.95,1.3855232796612114,0.0007005976719008601,0.036768974031561964,0.8178613294098072,0,0.38835417448709053,0.19781667367916797
+66,5,0.21931344337853856,1.95,1.3837338468263578,0.00069840702879647,0.03660261192017615,0.8175939629922853,0,0.3996235949016272,0.19821335139295893
+66,6,0.28930855773673847,1.9,1.3843574414433621,0.0006988282400947015,0.03649811872101918,0.8062390490731073,0,0.46780779082525614,0.2072848046887867
+66,7,0.2854423911796907,1.9,1.378511465644197,0.000704335423058658,0.03668009016732197,0.8053258960243721,0,0.5021413047905721,0.21528623087820623
+66,8,0.307031092867435,1.95,1.3786620360668924,0.0007029985157144887,0.036511849346233714,0.8168377383939552,0,0.5356056624518849,0.24262942628893677
+66,9,0.3726163204823448,1.95,1.3788146622286366,0.0007016711982327962,0.036441235818673,0.8168601751449357,0,0.6420294888947419,0.2193484164148269
+66,10,0.38560070535281216,1.95,1.250525672445311,0.0008752427837525359,0.03675804466889264,0.7969397194310136,0,0.7032215182673414,0.21437366015291884
+66,11,0.3590481731611346,2.0,1.248287483087108,0.000879601445329635,0.036340067638615844,0.8084618809254976,0,0.7289984937307608,0.22482925222943423
+66,12,0.44680309774412247,1.95,1.2653149309184883,0.0008587136723523328,0.035988848838396405,0.799317207557484,0,0.8337973226382553,0.2109472289627344
+66,13,0.46811093455913855,1.95,1.3728629051531331,0.0006910219397594857,0.03634145240903831,0.8159649165161165,0,0.9020315928110297,0.22432765811575545
+66,14,0.49064656663106204,1.95,1.3722347491319016,0.000690563517221878,0.03619682855282317,0.8158704322751291,0,0.9678679267932351,0.21166465304589346
+66,15,0.49948975672898815,1.95,1.3714413400330643,0.0006900074284889958,0.03611351213130073,0.8157510446692284,0,1.0,0.1982991890966272
+66,16,0.5045292290158812,2.0,1.3046880576666562,0.0007477919773123026,0.035859557993386595,0.817004589883631,0,1.0,0.21509743005293702
+66,17,0.5046386860066134,2.0,1.3736350174919556,0.0006918042356404779,0.03627052303609597,0.8270723140742939,0,1.0,0.2154622866887114
+66,18,0.5073056645181937,2.0,1.3731836428748134,0.0006912530692694548,0.036431760965396534,0.8270075895684895,0,1.0,0.22435221506064562
+66,19,0.5132059004298234,2.0,1.3725208262899193,0.0006907482137829576,0.036351668522700664,0.8269125979545715,0,1.0,0.21068633476607793
+66,20,0.5036536934043988,2.0,1.374176913384948,0.0006918146561478301,0.036368698056722555,0.8271498072741706,0,1.0,0.17884564468132935
+66,21,0.48129341620147614,2.0,1.3236382024854345,0.0007278468708800253,0.03551740530039609,0.8198148954219796,0,1.0,0.20431138733825374
+66,22,0.5050011461424828,1.95,1.3716803930115056,0.0006902806302023697,0.03604141918718202,0.8157870540380647,0,1.0,0.18333715380827603
+66,23,0.4807466304740056,1.95,1.294868382380497,0.0007184112506071181,0.035798719704030715,0.8039717270900587,0,1.0,0.20248876824668527
+66,24,0.5016187833156902,1.9,1.3689169274975526,0.000689136475904506,0.03628652567563122,0.8038125003193743,0,1.0,0.1720626110523004
+66,25,0.49212232188154786,1.9,1.2619736350520312,0.000701410256129781,0.03398548236707325,0.7864026865498069,0,1.0,0.14040773960515943
+66,26,0.4831808823459525,1.95,1.2762978928667525,0.0006936704651235571,0.0343693377274376,0.80102057943672,0,1.0,0.14393627448650845
+66,27,0.4846954120779183,2.0,1.288167751870144,0.0006893878266952878,0.0345530479238459,0.8145040765978668,0,1.0,0.11565137359306091
+66,28,0.47921794614263424,2.0,1.3018439508543018,0.0006848419361256719,0.034570649956615504,0.8165601316922738,0,1.0,0.13072648714211413
+66,29,0.4652613960046412,2.0,1.3084773255227227,0.0006811815613683031,0.0352689907075725,0.8175505651066062,0,1.0,0.15087132001547063
+66,30,0.4829438806508322,2.0,1.3045177080524575,0.0006789319001145617,0.035460458710978845,0.8169585264627762,0,1.0,0.14314626883610734
+66,31,0.44603032760375255,2.0,1.3095832834310732,0.0006759937814991863,0.03539697339038678,0.8177139271145076,0,1.0,0.15343442534584176
+66,32,0.4882754884832615,1.95,1.3149003044645402,0.0006920265355310966,0.0352299783503,0.807101354669712,0,1.0,0.12758496161087174
+66,33,0.46739275882305165,1.95,1.32268792226663,0.000686925177445906,0.03515425317771683,0.8083093195063159,0,1.0,0.15797586274350528
+66,34,0.4734064793007492,1.9,1.3190613771818624,0.0006851875409241928,0.035623495846861544,0.7958298598107587,0,1.0,0.17802159766916387
+66,35,0.4894108505061828,1.95,1.3133419412286227,0.0006823805819640656,0.035224894552619145,0.8068556124888776,1,1.0,0.16470283502060945
+66,36,0.5154551400753217,2.0,1.3829529426468168,0.0006981313400243562,0.03661927795797154,0.8284027382643914,2,1.0,0.218183800251072
+66,37,0.4953249375382013,2.0,1.3838419010155432,0.0007017438286634925,0.03651815649287799,0.8285300947074318,2,1.0,0.21774979179400403
+66,38,0.5521546435317558,1.95,1.3832421437768094,0.0007020538757331536,0.036738959554740505,0.8175217099368713,2,1.0,0.2405154784391862
+66,39,0.5339125348959688,1.95,1.3843273160099534,0.0007014260302795466,0.036751115672860095,0.8176833529193046,2,1.0,0.2797084496532291
+66,40,0.5165431615285642,2.0,1.3844318552859018,0.0007006059571807292,0.03665332545562737,0.8286135688881,2,1.0,0.2884772050952139
+66,41,0.581602867729227,2.0,1.383867321616756,0.000700735302341777,0.036753343847268596,0.8285334195766643,2,1.0,0.33867622576409007
+66,42,0.58634430428762,2.0,1.3847602914717776,0.0007003101397887433,0.03655543127724039,0.828660122100655,2,1.0,0.3544810142920665
+66,43,0.5927712232498169,2.0,1.3852239006115499,0.000699991891251122,0.03651373187542946,0.8287258461232896,2,1.0,0.3759040774993896
+66,44,0.6014725779561981,2.0,1.3853477515346255,0.0006996893858430885,0.03675280186080128,0.8287433388553085,2,1.0,0.4049085931873271
+66,45,0.611138863212665,2.0,1.378168386207541,0.0006945675965286308,0.03627790644471407,0.827720520294399,2,1.0,0.4371295440422167
+66,46,0.5211225797648276,2.0,1.379805193146405,0.0006959998286219027,0.0364184687439235,0.827954210597297,2,1.0,0.4037419325494251
+66,47,0.5590564730114619,1.95,1.3812344283578613,0.0006966580807562964,0.036615194941095205,0.8172203961188315,2,1.0,0.4301882433715396
+66,48,0.5196889910367984,1.95,1.380372267239132,0.0006960918777520614,0.03653166856195375,0.8170914095960714,2,1.0,0.39896330345599484
+66,49,0.5036621310281708,1.9,1.384987108814545,0.0006992508618582569,0.03658121054521629,0.8063375272506326,2,1.0,0.3455404367605691
+67,0,0.026357922675752155,1.95,1.3820109381659922,0.0007005438954091512,0.036530457149496,0.8173375160499102,1,0.14308728253849043,0.19707669886785328
+67,1,0.15584764035001672,1.9,1.3847361634942834,0.0007014691988003219,0.03671313530231845,0.8062990302143029,1,0.18535155040927034,0.20569006728769534
+67,2,0.20169799770252347,1.9,1.3820817396406433,0.0007005012778634411,0.03657205822437316,0.8058838199677916,1,0.23389435015624244,0.22713419213342165
+67,3,0.22165434281851887,1.9,1.3861679897528425,0.0007001478985946454,0.036457514900943545,0.8065221437025477,1,0.2620010071377826,0.25617979987801937
+67,4,0.2007822409207916,1.95,1.3860868482084494,0.0007001381752347274,0.03677285099366635,0.8179451290472505,1,0.3044259801248137,0.2300394962362204
+67,5,0.2812620022727722,1.9,1.3861170639619904,0.0007002525404608828,0.03669840080181523,0.8065142295639847,1,0.3620822077388497,0.2880970639241078
+67,6,0.2606153101623361,1.9,1.386109407974839,0.0007001408241086699,0.03654108118966801,0.8065129999852125,1,0.38133457044382824,0.29360493994934916
+67,7,0.3323435851060277,1.8499999999999999,1.3862012220331605,0.0007001358327956766,0.03678517572807698,0.7945546151515787,1,0.43673683872373104,0.35882949872178416
+67,8,0.2960968777473715,1.8499999999999999,1.383353458764141,0.0006996730904473178,0.03638976519480431,0.7940892118944263,1,0.4679517147976605,0.3297206394276909
+67,9,0.3726718189172304,1.7999999999999998,1.3841032562321112,0.0006995579555304195,0.036659416412685414,0.7816832081364119,1,0.5268047550522615,0.3731663896544192
+67,10,0.322835376528228,1.7999999999999998,1.3842992583700968,0.000700334758409446,0.03654288890031214,0.7817169200508468,1,0.5344154092288723,0.3302307094555969
+67,11,0.3969673107153646,1.7499999999999998,1.3848789321143211,0.0007001129087576164,0.036635442769838496,0.7687522604177357,1,0.5790426542249442,0.38450083008462327
+67,12,0.37518807067413673,1.7499999999999998,1.3849556145850244,0.0007007897806023948,0.03660923552526797,0.7687661327980612,1,0.598065824363927,0.3865391364285531
+67,13,0.41715775860867627,1.6999999999999997,1.384522355364506,0.0007008714124699778,0.036541559946679174,0.7550859217107048,1,0.6340574845560367,0.4117825492875385
+67,14,0.4674073802351208,1.6999999999999997,1.3709780435163608,0.0007003149553998539,0.036266543458619446,0.7525723036880545,1,0.6900987764309019,0.47122623220920007
+67,15,0.48181395155322576,1.6999999999999997,1.3716383340361809,0.0006982903636796339,0.03614109794813217,0.752694480315475,1,0.7266315848733572,0.5038710586796096
+67,16,0.5379781131869804,1.7499999999999998,1.3696859693566323,0.0006978478156138177,0.0363050954871821,0.7660395408067666,1,0.7908700096042176,0.5721003644843111
+67,17,0.5455182259735485,1.7499999999999998,1.3703518779692991,0.0006958877156356177,0.03634951504765688,0.7661581634358162,1,0.8182643090376994,0.5940416745282289
+67,18,0.5913402052593424,1.7999999999999998,1.3827346901605622,0.0006999284736330267,0.036521022143217036,0.7814496926072515,1,0.8647919192530196,0.6514114585271151
+67,19,0.5768751101452898,1.7999999999999998,1.3821152732239486,0.0006990409662788389,0.03661138647667274,0.7813435831266766,1,0.893660377225685,0.6647031975167189
+67,20,0.5906424685384081,1.8499999999999999,1.3812320287250863,0.0006990188388124164,0.03660595977335352,0.7937419029703261,1,0.9203777596141776,0.6749712156424567
+67,21,0.6085454838316773,1.9,1.3803026883074958,0.0006990344299309853,0.03654088379809065,0.8056049030233997,1,0.9524988302541182,0.6918198391000999
+67,22,0.6001099528147812,1.95,1.3792041430203354,0.0006989498518303188,0.036472199863999175,0.8169176201112325,2,0.9787160056229525,0.662078501885334
+67,23,0.6628912874856274,2.0,1.3716087560932693,0.0007169193498810252,0.03658602301330803,0.8267895120979817,2,1.0,0.7096376249520912
+67,24,0.7002863106279643,2.0,1.3708330907035726,0.0007193985848970381,0.03659003518952158,0.826679112427934,2,1.0,0.7342877020932144
+67,25,0.7105569780085818,2.0,1.3689647878369682,0.0007209203709318535,0.03667367574060974,0.8264116937916001,2,1.0,0.7685232600286059
+67,26,0.7179226223480067,2.0,1.3667963073850227,0.0007223292242027235,0.036675096688835014,0.8261007981129487,2,1.0,0.7930754078266891
+67,27,0.6290464218964795,2.0,1.3643213766025613,0.0007235476858146609,0.036262075251320317,0.8257453174872413,2,1.0,0.763488072988265
+67,28,0.6866920542770057,1.95,1.3666676566015155,0.0007187781244327782,0.0364266594242913,0.8150411466821214,2,1.0,0.7889735142566856
+67,29,0.7026048545070085,1.95,1.3651139283601286,0.000723481796769529,0.03655392728510033,0.8148082284598932,2,1.0,0.8420161816900282
+67,30,0.7196701239388894,2.0,1.3839497188499492,0.0007015919018892137,0.03669691677734466,0.8285453684616698,2,1.0,0.898900413129631
+67,31,0.6640984854555971,2.0,1.382883762799891,0.0007017377261062641,0.036596695548194995,0.8283939293637352,2,1.0,0.8803282848519903
+67,32,0.7313617223657621,1.95,1.3834893373669273,0.0007007140563807673,0.03673847340966603,0.8175581836873231,2,1.0,0.9378724078858737
+67,33,0.7693014832944786,1.95,1.3821059528575965,0.0007007039877950767,0.03660282240930024,0.817351748820902,2,1.0,0.9643382776482622
+67,34,0.7752868514193866,1.95,1.3823403027966474,0.0007028767061694893,0.03671507672157307,0.8173873804452633,2,1.0,0.984289504731289
+67,35,0.6819295181067213,2.0,1.3820540338412315,0.0007048205253642728,0.03650015868567345,0.8282768220499268,2,1.0,0.9397650603557375
+67,36,0.6734590633707243,1.95,1.3827380007399992,0.0007030958665934054,0.03658137626256406,0.8174468008452151,2,1.0,0.9115302112357473
+67,37,0.7085010369180412,2.0,1.382779022759715,0.0007017271568631315,0.03666101384880568,0.8283790362717582,2,1.0,0.928336789726804
+67,38,0.6641860538458519,2.0,1.3843712484984505,0.0007010782829780924,0.036757047286315014,0.8286050959157846,2,1.0,0.880620179486173
+67,39,0.7274872805380262,1.95,1.3842741881333418,0.0007001818893429516,0.03653666626719991,0.8176750616667785,2,1.0,0.9249576017934206
+67,40,0.7644827231766683,1.95,1.3834288149823497,0.0007003571236728185,0.03664724598707865,0.8175490497066147,1,1.0,0.948275743922228
+67,41,0.7068954600851334,1.95,1.3620378372757522,0.0006963566952497952,0.036422789911865754,0.8143354076132662,1,1.0,0.9563182002837777
+67,42,0.6838511499967384,1.9,1.3639514393465724,0.0007034405281975875,0.03640699701768271,0.8030327965012269,1,1.0,0.9128371666557946
+67,43,0.7467057324554357,1.8499999999999999,1.3641946046555447,0.0006999971970646387,0.036100308714470855,0.7909389714329158,1,1.0,0.9890191081847854
+67,44,0.75,1.8499999999999999,1.3601770902636412,0.0006993819764166097,0.03625081625369539,0.7902736768571711,1,1.0,1.0
+67,45,0.6950395610973499,1.9,1.3563784166775152,0.0006986203935326802,0.03607941751911097,0.8018306817253101,1,1.0,0.9501318703244994
+67,46,0.75,1.8499999999999999,1.3576540974727342,0.0006952567114163184,0.0361170491219872,0.7898538373162713,1,1.0,1.0
+67,47,0.6987131653573284,1.8499999999999999,1.3530478912213288,0.0006941424079764388,0.03575740027455941,0.789087885612977,1,1.0,0.9623772178577611
+67,48,0.7136560127812492,1.7999999999999998,1.3529657534292667,0.000690842211694422,0.03603502566950634,0.7763198420821003,1,1.0,0.9788533759374973
+67,49,0.7130476909762489,1.8499999999999999,1.3548762920992237,0.0006984643047922965,0.03601397356067164,0.7893934592745427,1,1.0,0.9768256365874959
+68,0,0.06239156411973987,1.9,1.385156983273235,0.0007001024894891248,0.036425896154475994,0.8063643189582552,0,0.1568077372972072,0.19889489733619
+68,1,0.21051532986195803,1.8499999999999999,1.3862248804262092,0.0007001909825480304,0.036752612807711804,0.7945584950682356,0,0.2647308705607946,0.1820766054588006
+68,2,0.2110700590065762,1.8499999999999999,1.3844255244342656,0.0006993643787751552,0.03662383347261053,0.7942643508391333,0,0.32387508578524216,0.20506674897493113
+68,3,0.23608054649046586,1.9,1.3855040917360066,0.0007006506662334006,0.03652661005862403,0.8064186821731846,0,0.3660406997064851,0.23221422202623934
+68,4,0.2170178339450985,1.9,1.3857106788216063,0.0007004412624944398,0.036770586178915834,0.8064508645732682,0,0.354405040503897,0.25085272581179896
+68,5,0.2187056386304871,1.95,1.3858039977153185,0.0007002849980700437,0.03662194685260376,0.817903049474184,0,0.34890151457226326,0.26381677600527265
+68,6,0.28192880533046644,2.0,1.3858435823850521,0.0007001324583009345,0.03640565877051742,0.8288138253028521,0,0.4119548522934401,0.25715621471030126
+68,7,0.3241959737018993,2.0,1.3701056374738254,0.0007021195229784211,0.036359392362092055,0.8265699036835694,0,0.5182716024505499,0.222957775738931
+68,8,0.3557167419218932,2.0,1.3689350820142712,0.0007020696071490271,0.036475404486386205,0.8264020236300257,0,0.6094768179301653,0.20642004916609025
+68,9,0.38408026941094836,2.0,1.23489441211215,0.000868564042400214,0.036661094381504125,0.806375928073679,0,0.702549958435972,0.17686762012186522
+68,10,0.3757239672665333,2.0,1.3599222887159292,0.0006888549590680361,0.0358923496671306,0.8251014127251247,0,0.7355833636089993,0.20496873940977842
+68,11,0.41429622318558257,2.0,1.259340364337533,0.0008630165545072687,0.03657326138215929,0.8101624993345811,0,0.7914045229389975,0.19244804669994506
+68,12,0.45941158429066065,2.0,1.342424193463304,0.0006833386236849315,0.03590116815783775,0.8225602869482472,0,0.890631911163352,0.17719606608439947
+68,13,0.4773746732757566,2.0,1.3029053322699842,0.0006925079582244544,0.03554513753123921,0.8167213572916923,0,0.9576899583441465,0.18099563312699327
+68,14,0.46855284757329535,2.0,1.3109696615955435,0.0006877666509108266,0.03502897565351093,0.8179239932205971,0,0.9750105173682555,0.19516213541997707
+68,15,0.47576204845386316,2.0,1.307017689946749,0.0006857595259750708,0.034413750171470456,0.8173341095241107,0,1.0,0.18587349484621032
+68,16,0.4583352368721313,2.0,1.302887342965822,0.0006833631237382487,0.03463133200338032,0.8167159267175338,0,1.0,0.19445078957377093
+68,17,0.4833391098993566,2.0,1.3076541805713813,0.0007017615066554189,0.03557985348441908,0.8174338939677727,0,1.0,0.21113036633118842
+68,18,0.4620292191012041,2.0,1.367550177278313,0.000688853883146428,0.03625708787949029,0.8261994576339965,0,1.0,0.20676406367068026
+68,19,0.4841471067776207,1.95,1.3663246263875022,0.0006883596327502833,0.036230934307896395,0.814980256328788,0,1.0,0.2138236892587355
+68,20,0.4644505592070425,1.95,1.3682588014169936,0.0006913603300715878,0.03617686875320984,0.8152726317938793,0,0.9911746419535291,0.22660234141876948
+68,21,0.4689872593032041,2.0,1.3669888796125609,0.0006910278659369166,0.036067015478195276,0.8261194685166469,0,1.0,0.22995753101068034
+68,22,0.5172414866513108,2.0,1.3661247430754448,0.0006907985775196424,0.035988200972716676,0.8259952377866264,0,1.0,0.22413828883770234
+68,23,0.5156557087005498,2.0,1.369813062688556,0.0006910478897508554,0.0361497101416768,0.8265247835536145,0,1.0,0.21885236233516586
+68,24,0.4686269767126013,2.0,1.372518961028328,0.0006914889690340538,0.036421497491739084,0.8269125430289799,0,1.0,0.22875658904200422
+68,25,0.47284506044074076,1.95,1.3712636706730197,0.000690828667503468,0.03636064484066781,0.8157245861334211,0,1.0,0.24281686813580244
+68,26,0.49931101320145876,2.0,1.3694853807814935,0.0006899316641961989,0.036059632055621176,0.8264774748204702,0,1.0,0.26437004400486236
+68,27,0.5030777395503946,2.0,1.3723392528295761,0.0006935305752143019,0.0361300371822846,0.82688740469947,0,1.0,0.2769257985013153
+68,28,0.48877839248510724,2.0,1.3740019057595054,0.0006968153150329955,0.036198983645300234,0.8271262145532262,0,1.0,0.29592797495035744
+68,29,0.49045265386548464,2.0,1.3726715665484366,0.0006964816666075932,0.03634569488279958,0.826935813135335,0,1.0,0.3015088462182821
+68,30,0.5304049627633828,2.0,1.3712405753529007,0.0006961425145279499,0.03644197312243982,0.8267308267435763,0,1.0,0.3013498758779424
+68,31,0.49445694596279155,2.0,1.3710985677046776,0.0006945647138369724,0.0364130015774328,0.826710031562107,0,1.0,0.31485648654263837
+68,32,0.49723634057314914,1.95,1.3696495343257846,0.0006941138219800788,0.03633161317436416,0.8154828173874428,1,1.0,0.32412113524383035
+68,33,0.5186709171338179,2.0,1.3756366643918745,0.0007083887674179617,0.03656281632252999,0.8273631473258141,1,1.0,0.32890305711272605
+68,34,0.5616874962821952,2.0,1.3755882324645003,0.0007110646348419402,0.03646101531050651,0.8273569939499658,1,1.0,0.3722916542739835
+68,35,0.5345467950196185,2.0,1.373992051983272,0.0007116380958930637,0.03668990649784116,0.8271290445314303,1,1.0,0.38182265006539506
+68,36,0.5822601693556712,1.95,1.3734326135448194,0.000714643383864567,0.03661572623526284,0.8160575436686314,1,1.0,0.4408672311855702
+68,37,0.5366886145460789,1.95,1.3822459741764062,0.0006984166936915909,0.03662599869688375,0.8173719685053172,1,1.0,0.42229538182026266
+68,38,0.5308811438819127,1.9,1.3817412374364815,0.0006985369847744359,0.03635990929246331,0.805829933229812,1,1.0,0.40293714627304217
+68,39,0.5427641867204507,1.95,1.3810138233539704,0.0006986153948891046,0.03646003782274585,0.8171880265880903,1,1.0,0.40921395573483565
+68,40,0.5235566442193734,2.0,1.3828467420297277,0.0006987636106012546,0.036567170186521086,0.8283878209148869,1,1.0,0.37852214739791146
+68,41,0.5824607364469838,2.0,1.368121588175308,0.000716654094705233,0.03664299417754708,0.8262894742293618,1,1.0,0.44153578815661265
+68,42,0.5844459084938335,2.0,1.3833797825741077,0.0006988094374357136,0.03648586157393617,0.8284635984868921,1,1.0,0.4814863616461114
+68,43,0.5467151346471427,2.0,1.3835403839065035,0.0006995154859395988,0.036454326585559936,0.8284866212597919,1,1.0,0.45571711549047556
+68,44,0.6075299188197041,1.95,1.3830597116814358,0.0006996926508635487,0.03671478623799686,0.8174937885694581,1,1.0,0.5250997293990136
+68,45,0.5544826781042083,1.95,1.382500016796318,0.0006987266559347047,0.03664447055350783,0.8174099801927761,1,1.0,0.48160892701402724
+68,46,0.5469272233219351,1.9,1.3819275760713055,0.0006988227507276181,0.036489576856748154,0.8058591770277479,1,1.0,0.4564240777397835
+68,47,0.586914142433954,1.95,1.3810925844590434,0.0006988760286685645,0.03656356877968972,0.8171998704230927,1,1.0,0.48971380811318
+68,48,0.5963296506095447,1.95,1.3814195496279487,0.0007001983294509817,0.03666451500557961,0.8172491037809768,1,1.0,0.5210988353651487
+68,49,0.6251447078208224,2.0,1.3813095589865232,0.0007014191338238422,0.03657764756462638,0.8281699382244819,1,1.0,0.5838156927360745
+69,0,0.022393580206367045,2.0,1.3822794402532028,0.0006997700657396886,0.036509350391900994,0.8283074437175697,1,0.1490087157712223,0.17596697965959376
+69,1,0.20347136825783613,1.95,1.3849107564579277,0.000700636572828584,0.03669708441307254,0.8177700792246195,1,0.21627496578555128,0.22320460647871862
+69,2,0.23583904441369286,1.95,1.3861057561920371,0.0007000423295827777,0.03671645246817488,0.8179479160904989,1,0.2588127105120066,0.2743798673629674
+69,3,0.27476109509416957,1.95,1.386022577532759,0.0007000087487131529,0.03637505989409561,0.8179355197002282,1,0.31992612649487806,0.3226354816540612
+69,4,0.24644049484101624,1.95,1.385892698184091,0.0006999529669401618,0.03674093954808002,0.8179161610428219,1,0.32850915325807406,0.31678944512595536
+69,5,0.2949106633576041,1.9,1.3859862623978851,0.0007001317079014996,0.036705277161379495,0.8064937795741819,1,0.3629460225002901,0.36577418119162686
+69,6,0.2668236925638378,1.9,1.3859385675012557,0.0006999965846691387,0.036545242740106086,0.8064862939489322,1,0.39651948562893774,0.3273863277075422
+69,7,0.26720925954534747,1.8499999999999999,1.386066424854993,0.0007000240599148797,0.036778130316539134,0.7945325738189594,1,0.4255539687904285,0.2899589067639202
+69,8,0.27674274332611304,1.9,1.3845855358167831,0.0006997983731600297,0.03641479705456385,0.8062749820112504,1,0.46834978465571414,0.2646760982127579
+69,9,0.32783045013171286,1.95,1.3851313946945418,0.0006997927067699827,0.0365855800643428,0.8178027054352712,1,0.4927615405137334,0.30241944642073176
+69,10,0.3207308909251827,1.95,1.3850322444383019,0.0006995234207601468,0.0367276181095466,0.8177878511856761,1,0.5048707198119351,0.3292753433346955
+69,11,0.35864625886748064,2.0,1.3847631613835651,0.0006994663527876558,0.036606751864407004,0.828660289971893,1,0.5340932987899826,0.3500297978382921
+69,12,0.4127266050645027,2.0,1.384606718049155,0.0006991854433148515,0.03643716747901295,0.8286379968509315,1,0.5982245319160281,0.4114559743269716
+69,13,0.39678624909772225,2.0,1.3826440712952173,0.0006979448738226548,0.0365557516357506,0.8283587742173039,1,0.6326752692134332,0.41238713804116317
+69,14,0.39115567677572877,2.0,1.3648860740002942,0.0006945166805295227,0.036128386738650986,0.8258182052165688,1,0.6683349568227918,0.37940564682204003
+69,15,0.40602043116287223,2.0,1.3847197880541928,0.0006993412512041906,0.0363900728974188,0.8286540961086423,1,0.6925284786189547,0.36336346571763434
+69,16,0.4428982445254648,2.0,1.3851018162089006,0.0006999811829323256,0.03663735811352544,0.8287085138108792,1,0.7195818619980017,0.3835516657542138
+69,17,0.42579036157418293,2.0,1.3853195813685861,0.0006997799319857801,0.03674996859107375,0.828739366390615,1,0.7209761822713598,0.3913329622187964
+69,18,0.4401694880490153,2.0,1.3855427637620288,0.0007002912670341515,0.0364700392134303,0.8287711855660972,1,0.7518508990883557,0.39809709471224325
+69,19,0.44618609783055574,2.0,1.3855804838003576,0.000700773976626245,0.03668003320766045,0.8287766753304987,1,0.767601845716652,0.3971511984796497
+69,20,0.4352143297287539,2.0,1.385470368763603,0.0007012125995928595,0.03677003221541507,0.8287611732869851,1,0.8004976456227464,0.3500509049321845
+69,21,0.5144305749169188,2.0,1.361956133954049,0.0007176259291831442,0.03609758158872503,0.8254030136945337,1,0.84753577234284,0.41805421993260916
+69,22,0.5362602155051017,2.0,1.3809599211723045,0.0007061143716515438,0.03667802792555947,0.8281215140934135,1,0.8925008731320291,0.4641995541743002
+69,23,0.5812769393235373,2.0,1.3803970612732501,0.0007073743776284172,0.03674685988719872,0.8280417427381969,1,0.9365582235709605,0.5221788329838436
+69,24,0.5969019821250713,2.0,1.380989074400093,0.0007055313496423701,0.03640417584279239,0.8281254976482328,1,0.974992678701377,0.5563497021484015
+69,25,0.5868913426400386,2.0,1.3803209875142624,0.0007066403075976754,0.036565869366722036,0.8280307013737317,1,0.991220193699517,0.5680108838674393
+69,26,0.6165296220932274,2.0,1.3821664474173454,0.000705212946990667,0.03677626580829621,0.8282929221527443,1,0.9989445818385806,0.589839297859317
+69,27,0.5800259864948951,2.0,1.381446163412958,0.0007060719013287236,0.03657629094438222,0.8281907008731512,1,1.0,0.5667532883163168
+69,28,0.5709797882870065,1.95,1.3807782764636063,0.0007071476179336667,0.03667279374167137,0.8171553848501879,1,1.0,0.5365992942900215
+69,29,0.5850717328475696,2.0,1.3798680774232466,0.0007082691611031626,0.036331493634395154,0.8279666632917551,1,1.0,0.5502391094918986
+69,30,0.5631422270203196,2.0,1.3816865708471002,0.0007063362666997791,0.03647716632734677,0.8282249811773751,1,1.0,0.5104740900677318
+69,31,0.5802310863092266,1.95,1.3808813868498053,0.0007070796158134659,0.036551206064157266,0.8171707700036294,1,1.0,0.5341036210307553
+69,32,0.585724746466847,2.0,1.38199486750214,0.0007055421272319754,0.036481717889732326,0.8282686116829759,1,1.0,0.5524158215561566
+69,33,0.5686983388838894,2.0,1.3828254538705274,0.0007039428213203506,0.03659098006162764,0.8283862671220611,1,1.0,0.528994462946298
+69,34,0.6107201631210979,2.0,1.3820341689361997,0.0007044583181783734,0.036624326451210616,0.8282738935221214,1,1.0,0.5690672104036594
+69,35,0.6002337810715775,2.0,1.3815563710840315,0.0007058568854555328,0.03677562918646189,0.8282063206655181,1,1.0,0.6007792702385917
+69,36,0.6058537815701919,2.0,1.37960576167216,0.0006997257241409392,0.036486648842517545,0.827926862130689,1,1.0,0.6195126052339728
+69,37,0.6076199840433757,2.0,1.378185853271495,0.0006996228410585565,0.0364788368472317,0.8277244527975262,1,1.0,0.6253999468112523
+69,38,0.6116625577811213,2.0,1.3765759703093745,0.0006994479596276271,0.03651838752073065,0.8274947177675837,1,1.0,0.6388751926037376
+69,39,0.6113992475119533,2.0,1.374763966418695,0.0006991503015705358,0.03621724929579441,0.8272358206735204,1,1.0,0.637997491706511
+69,40,0.6132716005371712,2.0,1.3727586743645093,0.0006988424326030496,0.036228409574350494,0.8269489547118956,1,1.0,0.6442386684572374
+69,41,0.5966170857510741,2.0,1.3705493014530148,0.0006983365271796102,0.03641261162368599,0.8266324103420589,0,1.0,0.6220569525035802
+69,42,0.6103865986865641,2.0,1.3709777498856202,0.0007140616619625342,0.03653997615639948,0.8266983091081245,0,1.0,0.6346219956218802
+69,43,0.5907611449804501,2.0,1.3699976568151482,0.0007166747143043917,0.03656300405215142,0.8265585971728185,0,1.0,0.6358704832681669
+69,44,0.5884073899403153,2.0,1.3685295891581575,0.0007179664020634502,0.03667359910977033,0.8263484055514012,0,1.0,0.6280246331343841
+69,45,0.5912087961903935,2.0,1.3668775931222716,0.0007191865729505047,0.03641680189296556,0.8261115722820973,0,0.998151759409863,0.6398269747548275
+69,46,0.5967853667098213,2.0,1.3650237546154593,0.0007202648207919044,0.036317032409698205,0.8258454152164164,0,1.0,0.6559512223660708
+69,47,0.6341390211052937,2.0,1.3629520548134773,0.0007212802961008321,0.03654279735649932,0.825547544804323,0,1.0,0.6471300703509789
+69,48,0.6285327658143224,2.0,1.3643072119264832,0.0007165327153559983,0.036441047294885606,0.8257412605268766,0,1.0,0.6284425527144077
+69,49,0.6327041393947296,2.0,1.3648894505600229,0.0007123041937109015,0.036383474009256324,0.8258238080388732,0,1.0,0.6090137979824316
+70,0,0.18671157940726524,2.0,1.3823369164138675,0.0006997567947687461,0.0365100269739317,0.8283156137163259,1,0.1454791046144586,0.2617331252049394
+70,1,0.1758680897213545,1.95,1.3820246486953738,0.0006997415685707148,0.03662366748867631,0.8173393234126924,1,0.1779008353329946,0.28235918529385556
+70,2,0.16861007604638922,2.0,1.3821209449185974,0.0007006176058826468,0.036597097478678134,0.8282851433433812,1,0.20845741136271886,0.2507570383376722
+70,3,0.1993116878010575,2.0,1.3861323066215796,0.0007000721183435569,0.03635718728052913,0.8288547689135145,1,0.23910393761158852,0.27890037585474037
+70,4,0.19192196764212463,2.0,1.3862135358144367,0.0007001137856735894,0.03672197362812233,0.8288663031563478,1,0.27817991293023997,0.23550000823342876
+70,5,0.22202555899965415,2.0,1.3862078890489113,0.0007001177255944627,0.0367471254463365,0.8288655032961028,1,0.30742419286250217,0.2635196061821776
+70,6,0.21831994336296956,2.0,1.3862598597608597,0.0007001502460456808,0.036381506915303854,0.828872884310242,1,0.34859776050576147,0.22960279720221655
+70,7,0.29817615733868424,2.0,1.3862400212688712,0.0007001348598938921,0.036713539646476945,0.8288700659832026,1,0.39876371777977154,0.29556890075591885
+70,8,0.32795132289478734,2.0,1.38618607151857,0.0007001033893116295,0.036754725948979335,0.8288624044449932,1,0.4424912687023239,0.33651605137952595
+70,9,0.3667431244940142,2.0,1.3847282345218896,0.0006993764702347352,0.03644274954982486,0.8286553053907699,1,0.5010575549834924,0.3877336750020575
+70,10,0.35029812440920094,2.0,1.3848811406624901,0.0006997683401495916,0.03665145740402688,0.8286771260522993,1,0.5308071308565381,0.39325090688861897
+70,11,0.3543975793699675,2.0,1.3846111569497883,0.0006997991381806163,0.03671242546640571,0.828638801446046,0,0.5814611609587758,0.3727103832881906
+70,12,0.3526736667465097,2.0,1.3533179419304915,0.0006988877480120348,0.035719912203018796,0.824149206404071,0,0.5908900694527637,0.387725463218014
+70,13,0.3932541087301219,2.0,1.3580780759702733,0.0006964825091740937,0.036014348542220534,0.8248373205909023,0,0.6165228209881993,0.4221499344494739
+70,14,0.4648624451148068,2.0,1.368613364824025,0.0007031577606873002,0.03645146343872683,0.8263561769642833,0,0.7200115044475137,0.42285947778600436
+70,15,0.4167821996815646,2.0,1.3665743718448353,0.0007028747932755738,0.036563898630090706,0.8260633224700261,0,0.7280361836306654,0.4185590874309948
+70,16,0.48836956388087155,1.95,1.3694018041608442,0.0007006540212028023,0.03645874419134039,0.8154475068843784,0,0.7913546617997785,0.4394256638698673
+70,17,0.49570246719564426,1.95,1.3699830566919122,0.0007056214678393942,0.0362235811555984,0.8155364597855195,0,0.8367491042622301,0.4700094183025072
+70,18,0.5442976336966409,2.0,1.3399944307943583,0.000671106695810358,0.03514152269447883,0.8222017970426959,0,0.9030423438958043,0.4769356537943969
+70,19,0.5757424979248886,2.0,1.347090954213519,0.0006808611005333728,0.035486523125893066,0.8232396773143066,0,0.9833805693655401,0.47463423392890863
+70,20,0.5658339131394267,2.0,1.3514759386201962,0.0006899356334978885,0.036003344325388806,0.8238794925116516,0,1.0,0.48611304379808884
+70,21,0.5731472423503022,2.0,1.3524500122870844,0.0006875647555415178,0.03619251703803772,0.824020100428244,0,1.0,0.5104908078343406
+70,22,0.5785529876223406,2.0,1.3526106650007084,0.000685459887972207,0.03600755536073097,0.8240427852270569,0,1.0,0.5285099587411354
+70,23,0.5829803208533795,2.0,1.352128958280989,0.0006835326938733489,0.03550413039702976,0.8239723695979361,0,1.0,0.5432677361779314
+70,24,0.6013452553370531,2.0,1.3511547472636973,0.0006816370333491362,0.035702388284785384,0.8238304733290064,0,1.0,0.537817517790177
+70,25,0.5869826455561907,2.0,1.3550213203349357,0.0006878572383266698,0.03592449610030687,0.8243927423957375,0,1.0,0.5566088185206356
+70,26,0.5906138262714131,2.0,1.353867078635146,0.0006855777882585141,0.03587163971226105,0.8242249205210803,0,1.0,0.5687127542380436
+70,27,0.6097897101384812,2.0,1.352441139570502,0.0006835403709085376,0.035954838475278396,0.8240176466136367,0,1.0,0.5659657004616035
+70,28,0.614468720673648,2.0,1.3554853291737854,0.0006887040948574138,0.03586953320509815,0.8244601516660843,0,1.0,0.5482290689121597
+70,29,0.6096648348136562,2.0,1.3533790498804812,0.0006884039603704924,0.03558981491598646,0.8241550237641834,0,1.0,0.5322161160455203
+70,30,0.5861231099766584,2.0,1.3511092460089396,0.0006880411997135901,0.035894243227040455,0.8238257284299633,0,1.0,0.5537436999221947
+70,31,0.6075738249582334,1.95,1.349738775308271,0.0006855026454166001,0.03587651648792995,0.8124653716047248,0,1.0,0.525246083194111
+70,32,0.563330700725898,1.95,1.3465082805937398,0.0006847635149992889,0.03587033667150878,0.8119724333976917,0,1.0,0.5444356690863266
+70,33,0.5847749150209408,1.9,1.3539158498360035,0.000684664948221868,0.035770242956062556,0.8014346517058932,0,1.0,0.5492497167364694
+70,34,0.6122799734943988,1.9,1.351638965795479,0.0006822520395035165,0.03586454024623737,0.8010712971475685,0,1.0,0.540933244981329
+70,35,0.6056863225586476,1.9,1.3493001925831964,0.0006815751185214968,0.03576449937050839,0.8006981209382971,0,1.0,0.5189544085288252
+70,36,0.5997235985823377,1.95,1.3467994101996348,0.0006806776473727684,0.03583500792909512,0.8120156296680527,0,1.0,0.4990786619411253
+70,37,0.573007022250758,2.0,1.3451653187264736,0.000680257117778637,0.03577514048543264,0.8229591158926671,0,1.0,0.5100234075025263
+70,38,0.5976025656154796,1.95,1.3447007722967483,0.000678671071238619,0.035566511474889345,0.8116944572860415,0,1.0,0.49200855205159855
+70,39,0.5442008198199442,1.95,1.3410867309354653,0.0006772660996570424,0.03538272901095461,0.8111410106608584,0,0.9851432908930599,0.5004783448757341
+70,40,0.5544999759724751,1.9,1.3483576851630292,0.000678117210763784,0.0354549066023207,0.8005465681152567,0,1.0,0.5149999199082506
+70,41,0.5986817182603394,1.95,1.3532390564969203,0.00067893835340311,0.035828797440106426,0.8129961141341651,0,1.0,0.4956057275344644
+70,42,0.5955002605591905,1.95,1.3515534485119156,0.0006780899400996346,0.03572636153585472,0.8127394519043946,0,1.0,0.48500086853063484
+70,43,0.5696182796958277,2.0,1.3488849124652962,0.0006765094959370388,0.03587215924762589,0.8234993107908462,0,1.0,0.49872759898609226
+70,44,0.5939956771403253,1.95,1.3486062438996056,0.0006761402479586513,0.035659040092274885,0.8122898968987632,0,1.0,0.4799855904677508
+70,45,0.5900958307962688,1.95,1.3449993498677641,0.0006740054710143164,0.035442761640665864,0.8117386636145116,0,1.0,0.4669861026542292
+70,46,0.5821463364378084,2.0,1.3421749728472276,0.0006723247623613206,0.03520235069768189,0.8225206934706487,0,1.0,0.440487788126028
+70,47,0.5536301578372039,2.0,1.3403727758390298,0.0006713607924488727,0.03530992323418083,0.8222571733226002,0,1.0,0.44543385945734637
+70,48,0.5380486809097605,1.95,1.3391429699189783,0.0006704232561353904,0.03516684082314169,0.8108409642664456,1,1.0,0.4601622696992019
+70,49,0.5616667380996605,2.0,1.382027866355016,0.0007040877559834673,0.03662853534081957,0.8282728916495321,1,1.0,0.47222246033220133
+71,0,0.1308488368721018,2.0,1.3852293175114487,0.0006999976324467293,0.03642294502106261,0.8287266166227953,0,0.1191064316532395,0.21068754736935336
+71,1,0.1464734418392483,1.95,1.3851682893332762,0.0006998631482596979,0.03670449715532549,0.8178082237164024,0,0.14147039401624223,0.23295094744250475
+71,2,0.19182762981723822,2.0,1.3850622485545716,0.0006996942572959429,0.03669298956054861,0.828702815620354,0,0.20307353376048262,0.23532738771015058
+71,3,0.19173768276248535,2.0,1.3842226564472457,0.0007000412271965936,0.03651808499524618,0.828583697445189,0,0.23679314799323614,0.256734745217303
+71,4,0.17897015017277418,2.0,1.3845116149926762,0.0006998141250156657,0.036682765978094466,0.8286246706267739,0,0.25118247470745125,0.26165720096597894
+71,5,0.1904191985497241,2.0,1.384621400242729,0.0006996125281295092,0.03669399147050365,0.8286402029576747,0,0.26040737330067554,0.28752083076484636
+71,6,0.2556091445515106,2.0,1.384650521181875,0.0006993999723140906,0.03632902359781097,0.8286442776009814,0,0.3267045243757964,0.2830911160039735
+71,7,0.2789291303681742,2.0,1.3843441090148199,0.0006993287696329358,0.0366585119471422,0.8286007446308482,0,0.3837988211503029,0.28469867302684343
+71,8,0.31429151168629016,2.0,1.3839728480589053,0.0006992039688588806,0.0366901345849913,0.828547975684048,0,0.4713898984146542,0.28578517440142837
+71,9,0.3489492585273071,2.0,1.357789563178205,0.0006968092012182315,0.03642439612849471,0.8247957265687093,0,0.5532158560448641,0.2922097203645384
+71,10,0.3494724836194559,2.0,1.3595554622645452,0.0007034436022442206,0.03633142922125345,0.8250526815388749,0,0.5815398315678211,0.32285516997442476
+71,11,0.3619396197996568,2.0,1.3612697378303806,0.0007006802712095146,0.03612769940700021,0.8252991866672605,1,0.5967885171820266,0.3440807097561537
+71,12,0.4377905560819781,2.0,1.3858376213272088,0.0006998538567170972,0.036433890335458116,0.828812900480427,1,0.6571891653206435,0.4163829665124024
+71,13,0.47191676902846047,2.0,1.3649380749551454,0.0006946010204378337,0.03598589546540638,0.8258257092995401,1,0.707249801867001,0.4633894942722002
+71,14,0.4778826737463807,2.0,1.365082114839858,0.0006927026151528163,0.03607166378245868,0.8258458806059885,1,0.7258793028276295,0.4917698420510965
+71,15,0.527606801058877,2.0,1.3630441308794639,0.0006920354410100539,0.03635279268159694,0.8255523818179624,1,0.7715916201320145,0.5632338433535704
+71,16,0.5170749256924527,2.0,1.3627861581423466,0.0006900708009366002,0.03620317830302911,0.8255146606135751,1,0.8011130238037822,0.5887657205697993
+71,17,0.5183755689359307,2.0,1.3797443464576185,0.000708851949453089,0.03674605430250926,0.8279492046373238,1,0.8476801732949395,0.5643449987265163
+71,18,0.5234433017562987,2.0,1.3788425483962254,0.0007096265082367913,0.036365108721144436,0.8278209269246598,1,0.869515002325372,0.5521243360871663
+71,19,0.5468862096796472,2.0,1.37780142712146,0.0007103419632297969,0.03658704218587498,0.8276726857685532,1,0.884896983787351,0.5764247205490226
+71,20,0.6201338854965677,2.0,1.3793379762290647,0.0007080846764518944,0.03676196849624273,0.8278910911067389,1,0.9459885581206258,0.6391282074943909
+71,21,0.5960936768271028,2.0,1.3691653736044485,0.0007009945958970617,0.036018337849637164,0.8264347507742955,1,0.9545575317526918,0.6475688804200869
+71,22,0.5954575787142558,1.95,1.366646875019752,0.0007004229263684143,0.036171438471760756,0.815032479662605,1,1.0,0.6181919290475192
+71,23,0.6064976259975948,2.0,1.3676589178865055,0.0006978932362558721,0.03650860279559149,0.8262176673623717,1,1.0,0.6216587533253158
+71,24,0.635089931423394,2.0,1.3655512932991747,0.0006973058813628682,0.036475842485315484,0.825914673345389,0,1.0,0.6502997714113132
+71,25,0.6358458645503593,2.0,1.3661283746584387,0.0007116240026383593,0.03645360362150994,0.8260017460035849,0,1.0,0.6528195485011973
+71,26,0.6368772218554801,2.0,1.3661331806614747,0.0007079264816400399,0.03646316471352774,0.8260013738991826,0,1.0,0.6562574061849337
+71,27,0.6444800712445671,2.0,1.3656687691932548,0.0007045078582042777,0.036389294860033734,0.8259336341655442,0,1.0,0.6482669041485568
+71,28,0.5974015566346285,2.0,1.371426210567519,0.0007026537604958817,0.0363360464503358,0.826759282010426,0,1.0,0.658005188782095
+71,29,0.6205578753579819,1.95,1.3698914379276868,0.0007031160104332616,0.03638493162017579,0.8155219226881443,0,1.0,0.6685262511932728
+71,30,0.6432950165264986,1.95,1.3694644333526194,0.0007066034211935811,0.03646815466774998,0.8154587225521012,0,1.0,0.6776500550883282
+71,31,0.6409524810176668,1.95,1.3689974321060707,0.0007035445491579049,0.03641174532957484,0.8153875142384904,0,1.0,0.6698416033922225
+71,32,0.6030631961702944,2.0,1.3681999585054792,0.0007007021098720492,0.036434292345880026,0.8262961436856148,0,1.0,0.6768773205676477
+71,33,0.6070501621390969,1.95,1.3672537136171856,0.0007013308265590198,0.036399587831575084,0.8151242194808265,0,1.0,0.6901672071303231
+71,34,0.6444420703152762,2.0,1.3651964327739858,0.00070193738448368,0.03621133048075914,0.8258649778665019,1,1.0,0.6814735677175872
+71,35,0.6075039129298483,2.0,1.363376260201055,0.0006983749872145586,0.036309122049938296,0.8256020340505758,1,1.0,0.6583463764328275
+71,36,0.6451790774753776,1.95,1.364147481851742,0.0006957003803878703,0.036380908116090294,0.814653961944104,1,1.0,0.6839302582512587
+71,37,0.6310698772287583,1.95,1.3679333467156796,0.0006942017703718037,0.0361074754587551,0.8152244682895493,1,1.0,0.7035662574291942
+71,38,0.6781711753220567,2.0,1.3652264607137685,0.0006933340506069896,0.03592514850244595,0.8258668217117792,1,1.0,0.7605705844068554
+71,39,0.6305007629855963,2.0,1.3679945184106577,0.0006995005236587212,0.036043080997761136,0.8262663097464757,1,1.0,0.7350025432853208
+71,40,0.6399611919758895,1.95,1.3686112993854531,0.0006971004279407698,0.0361222990117102,0.8153274417681813,1,1.0,0.7332039732529649
+71,41,0.6442503361489251,2.0,1.3655620324961,0.0006963427360183005,0.036432781392684764,0.8259159404581096,1,1.0,0.747501120496417
+71,42,0.6267986734254192,2.0,1.3633229667432245,0.0006957633794911777,0.036399693219998606,0.8255936084654183,0,1.0,0.722662244751397
+71,43,0.6201093068140782,2.0,1.36023328219897,0.0006905642266879512,0.03590341821474139,0.8251467805938473,0,1.0,0.7336976893802604
+71,44,0.6204352832456739,2.0,1.3587775543327796,0.0006910638651984549,0.03600660666171844,0.8249367936901391,0,1.0,0.7347842774855795
+71,45,0.6638215309704749,2.0,1.3572416616491996,0.0006915160740359376,0.03619057292004814,0.8247150061234072,0,1.0,0.7460717699015829
+71,46,0.6285455204826991,2.0,1.35556203022179,0.0006888513158040433,0.036136746664860275,0.8244712946069475,0,1.0,0.761818401608997
+71,47,0.6659902118780925,1.95,1.353895429745024,0.0006892142163806723,0.0357001445056344,0.8130990075570798,0,1.0,0.7533007062603082
+71,48,0.6637104239719036,1.95,1.3512869429372838,0.0006862938411269942,0.03582549000560127,0.8127013855380066,0,1.0,0.7457014132396783
+71,49,0.6660884142422372,2.0,1.3493035646339537,0.0006836190953315303,0.035983947142138525,0.8235622190529169,0,1.0,0.7202947141407905
+72,0,0.18841875957694088,2.0,1.385045389419654,0.0007002802144243182,0.036443877677558204,0.8287005887379493,0,0.2101440449367915,0.18120380534074745
+72,1,0.21827275193901324,1.95,1.384097064321899,0.0006988649043650881,0.03665459986562895,0.8176482613870651,0,0.297545408379338,0.16418196195759346
+72,2,0.19506268544076422,1.95,1.38402081619719,0.0006989726952319221,0.0366479291512374,0.8176369246928925,0,0.2998370679830557,0.18375952749180646
+72,3,0.24933019612938256,1.9,1.3838320231549677,0.0006987727592593766,0.036320351820403975,0.8061569389186571,0,0.3735324417722714,0.16639073140158003
+72,4,0.2901572763436623,1.9,1.3836911850608453,0.0006988668629235356,0.03668569730537426,0.8061349589057248,0,0.47855637447303706,0.16244908851482484
+72,5,0.24220663005111281,1.9,1.3859059328816201,0.0007002982241623082,0.036643788271490424,0.8064812948917898,0,0.4784273717061481,0.1694522712288452
+72,6,0.2773608929915655,1.8499999999999999,1.385766852805947,0.0007003354236225947,0.03655650409023971,0.7944837658767157,0,0.5129125467889428,0.17398624758662795
+72,7,0.3373938150238183,1.8499999999999999,1.3857421546132074,0.0007005933897065971,0.036759962691918405,0.7944798173857376,0,0.6013299864270527,0.15620606817665744
+72,8,0.37502284810398995,1.8499999999999999,1.3274513963841112,0.0006672651677823099,0.03534960565584652,0.7847873071751391,0,0.711635477195969,0.13456219075200787
+72,9,0.40760430890150173,1.8499999999999999,1.325935171777046,0.0006659829592559056,0.034995332654106356,0.7845306785453283,0,0.8037881079465788,0.12029688574290058
+72,10,0.4482446309277428,1.8499999999999999,1.2758446432755732,0.0006857014893572263,0.03504699862583562,0.7759495136269722,0,0.9159588739491399,0.10620360449362291
+72,11,0.43860758773920583,1.8499999999999999,1.28690977491395,0.000680524832828413,0.03526887653733561,0.77786554298956,0,0.9591296725395908,0.11651906241123157
+72,12,0.46311351073473284,1.9,1.28257051263995,0.0006778098193245759,0.03481157472769706,0.7898341709969515,0,0.9950089914265579,0.15036638054703214
+72,13,0.486904068684056,1.9,1.2807407896785679,0.0006763597970797855,0.034460506353842464,0.7895298010445114,0,1.0,0.15634689561352005
+72,14,0.47522096394506214,1.9,1.290581364304384,0.0006722955555003597,0.03385609369242032,0.7911590319474249,0,1.0,0.18406987981687367
+72,15,0.495377073947587,1.95,1.2859371369997785,0.0006695118676752133,0.03443790908310652,0.8025448324715664,0,1.0,0.18459024649195668
+72,16,0.49184204610352705,1.95,1.2962837501667954,0.0006680229308021832,0.03478694838442083,0.8041788254319765,0,1.0,0.17280682034509023
+72,17,0.4732915449650157,2.0,1.3018789589465518,0.0006660065265498441,0.03523607301560695,0.816559732842919,0,1.0,0.17763848321671877
+72,18,0.48127203802790697,2.0,1.300009603356239,0.0006647989523728349,0.03519813687626608,0.8162791942797882,0,1.0,0.20424012675968986
+72,19,0.4632073599464108,2.0,1.3817336972306844,0.000696976115594299,0.03652394394969448,0.8282290224263562,1,0.9906099273752788,0.223211296654331
+72,20,0.5140557172001103,2.0,1.354810608658172,0.0007177472236349994,0.03637230854938074,0.8243708910411173,1,1.0,0.2468523906670342
+72,21,0.47308030611969004,2.0,1.359193492487588,0.000712967910345266,0.035951416468174166,0.8250031785224026,1,1.0,0.2102676870656333
+72,22,0.48526861548271316,1.95,1.36280320497095,0.000709117397546141,0.03621118426985062,0.8144549549816168,1,1.0,0.21756205160904374
+72,23,0.4644692947603846,2.0,1.3626082821530137,0.0007153275151251404,0.036596497299270024,0.8254963145235189,1,1.0,0.18156431586794872
+72,24,0.5056673518138997,1.95,1.3818327997823716,0.0006976621142628149,0.0365494600343994,0.8173100584569946,1,1.0,0.2188911727129988
+72,25,0.48803126353538867,1.95,1.361583476514151,0.00071663262404768,0.03649313636903369,0.8142728343612518,1,1.0,0.2267708784512955
+72,26,0.46766365073934657,2.0,1.361372498611022,0.000722195531511362,0.036133414984330384,0.8253202059242067,1,1.0,0.19221216913115519
+72,27,0.5014839387946765,1.95,1.380571717651047,0.0006962707861534439,0.03635338547861341,0.8171212696509058,1,1.0,0.20494646264892127
+72,28,0.45988987082827154,1.95,1.3603544269082235,0.0007234805891718728,0.03660552318029805,0.8140889630749901,1,1.0,0.16629956942757163
+72,29,0.47343585086460666,1.9,1.3760459687904516,0.0006943721113855053,0.03632417511844462,0.804935945312825,1,1.0,0.178119502882022
+72,30,0.47709161715039944,1.95,1.3778089495339354,0.0006946844355635677,0.0363740129718335,0.8167075811747284,1,1.0,0.19030539050133127
+72,31,0.45907231647483504,2.0,1.3793546062717892,0.0006953634487182528,0.03648143053604403,0.8278898354450459,1,1.0,0.1635743882494501
+72,32,0.5180076278860559,2.0,1.3810467116169791,0.0006969092575884501,0.0365755278795762,0.8281312468601367,1,1.0,0.22669209295351955
+72,33,0.5368087398642674,2.0,1.3605539996720273,0.0007235061759766977,0.036234379313424,0.825202552262606,1,1.0,0.28936246621422457
+72,34,0.5565942384722842,2.0,1.3581215705176997,0.0007239653307046576,0.03626348997468178,0.8248515457346558,1,1.0,0.35531412824094705
+72,35,0.5774537658094911,2.0,1.3554219419553375,0.0007242117506018157,0.03649897456952751,0.8244612556437703,1,1.0,0.42484588603163675
+72,36,0.5297453600262606,2.0,1.3813156986493746,0.0007055672192455319,0.03649227569958845,0.8281719924987254,2,1.0,0.3991512000875352
+72,37,0.5557987694115651,1.95,1.3849861542067443,0.0006992503225841004,0.03654221913522591,0.817780901747444,2,1.0,0.4193292313718839
+72,38,0.5143978737583773,1.95,1.381006165949887,0.0006966142038134271,0.03641716906866559,0.8171862847057104,2,1.0,0.3813262458612577
+72,39,0.5010667514939406,1.9,1.3840446021464203,0.0006987158044060682,0.03667015066991536,0.8061901382372508,2,1.0,0.3368891716464686
+72,40,0.5889421031699663,1.95,1.384558178998581,0.0006994319833150608,0.03662866880574184,0.8177171723754965,2,1.0,0.3631403438998876
+72,41,0.49764802401818886,1.95,1.3842922051445408,0.0006989548862323293,0.036440853099978736,0.8176773818278562,2,1.0,0.3254934133939628
+72,42,0.5889990043221043,1.9,1.3846196739476364,0.0006995129022436498,0.036713519010545995,0.8062802250057651,2,1.0,0.3633300144070142
+72,43,0.5481856798779989,1.9,1.3841542091183938,0.0006989165909788043,0.03666280814614334,0.8062073262293525,2,1.0,0.39395226625999646
+72,44,0.5770789102668356,1.8499999999999999,1.3836770796283357,0.0006988478340560682,0.03660864438631888,0.7941418527760395,2,1.0,0.42359636755611824
+72,45,0.5832823786280131,1.8499999999999999,1.381305079141654,0.0006970777349571144,0.03653314094914481,0.7937532266615975,2,1.0,0.44427459542671016
+72,46,0.5944316054675328,1.9,1.3805084822116864,0.0006962863387349244,0.0363623278524143,0.8056362688568939,2,1.0,0.48143868489177594
+72,47,0.5306398139159819,1.95,1.3796835804134886,0.0006956162596900555,0.03638987615064427,0.8169883185529584,2,1.0,0.43546604638660635
+72,48,0.5929758005509659,1.9,1.3806371272800289,0.000696518784077581,0.036551060356940696,0.8056564849320013,2,1.0,0.47658600183655264
+72,49,0.5325191741419859,1.9,1.3794341319482966,0.0006955063084230474,0.03657426196551711,0.8054677404538187,2,1.0,0.4417305804732862
+73,0,0.08556814111858838,1.8499999999999999,1.3847835279864826,0.0007004616539933214,0.03643942315278022,0.7943232040291566,0,0.19760690126600805,0.1884179353739506
+73,1,0.17694538985950378,1.7999999999999998,1.386134828891353,0.0007000640246377106,0.03675445631445888,0.7820298794172628,0,0.2303801294923385,0.2159777935418947
+73,2,0.22005961863375798,1.7999999999999998,1.379863936861967,0.0006980315527971994,0.036512332986395175,0.7809583628292861,0,0.2947233566701061,0.2072342532190518
+73,3,0.17958635336096562,1.7999999999999998,1.3792896983463685,0.000697860609658772,0.03653767235023796,0.7808600578607147,0,0.2905012013978168,0.21128624267279628
+73,4,0.21151891092167077,1.7499999999999998,1.379516913273777,0.000697293999541616,0.036548226552374795,0.7677966639434362,0,0.31623050131749925,0.21675570131557037
+73,5,0.20363434412926706,1.7499999999999998,1.3801046378980446,0.0006970014235976507,0.03617541262625121,0.7679013256136433,0,0.33039119345958495,0.2382595558181102
+73,6,0.26677216016871935,1.7999999999999998,1.3802181843166472,0.0006966078637452428,0.03655748478060016,0.7810184682344153,0,0.4017712975380129,0.22021213717838065
+73,7,0.2836366193517491,1.7999999999999998,1.3580589610840055,0.0007010768324709914,0.03629359003455692,0.7772065636186365,0,0.45398120625831656,0.20681378949474163
+73,8,0.28128785069299295,1.8499999999999999,1.3592883947373322,0.0007071409147401904,0.03650036726772711,0.790128918670948,0,0.48130705607026997,0.22921676088294982
+73,9,0.30789990587294036,1.9,1.3613661195765963,0.0007041309085061132,0.03625096869812923,0.8026237719169964,0,0.5094560956613984,0.2803915586946033
+73,10,0.37583622002967,1.9,1.3627739980901057,0.0007014332084489567,0.03615575375638248,0.8028458573877418,0,0.6197586275105392,0.2597758967515143
+73,11,0.4015560691069163,1.9,1.2609773812702574,0.0008456834379554437,0.035816579833991766,0.7862837863621703,0,0.700436643511994,0.27127137234039583
+73,12,0.4310787986803633,1.9,1.258797840419411,0.0008546458842381181,0.03628754523448111,0.7859203201873649,0,0.768409682275479,0.27904975256723896
+73,13,0.4688758918950105,1.9,1.2563840606265444,0.0008625555940345878,0.0367343546228678,0.7855165877686576,0,0.8547909119562592,0.2565317570416894
+73,14,0.45640024039763366,1.9,1.3758215564904042,0.0006979593887671981,0.036491837882522554,0.8049018336708981,0,0.879124624784568,0.28250130161268816
+73,15,0.4812337068796547,1.95,1.3755314606625062,0.000696698310265128,0.036506660045464295,0.8163670073642477,0,0.9106579465160323,0.3232350942441393
+73,16,0.49183008481778956,1.95,1.3753082329755864,0.000695547269878472,0.03647684231829653,0.8163331953521612,1,0.9291124904868815,0.3339502954101232
+73,17,0.49244685168590063,2.0,1.3456727195472498,0.0007246465415285757,0.036520450670739106,0.8230459610020351,1,0.9744049828872676,0.30894952843664525
+73,18,0.5562723412661834,2.0,1.3516495387675955,0.0007184916644683594,0.03655094485245954,0.8239129668303519,1,1.0,0.3542411375539445
+73,19,0.5088828475735662,2.0,1.3484362119963496,0.0007181391037744814,0.03642046483114382,0.8234461882844181,1,1.0,0.32960949191188726
+73,20,0.5504585317101407,1.95,1.3523030186387826,0.000713060941214611,0.03627290188161567,0.8128641447972449,1,1.0,0.36819510570046865
+73,21,0.5145925163067793,1.95,1.3570583581147546,0.0007086307523107582,0.0359950945384397,0.813585088382432,1,1.0,0.34864172102259744
+73,22,0.5739301839123749,1.9,1.3598980868713288,0.0007048794866883676,0.0362520461661213,0.8023913419251856,1,1.0,0.4131006130412494
+73,23,0.526129456856275,1.9,1.3840114634819263,0.0007031665425741508,0.036590492014435434,0.8061863512066846,1,1.0,0.3870981895209167
+73,24,0.5190262384263731,1.8499999999999999,1.3525131240259185,0.000703366734248743,0.036099179111767556,0.7890019428241221,1,1.0,0.36342079475457667
+73,25,0.5774525754442644,1.9,1.3540275615246573,0.0006996939670389173,0.03582775421728356,0.8014572115720793,1,1.0,0.4248419181475478
+73,26,0.5305935162233564,1.9,1.383965758771128,0.0007032492579094509,0.036719840674157,0.8061792355986683,1,1.0,0.40197838741118797
+73,27,0.5212843347299465,1.8499999999999999,1.383503109195452,0.0007039280402641101,0.03673691604936412,0.7941150717301072,1,1.0,0.370947782433155
+73,28,0.581012201578535,1.9,1.3474495998586467,0.0006977038003378916,0.03609674009316043,0.8004077911539209,1,1.0,0.4367073385951162
+73,29,0.6001762669110154,1.9,1.3833987097511287,0.0007040518171563025,0.036719667141679284,0.8060908672747918,1,1.0,0.5005875563700514
+73,30,0.5487915966492647,1.95,1.3839274375900497,0.0007028700466994305,0.03673018683489136,0.8176241632052599,1,1.0,0.46263865549754896
+73,31,0.6045656615534545,1.9,1.3834559618500604,0.0007033172380994502,0.03675958582419052,0.8060995864670775,1,1.0,0.5152188718448482
+73,32,0.5619339240393008,1.9,1.3836510747279829,0.0007021909640367295,0.03675307304365129,0.8061297293439683,1,1.0,0.5064464134643357
+73,33,0.6027301739042097,1.8499999999999999,1.3830238962919479,0.0007026312119095114,0.03657701442270461,0.7940362869655584,1,1.0,0.5424339130140323
+73,34,0.6308250650566324,1.8499999999999999,1.3825496968047672,0.0007038132409707503,0.036753259839104185,0.7939591110377844,1,1.0,0.602750216855441
+73,35,0.630102739614901,1.8499999999999999,1.3604231267351747,0.0006976751903951931,0.03583496981112549,0.7903138866338135,1,1.0,0.6336757987163365
+73,36,0.6394473320416264,1.9,1.36472979467338,0.0006955661970848327,0.03619336163004366,0.8031533909801153,1,1.0,0.6648244401387544
+73,37,0.6224868981596331,1.95,1.3681745138451948,0.0006940269183166259,0.03604921436528994,0.8152607407158581,1,1.0,0.6749563271987767
+73,38,0.6713549815614481,2.0,1.3658934844750052,0.0006932647327700823,0.03574684425569369,0.8259627061641153,1,1.0,0.7378499385381604
+73,39,0.6735180225851742,2.0,1.3687445073437412,0.0006995866662506687,0.03610689106890813,0.8263739692557841,1,1.0,0.7783934086172474
+73,40,0.6989431533421044,2.0,1.3708715780142784,0.0006975193920806537,0.03611210165856503,0.8266783571830251,1,1.0,0.8298105111403481
+73,41,0.7174353796282328,2.0,1.3540041227375084,0.0006885954054725987,0.03566707286023907,0.8242456486363721,1,1.0,0.8914512654274425
+73,42,0.7351901174351378,2.0,1.3504667489253783,0.0006873911873331029,0.03600877392214672,0.823732270234217,1,1.0,0.9506337247837926
+73,43,0.75,2.0,1.3465312277664914,0.0006859497457240009,0.036022209360789974,0.8231596948524638,1,1.0,1.0
+73,44,0.74,2.0,1.3421895493056846,0.0006842972507646332,0.03570389177931894,0.8225263167754007,1,1.0,1.0
+73,45,0.75,2.0,1.349843866784643,0.000682988650740176,0.03553562473461878,0.823640532125105,1,1.0,1.0
+73,46,0.6999966771251556,2.0,1.3454239003062285,0.0006809710633916568,0.035370843709658886,0.8229969954179754,1,1.0,0.9666555904171854
+73,47,0.6946730766428348,1.95,1.3456935314399958,0.0006790008552451772,0.03535155043915006,0.8118462509096269,1,1.0,0.948910255476116
+73,48,0.75,2.0,1.3440333750088416,0.0006766374087553028,0.03557862369084426,0.8227930787922125,1,1.0,1.0
+73,49,0.75,2.0,1.340947933951965,0.0006752177836373138,0.03584451899683055,0.8223423442620228,1,1.0,1.0
+74,0,0.16471085323471374,2.0,1.3849955103648464,0.0007003301158699615,0.03644215427248994,0.8286935221626739,0,0.16011062112469493,0.20222201594945255
+74,1,0.16952287436860314,1.95,1.3849367207297067,0.0007004653796621346,0.03669985204797358,0.8177738974226737,0,0.19622731765586504,0.23677315768752377
+74,2,0.15799326057306567,2.0,1.3848416190392177,0.0007002545480448241,0.036698346835008375,0.8286716531000515,0,0.21354795119121311,0.2419136003219347
+74,3,0.2309890515417694,2.0,1.3769379894662217,0.0006953683626646417,0.03656128081744596,0.8275452244363558,0,0.28601773389990476,0.25527319327269166
+74,4,0.2567360182926344,2.0,1.3762626418892732,0.0006950828490818292,0.036392667332736835,0.8274487399461518,0,0.34397608318256584,0.2638186167320271
+74,5,0.3035614539325818,2.0,1.37547477527507,0.0006947866453348168,0.03638018630048942,0.8273361368119352,0,0.44396503295514417,0.2532514691684139
+74,6,0.3432424520040756,2.0,1.3506445465791097,0.0006986837196458897,0.03576568152300676,0.8237613633999946,0,0.5377468849796544,0.2604789933740461
+74,7,0.33523555267000954,2.0,1.3487026733591998,0.000698036064134549,0.035849287666249494,0.8234790794503378,0,0.5732203809723763,0.28649133427019674
+74,8,0.3839589595408266,2.0,1.3498744886486707,0.000695211204360222,0.03607634548608113,0.8236485308349113,0,0.6433026413766406,0.28879300996723456
+74,9,0.4235741412922565,2.0,1.228957091757489,0.0008571797048263405,0.03648682640715305,0.805443657187728,0,0.7283114147603521,0.274165251293719
+74,10,0.44470026444136074,2.0,1.2253922636990837,0.0008561472679730461,0.036278407186512276,0.8048841011486212,0,0.8093112867156914,0.26991916585028053
+74,11,0.4410258979489821,2.0,1.3739826251571343,0.0007047576349172481,0.036530217524735904,0.8271257289692928,0,0.8368104083636332,0.28767244867842934
+74,12,0.4263390395604184,2.0,1.3752670217607457,0.0007028725914619032,0.03616397245212953,0.8273087674590923,0,0.8448324528812055,0.2946868613597874
+74,13,0.49414238349518275,2.0,1.3770138893052821,0.0007013848276836022,0.036453331628156095,0.8275577733231994,0,0.9178327580341679,0.2900309342717187
+74,14,0.5308277125332446,2.0,1.375673299117691,0.0007012695256852803,0.03656284880955238,0.8273663462331259,0,1.0,0.2694257084441485
+74,15,0.5132370270620156,2.0,1.376247129924896,0.0007045263713819702,0.036598500141525936,0.8274492218305374,0,1.0,0.24412342354005195
+74,16,0.4767968829285309,2.0,1.3748325083658837,0.000704540459834536,0.03654236200339321,0.8272471568568286,0,1.0,0.2559896097617696
+74,17,0.4788435550354181,1.95,1.3764271161059352,0.0007027431740009606,0.03657501773853419,0.816503050104468,0,1.0,0.26281185011806024
+74,18,0.5026932704062564,2.0,1.3771899964058807,0.0007011333759449044,0.0363483275078251,0.8275828316376634,0,1.0,0.2756442346875213
+74,19,0.5235285940834775,2.0,1.3789219337357803,0.0007000279260717278,0.036479869046751844,0.8278295055830466,0,1.0,0.24509531361159173
+74,20,0.4981956515251305,2.0,1.3794886381516345,0.0007024509880723662,0.03666621296852147,0.8279109521698518,0,1.0,0.260652171750435
+74,21,0.5151661971992629,1.95,1.380524595824307,0.0007012559866470343,0.03656883915089485,0.8171157178956149,0,1.0,0.2505539906642096
+74,22,0.5137979001221241,2.0,1.379241464941726,0.0007012266178330824,0.03664465323142414,0.8278753845192229,0,1.0,0.2459930004070802
+74,23,0.5213660490223186,2.0,1.3782200087005128,0.0007010867954175689,0.036594923298609916,0.8277297406942182,0,1.0,0.23788683007439548
+74,24,0.5162269207068989,2.0,1.3786620406332573,0.0007037266915601928,0.03633566493333086,0.8277935149619186,0,1.0,0.22075640235632957
+74,25,0.5016953230975625,2.0,1.378719040701903,0.0007060391755885169,0.036510466398287936,0.8278022995204338,0,1.0,0.2723177436585417
+74,26,0.4783643995243843,2.0,1.379724519844913,0.0007043451734148134,0.03670314364101162,0.8279450963366292,0,1.0,0.261214665081281
+74,27,0.5238159619968956,1.95,1.3810876207784126,0.0007030625006889612,0.03653758487783785,0.8172003797127729,0,1.0,0.24605320665631872
+74,28,0.4761691453213976,1.95,1.3809110857028486,0.0007049083859049354,0.03670592299550613,0.8171745582868402,0,1.0,0.25389715107132527
+74,29,0.5183223046431622,1.9,1.3819052254747388,0.000703634117902584,0.036328883882432314,0.805857185743867,0,1.0,0.2610743488105406
+74,30,0.484019170392159,1.9,1.380871913769154,0.0007039404251948035,0.036680655476333805,0.8056955675098438,0,1.0,0.2800639013071967
+74,31,0.5126912037742242,1.8499999999999999,1.3815855918790614,0.0007026562653569292,0.036541516146579744,0.7938009715537212,0,1.0,0.3089706792474139
+74,32,0.49581736156553075,1.8499999999999999,1.382566588836001,0.0007017453082419485,0.03645132142813874,0.7939611977861301,0,1.0,0.3193912052184357
+74,33,0.5389381149160799,1.9,1.383023255739476,0.0007008287330745367,0.03656427761111424,0.8060311660978797,0,1.0,0.32979371638693306
+74,34,0.5402378527179523,1.9,1.3822501299500023,0.0007008535945398652,0.03642868421089411,0.8059102709819508,0,1.0,0.3007928423931741
+74,35,0.5355707340709578,1.95,1.3824379296608071,0.0007023772407119021,0.03673198575683565,0.8174018031956117,0,1.0,0.28523578023652596
+74,36,0.4866233774491776,2.0,1.3824474813159562,0.0007036873580159364,0.036696888699345474,0.8283324542917831,0,1.0,0.2887445914972587
+74,37,0.5108095388243402,1.95,1.3829132832115976,0.0007024977071695862,0.03650722152308401,0.8174727778559239,0,1.0,0.3026984627478006
+74,38,0.5375701641302854,1.95,1.3838863016533165,0.0007018381001423242,0.0364934875265068,0.8176177213789538,0,1.0,0.29190054710095087
+74,39,0.5153561279463674,1.95,1.3837450025061135,0.0007027911741513525,0.0367545053227825,0.8175969343163826,0,1.0,0.31785375982122455
+74,40,0.5306745216956222,1.9,1.3844924453266605,0.0007020431999888066,0.03667222513366397,0.8062611425717612,0,1.0,0.30224840565207417
+74,41,0.5300283189853232,1.95,1.3838731017206523,0.0007023619705437788,0.03675708112812728,0.8176159092494671,0,1.0,0.30009439661774406
+74,42,0.5355664877544448,2.0,1.3832727465858738,0.000702531558920408,0.03672274725688353,0.8284494448752202,0,1.0,0.2852216258481493
+74,43,0.5286639431457002,2.0,1.3831869451676277,0.0007036006476984216,0.03649530718836959,0.8284375542482185,0,1.0,0.2622131438190005
+74,44,0.5250308162415713,2.0,1.382865462473711,0.0007045681258831108,0.036774554309566304,0.8283921325536915,0,1.0,0.25010272080523754
+74,45,0.5222776325233555,2.0,1.3824328016542182,0.0007054260752035498,0.036672162474574596,0.8283308613538443,0,1.0,0.24092544174451788
+74,46,0.5106537605040208,2.0,1.3819266984249676,0.00070616900459174,0.03659863900378395,0.8282590934572657,0,1.0,0.23551253501340266
+74,47,0.4955944086106794,2.0,1.3813936453662516,0.0007068627937941018,0.036790100055077345,0.8281834529873013,0,1.0,0.2519813620355978
+74,48,0.5215917174428453,2.0,1.382316212133404,0.0007055152108211585,0.03659210215587114,0.8283143071758478,0,1.0,0.23863905814281733
+74,49,0.5135782157617257,2.0,1.3818050600237235,0.0007062533160512942,0.036451273641675115,0.8282418141821534,0,1.0,0.2452607192057523
+75,0,0.16455070972587735,2.0,1.3833196427454253,0.0007002356102527896,0.036516093417937295,0.8284554571141302,1,0.13060133255887713,0.2410339223410883
+75,1,0.18022761942206825,1.95,1.383308980283536,0.0006998050088806665,0.036657708251170415,0.8175310094486922,1,0.15314837932015218,0.26322755898002453
+75,2,0.1743661036392005,2.0,1.3831551199758056,0.0006993766061417059,0.03660752054937637,0.8284318301813559,1,0.16809008775763765,0.29043356178715146
+75,3,0.2465790930448052,2.0,1.3834112311894118,0.0007000187629092863,0.03641639617997076,0.8284684113669303,1,0.2239156225382405,0.35670948009836334
+75,4,0.21116717089639991,2.0,1.3860027581401155,0.0007000338222219581,0.03671177741296428,0.8288363802243425,1,0.2680669950654784,0.31313457623402857
+75,5,0.2607857288719574,1.95,1.3859820822962945,0.0006999769623666246,0.036739707082271776,0.8179294797259442,1,0.2893117933542525,0.35020337176752125
+75,6,0.25657066823385705,1.95,1.3860436641570362,0.0006999977019043384,0.03642570748062386,0.8179386565460441,0,0.32376635972104323,0.35688041448479924
+75,7,0.3047749910698419,2.0,1.3779879199402578,0.0007010140388653615,0.03659805421196871,0.8276966231416366,0,0.40820308250129067,0.33831252689775215
+75,8,0.33667582547500624,2.0,1.3537576371638034,0.0007158731655074425,0.03639995667633959,0.8242178430050138,0,0.48466057998131595,0.3427053116082663
+75,9,0.33615656969939706,2.0,1.3538077190108289,0.0007212448241777941,0.03648103030579626,0.8242266553507588,0,0.5152889267084245,0.3668033300534241
+75,10,0.3839274004870122,2.0,1.3549389166494663,0.0007170652794392807,0.03624678636872682,0.824389269699017,0,0.5900951487744679,0.3596311365907501
+75,11,0.37302725909250234,2.0,1.3547305279868045,0.0007218912713235351,0.03626610155186742,0.8243604964168337,0,0.6054241532416076,0.36952532598619753
+75,12,0.43326901145779734,2.0,1.215547846012352,0.0009118347861966218,0.035799240408021384,0.8033510315951429,0,0.7021809520616835,0.34132210211041314
+75,13,0.452023810321309,2.0,1.212706622500842,0.0009125910800114777,0.036270924629068856,0.8029020328332884,0,0.7794035968398602,0.3342079052845498
+75,14,0.5014237659755857,2.0,1.2100405789771642,0.0009206433778698457,0.036731115872269945,0.8024823424198195,1,0.8830836873950177,0.3273009700585952
+75,15,0.5424373256714168,2.0,1.3441558641868494,0.0006962113914201172,0.035532592598075265,0.8228166450061869,1,0.938195499861619,0.3905304190892305
+75,16,0.5528044524905474,2.0,1.3405323619546134,0.0006947698898627777,0.03542256473034113,0.8222873373709509,1,0.9613977835554982,0.4274844635611603
+75,17,0.5711325360129088,2.0,1.382811079027535,0.0007011315713066267,0.03669310414280205,0.828383424231924,1,0.9751266094118343,0.47027297416058333
+75,18,0.5409273508953931,2.0,1.382460707188116,0.0007018262661384485,0.0364577647120233,0.8283338056911443,1,1.0,0.43642450298464375
+75,19,0.576844414235038,1.95,1.3820174950999267,0.0007023903741869776,0.03657073827288213,0.8173390463219669,1,1.0,0.45614804745012655
+75,20,0.5348123367661682,1.95,1.3814348733958162,0.0007033013269146942,0.03654646081002644,0.8172523192938089,1,1.0,0.4160411225538942
+75,21,0.5505819400012806,1.9,1.380908042427222,0.0007040006138701669,0.03659436128607328,0.8057012422414302,1,1.0,0.4352731333376018
+75,22,0.577573985740544,1.95,1.3826998742180845,0.000703156635922168,0.03648654904727404,0.817441129387065,1,1.0,0.45857995246847966
+75,23,0.5406949133244895,1.95,1.3822810685244176,0.0007038817279829775,0.03642775063815122,0.8173788387012979,0,1.0,0.4356497110816316
+75,24,0.5609492955246433,1.9,1.3319311303025005,0.0006683343671832481,0.03516774328951201,0.7979076026318395,0,1.0,0.4698309850821445
+75,25,0.5460762626148495,1.9,1.3288214200271165,0.0006663674310261791,0.03541029248420728,0.7974050584686068,1,0.9978968112307415,0.48972512707517646
+75,26,0.545961159679704,1.95,1.3744034595784926,0.0007085330153503523,0.03659575133541486,0.8162013970432759,1,1.0,0.45320386559901354
+75,27,0.5907498953825532,2.0,1.3730704381542553,0.0007086686903291024,0.0365523897098335,0.8269963766982074,1,1.0,0.5024996512751772
+75,28,0.5999506623727734,2.0,1.3731411848939339,0.000711971549943562,0.036587724343882466,0.8270074434952234,1,1.0,0.533168874575911
+75,29,0.6104362326250775,2.0,1.3725015001591594,0.0007150784235811837,0.036691462169219126,0.8269167964768979,1,1.0,0.568120775416925
+75,30,0.6190291705560136,2.0,1.3715706828147898,0.0007178565855851789,0.036380059629389214,0.8267843280556407,1,1.0,0.5967639018533786
+75,31,0.6500355221809856,2.0,1.370424915398736,0.0007202751079753435,0.03648745132993035,0.8266208722071114,1,1.0,0.6667850739366183
+75,32,0.6014199686460145,2.0,1.3719780508265984,0.0007009932962586558,0.03647116937953868,0.8268378314602662,1,1.0,0.6380665621533819
+75,33,0.652556424766415,1.95,1.3740915667440325,0.000699202146130544,0.036217453897817456,0.816151803161654,1,1.0,0.6751880825547164
+75,34,0.6262674743669391,1.95,1.37484688823731,0.0007034744059447822,0.036562456481186875,0.8162663920791723,1,1.0,0.6875582478897967
+75,35,0.6578316161152339,1.9,1.3726821296116645,0.000703334931873947,0.036607435566824324,0.8044100537419463,1,1.0,0.7261053870507793
+75,36,0.6876402513859026,1.9,1.3742587291678658,0.0007010864201539247,0.03627895157562065,0.8046572813729239,1,1.0,0.7921341712863418
+75,37,0.7039410990958507,1.9,1.3750000881567908,0.0007053708472862078,0.0363723890636952,0.8047751310559564,1,1.0,0.846470330319502
+75,38,0.7223711781070998,1.95,1.3562071527898358,0.0006822932293795148,0.03560481548526471,0.8134479630573125,1,1.0,0.907903927023666
+75,39,0.6965125944804369,2.0,1.3540574367294584,0.0006814352732113059,0.035488227259730706,0.8242512973818907,1,1.0,0.9217086482681228
+75,40,0.681503515491166,1.95,1.3589608280286187,0.0006874738332763872,0.03592851339361417,0.8138670432728923,1,1.0,0.9050117183038865
+75,41,0.6681098931549585,2.0,1.3568148673295624,0.0006849545866292404,0.03603547944631097,0.8246514025222182,1,1.0,0.8603663105165283
+75,42,0.7250693226276363,2.0,1.3558320340180792,0.0006832989910753203,0.03586864989621203,0.8245087589243832,1,1.0,0.9168977420921207
+75,43,0.7269172847411027,2.0,1.3533095434432096,0.0006824652346815328,0.03592746060351768,0.824143229013372,1,1.0,0.9563909491370087
+75,44,0.7318723183067094,2.0,1.3595820708489614,0.0006838134163150143,0.03601253318122161,0.8250508553628232,1,1.0,0.9729077276890311
+75,45,0.7358625710023807,2.0,1.3642896032946186,0.0006854881135033514,0.03597727316531185,0.825729792297897,1,1.0,0.9862085700079356
+75,46,0.717953329026995,2.0,1.367649031158045,0.0006875135907518628,0.036000635651806806,0.8262132671005873,1,1.0,0.9931777634233169
+75,47,0.7023372291749232,2.0,1.371639461109659,0.0006903353774788742,0.03616965020918971,0.8267862951895053,1,1.0,0.9744574305830777
+75,48,0.75,2.0,1.3704025358696001,0.0006894069521949664,0.03621984646026059,0.8266088164940593,1,1.0,1.0
+75,49,0.75,2.0,1.3683839654509202,0.0006881852655443222,0.03632820778882814,0.8263189600649835,1,1.0,1.0
+76,0,0.13364319543637576,2.0,1.3826854744599644,0.0007000548561581661,0.03650300988999095,0.8283652608401828,1,0.1324292516726453,0.2022383158910588
+76,1,0.14287776257241125,1.95,1.3828040376401116,0.0007007067041792691,0.036663482683578566,0.817455942133245,1,0.15195036922884736,0.20699204960290774
+76,2,0.156293134000117,2.0,1.3827554143968737,0.0007013412658173786,0.03662916978193002,0.8283755701868604,1,0.17683378455242865,0.2185320672638184
+76,3,0.19603952793757265,2.0,1.382816065163812,0.0007018917788663685,0.036414113304417066,0.8283843492294459,1,0.19878237560716278,0.2550885923156917
+76,4,0.1798150144102584,2.0,1.3828011459875715,0.0007012691662011133,0.036642259988718076,0.8283820512258022,1,0.20467998336653945,0.2598100702121421
+76,5,0.1819684858876175,2.0,1.386198487936527,0.0007002358334626045,0.03675181204423764,0.8288642032746837,1,0.25521069640624694,0.23294735775039568
+76,6,0.2264370115896249,2.0,1.3861979953120545,0.0007001814819684211,0.03638717531232865,0.8288641179773671,1,0.2713086765674474,0.25971180320881976
+76,7,0.20916919803436804,2.0,1.3862560175427903,0.0007001684161289576,0.03671702197035774,0.8288723444738504,1,0.28499960041033057,0.2505645262341194
+76,8,0.25001838810415966,2.0,1.3862543835587653,0.0007002073051262218,0.036755258172122454,0.8288721237368349,1,0.30627165110580273,0.29169909220612866
+76,9,0.2735010806228239,2.0,1.3862832643433163,0.0007001820044528052,0.03640094481955951,0.8288762130613774,1,0.3428447365444365,0.3212106200168311
+76,10,0.28369473516648025,2.0,1.3862743183583484,0.0007001593448935249,0.036706798351940115,0.8288749377271099,1,0.35376189717072826,0.34063325432729646
+76,11,0.2701147319378317,2.0,1.3862300124403912,0.0007001332318606607,0.036759148720723334,0.8288686458196033,1,0.4111251365734866,0.31888225769479006
+76,12,0.2811046716370485,2.0,1.3861027830343053,0.000700344848120442,0.03643853010803645,0.8288506581953355,1,0.46454243069761136,0.28429233119334646
+76,13,0.3123466936937012,2.0,1.3861857043317207,0.00070025728880402,0.036699845992745686,0.8288623960208529,1,0.5046629727808571,0.30160501527119443
+76,14,0.38734648893384677,2.0,1.386075547607531,0.0007002929096913145,0.03676299274042551,0.8288467798821849,2,0.559710883355612,0.3782071186386733
+76,15,0.45637118743100274,2.0,1.385968439060176,0.0006999404297654037,0.03643478132763235,0.8288314849378614,2,0.626351323730022,0.41943552646331295
+76,16,0.37837813866961356,2.0,1.3855998732721848,0.0007002658104373888,0.03666024505821622,0.8287792825715974,2,0.6585217719611313,0.383231432950537
+76,17,0.49039079601764857,1.95,1.386181701505396,0.0007000944284934262,0.03676839241768205,0.817959240282665,2,0.7221439758628382,0.4051106855750442
+76,18,0.47722074791002034,1.95,1.3856898373026845,0.0007001756879249166,0.03658688464273132,0.8178860135102476,2,0.7400262844282658,0.4373674471290468
+76,19,0.5336660406793774,2.0,1.3857451587445329,0.000700630003526568,0.03678373734563327,0.8288000015542704,2,0.7904122068835868,0.45833719308647547
+76,20,0.4575638159240727,2.0,1.3853439225206932,0.000700742129559316,0.036757340142647046,0.8287430942388159,2,0.8175658637608307,0.43512490139913473
+76,21,0.5059651795353245,1.95,1.3794261038131757,0.0006953840678532584,0.03624087480127573,0.8169497484747753,2,0.8460548579879336,0.4584774544671701
+76,22,0.5617797989299746,1.95,1.3786588349851137,0.000695061372864273,0.03655627471465596,0.816834884437585,2,0.8980338354939126,0.5085542157746985
+76,23,0.6184006331549295,1.95,1.3775524142201907,0.0006941288359030909,0.03647194121276904,0.8166690092957485,2,0.9507137534769712,0.5270504392138039
+76,24,0.6132291041424694,1.95,1.3797880325222946,0.0006957700765868554,0.036390864007707954,0.8170039815425296,2,0.9843225793008035,0.5650002414071601
+76,25,0.6366412020311257,2.0,1.3785000278441653,0.0006950693582166034,0.036465332921762954,0.8277679500772714,2,1.0,0.6221373401037522
+76,26,0.6172891861593537,2.0,1.3636806276409659,0.0007277116749811786,0.03668304332033861,0.8256542996920871,2,1.0,0.6242972871978454
+76,27,0.674177344233862,2.0,1.3685685031030868,0.0007228742530970766,0.03636374833636263,0.826355397984623,2,1.0,0.6472578141128732
+76,28,0.6350516431297851,2.0,1.3667020835674493,0.0007244994983733902,0.036497647550461074,0.8260878852595566,2,1.0,0.6835054770992836
+76,29,0.6920324444169207,1.95,1.3706994432283142,0.0007199713973945675,0.03676674362147743,0.8156485218045951,2,1.0,0.7067748147230689
+76,30,0.7013339462184375,1.95,1.3682322442729142,0.0007218347654565651,0.03671655829933841,0.8152778112406995,2,1.0,0.737779820728125
+76,31,0.7137798679614585,2.0,1.3658557438174665,0.0007230846642105868,0.03663143608317595,0.8259658541154942,2,1.0,0.7792662265381953
+76,32,0.6707912723406821,2.0,1.3637226487173506,0.000723579072452161,0.0366468309472244,0.8256591587719471,2,1.0,0.8026375744689404
+76,33,0.6790412011829648,1.95,1.3832292992807371,0.0007023647712030973,0.03648215806484388,0.8175198865470865,2,1.0,0.8301373372765493
+76,34,0.7377075676163459,2.0,1.3845486499959652,0.0007017155965565375,0.036739769059677525,0.8286304697752469,2,1.0,0.8590252253878201
+76,35,0.6451172540999163,2.0,1.3841356303103791,0.000702488279809942,0.03677912403711905,0.8285720316917421,2,1.0,0.8170575136663875
+76,36,0.7300173235049742,1.95,1.384248326503404,0.0007014523608808373,0.03657875197675459,0.8176715849334353,2,1.0,0.8333910783499142
+76,37,0.7156715670708507,1.95,1.38360718300469,0.0007020984504111745,0.03667251337650536,0.8175761734600419,2,1.0,0.8855718902361687
+76,38,0.7029873260699546,2.0,1.3831100298039707,0.000703071273166488,0.036412463569759176,0.828426471599438,1,1.0,0.9099577535665155
+76,39,0.6712321345083425,2.0,1.3752752513286577,0.0006931755979468581,0.03639526312349045,0.8273071724041953,1,1.0,0.8707737816944748
+76,40,0.6664389647607254,1.95,1.3736844424504682,0.0006924277675740151,0.036349186663309614,0.8160886736009483,1,1.0,0.854796549202418
+76,41,0.7057441833362402,2.0,1.3715123641350524,0.0006913949572691264,0.036178068741236885,0.8267683962959858,1,1.0,0.885813944454134
+76,42,0.7177675513479881,2.0,1.37414406318132,0.0006950303281888011,0.03620721432246856,0.8271460300578236,1,1.0,0.9258918378266269
+76,43,0.7246138496339475,2.0,1.3755106297724249,0.0006982307386492791,0.03633107720219714,0.8273422425639454,1,1.0,0.948712832113158
+76,44,0.6861287424487504,2.0,1.3761364741671915,0.0007012787153074391,0.03659800620271543,0.8274324947097521,1,1.0,0.9204291414958348
+76,45,0.7442750982846553,1.95,1.3745007371034563,0.0007014944978609736,0.036439914888195424,0.8162138781759052,1,1.0,0.9809169942821843
+76,46,0.696941317948681,1.95,1.3737287292092124,0.0006989935127668329,0.0362790681368607,0.8160972912318709,1,1.0,0.9564710598289365
+76,47,0.687728210494865,1.9,1.3719374932177841,0.0006991339912815033,0.03635322285145684,0.8042915476671797,1,1.0,0.92576070164955
+76,48,0.6765845721707553,1.95,1.369507528075553,0.0006990779407072536,0.03635616440233775,0.8154629427025624,1,1.0,0.8886152405691843
+76,49,0.7154726672471664,2.0,1.3676939952281828,0.0006990124710002473,0.036382577800438354,0.8262230251771988,1,1.0,0.9182422241572212
+77,0,0.13768722983393003,2.0,1.386011762273723,0.0007001796963523113,0.03639361996102636,0.8288376989957915,0,0.13048947762602203,0.21830479594507077
+77,1,0.1363724008813632,1.95,1.3859842440618064,0.0007001150881661728,0.03672487112101257,0.8179298427972332,0,0.1628867563852569,0.2373923277575348
+77,2,0.2054947867585876,2.0,1.3860974912640447,0.0007001193976567171,0.03672140205587329,0.8288498435542857,0,0.23397377437659345,0.23968425669316737
+77,3,0.2427343758160086,2.0,1.3726029833606992,0.0007002159078185893,0.03658103488811839,0.8269270666533396,0,0.32834345487262173,0.20465664622319957
+77,4,0.19620400911694322,2.0,1.3733344116146704,0.0007034014618050162,0.03650110077608665,0.82703263406544,0,0.3427573588283371,0.19700355195202793
+77,5,0.2766806684160006,1.95,1.3837078145015618,0.0006990494122291187,0.03665998727145599,0.8175902722591253,0,0.44083732603314896,0.1678191266758034
+77,6,0.2642849301187177,1.95,1.385274463657593,0.0006995025278454028,0.03639958637319214,0.8178239354812876,0,0.47279818288023645,0.1838855232220769
+77,7,0.3134123581308281,2.0,1.3853039254074893,0.0006995993240687154,0.03673255458860827,0.8287370930538519,0,0.5489274132841507,0.17947130939055925
+77,8,0.33671667153518525,2.0,1.3857286211946591,0.0006997928568438156,0.036736811039329936,0.8287974174501797,0,0.6159420323398934,0.16779952866409295
+77,9,0.3900131119965589,2.0,1.300005283212616,0.0006454475371412284,0.03467088347890476,0.8162727421453633,0,0.7272538120006876,0.16370529065427972
+77,10,0.4099684328382845,2.0,1.2972924491461744,0.0006434546409479349,0.03438774643093907,0.8158649463028463,0,0.8059849173227878,0.15858155303056456
+77,11,0.38176527259289483,2.0,1.2812380817182711,0.0006528126454663096,0.03453744464718567,0.8134437091171104,0,0.8271442670935414,0.16969188585159437
+77,12,0.45339536586548945,1.95,1.2890304166198383,0.0006731169532922166,0.035168182320378216,0.8030356957813569,0,0.9083661993168048,0.1668296204625584
+77,13,0.45185909008147196,1.95,1.2920370171115887,0.0006693002113099013,0.034678051106649746,0.8035096094497648,0,0.9399488020721679,0.1862652308420157
+77,14,0.4712997231397601,2.0,1.2879824417618688,0.000666760571891911,0.03400529661772877,0.8144692387125421,0,0.9677597944387683,0.21398601788084234
+77,15,0.4875642559520756,2.0,1.3751892980124136,0.0006925996458592886,0.03652412477545973,0.8272947273252534,0,0.9939586031331572,0.23326938232937558
+77,16,0.5089160885040027,2.0,1.3750205796027541,0.0006929247311928161,0.036393910810440376,0.8272707127233304,0,1.0,0.19638696168000896
+77,17,0.482383815195269,2.0,1.2690283750904685,0.0006545203410969695,0.03437016597285108,0.811584276224183,0,1.0,0.2079460506508966
+77,18,0.5017835499631054,1.95,1.3770817006982825,0.0006950635874364372,0.0361647713074789,0.8165988032008835,0,1.0,0.20594516654368442
+77,19,0.5025385304526688,2.0,1.3794772006361606,0.0006958030160647722,0.03654580769086402,0.8279074282562868,0,1.0,0.20846176817556253
+77,20,0.5065536270706312,2.0,1.3815343992569593,0.0006968782796004272,0.03662470061393995,0.8282006394630291,0,1.0,0.18851209023543747
+77,21,0.4786739360191651,2.0,1.248683493008436,0.0006402866304328181,0.03300051936107327,0.8084490868328282,0,1.0,0.19557978673055024
+77,22,0.4834880947121123,2.0,1.243458686483601,0.0006366214615102231,0.03310614439010501,0.8076375346385316,0,1.0,0.21162698237370758
+77,23,0.505945633789494,2.0,1.3825422437476869,0.0006977409634232563,0.0366396764508017,0.8283442378519719,0,1.0,0.21981877929831328
+77,24,0.5059676918651779,2.0,1.3837200181774612,0.0006983600785220657,0.03640042584420487,0.8285118168416384,0,1.0,0.1865589728839262
+77,25,0.45842786291609167,2.0,1.2247758455071762,0.0006225942510984551,0.03330566803886621,0.8047138821294514,0,1.0,0.1947595430536388
+77,26,0.46388103677657555,2.0,1.2361312677530922,0.0006527226093965794,0.033425510804820695,0.8065016117400604,0,1.0,0.21293678925525172
+77,27,0.46157801688562883,2.0,1.3841863099991811,0.0006987480735257045,0.036483422905677576,0.8285781676479865,0,1.0,0.20526005628542932
+77,28,0.5014474136136657,2.0,1.3843385728765032,0.0006990098616719354,0.03655688973100171,0.828599867794515,0,1.0,0.20482471204555242
+77,29,0.4608590454053528,2.0,1.3850948750597036,0.0006993456726956448,0.03673516895866184,0.8287073480843928,0,1.0,0.20286348468450924
+77,30,0.46497090481576464,1.95,1.3851467782430147,0.0006994995082056924,0.03651418467878544,0.8178049102217673,0,1.0,0.21656968271921537
+77,31,0.4820974175937109,2.0,1.3850493389251426,0.0006996031633024422,0.03670944976652764,0.8287009571704981,0,1.0,0.20699139197903624
+77,32,0.504294791149966,2.0,1.384978782480112,0.0006998010074147823,0.036752047141354965,0.8286909972228119,0,1.0,0.1809826371665531
+77,33,0.4855142523846746,2.0,1.2475103585946101,0.000692568465254425,0.03364473777387493,0.8082835543203839,0,1.0,0.2183808412822485
+77,34,0.5118189984891832,2.0,1.385147178333255,0.0007001492172841856,0.03655600596311562,0.8287150006045224,0,1.0,0.23939666163061052
+77,35,0.5163046864125805,2.0,1.3857088794808254,0.0007001382944348186,0.03677445666844562,0.8287947142667289,0,1.0,0.2543489547086016
+77,36,0.5176833779161831,2.0,1.3860575014669299,0.0007001370298186858,0.03657778327504569,0.8288441756184768,0,1.0,0.22561125972061047
+77,37,0.5157142274871517,2.0,1.3859342727925192,0.0006999617053820033,0.0365825801481485,0.8288266437568548,0,1.0,0.219047424957172
+77,38,0.4897960438431577,2.0,1.3857234782312569,0.0006997677134546416,0.036764589828646145,0.8287966805669255,0,1.0,0.23265347947719228
+77,39,0.47046479898311366,1.95,1.385637180449118,0.0006997633635728862,0.036574152275903805,0.8178780473862168,0,1.0,0.23488266327704552
+77,40,0.5160308579349892,2.0,1.3856419800240487,0.0006998980916427098,0.03669222071451949,0.8287851532543097,0,1.0,0.2201028597832969
+77,41,0.5139103767852642,2.0,1.3854285233712422,0.0006996233372779728,0.03675230152194301,0.8287547835741068,0,1.0,0.21303458928421398
+77,42,0.5112529986887573,2.0,1.3851103028774503,0.000699356005060186,0.03657123364217478,0.8287095410081976,0,1.0,0.2041766622958574
+77,43,0.49748547569081175,2.0,1.3847038677311296,0.0006990502170656677,0.036490579809076565,0.8286517529793919,0,1.0,0.19161825230270588
+77,44,0.46048800451883354,2.0,1.2324922832116139,0.000682226555727054,0.03396812650949196,0.8059423190792608,0,1.0,0.20162668172944512
+77,45,0.5072353511790042,1.95,1.3845868404999315,0.0006989686590356592,0.036560258612594265,0.8177213063796938,0,1.0,0.19078450393001378
+77,46,0.49816510593640134,2.0,1.2379486073782928,0.0007239259694575048,0.03499071476314447,0.8068072597190616,0,1.0,0.16055035312133775
+77,47,0.48719810087075444,2.0,1.2585890352521953,0.0007141805074973278,0.03476462466658374,0.8100011112726598,0,1.0,0.15732700290251486
+77,48,0.46816715109717677,2.0,1.2688775566392587,0.000706969968808791,0.035247364484303476,0.8115772543789282,0,1.0,0.16055717032392242
+77,49,0.4694145294640485,2.0,1.2644053359339118,0.0007043176485336739,0.03514031986279821,0.810891597517901,0,1.0,0.16471509821349475
+78,0,0.10989466554263104,2.0,1.3855406419332383,0.0007003929797976837,0.036368579082388296,0.8287709133262632,0,0.12063001947343574,0.20547552584418913
+78,1,0.1969587076601949,1.95,1.3857193996102275,0.0007003016841349739,0.03671362722573489,0.8178904542628935,0,0.23155550436801597,0.18112168637662845
+78,2,0.1872509033731402,1.95,1.3834582199155259,0.0006991333569966164,0.03664563421728645,0.8175530707080682,0,0.25367200731084794,0.2192736681626701
+78,3,0.2598895801898088,2.0,1.3727649283344385,0.0007038056464954604,0.03660059265420647,0.8269512701854457,0,0.3542645193463938,0.2272792415041709
+78,4,0.21504683248493395,2.0,1.37346481562549,0.0007067437010187794,0.03656903353201492,0.8270522436475279,0,0.36405251122403476,0.2314194266510668
+78,5,0.2581574120882494,1.95,1.3745158121577385,0.0007049246228859527,0.03651458673386127,0.8162171686413946,0,0.393566184190333,0.26910312804038716
+78,6,0.2521616927032021,1.95,1.3761694360592345,0.0007034027869531614,0.036171735207845765,0.8164646375179145,0,0.4219923853899131,0.27788246182412274
+78,7,0.3183759241190772,2.0,1.3546344938213488,0.0007083612831197985,0.03614459114224292,0.8243426728713833,0,0.4928337738429348,0.2708080486063444
+78,8,0.3693955600300607,2.0,1.3552930389223423,0.0007114823455057293,0.03629453064791639,0.8244389145235431,0,0.6061763699913647,0.2564167067783827
+78,9,0.3588400765653328,2.0,1.221703562581498,0.0009134919020940752,0.036837330785727575,0.8043222063341746,0,0.6364426743119204,0.2808766894685486
+78,10,0.4103113379528422,2.0,1.2371025844986565,0.0008941639197160377,0.03685593890710888,0.8067284482401736,0,0.7142917676780893,0.2819821029386883
+78,11,0.4489403724796355,2.0,1.2348890611390242,0.0008975909640314365,0.036601195336625016,0.8063841566397064,0,0.798344495799126,0.2653419138666169
+78,12,0.4660545134282374,2.0,1.232604434787767,0.0008998392225827133,0.03593549395693326,0.806027914107001,0,0.8690781163510323,0.2614108896260816
+78,13,0.4321927386388368,2.0,1.3850112525394014,0.0006992998712830195,0.03665695782711195,0.8286954644137738,0,0.8855154316324217,0.25995521995289356
+78,14,0.4725807683384293,1.95,1.3849844216691312,0.0006993627942151574,0.03671481691972491,0.8177806770927141,0,0.9234809730782318,0.2772945970237885
+78,15,0.5303066765961297,1.95,1.384885934628889,0.0006994818790677215,0.0364933174595803,0.8177660360368117,0,1.0,0.2676889219870989
+78,16,0.5232195671135941,1.95,1.384522470425745,0.0006990751661560066,0.03672716612334039,0.8177117433715069,0,1.0,0.27739855704531363
+78,17,0.5311345465776665,2.0,1.385254612906623,0.000699437331590036,0.03655079241434543,0.8287300479369795,0,1.0,0.2704484885922213
+78,18,0.47767499096574023,2.0,1.384877142529311,0.0006992000116796832,0.036416713889796226,0.8286763970580001,0,1.0,0.2589166365524673
+78,19,0.5231766798306816,1.95,1.384897976918963,0.0006991951138162088,0.03661723226564803,0.817767745159569,0,1.0,0.24392226610227197
+78,20,0.5151094782315412,1.95,1.3844026665076725,0.0006988469931809987,0.03649304870793097,0.8176938167820532,0,1.0,0.2503649274384706
+78,21,0.5188838884813172,2.0,1.3850487383452197,0.0006994494582644616,0.03659336544912341,0.828700828276121,0,1.0,0.22961296160439026
+78,22,0.5090080959819747,2.0,1.3845928588019698,0.0006992684523087784,0.03660966456633482,0.8286360524437973,0,1.0,0.19669365327324895
+78,23,0.5005720202782046,2.0,1.3339319280376143,0.0007311628659300523,0.036219412264265505,0.8213314388763806,0,1.0,0.20190673426068184
+78,24,0.501291863931234,2.0,1.3857691650067698,0.0006998007951321181,0.03648513353173481,0.8288031724792532,0,1.0,0.20430621310411332
+78,25,0.5057523493436635,2.0,1.3860023032271152,0.000700058760421796,0.03663453346062332,0.8288363227631552,0,1.0,0.18584116447887822
+78,26,0.48791388192930535,2.0,1.3387681600532841,0.000718316189516296,0.035818183282291985,0.8220362758146075,0,1.0,0.22637960643101765
+78,27,0.5059418963471479,2.0,1.3862647463814186,0.0007001772828492747,0.036522090583420326,0.8288735851101379,0,1.0,0.21980632115715978
+78,28,0.4612746884655775,2.0,1.386253965706967,0.0007001448372029655,0.036632372448826916,0.8288720467461247,0,1.0,0.20424896155192504
+78,29,0.4842554745274028,1.95,1.3861854575915507,0.0007001125759554863,0.036781178925313275,0.8179598049748139,0,1.0,0.21418491509134263
+78,30,0.46815749184508704,1.95,1.386210533020313,0.0007002174362847622,0.03670527830972228,0.8179635699427994,0,1.0,0.22719163948362342
+78,31,0.5097621461481581,2.0,1.3860983086975687,0.0007002658270440637,0.036754286974077656,0.8288500010578292,0,1.0,0.19920715382719334
+78,32,0.48515767401493803,2.0,1.3265533833247107,0.0007170282629562564,0.03554019702869159,0.8202419296761404,0,1.0,0.21719224671646006
+78,33,0.466880565875838,1.95,1.3856875814473417,0.000700418326397333,0.036539415928480395,0.8178857497851337,0,0.9932176768403338,0.231978317132348
+78,34,0.5095352945758023,2.0,1.3854384928129875,0.0007005333002423309,0.03673640413458994,0.828756456718128,0,1.0,0.23178431525267415
+78,35,0.4958175749424443,2.0,1.3854003972785003,0.000700122448507803,0.03676109104340215,0.8287509335444916,0,1.0,0.2527252498081475
+78,36,0.5144783138328973,2.0,1.3853590587239095,0.0007004541918972261,0.03657958751605751,0.8287451607468208,0,1.0,0.24826104610965766
+78,37,0.5159891384853748,2.0,1.3852300642933915,0.0007000265683880346,0.036571700626626326,0.8287267308343728,0,1.0,0.2532971282845823
+78,38,0.5158764105090295,2.0,1.385017881127391,0.000699657069155118,0.03675428648310371,0.8286965068160276,0,1.0,0.25292136836343165
+78,39,0.47886644341841245,2.0,1.384718815826077,0.0006992630319475082,0.03653042497165514,0.8286539358531754,0,1.0,0.26288814472804145
+78,40,0.4783860044215201,1.95,1.3845352113761964,0.0006993410692486155,0.03649419144826943,0.8177137217902888,0,1.0,0.26128668140506683
+78,41,0.5064373499453922,2.0,1.3842281762444286,0.0006993889203908928,0.03639800037150383,0.82858429613849,0,1.0,0.28812449981797406
+78,42,0.5178636168189052,2.0,1.3843033684129606,0.0006998202518758403,0.036564410933517255,0.8285950981157716,0,1.0,0.25954538939635086
+78,43,0.5200001274809599,2.0,1.3840167674462918,0.0006993212077344448,0.0365116366068731,0.8285542479245764,0,1.0,0.26666709160319946
+78,44,0.5045980508912594,2.0,1.383641994896355,0.0006987847951749715,0.03669588991080959,0.8285008517044199,0,1.0,0.28199350297086456
+78,45,0.531237926197339,2.0,1.3836044009579085,0.0006991468334460448,0.03653306775819053,0.8284956129058798,0,1.0,0.27079308732446333
+78,46,0.5211741571453034,2.0,1.3846732050638482,0.0006993642698807875,0.036474013227865185,0.8286474883891983,0,1.0,0.27058052381767755
+78,47,0.5098263776487523,2.0,1.3842985726580588,0.0006989318860385654,0.036706142550540374,0.8285941646546311,0,1.0,0.29942125882917403
+78,48,0.4986364054729157,2.0,1.3842144452967657,0.0006991254209433388,0.03658708979829386,0.8285822710391996,0,1.0,0.3287880182430523
+78,49,0.5014187491987682,2.0,1.3841049549064695,0.0006993434044650418,0.036463199393553365,0.828566781081886,0,0.99875753685838,0.33971911485138717
+79,0,0.1727850275096506,2.0,1.385729446156365,0.0007005593128897084,0.0363517785173719,0.8287977520139581,0,0.1780437147243904,0.20522513873298143
+79,1,0.17884270402870853,1.95,1.3856177686326885,0.0007005964114930924,0.03671476179228851,0.8178754040832803,0,0.21909664217167368,0.2373468238667969
+79,2,0.23053231582313008,2.0,1.3775523592167727,0.0006999578850878502,0.03657937681577346,0.8276341954833097,0,0.3009214823846463,0.23387907623090518
+79,3,0.19042162110951938,2.0,1.3771729574956248,0.0006998963737962633,0.03654740706426059,0.8275800473320709,0,0.2911188834964537,0.24658022570312632
+79,4,0.22836574065312745,1.95,1.3772425783150766,0.0006989116664336474,0.03647528127663384,0.8166240483382113,0,0.3162784059696091,0.2728479275509461
+79,5,0.2418325085994002,1.95,1.378690312891216,0.0006984068569048151,0.036448243349626944,0.8168405950296747,0,0.3285581839664423,0.30136411670941093
+79,6,0.23575111244377603,2.0,1.3799258816007438,0.0006980045184188086,0.0362313845169325,0.8279719725830049,0,0.3468394534035232,0.32338443694122254
+79,7,0.24453491791791596,2.0,1.38011647295185,0.0006975155631968795,0.03654166856418613,0.827998978377337,0,0.3626951697326836,0.3315228334161417
+79,8,0.3142432923686698,2.0,1.3800041857448915,0.0006969408640583292,0.036572747861345144,0.827982822512647,0,0.43005088913829254,0.34074312237784277
+79,9,0.34444041713642726,2.0,1.3450857948098118,0.000714457327664805,0.03618000059477592,0.822957495222164,0,0.5077536212321152,0.33779656214527065
+79,10,0.3445805048592816,2.0,1.345261243096341,0.0007199365210669282,0.036020182829068555,0.8229846527517082,0,0.5453471338185802,0.3548055044394982
+79,11,0.39364186378953653,2.0,1.3453873263649436,0.0007158739830153406,0.035916383206900035,0.8230018363543229,0,0.615984435767748,0.3574936316081246
+79,12,0.42232783990382095,2.0,1.2072549108236919,0.0009204007492070031,0.03579546250858865,0.802040352548072,0,0.6890533238524958,0.35568836787607544
+79,13,0.4217386781723752,2.0,1.2044667352331297,0.0009210133853352847,0.0362178284600277,0.8015974914148187,0,0.7145213893685739,0.3864337414164854
+79,14,0.4704652040938328,2.0,1.2210414268457521,0.0009001940166829322,0.03660092852458678,0.8042137855431372,0,0.7962558125613227,0.3732095968976789
+79,15,0.5110713196960929,2.0,1.2178573196199936,0.0009007340958516652,0.036732290772097186,0.8037121199365668,0,0.8901402218434384,0.35005076986239164
+79,16,0.5298173877790334,2.0,1.3716621862877965,0.0006975480984526117,0.03633902557369319,0.8267916154918642,0,0.966099544948116,0.34459189933262346
+79,17,0.4997307286491371,2.0,1.3707100476359584,0.0006978396109460687,0.03639957824253372,0.8266553034594355,0,0.98529605660437,0.3520410200246303
+79,18,0.551068223637867,1.95,1.374557222407454,0.0006974187550108889,0.03641518570551465,0.8162211285623626,1,1.0,0.3368940787928898
+79,19,0.5246253565586881,1.95,1.3469549020664675,0.0006906835373584547,0.035785428728553136,0.8120424181740404,1,1.0,0.3487511885289605
+79,20,0.5112490779599863,1.9,1.3500247343240828,0.0007008006380023418,0.03572582292429342,0.8008198518797739,1,1.0,0.3374969265332876
+79,21,0.5643733677758687,1.95,1.3520135191164124,0.0006970946895046729,0.0358977074617844,0.8128152449173895,1,1.0,0.38124455925289547
+79,22,0.5865654318306976,1.95,1.3495037292219632,0.000696214567093267,0.03591846209457963,0.8124328207954054,1,1.0,0.45521810610232516
+79,23,0.5570293561299127,1.95,1.3718849297248121,0.0007162492686558955,0.03637384175724188,0.8158255934524015,1,1.0,0.45676452043304233
+79,24,0.5822195925865462,1.9,1.3754361714645622,0.0007132526005005724,0.036545325528585845,0.8048461118905231,1,1.0,0.47406530862182056
+79,25,0.5961663278332343,1.9,1.3741561791301902,0.0007153089048994018,0.036557418385903165,0.8046456329832892,1,1.0,0.5205544261107811
+79,26,0.6027315753825071,1.95,1.3730317828446001,0.0007168196687926156,0.03672507214035181,0.8159980218185988,1,1.0,0.5424385846083569
+79,27,0.6274637555525073,2.0,1.37210435405413,0.0007177861386472268,0.03672308380762958,0.8268607226838761,1,1.0,0.591545851841691
+79,28,0.6001221642183477,2.0,1.3737888927321076,0.0007139119794887849,0.036643218578639496,0.8271006439078148,1,1.0,0.600407214061159
+79,29,0.6042811707902493,1.95,1.3756636425378916,0.0007072719247402955,0.036655001025232926,0.816389992109162,1,1.0,0.6142705693008312
+79,30,0.651683473575557,2.0,1.373504479645513,0.0007076787590147464,0.03658887894535823,0.8270581844779771,1,1.0,0.6722782452518563
+79,31,0.6049383578651273,2.0,1.3736965678189363,0.0007114135717808138,0.03661015151695986,0.8270867259545414,1,1.0,0.6497945262170907
+79,32,0.597732238796518,1.95,1.3761423450121975,0.0007085575364816636,0.036682323309134554,0.8164621227873593,1,1.0,0.6257741293217269
+79,33,0.5873390356733457,2.0,1.3775058457712068,0.0007062923390490603,0.03660268425673986,0.8276293673090303,1,1.0,0.5911301189111521
+79,34,0.6033619137781461,2.0,1.3773639787074499,0.0007109311365475167,0.03665624264308753,0.8276104514066315,1,1.0,0.6112063792604866
+79,35,0.6482259102261682,2.0,1.378496543887246,0.000704429891545162,0.036701189232128076,0.8277701223932876,1,1.0,0.6607530340872269
+79,36,0.6209086583427709,2.0,1.3783366806965516,0.0007070142341067146,0.036578536050876444,0.8277480669826115,1,1.0,0.6696955278092362
+79,37,0.6458545983271803,1.95,1.3768903794965508,0.0007075474559304271,0.03654892592838799,0.8165738879291666,1,1.0,0.686181994423934
+79,38,0.6080381218735202,1.95,1.3790866325140771,0.0007055861180441892,0.03624321250851746,0.8169020294289834,1,1.0,0.660127072911734
+79,39,0.6201489407800475,1.9,1.3799942863293992,0.0007036256409081584,0.03664954688672427,0.8055580392673265,1,1.0,0.6671631359334913
+79,40,0.5976956099733831,1.95,1.3783650471892648,0.0007039596657924894,0.036593031463578354,0.8167935882208212,2,1.0,0.6256520332446104
+79,41,0.6744867422789513,1.9,1.3675368023151129,0.0007183806762698739,0.03663560660139271,0.8036039971990314,2,1.0,0.6482891409298379
+79,42,0.5805172880193055,1.9,1.3643710772331514,0.0007194902206954946,0.03607238753410707,0.803104238512337,2,1.0,0.6017242933976849
+79,43,0.5721673643684279,1.8499999999999999,1.3680922264136934,0.0007151590873508095,0.03654220028854097,0.7915877327283988,2,1.0,0.5738912145614261
+79,44,0.6335442343186758,1.9,1.3732462889540091,0.0006923595572661803,0.036289360373043054,0.80449534779005,2,1.0,0.6118141143955858
+79,45,0.6217956272361341,1.9,1.3685424049345118,0.0007145448240175774,0.03663009489998978,0.8037614475426477,2,1.0,0.6393187574537803
+79,46,0.6830547801471634,1.95,1.371514351838301,0.0007108264828582043,0.036654184937389624,0.8157682760739875,2,1.0,0.6768492671572112
+79,47,0.691736032550658,1.95,1.3693692385601155,0.0007108732451300208,0.03660161059731239,0.8154456818273509,2,1.0,0.7057867751688599
+79,48,0.6051016142510646,2.0,1.3665394814048466,0.0007110350487695652,0.036554230085527675,0.8260606542761518,2,1.0,0.6836720475035485
+79,49,0.5978256650399136,1.95,1.370089606641379,0.0007073853785636632,0.036588223765553804,0.8155530189516274,2,1.0,0.6594188834663788
+80,0,0.1568834693959989,2.0,1.3825855172143346,0.0007021595740204833,0.03642966644932634,0.8283516473470994,1,0.12642854680822815,0.22104016890902542
+80,1,0.1813062963153498,1.95,1.382639500665184,0.0007015739345008668,0.036676789516744204,0.817431647205689,1,0.16119740156902945,0.2560911189591268
+80,2,0.22949177906825385,1.95,1.3824658215317809,0.0007010896556961856,0.03662121300850654,0.8174055818371773,1,0.21290865794314065,0.31442771963665866
+80,3,0.20988344433793196,1.95,1.3862520798115827,0.0007002170788847084,0.03639223902795723,0.8179697560373071,1,0.23173599537637077,0.32396348729127894
+80,4,0.2115812686019456,2.0,1.3862727370987127,0.0007001865780096924,0.0367588427750347,0.8288747211646778,1,0.24021706087975342,0.3183148141668141
+80,5,0.27826573883990263,2.0,1.3862671664760815,0.0007001593917166902,0.03674833155614972,0.8288739233059051,1,0.2881811024118339,0.37664432625056354
+80,6,0.2475978993421612,2.0,1.386288572819083,0.0007001695043050513,0.03638276921904328,0.8288769624705421,1,0.34014815710898033,0.3384621216618968
+80,7,0.2594701023520067,1.95,1.386291128074973,0.0007001733181643815,0.03671619393205746,0.8179755570342407,1,0.375120117522327,0.3314068511435862
+80,8,0.339616965923013,2.0,1.3862636756185742,0.0007001769437630046,0.0366833085126829,0.8288734331345707,1,0.4298491047997628,0.3922577466770263
+80,9,0.3253899913081972,2.0,1.3859511133402866,0.0006999957284650608,0.036388686803691235,0.8288290426171127,1,0.4573459722880588,0.4081720079765789
+80,10,0.3182407096077215,2.0,1.3804783627431514,0.0006972980662116417,0.03651918702127292,0.8280504494631867,1,0.5012648720575883,0.35911586928228717
+80,11,0.3405300398499507,2.0,1.3859297408285487,0.0006999866602814484,0.036754970678258836,0.8288260078732741,1,0.5116500749664314,0.38623336621126036
+80,12,0.33596445744669,2.0,1.3857172520855499,0.0006999172511734284,0.03644831419917218,0.8287958395570288,2,0.548596304600108,0.355086452022156
+80,13,0.43685982220867925,2.0,1.3856188577427402,0.0006997738272895759,0.036675876228326326,0.8287818369033373,2,0.6122096135792486,0.3732532559232659
+80,14,0.355029885211775,2.0,1.3858691378944537,0.0006999950966303664,0.03675722746953516,0.8288174121480814,2,0.6327178428567568,0.33980916023024077
+80,15,0.442279554247203,1.95,1.385967526586607,0.0006999582350212898,0.03643052332302884,0.8179273064894774,2,0.6864882105014591,0.3922809001553979
+80,16,0.46733833836128624,1.95,1.386107123398292,0.0007001907755837566,0.03678416743516772,0.8179481638897793,2,0.7122975319368743,0.44139775195512176
+80,17,0.5382544006916821,1.95,1.3855388119904422,0.0006998709960952564,0.03657813658540704,0.8178634266637113,2,0.7921629452682198,0.471297408614647
+80,18,0.5346554232344252,1.95,1.3851141513344756,0.0006998287455275511,0.03656360996866638,0.817800146875475,2,0.8285008115696427,0.5108503286885602
+80,19,0.532137955506611,2.0,1.3669789075835626,0.0006894595860038892,0.036081604574456874,0.8261175855110318,2,0.8664234037559271,0.5185619800141339
+80,20,0.5782175100788767,2.0,1.367445882771529,0.0006887595987430115,0.03605749018937647,0.826184453988897,2,0.8920016827156686,0.5713894566420306
+80,21,0.6036135008639476,2.0,1.3650986992566565,0.0006875131079553162,0.03583373283446799,0.8258467730928466,2,0.9461381411992662,0.5838608146141369
+80,22,0.6025665079199037,2.0,1.3624387576433337,0.0006862241990605077,0.03593296863823046,0.8254635069313522,2,0.974841690279303,0.6087661060272749
+80,23,0.617444787640624,2.0,1.3670521599633843,0.000710808968213301,0.036542503622921566,0.826134240952379,2,1.0,0.6248159588020801
+80,24,0.6470148112685886,2.0,1.3693941990385072,0.0007072548793996974,0.03656931991580127,0.826469366802653,2,1.0,0.6567160375619618
+80,25,0.5893330572772884,2.0,1.369561914112515,0.0007122705618603053,0.03655398732874647,0.826494857318196,2,1.0,0.6311101909242945
+80,26,0.6771324130808091,1.95,1.3729229624587005,0.0007090878635333535,0.03663018415308251,0.8159793604339861,2,1.0,0.6571080436026968
+80,27,0.6299892028389611,1.95,1.3701022956145266,0.0007094746346619937,0.03638934945530499,0.8155555562514019,2,1.0,0.66663067612987
+80,28,0.6541046865630794,1.9,1.3721377217088786,0.0007062950612253477,0.03655487986085457,0.8043253171593173,2,1.0,0.6803489552102646
+80,29,0.6694159811041126,1.9,1.371870009650074,0.0007109634159486374,0.03665922513327388,0.8042846492729043,2,1.0,0.7313866036803752
+80,30,0.7041797405423387,1.95,1.3713948260201543,0.0007150412271390125,0.0365648023631473,0.8157515787769037,2,1.0,0.7472658018077956
+80,31,0.6908650735231283,1.95,1.3694809732541517,0.0007155596142486536,0.03661580537925506,0.8154639070756274,2,1.0,0.8028835784104273
+80,32,0.62948742627206,2.0,1.3851389178480704,0.0007016785019910959,0.036346854667981224,0.8287142622097914,2,1.0,0.7649580875735335
+80,33,0.7240021845901459,1.95,1.3691128957838001,0.0007192707719401639,0.03639130169619627,0.8154096286029814,2,1.0,0.8133406153004864
+80,34,0.7059453289095972,1.95,1.3853407825460329,0.0007009626376636583,0.03674330801238567,0.8178342510467784,2,1.0,0.8531510963653239
+80,35,0.6922463186713588,2.0,1.3849174436079206,0.0007014125201033766,0.03641286590486117,0.8286827468100978,2,1.0,0.874154395571196
+80,36,0.6513950236984625,2.0,1.3856410894208282,0.0007008855796436794,0.036596220236911205,0.8287853071271026,2,1.0,0.837983412328208
+80,37,0.7430622103540018,1.95,1.3857453157068966,0.0007003946744061379,0.03659723833608703,0.817894342021728,2,1.0,0.8768740345133391
+80,38,0.7522142582523762,1.95,1.3855137171517897,0.0007008457209494813,0.03637988793499555,0.8178599788354295,2,1.0,0.907380860841254
+80,39,0.7597235061852555,2.0,1.3850420317886398,0.0007012373101842515,0.036733546417089445,0.8287003838330663,2,1.0,0.9324116872841852
+80,40,0.6683323892566642,2.0,1.3843435352891944,0.0007015772295040656,0.03652424252375393,0.8286013018082419,2,1.0,0.8944412975222137
+80,41,0.6598938173033326,1.95,1.3844606009305886,0.0007006328393006512,0.03674985568689484,0.8177029853587702,2,1.0,0.8663127243444418
+80,42,0.6501668984335305,2.0,1.3842193572550652,0.0006998017402369765,0.03671061181756939,0.8285831608211873,2,1.0,0.8338896614451016
+80,43,0.7099631081855033,2.0,1.3838601798997998,0.0006990451711884355,0.03647702472726889,0.8285319247581774,2,1.0,0.8665436939516779
+80,44,0.720371761729692,2.0,1.3839163305179596,0.0006997355255783141,0.036720214214915683,0.8285400978937418,2,1.0,0.9012392057656397
+80,45,0.7579606048811197,2.0,1.3836786655552924,0.0007003389248169868,0.036534996184959735,0.8285065037052904,2,1.0,0.9265353496037325
+80,46,0.7662380859800542,2.0,1.3831964204814635,0.0007009040743659515,0.03643832005388088,0.8284381344408517,2,1.0,0.9541269532668473
+80,47,0.7731167590227096,2.0,1.3824407739792062,0.0007014501894569669,0.03672216757882263,0.8283308642765275,2,1.0,0.9770558634090322
+80,48,0.75,2.0,1.381395674061355,0.0007019144207865835,0.03659127987970355,0.8281823333952185,2,1.0,1.0
+80,49,0.73,1.95,1.381108885912379,0.0007036270456973052,0.036503388099484974,0.8172037250259535,2,1.0,1.0
+81,0,0.13496882837203472,1.9,1.3853984514889301,0.0006997164977796176,0.03644356285085572,0.8064018987142285,0,0.12747544411746486,0.21326216908349593
+81,1,0.15721475511256894,1.8499999999999999,1.3853073735785584,0.0006996143476481233,0.03671103509193484,0.7944084967359408,0,0.16862030612758322,0.23255544220511884
+81,2,0.22235436489436644,1.8499999999999999,1.3851886514600917,0.0006994879417940574,0.03664031286007545,0.7943890646369972,0,0.2721209528476398,0.21168661251770177
+81,3,0.17716677245647522,1.8499999999999999,1.374451262725897,0.0006949076943186078,0.03649399853492472,0.7926282224023752,0,0.2752668673171204,0.22353341843209013
+81,4,0.2513579629493108,1.7999999999999998,1.3744072748929488,0.0006941772486453345,0.03634751965911374,0.7800221795369722,0,0.3545872874288833,0.23174349325919164
+81,5,0.2755624880750831,1.7999999999999998,1.3732790695577322,0.0006937304977112371,0.03612348741272463,0.779828378947232,0,0.42088952901482657,0.22402225489717487
+81,6,0.2741368580262301,1.7999999999999998,1.3392186397850891,0.0007365990810100352,0.03625330560425523,0.7739396391520422,0,0.45520845988340103,0.24017824690956566
+81,7,0.3319662686595077,1.8499999999999999,1.3395323611108307,0.0007323100410357893,0.03619721675250628,0.7868425350452081,0,0.5371274753396648,0.2237175950788059
+81,8,0.34940474357810886,1.8499999999999999,1.33949493393742,0.0007324192285470643,0.03612090049420439,0.7868362942683276,0,0.6122028567074931,0.21507866965037215
+81,9,0.3740569158859846,1.95,1.1873245303450752,0.000954266532877051,0.03684078531428151,0.7865465386681662,0,0.6734172105205247,0.21563343892591574
+81,10,0.37210944116832567,2.0,1.193275205044842,0.0009473242615128689,0.03679024756892024,0.7998200180933382,0,0.7014028264867809,0.23849436857871098
+81,11,0.4356793362058921,2.0,1.212233766806319,0.0009224711765055415,0.03652289936636577,0.8028303204669006,0,0.7907264159780276,0.23129589938227024
+81,12,0.46944535018183,2.0,1.2101560557068132,0.0009248541725254229,0.03610981575413123,0.8025019801165687,0,0.8894541280956781,0.21221232981186247
+81,13,0.422277929226421,2.0,1.3661258833897438,0.0006865979251508256,0.03590058617935936,0.8259941941830213,0,0.8945418494750943,0.21487063145461086
+81,14,0.48723109712835455,1.95,1.3685040397449664,0.0006882411861905785,0.03602602291926622,0.8153086232448682,0,0.962184993857791,0.20785699861746051
+81,15,0.4953686796908744,1.95,1.366884649388445,0.0006870723561551206,0.036306234491412334,0.815064297793492,0,1.0,0.18456226563624797
+81,16,0.4639650728690733,2.0,1.311087375825461,0.0007133934999065533,0.035495148056104736,0.8179491553050776,0,1.0,0.21321690956357767
+81,17,0.49005906612120775,1.95,1.3703795946444826,0.0006898038482322655,0.036304367552880266,0.8155913482405911,0,1.0,0.23353022040402577
+81,18,0.5014495609926305,1.95,1.3690425626972682,0.0006891607941757552,0.036101507402214385,0.8153899773721105,0,1.0,0.27149853664210144
+81,19,0.4859155285175858,2.0,1.368065806465244,0.0006888170770371949,0.03603308700571985,0.8262734758271998,0,0.9943252806879175,0.2939513874747292
+81,20,0.5304025148357691,2.0,1.370272229233839,0.0006912592375004909,0.036127018866393204,0.8265906702899454,0,1.0,0.2680083827858966
+81,21,0.5099246060657389,2.0,1.373537846254763,0.0006921747871711316,0.036331610640951875,0.827058521844596,0,1.0,0.29974868688579626
+81,22,0.5328649830757464,1.95,1.3726393858558625,0.000691889353618199,0.03628425538689883,0.81593160965754,0,1.0,0.30954994358582105
+81,23,0.5383060962944282,1.95,1.3713438752933504,0.0006906854611852666,0.03624299186472408,0.8157365989743073,0,1.0,0.2943536543147605
+81,24,0.516938393055689,2.0,1.3741096025741204,0.0006919630030618914,0.03621538029935005,0.8271402258545235,0,1.0,0.32312797685229655
+81,25,0.5213177415754617,1.95,1.3735264843984036,0.0006916605344771626,0.03622706827916112,0.8160647344889649,0,1.0,0.33772580525153917
+81,26,0.5025332587358093,2.0,1.3721872568272806,0.0006909161361851936,0.03623711104220542,0.8268648976462863,0,1.0,0.34177752911936443
+81,27,0.5464949685912203,2.0,1.3743992602264432,0.000693185399598278,0.03631032255741398,0.8271819864588229,0,1.0,0.3216498953040674
+81,28,0.5395432450173636,2.0,1.376774313886201,0.0006939180052951049,0.036319006875024006,0.827521450348956,0,1.0,0.298477483391212
+81,29,0.493309172780784,2.0,1.3784539972682595,0.0006947850325028058,0.0365552499373315,0.8277613064091927,0,1.0,0.31103057593594663
+81,30,0.5173288852440052,1.95,1.379909013879528,0.0006960150240551186,0.036438235578927225,0.8170221418249632,0,1.0,0.3244296174800174
+81,31,0.5416847471750834,1.95,1.378926311529732,0.000695537362444223,0.036449963574888146,0.8168750421317066,0,1.0,0.30561582391694453
+81,32,0.48865103029165824,1.95,1.3802926595164646,0.0006960799015859487,0.036337214391819875,0.8170795080998121,0,1.0,0.2955034343055275
+81,33,0.5297481068666965,1.9,1.3814933971325198,0.0006972513902284522,0.03656219405785198,0.8057907488306433,0,1.0,0.2991603562223214
+81,34,0.5110197790660203,1.9,1.3809072208928135,0.0006966409227739584,0.036434338422662645,0.8056988093498785,0,1.0,0.3033992635534007
+81,35,0.5236819954652602,1.95,1.3801703252211623,0.0006962894105269587,0.03653848156243844,0.817061285866671,0,1.0,0.3456066515508672
+81,36,0.5306245040586127,2.0,1.3794832834446096,0.000696008862722764,0.03647288249035186,0.827908353569616,0,1.0,0.3687483468620424
+81,37,0.5133880845501357,2.0,1.3787162089156293,0.0006957112125513362,0.03643828158816655,0.8277989514233751,0,0.9996441377160742,0.3784347648790204
+81,38,0.5611427945898674,2.0,1.3798758070914932,0.0006974563630933253,0.03655197999368551,0.8279646839764119,0,1.0,0.37047598196622433
+81,39,0.5497748023711024,2.0,1.3813393030255257,0.0006975089862284274,0.03639387427632682,0.8281730580492537,0,1.0,0.36591600790367473
+81,40,0.5362611413466544,2.0,1.3810008655628392,0.0006968722433421499,0.036388561633027304,0.8281247109615836,0,1.0,0.38753713782218124
+81,41,0.5628137201906058,2.0,1.3801596986675855,0.00069654683464041,0.03661619134639518,0.8280048584340161,0,1.0,0.376045733968686
+81,42,0.5156279543213989,2.0,1.381296664939708,0.0006968089825071732,0.03646860050126262,0.8281667912303872,0,1.0,0.38542651440466275
+81,43,0.5405095862069776,1.95,1.3823809119669705,0.0006980457006772155,0.03647929187570708,0.8173919997353893,0,1.0,0.4016986206899253
+81,44,0.5463241990285179,1.95,1.3264081272284112,0.0006663405591595716,0.03528810330104402,0.8088787225288245,0,1.0,0.4210806634283932
+81,45,0.5734369654629083,2.0,1.3244318476111137,0.0006648721728610323,0.03485844391286067,0.8199135053279321,0,1.0,0.41145655154302757
+81,46,0.5658360032069262,2.0,1.3232303524786422,0.0006644160704204991,0.035151731000251554,0.8197358951535062,0,1.0,0.38612001068975366
+81,47,0.5582360803493601,2.0,1.3847724356217286,0.0006990994567767542,0.036730780744465154,0.8286615025616474,0,1.0,0.39412026783120035
+81,48,0.5462667552842324,2.0,1.3843840228114113,0.0006988780187220495,0.03658504338583749,0.8286062851464179,0,1.0,0.42088918428077476
+81,49,0.5686113720406845,2.0,1.3058958258870765,0.0006558489755602203,0.0345555744266786,0.8171576188754505,0,1.0,0.4287045734689482
+82,0,0.10632463940122722,2.0,1.3850554698842685,0.0007001780700425452,0.036443844112690485,0.8287019907150562,0,0.10930979857983629,0.208669066564309
+82,1,0.17784742784415333,1.95,1.3853902480953304,0.0007001637790456929,0.03671028293741292,0.8178413823543834,0,0.17252063045917476,0.2294639188682781
+82,2,0.21051874375740093,1.95,1.3853293458404075,0.000700283547795343,0.0367104409000236,0.8178323448392351,0,0.2505347442940965,0.20101615346587437
+82,3,0.19736564934046033,1.95,1.3686715189219751,0.0006920245896396815,0.036454416026613826,0.8153349802969599,0,0.2693365960795645,0.23210336969544842
+82,4,0.25592641701984525,2.0,1.3706978727198806,0.0006917442867579882,0.03621538070647968,0.8266518119361025,0,0.3666147605513529,0.1976017093310137
+82,5,0.29268732822078797,2.0,1.382141969477757,0.0006975221174531027,0.03659449350062972,0.828287253096677,0,0.4753091896245233,0.17521217456992888
+82,6,0.3060075875139229,2.0,1.3859466946350818,0.0007005749838864445,0.03635871977220744,0.8288285800880804,0,0.5377092184443444,0.16974633378728382
+82,7,0.3144505810531412,2.0,1.3857942507869532,0.0007006777181599864,0.036705137360560566,0.8288069806792491,0,0.5829411524041865,0.20424706697155523
+82,8,0.3364572082544529,2.0,1.3362892887356317,0.0007441058632374713,0.036316553764723696,0.8216809032596317,0,0.6180696859525446,0.23076444624478332
+82,9,0.3579110625002887,2.0,1.1833418143304544,0.0009370730658217762,0.03670271062775825,0.798221563413905,0,0.6496814602494281,0.2601282613350582
+82,10,0.3743309113170428,2.0,1.1993769494823499,0.000915890985464519,0.036449675705333494,0.8007851401323682,0,0.6840066197169624,0.2690942114341929
+82,11,0.3612085950549958,2.0,1.213192028517256,0.0008962850854658111,0.036073910169675816,0.8029736778229472,0,0.7006359401023858,0.2698473967134715
+82,12,0.39901814274700986,2.0,1.232902423671974,0.0008767907345128802,0.03597979694983994,0.8060672935941255,0,0.7325777890565243,0.2866234237480005
+82,13,0.4683285077190629,2.0,1.244333160667037,0.0008595523857756951,0.03610769519863801,0.8078425776034349,0,0.8383353844231335,0.27664784649936514
+82,14,0.5003259112679554,2.0,1.3846794974418681,0.0006996304215409857,0.036724776023346783,0.8286484574291817,0,0.9324149520624334,0.25786643480994004
+82,15,0.4845169631974527,2.0,1.384963807284471,0.0007003517285172389,0.03647659949295213,0.8286890276648772,0,0.953210175733619,0.27744297634668347
+82,16,0.5199630087512842,2.0,1.3850351164081798,0.0006999519222401485,0.03666178848225375,0.8286990372115098,0,1.0,0.2332100291709471
+82,17,0.5106928643565988,2.0,1.3851656150592477,0.000700557106341997,0.03675387109204604,0.8287177334118081,0,1.0,0.2356428811886624
+82,18,0.5132593553157975,2.0,1.384743414282167,0.0007006256540909374,0.036408996228992255,0.8286578154173914,1,1.0,0.24419785105265815
+82,19,0.494984501110894,2.0,1.3409265073234473,0.0006928223446752466,0.03607367638873508,0.822344357812167,1,1.0,0.2499483370363131
+82,20,0.5232228300523959,2.0,1.343867203712714,0.0007038000166837231,0.03596810512149734,0.822776770527291,1,1.0,0.2774094335079862
+82,21,0.5030889924555481,2.0,1.349935445008155,0.0006997371913502069,0.035579434280660654,0.8236586994289498,1,1.0,0.27696330818515996
+82,22,0.5308036495270371,1.95,1.3518653624525632,0.0007090235603831156,0.03595803980442106,0.8127963325208682,1,1.0,0.30267883175679
+82,23,0.5097835368359244,1.95,1.3557228997605497,0.0007048814173010079,0.03646971604166278,0.8133813238404074,1,1.0,0.29927845611974785
+82,24,0.5544626228635913,1.9,1.35690661430236,0.0007127868398603136,0.03647132909196397,0.8019190985904385,1,1.0,0.3482087428786374
+82,25,0.5727167865323121,1.9,1.353006211461978,0.0007126204599667142,0.035820581353570864,0.8012987570045136,1,1.0,0.40905595510770676
+82,26,0.5445529568547142,1.95,1.379657982096253,0.0007087382109308839,0.03673004997440088,0.8169884150798156,1,1.0,0.41517652284904705
+82,27,0.5459841363947522,1.9,1.3812629135570615,0.0007067088330051346,0.03671652857546952,0.805757637877415,1,1.0,0.4199471213158403
+82,28,0.5765721559853771,1.95,1.3820768907770336,0.0007052438234843816,0.03632414351388805,0.8173487656707296,1,1.0,0.4552405199512571
+82,29,0.5590582746616367,1.95,1.38133260643837,0.0007057530561667619,0.03633583034723999,0.8172377775120316,1,1.0,0.46352758220545565
+82,30,0.586805229555267,2.0,1.381950373323622,0.0007041440222646481,0.036634802475573776,0.8282618850070075,1,1.0,0.4893507651842231
+82,31,0.5960375728070302,2.0,1.3811431145733246,0.0007045586441657532,0.03653596312093371,0.8281471447717123,1,1.0,0.5201252426901004
+82,32,0.624186657664509,2.0,1.380048750602215,0.0007049971486165396,0.03672760557882944,0.827991464460745,1,1.0,0.5806221922150298
+82,33,0.5989345185424055,2.0,1.3818080951940164,0.0007035377206887688,0.03657401005017019,0.8282414733304604,1,1.0,0.5964483951413516
+82,34,0.5779711043966594,1.95,1.3823706362568609,0.0007021448929101204,0.03657608839235825,0.8173916896687431,1,1.0,0.5599036813221981
+82,35,0.620248121663568,1.9,1.3821536014707125,0.0007036971812154638,0.036353928712087556,0.805896061289379,1,1.0,0.6008270722118934
+82,36,0.6027152072376861,1.9,1.377772876444552,0.0007052478599527223,0.036394080408185564,0.8052103630044961,1,1.0,0.609050690792287
+82,37,0.5886497262767767,1.95,1.3760859175452447,0.0007054194299974197,0.036417375646950266,0.8164527263463155,1,1.0,0.5954990875892555
+82,38,0.5813833672324928,2.0,1.3808023662973248,0.0007042638779537425,0.03653497339893589,0.8280985603206574,1,1.0,0.5712778907749759
+82,39,0.5722908961687017,2.0,1.3806448790339099,0.0007058975966247584,0.03661622100697756,0.828076605811737,1,1.0,0.5409696538956723
+82,40,0.629574930695499,2.0,1.3801259493608398,0.0007074199206548462,0.03661223449792188,0.8280031490271081,1,1.0,0.5985831023183297
+82,41,0.645635156896668,2.0,1.3818863794428315,0.0007057021041780617,0.03677952355319951,0.8282532253357754,1,1.0,0.6521171896555595
+82,42,0.6188977230178084,2.0,1.3774785669387952,0.0007033492712626381,0.03654013668762932,0.8276246359765304,1,1.0,0.6629924100593613
+82,43,0.6168874690370136,1.95,1.3757582115496467,0.0007034055520632874,0.036542112689727645,0.8164030082797512,1,1.0,0.6562915634567119
+82,44,0.6444590404001185,2.0,1.3735272253668762,0.0007034123027484455,0.03616060823313565,0.8270602173684164,1,1.0,0.6815301346670614
+82,45,0.6533086638300285,2.0,1.3763894461683215,0.0007015125700572933,0.03636881152750828,0.8274686798463773,1,1.0,0.7110288794334283
+82,46,0.634660700293677,2.0,1.3780045679353543,0.0006998980124249789,0.03627730745695578,0.8276986790604159,2,1.0,0.7155356676455901
+82,47,0.649161189241668,2.0,1.3667906475532026,0.0007203589081336541,0.036649393066440314,0.8260994189225926,2,1.0,0.7305372974722266
+82,48,0.6108151892221354,2.0,1.3689657229453238,0.0007159230268579007,0.036563134013927495,0.8264103941420581,2,1.0,0.702717297407118
+82,49,0.5947485224262921,1.95,1.372986484829598,0.0007124020467321763,0.036573557878075896,0.8159898938278279,2,1.0,0.6491617414209734
+83,0,0.1269252533596781,2.0,1.38399930581425,0.0007008715854886367,0.03638782146485116,0.8285522079221931,0,0.10157744398130016,0.22098091922386018
+83,1,0.11791643872755675,1.95,1.3840448846958484,0.0007005231729827216,0.03668631839728564,0.8176409758078658,0,0.12064293113551597,0.23219755424450123
+83,2,0.1255726470073505,2.0,1.3845240347658634,0.000700359127995945,0.03669901178789095,0.8286265890856016,0,0.145157453969039,0.225032218065783
+83,3,0.19465835641420623,2.0,1.3849601856737161,0.0007002379460659306,0.03647083162838978,0.8286884812216485,0,0.23308214581227293,0.20475166029765682
+83,4,0.15384213618699044,2.0,1.37074004024275,0.0006914632260075421,0.03628594518240878,0.8266577738505854,0,0.22860454613539596,0.20800105910944022
+83,5,0.22879925417477726,1.95,1.370837369159768,0.0006909339597432179,0.0361706439060001,0.8156605283867266,0,0.31068669807794186,0.181748583145335
+83,6,0.2489988337243439,1.95,1.3818673373196484,0.000697515313628567,0.03653277141051604,0.8173151715116881,0,0.3939157182361624,0.1714418214329297
+83,7,0.28153526086445824,1.95,1.381950857952023,0.0006978630706575947,0.0366150821854692,0.8173277455796027,0,0.4712108231239896,0.17683643871620794
+83,8,0.2727926635263135,1.95,1.3850347544314963,0.00069935593170931,0.03663261289060281,0.8177881752863686,0,0.49336942764305247,0.18481630823030812
+83,9,0.24894021282383896,2.0,1.3847543984576913,0.0006992027131976285,0.03641130328075206,0.8286589709221273,0,0.49306721718801483,0.17237775316211001
+83,10,0.33213186856643034,1.95,1.3851327911588385,0.0006996886996366643,0.03667109475293303,0.8178028825159706,1,0.5927925703900374,0.1500494680347178
+83,11,0.3711764210557052,1.95,1.3850068702222187,0.0006996520263960772,0.036622602526036385,0.817784108448771,1,0.6345334489471957,0.224543471589423
+83,12,0.35205836190036754,1.95,1.3855360703122273,0.0006997730471782978,0.036497397639213044,0.8178629890736259,1,0.6554478307507201,0.2329307653335983
+83,13,0.424372668196681,2.0,1.3855054054929177,0.0006999235766126843,0.03676530011037987,0.8287657796472881,1,0.7082800262303296,0.3035355256818306
+83,14,0.39412964508240134,2.0,1.3853827894828883,0.0007000496577849863,0.03673753801061756,0.8287484139203839,1,0.7479799733426983,0.28312551915107337
+83,15,0.44255265309796715,1.95,1.3852057533618491,0.0006997333284762136,0.036457030495957186,0.8178137670279165,1,0.7743888783807035,0.3093236724856192
+83,16,0.49402192339467377,1.95,1.3857234079991916,0.0006998574783388762,0.036767976024598456,0.8178909189695187,1,0.8352038179091569,0.3664679874367033
+83,17,0.5394964066430611,1.95,1.3456730805940251,0.000710786009893467,0.03639928227209466,0.8118528374016909,1,0.907926156292633,0.42108648042002633
+83,18,0.5055275136474653,1.95,1.383073750056247,0.0007041118127213645,0.036533454953365616,0.8174972016953392,0,0.9477464674169271,0.3880964222689813
+83,19,0.5036965520043009,1.9,1.3835411841744398,0.0006993166303844928,0.03670407010526029,0.8061116560761032,0,0.9621085990579713,0.3961770412703745
+83,20,0.5574762626765073,1.95,1.3834331580409924,0.0006997969334426035,0.03645516174843012,0.8175495304091827,0,1.0,0.3915875422550243
+83,21,0.5252716292647932,1.95,1.3846218567992796,0.0006998201406313242,0.03655999013299207,0.8177267794383773,0,0.9993622734716413,0.4184223995871223
+83,22,0.533638646739412,1.9,1.2809701030137746,0.0006365303489139331,0.033942146389962145,0.7895546684183682,0,1.0,0.4454621557980397
+83,23,0.5796860659875136,1.95,1.2894670057653563,0.0006396116798827228,0.03379747615181516,0.8030941452476574,0,1.0,0.432286886625045
+83,24,0.5713014704768548,1.95,1.2877612267720675,0.0006377193657779117,0.03365014420520403,0.8028236651322634,0,1.0,0.4043382349228491
+83,25,0.5270476447703111,2.0,1.2837022642807816,0.0006346381632969437,0.03407757339690763,0.8138118599095965,0,1.0,0.42349214923437006
+83,26,0.5439307521315337,1.95,1.2951530092980024,0.0006408805934000184,0.034325601890875614,0.8039921459789645,0,1.0,0.4131025071051123
+83,27,0.5674657849707433,2.0,1.2917236757493091,0.0006419180167198392,0.034324439524378574,0.8150264178831229,0,1.0,0.3915526165691442
+83,28,0.5407589766175407,2.0,1.3843537412822846,0.0006989218675914638,0.03654930265301736,0.8286019970390627,0,1.0,0.40252992205846866
+83,29,0.5496433809415473,1.95,1.2756418638863063,0.0006276720056383754,0.03357006444234436,0.8008949488648447,0,1.0,0.4321446031384907
+83,30,0.5572661222693425,2.0,1.2720988491285414,0.0006295750549633746,0.033364520951078766,0.8120457348060702,0,1.0,0.457553740897808
+83,31,0.5804666367165519,2.0,1.2730486488636976,0.0006335888941733062,0.033275492903037024,0.8121918818782567,0,1.0,0.4348887890551728
+83,32,0.5726628395527136,2.0,1.2690779309256417,0.000630368051566011,0.03364371779081192,0.8115844675602355,0,1.0,0.4088761318423786
+83,33,0.5713149381947319,2.0,1.265006527051642,0.0006269686849850993,0.033719144959148496,0.8109600561438782,0,1.0,0.4043831273157727
+83,34,0.5179961303535088,2.0,1.2607864860196027,0.0006234804260295165,0.03350240260982546,0.810311186176654,0,1.0,0.393320434511696
+83,35,0.5396467149517,1.95,1.38487978479786,0.0006991946949177572,0.03673397900092806,0.8177650339625713,0,1.0,0.39882238317233326
+83,36,0.5584046960598038,1.95,1.3846459559129025,0.0006990233093962289,0.03668364390767111,0.8177301338449906,0,1.0,0.39468232019934585
+83,37,0.5577446458097228,2.0,1.3852105949473277,0.0006994602064766338,0.036701113879223174,0.8287238065828009,0,1.0,0.3924821526990761
+83,38,0.5602199541680446,2.0,1.3855225232326172,0.0006998523182190313,0.03676297266179342,0.8287681886397077,0,1.0,0.3673998472268152
+83,39,0.5495432363950357,2.0,1.3851691178440804,0.0006998242473324661,0.03658383942660097,0.8287180225623538,0,1.0,0.36514412131678536
+83,40,0.5523811722786864,2.0,1.3852986844200088,0.0007003303117581968,0.0365645125915265,0.8287365566907285,0,1.0,0.3412705742622878
+83,41,0.5414434859691483,2.0,1.3848939477909512,0.0007004136967330037,0.03675365004904827,0.8286791275325881,0,1.0,0.3048116198971608
+83,42,0.5272181094038927,2.0,1.3843951376383026,0.0007004854514687606,0.03654311042695747,0.8286083202097893,0,1.0,0.2907270313463087
+83,43,0.5134168514526686,2.0,1.3844344740712078,0.0007012649373046837,0.03649713223256327,0.8286141279569048,1,1.0,0.31138950484222844
+83,44,0.5424006824088728,2.0,1.3371069509158005,0.0007080157473081869,0.03593609056305978,0.8217901061230455,1,1.0,0.34133560802957597
+83,45,0.5698652645148726,2.0,1.3424123226281686,0.0007030750678908072,0.03557534902012119,0.822564315566236,1,1.0,0.3995508817162419
+83,46,0.537441962381541,2.0,1.338494376297893,0.0007018187147857509,0.035475691100687434,0.8219913919149788,1,1.0,0.3914732079384699
+83,47,0.5709700672050422,1.95,1.3407025543870705,0.0007134997063434742,0.03602408928054857,0.8110932548802584,1,1.0,0.4365668906834739
+83,48,0.5765510515667113,1.95,1.3720404565974973,0.0007108403237338622,0.03662252195623316,0.8158473355903436,1,1.0,0.45517017188903747
+83,49,0.5592232869970281,2.0,1.3716993338809536,0.0007146567328413611,0.03662901673462492,0.826801835218435,1,1.0,0.4640776233234268
+84,0,0.15794650741873095,2.0,1.3820006693214668,0.0007013900050141992,0.03643191094803374,0.8282682557384403,1,0.12403729983015221,0.22777195828890018
+84,1,0.20770132631141297,1.95,1.3819045233573417,0.0007008541401679189,0.03664018036243821,0.8173217207556571,1,0.17368778822435263,0.29408737007223973
+84,2,0.24373033434671904,1.95,1.381527721640822,0.0007010004953510161,0.03658892471831897,0.817265498637067,1,0.2213783750399419,0.3505966144358076
+84,3,0.20441414936375674,1.95,1.3862463904212459,0.0007001412689340759,0.03638210489826546,0.8179688863371042,1,0.25523975095428963,0.3077274966068029
+84,4,0.2737741100677731,1.9,1.3862181910968312,0.0007001206488424476,0.03675519854882995,0.8065299687052644,1,0.2956501825587775,0.351713456814207
+84,5,0.3050082510624991,1.9,1.3861644089932095,0.0007000846860430633,0.03663785998837542,0.8065215652173049,1,0.3321439268154474,0.4071689344544006
+84,6,0.2698223312266767,1.9,1.3847178748429438,0.0007006563756815442,0.03655172051796389,0.8062959199623314,0,0.36448641571267054,0.38009254980536156
+84,7,0.34175931383473823,1.8499999999999999,1.3695957439354423,0.0006898975675445998,0.03628367483427837,0.7918273412509564,0,0.4632955552614982,0.35480363910046325
+84,8,0.3466018956819616,1.8499999999999999,1.3331346997679772,0.0007252827121497765,0.03563952302117859,0.7857651755791846,0,0.5079156324349059,0.3447854756933309
+84,9,0.38114854901431683,1.9,1.3324077039878954,0.0007266051454566901,0.035855729599240396,0.7980032261946102,0,0.5885419404145229,0.31910590949502554
+84,10,0.3687286853574221,1.9,1.3327540391773858,0.0007278966821267192,0.035994105301576054,0.7980594639038993,0,0.6181948594646983,0.3381691385718092
+84,11,0.4316721254377367,2.0,1.2055845699341698,0.0008604356747348525,0.0354200070841033,0.801755954597621,0,0.7049505944413939,0.3323062922039305
+84,12,0.47040459441066934,2.0,1.209365612922921,0.000854263458707223,0.035367842392662927,0.8023542830047077,0,0.815189658648045,0.31442910317150435
+84,13,0.49412252480145136,2.0,1.378259323392353,0.0007073447769914618,0.03656701673079064,0.8277371312685141,0,0.8961180967210627,0.2855842870434209
+84,14,0.4484930383322214,2.0,1.377454859411547,0.0007078891909105339,0.036697828963486716,0.8276225491498787,0,0.9060609819582135,0.2868954851631201
+84,15,0.519737671447171,1.95,1.3777479127180632,0.0007060770064925337,0.03644056956142354,0.8167018549709827,0,0.9857769514959301,0.2847563028293294
+84,16,0.5338330537892243,1.95,1.3770901956039188,0.0007077842887229183,0.03671252713878774,0.8166038856241884,0,1.0,0.2794435126307474
+84,17,0.5212021287016702,2.0,1.3762070468824963,0.0007084496323177989,0.036421655114972036,0.8274446191480317,0,1.0,0.27067376233890045
+84,18,0.5293825969853324,2.0,1.3758993627422105,0.000709826873162861,0.036426801110463605,0.8274010769376079,0,1.0,0.2646086566177744
+84,19,0.5174787071575105,2.0,1.3750031469600392,0.0007105808237576051,0.03650710366035318,0.8272732675855796,0,1.0,0.2582623571917019
+84,20,0.5189632729833268,2.0,1.3743560061619695,0.0007122021137280961,0.03669934265167704,0.827181240157433,0,1.0,0.2298775766110892
+84,21,0.5042208590654925,2.0,1.373440036085974,0.0007130491831299028,0.03649604072383203,0.8270505030861662,0,1.0,0.21406953021830827
+84,22,0.47003241284339836,2.0,1.37272044787406,0.0007146678214228999,0.03665058935736691,0.8269480136965611,0,0.9980596869819776,0.23602846016869117
+84,23,0.47363312188165696,1.95,1.373290802327952,0.0007121569438176199,0.03666449615147839,0.8160355092336614,0,1.0,0.24544373960552313
+84,24,0.5146770724177459,2.0,1.3732481664793175,0.0007101304714683917,0.03642964681718443,0.8270222216456624,0,1.0,0.21559024139248598
+84,25,0.5032881939500509,2.0,1.372732422371767,0.0007107129698679791,0.03640413683193178,0.8269485953882039,0,1.0,0.2109606465001694
+84,26,0.49110981831845674,2.0,1.3720795578026646,0.0007122233790367838,0.036648478516934334,0.8268555799885176,0,1.0,0.23703272772818895
+84,27,0.5169957176232891,2.0,1.3756507849601238,0.000710000494281204,0.03651033001497268,0.8273656246168526,0,1.0,0.22331905874429703
+84,28,0.5043998905292559,2.0,1.3748460351069858,0.0007108220397480984,0.036622678369311476,0.8272508853144306,0,1.0,0.21466630176418644
+84,29,0.5013442353679808,2.0,1.3741853055856756,0.0007122177862264045,0.036683328226284576,0.8271568412126814,0,1.0,0.20448078455993585
+84,30,0.5044883266900554,2.0,1.3734709314314797,0.0007134482587162461,0.03640642893673483,0.8270550364125536,0,1.0,0.21496108896685132
+84,31,0.5064739747920718,2.0,1.3727204938746451,0.0007145257512621384,0.0364584705441521,0.8269479796175723,0,1.0,0.18824658264023916
+84,32,0.4814120961543116,2.0,1.3159458448439298,0.0007396217871299194,0.03571625037139324,0.8186792915365559,0,1.0,0.2047069871810385
+84,33,0.500988367294486,1.95,1.374611879945455,0.0007104286468819063,0.03655900217006872,0.8162332301905537,0,1.0,0.20329455764828686
+84,34,0.4653929163924607,2.0,1.3733490221856264,0.0007113603852592697,0.036561920248917364,0.8270370011015216,0,1.0,0.21797638797486904
+84,35,0.4919597609920713,1.95,1.3740217147296825,0.0007087421201249174,0.03661310057529086,0.8161441847904579,0,1.0,0.23986586997357084
+84,36,0.47749045897229175,1.95,1.377011465790969,0.0007070904487865484,0.03662581230593992,0.8165918867655113,0,1.0,0.25830152990763905
+84,37,0.5197500617986125,2.0,1.3771715410174827,0.0007052069401278716,0.03663075088128743,0.8275813607523462,0,1.0,0.23250020599537502
+84,38,0.5113133101646756,2.0,1.3770214599655657,0.0007066506854325536,0.036690065127302975,0.8275603566238023,0,1.0,0.20437770054891868
+84,39,0.5025315433809651,2.0,1.3765251947010795,0.0007079855704364098,0.03655671497163878,0.8274899070783214,0,1.0,0.20843847793655007
+84,40,0.502470365243597,2.0,1.3757805857595349,0.0007086939571163426,0.03652885686414943,0.8273837903055399,0,1.0,0.17490121747865656
+84,41,0.453828704453933,2.0,1.2972504657233008,0.0007353395872898696,0.035630271448346316,0.8158862458360735,0,1.0,0.1794290148464432
+84,42,0.49655812917705283,1.95,1.2984766550110998,0.00075030039466976,0.03608548813955672,0.8045498007861729,0,1.0,0.15519376392350934
+84,43,0.4894160559558394,1.95,1.3101435735039162,0.0007404547744629714,0.03545781191195528,0.8063748262126355,0,1.0,0.16472018651946466
+84,44,0.45248852775019577,2.0,1.3150467046666097,0.0007326664319494486,0.03567917638627493,0.8185437156195985,0,1.0,0.17496175916731907
+84,45,0.49615873680952527,1.95,1.3173424550228678,0.0007436983041954092,0.03573465134829411,0.8074973497109385,0,1.0,0.18719578936508416
+84,46,0.4601192464163387,1.95,1.3193374787905157,0.0007367421376877647,0.036171693221322423,0.8078051167423742,0,1.0,0.20039748805446236
+84,47,0.5071004326813048,1.9,1.3763022239294105,0.0007056081323347007,0.03640278562146464,0.8049797056820543,0,1.0,0.1903347756043493
+84,48,0.4952314070041454,1.9,1.3167396038158543,0.000762693515347439,0.03615175909565937,0.7954775685665287,0,1.0,0.18410469001381802
+84,49,0.4964950878430736,1.95,1.3198150526556356,0.0007541825029183582,0.036225210521123014,0.8078846658487349,0,1.0,0.1549836261435787
+85,0,0.018708396865558016,2.0,1.3808344497837453,0.0007012748568233412,0.03645533869565821,0.8281022764336476,2,0.1481543538663404,0.16482218439673957
+85,1,0.03964503732254493,1.95,1.3862943611198844,0.0007001722195526524,0.036734905166597664,0.8179760380796509,2,0.15543390056071865,0.15823825699419156
+85,2,0.062142351161324605,1.95,1.3862939858886205,0.0007001722764262219,0.036725750757192775,0.8179759822279323,2,0.18747412670102598,0.19050900160304743
+85,3,0.24651143321591107,1.95,1.3862918872349141,0.0007001722211735569,0.03638599471596552,0.8179756697400449,2,0.25590487039722676,0.21383161685673444
+85,4,0.28645355018864804,1.95,1.3862943611198846,0.0007001722195526523,0.03675795556484761,0.8179760380796509,2,0.32214746978597397,0.25864854091419487
+85,5,0.20728105058978646,1.95,1.386274692879047,0.0007001716435893809,0.03670544942303188,0.8179731094610712,2,0.3551040544004782,0.21746476276531723
+85,6,0.2581390270324021,1.9,1.386272350032973,0.0007001578577178002,0.03643144653622686,0.806538431103406,2,0.39214164246059324,0.23760790016054928
+85,7,0.3444454507296016,1.9,1.3862761164684736,0.0007001697142907243,0.036788099486178165,0.8065390224954937,2,0.4550523987583226,0.274748304087575
+85,8,0.2616527804026494,1.9,1.3852573052044086,0.0006996406997075999,0.036516616788504444,0.8063798386341191,2,0.48256495295935925,0.22875599739635222
+85,9,0.3437876061526453,1.8499999999999999,1.3854519750172987,0.0006996509317932704,0.036602420924990144,0.7944321245125204,2,0.5326946667065822,0.2690324649000414
+85,10,0.3798130871587118,1.8499999999999999,1.3856894414379473,0.0006999928811850802,0.03669554270844132,0.7944710140483873,2,0.5806240640446865,0.32521153846945744
+85,11,0.3234432378854954,1.8499999999999999,1.38579791074591,0.0007003489129488334,0.03647107793928858,0.794488841354368,2,0.605895331578976,0.2702836841796833
+85,12,0.43906667418889717,1.7999999999999998,1.3860305197325156,0.0007005345891675139,0.03678537613709186,0.782012258877394,2,0.6804294671753415,0.28964962439586855
+85,13,0.47095499289793924,1.7999999999999998,1.3858350135468531,0.0007007211011048519,0.03631121978552611,0.7819789928751657,2,0.7497643910212718,0.30349745496476827
+85,14,0.3911317817459031,1.7999999999999998,1.3855174062818938,0.0007009074614882255,0.03675159132882865,0.7819249034025115,2,0.782668245070508,0.2602149457256663
+85,15,0.47016044870824003,1.7499999999999998,1.3857150574370558,0.0007005530762925474,0.0366619587621613,0.7689010233013122,2,0.8280677621106525,0.29644447954659686
+85,16,0.5364154619851095,1.7499999999999998,1.3847102836714904,0.0006991008525694021,0.03670340796305016,0.7687219181865902,2,0.9019013045478391,0.31884980055324624
+85,17,0.5693648056245274,1.7499999999999998,1.38428584254725,0.0006987808258960171,0.03659618229151952,0.7686463349959787,2,0.954170245934346,0.3589890241692968
+85,18,0.5649009258618722,1.7499999999999998,1.3836835163581045,0.0006984029586094446,0.03647855750741009,0.7685390720770665,2,0.986260766220023,0.4013220645795433
+85,19,0.6094202354365674,1.7999999999999998,1.3579409510116427,0.0006818205126683797,0.03588406491751624,0.777179459514393,2,1.0,0.4314007847885581
+85,20,0.5862494747176883,1.7999999999999998,1.3630674920445096,0.0006873650815502057,0.03617002283702648,0.7780678837693117,2,1.0,0.45416491572562756
+85,21,0.5234296271023093,1.7499999999999998,1.3605374109253006,0.0006862350230500047,0.036211967342285316,0.7643917373183711,2,1.0,0.41143209034103123
+85,22,0.5162630438928213,1.6999999999999997,1.3641048614156501,0.0006863240432780106,0.03576143138725742,0.7512850183756216,2,1.0,0.3875434796427375
+85,23,0.5072275733202138,1.7499999999999998,1.3845958516150114,0.000700093735233465,0.03673850152754176,0.7687019259216247,2,1.0,0.35742524440071255
+85,24,0.5435062801855252,1.7999999999999998,1.3853982043540727,0.000700018759164354,0.03675438254585076,0.7819042735028943,2,1.0,0.3783542672850836
+85,25,0.5988800823595983,1.7999999999999998,1.385206777809431,0.0006995977029248056,0.03672583927898952,0.7818714841554032,2,1.0,0.39626694119866124
+85,26,0.6079211979989144,1.7999999999999998,1.3847406390009036,0.0006995296795726506,0.03644668223805408,0.7817919512423763,1,1.0,0.4264039933297147
+85,27,0.5532672174641117,1.8499999999999999,1.3606999555777257,0.0007255331965170094,0.036564760627337045,0.7903689899309448,1,1.0,0.4442240582137054
+85,28,0.556295993973887,1.7999999999999998,1.3664723363321463,0.0007201534798247043,0.03662277577497887,0.7786665716736154,1,1.0,0.4543199799129562
+85,29,0.5618112322978205,1.8499999999999999,1.3698982501527632,0.0007164621660424023,0.03658865360189649,0.7918859569716501,1,1.0,0.4727041076594016
+85,30,0.566255416163856,1.9,1.3730973527357964,0.0007125605315937394,0.03658850797587627,0.8044782766756186,1,1.0,0.4875180538795201
+85,31,0.5934146708958857,1.95,1.3752595999272752,0.0007093003390162397,0.03659327404771105,0.8163300277034499,1,1.0,0.5113822363196189
+85,32,0.5973729755886305,1.95,1.3750828045472376,0.0007119864336263872,0.0365703203087175,0.8163043239198228,1,1.0,0.5245765852954346
+85,33,0.5827573544358905,2.0,1.374325994489938,0.0007145624949034899,0.036747303567605215,0.8271776247303667,1,1.0,0.5425245147863015
+85,34,0.6130898578771553,2.0,1.3759437666708223,0.0007112424510538031,0.03662427815290442,0.8274078224064835,1,1.0,0.5769661929238507
+85,35,0.5751742666475386,2.0,1.3750979813237856,0.0007133130094039007,0.036750835278791014,0.8272875990228786,1,1.0,0.5505808888251286
+85,36,0.6165304844930666,1.95,1.3739169400949391,0.0007143535152204117,0.036435219722324275,0.8161301466539663,1,1.0,0.5884349483102219
+85,37,0.6035653831805379,1.95,1.372581487851765,0.0007169265800028469,0.03673058875453196,0.8159304346572268,1,1.0,0.6118846106017927
+85,38,0.586513114162156,2.0,1.3802447653234464,0.0007002637361614596,0.03618928373049456,0.8280180312848763,1,1.0,0.5883770472071864
+85,39,0.5755306929423951,2.0,1.373770096019757,0.0007142337598612527,0.03661098510237031,0.8270980478978912,1,1.0,0.5517689764746503
+85,40,0.5829465287212588,2.0,1.3726008468670068,0.0007153841520843961,0.036613114932970384,0.8269311025625374,1,1.0,0.5431550957375293
+85,41,0.5611087654190605,2.0,1.3734723376694427,0.0007122280449362464,0.03668612939185549,0.8270548884871912,1,1.0,0.5036958847302017
+85,42,0.5485767093335677,1.95,1.3722866867096777,0.0007132187623350881,0.03643334719844321,0.8158850410019926,1,1.0,0.4619223644452257
+85,43,0.5818239734475324,2.0,1.3706120189906312,0.0007144472638526647,0.036598443758349225,0.8266460157502353,1,1.0,0.4727465781584414
+85,44,0.594015413083768,2.0,1.3701445391568043,0.0007167119496142365,0.03665161235099205,0.8265796638143665,1,1.0,0.5133847102792266
+85,45,0.580056351761747,2.0,1.3691041126803567,0.0007190237544345752,0.03662099528701805,0.826431135673695,1,1.0,0.5335211725391565
+85,46,0.6094095092151215,2.0,1.3699702403374279,0.0007154801212768884,0.03650331433165517,0.8265543242066912,1,1.0,0.564698364050405
+85,47,0.5651980011217763,2.0,1.368894877065675,0.0007174232210297778,0.03667355651113543,0.8264006610664444,1,1.0,0.5173266704059212
+85,48,0.6019108159824688,1.95,1.3677878186439716,0.0007188233026005498,0.03641361139768485,0.8152099640983679,1,1.0,0.5397027199415625
+85,49,0.6084095489946058,1.95,1.3661454894421468,0.000721332930663596,0.036585591828643335,0.8149631880374494,1,1.0,0.5613651633153525
+86,0,0.002422388867392433,2.0,1.3846847151728063,0.0007018518422476528,0.03637351100570087,0.8286498291313441,0,0.10646518309888428,0.1994543854261291
+86,1,0.1151081606564687,1.95,1.3855549807462246,0.0006999118389088175,0.03672389780178315,0.8178658473631433,0,0.12816208037987925,0.21281109501505666
+86,2,0.12844989513648047,1.95,1.3843971922656508,0.000702029594989151,0.03672807815691666,0.8176939495982295,0,0.16121263796916596,0.2132161331627137
+86,3,0.16963725133772248,2.0,1.384849832314908,0.0007017447806378207,0.03642025363032714,0.8286732423249439,0,0.20081296936777726,0.23104021196870533
+86,4,0.22386658275702034,2.0,1.374506302206883,0.0006970187569672519,0.03637674995689031,0.8271983836748054,0,0.26905363154831563,0.2541504337923136
+86,5,0.2712947778814715,2.0,1.3738105535685208,0.0006968640760094793,0.03634766573178207,0.8270988656355204,0,0.37118483791779155,0.24273614238118285
+86,6,0.22692696837554513,2.0,1.3748327051456686,0.0006996514871340307,0.03619249579260688,0.8272457876148801,0,0.3863678906284142,0.24126604041393146
+86,7,0.2931465442245119,1.95,1.3750028711559346,0.0006984820025651162,0.03644522021213069,0.816288287218076,0,0.44659526739907474,0.24836145754960684
+86,8,0.3178300917144954,1.95,1.327738657130073,0.000704257031803692,0.03529165706276492,0.8090960432560693,0,0.5154422493356932,0.23884397326739382
+86,9,0.2872095571756426,1.95,1.3271180574698442,0.0007060884425991196,0.03516224640120466,0.8090007332446079,0,0.5381989041044523,0.23976665177953907
+86,10,0.3495973653997316,1.9,1.3378974262990095,0.0007026296490670531,0.035613209013428314,0.7988789851513298,0,0.5921174294990675,0.2425013120003486
+86,11,0.3908019974952008,1.9,1.3361766911473054,0.0007043354243194783,0.036130599533369584,0.7986029188168465,0,0.6879957895096077,0.21867893897119234
+86,12,0.42679956528162305,1.95,1.1642648473864374,0.0008349078979435192,0.03455623565503442,0.782608834772791,0,0.7878848039296479,0.20548547903254624
+86,13,0.4638352707607076,2.0,1.1644671928323704,0.0008304634021237164,0.034889534129781255,0.7951296950508381,0,0.8980922294149306,0.18199459664911766
+86,14,0.48118446099822865,2.0,1.296705525109499,0.0007714556198801214,0.03582024237233224,0.8158152269022286,0,0.9689302595215298,0.17870785729872243
+86,15,0.4927253198803788,2.0,1.2985740890954311,0.0007628196579428741,0.03609758496063509,0.8160932407972412,0,1.0,0.14241773293459598
+86,16,0.446001742661393,2.0,1.3138737376940155,0.000752045729280408,0.036062389024790455,0.8183751908921726,0,0.997757411076049,0.15632926076991133
+86,17,0.48575074482955777,1.95,1.3130482492929278,0.0007584490271946591,0.03613753508222687,0.806833551644348,0,1.0,0.15250248276519257
+86,18,0.44810156368598547,1.95,1.3127801458565491,0.0007522061528802039,0.035816716519268724,0.806789817164955,0,1.0,0.16033854561995153
+86,19,0.475765644163446,1.9,1.3118549428680926,0.0007576850569643672,0.03582715749480881,0.7946800869294047,0,1.0,0.18588548054481993
+86,20,0.4866504875778734,1.9,1.308422545129595,0.0007602537211591738,0.03621818143184704,0.7941203178355482,0,1.0,0.2221682919262445
+86,21,0.512022829484667,1.95,1.3761233639531993,0.0007026699097990286,0.0365518723811473,0.8164575138560426,0,1.0,0.20674276494889018
+86,22,0.5046047738048177,1.95,1.3763816823859227,0.0007047671483603441,0.03658535334919898,0.8164968493661567,0,1.0,0.18201591268272566
+86,23,0.481771888212013,2.0,1.2983208864703908,0.0007633883978172879,0.03597080503764061,0.8160554065697162,0,1.0,0.2059062940400433
+86,24,0.4844949894152486,1.95,1.376609681103346,0.0007024760704636331,0.03636618560058332,0.8165303214454961,0,1.0,0.21498329805082844
+86,25,0.4925886616929457,2.0,1.378932656042659,0.0007015051530133304,0.03664727698586615,0.8278314548931378,0,1.0,0.2419622056431521
+86,26,0.4963741468655201,2.0,1.3809550292747321,0.0007007449561384526,0.03669656081218654,0.8281192892623657,0,1.0,0.2545804895517336
+86,27,0.4809063713770047,2.0,1.3822387796583762,0.0007001276035041393,0.03652060702302496,0.8283017628221037,0,0.9969793053515003,0.27371549745468204
+86,28,0.4872448653300418,2.0,1.3823287335296746,0.000699361439887196,0.036531459983944164,0.8283143375880193,0,1.0,0.29081621776680594
+86,29,0.5338272342494103,2.0,1.382208698395837,0.000698660113906424,0.03663952206887318,0.8282970672689078,0,1.0,0.2794241141647006
+86,30,0.5250639539567883,2.0,1.3826582003081045,0.0006998620978490718,0.03640447359373708,0.8283613282563735,0,1.0,0.25021317985596075
+86,31,0.5178155264160146,2.0,1.382815668220514,0.0007009751245368269,0.0365356322880964,0.8283840321683008,0,1.0,0.2593850880533819
+86,32,0.5045000340266436,2.0,1.3821727475815395,0.0007011061498531331,0.036710454238386044,0.828292650017358,0,1.0,0.28166678008881196
+86,33,0.51266579683123,2.0,1.3834209402368063,0.0007006479373866954,0.036548086456611346,0.8284699699215898,0,1.0,0.30888598943743356
+86,34,0.49331146080339666,2.0,1.384258086357421,0.0007002606656279917,0.036576132723837994,0.8285887919277428,0,1.0,0.3110382026779889
+86,35,0.49998919551464394,2.0,1.3842861407002138,0.0006997357097861816,0.03672139109724325,0.8285926273170148,0,1.0,0.3332973183821465
+86,36,0.5426399841167646,2.0,1.3841520310891129,0.0006992672700058113,0.03648656963965027,0.8285734462334423,0,1.0,0.3087999470558821
+86,37,0.5343664692960047,2.0,1.3844124629364807,0.00069996830027807,0.03652074213291213,0.8286106337887796,0,1.0,0.3145548976533491
+86,38,0.5004261637226212,2.0,1.3839190104890062,0.0007000256180644225,0.03674346842900211,0.8285405610355873,0,1.0,0.33475387907540366
+86,39,0.5479979050348831,1.95,1.3837451261571596,0.0006994074660284745,0.03654215935619396,0.8175959435150558,0,1.0,0.32665968344961016
+86,40,0.5323327116592225,1.95,1.3838357184487375,0.0007001712595681485,0.036622908009124724,0.8176096812100986,0,1.0,0.3077757055307415
+86,41,0.5173730988694067,2.0,1.3833328976776575,0.0007003053359346625,0.036433352388984395,0.828457360675539,0,1.0,0.32457699623135566
+86,42,0.5445672897747715,2.0,1.3844073463873703,0.000700083866496428,0.036535460439096105,0.828609939984966,0,1.0,0.3152242992492382
+86,43,0.49378486308559655,2.0,1.3844707057958066,0.0007008139443235239,0.03650364361700825,0.8286191451721692,0,1.0,0.3126162102853217
+86,44,0.49666931877570086,1.95,1.3843794089617332,0.0007002037699217153,0.03673830594945138,0.8176907542559863,0,1.0,0.3222310625856695
+86,45,0.4989220281949369,2.0,1.3841246172500015,0.0006996578884738854,0.03671364054756828,0.8285696633190973,0,1.0,0.3297400939831231
+86,46,0.5368296992545025,2.0,1.3838953147357596,0.0006991570850151892,0.036464541016584376,0.8285369479911119,0,1.0,0.3227656641816751
+86,47,0.5235442986211751,2.0,1.3835252369090514,0.000699224408906626,0.03669224763203302,0.8284843861902415,0,1.0,0.3451476620705836
+86,48,0.5263480314555656,2.0,1.384490039784356,0.0006993397008344118,0.03656076351353533,0.8286214720558275,0,1.0,0.3544934381852185
+86,49,0.5362036419383504,2.0,1.3851294046954667,0.0006994712284153703,0.036471647828386806,0.8287122852064648,0,1.0,0.3873454731278344
+87,0,0.16966060310790168,2.0,1.3847748883687334,0.0007000767973138304,0.036461333967885715,0.8286621283345053,0,0.15998495113366978,0.21888874218144588
+87,1,0.19457420554175178,1.95,1.3847186356120231,0.00070020011972331,0.03669039725441635,0.817741317111757,0,0.22691967468769136,0.21268778555558412
+87,2,0.22913769377363116,1.95,1.3686159131629116,0.0006971574934193548,0.03636546609978985,0.8153281536416921,0,0.30468871374417417,0.2242073609198716
+87,3,0.1921551132451863,1.95,1.3677268684735233,0.0006969128305546609,0.03648292227381403,0.8151941805758058,0,0.3138238775529144,0.2220852074134017
+87,4,0.2592050451735334,1.9,1.3680072174881186,0.0006954708656749719,0.0361984053703275,0.8036710001893405,0,0.3823853913805557,0.22083629540437028
+87,5,0.2202780886608817,1.9,1.3664944807856074,0.0006950720631016099,0.03598119524568162,0.8034320790412219,0,0.37521200513441755,0.23397762202371555
+87,6,0.22037943463734155,1.8499999999999999,1.3665483336648954,0.0006935990341296288,0.03604462632860594,0.7913257915935185,0,0.38016828254499896,0.22770707206447324
+87,7,0.2500439998215272,1.9,1.365833996897913,0.0006921532021845852,0.036265637803419765,0.8033268262770065,0,0.3973898016536558,0.23696026386688282
+87,8,0.2679766287603793,1.9,1.3694969265963934,0.0006921114903133483,0.03639584006966579,0.8039048868550228,0,0.437628817115862,0.24308367304678166
+87,9,0.28147406102921996,1.95,1.3295018879314142,0.0007191509700576924,0.03549446354842635,0.8093728387900818,0,0.4624796508222978,0.2549406690010027
+87,10,0.3317057034967711,2.0,1.330064760375415,0.0007160778109125465,0.03555727931460327,0.8207588033250681,0,0.5277770007047816,0.26864967738286155
+87,11,0.37525003614659946,2.0,1.3307933038790374,0.000718378880794243,0.0359061814084626,0.8208666337967956,0,0.6251097480931423,0.2506871230311418
+87,12,0.33147329922230767,2.0,1.150196379699997,0.0008140255699261481,0.033844448044952985,0.7927898083240777,0,0.6316767315582539,0.26267535533002045
+87,13,0.41286895359755604,2.0,1.1732885556636938,0.000797543629534065,0.034258734910422174,0.796552271291769,0,0.7241694729618299,0.24400388137608028
+87,14,0.4455042052514509,2.0,1.1687555062415247,0.0007938177015507544,0.03468072224611689,0.7958154615640062,0,0.8204588921486337,0.22440216130665802
+87,15,0.39355859381438885,2.0,1.3638180807820597,0.0007019093717509787,0.03601864092886014,0.8256666571811019,0,0.8186615394672895,0.22031326009157673
+87,16,0.47114782322395043,1.95,1.3633065886482703,0.0007006047759510815,0.03612164987149246,0.8145284412947154,0,0.9089771593458082,0.19185653161875704
+87,17,0.42737458791718064,1.95,1.2852620195099465,0.0007641509250395469,0.0359055914037215,0.8024678318291494,0,0.9203299912037667,0.19747530478557992
+87,18,0.43798197136530054,1.9,1.285168518060614,0.0007754240372028921,0.03587390622329031,0.7902974617028286,0,0.9326100112044312,0.21645988961176016
+87,19,0.4424433665567989,1.95,1.3623487937041863,0.0006978217266746093,0.036119122533409466,0.8143828604501376,0,0.9399977305740702,0.2214809144239026
+87,20,0.5084942149644393,2.0,1.3622100034995648,0.0006964222175138186,0.03597581103683118,0.8254334860127659,0,0.9993830155557981,0.22913669580706655
+87,21,0.4668650526504716,2.0,1.3619105258455968,0.0006971200538454991,0.036009774440427696,0.8253905303054306,0,0.9968380273346573,0.22709947238869574
+87,22,0.5107512669052688,1.95,1.3611464801848245,0.0006955896931842591,0.03590028622816569,0.8142003706138538,0,1.0,0.2358375563508961
+87,23,0.5139836920460066,1.95,1.3596518357259229,0.0006961006780497499,0.036297597446085135,0.8139743121546169,0,1.0,0.21327897348668856
+87,24,0.46844054259932266,2.0,1.359852972146289,0.0006987003348556228,0.03630534090627542,0.8250942511538608,0,1.0,0.22813514199774224
+87,25,0.5077981569600019,1.95,1.3596908242332417,0.0006970636143323907,0.0362742241392599,0.8139805073358068,0,1.0,0.2259938565333396
+87,26,0.5153294991615097,1.95,1.3581972171926913,0.0006977420410534379,0.03594422192058882,0.8137544505476968,0,1.0,0.2177649972050323
+87,27,0.4905108359527561,2.0,1.358247472080851,0.000700266801306924,0.03593757912732553,0.8248628871068187,0,1.0,0.2350361198425201
+87,28,0.5077959677659598,1.95,1.3650383929844638,0.000698985600550718,0.036083473617027614,0.8147894370086365,0,1.0,0.22598655921986607
+87,29,0.49130166520540636,2.0,1.3637236553281815,0.0006995838819495655,0.036400409452814725,0.825652395537408,1,1.0,0.23767221735135446
+87,30,0.4699614943055969,2.0,1.347033771199235,0.0007052216909965315,0.03632747862647272,0.8232384459778564,1,1.0,0.19987164768532295
+87,31,0.5281911296860119,1.95,1.3785178145556223,0.0006948852498540721,0.036335856068862186,0.8168137319245735,1,1.0,0.26063709895337295
+87,32,0.48193119243493837,1.95,1.3426712818968545,0.000707228914912995,0.035729003573733494,0.8113928012319577,1,1.0,0.23977064144979443
+87,33,0.5225064963242388,1.9,1.3498124884068314,0.0007028834734741812,0.03594695985809124,0.8007866594596671,0,1.0,0.2750216544141293
+87,34,0.48603974768513314,1.9,1.3433658792514056,0.0007050513053729323,0.03621206017721201,0.7997569486522199,0,1.0,0.28679915895044383
+87,35,0.5327067582560763,1.8499999999999999,1.3424491616862981,0.0007025571398091973,0.035784169553893845,0.7873213716334994,0,1.0,0.27568919418692067
+87,36,0.48795323766733456,1.8499999999999999,1.3413288674679686,0.0007059699970448546,0.03566026373815987,0.7871348656599392,0,1.0,0.29317745889111513
+87,37,0.49353949318956153,1.7999999999999998,1.3404501171622158,0.0007036054407026841,0.036017473695512996,0.7741434847835501,0,1.0,0.3117983106318717
+87,38,0.49661297302838847,1.8499999999999999,1.338477495579034,0.0007013978142895506,0.035600335349756394,0.7866551822898014,0,1.0,0.32204324342796153
+87,39,0.5287156154022744,1.9,1.3384578289780373,0.0006989533227037704,0.03578891785312769,0.7989678297590725,0,1.0,0.29571871800758115
+87,40,0.5250969132439416,1.9,1.3384216157849065,0.00070035741052452,0.03599536774389055,0.7989624642504792,0,1.0,0.2836563774798052
+87,41,0.5352978801088868,1.95,1.3373402827726577,0.0007016397839770367,0.0356563035780742,0.8105739033602426,0,1.0,0.2843262670296225
+87,42,0.4949856437891361,2.0,1.3383056999181835,0.0007048919282431837,0.035889313296309684,0.8219646822808118,0,1.0,0.31661881263045377
+87,43,0.4923162452464062,1.95,1.3384154958395358,0.0007024753495973446,0.0361259336118733,0.8107391970078336,0,1.0,0.3077208174880207
+87,44,0.5371216505462594,2.0,1.3364259440679473,0.0007002936654601374,0.035293998438788984,0.8216880872276473,0,1.0,0.2904055018208645
+87,45,0.4900857249946679,2.0,1.3372410216372206,0.0007034242658237478,0.03555480425426215,0.8218083953410699,0,1.0,0.30028574998222635
+87,46,0.5340546397182678,1.95,1.3362711567190337,0.0007011079871551825,0.035274928496699116,0.8104095277026425,0,1.0,0.280182132394226
+87,47,0.48613790199238505,1.95,1.3348289539087677,0.0007042425067589873,0.03610024839120849,0.8101888039852795,0,0.999271000540037,0.28809833925456735
+87,48,0.5324587141540736,1.9,1.3338339430722987,0.000701871553410715,0.035747588307725744,0.798225062619928,0,1.0,0.2748623805135786
+87,49,0.5309192230867176,1.9,1.3321727893362851,0.0007048485159345348,0.03559291546448677,0.7979583415405934,0,1.0,0.26973074362239163
+88,0,0.10558579023243153,1.95,1.383399263998876,0.0007011794631410226,0.03643321615144324,0.8175448870927575,0,0.10726711553767601,0.20892981339120376
+88,1,0.19620360731901554,1.9,1.3841442448941266,0.0007009219362068154,0.03668483335426788,0.806206396064958,0,0.21664115527901046,0.19849048402470448
+88,2,0.18642298055120474,1.9,1.3817968370172549,0.0006982331648058757,0.03656500889038657,0.8058385375669556,0,0.2505372108141568,0.22069365408514013
+88,3,0.21096398810729258,1.95,1.3740411419938896,0.0006922668957410641,0.03650038539625531,0.8161421555893382,0,0.2942744046599801,0.24418075414433515
+88,4,0.2307538079700431,1.95,1.375319100174043,0.0006926425853322129,0.0363367944717197,0.8163339536880434,0,0.32136398497302693,0.2740273799361078
+88,5,0.24464689062391395,2.0,1.3759450280925707,0.0006928752128879114,0.03632291666843236,0.8274027566493831,0,0.34272583627046627,0.29185518705242486
+88,6,0.2966569868642195,2.0,1.3765343073951561,0.0006932129416223607,0.03600996106113487,0.8274869903029858,0,0.4239075744862063,0.29031319023245655
+88,7,0.2963825986402375,2.0,1.3178130578352518,0.0007281117977965743,0.03587965476100532,0.818952889146363,0,0.4565347043058786,0.31256238972628686
+88,8,0.29271166163029727,2.0,1.3174345373613527,0.0007236924459398257,0.03565150483752363,0.8188954486713305,0,0.4774676806155563,0.3390819646135824
+88,9,0.30223884384384103,2.0,1.329735031765551,0.0007175561367581151,0.03577604951177968,0.8207107256249708,0,0.4886172990665978,0.3559730807240063
+88,10,0.3380464107285853,2.0,1.3403410062084973,0.0007125483270886304,0.035728683103305785,0.8222645692027621,0,0.5176747335570593,0.36992172435253856
+88,11,0.37874560111438416,2.0,1.339791961341636,0.0007091301665443648,0.035817837341380936,0.8221833150884039,0,0.5740152409367691,0.363798349132255
+88,12,0.4149908956718623,2.0,1.3400380891064008,0.0007139606974720686,0.03618509394165068,0.8222207077988648,0,0.6533725280271473,0.37880628153667806
+88,13,0.4595331028497563,2.0,1.1230785112932886,0.0007514729545514676,0.03299258454534543,0.7882787895940472,0,0.7630711473543433,0.3476821463600633
+88,14,0.4455015929085606,2.0,1.1172101045044178,0.0007455346636150163,0.033338365685204166,0.7872957341000495,0,0.7871392281776561,0.3688196721249938
+88,15,0.47761305308557706,2.0,1.1378855693943235,0.0007350713098779707,0.03370238953131902,0.7907340420294777,0,0.8468130513758612,0.3296261084507754
+88,16,0.4452332136173148,2.0,1.323102182942769,0.0006668786418739503,0.03472859606380169,0.8197176827404091,0,0.8489146030724478,0.35222457462778556
+88,17,0.5270937059136416,1.95,1.3215107288539434,0.0006652976688308091,0.03492361796671467,0.8081201455226248,0,0.9621594340167875,0.30743310768975507
+88,18,0.4841767017942352,1.95,1.3246006431419444,0.0006701717444933896,0.035430188824530834,0.808600326315179,0,0.9727812278237329,0.3168807022158068
+88,19,0.5369631400415872,1.9,1.3228068361250775,0.0006682579351594284,0.03508608789351324,0.7964322758120134,0,1.0,0.28987713347195715
+88,20,0.5314502283413931,1.9,1.3250362296368223,0.0006731801535382886,0.03477292282939036,0.7967950777981495,0,1.0,0.27150076113797694
+88,21,0.5265546688830224,1.95,1.327630393185009,0.0006785539054938881,0.03516725705670073,0.8090713794382567,0,1.0,0.2551822296100746
+88,22,0.5149531813140195,2.0,1.3305500971500932,0.0006838067470883054,0.03538196623743729,0.8208206996651575,0,1.0,0.24984393771339825
+88,23,0.5188902018472799,2.0,1.3304570930350788,0.0006855190222086883,0.03543590411123683,0.8208075244545678,0,1.0,0.26296733949093287
+88,24,0.5213535409152958,2.0,1.3290990964619371,0.0006867116310667861,0.035761549924638716,0.8206080509851263,0,1.0,0.23784513638431926
+88,25,0.4980837942043128,2.0,1.3302498064530492,0.0006914639990360056,0.035804597843488016,0.8207787832221284,0,1.0,0.2602793140143759
+88,26,0.5153721837316099,1.95,1.3409757888231668,0.0006897354038964664,0.03558336279168772,0.8111278353222026,0,1.0,0.21790727910536611
+88,27,0.4694709242337164,2.0,1.3406497780493738,0.0006934079627367409,0.03530694981098483,0.8223040968285751,0,1.0,0.23156974744572123
+88,28,0.47032858611574835,1.95,1.3405168977488549,0.0006915333415104894,0.03527246812701311,0.8110580744581987,0,1.0,0.23442862038582774
+88,29,0.47260039594737047,2.0,1.338308029406789,0.0006893397900327154,0.03599414426051689,0.8219604713755109,0,0.9957043141573659,0.2477289009480802
+88,30,0.5171310660505719,2.0,1.3380587865968208,0.000687455144523673,0.03593725400634482,0.8219234422003572,0,1.0,0.223770220168573
+88,31,0.49481142785499066,2.0,1.3385374437760729,0.0006911685939679414,0.03599257010780559,0.8219945769083051,0,1.0,0.24937142618330205
+88,32,0.5209072654399648,1.95,1.3482907363741332,0.0006899935388837127,0.03568976177078427,0.8122460104999543,0,1.0,0.23635755146654933
+88,33,0.46852601977334307,1.95,1.3475684538116752,0.000692780354299188,0.035596006438914654,0.8121366861860932,0,1.0,0.22842006591114353
+88,34,0.4683702517769096,1.9,1.3464142182628547,0.0006908247368885242,0.035925139008367316,0.8002401328452463,0,1.0,0.2279008392563653
+88,35,0.4658468590152377,1.95,1.3442610772066617,0.0006886450457931028,0.03568868158340793,0.811630291983262,0,1.0,0.21948953005079216
+88,36,0.46937984898959295,2.0,1.3438762718848043,0.000686910641477467,0.035907127994489016,0.822773167321709,0,1.0,0.23126616329864313
+88,37,0.5113180468210916,2.0,1.3434323010583686,0.0006851615517486592,0.036010685845243,0.8227079090935706,0,1.0,0.2377268227369721
+88,38,0.471524646045772,2.0,1.3426761333506785,0.0006870439359437003,0.035671536404046925,0.8225981372496108,0,0.9891485707831517,0.2528840591083711
+88,39,0.5185613476885641,1.95,1.3413063005980776,0.0006849907495431101,0.03527292139910065,0.811177010881882,0,1.0,0.2285378256285468
+88,40,0.4700497526357807,1.95,1.340607282016597,0.0006880341053448103,0.03589975982003872,0.8110708524057249,0,1.0,0.23349917545260224
+88,41,0.504586694222211,1.9,1.3392196843409891,0.0006859169173334518,0.03600712253269884,0.7990859838589387,0,1.0,0.2152889807407032
+88,42,0.5045053562602536,1.9,1.3374132931558447,0.0006877496926962524,0.03510490376096494,0.7987964045772487,0,1.0,0.2150178542008452
+88,43,0.4632917711574981,1.95,1.3364545766083482,0.0006896198859798787,0.035217403703648106,0.8104341779936368,0,1.0,0.2109725705249935
+88,44,0.5037069181926209,1.9,1.3362394131966813,0.0006876697646651902,0.0350732128756057,0.7986076458715472,0,1.0,0.2123563939754028
+88,45,0.5088065502539184,1.9,1.3340629431239373,0.0006891386304175838,0.035926224672155026,0.7982578422180974,0,1.0,0.19602183417972777
+88,46,0.497589255858398,1.95,1.2804175042778123,0.0008012464932347194,0.03594755972956275,0.8017105812627995,0,1.0,0.19196418619466005
+88,47,0.49482766934802724,2.0,1.2861532127319568,0.0007884097300174444,0.03594658796300081,0.814229470624637,0,1.0,0.18275889782675753
+88,48,0.48276771021649856,2.0,1.2904887651390982,0.0007769021807451885,0.03592091419850276,0.8148809005475904,0,1.0,0.20922570072166166
+88,49,0.4606946747730208,2.0,1.3349294529949403,0.0006839055677221785,0.03584781599845753,0.8214639136822377,0,1.0,0.20231558257673582
+89,0,0.12343526697911025,1.95,1.3803011700272192,0.000701436153979275,0.03644590330563395,0.8170823811654588,1,0.1005461669376892,0.2107226673467819
+89,1,0.19416432245522125,1.9,1.3801145920520865,0.0007021396909684124,0.036626210042054394,0.8055764171078171,1,0.16202738264274452,0.26451123132707804
+89,2,0.22985749452546483,1.9,1.3796418976617852,0.0007023420689749797,0.03653153159578811,0.8055024349874825,1,0.21266251213207177,0.3159749655754537
+89,3,0.19602300194856204,1.9,1.386228422512803,0.0007001373093808762,0.036452752322669764,0.8065315704034122,1,0.23272238262240047,0.3097801629986727
+89,4,0.25046105768095905,1.8499999999999999,1.386179775799829,0.0007001244638868258,0.0367757084265756,0.7945511105865493,1,0.260891386284849,0.35368167722339827
+89,5,0.308949381302207,1.8499999999999999,1.3862048562954303,0.0007002058617846493,0.03655333765412842,0.7945552312617922,1,0.3307222567411409,0.422201595352502
+89,6,0.32570475433085966,1.8499999999999999,1.3832116713636458,0.0006982746626929174,0.03655436240011006,0.7940655696954848,1,0.3628663867947685,0.4685273320431742
+89,7,0.3272797625125258,1.9,1.384208979106804,0.0006987309018332621,0.036689463217462234,0.8062158251674215,1,0.40616070945266747,0.4827182624381958
+89,8,0.392770753722161,1.95,1.3795360326108261,0.0006961686536739204,0.03635286591258248,0.8169664216104131,1,0.45171424591494036,0.5402835178539498
+89,9,0.37514956477554007,1.95,1.3804921686586504,0.0006975289619593403,0.036443908270447196,0.8171097580663264,1,0.47912484929641413,0.5449987501899146
+89,10,0.37580698939270196,2.0,1.3798599518682058,0.0006974010736498584,0.03658627986043763,0.8279624098089566,1,0.5261982516193977,0.5177589624831429
+89,11,0.40080599301010267,2.0,1.3795626307972302,0.0006967531709152228,0.03659172485749918,0.8279198704588802,1,0.5507183024792633,0.5350622400613244
+89,12,0.44229331098585,2.0,1.3788677708402868,0.0006965836229939726,0.036427699658095794,0.8278208038717401,1,0.5853295228574364,0.5605383394762514
+89,13,0.49353073632369754,2.0,1.3806377505820204,0.0006968990438959963,0.036479959228371175,0.8280730287636686,1,0.6398133013142528,0.6253513859933214
+89,14,0.45472560469759865,2.0,1.3674836064701577,0.0007225929654025438,0.036730175954533525,0.8261995879248085,1,0.6642242355661356,0.5967863682371479
+89,15,0.5158608334909366,1.95,1.3700994982510561,0.0006901569031024269,0.03644025496140131,0.8155493236497818,1,0.7056984003819946,0.6452715777937955
+89,16,0.5063363979509306,1.95,1.3629809868458969,0.0007259637479590268,0.036708364613614375,0.814486910488613,1,0.7249851444351724,0.6544744672562055
+89,17,0.5525452181514201,2.0,1.364962078376912,0.0007213128128607092,0.03634564149592283,0.8258368459339435,1,0.7647259738500647,0.6888494287046473
+89,18,0.536319613856653,2.0,1.3644345753178035,0.0007241822801167491,0.03636907479408263,0.8257617876584201,1,0.8167702034710576,0.6653717748940999
+89,19,0.6104680073097968,2.0,1.3813829392065182,0.0006990110034247293,0.03655648985890634,0.8281796949643041,1,0.845750390180572,0.7405595041252265
+89,20,0.5887804559708134,2.0,1.3820329220116123,0.0007009932457647589,0.036671268992478634,0.8282727304433032,1,0.8682565598363247,0.738259440120945
+89,21,0.6265974912545976,1.95,1.3808363647350306,0.000700993064074771,0.0363227547441269,0.817162224728429,1,0.8913571799658466,0.7668487308941965
+89,22,0.6094629567637082,1.95,1.3817809736484654,0.0006999760159957372,0.036672372148308506,0.8173030109645132,1,0.8937079226565489,0.7732659590036287
+89,23,0.6118436973141161,2.0,1.3804443052860393,0.0006998008124486809,0.03656485557250949,0.8280463129207121,1,0.9494136718735916,0.7402607618822648
+89,24,0.6143554192242926,2.0,1.3812917469720456,0.0006988845334876693,0.03654864695529751,0.8281666821003419,1,0.9823591518745433,0.704705861581584
+89,25,0.6596775637974124,2.0,1.3814980899314024,0.0006980736915244412,0.036495699598269996,0.8281958133376669,1,1.0,0.7322585459913743
+89,26,0.6850890032261456,2.0,1.3824130715939738,0.0006979147794145848,0.03664758758457316,0.8283259195104898,1,1.0,0.7836300107538188
+89,27,0.6584399577308636,2.0,1.3834069208355535,0.0006994711570292857,0.036410646459336796,0.82846764318873,1,1.0,0.7947998591028785
+89,28,0.6863207610306588,1.95,1.3822706157992344,0.0006992715801119608,0.03651287704783648,0.8173759020778938,1,1.0,0.8210692034355289
+89,29,0.7169335615987391,1.95,1.3632203115154833,0.000688858078067581,0.03596424968766295,0.8145118574842805,1,1.0,0.8897785386624634
+89,30,0.7139620221981662,1.95,1.3622461215703652,0.0006870188954736733,0.03601161614212554,0.8143640734597978,1,1.0,0.9132067406605539
+89,31,0.694747535681163,2.0,1.3653548790621899,0.0006919466031352247,0.03620103032401245,0.8258848898593728,1,1.0,0.9158251189372101
+89,32,0.7425643514167528,2.0,1.370394017557735,0.000692197923542372,0.03636063341326588,0.8266083956336082,1,1.0,0.9752145047225093
+89,33,0.6942610038041066,2.0,1.3693514367698547,0.0006904679643514519,0.036294756657607175,0.8264584185780932,1,1.0,0.947536679347022
+89,34,0.7488357860356014,1.95,1.367244363360761,0.0006896822207320942,0.03622971909372055,0.8151192995636494,1,1.0,0.9961192867853379
+89,35,0.75,1.95,1.3653910233113122,0.0006876955280572764,0.036149075839675686,0.8148392389181893,1,1.0,1.0
+89,36,0.7012562300436402,2.0,1.3636983437840828,0.0006859646619023013,0.03602659753850035,0.8256448308105467,1,1.0,0.9708541001454671
+89,37,0.75,1.95,1.3622217835042776,0.0006854781680791672,0.03607808089101859,0.8143599282717114,1,1.0,1.0
+89,38,0.74,1.95,1.35972445867205,0.0006833720462366109,0.036021050590296255,0.8139814538826925,1,1.0,1.0
+89,39,0.74,2.0,1.3632510113606402,0.0006871917650681661,0.03584149143603863,0.8255807788909106,1,1.0,1.0
+89,40,0.75,2.0,1.3661286341022665,0.0006910964932294263,0.036060647986346124,0.8259958826688284,1,1.0,1.0
+89,41,0.74,2.0,1.3644587286509307,0.0006889374806676898,0.035940593944697855,0.825755120730263,1,1.0,1.0
+89,42,0.75,2.0,1.3660506859136052,0.0006921897541263685,0.03627190173442136,0.8259849934267015,1,1.0,1.0
+89,43,0.75,2.0,1.364391641013601,0.0006899003443362057,0.03629634254667299,0.8257457448009666,1,1.0,1.0
+89,44,0.7045249599736032,2.0,1.362448022344366,0.0006875950431310358,0.036074362488072644,0.8254652367271711,1,1.0,0.981749866578677
+89,45,0.7196511417500551,1.95,1.3609076755332112,0.0006878417092861085,0.03588647051626821,0.8141618974185747,1,1.0,0.9988371391668504
+89,46,0.699755393739849,2.0,1.3664451185922992,0.0006887674968698525,0.03619233947120136,0.8260406959016069,1,1.0,0.9658513124661632
+89,47,0.75,2.0,1.3653683262220186,0.0006888625989624894,0.03595210357568712,0.8258859365918746,1,1.0,1.0
+89,48,0.74,2.0,1.3635896813132595,0.0006869159578607462,0.036139771357679665,0.8256294616104517,1,1.0,1.0
+89,49,0.74,2.0,1.3655595680708568,0.0006900740903139036,0.03633745029400527,0.8259137835187491,1,1.0,1.0
+90,0,0.08102884606954228,2.0,1.384184695191215,0.0007010693136973494,0.03641438063286724,0.8285785976872063,0,0.19349587581147848,0.17876831914983632
+90,1,0.13873233331511953,1.95,1.3856946771518106,0.0007004734178883733,0.036737831312423384,0.8178868230898837,0,0.20462578962945827,0.18960672487778737
+90,2,0.14664159281250733,1.95,1.379092114961501,0.0006952888895423459,0.03645815686792531,0.8168997690679817,0,0.2217579351641898,0.19312806248943798
+90,3,0.15436700853240556,2.0,1.380638849222392,0.0006962072159225532,0.03618528841502204,0.8280729881865423,0,0.22939217506967952,0.20870046168177922
+90,4,0.2130753909021547,2.0,1.3700748296399197,0.0006888381508910566,0.03628698252330701,0.8265616793367526,0,0.2897211125475254,0.190623152943815
+90,5,0.23668688165402538,2.0,1.3836445060759341,0.0006990574138740855,0.03667805693044887,0.8285012859816849,0,0.3402447900944478,0.20196321872082076
+90,6,0.21003620756824462,2.0,1.3747545780949844,0.0006919325872522758,0.035939795057992684,0.8272324158344885,0,0.36878718503142405,0.20840444518558332
+90,7,0.2797270140463831,1.95,1.3749200524541592,0.0006921132361490769,0.03632307131904362,0.8162739570077422,0,0.44792622442738667,0.20185508091809484
+90,8,0.24548356301635832,1.95,1.334916000504311,0.0007359234407713775,0.0361177082326007,0.8102119331567407,0,0.4550766126450857,0.21150972652774674
+90,9,0.3104923674858731,1.9,1.3442411337882156,0.000730159940325933,0.03606183105211146,0.7999051179337306,0,0.5180712240755706,0.21087959285214952
+90,10,0.3443987967714954,1.9,1.3425987504847954,0.0007323983609891698,0.036195666846044985,0.7996428308886763,0,0.6198243471216437,0.154896859742793
+90,11,0.3723607949934489,1.9,1.3243931688485022,0.0006701605133891993,0.03506078896563911,0.7966899600180679,0,0.7077155220738065,0.13091528721308762
+90,12,0.39661663873726033,1.9,1.3219412146856724,0.0006689151397559129,0.034924434192006144,0.796292111620656,0,0.7859962573140775,0.14072711937209764
+90,13,0.3637834885602813,1.9,1.3278653356457895,0.0006788969062255733,0.03548769592683671,0.7972546094477763,0,0.7889588249551359,0.16066652859408964
+90,14,0.4353061710568761,1.8499999999999999,1.3367369937259859,0.000677695859198794,0.03576619103094605,0.7863549664150825,0,0.8744437736320396,0.15176220534686732
+90,15,0.4559068076888272,1.8499999999999999,1.2667159065423221,0.0007857517588634466,0.03570685406444356,0.7743934299408711,0,0.9282535402547054,0.14868463862315015
+90,16,0.4550051851366306,1.8499999999999999,1.269812534229587,0.0007756025767438344,0.03561907933828794,0.7749304363160237,0,0.9686644733123367,0.15846465270565283
+90,17,0.487916188848423,1.9,1.2671466490802101,0.0007755893543960197,0.03532526087156248,0.7872951737673242,0,1.0,0.15972062949474336
+90,18,0.4702500011755504,1.9,1.2716235000367317,0.0007648343253708378,0.03509131644345158,0.7880403167479592,0,1.0,0.1675000039185012
+90,19,0.49109823941426756,1.95,1.2689807131584157,0.0007648892650185825,0.03552058055414281,0.7998745513967958,0,1.0,0.1703274647142251
+90,20,0.49161701461947865,1.95,1.2725164987964954,0.000755134478935097,0.035559919153840755,0.8004368267132725,0,1.0,0.17205671539826214
+90,21,0.45044352357230055,2.0,1.2730002468434978,0.0007472025766898548,0.03548304080228034,0.8122191576991651,0,1.0,0.16814507857433503
+90,22,0.4602300438437064,1.95,1.2757135226963132,0.0007560729509246531,0.03566679595738268,0.8009473207640445,0,1.0,0.20076681281235473
+90,23,0.5040453828082639,2.0,1.343394350960634,0.0007338970636339482,0.03619125978664835,0.8227165906255994,0,1.0,0.1801512760275463
+90,24,0.4779895879178613,2.0,1.2745428615581689,0.0007796257619626539,0.035519548246147836,0.8124642033376943,0,1.0,0.19329862639287076
+90,25,0.500848954350226,1.95,1.2726949309853883,0.0007809858628170936,0.035279329120178796,0.8004735854032704,0,1.0,0.2028298478340867
+90,26,0.48727432982149205,1.95,1.3437695643612846,0.0007278325898914082,0.03643182048835507,0.811567120640124,0,1.0,0.22424776607164001
+90,27,0.4695934758971495,2.0,1.3518839750380014,0.0007219865681779849,0.036349882499158805,0.8239479902808192,0,1.0,0.23197825299049818
+90,28,0.5188471818933021,2.0,1.3541897593465768,0.000716971330056538,0.03632783503052407,0.8242807594223933,0,1.0,0.22949060631100687
+90,29,0.5155358037998189,2.0,1.354049039166247,0.0007225062814698436,0.03631912889756888,0.8242619798287907,0,1.0,0.2184526793327294
+90,30,0.5101102595669049,2.0,1.353510098538364,0.0007273384301529812,0.03627495989718416,0.8241852987875283,0,1.0,0.2337008652230162
+90,31,0.505815591352362,2.0,1.351746861470558,0.0007280176650029899,0.036255039267111884,0.8239298498813592,0,1.0,0.18605197117453975
+90,32,0.4936647069416794,2.0,1.2734285432356658,0.0007579942084052446,0.03531764312572362,0.81228776334566,0,1.0,0.17888235647226472
+90,33,0.4647128833963844,2.0,1.272899116410751,0.0007514152142499697,0.03562764573434072,0.8122050179736588,0,1.0,0.21570961132128116
+90,34,0.47025712577639495,1.95,1.3522030175777708,0.0007223978275449224,0.036370133091986404,0.8128517732984839,0,1.0,0.2341904192546497
+90,35,0.5073616509925106,2.0,1.352483978981187,0.0007182832194762263,0.03623539644720666,0.8240339345727775,0,1.0,0.22453883664170185
+90,36,0.4688519719171221,2.0,1.3514201051819064,0.0007182373976166129,0.03615279608156567,0.8238796042532727,0,0.9991473558333205,0.2306434319459796
+90,37,0.5104386050357516,1.95,1.3520262342876153,0.0007139994039281035,0.03618367600172654,0.812822323375134,0,1.0,0.23479535011917177
+90,38,0.5120518038682014,1.95,1.349300846315094,0.0007145966793965352,0.03629540622563558,0.8124075053644925,0,1.0,0.24017267956067126
+90,39,0.5121141793354205,2.0,1.3472783525976015,0.0007147825795939357,0.036003604544053026,0.8232768159774984,0,1.0,0.2070472644514016
+90,40,0.5036420584748202,2.0,1.3483806722641123,0.0007206124489978207,0.03626365909336467,0.8234388328179538,0,1.0,0.17880686158273418
+90,41,0.4892105984742605,2.0,1.270494001326072,0.0007696673075655342,0.0355075003170391,0.811843471235273,0,1.0,0.1640353282475351
+90,42,0.452185974891278,2.0,1.2701791869836216,0.0007635485676243889,0.03492598323514197,0.811793507780577,0,1.0,0.17395324963759318
+90,43,0.4532702851934956,1.95,1.2693710543786922,0.0007667254914406642,0.034899092781334184,0.7999376157832055,0,1.0,0.17756761731165202
+90,44,0.45311603509093834,2.0,1.2666116420849296,0.0007710366004700786,0.03584593026023943,0.8112501279187817,0,0.9989023112681725,0.17851703527889762
+90,45,0.479903605397335,2.0,1.2676474957358819,0.0007720960597743564,0.03581598603229673,0.8114090144184275,0,1.0,0.19967868465778332
+90,46,0.4850309650344146,2.0,1.266709390944715,0.0007743735728314254,0.03587083040382371,0.8112661169695617,0,1.0,0.21676988344804857
+90,47,0.46382978270983377,2.0,1.348219315064249,0.0007148232067585703,0.03602893397036615,0.8234136887556803,0,1.0,0.2127659423661126
+90,48,0.5072175524698004,1.95,1.3485540105893965,0.0007107917768225519,0.03604857718463635,0.8122924995949883,0,1.0,0.22405850823266782
+90,49,0.5102271116868088,1.95,1.34568202930782,0.0007111298950867851,0.03614455845041691,0.811854309349101,0,1.0,0.20075703895602898
+91,0,0.14145430426335495,2.0,1.3841362332051093,0.0007005036114396296,0.036411540901310165,0.8285715535203761,0,0.14071810752119657,0.21722353751625442
+91,1,0.1543578702603761,1.95,1.384141471768258,0.0007001739803698408,0.03666249696738709,0.8176552727793924,0,0.15671526433162475,0.23890588175908728
+91,2,0.17108830991728077,2.0,1.3840051126658142,0.0006998697605106029,0.03666483938358377,0.8285527481794147,0,0.19512224688497198,0.24346470387763994
+91,3,0.1618993697596559,2.0,1.3839520247491541,0.0006995996174855173,0.03643102534385306,0.8285451299931911,0,0.20349427455717442,0.26833886645595384
+91,4,0.1963291181477346,2.0,1.3683589213464358,0.000687503894592957,0.03625389410682208,0.8263151702290424,0,0.22636969107310026,0.28593747239498163
+91,5,0.2142465531953227,2.0,1.3689948979327102,0.0006877903915861558,0.0361331136248267,0.8264065078371359,0,0.25591433984551565,0.30626939085705485
+91,6,0.23329620703753404,2.0,1.3693091232440087,0.0006879779597924488,0.035763332802856374,0.8264516354027992,0,0.29222585281530156,0.32135288637137804
+91,7,0.22071411082155667,2.0,1.3693581128270882,0.0006882640909704819,0.03608059379840238,0.826458743910057,0,0.2942253781704711,0.3434131985112274
+91,8,0.3005601763208342,2.0,1.3698859626430813,0.0006889174038621123,0.03619776016139752,0.8265346248978592,0,0.38227674645369103,0.3254982591311927
+91,9,0.32019768296059475,2.0,1.3733598615848217,0.0006909600089632334,0.036507438716274605,0.8270327151838021,0,0.4577817451491705,0.32361661633642175
+91,10,0.29527278911331983,2.0,1.3469296924271252,0.0007258859716379376,0.03625670002899921,0.823229314576049,0,0.49087980522000507,0.32973622341772607
+91,11,0.33627534126355235,1.95,1.35470408612348,0.0007213989256655195,0.036280188847679196,0.8132316441606595,0,0.5262460146566703,0.35258978466961405
+91,12,0.3170693649685011,1.95,1.353909436462876,0.000719008083934686,0.036421356588194564,0.813110191375639,0,0.5243592211875894,0.35775225497821767
+91,13,0.31798786790280625,2.0,1.3606618885691064,0.0007154722180335628,0.03637268361614062,0.8252157964284569,0,0.5172172453571726,0.3703365658664573
+91,14,0.32927834448076854,2.0,1.366694218080481,0.0007122813747831172,0.03648385601131472,0.8260832445274138,0,0.5377004265992233,0.38066057947026394
+91,15,0.3409121141045352,2.0,1.3711787428560334,0.0007100256808357517,0.03634127370238913,0.8267259468145595,0,0.5619000105539148,0.38717369960989756
+91,16,0.38261335596900714,2.0,1.3748127946264463,0.0007081671207073713,0.03658811352857495,0.8272453761400183,0,0.605371706794146,0.40154891083782907
+91,17,0.3788407010474849,2.0,1.3722632908482857,0.0006934611481061853,0.0362264319159049,0.8268765110029451,0,0.6293020868838896,0.42373288764643036
+91,18,0.46339570319014745,2.0,1.3750514283671031,0.0006938631243160794,0.03630411189569494,0.8272753889541661,0,0.7159162882747983,0.4234306262674272
+91,19,0.4826495802157109,2.0,1.373880900844304,0.0006934094580277517,0.03627974106323338,0.827107937488662,0,0.7907319856857921,0.42118928647131365
+91,20,0.5139283265059335,2.0,1.3753789153348857,0.000695996369627737,0.036513310298276515,0.8273227883309945,0,0.866904803536555,0.42388801697103795
+91,21,0.5581928697271052,2.0,1.2767262187097501,0.0006339181799044696,0.03414317985159263,0.812752300801851,0,0.971004288451215,0.3993038478220642
+91,22,0.5142234330356144,2.0,1.3235954739998095,0.0006622240895179997,0.03519748808602254,0.8197891948183291,0,0.9798454797581857,0.40761747044113344
+91,23,0.5674668554311197,2.0,1.245207901453068,0.0006044757811680212,0.03265623266702901,0.8078991672555754,0,1.0,0.3915561847703991
+91,24,0.5202259523119057,2.0,1.3242989168547188,0.0006630957066487402,0.0347781698723958,0.8198933519012844,0,1.0,0.4007531743730191
+91,25,0.569160885175101,2.0,1.2101288281838534,0.0005724575987962037,0.0315325958659929,0.8023859346007083,0,1.0,0.3972029505836697
+91,26,0.5176443082664911,2.0,1.3240508991861697,0.000663584722380502,0.03524081984392945,0.8198568691091076,0,0.9957061057764436,0.39787288651971214
+91,27,0.5588704685978589,1.95,1.3242846456151542,0.0006629549206154837,0.03541936416648407,0.8085491816425348,0,1.0,0.36290156199286283
+91,28,0.5473507861282187,1.95,1.3301248515038129,0.0006723300496246178,0.03487580413620784,0.8094544936442786,0,1.0,0.35783595376072896
+91,29,0.5468312081671338,2.0,1.3268817367911747,0.0006707334110009486,0.03500581967620464,0.8202766892646535,0,1.0,0.322770693890446
+91,30,0.537420986303967,2.0,1.334078279916028,0.0006820659582845456,0.0352535209394171,0.8213385057752755,0,1.0,0.2914032876798899
+91,31,0.5117055882242405,2.0,1.3382105757926013,0.0006923267346100584,0.035589408604249625,0.8219470837051625,0,1.0,0.3056852940808017
+91,32,0.538195102977399,1.95,1.3461225949860247,0.000689690308424344,0.03579959799621611,0.8119150471922901,0,1.0,0.2939836765913301
+91,33,0.5356898139234341,1.95,1.3481030794480848,0.0006981961359796671,0.03601268332697209,0.8122198927983688,0,1.0,0.2856327130781134
+91,34,0.526204842880153,2.0,1.350016086514838,0.0007064591604196074,0.03586600154130169,0.8236723644576057,0,1.0,0.2540161429338431
+91,35,0.5170833058561125,2.0,1.3518876198721226,0.0007136024314716423,0.03612305684903371,0.8239460866168117,0,1.0,0.223611019520375
+91,36,0.46899835575986826,2.0,1.3521780175958908,0.000720141152276349,0.036114452963694,0.823990104072807,0,1.0,0.22999451919956077
+91,37,0.47682720416191493,1.95,1.353316331331208,0.0007156947835801387,0.03616185991330602,0.8130190378230168,0,0.9959076667600428,0.26154712485965925
+91,38,0.5236578033648256,2.0,1.3530699597043698,0.0007120014905194708,0.03631014461780563,0.8241170657797685,0,1.0,0.245526011216085
+91,39,0.5107650101088679,2.0,1.353933494782786,0.0007169483029677807,0.036304667824070415,0.8242436317969486,0,1.0,0.23588336702955937
+91,40,0.5084706093651266,2.0,1.3522032795673564,0.0007173781689833455,0.036273303351984566,0.8239929663754327,0,1.0,0.1949020312170882
+91,41,0.5056967525500846,2.0,1.259386887353091,0.0007858384368704073,0.03553486747911748,0.8101459141143764,0,1.0,0.21898917516694877
+91,42,0.5004535939833182,2.0,1.3520638215999776,0.00071264946792221,0.036100310110186,0.8239713683521573,0,1.0,0.20151197994439388
+91,43,0.4605172170156707,2.0,1.3501917287381826,0.0007128510883459764,0.03615291466370088,0.823699729076418,0,1.0,0.20172405671890228
+91,44,0.4627956275940119,1.95,1.350463261067413,0.0007089556086389396,0.036140316360226146,0.812582876672488,0,1.0,0.20931875864670618
+91,45,0.5087176410867891,2.0,1.3494523623446264,0.0007055924519635897,0.03585490168608188,0.823590224514806,0,1.0,0.19572547028929674
+91,46,0.49841200442386674,2.0,1.258823113586776,0.0007617044060664493,0.0355952819143213,0.8100517583896112,0,1.0,0.19470668141288908
+91,47,0.4594627571381415,2.0,1.2581209366358954,0.0007558687315100274,0.035170917974028104,0.809941895734463,0,0.9874284811723619,0.21497121556398902
+91,48,0.49368133636838407,1.95,1.3495833558988377,0.000701529939277681,0.035974045292730336,0.8124465743508031,0,1.0,0.24560445456128022
+91,49,0.5167583034709216,1.95,1.356325472837205,0.0006989485826968426,0.03617512781579627,0.8134709719873907,0,1.0,0.2225276782364052
+92,0,0.10397667544672393,1.95,1.385600331901547,0.0006997224551204809,0.03637475325183852,0.8178725464128592,0,0.09641987424711829,0.21802908582625538
+92,1,0.166553292927865,1.9,1.3856796421619655,0.0006997422251145448,0.03671575443063298,0.8064458018544182,0,0.15968598023998182,0.20892966943957428
+92,2,0.20907150569396699,1.9,1.3855560648479535,0.0006996732232647348,0.03667966916874334,0.806426490278291,0,0.2525595591696069,0.19349227342041406
+92,3,0.2437971594126252,1.9,1.3835796680995185,0.0006982937074468534,0.03637086285685552,0.8061173511259996,0,0.3528521448048817,0.1755210049689084
+92,4,0.2666377704740516,1.9,1.3838501066992794,0.0006984610003683878,0.03668931761833393,0.8061596673462539,0,0.4286393227025173,0.18394013797681566
+92,5,0.2399890069868906,1.9,1.3850528000156683,0.0006996647156402436,0.03662092370613076,0.8063479144534361,0,0.45109725835710873,0.19850034548015694
+92,6,0.24784328174671033,1.8499999999999999,1.3852569579697276,0.0007000862431110686,0.036542342443352964,0.7944004167010256,0,0.4569868566693848,0.21682846359652136
+92,7,0.3142996650642728,1.9,1.3726670285894533,0.0007156105358678627,0.03672328680406267,0.8044115405781044,0,0.518458054983684,0.22305481023599744
+92,8,0.3612502858091625,1.9,1.3723595118097263,0.0007158386146574931,0.03658826362015215,0.8043632251049134,0,0.6313112138311251,0.19575266758904164
+92,9,0.3973912961608778,1.9,1.348539450374973,0.0007213975349206792,0.03619485249402264,0.8005894087226105,0,0.7422930249527141,0.16824695393264044
+92,10,0.35924619442639727,1.9,1.3467596754792996,0.0007217737823012342,0.03607532729868618,0.8003052430151252,0,0.7735473907560495,0.16609079374659144
+92,11,0.37537664769151824,1.8499999999999999,1.3546663027509525,0.0007169152062355973,0.0362204533854626,0.7893646817819423,0,0.7985640178089265,0.1865034685598254
+92,12,0.41453607208969534,1.9,1.3604578885192193,0.0007131264399962715,0.03641918383528305,0.8024827031227679,0,0.8247344271732789,0.2154743374012792
+92,13,0.4650884834132124,1.9,1.3274308050163102,0.0006614489084993267,0.035242707186887996,0.7971787208822441,0,0.8920433676842112,0.22757045446509308
+92,14,0.5168225041229505,1.9,1.3251580405027827,0.0006598662879729958,0.035377794961635,0.7968104887194032,0,1.0,0.22274168040983483
+92,15,0.5092002450789391,1.9,1.3338023063480022,0.0006665769951100136,0.03529922821625823,0.7982085974388088,0,1.0,0.23066748359646355
+92,16,0.5108467796518793,1.95,1.331257761136869,0.0006649515787967524,0.03477794125856674,0.8096268955135718,0,1.0,0.2361559321729309
+92,17,0.4991485591951791,2.0,1.3300180508949013,0.0006642511580449261,0.03488592354492405,0.8207366818188118,0,1.0,0.2638285306505969
+92,18,0.5051987408130791,2.0,1.3375808481784524,0.000666985142201595,0.03503187790767837,0.821847483719344,0,1.0,0.2839958027102636
+92,19,0.5106749558075567,2.0,1.3422814189414294,0.0006693831484728907,0.035251265851530586,0.8225353732022151,0,1.0,0.30224985269185567
+92,20,0.5351393726917697,2.0,1.3457015727912753,0.000671792591364539,0.03565505119755842,0.823034767511534,0,1.0,0.28379790897256546
+92,21,0.5284980807860953,2.0,1.353050741579977,0.0006765632665795097,0.03611908203466293,0.8241040063588625,0,1.0,0.2949936026203174
+92,22,0.5169234483770356,2.0,1.3508068019535546,0.0006749181045041653,0.035952237800927454,0.823778018269652,0,1.0,0.3230781612567855
+92,23,0.49867142861125535,2.0,1.3534476047191235,0.0006765387025992903,0.03552051417854073,0.8241615197685058,0,1.0,0.3289047620375177
+92,24,0.49587870148285884,2.0,1.353304214364722,0.0006771846693407699,0.03537240933778374,0.8241409260149499,0,1.0,0.3195956716095294
+92,25,0.5355162634119546,2.0,1.3527519182150438,0.0006775942159275327,0.035521729863666716,0.8240609846901883,0,1.0,0.2850542113731816
+92,26,0.48843038436991615,2.0,1.3591252882079832,0.000681228153618222,0.035937215528706344,0.8249841661331868,0,0.9994738109976129,0.2954695332362364
+92,27,0.5174903422795144,1.95,1.35840086811407,0.0006811114200355377,0.036169067261369904,0.8137802731108343,0,1.0,0.3249678075983813
+92,28,0.538163990111946,1.95,1.360030290875958,0.000682742367655021,0.03571301508901637,0.8140275665671017,0,1.0,0.3272133003731533
+92,29,0.5361677460619262,1.95,1.3582639045407705,0.0006812509699624051,0.03562528758908428,0.8137595587921503,0,1.0,0.32055915353975395
+92,30,0.5377096067680593,2.0,1.3563921476989151,0.0006795960255481756,0.03568544722039232,0.824588718112271,0,1.0,0.32569868922686424
+92,31,0.5376594858132224,2.0,1.3551735747589555,0.0006785548020808243,0.03560823029941103,0.8244120899154243,0,1.0,0.32553161937740793
+92,32,0.5236410830207059,2.0,1.3531185764035154,0.0006768251574615431,0.03573347238719053,0.8241139151698571,0,1.0,0.3454702767356863
+92,33,0.5461072172866233,2.0,1.3552594944754215,0.000678882972207581,0.03616073644997805,0.8244246220360091,0,1.0,0.3203573909554108
+92,34,0.49979333144698024,2.0,1.3614933052077445,0.0006824799236136152,0.03623497210083506,0.8253261707986788,0,1.0,0.33264443815660083
+92,35,0.5247560211060525,1.95,1.361183153434258,0.0006826545584087114,0.03577483058631198,0.8142020048628704,0,1.0,0.34918673702017466
+92,36,0.5100783078435999,1.95,1.3621768809992978,0.0006839515466940584,0.03594340989111724,0.8143526783162727,0,1.0,0.36692769281199944
+92,37,0.5474619201976055,2.0,1.361671099764843,0.0006843972654560074,0.03612950879931601,0.8253523534464215,0,1.0,0.3582064006586848
+92,38,0.5331138655095726,2.0,1.360591925733565,0.0006832596654515414,0.035949089600348275,0.8251964121788992,0,1.0,0.377046218365242
+92,39,0.5391670390820139,2.0,1.3617719022533024,0.000685122623100925,0.03626872597934343,0.8253670923306424,0,1.0,0.39722346360671307
+92,40,0.5622594167830314,2.0,1.3623614379476023,0.0006869107863865262,0.03630097024317149,0.8254525647793569,0,1.0,0.407531389276771
+92,41,0.5532484128268033,2.0,1.1734175274619116,0.0005391404590583067,0.030476770811060334,0.7964894128573212,0,1.0,0.4441613760893442
+92,42,0.5604097894842192,2.0,1.1791743046595053,0.0005529408453567966,0.03084752874194362,0.7974254181171222,0,1.0,0.4680326316140638
+92,43,0.5831724037584821,2.0,1.1828365291381546,0.0005653950651019657,0.03109002754028039,0.7980203775048401,1,1.0,0.4772413458616068
+92,44,0.5671059019031612,2.0,1.370559167472376,0.000705486794749816,0.03644252655965025,0.8266358736543021,1,1.0,0.49035300634387063
+92,45,0.6207834394819557,2.0,1.370538232114058,0.0007027855024073588,0.036316196148191746,0.8266320991573977,1,1.0,0.5692781316065186
+92,46,0.5742122108462636,2.0,1.374786773257913,0.0007012779948651508,0.03645619009203425,0.8272396882837547,1,1.0,0.5473740361542121
+92,47,0.6118288468620485,1.95,1.3732424628759354,0.0007013712277317702,0.036557636524146016,0.8160250138709991,1,1.0,0.5727628228734951
+92,48,0.5658867197901619,1.95,1.3733067074469154,0.0007048713576848139,0.03650306002123822,0.8160357094877323,1,1.0,0.5196223993005398
+92,49,0.6260449730170285,1.9,1.371709833670976,0.0007051536622198929,0.036404546441929045,0.8042576053853134,1,1.0,0.5868165767234282
+93,0,0.16789630089259763,1.9,1.3857316993909783,0.0006998627915222868,0.03635927370808583,0.8064539650256431,0,0.16578532901138981,0.20527389762680562
+93,1,0.2130425782802473,1.8499999999999999,1.3856193026655215,0.0006998141811935592,0.036721077890599266,0.7944595027134796,0,0.2626047003941714,0.1933356604085959
+93,2,0.22524331455691005,1.8499999999999999,1.3836406431746715,0.0006983696504794111,0.036573996057970494,0.794135739709126,0,0.3215798800427688,0.18870454179934176
+93,3,0.2552692957219742,1.9,1.3834550955045488,0.0006983396053944319,0.036441675713309064,0.8060978950107556,0,0.39175649595499573,0.19522232446658652
+93,4,0.296426292532466,1.9,1.3832985654763703,0.0006983071804209761,0.03667930701642052,0.8060734174193624,0,0.48370633793509465,0.17647919119476047
+93,5,0.25140327975255206,1.9,1.3833579890770042,0.0007031145138963295,0.03665536446467153,0.80608420918863,0,0.4865511389111929,0.18927608062691625
+93,6,0.2950385410204008,1.8499999999999999,1.3829890893409618,0.000703288405922565,0.03657480359378694,0.7940308094487143,0,0.5204080319929248,0.22291776074410272
+93,7,0.3169649811508109,1.8499999999999999,1.3731954859846303,0.0007128059148795684,0.036681469511028804,0.7924276242089933,0,0.5641147280269977,0.2377302998000393
+93,8,0.3618834768342574,1.8499999999999999,1.37381357551779,0.0007104996248289133,0.03649253030478944,0.7925285145283477,0,0.6224405759645464,0.24302415482812953
+93,9,0.41097798046078465,1.9,1.1360332400597684,0.0008388107855839439,0.034750000937671374,0.7645359609892686,0,0.7371860393949746,0.22034521567598278
+93,10,0.4500374531019779,1.95,1.1367823036789777,0.0008341996306460035,0.034279387834571656,0.7778966227511002,0,0.8421589290506064,0.21057960493911765
+93,11,0.4884569309137066,1.95,1.3678531690413471,0.0006943313408084814,0.036080186834829685,0.8152124295750988,0,0.9412618307073769,0.20650732876918615
+93,12,0.5051924595904317,1.95,1.3724447150739363,0.0006946344055491592,0.03614224783301495,0.815903195439618,0,1.0,0.18397486530143892
+93,13,0.45783690690462053,2.0,1.2531862498769364,0.0007738239060127402,0.035151937176002075,0.8091866523819848,0,1.0,0.19278968968206828
+93,14,0.4971614686607796,1.95,1.2543934215201331,0.0007747737245784839,0.035453637674249514,0.797532461670569,0,1.0,0.19053822886926527
+93,15,0.45253620991736915,1.95,1.252009820771626,0.0007705377634078643,0.03559637916383727,0.7971459281703251,0,1.0,0.17512069972456368
+93,16,0.4778382977961933,1.9,1.2512621468467664,0.000772770116550775,0.03521525837115802,0.7846220401988034,0,1.0,0.19279432598731092
+93,17,0.5016917218280964,1.95,1.2484114586148076,0.0007768645537940533,0.034564685319379826,0.7965654858574432,0,1.0,0.17230573942698793
+93,18,0.49703740822069264,1.95,1.268966622360829,0.0007644900038564005,0.03484545891498812,0.799872167974496,0,1.0,0.19012469406897547
+93,19,0.4833095119677582,2.0,1.2684959153439836,0.0007592856501673738,0.03533909204719615,0.8115348904706562,0,1.0,0.2110317065591939
+93,20,0.5048130027365646,2.0,1.37075133291335,0.0006945494437275355,0.03627544077386654,0.8266602764934166,0,1.0,0.18271000912188198
+93,21,0.48392419973782935,2.0,1.2643719557381357,0.000770534613679803,0.03578280694442661,0.8109067865851817,0,1.0,0.2130806657927644
+93,22,0.5020969725317999,1.95,1.3697139533268419,0.0006945134652839546,0.036375823654002895,0.8154926306198794,0,1.0,0.20698990843933276
+93,23,0.5061080386755326,2.0,1.3683814057007306,0.0006930249687381091,0.035948518849112814,0.8263199818467349,0,1.0,0.18702679558510832
+93,24,0.45212812942943104,2.0,1.2561311118339802,0.0007788351254394737,0.035105041652575684,0.8096424804305301,0,0.9942806198548327,0.18138627162499318
+93,25,0.49771075730141917,1.95,1.2555748034817986,0.000785477717450928,0.03487815966519501,0.7977266119930526,0,1.0,0.15903585767139716
+93,26,0.47020497903530106,1.95,1.2726852550438088,0.0007744301360200097,0.03592017578827235,0.8004699458753004,0,1.0,0.16734993011767013
+93,27,0.4702289808447499,1.9,1.2709808817561794,0.0007757070958478596,0.03584725515738819,0.7879365921043584,0,1.0,0.16742993614916624
+93,28,0.47817494959540463,1.95,1.2671213778380968,0.0007784772468975245,0.03530388254668152,0.7995811068818782,0,1.0,0.1939164986513487
+93,29,0.4651583521357012,2.0,1.2672621761227436,0.0007779261061001275,0.035392622624364246,0.811351828731368,0,1.0,0.21719450711900395
+93,30,0.4698274287501701,2.0,1.3685123907691819,0.0006931517713466251,0.03597684231155558,0.8263388157937425,0,1.0,0.23275809583390017
+93,31,0.49808474247086787,2.0,1.3679877152812363,0.0006939440288077092,0.0361299766250454,0.8262637378672544,0,1.0,0.26028247490289286
+93,32,0.5223810952625826,2.0,1.367929725327475,0.0006953928373589419,0.03622745447330317,0.8262558291114555,0,1.0,0.24127031754194192
+93,33,0.4947110168152732,2.0,1.372604405573654,0.0006954832142076491,0.03647436427455454,0.8269259155217233,0,1.0,0.24903672271757718
+93,34,0.5273462396296342,1.95,1.3724157416453282,0.0006965403301978739,0.036452664188769905,0.8158994160102511,0,1.0,0.25782079876544745
+93,35,0.48429512173491496,1.95,1.3759410683553521,0.0006965782575040812,0.036072647916762554,0.8164283684961169,0,1.0,0.2809837391163832
+93,36,0.5118850420855009,1.9,1.3755667796519409,0.0006972192867241595,0.03645868831929409,0.8048615892348593,0,1.0,0.3062834736183364
+93,37,0.5318996363582739,1.9,1.3750740614728167,0.0006980929352448189,0.03645888375829861,0.8047844660949997,0,1.0,0.30633212119424597
+93,38,0.5177146416129982,1.9,1.3743674418505643,0.0006968492474829805,0.036408755748717755,0.8046730367486633,0,1.0,0.3257154720433273
+93,39,0.540658657946001,1.95,1.374016703707815,0.0006977535681362427,0.036194592259083135,0.8161401351105871,0,1.0,0.30219552648667
+93,40,0.5283249137367585,1.95,1.3776989346933317,0.0006977633716944667,0.03645971056692189,0.8166920336586254,0,1.0,0.29441637912252805
+93,41,0.49163698426859137,2.0,1.3770330922327791,0.0006967605018185089,0.03618188246455265,0.8275591938525008,0,1.0,0.3054566142286378
+93,42,0.4917771409375289,1.95,1.3769999102597161,0.0006974644870717019,0.03634478949923527,0.8165872727010455,0,1.0,0.30592380312509626
+93,43,0.5145453398301186,2.0,1.3764029326873706,0.0006980308499711951,0.03642094832743398,0.8274696111069411,0,1.0,0.3151511327670621
+93,44,0.5433422116795871,2.0,1.3763808863847702,0.0006988916722667038,0.03650518994800346,0.8274667094651892,0,1.0,0.31114070559862356
+93,45,0.5170100927446258,2.0,1.3792840375774658,0.0006987991352367303,0.036469009527798954,0.8278807591352738,0,1.0,0.32336697581541934
+93,46,0.5339294728425522,1.95,1.378981246371334,0.0006993895651895575,0.03650588027911207,0.8168844121637008,0,1.0,0.31309824280850723
+93,47,0.4937076529542504,2.0,1.378287615917302,0.0006983571472947562,0.03630646133896169,0.8277386023856471,0,1.0,0.31235884318083457
+93,48,0.49752820117486485,1.95,1.3781941705170375,0.0006990403467334624,0.03645260673246061,0.8167665441042472,0,1.0,0.3250940039162161
+93,49,0.5448603213540922,2.0,1.3776239543961115,0.0006995671345164149,0.036447233424871175,0.8276442972332532,0,1.0,0.3162010711803074
+94,0,0.15984979407866678,2.0,1.3792670105702434,0.0007025225039514928,0.036465838140882695,0.8278793939980311,1,0.1265925705525826,0.2307092195254458
+94,1,0.1809775299158151,1.95,1.3791817488171851,0.0007016788158507154,0.03658379000836361,0.8169150870537615,1,0.1634894330262284,0.25193918901774576
+94,2,0.23756197137190216,1.95,1.3788517731408207,0.0007009025051246279,0.03650631352102131,0.8168654968712511,1,0.2190973217145998,0.3330768089535407
+94,3,0.24794066070975393,1.95,1.3861927609151554,0.0007002533918584059,0.03639368829745224,0.8179609343838016,1,0.2401658199528069,0.37291444242877053
+94,4,0.2315596987778948,2.0,1.3861683923769845,0.0007003378287156396,0.03676150079429472,0.82885996316368,1,0.24522739439575478,0.37822913673197633
+94,5,0.23126588550856425,2.0,1.3862156521332403,0.0007002606257764437,0.03674631791344603,0.8288666450070971,1,0.2874205538312391,0.3543255465868953
+94,6,0.2516581965610331,2.0,1.3861626983024067,0.000700300093738867,0.03636953428555996,0.828859144745747,1,0.3110778811869038,0.3574234802875719
+94,7,0.2959408440033737,2.0,1.3861774737951402,0.0007002095156660741,0.03671076367760133,0.8288612149667252,1,0.341163344031632,0.3982516879690698
+94,8,0.31414286756681126,2.0,1.3861464154208558,0.0007002928339889525,0.03675816943713226,0.8288568329199164,1,0.3744923984501122,0.4144863606225548
+94,9,0.36629645134643,2.0,1.384207287767282,0.0006989655789214155,0.036499507031425384,0.8285812090203535,1,0.4284729821199437,0.4830241949948419
+94,10,0.3265277735713536,2.0,1.381495853313067,0.0006983371759066829,0.03655519974581992,0.8281955700757532,1,0.45514632010342493,0.44823081843327867
+94,11,0.3313178706098512,1.95,1.3811575742347661,0.0006977590857722827,0.036637822615119796,0.8172092449775393,1,0.4910646084403177,0.4163067574457469
+94,12,0.34637178228980875,2.0,1.380625949994563,0.0006970955794325058,0.03637030873403441,0.8280714046912964,1,0.546117940118467,0.393082020808073
+94,13,0.39860774717313935,2.0,1.3855346240118553,0.0007000493873038779,0.03668267887225617,0.8287699618046223,1,0.5757486175747852,0.42769433381075095
+94,14,0.44395733727978487,2.0,1.380004733887414,0.0006962916898156716,0.03650550239175962,0.8279827156628349,1,0.6167684229831801,0.49083322695504283
+94,15,0.4513234812287307,2.0,1.3707216540664315,0.0006904801147558502,0.036446642802871236,0.8266548574403376,1,0.6412080971143833,0.5161341412765912
+94,16,0.4730303502518298,2.0,1.3690832968599715,0.0006896082433972614,0.03632387546568298,0.8264197106174415,1,0.6685220979123496,0.5520717036229666
+94,17,0.46229235141913705,2.0,1.3672413619791794,0.0006887079293074444,0.03619605865729096,0.8261550672448182,1,0.6688783564969967,0.5824700294011279
+94,18,0.46629359781946955,2.0,1.3694506531806108,0.0006888916241004342,0.03587140865773629,0.8264721960770047,1,0.6683354652927687,0.596531372341207
+94,19,0.47705682675222977,2.0,1.3708587886873853,0.000689302573644367,0.036100401873807995,0.8266741700402481,1,0.6897879748262901,0.603805456072379
+94,20,0.5175781218206074,2.0,1.3483538870211211,0.0007302089193908674,0.03641147907516538,0.8234377289907623,1,0.7155638457953073,0.6378419450082814
+94,21,0.5061375000867848,2.0,1.3476676038510793,0.0007370604205241334,0.03658314328042553,0.823339922608578,1,0.7294219618684081,0.6478957177980718
+94,22,0.5252794478243221,2.0,1.3507047684001752,0.0007306777152262627,0.0364904418876509,0.8237793952789388,1,0.7657180885482509,0.663307374683406
+94,23,0.5289807759159535,2.0,1.3527165766245663,0.0007249404224244625,0.036450558608081184,0.8240695894727209,1,0.8106242013612585,0.6491036512381669
+94,24,0.584659258126113,2.0,1.3826714839644523,0.0006989715767196069,0.03653702134337279,0.8283629636785028,1,0.856376216465695,0.6736959051327832
+94,25,0.5587514769649626,2.0,1.3830469411843151,0.0006985208413388096,0.03655285992281414,0.8284162106279576,1,0.8958332308624636,0.6347272820665906
+94,26,0.5786034838002235,1.95,1.3833913182106186,0.0006983447394436712,0.036684180725329064,0.8175428561640194,1,0.909034232067802,0.6499659699103424
+94,27,0.6477827450856953,2.0,1.3823694820046315,0.0006978225925872176,0.03652853579448093,0.8283196946719757,1,0.9573843233376814,0.7160967191687424
+94,28,0.6320920932696646,2.0,1.3834587263455425,0.0006994248970016269,0.03654167424323608,0.8284749919455701,1,0.9939435240488416,0.7150489455004266
+94,29,0.6804365530412892,2.0,1.3823723989218957,0.0006991624752522155,0.03667279458638158,0.828320490553355,1,1.0,0.7681218434709639
+94,30,0.6347037511996957,2.0,1.3829779552794332,0.0007010124708112734,0.036524294450375895,0.8284071129219044,1,1.0,0.7490125039989857
+94,31,0.6946474498405336,1.95,1.3834362215527756,0.0007001239042140936,0.03657103171589114,0.8175500849124006,1,1.0,0.8154914994684452
+94,32,0.6907732118335317,1.95,1.3590710675810214,0.0006826119712631023,0.035964284354615475,0.8138822696819625,1,1.0,0.8359107061117719
+94,33,0.6980256883315761,2.0,1.3623434368883032,0.0006857556784433168,0.035752783465978696,0.8254496382987262,1,1.0,0.8600856277719201
+94,34,0.7253051586911583,2.0,1.3650832454566577,0.0006891787570249537,0.03592896641438973,0.8258450295807013,1,1.0,0.9176838623038606
+94,35,0.6801346725821763,2.0,1.3632188980393194,0.0006870600387904631,0.035865314278492585,0.8255761166783934,1,1.0,0.9004489086072542
+94,36,0.6907968076932185,1.95,1.3616844221188533,0.000687113026630695,0.03616827115683678,0.8142791718925021,1,1.0,0.9026560256440613
+94,37,0.7209864843122478,2.0,1.3667584042978818,0.0006882880019848033,0.03616245232666148,0.8260855718886596,1,1.0,0.9366216143741591
+94,38,0.7332468943044677,2.0,1.369080541073025,0.0006911923208233547,0.036252386260452824,0.8264197697716806,1,1.0,0.9774896476815584
+94,39,0.6976461702318976,2.0,1.3701467388727067,0.0006937987246829206,0.036184747233365844,0.8265734100195364,1,1.0,0.9588205674396585
+94,40,0.711347437561441,1.95,1.3688732596631885,0.0006941425409581971,0.03605964667082549,0.815365990919209,1,1.0,0.9711581252048034
+94,41,0.6917334086626856,2.0,1.373250362220981,0.0006943128974331805,0.03642215500061485,0.827018010107659,1,1.0,0.9391113622089521
+94,42,0.75,2.0,1.372283456601314,0.000694493337252246,0.0363143908497173,0.8268796932619458,1,1.0,1.0
+94,43,0.7024522505573227,2.0,1.3709236038772687,0.0006925332919748573,0.03635832933345613,0.8266843826016569,1,1.0,0.9748408351910756
+94,44,0.74,1.95,1.369517596907718,0.0006925146078362786,0.03632911484450603,0.8154624825497455,1,1.0,1.0
+94,45,0.74,1.95,1.3703424454328479,0.0006953850154942607,0.0362283209299203,0.815587439727623,1,1.0,1.0
+94,46,0.7177122107925129,2.0,1.370886139607421,0.0006982188818914731,0.03634404200658965,0.8266806440219331,1,1.0,0.9923740359750427
+94,47,0.74,1.95,1.3757415858643043,0.0006978606209424287,0.03643855434601252,0.8163988539838305,1,1.0,1.0
+94,48,0.7184584747905749,1.95,1.375617745125608,0.0006999211678946697,0.036513827612252116,0.8163809083151983,1,1.0,0.9948615826352497
+94,49,0.75,1.9,1.3791994011999995,0.0006995053710775336,0.03650254245132643,0.8054322113810886,1,1.0,1.0
+95,0,0.1333193906246545,1.9,1.3779427275920513,0.0007011649667738962,0.03643920195264719,0.8052357215577588,1,0.12846125829575247,0.20644962435451175
+95,1,0.037249902702337495,1.8499999999999999,1.3779575318038941,0.0007021184956938411,0.03657087828330173,0.793206317653478,1,0.18066133727085826,0.18328455931331394
+95,2,0.13356525255599705,1.7999999999999998,1.3856552787592173,0.0007003247506019192,0.03668443800697852,0.7819482135654628,1,0.20022179726083528,0.14492177883887647
+95,3,0.1803032845090744,1.7999999999999998,1.3849494683885486,0.0006993244192118135,0.03652578540496958,0.7818275040157081,1,0.22042677113796627,0.17377525351295964
+95,4,0.17528503350408392,1.7999999999999998,1.3849016932734517,0.0006992150477904746,0.03673460852702107,0.7818193174362663,1,0.2339929789538425,0.20562613974182306
+95,5,0.18568834253744856,1.8499999999999999,1.3861629029657232,0.0007002279233713636,0.03645140289427964,0.7945483900351529,1,0.25543353042532074,0.21171643455773417
+95,6,0.1864503910009641,1.9,1.3861521300608792,0.0007001594834464969,0.03664045267242175,0.8065196724934943,1,0.3020446818096024,0.18544172759041042
+95,7,0.20886793877357906,1.95,1.3855760144979072,0.0007001541091535909,0.03676708043035383,0.8178690527340606,1,0.31985590906627837,0.2030852504902258
+95,8,0.2527460490509459,1.95,1.386192483498804,0.0007000989048091859,0.03667679953465382,0.8179608470697523,1,0.35800134091706415,0.2318183756137341
+95,9,0.22507676862012244,1.95,1.38614641946443,0.000700086887120476,0.03647338943886214,0.8179539844141339,1,0.3943062199371689,0.19118093548418288
+95,10,0.23810970281165914,1.9,1.385488001563537,0.0007009648217166028,0.03677026488916181,0.8064162684477938,1,0.40429957262146776,0.18796624587690677
+95,11,0.3100173409773332,1.95,1.3839763362454542,0.0006993850307442427,0.036520591349936425,0.8176304153041163,1,0.46273378634635454,0.2497460881293045
+95,12,0.280480327342335,1.95,1.3855231521268523,0.0006999103565451937,0.03651219071252317,0.8178611056409195,1,0.5030774041994374,0.2308312188752003
+95,13,0.36519365738483606,1.9,1.3857006830603513,0.0006998618430956782,0.036763673499049895,0.8064491234695805,1,0.5578265633403529,0.30687677349564985
+95,14,0.34866646250663863,1.9,1.3858517577120257,0.000700181706663847,0.03634104207950104,0.8064728033043657,1,0.5807860770286253,0.3211734389839616
+95,15,0.3909678146960787,1.95,1.3856037136989943,0.0007001694673691905,0.03672188077710277,0.8178731833257921,1,0.6107306566188206,0.3555851734951682
+95,16,0.38368665747925956,1.95,1.3821223792314217,0.0006996779683890622,0.03666222307322293,0.817353894724934,1,0.6393949009092296,0.35976232371855893
+95,17,0.4255296200429552,2.0,1.3824714684299069,0.0007010498831610843,0.03654424781503558,0.8283351151040138,1,0.6722094832670721,0.38881942245375456
+95,18,0.41541397972615735,2.0,1.3835083133353587,0.000700468260280435,0.03651860450197138,0.8284823348720087,1,0.6872504367203479,0.40171268346006056
+95,19,0.4784280845876954,2.0,1.3714236246279385,0.0006895572629497282,0.036132747548424764,0.8267551600117138,1,0.7272935624879293,0.4583688653084123
+95,20,0.5215426747707792,2.0,1.3715936090257999,0.0006897530969064473,0.03620087375299218,0.8267795617985972,1,0.7790406847868503,0.5330880028534636
+95,21,0.5283986691076853,2.0,1.3713431950448134,0.0006899792582202728,0.036445644736615344,0.826743760586061,1,0.7923539117128289,0.5715236814085123
+95,22,0.5103448518274407,2.0,1.3697014330768649,0.0006886223347894058,0.03637021328558678,0.8265080817301569,1,0.8458610461049524,0.5400014446181991
+95,23,0.5629592980082757,2.0,1.3607914639872851,0.0007105847993987811,0.036394172275821375,0.8252330751543796,2,0.8930219220853322,0.5525017639138095
+95,24,0.5638670411526159,2.0,1.36770786267606,0.000688260915767562,0.03639264419948229,0.8262219288571983,2,0.9151657898419733,0.5593357507194217
+95,25,0.6113727196716519,2.0,1.3670248076709972,0.0006873841313514532,0.03622744405228027,0.826123582586948,2,0.9540100130457541,0.5992290481778338
+95,26,0.6310184745094541,2.0,1.3647953176471266,0.000686080403657638,0.035907898135968036,0.8258027230629283,2,0.9862967732052137,0.6216658840912286
+95,27,0.6765358479994296,2.0,1.368666350261948,0.000716157658035904,0.03628023818358982,0.8263675103931512,2,1.0,0.6551194933314322
+95,28,0.6863501942737563,2.0,1.3663543723053397,0.0007169979114704681,0.03633823643714843,0.8260357691131803,2,1.0,0.6878339809125211
+95,29,0.6402933770393318,2.0,1.3637514802619979,0.000717627757912588,0.03653809539703462,0.8256615956100943,2,1.0,0.7009779234644389
+95,30,0.6781381117111484,1.95,1.3654786181036556,0.0007131841717011145,0.03648750945069286,0.8148601452422898,2,1.0,0.7604603723704944
+95,31,0.6642782527726431,1.95,1.364504968694889,0.0007185574070222684,0.03655570370758549,0.814714834686705,2,1.0,0.7809275092421435
+95,32,0.7210002864888726,2.0,1.3656209779344441,0.0007140273109218953,0.03636675131895994,0.8259295004795669,2,1.0,0.803334288296242
+95,33,0.673779398176366,2.0,1.3761222565781586,0.0007058735870673008,0.03643561060580787,0.8274317767927591,2,1.0,0.8125979939212201
+95,34,0.7236549238772391,1.95,1.379516937251688,0.0007043537857864776,0.0364569823472624,0.8169660141203849,2,1.0,0.8121830795907968
+95,35,0.6785182658432756,1.95,1.3781402586928984,0.0007053176661001794,0.03646027405300518,0.8167603545499481,2,1.0,0.8283942194775853
+95,36,0.6358437833249329,1.9,1.3809227691916952,0.0007038458772305171,0.03668731105158069,0.8057034992115703,2,1.0,0.7861459444164429
+95,37,0.6246923130354114,1.8499999999999999,1.361661292448137,0.0007154866923373284,0.036209930079233545,0.7905248980975268,2,1.0,0.7489743767847045
+95,38,0.6101334744693339,1.9,1.3671269843723262,0.0007118487477240283,0.036533363679958845,0.8035372474737603,1,1.0,0.7004449148977796
+95,39,0.605676466665801,1.95,1.3835159699729918,0.0007012133646448215,0.03650164991198158,0.8175623050359014,1,1.0,0.6522548888860031
+95,40,0.5967182098286397,2.0,1.3837328965985347,0.0007002839637550566,0.036678466430218735,0.8285141932856434,1,1.0,0.6223940327621319
+95,41,0.6130805529744705,2.0,1.3836492230699566,0.0006994637910385217,0.03671371337391646,0.8285020716850869,1,1.0,0.6436018432482348
+95,42,0.6152543001411516,2.0,1.3828740544496239,0.0006994485754393994,0.036560750121525085,0.8283918984005725,1,1.0,0.6508476671371718
+95,43,0.6014233751357286,2.0,1.3819259182694834,0.0006993622452792496,0.036472635120607014,0.8282570460054914,1,1.0,0.6380779171190953
+95,44,0.5903595817311422,2.0,1.3816615065491222,0.0006983827688333401,0.03662036585709531,0.8282191521801545,1,1.0,0.6011986057704738
+95,45,0.6463224814542221,2.0,1.3811740623688105,0.0006975038078268633,0.03641012828448281,0.8281495411508717,1,1.0,0.6544082715140733
+95,46,0.6669536492672263,2.0,1.3817670297689837,0.0006988041756423541,0.03643411566157605,0.8282342845801746,1,1.0,0.7231788308907542
+95,47,0.6366645737700944,2.0,1.3819519680747763,0.0007000646815428932,0.036691890372868005,0.8282609513244104,1,1.0,0.7222152459003147
+95,48,0.6845273372614922,1.95,1.381162659042205,0.0007003128047407122,0.03655370657057311,0.8172107674728525,1,1.0,0.7817577908716403
+95,49,0.6655674722188254,1.95,1.3809580463060436,0.0007018270290966005,0.03647686130255766,0.817180653424893,1,1.0,0.8185582407294177
+96,0,0.1089580918333401,2.0,1.3857522127089767,0.000700022460669222,0.036356316563017146,0.8288008300344467,0,0.1065304402781783,0.2211530524068959
+96,1,0.15246344323948477,1.95,1.385853522685004,0.0006999899307973971,0.03671464707958705,0.8179103376002091,0,0.15059585865337038,0.24075033259378875
+96,2,0.13624219722163633,1.95,1.385835787661545,0.0006999229604384247,0.03671224541643711,0.8179076763063412,0,0.15574503440052448,0.24648061153808842
+96,3,0.1792605133489392,2.0,1.385903028745529,0.0006999241297772897,0.036434447437359144,0.828822200361287,1,0.19844324473490155,0.26627738484992863
+96,4,0.1848223750071332,2.0,1.3783600124347313,0.0007020014981055755,0.0365440812967663,0.8277499641977976,1,0.21394923215078498,0.26414227382273064
+96,5,0.22709487934429443,2.0,1.386008265567885,0.0006999824046620966,0.03673981664246069,0.8288371469543528,1,0.23299930059986335,0.3129838636811636
+96,6,0.2840704394941551,2.0,1.3859285017258194,0.0006999118519514873,0.03637020549340001,0.8288258108507642,0,0.3124436211810405,0.3636433034057964
+96,7,0.32050649976531703,2.0,1.3671091867296672,0.000686575373115156,0.036015886333511916,0.8261354704161283,0,0.420448795515328,0.3410899385306195
+96,8,0.310588232502345,2.0,1.362008942328146,0.00071299064991253,0.036407812796773444,0.8254092879655742,0,0.44335329235402954,0.3774897185357773
+96,9,0.3679269174921954,2.0,1.3631834905476294,0.0007098055053256583,0.036498493448080274,0.8255775686911239,0,0.5309545130512605,0.35181704090563737
+96,10,0.39059851443009885,2.0,1.3633034261808352,0.0007141455541170486,0.03652805452700975,0.8255960884839487,0,0.6048149593936983,0.36224176890873183
+96,11,0.42295272671455264,2.0,1.091329933876396,0.000777521500173831,0.032903527472489584,0.7829404631323468,0,0.6894233926632466,0.3239445654975134
+96,12,0.4410042919359906,2.0,1.0861092414152498,0.0007717403854484324,0.032328749166566646,0.7820499529138429,0,0.7579717649667785,0.32605195316426405
+96,13,0.4408803764556597,2.0,1.093038342458657,0.0008196861409958745,0.033453374115175974,0.783244974879118,0,0.7772318219222873,0.36662549228914904
+96,14,0.5085249085794814,2.0,1.1149301918284054,0.0008046410659974118,0.03404573477158803,0.7869335085113989,0,0.8939038598093082,0.3365445488525268
+96,15,0.46078621683176274,2.0,1.3410204044192087,0.0007093197669246578,0.03624736703835165,0.8223628952196196,0,0.8958725389800545,0.34145733746580303
+96,16,0.4666988872249744,1.95,1.340366524672333,0.0007106246738843153,0.036122244626510876,0.8110408814770498,0,0.9005684579048729,0.3549050135434173
+96,17,0.5441658506846494,2.0,1.3387087921824907,0.0007121723221308052,0.03564120983512392,0.8220257928852129,0,0.982948704391248,0.3366212297605003
+96,18,0.5443280889784645,2.0,1.3492497311515994,0.0007081475684249012,0.03571435373948968,0.8235615249853608,0,1.0,0.31442696326154823
+96,19,0.5335528929710966,2.0,1.3572954464896327,0.0007054054816638085,0.03612125530173097,0.8247267966666366,0,1.0,0.311842976570322
+96,20,0.4978664594392871,2.0,1.356572970117984,0.0007032555200905816,0.0360655654859465,0.8246217145356627,0,1.0,0.3262215314642903
+96,21,0.5411398102151463,1.95,1.3558739178603114,0.0007042083809573039,0.03637678033024514,0.8134040418129578,0,1.0,0.3371327007171544
+96,22,0.5491999638545649,1.95,1.3543913419315698,0.0007021495592528593,0.0359647588192989,0.8131782894303275,0,1.0,0.33066654618188307
+96,23,0.5023985533095188,2.0,1.361551219677919,0.0007003783725308317,0.03591443392786789,0.8253396800877584,0,1.0,0.34132851103172906
+96,24,0.50546335721209,1.95,1.3613919332502507,0.0007011182250786081,0.03594018056990121,0.8142391718583638,0,0.9944669045523767,0.3589219846371309
+96,25,0.5454031154287687,2.0,1.3600291013491794,0.0007018932352710685,0.03614362759968594,0.8251205890116207,0,1.0,0.35134371809589576
+96,26,0.5063675524865937,2.0,1.3597885700133974,0.0006997511489884554,0.03614893683401704,0.8250852601536937,0,1.0,0.3545585082886455
+96,27,0.5335652189105671,1.95,1.3589734979086738,0.0007004041148332581,0.036342286132243454,0.8138728800820104,0,1.0,0.3785507297018902
+96,28,0.5458768315378346,1.95,1.3582333754440032,0.0007029746862019862,0.036049082970481164,0.813761516621799,0,1.0,0.41958943845944857
+96,29,0.5615681755775609,2.0,1.1812906501811842,0.0005638467858931787,0.031081210061941193,0.7977705924031802,0,1.0,0.4052272519252029
+96,30,0.5615210103991679,2.0,1.2078827752000547,0.0005787230605171351,0.03179231827550451,0.8020315420039767,0,1.0,0.3717367013305595
+96,31,0.5562319638858334,2.0,1.3585874428174658,0.0006959902245778887,0.036006560916104643,0.8249107598965365,0,1.0,0.35410654628611116
+96,32,0.5100823026827099,2.0,1.3648297988992057,0.0006952043692516639,0.03620473784825477,0.8258103081619718,0,1.0,0.3669410089423662
+96,33,0.5593350357349121,1.95,1.3638745572351612,0.0006955138431847399,0.036328047852773146,0.814612692388802,0,1.0,0.36445011911637337
+96,34,0.5344859256731216,1.95,1.3686564052162828,0.0006949995020261366,0.03616001535523283,0.8153336005437789,0,1.0,0.38161975224373856
+96,35,0.5560036408227285,1.9,1.3692615908143677,0.000697444905874091,0.03619736074073532,0.803869467214529,0,1.0,0.38667880274242805
+96,36,0.5549058744485111,1.9,1.3679881061196095,0.0006956919572750977,0.03638428542136538,0.8036680544753312,0,1.0,0.38301958149503706
+96,37,0.5223485787026332,1.95,1.3670724961506129,0.0006940793291327243,0.03630375339120623,0.8150947232288962,0,1.0,0.40782859567544394
+96,38,0.5696985604145273,1.95,1.1614808958466851,0.0005397258460831814,0.03062749777541754,0.7820342074459877,0,1.0,0.39899520138175726
+96,39,0.5202835523829925,1.95,1.370342376552351,0.0006926077893437286,0.03621629853271488,0.8155865939511824,0,0.995714784777577,0.40665879490653867
+96,40,0.5474767621380989,1.95,1.1176792010148717,0.0005016230467795577,0.029244516438702496,0.7744624386894029,0,1.0,0.42492254046032957
+96,41,0.5514409475670694,2.0,1.126212293167374,0.0005196408216890311,0.029736358195727702,0.788724076759589,0,1.0,0.4381364918902313
+96,42,0.5818499141628096,2.0,1.137597612474693,0.0005396720470560599,0.030222168978265667,0.7906217036789109,0,1.0,0.439499713876032
+96,43,0.5694596902094929,2.0,1.1308022698875828,0.0005336782061261894,0.02996895868832363,0.7894925954409318,0,1.0,0.39819896736497623
+96,44,0.5476043589305917,2.0,1.371454692265241,0.0006913340451637515,0.03625113171768555,0.8267601187872259,0,1.0,0.42534786310197226
+96,45,0.5509385396010468,2.0,1.0933568555511,0.0005007468783336797,0.028595749340054183,0.7831907505754848,0,1.0,0.43646179867015567
+96,46,0.5708608103580091,2.0,1.1004794900118173,0.0005203491687636268,0.029060310820447244,0.7844043856799634,0,1.0,0.4362027011933634
+96,47,0.5776836447089941,2.0,1.1262445112128445,0.0005363986531760018,0.030080037624724342,0.788735030312193,0,1.0,0.4256121490299802
+96,48,0.5322591286513426,2.0,1.1192805564224961,0.0005304082828926085,0.029851804084948537,0.7875702743243632,0,1.0,0.44086376217114187
+96,49,0.5573727879937815,2.0,1.142309755583405,0.000533384328972468,0.03020612447864356,0.7913986030148276,0,1.0,0.45790929331260516
+97,0,0.0033206170358439646,2.0,1.385886820190131,0.000699894151250921,0.036365830642019564,0.8288198922381091,0,0.10879145829266244,0.19934677906259662
+97,1,0.18520716310322496,1.95,1.3854854627837636,0.0007010677272453563,0.03674383856899255,0.8178558360282694,0,0.2035548714266841,0.2126173817751711
+97,2,0.17822671444768898,1.95,1.3733556311469486,0.0006942474107228859,0.03637635860313544,0.8160398641829913,1,0.22553006979175236,0.22671562176996019
+97,3,0.19581621336998264,2.0,1.3854908722302492,0.0007002259798653856,0.036395120755967646,0.8287638030083719,1,0.26040331457022015,0.23884962513964866
+97,4,0.203354408238383,2.0,1.3855151098289433,0.0007004250749189748,0.03670112474510845,0.8287672991523011,1,0.2721776811913127,0.24827778587285979
+97,5,0.26659619586116173,2.0,1.3854813579211445,0.0007006262857498719,0.03675068085383339,0.8287625664060326,1,0.31869308113078665,0.29706321136282354
+97,6,0.2511761681526997,2.0,1.3853180349213716,0.000700717675298396,0.03640964441593854,0.8287394130913146,1,0.3448239835241464,0.3108219158101372
+97,7,0.2678646333663777,2.0,1.3852469011923967,0.0007009837733744618,0.036719185283583526,0.8287293923550698,1,0.3810535688649774,0.3181440194012891
+97,8,0.3032325778613037,2.0,1.3851326004768647,0.0007012257336492748,0.03673457840252965,0.8287132369377289,1,0.39886788122440053,0.34561808457181153
+97,9,0.32554900224063427,2.0,1.3851499000081389,0.000700830793508386,0.036408503507862774,0.8287155804304759,1,0.434667189318264,0.37227375504442883
+97,10,0.37912975242477226,2.0,1.3856625143603385,0.000700060005073405,0.03667935563776188,0.8287881130141004,1,0.494624734736254,0.43759952843423566
+97,11,0.37900727689849745,2.0,1.380853048520239,0.0006982554446033454,0.03662773712332208,0.828104064315897,1,0.5078735461635502,0.452859528110258
+97,12,0.42600590976076474,2.0,1.382459776480407,0.0006984444651552089,0.03635082029738446,0.8283327115813041,1,0.5532100477002152,0.5157396356022623
+97,13,0.3946345711058808,2.0,1.3825318194100462,0.0006990640793911695,0.036593675193712955,0.828343131879819,1,0.5947049742505088,0.48917527135225747
+97,14,0.45852364667083445,1.95,1.3821488311224257,0.0006984474419584028,0.036613101387135465,0.8173574762060564,1,0.6407806742577628,0.5407045898924312
+97,15,0.43616534270202745,1.95,1.3786598750091432,0.0006974195630083172,0.03653835300427081,0.8168357456842225,1,0.69094415337858,0.4992922711686515
+97,16,0.4944197261070152,1.9,1.3795979062728174,0.000699640862910092,0.036630115645725256,0.8054946964297276,1,0.7294075109276212,0.5421890724532223
+97,17,0.4903869879680094,1.9,1.378117675930174,0.0006994770844980128,0.036225891602999986,0.8052626280733531,1,0.7645490928581644,0.5485578360824787
+97,18,0.48183570417686733,1.95,1.379701825901557,0.0006986620782884671,0.03656949332133517,0.8169919573730602,1,0.7984322045305987,0.5082094078820928
+97,19,0.5007637112735106,2.0,1.3806048701406468,0.0007009437553568049,0.03666462272171796,0.8280694992850709,1,0.8182971889311891,0.5114827856701164
+97,20,0.5138984153191383,2.0,1.359757842266068,0.0007008425039019589,0.03605540161256079,0.8250811405078237,1,0.8474923937024768,0.516338192793825
+97,21,0.5076012304097898,2.0,1.3592713844686348,0.0006979502761301712,0.03618669249647464,0.8250100876289495,1,0.8865606590358918,0.47658988931811
+97,22,0.5131843932467108,2.0,1.3574426239762079,0.0006978704614825402,0.03613779957692166,0.824745892310041,1,0.926411212047953,0.442066361425099
+97,23,0.5207214969520295,2.0,1.3554626460329533,0.000697779250681042,0.036117254465168266,0.8244594956486508,1,0.9617310162746625,0.42009696814054837
+97,24,0.5712076046540704,2.0,1.3533164453954367,0.0006974961200196623,0.03601783148029311,0.8241485861446849,1,0.9807159719773899,0.4630707195437144
+97,25,0.6120121346188712,2.0,1.3548024631711626,0.0007040050580715558,0.03604209686588729,0.8243657323708311,1,1.0,0.5400404487295702
+97,26,0.610033091665158,2.0,1.361936770283727,0.0007012108665509847,0.036134714817472324,0.8253954917686518,1,1.0,0.5667769722171931
+97,27,0.5748627418315193,2.0,1.3627745627281407,0.0007066196331141889,0.03634475880010332,0.8255177577804321,1,1.0,0.5495424727717308
+97,28,0.6065659871519908,1.95,1.3606539275357827,0.0007068015697853842,0.03636803140395897,0.8141292398892511,1,1.0,0.5552199571733025
+97,29,0.635489128338345,1.95,1.3603509029512793,0.0007124696160529407,0.036286640653010224,0.814085096719464,1,1.0,0.6182970944611498
+97,30,0.6132018928161372,1.95,1.3821257032157086,0.0006975902870029427,0.03659383840781873,0.8173537676255809,1,1.0,0.644006309387124
+97,31,0.6436217483495041,1.9,1.38260680879455,0.0006984152998448578,0.03663634907027568,0.8059652935837731,1,1.0,0.6787391611650138
+97,32,0.6581850131469564,1.9,1.383914972796838,0.0006987428799335312,0.03667519563222805,0.80616989162031,1,1.0,0.7272833771565212
+97,33,0.6697969308928591,1.95,1.3848122364265238,0.000699147744656978,0.036592995788650926,0.817754953330415,1,1.0,0.7659897696428632
+97,34,0.6965647774540917,2.0,1.3853179132294848,0.0006995631682905584,0.036702722356722436,0.8287390680999821,1,1.0,0.8218825915136391
+97,35,0.6478367526343382,2.0,1.3790835409464504,0.0007076554140712632,0.036736959024702136,0.8278547119025719,1,1.0,0.7927891754477938
+97,36,0.6678902408573603,1.95,1.3849856457390475,0.0006992571078620429,0.03652494163269811,0.8177808280001871,1,1.0,0.8263008028578676
+97,37,0.6956217976314129,1.95,1.3770987596136135,0.0007086892874972431,0.03671124150469748,0.8166054392509468,1,1.0,0.852072658771376
+97,38,0.6622050384490269,1.95,1.3764671868139269,0.0007114321044508225,0.03654274386560413,0.8165116572268657,1,1.0,0.8406834614967562
+97,39,0.6564877832104787,1.9,1.3748865148889402,0.0007123436040787656,0.036720156494927235,0.8047594778530419,1,1.0,0.8216259440349288
+97,40,0.6525498908909293,1.95,1.3727620543895112,0.0007134859621574549,0.03655672941721242,0.8159565186671441,1,1.0,0.8084996363030975
+97,41,0.6403369650162496,2.0,1.3711129325654567,0.0007138279479906209,0.03618951246432937,0.8267176086723461,1,1.0,0.7677898833874985
+97,42,0.6553940362799486,2.0,1.385471455788961,0.0006996743822170832,0.036582100741579276,0.8287608909575961,1,1.0,0.7846467875998289
+97,43,0.6859543423443045,2.0,1.3856743046455575,0.000700089673944158,0.03654931015826407,0.8287897944498124,1,1.0,0.8198478078143483
+97,44,0.7126775679403179,2.0,1.3697749708243823,0.0007140060161689139,0.03665318018368129,0.8265259054238454,1,1.0,0.8755918931343929
+97,45,0.7338477528110112,2.0,1.3717223404010002,0.0007101663176594645,0.03654422480188721,0.8268038436958529,1,1.0,0.9461591760367039
+97,46,0.7100487518633595,2.0,1.3727712179485705,0.0007067541461346591,0.03649026292517812,0.8269530141178141,1,1.0,0.9668291728778647
+97,47,0.75,1.95,1.3764536353130405,0.0007045307336092571,0.03661622880088735,0.8165075589686176,1,1.0,1.0
+97,48,0.72,1.95,1.3766835911864264,0.0007020766416689599,0.03659583284477074,0.8165412738791201,1,1.0,1.0
+97,49,0.74,1.9,1.3794921900716484,0.0007008696320464948,0.03654721033986449,0.8054785180758901,1,1.0,1.0
+98,0,0.19088770943202543,1.9,1.3778498591621564,0.0007034077543460221,0.0364143166424057,0.8052218599986866,1,0.15927247893630134,0.2572623928583497
+98,1,0.17527505992615017,1.8499999999999999,1.3775096949616998,0.0007035868287815649,0.03659039765704259,0.7931333311332996,1,0.18414590147185528,0.27205566445802687
+98,2,0.2138725944068527,1.9,1.3771350580127877,0.0007046110770461359,0.036473004996173626,0.8051101040228047,1,0.20464113366604234,0.30672046980145246
+98,3,0.18579876489346758,1.9,1.3850343084391046,0.0007004686776971908,0.03643073666767985,0.8063452780413408,1,0.2351493949360132,0.2724633563968743
+98,4,0.23287926626052216,1.8499999999999999,1.385441097081184,0.000700393105962001,0.036755196439608555,0.7944305904440496,1,0.2631823518231454,0.2920210851042133
+98,5,0.2596297352716613,1.8499999999999999,1.3853546080437833,0.0007001847883968213,0.03655881207273718,0.7944163974609865,1,0.2958971685196657,0.33756955954598344
+98,6,0.2461277891247993,1.8499999999999999,1.3852561538529964,0.0006999468740390559,0.036626689082565,0.7944002398400208,1,0.3612603994262422,0.3054120978476747
+98,7,0.29370069629744483,1.9,1.385652430413376,0.0006999911853908844,0.03675154456293995,0.8064416320329381,1,0.38323701565224666,0.3346863001218206
+98,8,0.2860780584532231,1.9,1.3855435829101141,0.000699802820221525,0.036525002504644105,0.8064245822665205,1,0.4102692638590475,0.33990117636534695
+98,9,0.2973902200690388,1.95,1.3856903877554425,0.0007002578333990244,0.036610680125305065,0.8178861199702138,1,0.4328499363464879,0.3475008184348122
+98,10,0.3029213461596358,2.0,1.385482041410092,0.00070026336189103,0.036753806911667505,0.8287625603946804,1,0.4401608852887327,0.3561899734804756
+98,11,0.31234707439162074,2.0,1.3852384909368212,0.0007002755937694096,0.03674495075305041,0.8287279975904731,1,0.44260041168545566,0.3843563657247949
+98,12,0.3247642020370559,2.0,1.3849213729708483,0.0007002771218951604,0.03648266962286527,0.8286829822727626,1,0.47110361204083673,0.38774252406907056
+98,13,0.33603856236284474,2.0,1.3845424005278855,0.0007002653799558864,0.036669460704367406,0.8286291704669272,1,0.48909672721652575,0.40133290492078133
+98,14,0.3533092743978751,2.0,1.384692595259812,0.0006991361256408398,0.03670035425134975,0.8286501768136771,1,0.5198845584722565,0.41785150336324167
+98,15,0.3502779529447164,2.0,1.3844829015560904,0.0006991091245917059,0.03646508591306574,0.8286203928808171,1,0.5619068746445793,0.38505067695628237
+98,16,0.42805399316054993,2.0,1.384547215231253,0.0007002779703025689,0.036629505899593726,0.828629857743253,1,0.6155287241426709,0.43947501167827185
+98,17,0.3968747575336449,2.0,1.3821644463526168,0.0006976082096216971,0.03660473060115181,0.8282904743913267,1,0.6615121031741943,0.4075663875465573
+98,18,0.4671021237575342,1.95,1.3828642880491588,0.0006985623638304753,0.036386211446186534,0.8174642926905192,1,0.6928249939156105,0.4665737539709666
+98,19,0.4312366757512804,1.95,1.3836916624112408,0.0006986503576646405,0.03671842136469939,0.8175877443534703,1,0.7120160762804493,0.45476748413033546
+98,20,0.4422939087350314,1.9,1.3841962117786286,0.0006994252321994435,0.03651457932355394,0.8062140474507526,1,0.748426662316068,0.4430774793620139
+98,21,0.48819600664206914,1.95,1.3843917886260124,0.0007001755328674569,0.03673462115610876,0.8176925912986044,1,0.7681705339654245,0.46975931018633127
+98,22,0.5359025658657569,1.95,1.3838706155800722,0.0007002297360637019,0.03671558085170147,0.8176149025955083,1,0.8238475599644473,0.5212118062665931
+98,23,0.5139292829661098,1.95,1.3650787288611945,0.0007098497408141748,0.036293651553108174,0.814798802779313,1,0.8435461869865087,0.5217026939050212
+98,24,0.515970163082347,1.9,1.3653920471506442,0.0007065346767788904,0.03620009827532076,0.8032615375410395,1,0.8971096411756788,0.4904210220402517
+98,25,0.5227626130046401,1.95,1.3630893028371867,0.0007069472669357418,0.036376736438473244,0.8144975298778542,1,0.9298718368729398,0.46937959418488073
+98,26,0.5358253808009296,2.0,1.3617536504010674,0.0007069622720655303,0.036390071050871685,0.8253707573171233,1,0.9808059075171178,0.44501005931360815
+98,27,0.5831607823710295,2.0,1.3603042989587912,0.0007069019039058957,0.03636103226282182,0.8251617407432184,1,1.0,0.4772026079034317
+98,28,0.5449711614250351,2.0,1.3606821238037223,0.0007124637986742294,0.03641320080060242,0.8252178472048383,1,1.0,0.44990387141678345
+98,29,0.5306510812847914,1.95,1.3585982581522917,0.0007127384716822509,0.03637758702609713,0.8138197683993976,1,1.0,0.40217027094930463
+98,30,0.5689292670635703,2.0,1.3556959431929267,0.0007132524155357258,0.03605504686823298,0.8244977352826202,1,1.0,0.4297642235452341
+98,31,0.5950002353951626,2.0,1.3564877889025015,0.000718911010603463,0.036171861738511814,0.8246139236461186,1,1.0,0.48333411798387493
+98,32,0.5510705928589932,2.0,1.363148260379279,0.0007144308768259191,0.03644745175148409,0.8255738276417993,2,1.0,0.4702353095299773
+98,33,0.5951694554173538,1.95,1.357104999391428,0.000681709645481812,0.035583460051749186,0.8135839962542337,2,1.0,0.48389818472451235
+98,34,0.526902389408303,1.95,1.3532901455540678,0.0006795423043618354,0.03598625954010644,0.8130040648902173,2,1.0,0.42300796469434343
+98,35,0.5872017958669516,1.9,1.35725344918195,0.0006803000813867506,0.03621634365432288,0.8019638670084781,2,1.0,0.4573393195565052
+98,36,0.6274512439204221,1.9,1.3533649428029815,0.0006777229520775224,0.03531817299456128,0.8013447571694172,2,1.0,0.49150414640140694
+98,37,0.6333761117079243,1.9,1.3589236928218136,0.0006846028339187636,0.035783541305954084,0.8022303630116394,1,1.0,0.511253705693081
+98,38,0.5751019542602317,1.95,1.3719018296067682,0.0007115487758929809,0.03664063199697021,0.8158267201903759,1,1.0,0.5170065142007723
+98,39,0.6226577465681034,1.9,1.372490603822438,0.0007083460551918818,0.03659542371396503,0.8043814953915297,1,1.0,0.5755258218936777
+98,40,0.57324443490866,1.9,1.3763180814879976,0.000706466641921375,0.03648524779937099,0.8049824646541682,1,1.0,0.5441481163621997
+98,41,0.5691110414243885,1.8499999999999999,1.3750973343786839,0.0007070892880764288,0.036610134070304653,0.792738399301705,1,1.0,0.5303701380812951
+98,42,0.6093471540235524,1.9,1.3734083285941336,0.0007078282464199934,0.03659883042013153,0.8045256979305155,1,1.0,0.5644905134118414
+98,43,0.635357295666836,1.9,1.3732962051792765,0.0007105169811113433,0.03667040678750154,0.8045089100798418,1,1.0,0.6178576522227863
+98,44,0.5818980062397867,1.9,1.386090743873532,0.0007000697820379715,0.03671377022981414,0.8065100652671783,1,1.0,0.5729933541326221
+98,45,0.6232427701466065,1.8499999999999999,1.3757953627950428,0.0007088894030654549,0.036383434605974804,0.7928536561781302,1,1.0,0.6108092338220215
+98,46,0.5813782885510188,1.8499999999999999,1.3857140614811543,0.0006998236072914451,0.03643057983596844,0.7944749788682555,1,1.0,0.5712609618367291
+98,47,0.5734365828926394,1.7999999999999998,1.3752741778288446,0.0007101622452023799,0.03670472944964744,0.7801763761443202,1,1.0,0.5447886096421315
+98,48,0.5523671069499685,1.8499999999999999,1.3736037946758786,0.0007112333310288958,0.03663959395547112,0.7924942600746079,1,1.0,0.47455702316656145
+98,49,0.5624178087436296,1.7999999999999998,1.3724734559665788,0.0007116111286908453,0.03633755292291328,0.7796961698465936,2,1.0,0.47472602914543194
+99,0,0.1560156488395507,1.8499999999999999,1.3766850735863234,0.000702922133164303,0.03636571078668545,0.7929977822263731,1,0.1226234692264836,0.22322087049652423
+99,1,0.03214430374275981,1.7999999999999998,1.37674622176758,0.0007020166067738503,0.03654135888225223,0.7804259376380921,1,0.17313816748056204,0.17629678916844999
+99,2,0.13843635909206928,1.7499999999999998,1.3856559347013668,0.0007005696946454298,0.03666553133489338,0.7688905233890647,1,0.21142633011506945,0.14621942348680494
+99,3,0.15679680602420454,1.7499999999999998,1.3852492504308216,0.0007012827496160915,0.03659153248622829,0.768818502023278,1,0.2267698420640476,0.153629563995285
+99,4,0.15522385726707127,1.7999999999999998,1.3851536799346478,0.0007013958516942945,0.03677135445888567,0.7818630416195211,1,0.2668093245831656,0.12833375811268338
+99,5,0.20727173518482375,1.8499999999999999,1.3854825822023755,0.0007011477569312896,0.03649094441943793,0.7944376118013827,1,0.29913683067725344,0.15872334304640792
+99,6,0.17965874132533222,1.8499999999999999,1.3855752354028792,0.0007008531617594981,0.036659542366296635,0.7944526460444458,1,0.3311790179544355,0.12395711381186003
+99,7,0.2557531087172486,1.7999999999999998,1.3858108252958596,0.0007007100138522093,0.036765922615404865,0.7819748652636552,1,0.37442281717961023,0.18661327281801493
+99,8,0.23799372991263343,1.7999999999999998,1.3856945622232215,0.0007008847636592309,0.03643637722374263,0.7819551024923455,1,0.40409641817603276,0.18785054214073446
+99,9,0.2967558553826619,1.8499999999999999,1.381514166468831,0.0006987445967498924,0.03664032878094493,0.7937879997383328,1,0.4405572486379162,0.23510985309165144
+99,10,0.3317676133008126,1.8499999999999999,1.3844706011186252,0.0007020087433712664,0.036716986036455554,0.7942725808534252,1,0.4830602372908087,0.2951450612816305
+99,11,0.3006260787186442,1.8499999999999999,1.3842982710551968,0.0007025734869995492,0.03650271610923213,0.7942446046453493,1,0.536977092079781,0.2527841396224395
+99,12,0.30891748828687005,1.7999999999999998,1.3847965398424982,0.0007020232961564051,0.03678556476395901,0.7818023381615307,1,0.5803825315664282,0.2225482522009959
+99,13,0.36099736738633,1.8499999999999999,1.3850796313648863,0.000701560796325703,0.036321241382908674,0.7943719344420316,1,0.6119378610043701,0.2540740766152731
+99,14,0.3531233034664425,1.8499999999999999,1.3833155001063986,0.000703262444009405,0.03655120261695669,0.794084178971882,1,0.6445040357164773,0.25107229726617186
+99,15,0.35526935244062685,1.9,1.3830630774556298,0.0007040664492161763,0.036778106398398465,0.8060384043195422,1,0.6633431550215338,0.2331069681067109
+99,16,0.39861626239332615,1.95,1.382819142781154,0.0007046591744558686,0.036734327060527275,0.8174593757122273,1,0.6948057146417506,0.268979921788753
+99,17,0.38930816467409063,1.95,1.3837484275772656,0.000703593598579547,0.03663387005122284,0.8175976844381572,1,0.7227466868927539,0.26736496638996354
+99,18,0.45570933108317396,2.0,1.3833926910974785,0.0007041657485935282,0.03663606567553728,0.8284669553011776,1,0.7716303662656679,0.32352394858968925
+99,19,0.43719069680696104,2.0,1.3829917139661243,0.0007046263599324379,0.036707211682718774,0.8284100961014826,1,0.8079104027658928,0.3134217856686796
+99,20,0.5152769027780519,2.0,1.3505927444543548,0.0006836401930403306,0.0354967871074368,0.8237494745302577,1,0.8749027786530013,0.38438597105617134
+99,21,0.47927516819321775,2.0,1.3486082517368587,0.0006831078221779432,0.035794868707483225,0.823461013498843,1,0.8972140947993252,0.3679651009116255
+99,22,0.5627417134247151,1.95,1.3552137480152415,0.0006835880919950003,0.03589434331353085,0.8132975598042782,1,0.9625959932480398,0.42567772041833046
+99,23,0.5426725914976303,1.95,1.3653455866968924,0.0007241272474041916,0.036307608840640396,0.8148433769389526,1,0.9783634369555378,0.4377573890513836
+99,24,0.5998364369776524,1.9,1.3687039198603228,0.000719696581615057,0.03648102979289275,0.8037885468761757,1,1.0,0.499454789925508
+99,25,0.5729816978446768,1.9,1.3713674487281322,0.0007161330737547502,0.036610341884874456,0.8042071566454417,1,1.0,0.5099389928155893
+99,26,0.6170694786475711,1.8499999999999999,1.3739860130219874,0.0007127382708396292,0.03669128916218092,0.7925576026041489,1,1.0,0.5568982621585703
+99,27,0.5679148319988103,1.8499999999999999,1.3760132361611261,0.0007099689728787184,0.03618964394185141,0.7928897912701015,1,1.0,0.5263827733293676
+99,28,0.558978632097821,1.7999999999999998,1.3744266627792958,0.0007104973742267716,0.03664310079017069,0.7800311067890622,1,1.0,0.4965954403260696
+99,29,0.5492552149010056,1.8499999999999999,1.3723405774761503,0.0007111561204140805,0.036584496774686684,0.7922864254921848,1,1.0,0.4641840496700187
+99,30,0.5898645690684781,1.9,1.3708635517130845,0.0007112110071938237,0.036597767183368005,0.8041262513463273,1,1.0,0.4995485635615934
+99,31,0.5410250268151183,1.9,1.3709572871583229,0.0007150087367679403,0.03662076587116012,0.804142211203851,1,1.0,0.4367500893837276
+99,32,0.5983525128904497,1.8499999999999999,1.3691712288935685,0.0007155140066625147,0.03665701289158439,0.7917658039097327,1,1.0,0.4945083763014988
+99,33,0.5719297362911635,1.8499999999999999,1.371124916646794,0.0007121424755639154,0.036461709217676344,0.7920866196268874,1,1.0,0.5064324543038782
+99,34,0.5529757822338432,1.7999999999999998,1.3741672986187856,0.0007090925254699062,0.0366631748403217,0.7799861190196937,1,1.0,0.47658594077947736
+99,35,0.5902740154693437,1.8499999999999999,1.3720125573284183,0.0007095725335730361,0.03661576482517292,0.7922319171673091,1,1.0,0.5009133848978121
+99,36,0.5486428317325976,1.8499999999999999,1.3721760986091713,0.0007133129557940637,0.03668385787378659,0.7922600660888552,1,1.0,0.46214277244199203
+99,37,0.6091363520485387,1.7999999999999998,1.3703872823006638,0.0007137660917521973,0.03649845462765131,0.7793383597828165,1,1.0,0.530454506828462
+99,38,0.5546408799095948,1.7999999999999998,1.3722243215241372,0.0007105611918312723,0.036668421412781656,0.7796530122824747,1,1.0,0.4821362663653156
+99,39,0.5918815455101794,1.7499999999999998,1.37033885111985,0.0007108660283748957,0.036610920563068854,0.7661611965579789,1,1.0,0.5062718183672645
+99,40,0.5665675868159931,1.7499999999999998,1.369622614903643,0.000715458730688889,0.03619126644210755,0.7660344987570157,1,1.0,0.48855862271997674
+99,41,0.5939647994923918,1.6999999999999997,1.3729390780702417,0.0007120242041742006,0.03660221362800366,0.7529416379584795,1,1.0,0.5132159983079723
+99,42,0.6194810543296315,1.6999999999999997,1.3720010930515063,0.0007159168916035066,0.03671736702088439,0.7527685610196392,1,1.0,0.5649368477654383
+99,43,0.6165824408330661,1.6999999999999997,1.3741669959905158,0.0007123431630637497,0.03653847122409084,0.7531701035388059,1,1.0,0.5886081361102201
+99,44,0.6472548562464919,1.7499999999999998,1.3733903432091115,0.0007153351441624385,0.03643017176348566,0.7667090511065968,1,1.0,0.6575161874883061
+99,45,0.6200018767588078,1.7499999999999998,1.38475890285091,0.0006995189454825576,0.036376031847283025,0.7687307106664603,1,1.0,0.6666729225293594
+99,46,0.6657527492190397,1.6999999999999997,1.3851064122273036,0.0006994363704645249,0.0366964573312332,0.7551933853283915,1,1.0,0.719175830730132
+99,47,0.6456753134691039,1.6999999999999997,1.3850037910323985,0.00069927035435625,0.03671375237436957,0.7551743512129071,1,1.0,0.7522510448970128
+99,48,0.6269985228191557,1.6499999999999997,1.3851178925734655,0.0006994704279564679,0.03658805132098375,0.7410660664399258,1,1.0,0.7233284093971853
+99,49,0.6443274025183665,1.6999999999999997,1.384525016709678,0.0006989467842187,0.036493662840560805,0.755085702028803,1,1.0,0.747758008394555
+100,0,0.1258986000102208,1.7499999999999998,1.375993082723643,0.0007022233210112204,0.036338182638062724,0.7671695861952913,1,0.09676704420128907,0.22397260776568392
+100,1,0.160375635194169,1.6999999999999997,1.3761308123480398,0.0007028295637889273,0.03654956924690436,0.75353147133251,1,0.11919078706599105,0.24233106789257525
+100,2,0.17913115669730884,1.6999999999999997,1.3756722177552048,0.0007020961880516372,0.03644302631189662,0.7534460179489566,1,0.1516595337811312,0.2615578106161878
+100,3,0.1952107840161232,1.7499999999999998,1.3754372680883997,0.0007013096014906636,0.03642273000438756,0.7670699650986478,1,0.179666231964336,0.277814304101296
+100,4,0.19628482877578537,1.7999999999999998,1.375447740859678,0.0007004881428210692,0.036521712864255595,0.7802028230290271,1,0.21338522102186286,0.3031024678901342
+100,5,0.1932091912141042,1.8499999999999999,1.3854621844904036,0.0006998795876937673,0.036453333185671025,0.794433866496749,1,0.25317917399728157,0.2731250720506386
+100,6,0.24562135827363998,1.9,1.3857778745020188,0.0006999352925626906,0.036635774052465285,0.8064611948426775,1,0.2876522243625832,0.30186822842868893
+100,7,0.2644715496977705,1.9,1.385682986414586,0.0006998167077251537,0.03676997478093062,0.8064463471135976,1,0.3229937415230993,0.3175801769617694
+100,8,0.2827162431072548,1.95,1.3855352222580721,0.0006996642729419134,0.03652774793408438,0.8178628303380798,1,0.3443603918671143,0.3499069545346969
+100,9,0.33658483548546125,2.0,1.3853644113036303,0.0006995215993494464,0.03646002274131138,0.8287456557003827,1,0.40080978380073035,0.4208697398838971
+100,10,0.3180873033694439,2.0,1.383865996080664,0.000698504354122343,0.036618560780438,0.8285325973789137,1,0.4202434287052047,0.43329977295787325
+100,11,0.38386630234123914,2.0,1.3836350110003055,0.0006984530815673739,0.03668992759303112,0.8284997651150132,1,0.46874336259476446,0.48789652434444464
+100,12,0.3825458871486964,2.0,1.383861077613046,0.000698827226010658,0.03635882105900342,0.8285319903678559,1,0.47858431525158873,0.5037072034935365
+100,13,0.4037398650710794,2.0,1.384688717372969,0.0006991422107923455,0.036638124702865385,0.8286496279235172,1,0.5118525278764604,0.5299961797349841
+100,14,0.3815515071890461,2.0,1.385255588671888,0.0006994441797283804,0.03672351775218556,0.8287301883776969,1,0.5546385969475757,0.4989868947000528
+100,15,0.3939446348077279,1.95,1.3849593681594672,0.0006992517392642363,0.036468854152908056,0.8177769106048587,1,0.6089763655510206,0.4678469619577321
+100,16,0.4449293081337082,2.0,1.3846809111109462,0.0006991495637186422,0.03673212612950387,0.8286485216021267,1,0.6367295160360454,0.5007916723976334
+100,17,0.42244909742449177,2.0,1.3844040005455625,0.0006988882512069222,0.03672236780223419,0.8286091252301843,1,0.678462477211336,0.47021368846652456
+100,18,0.43138041248678877,1.95,1.384924670023095,0.0006992229681965382,0.03641753623039173,0.8177717313316882,1,0.721895634557749,0.44207386221229716
+100,19,0.4815414195301488,2.0,1.385196289127005,0.0006995531856950727,0.03674355754682047,0.8287218023909975,1,0.7407941577663816,0.4840791880786537
+100,20,0.47215399806026115,2.0,1.384886550461312,0.0006995038143366385,0.03672611950286137,0.8286778189774405,1,0.7540612355218145,0.5017650128384509
+100,21,0.4835355598471166,2.0,1.385373233153192,0.000699594041261428,0.03645816917510286,0.8287469283118687,1,0.7748786407215142,0.5119470118617029
+100,22,0.5327945945064432,2.0,1.3856188055616458,0.0006997026349192798,0.03664226525198215,0.8287818092939564,1,0.8277976837897103,0.5389184033018634
+100,23,0.5470980299700563,2.0,1.3756938747854828,0.0007122592460527211,0.03671211172870545,0.8273724243488736,1,0.8560678154318684,0.5489030126576964
+100,24,0.5206547905107606,2.0,1.3749207055314803,0.0007142026866708579,0.036369482093394516,0.8272625221553331,1,0.8848386738182488,0.522397736611537
+100,25,0.5188824631608111,1.95,1.3738327029961281,0.0007151268024236722,0.03654229486579179,0.816117737646412,1,0.918430534968191,0.47170083057844886
+100,26,0.5717829868083671,2.0,1.3722857213309843,0.0007163628738141519,0.03655355373373002,0.8268862785919271,1,0.9541361081919298,0.5004284784386507
+100,27,0.559716893437701,2.0,1.3717079256809739,0.0007183896295118209,0.036615060162818965,0.8268041346627378,1,0.9599364617570288,0.5191410291162982
+100,28,0.5734630030024139,2.0,1.3747269311058115,0.0007150920989616955,0.036693115386127406,0.8272350844056379,1,0.977409090161835,0.541664556458933
+100,29,0.586025485288346,2.0,1.3769255001652543,0.0007122153621896649,0.03675903881410103,0.8275482506252902,1,1.0,0.5534182842944866
+100,30,0.567988242089724,2.0,1.3784337053768723,0.0007097005236383554,0.036448536668458015,0.8277626664172238,0,1.0,0.5266274736324134
+100,31,0.5639328243077565,2.0,1.1107238743009915,0.0004810512310493246,0.028850591464641268,0.7861185934287624,0,0.9973729727901944,0.5499454506389289
+100,32,0.6055780771911192,2.0,1.131722403279243,0.0004910273492071758,0.02944060940962707,0.7896313059565597,0,1.0,0.5185935906370638
+100,33,0.5804841636442096,2.0,1.1232099086217504,0.0004836114296847305,0.02941570084533799,0.788211301650163,0,1.0,0.5349472121473653
+100,34,0.6006007472205406,2.0,1.137146146930859,0.0005002911869388519,0.02976219845241728,0.7905339168488994,0,1.0,0.5353358240684685
+100,35,0.6072088002301196,2.0,1.1613448024175734,0.0005244813345835195,0.030282361853140937,0.7945207039611124,0,1.0,0.5240293341003984
+100,36,0.5798091685705732,2.0,1.1532167915845504,0.0005174534524601988,0.029855765524201338,0.7931882622324402,0,1.0,0.5326972285685772
+100,37,0.6055782222708714,2.0,1.1642688861720085,0.0005313937448280797,0.030411659803381154,0.7949999247292919,0,1.0,0.5185940742362378
+100,38,0.585198151945643,2.0,1.1564694872978776,0.000524634588087419,0.030254031577304146,0.7937236791922249,0,1.0,0.5506605064854765
+100,39,0.589319922712751,2.0,1.165257829174466,0.0005388844605145221,0.03081005775152911,0.7951634909033708,0,1.0,0.5643997423758366
+100,40,0.6143752835056628,2.0,1.1714333332787081,0.0005522617886166804,0.0308808717964665,0.7961718563641544,0,1.0,0.5479176116855426
+100,41,0.5886699222956324,2.0,1.1642837978058886,0.000546122822256236,0.030686777694723538,0.7950071558029324,0,1.0,0.5622330743187745
+100,42,0.5926910656032092,2.0,1.16877094345084,0.0005591197939746718,0.031014660918119885,0.7957416864658696,0,1.0,0.5756368853440303
+100,43,0.6203733306975521,2.0,1.171308221761799,0.000570501482406101,0.031059478299226284,0.7961574725668541,0,1.0,0.5679111023251735
+100,44,0.6087077612797709,2.0,1.1648561284746743,0.0005651994814380128,0.03067137104351857,0.7951066289353734,0,1.0,0.5290258709325693
+100,45,0.6023328656952331,2.0,1.158395446292879,0.000559768814918574,0.03059702711352811,0.7940503226941549,0,1.0,0.5077762189841101
+100,46,0.5784292989156141,2.0,1.1518702268327694,0.0005542491537097614,0.030427624543022336,0.7929793649292247,0,1.0,0.5280976630520469
+100,47,0.5823993794212787,2.0,1.1542346607648601,0.0005665466862991617,0.03098629751943708,0.7933712808131212,0,1.0,0.5413312647375956
+100,48,0.6082863875177686,2.0,1.1550658079751641,0.0005770003200694327,0.03111985672892939,0.7935109259929731,0,1.0,0.5276212917258951
+100,49,0.5999333083322316,2.0,1.1492072415521946,0.0005723212829226261,0.030807174003541653,0.7925478026990153,0,1.0,0.4997776944407717
+101,0,0.16878505370900618,2.0,1.3856623637634566,0.0006998292332079557,0.03639663280781919,0.8287880261523235,0,0.1610779633189845,0.21451289460470785
+101,1,0.20096455638020147,1.95,1.385562322677946,0.000699793682369459,0.036702278895473395,0.8178669058229648,0,0.23741545815714238,0.21999457705781506
+101,2,0.22616599431922627,1.95,1.372684774227993,0.0006948148963654541,0.036385902770778036,0.8159393050445576,0,0.3062944901833845,0.21216066081957488
+101,3,0.18248643315471347,1.95,1.3718876929938906,0.0006945027641540179,0.036546546397403,0.8158194735594135,0,0.29520782913185517,0.21467767167323798
+101,4,0.2692590549826428,1.9,1.3727838466599431,0.0006937980973894034,0.036327763240960965,0.8044230560711803,0,0.3958996401070951,0.20299732979934906
+101,5,0.22801189596126545,1.9,1.3740925953132115,0.0006968788744800051,0.0362661971390385,0.804629843622706,0,0.40929271534753514,0.21431603274083796
+101,6,0.241003022741377,1.8499999999999999,1.3412343450964566,0.0007137807096271612,0.03567828235402817,0.7871216452252824,0,0.4301746026551236,0.22977727226442515
+101,7,0.32413279810780893,1.9,1.3466861337743639,0.000709447695209367,0.036097979126931634,0.8002895495246533,0,0.5251429483581268,0.21358539588186062
+101,8,0.28040220658660014,1.9,1.348693875378021,0.0007171228690292799,0.036452840550572206,0.8006126961699344,0,0.5390086174017724,0.21599586541963725
+101,9,0.3527511416424764,1.8499999999999999,1.3540428797861688,0.0007127287325823677,0.036458144800303065,0.7892596150833567,0,0.6178982512568623,0.21863947046577173
+101,10,0.3839512321307095,1.9,1.037773244853695,0.0007320439064029054,0.03132594381606198,0.7463496284945752,0,0.6926921529828809,0.22291456979185703
+101,11,0.41069668756829114,1.95,1.054595822088147,0.0007900059555241805,0.03233354739394692,0.7633574874830527,0,0.7621870603994612,0.2194062113616888
+101,12,0.4389883123666759,2.0,1.0680817717936366,0.0008408752730124861,0.033014990297424544,0.7789853967814251,0,0.8265078822838933,0.22795053151039527
+101,13,0.4110179924837671,2.0,1.371170105501762,0.0006902492632547728,0.036162361970301635,0.826719043453729,0,0.8443496899696601,0.24426038831967678
+101,14,0.447930000832388,1.95,1.3708859814643581,0.0006906639093808114,0.036261881554629886,0.815667756338184,0,0.8697759375293888,0.2667320860687747
+101,15,0.4905191510014922,1.95,1.3708695505787964,0.0006915329863414998,0.03644006060270862,0.8156655472189103,0,0.9321747913953274,0.2588307814778707
+101,16,0.5158578249914617,1.95,1.3697872523185617,0.0006903491541498545,0.036165908248606236,0.8155024061471592,0,1.0,0.2528594166382055
+101,17,0.5148933707177366,1.95,1.3685395494927586,0.00068911405047394,0.03596879823351388,0.8153142331261871,0,1.0,0.21631123572578842
+101,18,0.49102615639798564,2.0,1.3727666097853033,0.0006908777008568967,0.03610654272352366,0.8269478107263734,0,1.0,0.236753854659952
+101,19,0.5194943991043567,1.95,1.3733854622223376,0.000691861168368846,0.03623557035583342,0.8160436259188691,0,1.0,0.23164799701452213
+101,20,0.46948827236328416,1.95,1.3763976728234169,0.0006932522342281384,0.03649915662709741,0.8164957946536875,0,0.9962186276464843,0.23666940434896816
+101,21,0.5145817937209161,1.9,1.3763524286654483,0.0006935194282432607,0.036453077965289286,0.8049837916116062,0,1.0,0.21527264573638683
+101,22,0.5097095436252297,1.9,1.3787270005646104,0.0006948495062533479,0.03628744596220453,0.8053567105685193,0,1.0,0.19903181208409895
+101,23,0.4619963133040554,1.95,1.2624072745214074,0.0007987168821152659,0.03533433925065629,0.7988311044698961,0,1.0,0.2066543776801846
+101,24,0.4667554581115032,1.9,1.3772264834496992,0.0006939833670963879,0.03635253262188838,0.80512111401179,0,0.9930580235863395,0.2317741622565579
+101,25,0.5113191631717301,1.95,1.376760628541551,0.0006939627711963204,0.03651378210485211,0.8165503830826095,0,1.0,0.23773054390576687
+101,26,0.5129774320801723,1.95,1.3760410603039466,0.0006932637143394794,0.03652032861900502,0.8164423606631768,0,1.0,0.24325810693390745
+101,27,0.5000550580214571,2.0,1.374991525602185,0.0006923654547182103,0.03639660416429261,0.8272664012074967,0,1.0,0.26685019340485683
+101,28,0.48020212758162184,2.0,1.375675543875868,0.000693223432596517,0.036441622588980295,0.827364368378358,0,1.0,0.2673404252720728
+101,29,0.48904301234285447,2.0,1.3754339669792224,0.0006935660109950419,0.03638813286109514,0.8273299584786109,0,1.0,0.2968100411428481
+101,30,0.5129808833149694,2.0,1.37501826860241,0.0006938114894327075,0.03613405874518848,0.8272706359201618,0,1.0,0.3099362777165646
+101,31,0.4965432144507529,2.0,1.375262233802608,0.000694893452925383,0.03630515631647279,0.8273058034456942,0,1.0,0.321810714835843
+101,32,0.5347936933943493,2.0,1.3747901607397397,0.0006952712242139086,0.03641943044457997,0.8272384554940031,0,1.0,0.31597897798116437
+101,33,0.5312345031138189,2.0,1.373936608477493,0.0006941824957966583,0.036476636570429086,0.8271161246384205,0,1.0,0.30411501037939637
+101,34,0.5206214261655158,2.0,1.3729946314447485,0.0006930424702791041,0.03642880528889152,0.8269810588486919,0,1.0,0.3354047538850523
+101,35,0.5455537765660612,2.0,1.3731672746708865,0.0006941823373834607,0.03632140692657142,0.8270060859868209,0,1.0,0.3518459218868706
+101,36,0.54296174108527,2.0,1.3721630842455783,0.0006929702162277434,0.03611902047382035,0.8268620252181181,0,1.0,0.30987247028423315
+101,37,0.5135448355340498,2.0,1.375886981267907,0.0006939231770178322,0.036237857654919256,0.8273947662990162,0,1.0,0.3118161184468326
+101,38,0.4974999498638818,1.95,1.3759387937775605,0.0006947164756498416,0.03644756626565511,0.816427469534424,0,1.0,0.3249998328796058
+101,39,0.4995632602333548,2.0,1.3753976238711014,0.0006951426471979332,0.03637830787420272,0.8273252170898577,0,1.0,0.3318775341111826
+101,40,0.5308018583404144,2.0,1.3752304333176943,0.0006957217193655748,0.03646405487169524,0.8273014967093139,0,1.0,0.369339527801381
+101,41,0.556721198272253,2.0,1.3751858939877502,0.0006967797570204511,0.03644068191136022,0.8272954354565141,0,1.0,0.3557373275741764
+101,42,0.550293857817757,2.0,1.3783740548959051,0.0006970157806808656,0.03636147297014007,0.8277505446437975,0,1.0,0.3343128593925231
+101,43,0.5264257422327212,2.0,1.38078627155703,0.0006974669408278173,0.03640770950608917,0.8280943340655841,0,1.0,0.35475247410907046
+101,44,0.5463087798022402,1.95,1.3806997871148956,0.0006979740965821716,0.036601711894571086,0.8171409158421855,0,1.0,0.3543625993408007
+101,45,0.5307198154019569,2.0,1.3799345616156924,0.0006970782820534358,0.036548345534669936,0.8279729450576055,0,1.0,0.3690660513398561
+101,46,0.5393427787930855,2.0,1.3798776440141864,0.0006976355351918635,0.036516942142668596,0.827964996668172,0,1.0,0.39780926264361804
+101,47,0.5639586750694455,2.0,1.3795294395231152,0.000698037372832248,0.03657256208564811,0.8279155076188817,0,1.0,0.3798622502314849
+101,48,0.5437213435540323,2.0,1.381680757369504,0.0006982987160293402,0.0365267277909798,0.8282218671027366,0,1.0,0.41240447851344114
+101,49,0.5494441619579352,2.0,1.2310710464615502,0.0006294627796185632,0.032677533221761604,0.8057034226725558,0,1.0,0.4314805398597839
+102,0,0.12650243161162386,2.0,1.3834324458460996,0.0006993455111954184,0.036316174393159054,0.8284712347820163,0,0.1141901422152813,0.2027545824183712
+102,1,0.18733940326664256,1.95,1.3834453364646462,0.0006990467535244985,0.03662381199269397,0.817551123168295,0,0.21096579865850718,0.17651027934413235
+102,2,0.14232471187069845,1.95,1.3836181160382521,0.0006988432885330363,0.03662957221482936,0.8175768330858237,0,0.2216563315782279,0.17887393079802427
+102,3,0.22758417396759845,1.9,1.3842470140005287,0.0006990268657244316,0.03639216233675226,0.8062218598365369,0,0.3152617676155335,0.17159822307128356
+102,4,0.1796322542317916,1.9,1.3842839221594676,0.0006992422142307166,0.036714852983733934,0.806227693151069,0,0.31337815555108833,0.18093664003785428
+102,5,0.25845258073011695,1.8499999999999999,1.384833391125693,0.0006993923203873451,0.03659587760554821,0.7943310008504423,0,0.4116452957775677,0.1459815413969663
+102,6,0.28779166331267986,1.8499999999999999,1.3788859886088247,0.0007090773856347181,0.036684530446293426,0.7933608526976842,0,0.5073564314981769,0.1161636357113636
+102,7,0.2764016262260349,1.8499999999999999,1.3801672825270526,0.0007074680720242724,0.03673114010397953,0.7935703010484602,0,0.551901578042801,0.11880331669638158
+102,8,0.3215351065371966,1.9,1.37961595328984,0.0007078172114605633,0.03628073861012516,0.8055000858791723,0,0.6082987167392059,0.127385399471714
+102,9,0.31954635263811154,1.9,1.3472806070539713,0.0006784317765662556,0.03525809460920605,0.8003746340040073,0,0.6300641761760923,0.15840227389224862
+102,10,0.3421616449427388,1.95,1.346019683208132,0.0006771424358255158,0.035585522081365985,0.8118954985105169,0,0.6740569663323542,0.17512952803265708
+102,11,0.39505214408790773,1.95,1.3455802021714414,0.000676224602720914,0.035829838107965487,0.8118280908177314,0,0.7523803673104078,0.18033332387914858
+102,12,0.3840364108702693,1.95,1.3475998006208816,0.000679493271646361,0.036017905716528416,0.8121374143505773,0,0.7584801063495032,0.20214789443489312
+102,13,0.3766918372872894,2.0,1.0776866835891181,0.0009577968156590198,0.03526939420448581,0.7806746567289033,0,0.7763761091385049,0.2204713121062913
+102,14,0.45715535589348444,2.0,1.1081012238447332,0.0009350582395473526,0.03555289087630366,0.7858301596264772,0,0.8661577574692669,0.20230750968592562
+102,15,0.4412324394317934,2.0,1.3819587040002999,0.0006972180418179657,0.036531915104694716,0.8282610996352875,0,0.8864793897891724,0.2221356117204147
+102,16,0.5042435826497306,2.0,1.3820954618341499,0.0006975281887746815,0.03651706985816571,0.8282806400578294,0,0.9852272710354836,0.20050891411845687
+102,17,0.5054986459027581,2.0,1.3834222776801526,0.0006981913565860904,0.03666969432884068,0.8284694617846866,0,1.0,0.1849954863425268
+102,18,0.49871927603076344,2.0,1.2601845880198383,0.0008120077364483589,0.03556045436052885,0.8102766237713417,0,1.0,0.19573092010254486
+102,19,0.4600160949352368,2.0,1.261787274152229,0.0008027212584942589,0.03552822401101417,0.8105200272949348,0,1.0,0.2000536497841227
+102,20,0.48158089288572076,1.95,1.3814091858610875,0.0006972613250321966,0.0365979788684241,0.8172466786078699,0,1.0,0.20526964295240235
+102,21,0.4643252549593794,1.95,1.3812279731576904,0.0006975689111914198,0.036465304229708354,0.8172197040003946,0,1.0,0.2144175165312645
+102,22,0.48721591479236903,2.0,1.3810534995686372,0.0006979189239326028,0.03661848801963364,0.8281325003962808,0,1.0,0.22405304930789666
+102,23,0.5045398856642208,2.0,1.3810283915556039,0.000698395755038066,0.03661340671607307,0.8281290625029326,0,1.0,0.2151329522140691
+102,24,0.5104647368995633,2.0,1.3805260265685035,0.0006976886846533593,0.03635504743296809,0.8280573471021433,0,1.0,0.20154912299854405
+102,25,0.5026685966255927,2.0,1.3823521654543125,0.0006980672159822861,0.03651616420530647,0.8283173017122328,0,1.0,0.208895322085309
+102,26,0.5087913380942006,2.0,1.3818247093386753,0.0006975003993796634,0.036630238302490584,0.8282421191078695,0,1.0,0.19597112698066854
+102,27,0.482390773338384,2.0,1.2522776330655319,0.0008155315342323686,0.036090658101274944,0.8090592057699661,0,1.0,0.2079692444612799
+102,28,0.4869009362747966,1.95,1.3798749780449389,0.0006969078789120351,0.03646082053212827,0.8170173204799903,0,1.0,0.22300312091598856
+102,29,0.5118950151366619,2.0,1.3794918661069993,0.0006972597916126175,0.03626246412988725,0.8279099328432091,0,1.0,0.20631671712220617
+102,30,0.466958433148578,2.0,1.3816831395897375,0.0006977275156439195,0.036401262248008465,0.828222043492283,0,1.0,0.22319477716192665
+102,31,0.47092809404770974,1.95,1.3816093804865486,0.0006981465285511644,0.036491139864947994,0.8172768410706931,0,1.0,0.23642698015903238
+102,32,0.4726330103260425,2.0,1.3812989073524724,0.0006984426647714313,0.03652964771753673,0.8281675753064065,0,0.9975601515339838,0.24536316570816327
+102,33,0.5006919810498146,2.0,1.3811423300870533,0.0006987950606295993,0.036495448845869596,0.828145392576884,0,1.0,0.2689732701660488
+102,34,0.5073279340988198,2.0,1.3809968626800975,0.0006993536754368941,0.03646951468205186,0.828124847599707,0,1.0,0.29109311366273277
+102,35,0.4907324113195833,2.0,1.3807505794391937,0.0006998470266063907,0.03663564413483817,0.828089930731277,0,1.0,0.3024413710652775
+102,36,0.5139587730257061,2.0,1.380475091466598,0.0007003359931773644,0.03647680267164647,0.8280508487866871,0,1.0,0.31319591008568726
+102,37,0.5386011789587041,2.0,1.3801873703598844,0.0007008502351108517,0.036476716950157986,0.8280100248948051,0,1.0,0.32867059652901365
+102,38,0.5243874578262488,2.0,1.3798390916472203,0.0006999409249393684,0.03662612726412414,0.827960162009902,0,1.0,0.3479581927541625
+102,39,0.53192830179648,2.0,1.379485862387788,0.0007004368559439162,0.036457473340818905,0.8279099827678167,0,1.0,0.3730943393215998
+102,40,0.5515878072090213,2.0,1.3790657020905246,0.0007008907329886955,0.03646529919965418,0.8278502415314392,1,1.0,0.3719593573634043
+102,41,0.5269766660723596,2.0,1.34435943352808,0.0006792772525271225,0.03563657477809217,0.822841384269398,1,0.9864245891902212,0.3746894346542369
+102,42,0.5312127979149476,1.95,1.3486706995479487,0.000686563981198015,0.035979083407431986,0.8123029031464416,1,1.0,0.37070932638315846
+102,43,0.5793629970563161,2.0,1.3508611165224294,0.0006934343120303194,0.03575888973454815,0.823791278517682,1,1.0,0.4312099901877202
+102,44,0.5243627125169165,2.0,1.3650207145383835,0.0007139982406525671,0.03652174514766832,0.8258431753878418,1,1.0,0.3812090417230549
+102,45,0.5398137838028284,1.95,1.3347708400377365,0.0006888335807447291,0.035347565601618544,0.8101751274292149,1,1.0,0.3993792793427612
+102,46,0.5893262633838838,2.0,1.3369824219762263,0.0006992201291534708,0.03601256872854827,0.8217692915111556,1,1.0,0.4644208779462794
+102,47,0.5863933010046423,2.0,1.37144258415277,0.00071298291168957,0.03668897796574536,0.8267645859632093,1,1.0,0.487977670015474
+102,48,0.5482145901011848,2.0,1.3709100456166505,0.0007165290673628683,0.0364756879279435,0.8266893160554925,1,1.0,0.46071530033728253
+102,49,0.5380054302645841,1.95,1.3692656960665297,0.0007172242743901094,0.036292157726232295,0.8154320104931885,1,1.0,0.4266847675486138
+103,0,0.17172337104951915,2.0,1.3835523791729332,0.0006993894555331661,0.03634759595102321,0.8284882899222377,0,0.17166981766329154,0.2101848132806751
+103,1,0.1376106366082969,1.95,1.38337300182009,0.0006993456696742085,0.03662623841514685,0.8175404225695,0,0.1763644097048691,0.22354957575449746
+103,2,0.17567458825516866,1.9,1.383738291683882,0.0006992050037436743,0.036653548210592746,0.8061424263751039,0,0.19975871223199848,0.25257034454123084
+103,3,0.2178937182011478,1.9,1.383669258450246,0.000698914929658979,0.03652093542241812,0.806131547185681,0,0.2498338642296971,0.2598672416975632
+103,4,0.24152335932098307,1.9,1.3750689195189074,0.0006938270767127444,0.03635225476579603,0.8047823178644258,0,0.31699021144647394,0.24909091580797832
+103,5,0.21034416848383586,1.9,1.3743888548463183,0.0006935625423063967,0.0361796023439837,0.8046753691401692,0,0.32208799078374517,0.2716965739011259
+103,6,0.30033668116091516,1.8499999999999999,1.3741647686239913,0.0006929182299184719,0.03615619010000783,0.7925804736627843,0,0.43822580433994623,0.25015453141645555
+103,7,0.31608273925609637,1.8499999999999999,1.3252699140720956,0.0007050308079495629,0.035826044024773025,0.7844314067511768,0,0.5101043650824846,0.24013664407700852
+103,8,0.30331660438581554,1.9,1.3229068316068047,0.0007040346264735749,0.036076444142929404,0.7964600872557905,0,0.5246841384259381,0.24480983005146767
+103,9,0.3101543962624124,1.95,1.3294992617995083,0.0006998772473692944,0.036030993017953615,0.8093664861018817,0,0.5344537483489481,0.25457632307611056
+103,10,0.3227892643134618,2.0,1.3344433134149,0.0006964742324799091,0.03585480328296268,0.8213962926332659,0,0.548422184665265,0.2780679681578524
+103,11,0.3416638140909686,2.0,1.3380539414783932,0.0006934738250910012,0.03563823843465776,0.8219244948926623,0,0.5793097570976165,0.29979970417307333
+103,12,0.4057666040414642,2.0,1.3394365283239302,0.0006906458144490254,0.03554538883280485,0.822125939523216,0,0.6829580269590808,0.2752779775261062
+103,13,0.42260232357311817,2.0,1.0589731420724098,0.0008823216543269527,0.03376659822306889,0.7774275492267188,0,0.7540593181387022,0.26992865439212416
+103,14,0.4627655099997386,2.0,1.0625475392695516,0.0009231776288893412,0.03483819576631401,0.7780595385178121,0,0.8567918778745666,0.23349586283303997
+103,15,0.4533424973105915,2.0,1.3723863108685905,0.0007182666849104334,0.0363052611984711,0.826901222051066,0,0.8896842609133818,0.2582293098174624
+103,16,0.5084184035542708,2.0,1.3715508399671452,0.0007190220522649062,0.0365816202263663,0.8267818201249688,0,0.9658087678738275,0.27364965468246616
+103,17,0.5203719293438542,2.0,1.3741956124246109,0.0007159265409375878,0.0367824426588147,0.8271593752197354,0,1.0,0.26790643114618057
+103,18,0.5254204602614335,2.0,1.3761498128656073,0.0007131983184996791,0.03655656497828298,0.8274378032023657,0,1.0,0.28473486753811167
+103,19,0.5074950688727002,2.0,1.3775188880877245,0.0007108042024087133,0.03670076132878054,0.8276325152058833,0,1.0,0.29165022957566733
+103,20,0.510957668280683,2.0,1.376670607225382,0.0007114443361836719,0.03671817173174662,0.8275116511639617,0,1.0,0.3031922276022766
+103,21,0.5299851475944659,2.0,1.3757301802286015,0.0007120369824105174,0.03633325348952504,0.8273775462063758,0,1.0,0.29995049198155294
+103,22,0.5225851479144232,2.0,1.3768187494971613,0.0007096329413750542,0.03655333102111716,0.8275322783375144,0,1.0,0.34195049304807734
+103,23,0.5441326992116448,2.0,1.375832489629599,0.0007101436602917653,0.03672147005301528,0.8273916171610387,0,1.0,0.31377566403881557
+103,24,0.49628420826519337,2.0,1.3782438600024398,0.0007080348248594986,0.03654958667772974,0.8277351231452453,0,1.0,0.3209473608839778
+103,25,0.5431046006169615,1.95,1.3778415642182917,0.0007097465997185813,0.03666871312350696,0.8167169727866801,0,1.0,0.310348668723205
+103,26,0.5195486237177303,1.95,1.3794750375521658,0.0007079600481384252,0.036364606596481705,0.8169608272017967,0,1.0,0.3318287457257676
+103,27,0.5405566135678759,1.9,1.3785820788489382,0.0007084518319302902,0.036594643093917564,0.8053382568984796,0,1.0,0.3351887118929196
+103,28,0.5247113503891304,1.9,1.3795500162039658,0.0007066823753149525,0.03654559201246743,0.805489399724336,0,1.0,0.34903783463043475
+103,29,0.5293503991010323,1.95,1.3785993137167243,0.0007070704037476529,0.03670301970518948,0.8168295725422848,0,1.0,0.3645013303367742
+103,30,0.5348816494327298,2.0,1.377762799843242,0.0007072632052410497,0.03666387645177983,0.8276662979922557,0,1.0,0.38293883144243235
+103,31,0.5428203561742838,2.0,1.376862746406477,0.0007073999817408755,0.03657597803821209,0.8275379202304072,0,1.0,0.4094011872476126
+103,32,0.5502184604964566,2.0,1.2519495885509118,0.0006131322890123678,0.03314272853432495,0.808945968776159,0,1.0,0.43406153498818884
+103,33,0.5555664159425763,2.0,1.2514160003269317,0.0006172602339475487,0.03331039532068805,0.808864764231657,0,1.0,0.4518880531419209
+103,34,0.5386580818110338,2.0,1.2500894642631013,0.0006206964242074968,0.03315835234023172,0.8086606576875691,0,1.0,0.4621936060367793
+103,35,0.5656248332699294,2.0,1.2625565216327788,0.0006261358554643034,0.03346144609811265,0.8105839189767229,0,1.0,0.4854161108997645
+103,36,0.5742415796212046,2.0,1.2607904402627244,0.0006290602274074616,0.033358325159537475,0.8103135092691792,0,1.0,0.5141385987373485
+103,37,0.5994253153697588,2.0,1.2585752739627467,0.0006314949127022984,0.03303463172821797,0.8099735413766388,0,1.0,0.4980843845658628
+103,38,0.5973642223574203,2.0,1.2547504657145818,0.0006283460654191428,0.03317523089057342,0.8093831709606801,0,1.0,0.4912140745247342
+103,39,0.5870936623303595,2.0,1.2507740582970694,0.0006251480342893003,0.0333633286129018,0.8087679385773476,0,1.0,0.45697887443453156
+103,40,0.5606791539883182,2.0,1.2467170360636473,0.0006218477322944575,0.03310842900148801,0.8081386603789655,0,1.0,0.4689305132943942
+103,41,0.5648363977885694,2.0,1.2446017188007938,0.0006247683783095225,0.033272536654055794,0.8078113723162612,0,1.0,0.48278799262856464
+103,42,0.584685133554107,2.0,1.242138601334787,0.0006271189807974273,0.03318862178626022,0.8074294090337173,0,1.0,0.4489504451803565
+103,43,0.556450142741547,2.0,1.238453051070342,0.0006242180478894772,0.0325564985143071,0.8068547997486037,0,1.0,0.45483380913848986
+103,44,0.5808306326445782,2.0,1.2358757621131415,0.0006263496261675337,0.03272941461875671,0.8064535024475162,0,1.0,0.4361021088152604
+103,45,0.5772180535155219,2.0,1.2322982144196954,0.0006236338084298942,0.03280158335023647,0.8058936344919001,0,1.0,0.4240601783850728
+103,46,0.57422943710703,2.0,1.2285949582813682,0.0006208146122670179,0.03276783134472557,0.8053127972065307,0,1.0,0.41409812369009963
+103,47,0.5487202469630748,2.0,1.2247645274460872,0.0006179036306403267,0.032893073862241815,0.8047106292250079,0,1.0,0.42906748987691584
+103,48,0.555205229305111,2.0,1.2222794513607007,0.0006205559970359221,0.03280617179333128,0.8043206351201844,0,1.0,0.45068409768370304
+103,49,0.5763287866864073,2.0,1.2195659915902224,0.0006226662166566624,0.03240095541264283,0.8038938791941251,0,1.0,0.4210959556213573
+104,0,0.18395260611907693,2.0,1.3805884804611228,0.0006980370374674643,0.036238325143520475,0.8280663381955576,0,0.20446398378615954,0.17389004201537708
+104,1,0.20189096483240096,1.95,1.3849288448641865,0.0006997708793471168,0.03668797307862355,0.8177725167705703,0,0.2745295618146146,0.17359713368851704
+104,2,0.24788011158860318,2.0,1.3847967955126472,0.0006998248646921974,0.03668435470763799,0.8286651671764336,0,0.37813844649215617,0.15541577663913578
+104,3,0.27009426779200435,2.0,1.3847863801916684,0.0007000326374438286,0.036347562937117245,0.8286637474115665,0,0.4651666399491456,0.1467587060411538
+104,4,0.30032840595570365,2.0,1.3821473267238724,0.0007032343542576424,0.03665456293597552,0.8282896399052246,0,0.5365397179421288,0.15237506259617375
+104,5,0.3428195389435111,2.0,1.3822719360012081,0.0007023087638739767,0.036722599795780866,0.8283070985838947,0,0.6372910279142544,0.1263437592593644
+104,6,0.3028491437121845,2.0,1.3150418809480193,0.0006484713349742253,0.03517685644654096,0.8185179867547188,0,0.6494365699392312,0.14358171912164025
+104,7,0.3660627307500783,1.95,1.3256384653848508,0.0006556151088128792,0.03531304291886955,0.8087563914106501,0,0.7073524978604044,0.14373910535305517
+104,8,0.4054183337153793,1.95,1.3281076743155893,0.000657202394659721,0.034673257516513185,0.8091385018238861,0,0.8038161852416177,0.11297286539577409
+104,9,0.36212538540346906,2.0,1.2426605876727956,0.0008365990244713603,0.036208498977056955,0.8075756717987652,0,0.8075108482018449,0.13040348707577007
+104,10,0.4055808024877393,2.0,1.2440371336161353,0.0008356939347974129,0.03608552315193546,0.8077892115698606,0,0.8439409137876095,0.16001478990898493
+104,11,0.4510194324107704,2.0,1.2428682802848192,0.0008378469051976022,0.035721253456745164,0.8076083323731738,0,0.9156040385188976,0.14925939001070457
+104,12,0.4524311455629004,2.0,1.2455949551976575,0.000827083998344216,0.035540972181114926,0.8080283009097303,0,0.9484152635375915,0.17688346715954603
+104,13,0.49519961158283826,2.0,1.244348266586746,0.000829337602896767,0.03557874866153527,0.8078355417821047,0,1.0,0.18399870527612747
+104,14,0.4514737614361071,2.0,1.2465257677614348,0.0008188490308153219,0.03583102349077129,0.8081700924824426,0,0.9907509397269937,0.18391128515103225
+104,15,0.5009351856388647,2.0,1.2453192635057615,0.0008214601917115171,0.03610772061466091,0.8079837873621876,0,1.0,0.20311728546288255
+104,16,0.5074750017416341,2.0,1.382403965924393,0.0007047794698034523,0.03663339858563601,0.8283265770108902,0,1.0,0.19158333913878012
+104,17,0.48871990107555807,2.0,1.2485280121518065,0.0007932012963789909,0.035253410946394545,0.8084723685918078,0,1.0,0.22906633691852682
+104,18,0.5061238640778253,2.0,1.380490756993317,0.0007062869645812435,0.03650709301370922,0.8280547738802962,0,1.0,0.22041288025941766
+104,19,0.4890804970003091,2.0,1.3807793308041654,0.0007048565177374558,0.03665807682637859,0.8280954498912901,0,1.0,0.2302683233343634
+104,20,0.4970924177857805,2.0,1.3802339134108146,0.0007053319523790627,0.03669456673273102,0.8280179293974879,0,1.0,0.2569747259526015
+104,21,0.48151284782565035,2.0,1.3796019934030235,0.0007057948717676919,0.036390893441074455,0.8279280545545916,0,1.0,0.27170949275216777
+104,22,0.5090586412849568,2.0,1.3792117259165628,0.0007069385866092929,0.036565475625519005,0.8278727746451005,0,1.0,0.2968621376165228
+104,23,0.49764483655314584,2.0,1.378523878068333,0.0007074907102933585,0.03673166121136987,0.8277748920282034,1,1.0,0.3254827885104861
+104,24,0.49597626050904053,2.0,1.3203924598373349,0.0006935124022644841,0.03579163738715573,0.8193247766610581,1,1.0,0.2865875350301351
+104,25,0.5053349306363741,2.0,1.3306459946904319,0.0006893739823141454,0.035807253288866865,0.8208364407589982,1,1.0,0.28444976878791356
+104,26,0.557175563612596,2.0,1.3342118726778263,0.0007014580362546786,0.03548739113539044,0.8213637992328026,1,1.0,0.35725187870865305
+104,27,0.5296141291521215,2.0,1.3303921321427215,0.000700246135280454,0.03538606231461457,0.8208023019847017,1,1.0,0.3653804305070714
+104,28,0.5308135940801736,1.95,1.3329475225872307,0.0007124406671115783,0.03562943875970537,0.8099018275468699,1,1.0,0.3693786469339119
+104,29,0.563432062427283,2.0,1.3330207860454943,0.0007240945658815883,0.036342523117456484,0.8211956174727678,1,1.0,0.4114402080909434
+104,30,0.5260742417994323,2.0,1.3802032900686516,0.000705896534118928,0.03642510584409238,0.828013729260813,1,1.0,0.386914139331441
+104,31,0.587353093893263,1.95,1.3384469351626513,0.0007124382218894177,0.036066176880729856,0.8107470783971678,1,1.0,0.4578436463108765
+104,32,0.5351822815068553,1.95,1.3802107644086612,0.0007044848750945859,0.036552946304944135,0.8170697802328186,1,1.0,0.4172742716895176
+104,33,0.5490922367046425,1.9,1.3799909074662307,0.0007063549807561846,0.03670812887024864,0.8055583650376934,1,1.0,0.4303074556821414
+104,34,0.5489396757849461,1.95,1.380494476367502,0.0007046967005365979,0.03643144023530107,0.8171122452342393,1,1.0,0.4297989192831535
+104,35,0.5724784452795504,2.0,1.3808929606028642,0.0007029789601550956,0.03641140285723665,0.8281110903595569,1,1.0,0.44159481759850133
+104,36,0.6042283954342892,2.0,1.3800759298501404,0.0007032823589359287,0.03641454720786363,0.827994846900175,1,1.0,0.5140946514476306
+104,37,0.600425790774976,2.0,1.3820313170619194,0.000702213237828896,0.03648194304047785,0.8282728492160757,1,1.0,0.5347526359165865
+104,38,0.5788418202470715,2.0,1.3809719783621566,0.0007024410666557743,0.03671920961375028,0.8281221845787534,1,1.0,0.5294727341569051
+104,39,0.6327477704258536,1.95,1.3811829372009576,0.0007010268577221657,0.03653348598586011,0.8172140098743726,1,1.0,0.6091592347528452
+104,40,0.5792851819324246,1.95,1.3804553165105549,0.0006989840648628464,0.036494641162184385,0.8171046856803115,0,1.0,0.5642839397747486
+104,41,0.5940871640495433,1.9,1.2548458956141069,0.0006460046204240563,0.03355204961955775,0.7851842812387861,0,1.0,0.5802905468318108
+104,42,0.5743171745921316,2.0,1.2474616608396025,0.000642909953064679,0.03337284893011258,0.8082606167185187,0,1.0,0.5810572486404387
+104,43,0.5952064579935004,2.0,1.2645921575396124,0.0006598718087392527,0.03396857057132509,0.8109066142637457,0,1.0,0.5840215266450011
+104,44,0.6155326237579686,2.0,1.2603785099770408,0.0006581179156103169,0.03376285235092352,0.8102591199914301,0,1.0,0.5851087458598951
+104,45,0.6000870997332275,2.0,1.277820159438913,0.0006548217882981651,0.03399075415870505,0.8129250843442395,0,1.0,0.6002903324440916
+104,46,0.5883865170832496,2.0,1.3508914034266704,0.0006840282857348155,0.036019482138535494,0.82379294419187,0,1.0,0.6279550569441652
+104,47,0.6275753257304599,2.0,1.3491938007484126,0.000684354853963021,0.03557679924196315,0.8235464828092809,0,1.0,0.6252510857681998
+104,48,0.6141503083534545,2.0,1.3472816139959938,0.000681951720288894,0.03544273354116459,0.8232677370407109,0,1.0,0.6471676945115149
+104,49,0.5963265723848177,2.0,1.3494432950625825,0.0006863882548906987,0.03561596795738454,0.823583326697916,0,1.0,0.654421907949392
+105,0,0.19384757625401355,2.0,1.3764086890098925,0.0007015879329027757,0.036256465816983705,0.827471448537145,1,0.15921542428944147,0.26720468846078993
+105,1,0.2069106050518019,1.95,1.3761794855625133,0.0007018228459845185,0.03651147985534525,0.8164656699263392,1,0.20385260059522675,0.2845652160457039
+105,2,0.2655159257459864,2.0,1.3853624583651811,0.0006995379656815333,0.03669313151312904,0.8287453831725202,1,0.26461679733561544,0.36556402270580085
+105,3,0.24592975156286292,2.0,1.385337279381672,0.0006995744664609878,0.036467634455324374,0.8287418199396409,1,0.28813612906749353,0.36891766645288504
+105,4,0.3097664900632748,2.0,1.3853334843075604,0.0006996611711845922,0.03668636050470311,0.8287413059204518,1,0.32325529340597914,0.434881242336277
+105,5,0.2827088861853737,2.0,1.3841026174674471,0.0006994176223547451,0.03668299205372236,0.8285664701471696,1,0.3696387536901894,0.4161779490309931
+105,6,0.365634116843982,1.95,1.3838748009814614,0.0006990991281736372,0.03632755367238989,0.8176151895313797,1,0.42728324720868166,0.482402726535031
+105,7,0.3275102741773088,1.95,1.3832339935197309,0.0006984284959620069,0.036647773099831714,0.8175194124025353,1,0.4640554405464324,0.4396269931957863
+105,8,0.3506470415935262,1.9,1.3826946374975417,0.0006982243667776541,0.03656614295914318,0.8059789686123718,1,0.486228900692103,0.45385160438895006
+105,9,0.4132095838135402,1.9,1.3825183470542666,0.0006978236398280698,0.0365370975494699,0.8059512740350566,1,0.5257755569687261,0.5096645367534993
+105,10,0.4518241216439828,1.9,1.3830651804557692,0.0006979338261184504,0.03666156985825143,0.8060368155440215,1,0.5739007458854838,0.5742127442992976
+105,11,0.4384725019780462,1.9,1.3833252122587818,0.0006981047058834495,0.036364660652247985,0.8060775194852173,1,0.6049904985892601,0.5882543418078072
+105,12,0.44879811467101827,1.95,1.3781970117028859,0.0006968630943247926,0.036434080528343085,0.8167663176224008,1,0.614986417492433,0.6093451589134834
+105,13,0.48672802796936354,2.0,1.331307055169643,0.0007265106780168958,0.0358730636541871,0.8209445563716634,1,0.6392588048028407,0.636748353494091
+105,14,0.502047029029787,2.0,1.3329614853023724,0.000736031154337412,0.03612271562056818,0.8211904154644479,1,0.6619188951495567,0.6575982365665478
+105,15,0.5179964113728432,2.0,1.332562039506977,0.0007450644461183828,0.0364679454164167,0.8211344081330864,1,0.6934290137409888,0.6687493529214923
+105,16,0.5139360411422044,2.0,1.3315893441653408,0.0007530618874302075,0.0365109846889136,0.8209938517889912,1,0.7151101691476127,0.692973244943864
+105,17,0.5752954274637567,2.0,1.3350061796047075,0.0007450341114783178,0.03632613414158299,0.8214930949540451,1,0.7394448785150602,0.7650582535257753
+105,18,0.554931096443819,2.0,1.345135300607944,0.0007367792117906982,0.03623137177926685,0.8229712122515512,1,0.7526970829981461,0.7795075441485353
+105,19,0.5649177874541839,1.95,1.3475320233418044,0.0007301924514491887,0.03613235232701639,0.8121425438728881,1,0.7662267587002581,0.7947569465802686
+105,20,0.633010059541854,2.0,1.3480756765291466,0.0007248878140471341,0.03627521088992701,0.8233957293402219,1,0.8192354482026577,0.8510529342026362
+105,21,0.608872653260018,2.0,1.374557741865281,0.0006922435354362332,0.03649327002145687,0.8272043712881872,1,0.8398657997107318,0.8430877779190844
+105,22,0.6250061955572195,1.95,1.3757785822393844,0.000692721407365281,0.036419257627841053,0.8164028587503529,1,0.8523207819985793,0.8802596091926258
+105,23,0.6963203541716301,2.0,1.3761144261345746,0.0006930671589284991,0.036158207055202715,0.8274270014241345,1,0.9014499811268739,0.9524678724029347
+105,24,0.6801788097911446,2.0,1.3762224357602602,0.0006935437573594926,0.03612640960131993,0.8274425598403117,1,0.9211945993592847,0.9723365668247692
+105,25,0.6773449864111107,2.0,1.3764454100026489,0.0006944921488655628,0.0363333445530889,0.8274746648692891,1,0.9599097627870973,0.9446036043209061
+105,26,0.6882882317274355,2.0,1.3749548690139606,0.0006929327002988794,0.036364030942416574,0.8272613251579459,1,0.9989665966144715,0.9290053102721563
+105,27,0.6787292946970211,2.0,1.3732094737323763,0.0006913338103864916,0.03648711567676193,0.8270113081579131,1,1.0,0.895764315656737
+105,28,0.6914074970400839,2.0,1.3712607537424666,0.0006896623809031717,0.03641094785833998,0.8267318607152659,1,1.0,0.9046916568002795
+105,29,0.7399943041530284,2.0,1.3714122032036726,0.0006903903984888319,0.03624483684207343,0.8267537627662759,1,1.0,0.9666476805100943
+105,30,0.7379638092780815,2.0,1.371537449875192,0.0006915603887244947,0.03605678070426325,0.8267720364930271,1,1.0,0.9932126975936048
+105,31,0.6975410692932451,2.0,1.37595842354474,0.0006932055104026904,0.036242307135467694,0.8274047639481914,1,1.0,0.9584702309774836
+105,32,0.7090411799438101,1.95,1.3741896143769823,0.0006917315854269072,0.03636037929467885,0.8161642728029646,1,1.0,0.9634705998127
+105,33,0.75,2.0,1.3739809389998439,0.0006921553067127825,0.0363559953596246,0.8271218838514311,1,1.0,1.0
+105,34,0.74,2.0,1.3743286230706966,0.0006932880934636122,0.036451794073285436,0.8271719178683861,1,1.0,1.0
+105,35,0.72,2.0,1.378127320433392,0.000694738141777868,0.03649620090595002,0.8277147129071166,1,1.0,1.0
+105,36,0.75,1.95,1.3780400249240194,0.0006952662421565904,0.03630018001163638,0.8167423439390756,1,1.0,1.0
+105,37,0.7162863975793561,1.95,1.3776961426276275,0.0006960292570863317,0.03643980703896874,0.8166910964520804,1,1.0,0.9876213252645202
+105,38,0.74,1.9,1.377352694158002,0.0006969054953486226,0.03653623545012687,0.8051418327469475,1,1.0,1.0
+105,39,0.7006008533021472,1.9,1.3804167661610174,0.0006973127179772821,0.03630344608426754,0.8056222284136183,1,1.0,0.9686695110071571
+105,40,0.75,1.8499999999999999,1.3793130852834767,0.0006960666055398913,0.03645722810720846,0.7934265969790206,1,1.0,1.0
+105,41,0.72,1.8499999999999999,1.378960073329147,0.0006967104236946252,0.036477881104865564,0.7933689431210096,1,1.0,1.0
+105,42,0.72,1.7999999999999998,1.3786290390830969,0.0006975325454855058,0.03654000367167579,0.780746874121316,1,1.0,1.0
+105,43,0.7002915235873053,1.8499999999999999,1.3777743973360859,0.0006982329132073647,0.036521806634774515,0.7931750016391674,1,1.0,0.967638411957684
+105,44,0.6940756286508734,1.9,1.3769925740725633,0.0006966453624207745,0.036414399149017854,0.8050852462103963,1,1.0,0.9469187621695776
+105,45,0.6829079284736727,1.95,1.376029331670849,0.0006951568183334483,0.0361162173415092,0.8164411703747428,1,1.0,0.9096930949122422
+105,46,0.7156713371136967,2.0,1.3749136912071172,0.0006936473520875498,0.03627844999160109,0.8272556450219459,1,1.0,0.9189044570456557
+105,47,0.7296218682997329,2.0,1.378681089966058,0.0006951381486703155,0.03653415905831288,0.8277937818532103,1,1.0,0.9654062276657762
+105,48,0.7330331383744755,2.0,1.3811791832146827,0.000696554165933436,0.036452224380428076,0.8281499996362689,1,1.0,0.9767771279149181
+105,49,0.6959383961738375,2.0,1.38282560684652,0.000698065485400239,0.036380778413058416,0.8283846177901607,1,1.0,0.9531279872461247
+106,0,0.16192600342252308,1.95,1.3755993155047226,0.0007001805045928,0.03622029246957462,0.8163782233930578,1,0.13837808062352963,0.22191590391037075
+106,1,0.18829178419775647,1.9,1.3751614744691696,0.0006997294277971966,0.036448518258054674,0.8047987130519364,1,0.17890105145405777,0.2557712120537779
+106,2,0.17264061882795195,1.9,1.3746625684035276,0.0006992275342483349,0.03636973124869886,0.8047201663749377,1,0.19079044900953918,0.25441479741378764
+106,3,0.17338170708598777,1.95,1.374526020018978,0.0006997910232035825,0.03651472941375984,0.8162171597402779,1,0.2374977169396802,0.22794206770038555
+106,4,0.2255562036214796,2.0,1.3853363957596732,0.0006995483383868731,0.03671733459888933,0.8287416871115227,1,0.26657288979204774,0.263090159015535
+106,5,0.21649615302602201,2.0,1.3852049232373522,0.0006994338318345936,0.03671327442910657,0.8287229940477521,1,0.2854356500402064,0.27440631003313165
+106,6,0.259374339054986,2.0,1.3851452696592053,0.0006994274879085288,0.036341184592592515,0.8287145247806526,1,0.3093117543500322,0.31883212438324376
+106,7,0.310682219935129,2.0,1.3849508186846142,0.0006992663043596158,0.036678182808185716,0.8286868755654833,1,0.366771534482468,0.37991202047380607
+106,8,0.3477214832204148,2.0,1.3849825436803598,0.0006993703367681686,0.03670454552828934,0.8286914088928587,1,0.4183175028258086,0.4346482736336378
+106,9,0.3288339905614297,2.0,1.3825207045172077,0.0006982274352875391,0.03648841847033613,0.8283413135106472,1,0.439861564276562,0.44296454950268305
+106,10,0.3336154990826725,2.0,1.3821844288610352,0.0006981938003172055,0.0365692215810706,0.8282934829616755,1,0.45695714958684397,0.43610879749311626
+106,11,0.37167176064441526,2.0,1.3817943617309214,0.0006981967351759927,0.03665583522066039,0.8282380000231464,1,0.4864148673407718,0.45701937902702194
+106,12,0.3878627639964618,2.0,1.3830026086930272,0.0006983775914050839,0.03644102834963634,0.8284098682670146,1,0.5045618176524596,0.4867934564515933
+106,13,0.3855446437962527,2.0,1.3838641650354306,0.0006986305590806057,0.03660115500457167,0.8285323731078675,1,0.5293439106090533,0.5126902651754378
+106,14,0.4249572652162794,2.0,1.3834339854983222,0.0006984610045465208,0.036650759598422074,0.8284712021882803,1,0.5562650989214566,0.5415040854923227
+106,15,0.4616937089601138,2.0,1.3840892410060754,0.000698664235888915,0.036367424598417034,0.8285643560615863,1,0.5886404784575436,0.5874583919236546
+106,16,0.4307864108577042,2.0,1.384654360388158,0.0006993187603897402,0.03663765244216209,0.8286447996774936,1,0.6259599883305599,0.5680080517516009
+106,17,0.4848605011938023,1.95,1.3788962176064676,0.0006968814684862612,0.03654758155566077,0.8168709424700779,1,0.6483548850869583,0.61839515719673
+106,18,0.47513258398850344,1.95,1.3670016777652023,0.0007122876107206985,0.03621731976835866,0.8150895382912047,1,0.6657557338091418,0.6294343015494892
+106,19,0.5465235346115593,2.0,1.3679228450341103,0.0007088995897331806,0.036454630569854304,0.8262587193585944,1,0.7233309736930198,0.6906371504478379
+106,20,0.5166300468378748,2.0,1.3727074874611276,0.0007061437797364794,0.03654581975672826,0.826943719288674,1,0.7561864801980864,0.6805181825288007
+106,21,0.5244826749950224,1.95,1.370976240375311,0.0007062849089781348,0.03653790691864126,0.8156860237692924,2,0.7919281110703408,0.6590381018896205
+106,22,0.5912884652149482,2.0,1.3855884129155718,0.0007005550646739292,0.036775375527692715,0.8287777383862991,2,0.8254444037501497,0.7037023457162939
+106,23,0.647810507215198,2.0,1.3757594209971742,0.0007056864961541253,0.036636507711246505,0.8273799084724617,2,0.8694114500468213,0.7334864239882314
+106,24,0.6157440805650265,2.0,1.3737098813221433,0.0007058009182859013,0.03658187901360655,0.8270870245962028,2,0.8973572843336035,0.7560038894386168
+106,25,0.6687717637591566,1.95,1.3749484119830933,0.0007032642058365072,0.03650257427080275,0.8162815546261316,2,0.9441905391733584,0.8036518269660436
+106,26,0.6174538702493442,1.95,1.3810059465489384,0.0007025365643470608,0.03641900785202716,0.8171880214391366,2,0.9801043177788155,0.7513738104593931
+106,27,0.6615292054225165,1.9,1.374921009617443,0.0007076503822300571,0.03646352877937799,0.8047634228782593,2,1.0,0.7717640180750549
+106,28,0.6920479231112249,1.9,1.375430637830918,0.000704998473074364,0.03652529157744158,0.8048426497732246,2,1.0,0.8068264103707493
+106,29,0.6274045145215794,1.9,1.3807378510753043,0.0007012868663725331,0.03662546071400481,0.805673748205622,2,1.0,0.7580150484052648
+106,30,0.6911179535745806,1.8499999999999999,1.375182749719707,0.000708690462937638,0.03655481235367507,0.7927529591853906,2,1.0,0.8037265119152683
+106,31,0.7289972940958799,1.8499999999999999,1.380273052940238,0.0007001032400562472,0.036662116887607794,0.7935852146247844,2,1.0,0.8299909803195996
+106,32,0.6840064373149464,1.8499999999999999,1.3791439818397184,0.0007004789769017254,0.03643887800913163,0.7934003259310674,2,1.0,0.8466881243831546
+106,33,0.7213301872300739,1.7999999999999998,1.3817014200121949,0.0006999985952305454,0.03655070322284932,0.7812731971057777,2,1.0,0.9044339574335795
+106,34,0.7590040133610904,1.7999999999999998,1.3816375317193887,0.0007016691891704155,0.03645044034872365,0.7812628503140189,2,1.0,0.9300133778703012
+106,35,0.7157302638441438,1.7999999999999998,1.380412336899522,0.0007021401799338341,0.03667676294400714,0.781053564227542,2,1.0,0.9524342128138126
+106,36,0.7229656083069156,1.7499999999999998,1.3826162839701222,0.0007012756763063927,0.036557587842996696,0.7683501937729423,2,1.0,0.9765520276897186
+106,37,0.75,1.7999999999999998,1.3839551758879058,0.0007006096136792886,0.03660764191423689,0.7816582954651006,2,1.0,1.0
+106,38,0.7799999999999999,1.7999999999999998,1.3840596326779082,0.0007019850479718108,0.036726129054597725,0.7816765918940985,2,1.0,1.0
+106,39,0.73,1.7999999999999998,1.382927626638446,0.0007023998188312201,0.03632212212772732,0.7814834857306903,2,1.0,1.0
+106,40,0.75,1.7499999999999998,1.3840150037287915,0.0007013427615237032,0.03671459205922463,0.7685990797606951,2,1.0,1.0
+106,41,0.75,1.7499999999999998,1.3838369189508235,0.0007028653134928138,0.03674581010468971,0.7685679466973204,2,1.0,1.0
+106,42,0.73,1.7999999999999998,1.3833261629537659,0.0007041824278002118,0.03665164095364601,0.7815521436502562,2,1.0,1.0
+106,43,0.7799999999999999,1.7499999999999998,1.3841680189645034,0.0007027380855330947,0.03677307336884541,0.7686267893839103,2,1.0,1.0
+106,44,0.7799999999999999,1.7499999999999998,1.3832043689888704,0.0007035455052164764,0.036772599998454024,0.7684556571816646,2,1.0,1.0
+106,45,0.75,1.7999999999999998,1.381969385908084,0.000704206749520253,0.03651111879422356,0.7813204231145887,2,1.0,1.0
+106,46,0.73,1.7499999999999998,1.3815699419335323,0.0007059575622421672,0.036739250632093434,0.7681655725470266,2,1.0,1.0
+106,47,0.6893645554454197,1.6999999999999997,1.3822025948086554,0.0007041592382016546,0.03663663716107091,0.7546578893397159,2,1.0,0.9645485181513992
+106,48,0.7799999999999999,1.6499999999999997,1.3836962467323088,0.000703036388675933,0.03664962141969724,0.7407945468524103,2,1.0,1.0
+106,49,0.7799999999999999,1.6499999999999997,1.3824481719733839,0.0007037594623142102,0.03642377260027636,0.7405550998903472,2,1.0,1.0
+107,0,0.1768995372758449,1.6999999999999997,1.379688458038102,0.000698086251204485,0.03622259751194001,0.7541898488486761,0,0.1913197923662559,0.2012387344311418
+107,1,0.1466257238539594,1.6499999999999997,1.3794171862848825,0.0006979978438866909,0.036543476032881536,0.7399701050796812,0,0.203081386276712,0.2179772311442487
+107,2,0.24030791968145582,1.5999999999999996,1.3768008988252423,0.000701141310394714,0.036487808045164244,0.7247612089073552,0,0.32079970075430175,0.20662679793245045
+107,3,0.2690136461152644,1.5999999999999996,1.3767419589828354,0.0007029591384739254,0.036545628850376384,0.7247501765584773,0,0.40858818676892245,0.21859457135898466
+107,4,0.2955535922933849,1.5999999999999996,1.336453107093337,0.0007259670399229281,0.03592022988401284,0.7166500705479807,1,0.47546346702835796,0.21789401827347238
+107,5,0.2860660128665373,1.5999999999999996,1.3850972369011778,0.0007015578408399894,0.03664688895733492,0.7264132581554718,1,0.49432989497204505,0.22778018292573082
+107,6,0.29454997976249286,1.6499999999999997,1.3848159426890367,0.0007017265938775148,0.036728189916956366,0.7410089879029474,1,0.5046141935294829,0.24234767450233224
+107,7,0.338085090933325,1.6999999999999997,1.3845271490150477,0.0007018583484497964,0.036303924201033996,0.7550871732344157,1,0.5343476725934642,0.28115340631979774
+107,8,0.320092112634664,1.6999999999999997,1.3849626113751135,0.0007012718723396214,0.03668331866582432,0.7551674777090164,1,0.5828481460225204,0.2565095140855194
+107,9,0.3336825581852721,1.7499999999999998,1.3852798468872392,0.0007008743861365965,0.036711599202978076,0.7688237949291552,1,0.5949595252603523,0.25232916027043717
+107,10,0.3396872094880929,1.7999999999999998,1.3849654433010559,0.0007009419272434076,0.036474817543991137,0.7818307806980702,1,0.6518166376629062,0.22986851474310122
+107,11,0.392289626045077,1.8499999999999999,1.3770357447427042,0.0007096065241936748,0.03665760123258424,0.7930575338454775,1,0.6893496964361261,0.2551658249020886
+107,12,0.3748876674832007,1.8499999999999999,1.3786982401443637,0.0007073419385350481,0.03674745192796726,0.7933295025502939,1,0.7431544247035384,0.22541965867261765
+107,13,0.45032912400212927,1.9,1.3801202908266923,0.0007056548898606532,0.03649149786675584,0.8055784107819082,1,0.7906165368852487,0.28027503082676597
+107,14,0.4642402638526117,1.9,1.3799759030277299,0.0007072777050286612,0.03622638473034327,0.8055563038830474,1,0.8240540360889476,0.31539549805677564
+107,15,0.4542027384959622,1.95,1.3230502640939958,0.0007103913722995037,0.03562579492670261,0.808372726646862,1,0.8339113718937354,0.33546063246156005
+107,16,0.457264950416331,2.0,1.3263334408825338,0.0007216741452835329,0.035890136901219526,0.8202108681692947,1,0.880472410285761,0.3169199543400887
+107,17,0.4638317925070816,2.0,1.338057588518573,0.0007149642178309897,0.03609988373682474,0.821931319454185,1,0.925287396956676,0.27905611241470396
+107,18,0.4833456979273809,2.0,1.3464345691140467,0.0007097172156264034,0.036366455185876535,0.8231525439075975,1,0.9482840674322266,0.2801069031816341
+107,19,0.4834168388755221,2.0,1.3474379269128698,0.0007183168880476073,0.036317486715508114,0.8233010599015728,1,0.9976585751896626,0.2478446959988568
+107,20,0.47535032554179185,2.0,1.3542531400510849,0.0007133334155510945,0.036215711589142746,0.8242888856163089,1,1.0,0.21783441847263935
+107,21,0.4824933505687135,2.0,1.3594715154383588,0.0007091400997316544,0.03588525602294352,0.8250422088171739,1,0.9908323911133401,0.22053464707792475
+107,22,0.5303075107054601,2.0,1.3600202540079693,0.0007156721067957867,0.0362783587420057,0.8251232888426159,1,1.0,0.26769170235153367
+107,23,0.5308538562216897,2.0,1.3575186052009118,0.0007155781726041288,0.03642984623403874,0.8247619930106659,1,1.0,0.3028461874056322
+107,24,0.5586469730683635,2.0,1.3603447546110279,0.0007112342717135259,0.03655340206106706,0.8251688272206431,1,1.0,0.36215657689454495
+107,25,0.5099586550573302,2.0,1.3576981128823356,0.000711045620610808,0.03643616092626177,0.8247866256528125,1,1.0,0.3331955168577671
+107,26,0.5188912386553682,1.95,1.362470980926324,0.0007072590534426071,0.0363248202332338,0.8144041828996496,1,1.0,0.3296374621845608
+107,27,0.5679109155418263,2.0,1.3624549458480986,0.0007137001744010904,0.036325513448246735,0.8254737561056313,1,1.0,0.39303638513942063
+107,28,0.583579472601257,2.0,1.3605096978173237,0.0007133459996371556,0.03619115870099663,0.8251932307462685,1,1.0,0.44526490867085633
+107,29,0.5545959189198917,2.0,1.3815735400992362,0.0007008902298382517,0.036665025794900094,0.8282073501634556,1,0.9950846461705637,0.4552068681722206
+107,30,0.5584548538562111,1.95,1.3814844961353514,0.0006997291557829864,0.03636866768183674,0.817258663397975,1,1.0,0.46151617952070334
+107,31,0.5377511944308859,2.0,1.381029274872128,0.0006986671718963158,0.036647720850543644,0.8281292654886816,1,1.0,0.4258373147696196
+107,32,0.5952018139167334,1.95,1.3814404267270153,0.0006999404763526138,0.036672692008847665,0.8172521447965675,1,1.0,0.4840060463891113
+107,33,0.5696157010750786,1.95,1.3830681018705477,0.0006997285373145124,0.036638554874442654,0.8174950510712873,1,1.0,0.49871900358359555
+107,34,0.6010524165776526,1.9,1.3827190628531028,0.0006988866616701486,0.036605797290566136,0.8059829952765215,1,1.0,0.5368413885921752
+107,35,0.5609649136691723,1.9,1.3818869440197281,0.0006988377322601606,0.03666491928469641,0.8058528247454633,1,1.0,0.5032163788972409
+107,36,0.5764328971426005,1.8499999999999999,1.3821512934527556,0.0007000556063944954,0.036526047986352755,0.7938926996822055,1,1.0,0.5214429904753349
+107,37,0.6054850400157494,1.9,1.3816308231659247,0.0006989834357991532,0.0365300461291296,0.8058127960606448,1,1.0,0.5516168000524978
+107,38,0.6170903464812982,1.9,1.380992612041271,0.0006991341140967552,0.03660731281165416,0.8057129574022277,1,1.0,0.5903011549376606
+107,39,0.6244103587137001,1.95,1.380051852147977,0.0006992356319044397,0.03641610605881892,0.8170444575981384,1,1.0,0.6147011957123335
+107,40,0.5893172165972008,2.0,1.366767344541623,0.0006973397358653242,0.03610744904406621,0.8260894571757443,1,1.0,0.5977240553240027
+107,41,0.5830836961051423,1.95,1.3804337452085294,0.0006992639526867604,0.036601811403953216,0.8171015455998498,2,1.0,0.5769456536838078
+107,42,0.6366489626228887,2.0,1.36759179180657,0.000703956454372351,0.03638506127968924,0.8262097702600004,2,1.0,0.6221632087429622
+107,43,0.6489055398981609,2.0,1.374922055330592,0.000711379738736754,0.03657658873635165,0.8272619082455017,2,1.0,0.663018466327203
+107,44,0.6866225907566568,2.0,1.373982796395495,0.0007135366045769138,0.036722492355212064,0.8271282640276771,2,1.0,0.688741969188856
+107,45,0.692852999998458,2.0,1.3725370441678937,0.0007149291861380956,0.03647993124006477,0.8269218409501917,2,1.0,0.7095099999948599
+107,46,0.7042537214373789,2.0,1.370835065504885,0.0007162011967696547,0.03633150170944648,0.8266784791296616,1,1.0,0.7475124047912631
+107,47,0.6239344596974726,2.0,1.3619863485562456,0.0006960793992657235,0.036103997556021915,0.8254011577351529,1,1.0,0.713114865658242
+107,48,0.6860461183987142,1.95,1.359047673677427,0.0006951491832438855,0.03578789194720362,0.8138825242435592,1,1.0,0.7868203946623806
+107,49,0.6888390064460774,1.95,1.3591335554850947,0.0006922481929330062,0.036296635020494045,0.8138946542515573,1,1.0,0.8294633548202579
+108,0,0.19650695555344844,2.0,1.3781409269643778,0.0006994363087362641,0.0362382247114416,0.8277179931614724,1,0.1557367211523343,0.280707556975049
+108,1,0.21074156513925277,1.95,1.378126280399919,0.0006996537795928107,0.03651916155938621,0.8167565671409266,1,0.19086637868323852,0.3146500455531912
+108,2,0.1985136368076151,2.0,1.3777040797750215,0.0006991689263987,0.036462600597577804,0.8276556131533394,1,0.21024598108457604,0.31471748124594895
+108,3,0.22007122336230991,2.0,1.3849433694012698,0.0006994632024105438,0.03648213105819241,0.8286858739313527,1,0.2514814889775233,0.3315954259043354
+108,4,0.2869381519902795,2.0,1.3848922713847753,0.0006995559001962859,0.036669916844124184,0.8286786459698122,1,0.311124685229418,0.3749609263283743
+108,5,0.2556825380785733,2.0,1.384811250409176,0.0006997013805446228,0.03671644445243708,0.8286671843974102,1,0.36076535297451573,0.33792132296255656
+108,6,0.30510739464340936,1.95,1.385334944696704,0.0006997725219992949,0.03636211550446699,0.8178330267025103,1,0.3881163875754249,0.3662027987107981
+108,7,0.3245318752133381,1.95,1.385133022858336,0.0006995414790284994,0.03673481291324536,0.817802873167371,1,0.4188732967634002,0.3899418550265935
+108,8,0.303608476503582,2.0,1.3852296666656145,0.000700602693986808,0.03664480183626853,0.828726837944641,1,0.46733208731767945,0.3555854719217007
+108,9,0.38378723996020797,1.95,1.3853262614379656,0.0007002834621692506,0.03636210737755259,0.8178318852909738,2,0.5342010699079618,0.40035603999007763
+108,10,0.41901227448328776,1.95,1.385886773119545,0.0006998864400671449,0.03676104848728797,0.8179152588096795,2,0.5856778343520747,0.449137135808193
+108,11,0.4076144668754995,1.95,1.3860123933033204,0.0007000305239225921,0.0366471038645037,0.8179340095758079,2,0.5962665705667624,0.46369279549598175
+108,12,0.5005573330781043,2.0,1.3858654832562545,0.0006998824595693347,0.0365081455747143,0.8288168616688742,2,0.6723783642577271,0.5053532912500449
+108,13,0.5297898848675844,2.0,1.3849030325265228,0.000701525929918745,0.03670756057359435,0.8286807330943718,2,0.7340773937150801,0.5205297579385079
+108,14,0.45052280930168437,2.0,1.3845378996351874,0.0007019631700564492,0.036743928524727534,0.8286290135093253,2,0.7620346860834571,0.48569644956100505
+108,15,0.495514242772644,1.95,1.3846200231063692,0.0007012423221949597,0.03640826966191128,0.8177269300784151,2,0.7935880125961001,0.4935967924473462
+108,16,0.514640909665348,1.95,1.3853680537259447,0.0007009297301162492,0.036780610226631934,0.8178383041047672,2,0.817260824976677,0.5257885989155907
+108,17,0.5331212078551912,2.0,1.3592947698090023,0.000702745063562798,0.03644928621767695,0.8250148481150983,2,0.846215569640353,0.5487832666635
+108,18,0.5025473945907513,2.0,1.3613008347034097,0.0006995763490198005,0.03642337231541133,0.8253033518609548,2,0.8766069315050696,0.5063487399624114
+108,19,0.5745779631921714,1.95,1.365844761849811,0.0006975308058266405,0.036357716876809915,0.814910654463075,2,0.8937101667134657,0.5569796550226167
+108,20,0.6037276638386226,1.95,1.3625842822571064,0.0006967014856593794,0.03584168173583649,0.8144181164401018,2,0.9458363004730355,0.5846438121646949
+108,21,0.6310946414224026,1.95,1.3595088696983681,0.0006956977614605015,0.03591233640283127,0.8139525412178692,2,0.9804374528119586,0.6297322009920635
+108,22,0.6283331601555415,1.95,1.3602470500319042,0.0007205314221961701,0.03650668869377561,0.8140718184745416,2,1.0,0.6611105338518047
+108,23,0.6350076355642391,2.0,1.3622672469753005,0.0007156503371680351,0.03649391469073644,0.8254472752467644,2,1.0,0.6833587852141304
+108,24,0.6655318529858794,2.0,1.363906078360478,0.0007110114401742047,0.036433574178620934,0.8256819434577443,2,1.0,0.7184395099529309
+108,25,0.680524064454395,2.0,1.3636408304232095,0.0007159278201638984,0.03648390682220286,0.825645178168376,2,1.0,0.7684135481813162
+108,26,0.714864424297699,2.0,1.362864872219219,0.0007203549110815087,0.036583337354281785,0.8255347219547301,1,1.0,0.7828814143256635
+108,27,0.7029853087968578,2.0,1.3493945226595925,0.0006762901134837124,0.03604215553700969,0.8235733057497236,1,1.0,0.8432843626561923
+108,28,0.6725560601332081,2.0,1.3851334353205775,0.0007011318943916472,0.03660071800356453,0.8287133288012611,1,1.0,0.8418535337773605
+108,29,0.6599382420267743,1.95,1.384450430657299,0.0007013446920187061,0.03676124064940343,0.8177016815496448,1,1.0,0.833127473422581
+108,30,0.7039100598092985,2.0,1.3849399507401556,0.0007006980608379534,0.03669147166625043,0.828685739213873,1,1.0,0.8797001993643283
+108,31,0.6654176703007372,2.0,1.3853391047601702,0.0007001990508229517,0.03661635212571056,0.8287422563060463,1,1.0,0.8513922343357906
+108,32,0.6776971330321717,1.95,1.385589755124097,0.0006999203473874971,0.03676139840486214,0.8178710298773391,1,1.0,0.8589904434405725
+108,33,0.7026655936950461,2.0,1.3849522764430469,0.0006997947970638998,0.03668304792451293,0.8286872325706413,1,1.0,0.8755519789834871
+108,34,0.6638601536820536,2.0,1.3851776387346686,0.0006995274559126638,0.03655307231403949,0.8287191477968524,2,1.0,0.846200512273512
+108,35,0.7412847467392772,1.95,1.3853260569543102,0.0007004788600622792,0.03676923746144011,0.8178319130482924,2,1.0,0.8709491557975907
+108,36,0.70116727669481,1.95,1.3852108744914295,0.0007012684378592227,0.03674633458204351,0.817814987489849,2,1.0,0.9038909223160335
+108,37,0.758448680713766,1.9,1.3852704805369476,0.0007005280959026984,0.036693649419097724,0.8063821728072804,2,1.0,0.9281622690458868
+108,38,0.7647352225980196,1.9,1.3849459251643639,0.0007011127045437235,0.036766994109781896,0.806331677535816,2,1.0,0.9491174086600653
+108,39,0.7713359631055067,1.95,1.3843857354284133,0.0007016285608456691,0.03649565214691781,0.8176921221492697,2,1.0,0.9711198770183557
+108,40,0.7799999999999999,2.0,1.3836045442157254,0.0007020466836192923,0.03669161837768523,0.8284964573429144,2,1.0,1.0
+108,41,0.7799999999999999,2.0,1.3825694215341586,0.0007023932778209502,0.03672596414692296,0.8283494252267022,2,1.0,1.0
+108,42,0.6903784983096404,2.0,1.3811740074856191,0.0007027175782384867,0.036569380685805335,0.828151017360477,2,1.0,0.9679283276988014
+108,43,0.75,1.95,1.3826242556615607,0.0007015588165007684,0.03654113039663672,0.8174293675614184,2,1.0,1.0
+108,44,0.7799999999999999,1.95,1.3825465091729767,0.0007035352296059497,0.03637939733052675,0.8174183544408377,2,1.0,1.0
+108,45,0.73,1.95,1.3811134061209933,0.0007040072851203021,0.03671138129924019,0.8172045138632135,1,1.0,1.0
+108,46,0.7020617721458924,1.9,1.3847301591795318,0.000699583911675751,0.03661219725239699,0.8062975035587305,1,1.0,0.9735392404863078
+108,47,0.7191820557642516,1.8499999999999999,1.3851658190199618,0.0006994825481064234,0.03661221116221229,0.7943853335115457,1,1.0,0.9972735192141722
+108,48,0.72,1.9,1.3843323610365335,0.0006991552058722127,0.03658102272239018,0.806235233198125,1,1.0,1.0
+108,49,0.7021266023203135,1.95,1.3833562187145478,0.0006988147371547468,0.036683857913086274,0.8175377606544164,1,1.0,0.9737553410677117
+109,0,0.1392288015030874,2.0,1.3817174348526664,0.000697500977677339,0.03620123896879646,0.8282268581765659,0,0.1360713821847223,0.21600082876399493
+109,1,0.20164782351070887,1.95,1.3820573672436822,0.0006974449908092328,0.036571616892374016,0.8173435223769324,0,0.22733816462010092,0.20237519220889494
+109,2,0.18964699027174248,1.95,1.3704485768624544,0.0007029893138526231,0.036498741391119124,0.8156056891229959,0,0.2706372734841968,0.2046402695935459
+109,3,0.234028508554692,2.0,1.373098950285801,0.0007015455505930514,0.03655927183973488,0.8269984177522129,0,0.33175238838104926,0.20442517734090768
+109,4,0.2844939057303817,2.0,1.3726996573481793,0.000701455718725566,0.03643143352771726,0.8269412569283133,0,0.44620751257840235,0.1867030023300691
+109,5,0.243847178399915,2.0,1.385242936335823,0.0007004368877765831,0.03673964549795673,0.8287286743474938,0,0.4618843661509444,0.19697810646512406
+109,6,0.32801423943332225,1.95,1.385285636563426,0.0007008378603194667,0.0364554267020192,0.8178259979973894,0,0.5561924881579492,0.18512414723380854
+109,7,0.28126590114904343,1.95,1.3854195798439062,0.000700503703163699,0.03675862661476338,0.8178458533450612,0,0.5572168404759831,0.19459721652883394
+109,8,0.28192466081243256,1.9,1.3854152040532948,0.0007008721758872487,0.036660473772255245,0.8064048749156418,0,0.565515764788069,0.18572784965734987
+109,9,0.31915176948416263,1.95,1.3853169566395476,0.0007012159516134611,0.03660802208325557,0.8178307768825184,0,0.5913349924828495,0.20872590830340937
+109,10,0.37599466049154695,1.95,1.3602912680617536,0.0007187926498253294,0.03653905263201925,0.8140779848303591,0,0.6776521915623991,0.21644594622195779
+109,11,0.40522708666740465,2.0,1.005191250084232,0.0008555972822177193,0.03247362953323178,0.7679732873452144,0,0.7520861125822299,0.21464213878170896
+109,12,0.44942689974502775,2.0,1.0181926635783582,0.0009072807735935399,0.03297297238936179,0.7703002274468236,0,0.8497239347211683,0.1984577528552015
+109,13,0.41081503222540805,2.0,1.240846695030954,0.0008061309158372269,0.03494716733844591,0.8072841606170673,0,0.8769059397471631,0.20017552108847586
+109,14,0.47076570843661386,1.95,1.373085334668915,0.0006911878034131067,0.036231179474301135,0.8159983653647298,0,0.9378249783893483,0.1854523902695819
+109,15,0.4667690787533067,2.0,1.2331083278364987,0.0008256293233068538,0.035979346170621575,0.8060834852074387,0,0.9636946357119568,0.20430408156174634
+109,16,0.5029657984764123,2.0,1.3732237437760888,0.0006918482972573469,0.03622977890842498,0.8270134968795427,0,1.0,0.176552661588041
+109,17,0.4580665369969515,2.0,1.2270500271182356,0.0008354482333842306,0.035466000901139334,0.8051378192634371,0,1.0,0.1935551233231715
+109,18,0.48412240694135605,2.0,1.22575462351754,0.0008402051361894669,0.03537810077819079,0.8049359956792744,0,1.0,0.21374135647118667
+109,19,0.4905978420853952,2.0,1.3723624915356918,0.0006918404420759687,0.03636871613454225,0.826890247309934,0,1.0,0.23532614028465054
+109,20,0.4701755447453664,2.0,1.3709861145109412,0.0006911859121564791,0.03622116733276914,0.8266929526919631,0,0.9977248374511588,0.23695203254967612
+109,21,0.47543344302089935,1.95,1.3732341188313675,0.000694569337073237,0.03602707959138947,0.816021718860757,0,1.0,0.2514448100696644
+109,22,0.5231706544470016,2.0,1.3744730429289134,0.0006977950764943085,0.03651793427419307,0.8271938514422102,0,1.0,0.27723551482333864
+109,23,0.4857159217456397,2.0,1.3749909018663509,0.000696503619488847,0.0364825112071413,0.8272674947351654,0,1.0,0.2857197391521324
+109,24,0.5214813929346025,1.95,1.376075946634288,0.0006993375642885262,0.036535300627684814,0.8164494092771045,0,1.0,0.27160464311534144
+109,25,0.5088433580499278,1.95,1.375786463120898,0.0006978518897396858,0.03643483682862597,0.8164055780021287,0,1.0,0.29614452683309245
+109,26,0.49413780098631205,2.0,1.37462221041236,0.0006976285194068824,0.03623014033929144,0.8272151254135817,0,1.0,0.3137926699543734
+109,27,0.5311943939984113,2.0,1.3757270651742084,0.0007004281604577264,0.03628565534175843,0.8273737852341728,0,1.0,0.3039813133280377
+109,28,0.5166851833124451,2.0,1.37557918432426,0.0006988006651029209,0.0363384773431458,0.8273521979773728,0,1.0,0.3222839443748167
+109,29,0.5393986523885868,2.0,1.374479816766863,0.0006987782346154691,0.03654278607650156,0.8271951007928428,0,1.0,0.3313288412952892
+109,30,0.5375411062582867,2.0,1.374127775488019,0.0006971802838409765,0.036400242272170015,0.8271443160922766,0,1.0,0.29180368752762204
+109,31,0.5155634639702119,2.0,1.3769332677705535,0.0006969166373915443,0.03639041971764785,0.8275449925049108,0,1.0,0.31854487990070623
+109,32,0.544357028792736,1.95,1.3758937064135726,0.0006967126404992644,0.03642676988921376,0.81642131039128,0,1.0,0.31452342930911986
+109,33,0.5264508654411417,1.95,1.3778698970393963,0.0006964025404584404,0.03646187211680355,0.8167172189826722,0,1.0,0.354836218137139
+109,34,0.53631170522546,2.0,1.3767581802798952,0.0006960950716135101,0.036511933690750696,0.8275197690617316,0,1.0,0.38770568408486655
+109,35,0.5447070758347482,2.0,1.3757926248845107,0.0006957856349987874,0.036487424886406966,0.8273818225933776,0,1.0,0.41569025278249394
+109,36,0.5655193507536735,2.0,1.3192879078482473,0.0006677037700935312,0.03480844996336931,0.8191535637843962,0,1.0,0.38506450251224505
+109,37,0.5645494287176996,2.0,1.3827332212481052,0.0006979754277536607,0.03645193505264016,0.8283714579203451,0,1.0,0.38183142905899864
+109,38,0.5353280798039648,2.0,1.3836287453249163,0.0006983455291393256,0.036674494728373475,0.8284988442725694,0,1.0,0.3844269326798826
+109,39,0.5391325646594574,1.95,1.383134481597203,0.0006980929134764554,0.03646016098307445,0.8175044664715881,0,1.0,0.3971085488648579
+109,40,0.5599665549892298,2.0,1.3824488985962038,0.0006977292515837755,0.03658610243629029,0.8283309613615221,0,1.0,0.39988851663076574
+109,41,0.5253677687496854,2.0,1.382153316828267,0.0006973846316606736,0.036670293486462495,0.8282888278874987,0,1.0,0.4178925624989512
+109,42,0.5519178458208978,1.95,1.2996806475678562,0.0006498587046008344,0.034199019634227265,0.8047074909341879,0,1.0,0.43972615273632576
+109,43,0.5770759046232079,1.95,1.2955286646828774,0.0006497809989624154,0.03452490473167084,0.8040541428428849,0,1.0,0.42358634874402634
+109,44,0.5671891480707073,1.95,1.2924871512288698,0.0006472368157677417,0.0344795085653062,0.8035737027658137,0,1.0,0.390630493569024
+109,45,0.5618929385951059,2.0,1.3783816905519233,0.0006951681956597325,0.036519196792076505,0.8277511064759092,0,1.0,0.3729764619836863
+109,46,0.5506035379622543,2.0,1.3791632691356435,0.0006963196118722775,0.036351424497762706,0.8278628429578493,0,1.0,0.3686784598741806
+109,47,0.5355871948150084,2.0,1.3785875383238162,0.0006963420305797775,0.03654622096745034,0.8277807887924578,0,1.0,0.3852906493833613
+109,48,0.5564904551391414,2.0,1.3779346687553096,0.0006955663323475666,0.036442398460320775,0.8276874746871896,0,1.0,0.35496818379713785
+109,49,0.5436772531516758,2.0,1.3783330355379289,0.0006966229834944602,0.03648807786065335,0.8277445840295603,0,1.0,0.345590843838919
+110,0,0.11205845435051534,2.0,1.38387903972546,0.0007007398816533051,0.036249837800382004,0.8285350856137689,0,0.1163560696383305,0.21838675498394378
+110,1,0.199461690407866,1.95,1.384105233805542,0.0007003971835711329,0.03667067183485308,0.8176499363720631,0,0.21997886300843245,0.20490048401497668
+110,2,0.20952262830212529,1.95,1.3714141018053971,0.0006982467162667465,0.03643077916927027,0.8157494274742734,0,0.278212065575681,0.19412600690617618
+110,3,0.24587966103862977,2.0,1.3844092593798192,0.0007002881775348953,0.03639407787032853,0.8286102696899792,0,0.352039742767232,0.21687921310578986
+110,4,0.29222094060992354,2.0,1.3778731000735602,0.0006993898288550023,0.03650687934864597,0.8276797841905068,0,0.4586505647523635,0.19586904902992708
+110,5,0.33675740323114745,2.0,1.3788704200878148,0.0007023590281238915,0.03663772671631209,0.8278228278465467,0,0.5717949209098583,0.19346478289068048
+110,6,0.3691169587677347,2.0,1.3795540275810296,0.0007011283563935886,0.03657778131147355,0.8279198914238052,0,0.6714363467933588,0.16847473350130396
+110,7,0.36282944904165937,2.0,1.3213986507850497,0.0006670200284806056,0.03520513137720936,0.8194658384355384,0,0.7155952145161474,0.1886378774506679
+110,8,0.4320887207104723,2.0,1.3199116248241123,0.0006655869995543828,0.034817994890123584,0.8192453165381933,0,0.8218023412603641,0.17789261402108875
+110,9,0.41815855616502984,2.0,1.2159344065580515,0.0008480024468571987,0.035974124910119185,0.8033919282735762,0,0.8458336403330068,0.19941700010609015
+110,10,0.43699235823584676,2.0,1.2142030280515952,0.0008487798154207808,0.03585406361923014,0.8031185534323723,0,0.8834915937870779,0.21198573573671856
+110,11,0.5021112043166062,2.0,1.361953240429618,0.0006944833598304027,0.03597021277746389,0.8253959263024022,0,0.9853322462302309,0.1932610194150458
+110,12,0.4861128802275002,2.0,1.2030012726532489,0.0008512535995024695,0.035508301272460574,0.8013421131703639,0,1.0,0.22037626742500047
+110,13,0.4963786812108561,2.0,1.362562572427754,0.0006963323472790347,0.03621110309879906,0.8254842570213596,0,1.0,0.25459560403618686
+110,14,0.4789377082894767,2.0,1.3611348950423874,0.0006961770326117033,0.03614464809667284,0.8252784454465038,0,1.0,0.2631256942982555
+110,15,0.5018703055475288,2.0,1.3622525368706224,0.0007005064069998039,0.03626639695564045,0.8254407916618293,0,1.0,0.2729010184917626
+110,16,0.48884890760177435,2.0,1.3608043997476789,0.0007005015577771913,0.03605342655707601,0.8252320323121549,0,1.0,0.2961630253392477
+110,17,0.4906159085456305,2.0,1.361497575387506,0.0007048169042815122,0.03617591235384198,0.8253332266147956,0,1.0,0.30205302848543486
+110,18,0.49685226854160536,2.0,1.3617321431938714,0.0007086973303026072,0.03630923253580537,0.8253681575461714,0,1.0,0.32284089513868447
+110,19,0.5357523970649632,2.0,1.361609545495043,0.0007121878736480536,0.03637744333340072,0.8253514924539099,0,1.0,0.31917465688321073
+110,20,0.49877219093605296,2.0,1.367454875621004,0.0007092513002538672,0.03650755421107051,0.8261916306467748,0,1.0,0.32924063645350987
+110,21,0.542623993188718,1.95,1.367150849197015,0.0007120266206279494,0.036404279406415996,0.8151119414765375,0,1.0,0.3087466439623933
+110,22,0.5179575499606048,1.95,1.3667370713382327,0.0007093510066897159,0.03641403731033295,0.8150487685095518,0,1.0,0.32652516653534946
+110,23,0.5052783008716097,1.9,1.365586485519739,0.0007099355974137362,0.03632143871183151,0.803293338081635,0,1.0,0.35092766957203236
+110,24,0.5113040351334381,1.95,1.3647008760839416,0.0007130024268992679,0.036465138686278674,0.8147427290812549,0,1.0,0.37101345044479356
+110,25,0.510889465644054,2.0,1.364627893965503,0.0007151474818732535,0.03651218574003366,0.8257870009223457,0,1.0,0.3696315521468468
+110,26,0.5377979229388344,2.0,1.3644291162152036,0.0007168556107064533,0.03651110762987202,0.8257588938763183,0,1.0,0.3926597431294479
+110,27,0.5585058918650534,2.0,1.363358130101123,0.0007178732656351289,0.03644162705716381,0.8256050384518101,0,1.0,0.3616863062168446
+110,28,0.5557678520308381,2.0,1.3635169479853166,0.0007144813244634695,0.0363815741733372,0.8256269274303877,0,1.0,0.3525595067694603
+110,29,0.5482623946484911,2.0,1.3633694886030987,0.0007114400920673143,0.03636377664100503,0.8256048213501084,0,1.0,0.3275413154949702
+110,30,0.5290270667600018,2.0,1.3629992407370826,0.0007087127779087661,0.03617065576474644,0.8255507205237556,0,1.0,0.3634235558666723
+110,31,0.5543892757557722,2.0,1.3620688630655584,0.0007095529941279312,0.03626650973905667,0.8254169321460373,0,1.0,0.34796425251924046
+110,32,0.5082450237220082,2.0,1.3615539931323868,0.0007068815537847937,0.03631516353322637,0.8253419548012773,0,1.0,0.3608167457400273
+110,33,0.5136112724371373,1.95,1.3611216999597504,0.0007089454677043951,0.036411634486725714,0.8142006627807491,0,1.0,0.37870424145712456
+110,34,0.5127823143428629,2.0,1.3599884340963713,0.0007111116939757019,0.036263707565113795,0.8251173812265638,0,0.9983974356200984,0.37807780031607835
+110,35,0.5576906394712768,2.0,1.3599334621133385,0.0007124478726752608,0.0363228693640656,0.8251098343308576,0,1.0,0.39230213157092253
+110,36,0.563537121404621,2.0,1.3661450003227924,0.0007096854947514312,0.036295067920560475,0.8260035782682252,0,1.0,0.3784570713487362
+110,37,0.512024944361042,2.0,1.3657540224007378,0.0007073738288807279,0.03628811238455796,0.8259467144637429,0,1.0,0.373416481203473
+110,38,0.51488847700918,1.95,1.3651863615069557,0.0007085850945898191,0.03637660453133045,0.8148146625306939,0,1.0,0.38296159003059965
+110,39,0.540699325963742,2.0,1.364087121192413,0.0007099435338326623,0.03630841958436014,0.8257076922721729,0,1.0,0.40233108654580657
+110,40,0.5640515181164899,2.0,1.2683839688601786,0.0006265735368508677,0.03372906429863977,0.8114771663398388,0,1.0,0.38017172705496616
+110,41,0.5555737414348941,2.0,1.3664382826997803,0.0007020811231480667,0.03633676614461505,0.8260435398515141,0,1.0,0.38524580478298037
+110,42,0.5213119974958271,2.0,1.3714341536771926,0.0007008966575248427,0.036356674247047735,0.8267599163541777,0,1.0,0.4043733249860902
+110,43,0.5682184286919644,2.0,1.2348692769387322,0.0005987640426969977,0.03222390419753919,0.8062877385740913,0,1.0,0.3940614289732144
+110,44,0.5604201004809152,2.0,1.374618700939592,0.0006981583618582399,0.03645673661960495,0.8272147752644804,0,1.0,0.36806700160305045
+110,45,0.5505836901000725,2.0,1.3739004878911438,0.0006968763472986313,0.03643555287606938,0.827111729944326,0,1.0,0.36861230033357467
+110,46,0.5395190751859227,2.0,1.3773630258244154,0.0006970301345007447,0.036501528289976715,0.8276063488682072,0,1.0,0.3983969172864088
+110,47,0.5238114316067394,2.0,1.3771295882558081,0.0006978047644657264,0.03651427439256802,0.8275732619036569,0,1.0,0.4127047720224646
+110,48,0.5678234414895609,2.0,1.1997031464240082,0.0005690087005659447,0.03148843795204971,0.8007264962107629,0,1.0,0.39274480496520275
+110,49,0.5442757086962193,2.0,1.3773063219124224,0.0006956599484519948,0.03627656462768651,0.8275978675444869,1,1.0,0.41425236232073104
+111,0,0.07067556367648387,1.95,1.383879351520286,0.000703269776495978,0.03629993556491375,0.817617111961637,0,0.18016672577642234,0.1953629112197164
+111,1,0.21429267167886268,1.9,1.3857124864587114,0.0006997683316472736,0.036719534947498536,0.8064509366507973,0,0.26942736025675285,0.1884057585872052
+111,2,0.23488254143749898,1.9,1.3816307190953272,0.0007010172072050739,0.036616731991178805,0.8058134162582139,0,0.3579687832642058,0.13898342710605546
+111,3,0.22572468725457093,1.9,1.3817031444462082,0.000702034955668651,0.03650053090245674,0.8058250674889397,0,0.3906271678586801,0.16491273370366294
+111,4,0.29375379779388894,1.95,1.3817115100763693,0.0007012210033732634,0.03669879095490334,0.8172930103348591,0,0.49141132907796553,0.15729755387567573
+111,5,0.2749488494267508,1.95,1.3794475190181532,0.0006974197841234637,0.03647343749482955,0.8169535597885758,0,0.5129747028577002,0.16586322761223563
+111,6,0.32919306122200165,2.0,1.3788880088142177,0.000697319969654456,0.036496682270091965,0.8278238983475527,0,0.5870690699676233,0.18121811078317449
+111,7,0.3750347473481508,2.0,1.3805612860346852,0.0006973668473759821,0.03655721382746896,0.828062275586406,0,0.6885064204505286,0.16544059722646454
+111,8,0.4042102191297967,2.0,1.2785412219435335,0.0006563215798124705,0.034190843304221015,0.8130351732314677,0,0.7903998923134852,0.12683420734800877
+111,9,0.39411642193098156,2.0,1.27561952883129,0.0006549943331307298,0.03416602349673415,0.8125902391477338,0,0.8176580449025825,0.15684401323316172
+111,10,0.40237866555801793,2.0,1.1907278055862753,0.0008500684132974854,0.03547583317763605,0.7993806553847532,0,0.8369045076303304,0.15872287501961893
+111,11,0.4170504891488155,2.0,1.1883861227990926,0.0008495894990014175,0.03523593127340295,0.7990046997424503,0,0.8631253534258521,0.17266782592824886
+111,12,0.46678655264565333,2.0,1.1858694322478183,0.0008487041037748393,0.0353488518715338,0.7985999398643725,0,0.9280679613817262,0.18519789364320943
+111,13,0.4913990236251769,2.0,1.1920793391662015,0.0008346463492242878,0.03483897401036797,0.7995923722263208,0,0.995282586164472,0.17761996386462695
+111,14,0.4779784887293397,2.0,1.1967393897340302,0.0008213605118180533,0.0349828700443899,0.8003338307342901,0,1.0,0.19326162909779873
+111,15,0.4586376329900381,2.0,1.1939874049559058,0.0008208691152233044,0.03526417792696145,0.7998935438896054,0,0.9976464931307215,0.19859678579249823
+111,16,0.48083948285291855,2.0,1.1947358018056393,0.0008353467469946744,0.03538873987417389,0.8000179408652041,0,1.0,0.20279827617639512
+111,17,0.5085634462703246,2.0,1.3588744256091356,0.0006932409626269944,0.036055538538164136,0.8249514117950691,0,1.0,0.19521148756774842
+111,18,0.4984400024766267,2.0,1.182987642190953,0.000832775078545121,0.03496689399693738,0.7981309065746506,0,1.0,0.19480000825542232
+111,19,0.4580569026618627,2.0,1.187844057042401,0.0008194906897326705,0.03459405389874357,0.7989079611215678,0,1.0,0.19352300887287577
+111,20,0.4949926725239534,2.0,1.1888880288831207,0.00083455190608464,0.035034084678345304,0.7990804632967021,0,1.0,0.18330890841317798
+111,21,0.47903962487131363,2.0,1.1925447791439137,0.0008216970445238076,0.03526114096205845,0.7996627969988819,0,1.0,0.19679874957104532
+111,22,0.5031025730120972,2.0,1.1900350629489007,0.0008214478068583075,0.03521334759769702,0.7992603525512866,0,1.0,0.21034191004032368
+111,23,0.5097769450399172,2.0,1.361160102097395,0.000693473273530669,0.036161880463825444,0.8252813004012046,0,1.0,0.1992564834663905
+111,24,0.4830742245969091,2.0,1.1940323264649724,0.0008015537828370082,0.034450319066486754,0.7998945508245409,0,1.0,0.21024741532303
+111,25,0.5068046899369676,1.95,1.3628971417878606,0.0006935179656304305,0.036128984522084295,0.8144644356336701,0,1.0,0.22268229978989174
+111,26,0.49316782566312306,1.95,1.363408184618148,0.0006968456200895066,0.036149866190129595,0.8145426533609343,0,1.0,0.24389275221041012
+111,27,0.5158609371661289,2.0,1.3684922955984653,0.0006960941114204494,0.03626020481783023,0.8263367765365801,0,1.0,0.25286979055376285
+111,28,0.5144896439068317,2.0,1.369575496580269,0.0006989571620984992,0.036322565666887165,0.8264929867385986,0,1.0,0.24829881302277215
+111,29,0.515673398791724,2.0,1.3698502283706344,0.0007014054933320899,0.0364165304773187,0.8265330824492917,0,1.0,0.2189113293057466
+111,30,0.5063213721704698,2.0,1.3688600169561207,0.0007017859269757964,0.03639996649367859,0.8263911730053987,0,1.0,0.22107124056823257
+111,31,0.4700692963484026,2.0,1.3688982600675255,0.0007042368560555136,0.03635956894061308,0.8263973628753347,0,1.0,0.23356432116134193
+111,32,0.5149143662071309,1.95,1.3684482798764626,0.0007023113040521674,0.03631702260227458,0.8153044642313053,0,1.0,0.21638122069043636
+111,33,0.4637969336577837,1.95,1.3670506371019284,0.0007028594319834683,0.03639469900468415,0.8150940753265425,0,0.9922395129075582,0.22300376164920124
+111,34,0.460981233489852,1.9,1.3665030229092379,0.0007009016916007581,0.03626060207596377,0.8034352694049698,0,0.9761264465995515,0.23510218283343776
+111,35,0.5098219800139775,1.95,1.3653889657696052,0.0006991769924665554,0.03615799722015821,0.8148423930239176,0,1.0,0.23273993337992496
+111,36,0.510773439274624,1.95,1.3659403099387937,0.0007014805762054814,0.036212352493691174,0.814926257093154,0,1.0,0.23591146424874654
+111,37,0.5066354134563871,2.0,1.3657735297675075,0.0007035436471669332,0.03624828315102158,0.8259484175674318,0,1.0,0.22211804485462344
+111,38,0.5044522379731594,2.0,1.3659038031029114,0.0007052207201779535,0.036331368760364365,0.8259676267006468,0,1.0,0.21484079324386454
+111,39,0.49394162167796546,2.0,1.3654551856744108,0.0007067778365329033,0.03622283345449377,0.8259035784963953,0,1.0,0.24647207225988474
+111,40,0.47803449013183147,2.0,1.3704523662630967,0.0007050550740135774,0.03635132328204698,0.826620443797608,0,1.0,0.2601149671061048
+111,41,0.4809872754788081,2.0,1.370047095771275,0.0007034371024007274,0.036429121345277274,0.8265618892169155,0,1.0,0.26995758492936023
+111,42,0.517021173696873,2.0,1.3695840494227027,0.000701995827889667,0.03644439413997906,0.8264950847296137,0,1.0,0.2567372456562431
+111,43,0.47697963620168093,2.0,1.3691887546959827,0.0007031706146429008,0.03646528316496205,0.8264387287881128,0,1.0,0.25659878733893643
+111,44,0.5170579763634842,1.95,1.3687379710298955,0.0007018229147790862,0.036332499516009246,0.815347935777755,0,1.0,0.22352658787828028
+111,45,0.46779347508847513,1.95,1.3677824954925648,0.0007027677685332634,0.036387972965835444,0.8152043248407267,0,1.0,0.22597825029491697
+111,46,0.5108953638349842,1.9,1.367290869393407,0.000701369019556549,0.03637912273894229,0.8035598094591118,0,1.0,0.20298454611661412
+111,47,0.49963248741488653,1.9,1.3662458392271242,0.000702242807035903,0.03619575839040109,0.8033950736409017,0,1.0,0.1987749580496218
+111,48,0.4850428636359331,2.0,1.1802994551991723,0.0008030530095365797,0.034826890001708244,0.7976878511934475,0,1.0,0.21680954545311001
+111,49,0.48913457891818185,2.0,1.3673376670574822,0.000701036758047523,0.036440059883384515,0.8261724395749448,0,1.0,0.23044859639393944
+112,0,0.17465225814908888,2.0,1.3847083346725557,0.0007022773367103941,0.03631214007722181,0.8286533036507094,0,0.16810785150017388,0.2246970584967311
+112,1,0.22310197962501993,1.95,1.3845865897726215,0.0007024737509269106,0.036715011046743316,0.8177223138959547,0,0.28288449117343917,0.19982727718548085
+112,2,0.2292074123992184,1.95,1.38169105845363,0.0007028967572466983,0.03667330447713732,0.8172904568438436,0,0.3361035171187124,0.18255335183911145
+112,3,0.23768071684622433,2.0,1.3813616336718444,0.0007030955491822489,0.03646517673537953,0.8281778256655031,0,0.3814459184747452,0.21700783152108752
+112,4,0.21852658221676172,2.0,1.377483132466363,0.000698300319392149,0.03647429003865862,0.8276238467147085,0,0.37699279186593865,0.22576488490128752
+112,5,0.30470820759863093,2.0,1.377491417098383,0.0006974720969405148,0.03644543855805605,0.8276247923071622,0,0.4853038592708494,0.20195554630097054
+112,6,0.2648503840624301,2.0,1.339687640571345,0.0007218743564981753,0.03594836801092491,0.8221717896648506,0,0.5054826277176048,0.20885777658462726
+112,7,0.3022354289946478,1.95,1.347326916825689,0.0007167023180776191,0.035969100644746885,0.8121071325160032,0,0.5511201732164096,0.2059578656936131
+112,8,0.3653302819500833,1.95,1.3481237573222713,0.0007127109124361537,0.03621537206328735,0.812227473994787,0,0.6456459061601558,0.19023973162006985
+112,9,0.3875784999549668,2.0,1.2458099706929295,0.0006344120016804739,0.033209529832018185,0.8080018784111718,0,0.7132292793545234,0.20762262737719148
+112,10,0.4430974162572709,2.0,0.9961855238321227,0.0008755838776620938,0.033466656790024134,0.7663718400814361,0,0.8322112382172863,0.20070973656785462
+112,11,0.4773170057738165,2.0,1.3206289884149365,0.0007173672075887555,0.03581691330840168,0.8193668491006189,0,0.9368918225668827,0.17520092249021144
+112,12,0.49296315142111913,2.0,1.1764185697097553,0.0007986272423631824,0.034272758615521565,0.7970593909548346,0,1.0,0.1765438380703971
+112,13,0.4612205777977054,2.0,1.178881568085138,0.0007881365759147638,0.034240383332775404,0.7974541146372801,0,1.0,0.204068592659018
+112,14,0.4628585260460518,1.95,1.3214927852580411,0.0007157073261277164,0.03539711788869225,0.8081329960671665,0,1.0,0.20952842015350592
+112,15,0.48985351626841633,2.0,1.3194921849066557,0.000713802186839485,0.03518347367926798,0.8191974795683599,0,1.0,0.2328450542280544
+112,16,0.49980627562601676,2.0,1.3327485519335438,0.000708755409476648,0.0355615608782092,0.821151135491519,0,1.0,0.2660209187533891
+112,17,0.5175349284213488,2.0,1.3431314014420859,0.0007051474165347214,0.035942700140693076,0.8226698470502339,0,1.0,0.25844976140449605
+112,18,0.5004895118973288,2.0,1.342630790554785,0.0007073595570549877,0.03625500311085378,0.8225974496894567,0,1.0,0.26829837299109605
+112,19,0.4846794158199653,2.0,1.3515075799929839,0.0007044423328960362,0.03623899938519181,0.8238882934719305,0,1.0,0.28226471939988423
+112,20,0.5265024068754584,2.0,1.3508120585552132,0.0007026103195022402,0.03586872321439376,0.823786821221655,0,1.0,0.28834135625152774
+112,21,0.5141898140307456,2.0,1.3502550887947056,0.0007044698250086847,0.035746431291849616,0.8237064957970579,0,1.0,0.3139660467691521
+112,22,0.5307227707803057,2.0,1.3579965710787323,0.000702246839559357,0.036005568268795876,0.8248272101452215,0,1.0,0.3024092359343524
+112,23,0.49298092540416716,2.0,1.3574007779951587,0.0007036821406696103,0.0360807416597162,0.8247415238860991,0,1.0,0.3099364180138905
+112,24,0.49740042048442834,1.95,1.35675242596874,0.000701971109156642,0.03636486273345528,0.8135366644605156,0,1.0,0.3246680682814277
+112,25,0.5158456720070336,2.0,1.3553508125593665,0.0007002795883265431,0.03597391223269571,0.8244440336253285,0,1.0,0.3194855733567785
+112,26,0.49968296476269436,2.0,1.3628593202992239,0.0006988777714296124,0.036182371343204525,0.8255277356350241,0,1.0,0.33227654920898103
+112,27,0.5437424322192705,2.0,1.3620922562617113,0.0006972942273005202,0.03591172108681542,0.8254167701246486,0,1.0,0.3458081073975684
+112,28,0.5426563168983007,2.0,1.361470504497733,0.0006986057591231965,0.036014220130447035,0.8253275332722719,0,1.0,0.3421877229943355
+112,29,0.5408789739898162,2.0,1.3607615815711194,0.0006996976090612287,0.03605627179393326,0.8252256249079212,0,1.0,0.3362632466327204
+112,30,0.5001432863961146,2.0,1.3600023650087838,0.0007006614792769032,0.03636454647614333,0.825116375532125,0,1.0,0.33381095465371535
+112,31,0.5028178455687667,1.95,1.3593055752298637,0.0006990636314260469,0.03633526732870693,0.8139227731396438,0,1.0,0.34272615189588895
+112,32,0.5096968821188719,2.0,1.3578997557045414,0.0006973779406360906,0.035785061609471695,0.8248118140339744,0,1.0,0.36565627372957266
+112,33,0.5497649641094459,2.0,1.3576497185358105,0.0006957405006060766,0.035876017464538126,0.8247752081188559,0,1.0,0.36588321369815285
+112,34,0.5146211608849911,2.0,1.3567842032195996,0.0006967532427292635,0.0357725393438136,0.8246503806505515,0,0.9997817258595086,0.3823615684706252
+112,35,0.5573937560228346,1.95,1.3558700476108545,0.0006950349076577754,0.03586716449077868,0.8134006697099707,0,1.0,0.3579791867427817
+112,36,0.5519683310691301,1.95,1.3551320675677285,0.0006974776554450975,0.03615006683373672,0.8132893750394916,0,1.0,0.3398944368971001
+112,37,0.5395859892711453,2.0,1.3548285799136024,0.0006996660617451196,0.03593970537752464,0.8243682572585764,0,1.0,0.33195329757048425
+112,38,0.5410754740063985,2.0,1.3547514473789406,0.0007009226886489147,0.03602760864334552,0.8243574532270636,0,1.0,0.3035849133546617
+112,39,0.5143926184402655,2.0,1.3543505921162788,0.0007029174117643195,0.03589206355436397,0.8242999827383025,0,1.0,0.3146420614675517
+112,40,0.5245561636807116,1.95,1.3613764897334755,0.0007011438599060964,0.036012739272456316,0.8142368437121147,0,1.0,0.3485205456023719
+112,41,0.5467396936597819,2.0,1.3667533798871143,0.0006999601238650828,0.03647041336212081,0.8260882038503635,0,1.0,0.3224656455326064
+112,42,0.49799047172236294,2.0,1.3667781527774199,0.0007012727870344757,0.0364206856345367,0.8260921400206308,0,1.0,0.3266349057412097
+112,43,0.5388403305114084,1.95,1.366191312564423,0.0006998614862923531,0.03643997715831988,0.8149636223710597,0,1.0,0.3294677683713612
+112,44,0.5244312686438831,1.95,1.3651351838039212,0.0007009530148657082,0.03599483775772587,0.8148046367935321,0,1.0,0.34810422881294345
+112,45,0.5470801730489688,2.0,1.370244020726425,0.0006999894999378201,0.036369368705539626,0.8265891296844761,0,1.0,0.3569339101632292
+112,46,0.545761933491714,2.0,1.3700154165724423,0.0007007190451535448,0.03616319950919524,0.8265565684001117,0,1.0,0.31920644497237993
+112,47,0.5403400543387792,2.0,1.3696735833077,0.000702041863420328,0.03639378452395843,0.8265079368016303,0,1.0,0.3011335144625973
+112,48,0.4949462456095524,2.0,1.3692418793848025,0.0007031681326885093,0.036409355253401415,0.8264463480301497,0,0.9950410353872615,0.3230994381821593
+112,49,0.5393785040517196,1.95,1.3687877892031175,0.000701822826483715,0.03646754138421505,0.8153554360422535,0,1.0,0.2979283468390652
+113,0,0.18146272286172377,1.95,1.3844862983607402,0.00070260277296999,0.03630934101975723,0.8177074031953833,0,0.21125231273065692,0.1565393258982033
+113,1,0.2035137042293699,1.9,1.3805262192124759,0.0006991452701669677,0.03655310564483106,0.8056399415448965,0,0.2849656047195991,0.1650915411384342
+113,2,0.16982256626150502,1.9,1.380147898912368,0.0006992238494963963,0.03653130041847261,0.805580720317853,0,0.29478678825195526,0.17302616986907637
+113,3,0.20719916974205124,1.8499999999999999,1.3815946885606591,0.0006991945266962709,0.03638997402399128,0.7938013272657194,0,0.32638784486771905,0.18881343931654543
+113,4,0.2561436036411198,1.8499999999999999,1.3812573851718815,0.000698716279442472,0.036644321269620424,0.7937459551217255,0,0.39854402793417637,0.18908664155816418
+113,5,0.28830340459003917,1.8499999999999999,1.3809584064715885,0.0006988226542112843,0.03646774949174301,0.7936970388652721,0,0.4820876899019959,0.18489442876413595
+113,6,0.28945957367835834,1.8499999999999999,1.3763690610664123,0.0006933762027375662,0.03635725576798673,0.7929427686706787,0,0.5246537829559494,0.1986602016532619
+113,7,0.34469243451257525,1.9,1.3758285148023184,0.0006929992464277789,0.036429500678852464,0.8049013685374646,0,0.6018941644460059,0.2131158957805764
+113,8,0.3937757867958901,1.95,0.9273257281957624,0.0007849982281997874,0.03155253445512522,0.7396009890490941,0,0.7195959936226423,0.186457964489444
+113,9,0.408601180717196,1.95,1.2764813973705889,0.0006621413540273462,0.03381063725981469,0.8010397762652904,0,0.7696857235131201,0.20242297103982637
+113,10,0.42963624070902456,2.0,1.0084258109855737,0.0009022825832027767,0.03377156256491639,0.7685657636004322,0,0.8407768561033826,0.17775166089223846
+113,11,0.43087507607574715,2.0,1.1827340252851233,0.0008126983658339848,0.03446602085018095,0.7980835707519968,0,0.8757066099074371,0.20197477370924094
+113,12,0.44288322992263046,2.0,1.3492594757696343,0.0006780987320743225,0.03574226830848361,0.8235542081675311,0,0.8985689847280751,0.21151878677133457
+113,13,0.5066961957894768,2.0,1.3524797935953108,0.0006816099426848469,0.0357288151531618,0.8240226920033341,0,1.0,0.18898731929825566
+113,14,0.49745941617159367,2.0,1.1722902596964875,0.0008105058177742689,0.03458008840443866,0.7963946464714862,0,1.0,0.15819805390531225
+113,15,0.472339604330805,2.0,1.1940205953380858,0.0007974917184380354,0.0349379709326859,0.799891372708696,1,1.0,0.17446534776934997
+113,16,0.47726005075137995,1.95,1.3696610601924126,0.0006905996693691322,0.03615239737382864,0.8154834941372096,0,1.0,0.19086683583793299
+113,17,0.4845501353124436,2.0,1.2376495479894167,0.0007706408825522556,0.03425750259783693,0.8067752063598694,0,1.0,0.2151671177081453
+113,18,0.5076347268246185,2.0,1.3547426325909009,0.0006821071874977848,0.03582746330962,0.8243507281356109,0,1.0,0.2254490894153951
+113,19,0.5066772707758155,2.0,1.353567051483857,0.0006810005498507375,0.03580390294671918,0.824180122352637,0,1.0,0.22225756925271833
+113,20,0.5056328232031209,2.0,1.3523917031014725,0.0006798376056756599,0.03571711309057578,0.8240094036576933,0,1.0,0.218776077343736
+113,21,0.5099831959744311,2.0,1.3511354356596035,0.0006787613707425863,0.03597188836510888,0.8238268358206995,0,1.0,0.19994398658143683
+113,22,0.4964037221300667,2.0,1.2345571010435703,0.0007832140819404869,0.03543975886907652,0.806296598046768,0,1.0,0.1880124071002225
+113,23,0.480379220003912,2.0,1.234145958265472,0.0007767671306050871,0.03488173090342327,0.8062303623810495,0,1.0,0.20126406667970642
+113,24,0.5086185592048775,2.0,1.350478207762849,0.0006785430643304676,0.03565653452229481,0.8237313645767789,0,1.0,0.19539519734959176
+113,25,0.5092044045011405,2.0,1.2267262255710996,0.0007866471240806686,0.034407715461607695,0.8050716963411048,0,1.0,0.19734801500380147
+113,26,0.4833530078041361,2.0,1.2469457026788644,0.0007744887580291821,0.035171856828040304,0.8082214358009139,0,1.0,0.21117669268045353
+113,27,0.4688409815147145,1.95,1.3506775794095363,0.0006785613090595156,0.0359268003378069,0.8126062568936111,0,1.0,0.2294699383823815
+113,28,0.5151872392262578,2.0,1.3485991040569365,0.0006778374333323079,0.03526805852210519,0.8234581513110034,0,1.0,0.217290797420859
+113,29,0.464815112583368,2.0,1.3553349208332597,0.0006804402691869087,0.0354925573509056,0.8244359904442196,0,1.0,0.21605037527789328
+113,30,0.4961856339481209,1.95,1.3542556151740848,0.0006799872899778754,0.03578527290053965,0.8131509346104274,0,1.0,0.25395211316040284
+113,31,0.49829894096011323,1.95,1.3567168112079362,0.0006827184219274217,0.03590897892111451,0.813525420563087,0,1.0,0.260996469867044
+113,32,0.5181021676961713,2.0,1.3591392514367986,0.0006857322390325133,0.03615100435697518,0.824987482840666,0,1.0,0.26034055898723774
+113,33,0.528341492062101,2.0,1.3587188524600047,0.0006849116443479541,0.03615590467142166,0.8249265389999421,0,1.0,0.26113830687366973
+113,34,0.5188198102593757,2.0,1.3637872470975634,0.0006862824008638201,0.03613207777378971,0.8256577200312029,0,1.0,0.22939936753125229
+113,35,0.4747748657507851,2.0,1.3677378298646152,0.0006879224664443519,0.03600358052774388,0.8262261342949635,0,1.0,0.2492495525026169
+113,36,0.5156075383888484,1.95,1.3668666827366804,0.0006875492648602909,0.03609150738854024,0.8150617333588661,0,1.0,0.252025127962828
+113,37,0.5222028950769659,1.95,1.3653942849205745,0.0006864081565502322,0.03607416383553931,0.8148393425499731,0,1.0,0.27400965025655294
+113,38,0.5182483163586629,2.0,1.3642989037657887,0.0006856107491076252,0.03621668465402865,0.8257311659269317,0,1.0,0.26082772119554287
+113,39,0.5058110865477563,2.0,1.363687225083106,0.0006850612659610631,0.03616958846634023,0.8256429701076491,0,1.0,0.28603695515918764
+113,40,0.5265832509328127,2.0,1.3661628477235515,0.0006871087880573615,0.03623212547826066,0.8259996537676372,0,1.0,0.2886108364427087
+113,41,0.5251507433253613,2.0,1.3649806304438215,0.0006861092111399888,0.03590772974393583,0.8258293874654964,0,1.0,0.28383581108453754
+113,42,0.525900951700766,2.0,1.3637114743047583,0.0006850529848580799,0.035833600301532174,0.8256464585327415,0,1.0,0.2863365056692201
+113,43,0.5329035069097214,2.0,1.3623477476023722,0.0006840405721590195,0.035917383527179075,0.8254497651635763,0,1.0,0.2763450230324047
+113,44,0.5239721920290571,2.0,1.366571080908017,0.0006867865635476753,0.0361441264108723,0.8260582263594879,0,1.0,0.2799073067635237
+113,45,0.5222834348478372,2.0,1.3652034975923137,0.0006859723291833305,0.03626816126732951,0.8258614019097119,0,1.0,0.27427811615945724
+113,46,0.48597487311573573,2.0,1.3637505388524676,0.0006850439815136181,0.03622725790801535,0.8256520793820313,0,1.0,0.2865829103857857
+113,47,0.48611697663280323,1.95,1.3629060856219404,0.0006844343553860117,0.035807809768690746,0.8144630418641655,0,0.9965237540598008,0.291691583362943
+113,48,0.5266446619556535,2.0,1.3613300195655165,0.0006834931317695693,0.036030747611083304,0.8253029219842006,0,1.0,0.28881553985217834
+113,49,0.5233375429808713,2.0,1.3605282300118546,0.0006828978328947185,0.035892537850361256,0.8251871196620353,1,1.0,0.27779180993623753
+114,0,0.18936452716017466,2.0,1.377595386032446,0.0007001888875903951,0.036211849504822265,0.8276403993288951,1,0.15566958335038494,0.25698897940006893
+114,1,0.1958919993092137,1.95,1.3774099617078972,0.0007004420586091627,0.036520611236611086,0.8166495708420074,1,0.18125643748714668,0.27796474771451674
+114,2,0.2396786927306615,2.0,1.3770027742703463,0.000699990196888166,0.03646166016926554,0.8275557890889412,1,0.2308249757633244,0.3244956747511059
+114,3,0.2553649352690346,2.0,1.3849215597508724,0.0006992950225354669,0.03649029543022003,0.8286827299369316,1,0.2712403153913196,0.35622936370835595
+114,4,0.23377461449019651,2.0,1.3847078937740263,0.0006990934606778516,0.036662858406042394,0.8286523369086334,1,0.3223257395328903,0.31614772892346793
+114,5,0.2797579192666335,1.95,1.385188156312056,0.000699403160352537,0.03671451478364678,0.8178110467636807,1,0.34665557434483096,0.3369856317623372
+114,6,0.31908115142920895,1.95,1.3849059370997574,0.0006992035782234941,0.036372085195465684,0.8177689339346268,1,0.3876304347933468,0.3800965917062341
+114,7,0.36058373748800265,1.95,1.384870110040269,0.0006991819885078065,0.03671745264544918,0.817763588386503,1,0.4373753760175177,0.4521119569366519
+114,8,0.3419112170691513,1.95,1.383320985406116,0.0006981084718867358,0.03655928263058515,0.8175322941394156,1,0.462934450098635,0.4557914567656576
+114,9,0.3469659791492329,2.0,1.3830053870028598,0.0006978943548149862,0.03647170175420568,0.8284101258139307,1,0.48107702657298373,0.44845056173346465
+114,10,0.4180501151996528,2.0,1.3827361699701792,0.0006977166720858745,0.03658516334922986,0.8283718035706135,1,0.5420361847905464,0.5041188042781142
+114,11,0.39745827539548984,2.0,1.383309097985436,0.0006983378338820571,0.03668490014567101,0.8284534191021244,1,0.5623169417349901,0.5084383290049791
+114,12,0.46230380684283096,1.95,1.3829096025940406,0.0006982011080871628,0.03643428915929346,0.8174709464600366,1,0.6060525247327996,0.5662759898323705
+114,13,0.4671685008789516,1.95,1.3792326939970756,0.0006969470102758935,0.03654594281449792,0.8169212911558779,1,0.6232393386144964,0.5929092181105102
+114,14,0.4911352564681843,2.0,1.3779661799171812,0.0006965043258987422,0.03651217040295764,0.8276922363409612,1,0.64930366821808,0.6380459639365076
+114,15,0.5093520195778658,2.0,1.3751980809424955,0.0007057373931636235,0.03652418501493029,0.8272997363510407,1,0.6707207396829363,0.6702124123489709
+114,16,0.4838309437098498,2.0,1.375039391880646,0.0007084992078741856,0.03664051235210423,0.8272778517608129,1,0.7045337405280677,0.6400581583287422
+114,17,0.5033863277939049,1.95,1.3737385312173844,0.0007089441380443042,0.036613948716705876,0.8161017491294164,1,0.7288219088893735,0.639525214127185
+114,18,0.5125033057592773,2.0,1.373957353384525,0.0007065116081806633,0.03631606271465045,0.8271226169646881,1,0.7321727235797355,0.6654473877579435
+114,19,0.5123830027864501,2.0,1.374340825360044,0.0007039627312584441,0.03636218158280915,0.8271767142983438,1,0.7849505338677164,0.6280092974645449
+114,20,0.5306902952207164,2.0,1.3730260057845034,0.000704324955859187,0.036497246466419726,0.8269887765318786,1,0.8470362488397147,0.6062526522827684
+114,21,0.5806350298848217,2.0,1.3490792267866463,0.0006757430672352026,0.035987855777359426,0.823527329481374,0,0.8786793816048609,0.6305442574762578
+114,22,0.5979635634292796,2.0,1.35200299284602,0.0006849732540520588,0.03603180919914689,0.8239545165027385,0,0.929262007951041,0.6208625341628771
+114,23,0.630489289494501,2.0,1.3498922738094954,0.0006823595651311466,0.03546468054954606,0.823647380712483,0,0.9980250605939809,0.6042642175230287
+114,24,0.6093003624268686,2.0,1.3581252294799078,0.0006839519847175435,0.03565010382963963,0.82484051250252,0,1.0,0.6310012080895617
+114,25,0.6264546962684925,1.95,1.3594512081118513,0.0006867628403297399,0.03580507414804247,0.8139411029352155,0,1.0,0.6215156542283081
+114,26,0.6235296348490909,2.0,1.3566192307902571,0.0006839693509586176,0.036232700897626355,0.8246228264254604,0,1.0,0.6117654494969694
+114,27,0.5887299987336779,2.0,1.3549563941920226,0.0006817632065885388,0.036166708901392085,0.8243815783430379,0,1.0,0.6290999957789265
+114,28,0.6160992452837517,1.95,1.3540201483927625,0.0006828488786476568,0.03607230130504184,0.8131160256617931,0,1.0,0.6536641509458391
+114,29,0.6356298913277104,1.95,1.35446706267838,0.0006857525863393336,0.03552124620455317,0.813184810754746,0,1.0,0.6520996377590347
+114,30,0.6394035247519649,2.0,1.3521330179893347,0.0006828584138211531,0.03559983651450775,0.8239727628276929,0,1.0,0.6646784158398827
+114,31,0.6350954245426961,2.0,1.3503921615086503,0.0006804139053482505,0.035493147423446836,0.823719413798798,0,1.0,0.6503180818089866
+114,32,0.6351740905556973,2.0,1.3476560781130495,0.0006773950303332727,0.03565395414470346,0.8233208885532629,0,1.0,0.6505803018523243
+114,33,0.6199073545620544,2.0,1.3446858970468822,0.0006743626388316776,0.03595337984722754,0.8228875364212891,0,1.0,0.6663578485401813
+114,34,0.6428970632937789,2.0,1.3459767735873522,0.0006775936296007837,0.03597617517269197,0.8230765360608663,0,1.0,0.6763235443125962
+114,35,0.644541237611298,2.0,1.3429455742614436,0.0006742796004511228,0.03546184623701922,0.8226337286698229,0,1.0,0.6818041253709932
+114,36,0.6427642930916366,2.0,1.339663416298662,0.0006709266625761457,0.0349317667568295,0.8221533495480239,0,1.0,0.6758809769721221
+114,37,0.6420030416395046,2.0,1.336146575811916,0.000667322352136427,0.03481718085170888,0.821637487770699,0,1.0,0.6733434721316817
+114,38,0.642461675447012,2.0,1.332388975602052,0.0006637304827679488,0.035261801305587544,0.8210850929787623,0,1.0,0.6415389181567068
+114,39,0.6318229399194453,2.0,1.3430815495637227,0.0006688404517973055,0.03585636184706946,0.8226519805215362,0,1.0,0.639409799731484
+114,40,0.6324911206011314,2.0,1.339307660185995,0.000665661360616984,0.03576931781815751,0.8220997858028815,0,1.0,0.6416370686704379
+114,41,0.619644767209055,2.0,1.3352910640986086,0.0006623682311104799,0.03531230339902181,0.8215106257548209,0,1.0,0.6654825573635168
+114,42,0.6403925150962649,2.0,1.337456127017236,0.0006648416306274637,0.034821313210308215,0.8218285943053147,0,1.0,0.667975050320883
+114,43,0.6421265960368194,2.0,1.3334119044826962,0.0006614155187194752,0.034644156051999615,0.8212346366299917,0,1.0,0.6404219867893979
+114,44,0.5918254286889689,2.0,1.3432990704498984,0.0006683142479708968,0.035402613049994695,0.8226835601358531,0,0.997801742118267,0.6423491061388737
+114,45,0.592599235965631,1.95,1.3451192557095957,0.0006698821710433917,0.03590432105388204,0.811755726674867,0,1.0,0.6419974532187701
+114,46,0.5901200508507612,2.0,1.3448801774782262,0.0006706255172829584,0.03509878521449993,0.8229147605927487,0,0.9970893208695653,0.6376144083431171
+114,47,0.5927424275352049,2.0,1.345814943037517,0.0006725948947224143,0.03554208304802679,0.8230515128089332,0,1.0,0.6424747584506828
+114,48,0.5996789609480149,2.0,1.345098732191981,0.0006737454683626921,0.03509449840818896,0.8229475166479652,0,1.0,0.6655965364933827
+114,49,0.6428134727824969,2.0,1.3438882052030863,0.0006745681214914922,0.03528012609215615,0.822771307890102,0,1.0,0.6760449092749894
+115,0,0.12660658267931957,2.0,1.3765343225043387,0.0007008045110680346,0.036263151211070085,0.8274891598766178,1,0.10809567054470495,0.2112277148714586
+115,1,0.1915416031929788,1.95,1.3764214473445833,0.0007012133087745825,0.03650652566171486,0.8165017423474196,1,0.1530136038692338,0.2677872054842842
+115,2,0.20797031231797988,1.95,1.375957424841158,0.0007015137526026468,0.03644894356300151,0.8164322992563036,2,0.1914796569524938,0.3045948317899411
+115,3,0.17151493961245493,2.0,1.3862943611198844,0.0007001722195526524,0.03638481949133648,0.8288777842514964,2,0.23666493455759374,0.2561632192980581
+115,4,0.21799123961626038,1.95,1.3861840129139003,0.0007001103536479127,0.03672234471541057,0.8179595891981449,2,0.25769023518110545,0.2830504851460607
+115,5,0.25212201782830906,1.95,1.3861728309289494,0.0007000868583443144,0.03669942414419798,0.8179579171786294,2,0.28592601817387964,0.2925053685291907
+115,6,0.19896558791120206,1.95,1.3862309754858784,0.0007001475690172533,0.03643264949596553,0.8179665929830464,2,0.3079346545923865,0.25263908691415815
+115,7,0.2841551196987066,1.9,1.386256032135051,0.0007001479601166872,0.03676949919332502,0.8065358818519216,2,0.35709755023027595,0.30438699868865404
+115,8,0.3424719323434799,1.9,1.3862747278728222,0.0007001896269703393,0.036556903380904573,0.8065388120416155,2,0.4119162638098619,0.32568475606511704
+115,9,0.3787194846545617,1.9,1.3859614992703158,0.0007002372507490448,0.03662135521341731,0.8064899479153168,2,0.47721083186345936,0.35945050636392645
+115,10,0.2970283411610804,1.9,1.3857078186361096,0.0007002414864218908,0.036767257350205716,0.8064503557672625,2,0.49906262171514204,0.3246776415834119
+115,11,0.28722386160179625,1.8499999999999999,1.3858083093959348,0.0007000895411265122,0.03646447876064775,0.7944904545044531,2,0.507176610454519,0.28117739139996223
+115,12,0.3750694854854483,1.9,1.3858003995973962,0.0006999474098282468,0.03676720327765216,0.806464714352405,2,0.5642074386596047,0.3312883667386881
+115,13,0.40097461726926215,1.9,1.385919639350012,0.0007002211451209369,0.03673950430485447,0.8064834099814479,2,0.5988604289707486,0.3714348189365423
+115,14,0.46643253100906995,1.9,1.3859015423197016,0.0007004825039230891,0.036363220703587676,0.8064806671802555,2,0.668695769961312,0.3965140767484837
+115,15,0.4303261403866976,1.9,1.3853197338212553,0.0007014011775567878,0.03673327878509776,0.8063901352247931,2,0.6887118336915763,0.41613802303355696
+115,16,0.5058916476063586,1.8499999999999999,1.3859110663894365,0.0006999082324010252,0.03669388447443706,0.7945071724801833,2,0.7422035824741898,0.4300340487222755
+115,17,0.4205990760450211,1.8499999999999999,1.3857300430102881,0.0006998817101696371,0.03670730092839773,0.7944776073661759,2,0.7602487911955264,0.388331865222702
+115,18,0.42334322906871114,1.7999999999999998,1.385756537440813,0.0007008197938014083,0.036722575919437936,0.7819656470099957,2,0.8039035287723106,0.3392727251992895
+115,19,0.531923060583802,1.8499999999999999,1.3750818438766972,0.0006976746432287244,0.03637215296709427,0.7927327603581212,2,0.8559170239411338,0.3651875033578284
+115,20,0.4525612274761972,1.8499999999999999,1.373483623149954,0.0006972254387315128,0.036379108984850236,0.7924698900437285,2,0.8774904548338762,0.3385501518088222
+115,21,0.502219581622313,1.7999999999999998,1.3753405348280974,0.0006963180504900488,0.03649075146253729,0.7801830077853922,2,0.9086844143954317,0.3624860528804675
+115,22,0.5467341715448881,1.7999999999999998,1.3756652909516285,0.0006951719195531982,0.036490241547118454,0.7802383045292713,2,0.9530577645780761,0.3850368857121919
+115,23,0.5745535950217424,1.7999999999999998,1.3773164718409234,0.0006984211111807233,0.03629672547554898,0.7805224089357108,2,0.9832158565226871,0.4375575080422252
+115,24,0.620643062966308,1.7999999999999998,1.34509911315391,0.0006904845467597225,0.03556413314478401,0.774950727404656,2,1.0,0.4688102098876933
+115,25,0.5801495226989829,1.7999999999999998,1.3484116489074047,0.0007015512577436907,0.03614362357249345,0.7755317674268929,2,1.0,0.5004984089966095
+115,26,0.6429730162449072,1.7499999999999998,1.350857357293178,0.000697674084166504,0.03631012380124181,0.7626480703772714,2,1.0,0.5432433874830243
+115,27,0.6251716615106138,1.7499999999999998,1.3521414734747337,0.000707177244469581,0.035844827415729676,0.7628838756478639,2,1.0,0.5839055383687122
+115,28,0.5644344867870901,1.7999999999999998,1.348314112319526,0.0007065001727901423,0.03582355750291198,0.7755165107067782,2,1.0,0.5481149559569667
+115,29,0.6303671789085903,1.7499999999999998,1.3558111047257129,0.0007024353415452816,0.03586147047837143,0.7635453301023415,2,1.0,0.6012239296953006
+115,30,0.6671514654966949,1.7499999999999998,1.348009878071788,0.0007269482314010952,0.036481082182061086,0.7621428595381754,2,1.0,0.6238382183223162
+115,31,0.6525551306138657,1.7499999999999998,1.3443960175324634,0.000727318650588526,0.036359872203482926,0.7614872488970785,2,1.0,0.6751837687128854
+115,32,0.6662296701020043,1.7999999999999998,1.3439170919730714,0.0007358533649610812,0.036250746843653994,0.7747603481612926,2,1.0,0.7207655670066809
+115,33,0.6812597262139635,1.8499999999999999,1.3438264049004078,0.0007423154735919268,0.03637425916383672,0.7875651987752019,2,1.0,0.7708657540465446
+115,34,0.6941168689210415,1.9,1.3432238017415528,0.0007475870102158411,0.036545659763420904,0.7997478192103139,2,1.0,0.8137228964034717
+115,35,0.7318553571432825,1.95,1.3820566665587393,0.000700513163263461,0.03669833534882437,0.8173443338819986,2,1.0,0.8395178571442754
+115,36,0.6402848226095292,1.95,1.3808656153484515,0.000700625164041092,0.036665145652240314,0.8171664850346458,2,1.0,0.8009494086984307
+115,37,0.7031456376496823,1.9,1.382500495485873,0.0006999626767082582,0.036618938323923926,0.8059491512155929,2,1.0,0.8438187921656077
+115,38,0.6874343426170225,1.9,1.3827274442299715,0.0007017918313278448,0.036724389362234766,0.8059852144880815,2,1.0,0.858114475390075
+115,39,0.7209646883138138,1.95,1.3828333678990217,0.000700506961785165,0.036467501980862106,0.8174602591936101,2,1.0,0.9032156277127124
+115,40,0.729672387814873,1.95,1.3829235259897494,0.0007019239381036447,0.03666895351518192,0.8174741349621851,2,1.0,0.9322412927162433
+115,41,0.6694637722353456,2.0,1.3825630239334135,0.0007032184903119913,0.036457050018242794,0.8283487502406078,2,1.0,0.8982125741178189
+115,42,0.7336100544880004,1.95,1.3841380164346164,0.0007022768389016389,0.0366247659267102,0.8176553846578779,2,1.0,0.9453668482933347
+115,43,0.7159922718443963,1.95,1.3835617367469322,0.00070326728148211,0.03664191958273604,0.8175697439244028,2,1.0,0.9533075728146542
+115,44,0.75,2.0,1.3837650813173399,0.0007019860787331035,0.03641823863278543,0.8285192496483073,2,1.0,1.0
+115,45,0.75,2.0,1.3831982844763027,0.0007026275853211957,0.03655462757654746,0.8284388892858047,2,1.0,1.0
+115,46,0.7799999999999999,2.0,1.3823139172448538,0.0007032795296645635,0.036455284052116954,0.8283133449470985,2,1.0,1.0
+115,47,0.6873149037146729,2.0,1.3817668584266876,0.0007047618917214949,0.03674479745317181,0.8282359553144342,2,1.0,0.9577163457155763
+115,48,0.7257066290526311,1.95,1.383425364325187,0.0007035529825547954,0.03667013860178646,0.817549488402454,2,1.0,0.9856887635087701
+115,49,0.7284256458023559,1.95,1.3836771986385208,0.0007022597250832407,0.03656222192056057,0.8175866638403458,2,1.0,0.9947521526745196
+116,0,0.07960789057231352,2.0,1.3844497951502266,0.0007026463302633894,0.03630863794127933,0.8286166960811223,0,0.19959515992002003,0.16589942201435176
+116,1,0.16348786097058335,1.95,1.3861381796402195,0.0007002321591016785,0.03672711560768319,0.8179528007214698,0,0.22810252644377024,0.1741561679769175
+116,2,0.22289975785686417,1.95,1.3801600720693825,0.0006990681188967349,0.03654372313758436,0.8170605839840559,0,0.32239627275726435,0.14647082917986148
+116,3,0.2567860214008954,1.95,1.3802879746719259,0.0006999598352140124,0.03641951776948395,0.8170799676940599,0,0.40939601591370656,0.14342538345137595
+116,4,0.28473263471237326,1.95,1.3764403875286746,0.0007049610367991913,0.036632140480821605,0.8165057030776062,0,0.5001061192348975,0.14896729006138096
+116,5,0.3170326360589518,1.95,1.3758475895808946,0.0007052624913795782,0.03652861769837422,0.8164169613347333,0,0.5750725327496621,0.1566787431969566
+116,6,0.3401902146274483,1.95,1.3751350674876337,0.0007055299978378209,0.03640167642283091,0.8163102244511633,0,0.6448664443842854,0.14081212291244716
+116,7,0.34680150133859305,1.95,1.2913457536741437,0.0006969460871289732,0.03504457923482994,0.8034091816393255,0,0.6882597218264288,0.1716587086934049
+116,8,0.3943100898967792,2.0,1.2901741923674475,0.0006945176163362934,0.03440756742431135,0.8148085808988256,0,0.7465007076351408,0.18569935614240954
+116,9,0.43416155101418324,2.0,1.2928648925903883,0.0007002695714964982,0.0343316609805677,0.8152159846807535,0,0.8377400948687466,0.19688504355561534
+116,10,0.42464548456956,2.0,1.2373841430460144,0.0007799654287173658,0.03536007863818248,0.8067367369318368,0,0.8578022201046951,0.20508198842560646
+116,11,0.47031513902820554,2.0,1.3652317529381537,0.0007043673930849726,0.03642711443066946,0.8258707561837381,0,0.9295433704267841,0.19499263619163967
+116,12,0.4925298499777771,2.0,1.2258932274978598,0.0007818092664729798,0.03479380049205467,0.804939420484526,0,0.9868230482408015,0.19266876893818852
+116,13,0.50188137101276,2.0,1.226859006755329,0.000772581539435375,0.03455175296049981,0.8050881186755073,0,1.0,0.2062712367091997
+116,14,0.48402545951751696,2.0,1.3651601758244123,0.000704427820125015,0.03632272809836859,0.8258604799447826,0,1.0,0.21341819839172305
+116,15,0.49111447529136426,2.0,1.3658610219300031,0.0007094689393880783,0.03600116220657336,0.825962698382765,0,1.0,0.23704825097121407
+116,16,0.49811376843128585,2.0,1.366045458985083,0.0007141487401273211,0.03641689171539333,0.8259905545666484,0,1.0,0.26037922810428604
+116,17,0.4796745893631039,2.0,1.365823276537197,0.0007182863538848772,0.03664441478672082,0.8259598075040671,0,1.0,0.2655819645436796
+116,18,0.526053662289421,2.0,1.3643721246390754,0.0007186245878887329,0.03663072553592214,0.8257512027741951,0,1.0,0.25351220763140314
+116,19,0.520316122454778,2.0,1.3665445577077626,0.0007147690854023436,0.036517246246145406,0.8260624567005684,0,1.0,0.2677204081825933
+116,20,0.5189523229678463,2.0,1.3702482060139338,0.0007114718746285147,0.03655952969480996,0.826593021323778,0,1.0,0.2631744098928208
+116,21,0.5002865273685484,2.0,1.3729701526989748,0.0007087372512487465,0.03623523952626956,0.8269820476694425,0,1.0,0.26762175789516135
+116,22,0.5179990764815402,2.0,1.372861694693717,0.0007118594414346493,0.0364759617653473,0.8269674221750762,0,1.0,0.25999692160513405
+116,23,0.48681462674966075,2.0,1.374888078602208,0.0007092510677477931,0.03668589274753585,0.8272564445421166,0,1.0,0.2893820891655358
+116,24,0.5136231354404505,1.95,1.3737305084595857,0.0007094772318924319,0.036593479860875015,0.8161007050872763,0,1.0,0.31207711813483485
+116,25,0.5317849283085407,1.95,1.3731664723190262,0.0007126727923580955,0.03666679630632019,0.8160169987778569,0,1.0,0.30594976102846916
+116,26,0.5314448277536175,2.0,1.374812114452085,0.0007099634948553586,0.0362988052934157,0.8272457923769134,0,1.0,0.2714827591787248
+116,27,0.4854234466416052,2.0,1.3773132528355778,0.0007075084107538678,0.03636061972484418,0.8276022374708463,0,1.0,0.28474482213868385
+116,28,0.5262995987570274,1.95,1.3762976602813577,0.0007077842951442839,0.03646909883472983,0.816485164183955,0,1.0,0.2543319958567576
+116,29,0.5260373245677906,1.95,1.3777243384948827,0.000705903537279287,0.036590676005366723,0.8166982739475144,0,1.0,0.25345774855930187
+116,30,0.504970221062574,2.0,1.3788201902742885,0.0007041299048210087,0.03662070633124203,0.8278161731930728,0,1.0,0.28323407020858016
+116,31,0.5266811943229829,1.95,1.378983505563264,0.0007060537854442631,0.03660039225415561,0.8168867438167925,0,1.0,0.2889373144099429
+116,32,0.5263885416697354,1.95,1.3803433021461733,0.0007046191358764222,0.036240288936489985,0.8170896295174753,0,1.0,0.2879618055657844
+116,33,0.5338117228595448,2.0,1.3813653287828362,0.0007032968284952286,0.03663538867676937,0.8281784087602977,0,1.0,0.2793724095318159
+116,34,0.4817749346294177,2.0,1.3823751097568167,0.0007021312685623006,0.03650257780837059,0.8283217204043171,0,1.0,0.2725831154313921
+116,35,0.4844406782044381,1.95,1.381663480967355,0.000702236417799608,0.0367233894683198,0.8172861415347286,0,1.0,0.28146892734812684
+116,36,0.5132848916888654,2.0,1.3807362854101193,0.0007023430343422735,0.036674420465339766,0.8280886065205099,0,1.0,0.3109496389628845
+116,37,0.5331521554705645,2.0,1.3809706774101298,0.0007040229277706466,0.03657641027334856,0.828122449717538,0,1.0,0.3105071849018815
+116,38,0.5182766661844068,2.0,1.381892212342367,0.0007028089329091162,0.036738176634773044,0.8282532319584999,0,1.0,0.3275888872813561
+116,39,0.5002061360576946,2.0,1.3818317884783853,0.0007042070065855188,0.036507223004404996,0.8282450342713605,0,1.0,0.33402045352564863
+116,40,0.530434998049342,2.0,1.3811049201928272,0.0007044799995100401,0.03646947779717381,0.8281416865144142,0,1.0,0.36811666016447314
+116,41,0.5485654769663927,2.0,1.3808859306060854,0.0007059537579264719,0.03675160935442721,0.8281109365718279,0,1.0,0.32855158988797556
+116,42,0.5040720154172222,2.0,1.3819725890034715,0.0007045593779171881,0.03663643664433154,0.8282651631961783,0,1.0,0.34690671805740725
+116,43,0.5263855153039516,1.95,1.3812730069482546,0.0007048569421350507,0.03657642444740526,0.817228607854602,0,1.0,0.35461838434650544
+116,44,0.5280131947628517,1.95,1.380862485973728,0.0007063784474115863,0.03637395782012096,0.8171677366292187,0,1.0,0.36004398254283904
+116,45,0.5076517797316888,2.0,1.3804375102633875,0.0007076466546246292,0.03675595902434391,0.8280475796736767,0,1.0,0.35883926577229625
+116,46,0.5549969192804131,1.95,1.3798972779430188,0.0007079663491728863,0.03644358117218177,0.8170239607046823,0,1.0,0.34998973093470986
+116,47,0.5295692307394133,1.95,1.3807573699260838,0.0007064152629500318,0.036555557773196926,0.8171520422833095,0,1.0,0.36523076913137753
+116,48,0.5121456739302412,1.9,1.3803108215464692,0.0007076059942816547,0.036775065842533775,0.8056088614146412,0,1.0,0.37381891310080423
+116,49,0.5528768289509647,1.95,1.379456144689055,0.0007083597875680665,0.03675983513558398,0.816958121576976,0,1.0,0.3762560965032153
+117,0,0.1889010609940116,1.95,1.3765572440165654,0.0007041231173455009,0.036334905797027924,0.8165229592901755,1,0.1458003905945128,0.26860301585402163
+117,1,0.2052874983308031,1.9,1.3762786547038246,0.0007043704713846938,0.03657072988532471,0.8049756169843275,1,0.1860148148647065,0.30293857461640167
+117,2,0.19432476414932778,1.95,1.3758694352188232,0.0007034696273498007,0.036451144065055105,0.8164196981198101,0,0.20910881967234324,0.3022707876013016
+117,3,0.20804698468961172,2.0,1.3785369741250675,0.0007053679833555897,0.03648989892926774,0.8277761537985271,0,0.23667390532188132,0.311258075202864
+117,4,0.20042858718740697,2.0,1.3804166930287607,0.0007042387591817321,0.03667325239033352,0.8280436451156009,0,0.2553507754254397,0.327627590057437
+117,5,0.20317551315658372,2.0,1.3805762490456315,0.0007032668840007137,0.0366286040808854,0.8280660859508995,0,0.24955061982208285,0.34451755075916857
+117,6,0.2858727680672958,2.0,1.3806166028760491,0.0007023693586352235,0.03641835933002055,0.8280715755968401,0,0.34352421566283137,0.3282102726738774
+117,7,0.2718352874712999,2.0,1.380513949329361,0.0007033761627825734,0.036620132484892806,0.8280572471122232,0,0.36660043303741674,0.35065038085444405
+117,8,0.3182435990618699,2.0,1.382027378712404,0.0007026445758862665,0.036715120267896015,0.8282724117412719,0,0.4302056876810132,0.35387107996488215
+117,9,0.3144623738704732,2.0,1.3491325066443978,0.000713160182263892,0.03637538668832768,0.8235459475386347,0,0.44747367724099796,0.3849096765802467
+117,10,0.3027615531890487,2.0,1.3501971185425246,0.0007093760148743418,0.03625108397468939,0.8236995024857142,0,0.4617547080441316,0.39353223323798675
+117,11,0.3707345914951074,2.0,1.3566681755925085,0.0007058950224843475,0.0361983425744385,0.8246362462016387,0,0.5261750735458572,0.4008818735892151
+117,12,0.3363602552401711,2.0,1.385526910349972,0.0007000030952027366,0.0364184630838203,0.8287688540149599,0,0.5362669082210113,0.4061783065058885
+117,13,0.42414457616895035,1.95,1.3853285266625939,0.000700030102750998,0.036679014567675076,0.8178321472781072,0,0.6377136900660949,0.39686366714170784
+117,14,0.46507836738226943,2.0,1.017488302857721,0.0010116427289398702,0.035528615814962174,0.7702125188179008,0,0.7539282260239435,0.37835692324230674
+117,15,0.498203680892099,2.0,1.0192137611741034,0.0010039391809485133,0.03552559473023963,0.7705150327075408,0,0.8485945792766402,0.36255283060480964
+117,16,0.4673927260008256,2.0,1.3388229776069893,0.0007362024563620487,0.03630591410820386,0.8220495280907626,0,0.8750421255514752,0.3912529192674518
+117,17,0.503293222724317,1.95,1.3377671967715594,0.0007374015391161286,0.036239729385319074,0.8106504235276265,0,0.9001960696468082,0.41071598288531247
+117,18,0.488943545789561,2.0,1.15758897144456,0.0005334324790090429,0.030370849446198715,0.7939097870180524,0,0.9072090515898424,0.4201997505120801
+117,19,0.5024479332556485,2.0,1.1806017473691748,0.0005440719402404076,0.03071844710260796,0.7976530437202294,0,0.9427447630474002,0.4178334267889615
+117,20,0.5730307498588513,2.0,1.1955489819887366,0.0005528840374278888,0.03142678487497284,0.8000576559967931,0,1.0,0.41010249952950395
+117,21,0.5639690448168994,2.0,1.1891733562967166,0.000546982311098072,0.0314143164927488,0.799033929728926,0,1.0,0.37989681605633085
+117,22,0.5422031094875457,2.0,1.3405125731424277,0.0007240231698715106,0.03619424541397277,0.8222929951586102,0,1.0,0.407343698291819
+117,23,0.5663107068784005,2.0,1.1390422356323144,0.0005013752126645127,0.029315485654508217,0.7908480759109802,0,1.0,0.38770235626133465
+117,24,0.5179581423161348,2.0,1.3405868972352495,0.0007137967195067103,0.03600883298080431,0.8223008670697561,0,1.0,0.39319380772044926
+117,25,0.564950733120453,1.95,1.3388208152543648,0.0007141586531823267,0.03587167207474364,0.8108049663225485,0,1.0,0.3831691104015098
+117,26,0.5597369308191062,1.95,1.3373230989489655,0.000710018201415138,0.03605463513265543,0.8105738377987269,0,1.0,0.3657897693970205
+117,27,0.5508212620114842,2.0,1.336547369430732,0.000705882710184228,0.03594042974819203,0.8217075150290016,0,1.0,0.369404206704947
+117,28,0.5109126735856248,2.0,1.3475214366170167,0.0007022045416690366,0.036105988275371516,0.823308520537966,0,1.0,0.3697089119520825
+117,29,0.5510547759492985,1.95,1.3459687894561998,0.0007023936974112753,0.03593677033729638,0.8118954387615845,0,1.0,0.3368492531643283
+117,30,0.5006823971969554,1.95,1.344139589066836,0.0006991153937395204,0.03564339717403006,0.811614919148656,0,1.0,0.33560799065651775
+117,31,0.5457758174822032,1.9,1.3425989566454388,0.000699331096167417,0.035715056696499006,0.7996322680208353,0,1.0,0.319252724940677
+117,32,0.5401945823437734,1.9,1.3405006920882705,0.0006960425688240632,0.03571361037690066,0.799294816538229,0,1.0,0.3006486078125778
+117,33,0.5287057532929783,1.95,1.3392646601752545,0.0006931093087760279,0.035663283950394184,0.8108665866091606,0,1.0,0.29568584430992745
+117,34,0.49034772634892404,2.0,1.3492693655547772,0.0006915383326490328,0.03581788057791459,0.8235595511036992,0,1.0,0.30115908782974676
+117,35,0.5352398464393694,1.95,1.3487981599321484,0.0006918202199025882,0.035883458307451536,0.812323938534044,0,1.0,0.28413282146456464
+117,36,0.5114725400678836,1.95,1.3466954383703105,0.000689219749696073,0.03546119348356036,0.8120023662386813,0,1.0,0.30490846689294526
+117,37,0.5320773455777102,1.9,1.3483114059658248,0.000693956827034179,0.035871186779362366,0.8005442369029679,0,1.0,0.2735911519257007
+117,38,0.5269347014651706,1.9,1.3462277140253893,0.0006914639253358727,0.03579761200667286,0.8002105217588695,0,1.0,0.2897823382172354
+117,39,0.4890244601584669,1.95,1.354170009059104,0.0006905101479769749,0.03589403999299282,0.8131411253315617,0,0.9993337018954692,0.2976365980009307
+117,40,0.5329696962266566,1.9,1.3537757096562137,0.0006908466431067556,0.035925202906694424,0.8014143168884019,0,1.0,0.30989898742218835
+117,41,0.5385584781449785,1.9,1.3596900394934015,0.0006902539904525854,0.035867804146344565,0.8023537133199033,0,1.0,0.2951949271499281
+117,42,0.5355561631555515,1.95,1.3585639809197918,0.000688488627919092,0.03614910707851126,0.8138072259503357,0,1.0,0.285187210518505
+117,43,0.5236515280160213,2.0,1.3580937459597822,0.0006872123522685314,0.035997800438978086,0.8248369058840077,0,1.0,0.27883842672007114
+117,44,0.4842878695478021,2.0,1.3640097852527155,0.0006881882513244018,0.03590650553396807,0.8256903000234187,0,1.0,0.2809595651593403
+117,45,0.5258313813980867,1.95,1.3630696764864858,0.0006880289695049052,0.036100098625087756,0.814488847569591,0,1.0,0.28610460466028903
+117,46,0.52223014667101,1.95,1.3669124672673671,0.0006886464597840041,0.03612341291042273,0.8150689654051064,0,1.0,0.2741004889033663
+117,47,0.5078880153571769,2.0,1.3703175650571655,0.000689831770056134,0.036251931246964096,0.8265967593537408,0,1.0,0.29296005119058954
+117,48,0.5269070957052638,2.0,1.3725742267013379,0.0006920722218804877,0.03624535469115978,0.826920619915523,0,1.0,0.289690319017546
+117,49,0.49035814165730424,2.0,1.3751787003170521,0.0006929652201152323,0.03634353172621075,0.8272933176066272,0,0.9920250494141284,0.3118270729721761
+118,0,0.12114753874903264,1.95,1.3850348868621911,0.0007016811307604432,0.03631832892342444,0.817788887977836,0,0.13702941161071472,0.22111924701582253
+118,1,0.2067055818973202,1.9,1.385135876742115,0.0007014261827794706,0.03672295508617397,0.8063614367144388,0,0.24304598287841472,0.19829062915318096
+118,2,0.2337611216612898,1.9,1.3799952456558144,0.0007019484937174584,0.03659024934455952,0.8055576641329579,0,0.32273856278040736,0.2155523218304228
+118,3,0.2646179797511666,1.9,1.375474812889551,0.0007041022766118446,0.036558661362009595,0.8048493067731575,0,0.4058600906205213,0.20757981167652678
+118,4,0.31017211670756634,1.9,1.3731942711958043,0.0007044671355255889,0.0365592084813478,0.8044909748880182,0,0.5162496018278779,0.17890758658805064
+118,5,0.2628961853721332,1.9,1.3665175577679571,0.0007072368510464733,0.036289752981170334,0.8034395658026013,0,0.5172769556188248,0.18661801041534432
+118,6,0.2994957206575471,1.8499999999999999,1.3702506546406796,0.0007050058920587956,0.03614075422082088,0.7919402528737701,0,0.5594961503288058,0.18565753508674915
+118,7,0.35007794440337736,1.8499999999999999,1.3703759462220821,0.0007029486798770458,0.03641613323755861,0.7919602186352889,0,0.6420159717920412,0.17757185228853628
+118,8,0.3930423058620596,1.8499999999999999,1.2765987377702475,0.000742543231381274,0.03480476470323264,0.7761003423204421,0,0.7362962735691382,0.16174598811468127
+118,9,0.3549969646585084,1.8499999999999999,1.276451839317671,0.0007483113760070069,0.03496243903976023,0.7760768197476109,0,0.7585143436497733,0.1719707573286634
+118,10,0.39854167301347576,1.7999999999999998,1.293353435528397,0.0007389521793204237,0.03573932444012194,0.7658153793028606,0,0.7952354105275483,0.2014916960081881
+118,11,0.4519793967020599,1.8499999999999999,0.9318261350484125,0.0009086470637546003,0.03241548363468093,0.7106706471469909,0,0.8640239292844792,0.221232749960894
+118,12,0.45399435494206164,1.8499999999999999,1.361698958946024,0.0007048179269362738,0.03631669078769985,0.7905276020846342,0,0.9028579435903473,0.24283725835307562
+118,13,0.5129105442043256,1.9,1.3616902763045782,0.0007021475509103333,0.03632295249026981,0.8026744911364802,0,0.9903305127178574,0.2225944637239418
+118,14,0.5065110445766426,1.9,1.3607289986376785,0.0007020920307952554,0.03632439336918676,0.8025221742447738,0,1.0,0.18837014858880885
+118,15,0.46172333824917894,2.0,1.2216825994404745,0.0007537937562985088,0.03468603568939491,0.8042686322969629,0,1.0,0.2057444608305964
+118,16,0.5072568084463783,1.95,1.3675611233010554,0.0007016446408195524,0.036223142174130675,0.8151706351894404,0,1.0,0.22418936148792756
+118,17,0.5117937951250208,1.95,1.3673645475094713,0.000704780348297385,0.03632144545007118,0.8151419607905912,0,1.0,0.23931265041673563
+118,18,0.5145710143717749,2.0,1.3672960541383663,0.0007076098856742065,0.036397599098409936,0.8261683513955598,0,1.0,0.2152367145725829
+118,19,0.48842162058885696,2.0,1.366653902217015,0.0007078686040351823,0.03630194767284252,0.8260761842825052,0,1.0,0.2280720686295231
+118,20,0.5077643508452773,1.95,1.3664085079063648,0.0007054537779532846,0.03645461479614113,0.8149980591107472,0,1.0,0.2258811694842573
+118,21,0.49060670385433824,2.0,1.3657631932952277,0.000708235771237295,0.03626882532896576,0.8259482806779046,0,1.0,0.23535567951446074
+118,22,0.5009691001079611,2.0,1.3658833366468253,0.000705699282968244,0.03626127952112505,0.8259648223120246,0,1.0,0.2698970003598704
+118,23,0.5254571473760182,2.0,1.3653809659865201,0.0007035393457984022,0.03622871533966423,0.8258919750707394,0,1.0,0.2515238245867272
+118,24,0.5201719995959057,2.0,1.364432724337244,0.0007040934302264123,0.036387571641466124,0.825755740520298,0,1.0,0.23390666531968538
+118,25,0.4870881174743339,2.0,1.3634123688786892,0.0007046396290328519,0.03634216816696596,0.8256090369945905,0,1.0,0.22362705824777945
+118,26,0.5117576271657821,1.95,1.3628440335477385,0.0007023902040183791,0.03627801421302619,0.8144590916810373,0,1.0,0.23919209055260676
+118,27,0.5163988388289743,1.95,1.3622479552135853,0.0007051676152866915,0.03616460413165952,0.8143698378658923,0,1.0,0.22132946276324741
+118,28,0.5145212256811473,2.0,1.3612525967999327,0.0007057894288826169,0.036130243459065584,0.8252981885449092,0,1.0,0.21507075227049102
+118,29,0.4644349859760141,2.0,1.3607668971584408,0.0007061817841688886,0.036168656434350646,0.8252282619533385,0,0.9964245428804521,0.2195505627461109
+118,30,0.5051886910358149,1.95,1.3665595638928238,0.0007041390051651815,0.03636939399249005,0.8150204372425516,0,1.0,0.21729563678604963
+118,31,0.5026658607601899,1.95,1.3659841788902494,0.0007068324151518826,0.03641831599163785,0.8149344876749285,0,1.0,0.20888620253396617
+118,32,0.4605954714526431,2.0,1.3656580663630469,0.0007091613915810697,0.03627592088613414,0.825933433500357,0,1.0,0.20198490484214365
+118,33,0.5034209537995398,1.95,1.370924861991216,0.0007068537452885413,0.03638675118259906,0.8156784703436498,0,1.0,0.21140317933179914
+118,34,0.4902335224389358,1.95,1.3701457860336614,0.0007088720550183528,0.03643243745133119,0.8155619169136713,0,1.0,0.23411174146311925
+118,35,0.5125683785913272,2.0,1.3699358893476647,0.0007067697941663581,0.03648780848623273,0.8265469019806345,0,1.0,0.24189459530442384
+118,36,0.47081336835782067,2.0,1.3698454869298227,0.0007081205383760128,0.03644645225332161,0.8265343281908051,0,1.0,0.23604456119273545
+118,37,0.4961293680727183,1.95,1.3738993557545724,0.000706416487624839,0.03645440359431172,0.816125125776127,0,1.0,0.25376456024239413
+118,38,0.5156315145327365,1.95,1.3733710589044898,0.0007048341616505147,0.03625401543385675,0.8160453586567281,0,1.0,0.25210504844245485
+118,39,0.5149373748827244,2.0,1.3729220099390171,0.000706044310758556,0.03654533804385486,0.826974388510746,0,1.0,0.24979124960908125
+118,40,0.5139108178739275,2.0,1.3727286982263256,0.00070689158870439,0.03640675368616773,0.8269469687251876,0,1.0,0.24636939291309135
+118,41,0.5210094528477178,2.0,1.372191600874332,0.0007078046295862313,0.03657624143815259,0.8268703549602817,0,1.0,0.2700315094923925
+118,42,0.508523378992321,2.0,1.3715898058577491,0.0007086427533701444,0.03642893620522848,0.82678442764217,0,1.0,0.2950779299744033
+118,43,0.5305831355750014,2.0,1.3713932500412378,0.0007067379115156296,0.036461751046615684,0.8267557310317526,0,1.0,0.30194378525000454
+118,44,0.5378889513485002,2.0,1.3707417319389932,0.0007075555160735868,0.03650484145015409,0.8266626280876871,0,1.0,0.29296317116166715
+118,45,0.530797774007274,2.0,1.3701740434870633,0.0007088780955609533,0.03642143902140845,0.8265816472260127,0,1.0,0.2693259133575799
+118,46,0.5243121732244089,2.0,1.3695612181323686,0.0007100445121883579,0.03638731207183456,0.8264941190766514,0,1.0,0.24770724408136313
+118,47,0.5130860872675129,2.0,1.3689308684661703,0.0007110268782865352,0.03652662600585212,0.8264039891894114,0,1.0,0.2436202908917096
+118,48,0.49936707923921225,2.0,1.3682931282565693,0.0007121451264873712,0.036418259966006686,0.8263128006374785,0,1.0,0.264556930797374
+118,49,0.4844567904504171,2.0,1.3681849406060513,0.0007099942255726355,0.03647808641039165,0.8262966555635951,0,1.0,0.28152263483472373
+119,0,0.01733085683614806,2.0,1.374246423861586,0.0007072957185190727,0.03631897322556992,0.8271641716716056,1,0.1412902937318568,0.1693824644780178
+119,1,0.025308016746392298,1.95,1.3856921874326698,0.0007007300578268037,0.03671925058467317,0.8178865287030871,1,0.18393796780034138,0.1391094320875192
+119,2,0.1300449397817175,2.0,1.385659970751375,0.0007008147585309042,0.03673463851931478,0.8287879662766484,1,0.21173316280698143,0.11783891552974969
+119,3,0.21940764964345438,2.0,1.3855788460643548,0.0007010188446829706,0.03634077681513458,0.8287765124224823,1,0.28560621230426975,0.1838838824058216
+119,4,0.23034578713913256,2.0,1.3854794024349204,0.0007011922749490572,0.03671029951327387,0.8287624495377439,1,0.3237539657053539,0.20281400285663664
+119,5,0.2729767995194389,2.0,1.3847920799007736,0.0006991754025792017,0.03670876442617712,0.8286643132356745,1,0.3686219098139067,0.2517601186462539
+119,6,0.24583169646588163,2.0,1.3846428579422019,0.0006991266486819157,0.03638045734506557,0.8286431118518626,1,0.378821655937485,0.24767678030295875
+119,7,0.287051786395789,1.95,1.3847421097545614,0.0006993518148161103,0.03666736104607335,0.8177445628226925,1,0.41281741106161823,0.27308273990380566
+119,8,0.2802915453174152,1.95,1.3849827774088364,0.0006995337464148923,0.03662368658778405,0.8177804830214953,1,0.44193866896935996,0.2783869257655706
+119,9,0.29167601835349916,2.0,1.3846881452991482,0.000699463246031221,0.03642066420882252,0.828649637862302,1,0.4696847177530927,0.2793404375075401
+119,10,0.29578164074314717,2.0,1.3843906038709135,0.000699368483437726,0.03663761244210654,0.8286073590816082,1,0.48185763291236916,0.2767952919273317
+119,11,0.3126154652974597,2.0,1.3840071775455522,0.0006992847438081669,0.03671078704812453,0.8285528752950657,1,0.515185332228207,0.2884711080205896
+119,12,0.3822915825332442,2.0,1.3835557854245315,0.0006991545505120473,0.03652863533740307,0.8284887071768001,1,0.5621215538936782,0.3581432032525762
+119,13,0.41807265265708404,2.0,1.3839770861081406,0.0007001348518888394,0.03664867291474397,0.8285488421990619,1,0.6039066954271617,0.42169991495406456
+119,14,0.396242315282348,2.0,1.3789993256095472,0.0006969131301044695,0.03655319196997661,0.8278396479509891,1,0.6103876867411481,0.44029080195296233
+119,15,0.43690144931642005,1.95,1.3795566350611765,0.0006964578398504928,0.03656508367273353,0.8169695888060211,1,0.6415710886402901,0.46757671286768004
+119,16,0.47873209977502035,1.95,1.378242789611123,0.0006958529643863085,0.03650808654005143,0.8167728662619018,2,0.6879165636534009,0.5118849143788666
+119,17,0.43700184311703844,1.95,1.3858950364677343,0.000699933169369728,0.036581262472861996,0.8179165033846747,2,0.7343658264956193,0.4775183750626357
+119,18,0.516940236771456,1.9,1.3860751206721578,0.0007000173447329918,0.036580971950746166,0.80650761086424,2,0.7732737121783586,0.5254358396670414
+119,19,0.470270228891289,1.9,1.3861842326993616,0.0007001435463600396,0.036643377921932646,0.806524676948856,2,0.8165423176157849,0.47884433948325006
+119,20,0.5532929800856619,1.8499999999999999,1.3456319190034198,0.0006992123034981068,0.0356104155737705,0.7878527075017931,2,0.8621887904621235,0.528058213002708
+119,21,0.5512162778584262,1.8499999999999999,1.3406322282324363,0.0006975336022359813,0.03615005120354142,0.7870152896806984,2,0.891306219229087,0.5489793005559711
+119,22,0.5598916711294524,1.9,1.343802289279431,0.0006938229966427993,0.036142621921600684,0.799823233314711,2,0.8944227606759194,0.5737418895302817
+119,23,0.6151602891153525,1.95,1.3467260099828648,0.0006909620122958237,0.03606759640070574,0.8120075650069206,2,0.95246099921051,0.6139196314371614
+119,24,0.6483719512019513,1.95,1.3431539768698593,0.000750850910760876,0.03665150823184336,0.8114800060907207,2,1.0,0.6612398373398377
+119,25,0.5881425328991998,1.95,1.341119336217549,0.0007549509083042757,0.03659680035862789,0.8111698050905256,2,1.0,0.6271417763306661
+119,26,0.646406232190365,1.9,1.3495201700127484,0.0007467121563232218,0.03631725342665891,0.800754008411035,2,1.0,0.6546874406345498
+119,27,0.5842463035818138,1.9,1.3465717030410471,0.0007511372653114118,0.036752399092439714,0.800284586620667,2,1.0,0.6141543452727128
+119,28,0.6648532704045148,1.8499999999999999,1.3535847404926336,0.0007436376821307927,0.03654464511151484,0.789193687834627,2,1.0,0.6161775680150496
+119,29,0.6461003662798857,1.8499999999999999,1.350628997139438,0.0007472421116176142,0.03652817858443165,0.7887027306819632,2,1.0,0.6536678875996187
+119,30,0.6285675254229709,1.9,1.3485480325292152,0.0007504667431765079,0.036309678715826396,0.8006000601817161,2,1.0,0.6618917514099028
+119,31,0.5902035169974474,1.95,1.3533954370557433,0.0007422001822039279,0.036324921917899974,0.8130391212247918,2,1.0,0.6340117233248248
+119,32,0.6750525771166712,1.9,1.3601493123345278,0.0007348975256315517,0.036269477700384946,0.802440690746894,2,1.0,0.6501752570555708
+119,33,0.5808857865748841,1.9,1.3575693634158137,0.0007380795770699324,0.0367335324404182,0.8020323837187423,2,1.0,0.6029526219162804
+119,34,0.5696552141332366,1.8499999999999999,1.3626005991845584,0.0007321570534575253,0.03667446753588738,0.7906859184157298,2,1.0,0.565517380444122
+119,35,0.6309717693964804,1.9,1.3335964827878646,0.0006856412893804442,0.03524791152232709,0.7981815851852185,2,1.0,0.603239231321601
+119,36,0.6665773528743066,1.9,1.3637973144903714,0.0007306288520291214,0.036436860321769,0.8030170187380402,2,1.0,0.6219245095810221
+119,37,0.6531858961405883,1.9,1.3618296435720325,0.0007325283505217625,0.03647853484547787,0.8027061872578546,2,1.0,0.6772863204686274
+119,38,0.666839497434708,1.95,1.3601114976480864,0.0007357149601068932,0.036796022644161555,0.8140558972168243,2,1.0,0.7227983247823601
+119,39,0.60886863745541,2.0,1.3589262124608699,0.0007375423060282986,0.03669561402751807,0.8249716840433444,2,1.0,0.6962287915180332
+119,40,0.667283502360466,1.95,1.3635475579025973,0.000731064648832837,0.03643048043797954,0.8145740438969216,2,1.0,0.7242783412015532
+119,41,0.704751152434547,1.95,1.3612106870601595,0.0007339715821924184,0.0365929900601814,0.8142216954456929,2,1.0,0.749170508115157
+119,42,0.7075148386490566,1.95,1.3593031847427925,0.0007368295973467367,0.036802813231456295,0.8139338503394138,2,1.0,0.7583827954968554
+119,43,0.7118654957728962,2.0,1.3572941375127425,0.0007392686748128763,0.036562007130445516,0.8247363972626455,2,1.0,0.772884985909654
+119,44,0.7242090451286001,2.0,1.3557593094317328,0.0007405483121790958,0.03676851070740154,0.8245148033004146,2,1.0,0.8140301504286669
+119,45,0.6342818333908747,2.0,1.3805643932692755,0.0007074979674467558,0.03655586729777362,0.8280656027932121,2,1.0,0.7809394446362492
+119,46,0.7194530417156012,1.95,1.3536623117402482,0.000742272838348045,0.03632255566890478,0.813079706609546,2,1.0,0.798176805718671
+119,47,0.7075232772120299,1.95,1.350026047274057,0.0007451920883401769,0.036645780456851906,0.8125273232482606,2,1.0,0.8584109240400996
+119,48,0.718698706740374,2.0,1.3812692776224955,0.0007053979740562474,0.036757587285349606,0.8281653383703312,2,1.0,0.8956623558012463
+119,49,0.7541961315505027,2.0,1.3803880941166533,0.0007061809660238731,0.036558782811961524,0.8280401260547158,2,1.0,0.9139871051683423
+120,0,0.17461807569147303,2.0,1.3850609674875431,0.0007016549818268644,0.03634087148190648,0.828703190434032,0,0.1827316849124918,0.20508467242158762
+120,1,0.1375767740577971,1.95,1.3849358890692016,0.0007017633857584235,0.036713053067120895,0.8177741603457739,0,0.1831909372051438,0.21433466391913195
+120,2,0.23267168947932915,1.9,1.3850119389364262,0.0007014944275773006,0.0367364312584223,0.8063421053132073,0,0.29841068079186345,0.21102472387527926
+120,3,0.25769242088350447,1.9,1.3684387604049746,0.0007039049850308854,0.03655216130011657,0.8037417426267265,0,0.3826697559550547,0.18208172833827527
+120,4,0.21907180892416778,1.9,1.3762235595562697,0.000703680046463937,0.036621878558923106,0.8049667506719569,0,0.39207239494959123,0.20747616981443756
+120,5,0.23040197080165564,1.8499999999999999,1.3675768947113711,0.0007001519719499999,0.03612597992319681,0.7914977491071116,0,0.3992125824508904,0.23572312607099813
+120,6,0.2706923190096708,1.9,1.3678404314511796,0.0006982405264098551,0.03616918270230991,0.8036455568040947,0,0.4354348771286457,0.25506122719404156
+120,7,0.32239601287363906,1.9,1.3726701939642902,0.0006988147487478086,0.036368082522523375,0.8044067534698549,0,0.5235480990023655,0.24325591090897625
+120,8,0.37340021222815045,1.9,1.371872753042499,0.0006988337007720379,0.036349419375020134,0.804281262392864,1,0.6436509622572634,0.21979942441748376
+120,9,0.37999305491299595,1.9,1.3817302646375098,0.0006997513174414915,0.036470307186887194,0.8058285963423728,1,0.6569777142873675,0.2573398973268298
+120,10,0.3489889249628969,1.95,1.3813864553802446,0.0006989728010332666,0.03662821155435507,0.8172437949230235,1,0.682610657069014,0.21981554045097088
+120,11,0.3922813251881223,1.9,1.3829185286249273,0.0006990445853547057,0.036551181425405734,0.8060142340989466,1,0.7048727632937365,0.23444073290209239
+120,12,0.37075448915131615,1.9,1.382466333779195,0.0006984473985698521,0.0366110538425391,0.8059433344610935,1,0.7437292137354846,0.2108760121904077
+120,13,0.3876650293995689,1.8499999999999999,1.383608225048006,0.0006986784447359304,0.03666087373099113,0.7941305407760192,1,0.7477639892894254,0.22853144561266237
+120,14,0.4543867407443033,1.9,1.3831707903862538,0.0006986188957150939,0.03647848401584708,0.806053540417526,1,0.7971193390080463,0.2851300171369492
+120,15,0.43142092345118377,1.9,1.3834773562931564,0.0006993303074281415,0.0366459014557814,0.8061016841362293,2,0.809527660860478,0.29203286368997505
+120,16,0.4100337947976703,1.8499999999999999,1.3789801939178519,0.0007049116740894352,0.03664624564225771,0.793374930457232,2,0.8384593803970047,0.24883347546289475
+120,17,0.5227901817156329,1.7999999999999998,1.38044908769082,0.0007036186073610712,0.03668061354647223,0.7810603545124151,2,0.8914285718842705,0.28739584320641554
+120,18,0.4348725966738064,1.7999999999999998,1.3789568675312953,0.0007038586803391675,0.03628355776747,0.780805152445365,2,0.8970132493976543,0.25355765638248223
+120,19,0.5536801147118681,1.7499999999999998,1.3802690541997114,0.0007024700760588726,0.0365983803735908,0.7679325772223018,2,0.9625872351435137,0.2954840688482085
+120,20,0.5225820249243829,1.7499999999999998,1.3785760609585056,0.0007025359889165586,0.03659573472500518,0.7676307519491439,2,1.0,0.3086067497479427
+120,21,0.5273690086612305,1.6999999999999997,1.3797083867603852,0.0007010259169591991,0.03663497461790175,0.7541946333083969,2,1.0,0.32456336220410154
+120,22,0.4864109454934394,1.7499999999999998,1.3800924492061126,0.0006997197053752494,0.036256376828291845,0.7679001221871901,2,1.0,0.28803648497813117
+120,23,0.5772442906736651,1.6999999999999997,1.3815101954898819,0.0006990635591666614,0.03641014318012154,0.7545277818524668,2,1.0,0.3241476355788836
+120,24,0.4877502955485977,1.6999999999999997,1.3799095283224965,0.0006987162819070215,0.036563330544138094,0.7542310637908739,2,1.0,0.29250098516199224
+120,25,0.5734959630481475,1.6499999999999997,1.3807925641360985,0.0006980585664589069,0.0365776941864633,0.7402346835074622,2,1.0,0.3116532101604917
+120,26,0.5773225956816715,1.6499999999999997,1.3790490393865213,0.0006974592672665923,0.036213014759124126,0.739899054779836,2,1.0,0.32440865227223864
+120,27,0.559020651987989,1.6999999999999997,1.377235930458712,0.0006969112407065234,0.036532492248889555,0.7537344612411828,2,1.0,0.36340217329329644
+120,28,0.5481261676142892,1.7499999999999998,1.3787719237664469,0.0007001121620949724,0.03660733748984792,0.767664822302538,2,1.0,0.3937538920476307
+120,29,0.6072252057844968,1.7999999999999998,1.3798884019661402,0.0006989891131613056,0.036614298813537435,0.7809628754603802,2,1.0,0.42408401928165596
+120,30,0.5912776949140872,1.7999999999999998,1.3179536310827555,0.0006780436096006047,0.03535148830513296,0.7701767888653679,2,1.0,0.4709256497136237
+120,31,0.5257462812076054,1.8499999999999999,1.3126273930921706,0.0006751407291114831,0.03551056894084813,0.782275703764574,2,1.0,0.41915427069201777
+120,32,0.5867101150352747,1.7999999999999998,1.3237840839534276,0.0006735557712403183,0.03569305126991161,0.7712055955000207,2,1.0,0.45570038345091557
+120,33,0.5737538515034943,1.7999999999999998,1.3167761348446667,0.0006695628672453956,0.03467442573542866,0.7699652962434341,2,1.0,0.47917950501164785
+120,34,0.5330276898406762,1.8499999999999999,1.3204725222561715,0.0006678617239524558,0.03463997444178488,0.7836064617069805,2,1.0,0.4434256328022537
+120,35,0.5250169889111178,1.7999999999999998,1.3298941073698733,0.000668112767469147,0.03473793981518324,0.7722799926876047,2,1.0,0.4167232963703926
+120,36,0.6186866783658376,1.8499999999999999,1.3341479743514317,0.0006668150158551877,0.03574040841393264,0.7859160251138315,2,1.0,0.46228892788612536
+120,37,0.529828039880434,1.8499999999999999,1.3423723987828604,0.0006792789222810913,0.03593802783756925,0.7873007215189376,2,1.0,0.43276013293478016
+120,38,0.5199638375671662,1.7999999999999998,1.3465218944135586,0.0006781766953441702,0.036096421086862805,0.7751944766669994,2,1.0,0.3998794585572207
+120,39,0.5033369062367393,1.8499999999999999,1.3726883543770576,0.0006972202287843208,0.03598101637833627,0.7923390669214467,2,1.0,0.3444563541224644
+120,40,0.5891522278349051,1.9,1.3746370204663718,0.000696104392968262,0.036200661281001724,0.8047151700041554,2,1.0,0.36384075944968375
+120,41,0.494172558202495,1.9,1.3727757731188925,0.0006955433664821512,0.03635914620881634,0.8044223350419023,2,1.0,0.3139085273416499
+120,42,0.5315160244137048,1.8499999999999999,1.373784812825615,0.0006944281794013774,0.03598050053833285,0.7925184998234686,2,1.0,0.3383867480456827
+120,43,0.5932732075503243,1.8499999999999999,1.3748696923946695,0.0006937385285745038,0.03655004794060488,0.7926966064768886,2,1.0,0.37757735850108115
+120,44,0.5979940321716489,1.8499999999999999,1.3727165634824317,0.0006927419858290657,0.036373689305913066,0.792342234688615,2,1.0,0.39331344057216316
+120,45,0.5104023947818573,1.9,1.3703304738615092,0.0006915830851641843,0.036175042726872816,0.8040360889638035,2,1.0,0.36800798260619094
+120,46,0.5707494536892461,1.8499999999999999,1.371651170529681,0.0006912402119304199,0.03627070437928849,0.7921663900768393,2,1.0,0.40249817896415335
+120,47,0.5109152828626867,1.8499999999999999,1.3466743418856362,0.0006781708882211337,0.03553077769364322,0.7880198570123513,2,1.0,0.36971760954228894
+120,48,0.5488219196868397,1.7999999999999998,1.3757565391167943,0.0006990453269907358,0.036522383517706244,0.7802552783803858,2,1.0,0.39607306562279887
+120,49,0.6110411626950384,1.7999999999999998,1.3771175496258001,0.0006978311325267442,0.03628668949117042,0.7804881280730447,2,1.0,0.43680387565012796
+121,0,0.17917329557708883,1.7999999999999998,1.3826613960351368,0.0007037186802160101,0.0363155233619755,0.7814384694129844,0,0.20208363699266346,0.16113280260007812
+121,1,0.16356374971323234,1.7499999999999998,1.3813554702315445,0.000701291855187488,0.03663545038261788,0.7681257136789627,0,0.22648610946281234,0.1765643530936914
+121,2,0.17555443466917858,1.7999999999999998,1.3813181942893336,0.0007006015962276007,0.036533746840150524,0.7812079085027374,0,0.24307855211027193,0.19441004608356602
+121,3,0.2240111661370075,1.8499999999999999,1.3814364609260879,0.0006999507651038018,0.03651178865198848,0.793775674825379,0,0.31093862231142466,0.19878572404145878
+121,4,0.25046500197291566,1.8499999999999999,1.3811495487004626,0.0006999345356749635,0.03667014727427783,0.7937286992109246,0,0.3765110371907334,0.19953529032207426
+121,5,0.2764137983740934,1.8499999999999999,1.3806543005130787,0.0006999543604488303,0.036414292146375274,0.7936476101667079,0,0.4329815122821099,0.21073731153749814
+121,6,0.2967409561583645,1.8499999999999999,1.3679051182472937,0.0006907730257459688,0.03601536294799207,0.7915488153250476,0,0.48882081006268946,0.20404210711096235
+121,7,0.3148585887396675,1.8499999999999999,1.3669908281282555,0.000690474942859893,0.03604980678235094,0.7913978194739975,0,0.5430909581582929,0.19207401825450107
+121,8,0.3632536110561997,1.9,1.3585676436930383,0.0007014647992637973,0.03643891721082085,0.802179218942847,0,0.6583615332339547,0.16636332587539276
+121,9,0.3964765162846027,1.9,1.279683140762111,0.000692354995998375,0.034015942551546004,0.789359314197557,0,0.753298819460046,0.15052329500194772
+121,10,0.387352292286515,1.9,1.2804318149805853,0.0006982375484606774,0.03486858438824259,0.789485725525053,0,0.7932729621440948,0.166810358096257
+121,11,0.4495244461347322,1.95,1.2789491493813805,0.0006951465364013501,0.03507305620870525,0.8014432867795791,0,0.894150503372398,0.13954748261924327
+121,12,0.4740231822117231,2.0,1.2273697861829316,0.0007800186894139641,0.03437138772107995,0.8051705916820107,0,0.9855232256223793,0.13271297320923806
+121,13,0.4519846488549674,2.0,1.2292960301852607,0.0007713722706181033,0.03438179374506685,0.8054698761475427,0,0.9996851710777955,0.173701934746164
+121,14,0.45896733357858893,2.0,1.229540958852876,0.0007786007712969793,0.035043249793055245,0.805510515589113,0,1.0,0.19655777859529638
+121,15,0.48632349353104426,2.0,1.2294330568724117,0.0007851095271323584,0.035438451489822456,0.8054956502418453,0,1.0,0.22107831177014745
+121,16,0.5085887476259946,2.0,1.3150320223954628,0.0007375614104456484,0.035560640791973165,0.8185429889635278,0,1.0,0.19529582541998203
+121,17,0.5004766165845314,2.0,1.218470539699615,0.0007928376877978586,0.034835531697051454,0.8037748100759032,0,1.0,0.16825538861510422
+121,18,0.49352291027934636,2.0,1.2392473413372698,0.0007802524386648494,0.034812686328247806,0.8070271563574165,0,1.0,0.17840970093115452
+121,19,0.4772040565603574,2.0,1.2394313613978587,0.0007716822208837496,0.03456828904396991,0.807053143911646,0,1.0,0.1906801885345246
+121,20,0.46143297659033705,2.0,1.2376014628735557,0.0007725488108918996,0.03498363199050432,0.8067683051768088,0,1.0,0.20477658863445672
+121,21,0.5009479162607058,2.0,1.3174923157254668,0.0007298623676220424,0.035316467509993794,0.8189058473681466,0,1.0,0.16982638753568596
+121,22,0.489364251786414,2.0,1.2374287481435773,0.0007973891211327315,0.03564980021459298,0.8067491242709963,0,1.0,0.16454750595471335
+121,23,0.48062614681750165,2.0,1.2377990833900574,0.0007888920448737377,0.035088459322153924,0.8068042059346187,0,1.0,0.2020871560583387
+121,24,0.5119146815299888,2.0,1.3186685579781217,0.000722625673304617,0.036052579846382354,0.8190780727712139,0,1.0,0.20638227176662924
+121,25,0.4643423019795503,2.0,1.3181890111441061,0.0007262951274269612,0.036001304227570696,0.8190080861205908,0,1.0,0.21447433993183412
+121,26,0.5070022947822732,1.95,1.3305107057126653,0.0007202799683929175,0.0356218484808908,0.8095287873073862,0,1.0,0.19000764927424407
+121,27,0.45966277136658806,2.0,1.2251567964418335,0.0007968533219610171,0.035424918917890076,0.8048284923130644,0,1.0,0.1988759045552934
+121,28,0.4810128001056424,2.0,1.227460407378874,0.0008041193921199611,0.035566669614859825,0.805192367987231,0,1.0,0.20337600035214132
+121,29,0.5049570194251045,2.0,1.3311200915227808,0.000715021539222063,0.035821030401619845,0.8209136939648036,0,1.0,0.1831900647503483
+121,30,0.48078327949521693,2.0,1.2162147929171656,0.000807417965420441,0.03493460298105427,0.8034233934243841,0,1.0,0.20261093165072297
+121,31,0.4881022462563879,1.95,1.3312341575384408,0.0007112183899707198,0.03601343517536854,0.8096375195531313,0,1.0,0.22700748752129274
+121,32,0.5079423902130756,2.0,1.3291629291251144,0.0007084504103051346,0.03545311737332439,0.8206238476306208,0,1.0,0.22647463404358542
+121,33,0.5050101196369899,2.0,1.3291855368687973,0.0007091030794125046,0.035373797009011006,0.8206273676176176,0,1.0,0.21670039878996628
+121,34,0.5065352060620022,2.0,1.3279772447676588,0.000709965734905971,0.03553994253588822,0.8204496945765389,0,1.0,0.18845068687334066
+121,35,0.4826146536944589,2.0,1.2039118388556793,0.0008067808126348439,0.034842381014996066,0.8014728769832521,0,1.0,0.20871551231486274
+121,36,0.5071850324804206,1.95,1.3277747368154034,0.0007073488015103058,0.035971046892587524,0.8091025711331041,0,1.0,0.19061677493473528
+121,37,0.48926343048703225,2.0,1.1872816343131856,0.000803711487341846,0.03472312984739867,0.7988125187156034,0,1.0,0.2308781016234407
+121,38,0.5142007469069837,2.0,1.3276179597491011,0.0007058932277200508,0.03545191509081289,0.8203955613528192,0,1.0,0.21400248968994565
+121,39,0.469677944500017,2.0,1.328025379825278,0.0007109346077802705,0.03540253254305691,0.8204570707826517,0,1.0,0.2322598150000565
+121,40,0.4934579390628655,1.95,1.3390730827475754,0.0007066597022020173,0.03569249898549373,0.8108413608585293,0,1.0,0.24485979687621823
+121,41,0.5176335913686942,1.95,1.3371089517257717,0.0007039645512956367,0.03609101301564359,0.8105390953576213,0,1.0,0.225445304562314
+121,42,0.468465298308398,1.95,1.3372823790160073,0.0007080723093281668,0.0358467891946917,0.8105669878471755,0,1.0,0.2282176610279933
+121,43,0.5079484279297378,1.9,1.3469445924969599,0.0007046655531225053,0.03569986144809293,0.8003293264004291,0,1.0,0.2264947597657925
+121,44,0.49347166138710497,1.9,1.344958809040618,0.0007055963359158218,0.036099781315724,0.8000121022201779,0,1.0,0.24490553795701653
+121,45,0.4657617628241557,1.95,1.3440679800728759,0.0007028712649841433,0.03617278871571833,0.811605118730436,0,0.9883519459134293,0.2347366148626133
+121,46,0.5113734339782714,1.9,1.3533558117052054,0.0007003811764470418,0.036220041076054955,0.8013505175010158,0,1.0,0.23791144659423782
+121,47,0.4728914446801938,1.9,1.3515075398172576,0.0007009859213061493,0.03575675516885266,0.8010563239118105,0,1.0,0.24297148226731252
+121,48,0.5156348665909174,1.8499999999999999,1.3588312176857125,0.0006990912603816302,0.03603624087081201,0.7900504267424939,0,1.0,0.25211622196972466
+121,49,0.5164562842196936,1.8499999999999999,1.3570128885094817,0.0006995167885485204,0.036214764273809257,0.7897488013618359,0,1.0,0.22152094739897865
+122,0,0.1295015749823848,1.9,1.3729181973759355,0.0007081008122332023,0.03630678691234214,0.8044486921362064,1,0.10917719507925899,0.2194356565022707
+122,1,0.1443803370573441,1.8499999999999999,1.3730353318882167,0.0007081097337838287,0.03658398499009823,0.7923997347931673,1,0.132284148429885,0.2382222589513004
+122,2,0.19345971063558412,1.9,1.3724714962738904,0.0007086196892050203,0.03644418802093154,0.8043785748795285,1,0.1799646095994556,0.2715795559860063
+122,3,0.18838062771416678,1.9,1.3727149413931352,0.0007070619662559949,0.036487149386863225,0.8044163888724798,1,0.20039618143705243,0.294073850464486
+122,4,0.25457571485948544,1.95,1.3845009889503626,0.0006991061986874067,0.036713172236486694,0.8177085505885819,1,0.2523083621371516,0.3455079000154161
+122,5,0.2923446604298466,1.95,1.3843922458759057,0.0006991614533723659,0.03666042930453185,0.8176923571208418,1,0.30052055267678734,0.40712146453043885
+122,6,0.2653198836531656,1.95,1.383147481965125,0.0006995548546553192,0.03638987998660861,0.8175068422130267,1,0.3086684459144373,0.4061750176246356
+122,7,0.34007369690767947,1.9,1.3831180326711097,0.0006999444400277093,0.03669323159373701,0.8060457070668259,1,0.3823982649002685,0.4570479698252401
+122,8,0.3239586862341881,1.9,1.3827345219843732,0.0007001488713675177,0.03645744164179451,0.8059858074281109,1,0.4183575472309388,0.45538555780604184
+122,9,0.3390650932607731,1.95,1.383302848718325,0.0007000365194290399,0.0365508311958871,0.8175301638474415,1,0.44455559542028433,0.4708095169755312
+122,10,0.3844669726335736,2.0,1.3830688066772983,0.0007001771051048049,0.036694191970144625,0.8284197894725125,1,0.4617494398474299,0.5325573223153388
+122,11,0.3755087746663607,2.0,1.384239429165619,0.0007000741561258613,0.03673101453158737,0.8285860890613083,1,0.46945984808003194,0.5590827847811597
+122,12,0.3668994558350809,2.0,1.3838842684094692,0.0007001525148386477,0.03643317709964135,0.8285356615362363,1,0.5035811803520179,0.5182232789809125
+122,13,0.42057672537209795,2.0,1.383693907216331,0.0006996045102320408,0.03662770744265563,0.8285084605882771,1,0.540573862490386,0.5478239345864785
+122,14,0.41528753266552687,2.0,1.3846143489972935,0.000699615756596665,0.03670400308230435,0.8286392026262689,1,0.5647126088951983,0.5646749636914918
+122,15,0.4823873640473878,2.0,1.384225055663188,0.0006996023683858898,0.036409139585885604,0.8285839135476772,1,0.6078336106581795,0.6308463992803867
+122,16,0.4549938597590897,2.0,1.3558271399468138,0.0007041376244279219,0.03634161722358901,0.8245140811709396,1,0.6539589892886928,0.6113675468120418
+122,17,0.4612918788312228,1.95,1.3534423603288837,0.0007036539388384912,0.03611831116132192,0.8130345352646573,1,0.6885318282714996,0.58626382507541
+122,18,0.5383562505102046,2.0,1.37704311656879,0.0006962922692918608,0.03628099018043988,0.8275604907330337,1,0.7338884524330567,0.6493362317899398
+122,19,0.5472576501919406,2.0,1.3496352741812647,0.0007028127214520927,0.035715268563255666,0.8236159904503623,1,0.7594841269250658,0.678213331406381
+122,20,0.5665712229376383,2.0,1.3511787451128028,0.0007116350317954643,0.03612855102314063,0.8238426633455413,0,0.7888623044689068,0.7034210038335849
+122,21,0.6098966441359681,2.0,1.3862943611198844,0.0007001722195526525,0.03648857448905585,0.8288777842514964,0,0.8849411734695268,0.6864005824938579
+122,22,0.6230437844063885,2.0,1.3525314267652266,0.0006838336115129607,0.0359726347181987,0.8240308240504317,0,0.9478403102127589,0.6796922010709496
+122,23,0.6238127200812018,2.0,1.350470265748213,0.0006814365504674747,0.03540368498001224,0.8237310516687121,0,0.974818250454686,0.7129513996644248
+122,24,0.6093254882671286,2.0,1.3524356336639056,0.0006853857256319783,0.035568769246292924,0.8240173833870879,0,0.9829096822039637,0.7205387179518106
+122,25,0.6563913334973986,2.0,1.3509204686160645,0.0006861271830757295,0.035642269762078974,0.82379777253241,0,1.0,0.7213044449913287
+122,26,0.6170450521819304,2.0,1.3488365169913112,0.0006834477161130766,0.03578609253159099,0.8234942934555552,0,1.0,0.7234835072731012
+122,27,0.6574194775084046,1.95,1.3471624469453034,0.0006841085029920893,0.03600261821586528,0.812072086762624,0,1.0,0.7247315916946819
+122,28,0.6418235800844245,1.95,1.3440375139556022,0.0006809491374707894,0.03521936413172065,0.8115937562442156,0,1.0,0.7394119336147483
+122,29,0.6583056487772043,2.0,1.3460235581222852,0.0006856296450554586,0.0354648883992613,0.8230856891456488,0,1.0,0.7276854959240143
+122,30,0.6231877024390239,2.0,1.3446862062782572,0.0006828418655592371,0.035285725356790046,0.8228900530624786,0,1.0,0.7439590081300796
+122,31,0.6628592168862171,1.95,1.3430577365863545,0.0006840080655029274,0.035455788921426576,0.8114448294487923,0,1.0,0.7428640562873902
+122,32,0.6495732903793694,1.95,1.33969782399729,0.0006804853983169069,0.03588910167920948,0.8109291374759979,0,1.0,0.7652443012645644
+122,33,0.6546060847830115,2.0,1.3414685205894932,0.0006853818272533587,0.035791521936141185,0.8224213556438572,0,1.0,0.7820202826100383
+122,34,0.6408410082968454,2.0,1.3433116528655922,0.0006900645206867801,0.03602499979492321,0.8226917411077013,0,1.0,0.8028033609894848
+122,35,0.6898920480956393,2.0,1.3669439003512551,0.0006879211441078778,0.03617733721778572,0.8261121147618581,0,1.0,0.7996401603187976
+122,36,0.6687692281497883,2.0,1.3442133339517044,0.0006885498916226513,0.035308856848320955,0.8228227894747832,0,1.0,0.8292307604992945
+122,37,0.6791943119762112,1.95,1.3722401847716168,0.0006903707533655501,0.03640582266836998,0.8158711909313882,0,1.0,0.8639810399207036
+122,38,0.6630782114349397,2.0,1.3696828031651958,0.0006884343548779092,0.035929677222884995,0.8265053564143384,0,1.0,0.876927371449799
+122,39,0.6917757502436569,2.0,1.3738828131481506,0.0006919390000280938,0.03610479873039894,0.8271077903966659,0,1.0,0.9059191674788563
+122,40,0.6770214276745605,2.0,1.3715934064621942,0.0006905974715706892,0.036063414567521754,0.8267797746427574,0,1.0,0.9234047589152017
+122,41,0.7194695470650949,2.0,1.3745173310852494,0.000694474215160906,0.036461134170830016,0.8271992327146503,0,1.0,0.9315651568836497
+122,42,0.7175170388920694,2.0,1.374279737546683,0.000693185999433201,0.03642261394721582,0.8271648999622959,0,1.0,0.9250567963068979
+122,43,0.7180550543707875,2.0,1.3735209422300643,0.0006920411025750307,0.03637687647657727,0.8270560657595717,0,1.0,0.9268501812359583
+122,44,0.7177726625981583,2.0,1.372375518735939,0.0006909184763985142,0.036204899240926805,0.8268918481081264,0,1.0,0.9259088753271942
+122,45,0.6805514980111158,2.0,1.3709563567052514,0.0006898135913681589,0.03615382244318026,0.8266882959611662,0,1.0,0.9351716600370528
+122,46,0.7246679410170067,1.95,1.373555791164348,0.0006921220343344403,0.03635249236616568,0.8160692720266526,0,1.0,0.9488931367233555
+122,47,0.7116932358859549,1.95,1.371737436365879,0.0006905402310075593,0.03619893016682525,0.8157957042974927,0,1.0,0.972310786286516
+122,48,0.7381361100719062,2.0,1.370170859156761,0.0006898803469313001,0.03611428976245516,0.8265757442478125,0,1.0,0.9604537002396869
+122,49,0.7323785714810104,2.0,1.373879350387189,0.0006917142306649561,0.03631432513615887,0.8271072309351641,0,1.0,0.941261904936701
+123,0,0.14344974770899144,2.0,1.3827201252828276,0.0007035237422349811,0.03631090128767488,0.8283711736701447,0,0.1377913579002783,0.2277773484962671
+123,1,0.12556776213649906,1.95,1.383354238838672,0.0007029120767527681,0.0366915333731475,0.8175386877133723,0,0.13682887392892398,0.23612070854976494
+123,2,0.11924737719450482,2.0,1.3835741982235399,0.0007024096824832118,0.03671615491505485,0.8284922485946549,0,0.12394483136479711,0.23223148216195322
+123,3,0.20853704295406944,2.0,1.3838231572885922,0.000701872229898002,0.0364845648125765,0.8285274682915206,0,0.23648089924032667,0.21314894419312935
+123,4,0.22597500831325215,2.0,1.3741908125907774,0.0006961801781794426,0.03637973624033884,0.8271530427650159,0,0.3007221415528579,0.2189538389736966
+123,5,0.2677953827404191,2.0,1.3734762392791757,0.0006959791157521711,0.03635934092624771,0.8270507981816559,1,0.39209969060943883,0.20318502165547841
+123,6,0.2761650790723203,2.0,1.3847101156064454,0.0006991397347059676,0.03633040125843891,0.8286526655218085,1,0.4158293397844148,0.2327778105285145
+123,7,0.24836056758016165,2.0,1.3840420632855166,0.0007024520181520004,0.036721971524015164,0.8285587306817643,1,0.4448506742853442,0.2014009928867465
+123,8,0.2901578280364871,1.95,1.3842170646569059,0.0007018636914457002,0.03671967821881195,0.8176670468707833,1,0.46031257208497206,0.22010933067499433
+123,9,0.30877189078686873,1.95,1.3847967072816991,0.0007014874217376766,0.036431808201776585,0.8177533363611207,1,0.49149100791360484,0.24058495873808933
+123,10,0.30403357229457123,2.0,1.3852311532349735,0.0007011020758870877,0.036762351952658576,0.828727190709226,1,0.5258352701538661,0.2456648807767492
+123,11,0.3455243425351388,2.0,1.3849802276348144,0.0007011933135424068,0.03676191338464972,0.8286915976891198,1,0.5569210453233198,0.2758530813527031
+123,12,0.3991399192266126,2.0,1.3852853420005142,0.0007007968852949223,0.03645164478975553,0.8287347954072616,1,0.6245693097713766,0.3310406510602066
+123,13,0.3787728789868718,2.0,1.383021225628731,0.0006994574672732122,0.036624024220616,0.8284128215897889,1,0.6352954984532555,0.3488489320185652
+123,14,0.4195879270021599,1.95,1.382558109416221,0.0006995282739350393,0.03668131590859642,0.8174188896844429,1,0.6721325781269402,0.36911631917127946
+123,15,0.4639679351815106,1.95,1.3821399074682432,0.0006987375578164105,0.03642188297245504,0.8173562306613408,1,0.7104383956486356,0.43264192307352106
+123,16,0.5090631611538571,1.95,1.378136419369602,0.0006958988241562271,0.03650531310191829,0.8167569606194144,1,0.7751998893466077,0.4966106847173797
+123,17,0.512660570492282,1.95,1.37881327022547,0.0006955781349010663,0.03633321597514597,0.8168581438530058,1,0.8038527385926972,0.5037315835173435
+123,18,0.5632248038565749,2.0,1.3770530708006579,0.000694027595258676,0.036281120557418486,0.8275612648849536,1,0.8575681198389938,0.5673251864032577
+123,19,0.5466121141602771,2.0,1.3787723948979627,0.0006949629044817538,0.03644567198105495,0.8278067471350476,1,0.8723016993313293,0.5923047814258179
+123,20,0.592607922730781,2.0,1.3781306175052113,0.0006945467842027452,0.03650478298447672,0.8277151285029188,1,0.9046712737938953,0.6357980440440761
+123,21,0.6090688087886517,2.0,1.3426672795015768,0.0006701701550567588,0.035827982515604276,0.8225919203214594,1,0.926677883374828,0.661325518129068
+123,22,0.5871692181371884,2.0,1.349817962246444,0.0006765043042187785,0.035884947746891833,0.8236348854526574,1,0.9758075229072186,0.6228206965810031
+123,23,0.5882259424754848,1.95,1.346851831614265,0.0006747527119465615,0.03532564583731908,0.812021822683541,1,1.0,0.5940864749182823
+123,24,0.5779279937376409,2.0,1.3777338913024773,0.0006943026093658667,0.03640049363012418,0.827658477223975,1,1.0,0.5597599791254697
+123,25,0.5906856009310999,2.0,1.3798100664198745,0.0006957718936979127,0.03642873427934535,0.8279548398380195,1,1.0,0.568952003103666
+123,26,0.6180330177637523,2.0,1.379083188039056,0.0006952263766809622,0.03657446229412245,0.8278511190233364,1,1.0,0.5934433925458408
+123,27,0.6298107103949565,2.0,1.3780890447006844,0.0006945867681616336,0.036427791507108315,0.827709211428006,1,1.0,0.6327023679831882
+123,28,0.6440563739051017,2.0,1.3412541753943776,0.0006713414588461559,0.035741864265195926,0.8223859479098418,1,1.0,0.6801879130170054
+123,29,0.6730945235405116,2.0,1.3476451937643525,0.0006797438436079438,0.03543419341170094,0.8233199886085683,1,1.0,0.7436484118017049
+123,30,0.6890561977374101,2.0,1.347339171345906,0.0006782080005090792,0.035479245519276496,0.823275021993119,1,1.0,0.7968539924580333
+123,31,0.6415930923094185,2.0,1.346324562994081,0.0006765755057931927,0.03551894264660622,0.8231268795483448,1,1.0,0.7719769743647285
+123,32,0.6276417850562597,1.95,1.343169590136516,0.0006750330440156607,0.03556858142399867,0.8114591964641142,1,1.0,0.7254726168541987
+123,33,0.6677853535248518,2.0,1.3387118018520914,0.0006726108391388147,0.03551237078294258,0.8220146572835456,1,1.0,0.7592845117495057
+123,34,0.6463017825851348,2.0,1.3457438486068443,0.0006815852275543912,0.03586379065056726,0.8230437773085653,1,1.0,0.7543392752837828
+123,35,0.6256068966933095,1.95,1.352514259332552,0.0006815138037523492,0.035565625306722276,0.8128866791973751,1,1.0,0.7186896556443648
+123,36,0.6191044896268905,1.9,1.3484506106188325,0.0006793641167272433,0.035591877911247106,0.8005618034407815,1,1.0,0.6970149654229679
+123,37,0.6707608289639009,1.95,1.3440071442741133,0.0006770550429006954,0.035844006629401036,0.8115879214803694,1,1.0,0.7358694298796695
+123,38,0.6218824949509233,1.95,1.344613117247781,0.000676160497311849,0.035882056959476515,0.8116802916384845,1,1.0,0.7062749831697441
+123,39,0.6125623287851407,1.9,1.3412602640842515,0.0006744007385771696,0.03551988279793591,0.7994097007505726,1,1.0,0.6752077626171358
+123,40,0.6057435685343484,1.95,1.336508450542921,0.0006718502023906446,0.035230813991567744,0.810436994728582,1,1.0,0.6524785617811615
+123,41,0.6213337020600846,2.0,1.3341060798008577,0.000670506529603799,0.03511637725205536,0.8213391926755375,1,1.0,0.671112340200282
+123,42,0.625180619983159,2.0,1.342305663387279,0.0006719917620146512,0.035114452053501555,0.8225396737092364,1,1.0,0.6839353999438631
+123,43,0.6049750053797668,2.0,1.3474335794609038,0.0006730869579733272,0.03523260622419697,0.8232872672500218,1,1.0,0.6499166845992226
+123,44,0.660748470471841,1.95,1.3440768644491874,0.000670905732659146,0.035517514037142685,0.8115967018235635,1,1.0,0.7024949015728034
+123,45,0.6371363705722799,1.95,1.3430618240778103,0.0006701767230615969,0.03550395391428246,0.8114412223677764,1,1.0,0.7237879019075993
+123,46,0.6235130229384604,1.9,1.3473330352166197,0.0006722705446241817,0.03510893049592523,0.8003810418180115,1,1.0,0.711710076461535
+123,47,0.6810446654478575,1.95,1.342934072556281,0.0006689870516105492,0.035828931443073794,0.8114213109705526,1,1.0,0.7701488848261915
+123,48,0.6792707169187964,1.95,1.3437181719743452,0.0006704067546532688,0.035401203902005365,0.8115416962963217,1,1.0,0.7975690563959879
+123,49,0.6867304878581328,2.0,1.3516235948479864,0.0006762463728424699,0.03603864727522203,0.8238969443764907,1,1.0,0.8224349595271093
+124,0,0.1685954073598224,2.0,1.3801829436505595,0.0007025421043979716,0.03624708999244315,0.828009876365891,0,0.16974405633837786,0.20232594941490412
+124,1,0.21517887360454302,1.95,1.3802659111875828,0.0007038468585100836,0.036624215525678155,0.8170778319808146,0,0.281166913010928,0.17570702800057272
+124,2,0.19849872246822745,1.95,1.3703753538688335,0.0006984735557179284,0.03634733908418866,0.8155933182953204,0,0.3036137855130881,0.19017736087664072
+124,3,0.23919168273317512,2.0,1.3708157514761043,0.0006970744802141017,0.03652005191989381,0.8266702306411753,0,0.35941221931204653,0.1847559833611883
+124,4,0.2053989690846469,2.0,1.3703538241961493,0.0006969432025345739,0.036361958566890215,0.8266039950501026,0,0.37323547856736256,0.1870159255256729
+124,5,0.2755726646402351,1.95,1.3726177760282805,0.0006961735948333926,0.036391034370380805,0.8159296510061226,0,0.43449151151252347,0.20592020011741916
+124,6,0.3008017043095548,1.95,1.3738286656749623,0.000692943688489444,0.036314363877351,0.8161104736351874,0,0.500337979741585,0.20222170804306933
+124,7,0.276187244358736,1.95,1.3732044318880385,0.0006927600396527123,0.03623802418918378,0.8160167186385838,0,0.5267464294251728,0.21829557529555613
+124,8,0.36291917079881464,1.9,1.3753650857398894,0.0006933161050135656,0.03626375610425277,0.8048286831433584,0,0.6300071558441703,0.20305436153715495
+124,9,0.3817752405461443,1.95,0.9623201347525745,0.0010733897549891139,0.035597452161782325,0.7463930885554932,0,0.6934277090213635,0.21468052312532973
+124,10,0.4260030705082014,2.0,0.9693532162839721,0.0010979562206358008,0.03568339247614851,0.761614085640718,0,0.8010687733819853,0.1852518705180241
+124,11,0.41124751651149877,2.0,1.176635192959635,0.0007962369629684966,0.03436050009122642,0.7970936555650918,0,0.8308036375900144,0.19642020491830992
+124,12,0.45351572616302865,2.0,1.1738891571900905,0.0007945750886763806,0.034439563527699876,0.7966486236847512,0,0.8860265880731096,0.1970169697792826
+124,13,0.4489585956795966,2.0,1.179027163118081,0.0007842232369869924,0.03421083260570673,0.7974763662147075,0,0.9151093809213608,0.20971614437017416
+124,14,0.49844240533112955,2.0,1.3232519098845046,0.0006626975023603641,0.03488906798974397,0.8197385727513596,1,0.9751235952247774,0.2279765574707286
+124,15,0.5330065759364628,2.0,1.3513536981024887,0.0007124279119737936,0.035729005873802434,0.8238682822309978,1,1.0,0.27668858645487615
+124,16,0.5533131611863317,2.0,1.3483183973501502,0.0007117824472085874,0.03597545549288731,0.8234272109939392,1,1.0,0.3443772039544386
+124,17,0.5479520717651674,2.0,1.3449951800585154,0.0007110991098388275,0.036167106545250634,0.8229433137727116,1,1.0,0.35984023921722447
+124,18,0.5362506455707022,2.0,1.3489410003116675,0.000706348136477197,0.036402588060780436,0.823516136413134,1,1.0,0.3875021519023408
+124,19,0.5869384812702672,2.0,1.35024157737961,0.0007153933038422984,0.0363730977131763,0.8237077062321426,1,1.0,0.45646160423422344
+124,20,0.5375874066921983,2.0,1.3776653818311515,0.0006943395732976899,0.03649708253329397,0.8276487153644818,1,1.0,0.4252913556406608
+124,21,0.57921361691908,1.95,1.379174529927706,0.0006959514164144656,0.036460455114448585,0.8169122941102541,1,1.0,0.46404538973026677
+124,22,0.5646048705062281,1.95,1.377917762917259,0.0006954446632798567,0.036451374978707526,0.8167240971658962,1,1.0,0.4820162350207601
+124,23,0.5475756972364165,2.0,1.3772124527695366,0.0006945159131422573,0.0363279080434218,0.8275841474359666,1,1.0,0.4585856574547216
+124,24,0.5367722661823991,2.0,1.378647572866119,0.0006963517510104425,0.03639269613837585,0.8277893499050301,1,1.0,0.42257422060799704
+124,25,0.5491743091301268,2.0,1.3793640749336986,0.0006978738789072641,0.03643060940144208,0.8278919000219953,1,1.0,0.43058103043375573
+124,26,0.5501976461953865,2.0,1.3787444724340252,0.0006968402043781469,0.03658874130898719,0.827803302154264,1,1.0,0.4339921539846213
+124,27,0.5795968310273617,2.0,1.378030286783281,0.0006958180291782841,0.036308389697097654,0.8277011831808744,1,1.0,0.4653227700912054
+124,28,0.5588317999401996,2.0,1.3772069571345804,0.0006957879897371158,0.036312024489100966,0.8275837262926805,1,1.0,0.46277266646733184
+124,29,0.5677556758129308,1.95,1.3763969002055312,0.0006947251362848378,0.03638806338435656,0.8164961202628512,1,1.0,0.49251891937643616
+124,30,0.5493098653367648,2.0,1.3752296245216415,0.0006935400922787352,0.03633720948117436,0.8273007577579541,1,1.0,0.46436621778921616
+124,31,0.5678684006375941,2.0,1.376299721930849,0.0006951730584846043,0.03644456553501002,0.82745405983002,1,1.0,0.49289466879198024
+124,32,0.5737359121113935,2.0,1.3753468207995563,0.0006940016427226198,0.036431850571621835,0.827317633318917,1,1.0,0.5124530403713116
+124,33,0.5551045508664506,2.0,1.374240956226222,0.0006928598242394134,0.03621255612641725,0.8271592623286215,0,1.0,0.48368183622150207
+124,34,0.5717829225165805,2.0,1.0887004083871292,0.0004564322807430019,0.028185355321140138,0.7823839397325104,0,1.0,0.505943075055268
+124,35,0.5968990902137241,2.0,1.1027594407083459,0.00047739639679851033,0.02827604477806972,0.7847751982166113,0,1.0,0.48966363404574687
+124,36,0.5898962339054779,2.0,1.094806472764503,0.00047016833151696533,0.028297068327432468,0.7834264225636539,0,1.0,0.46632077968492586
+124,37,0.565251469039789,2.0,1.0868693446115854,0.00046314535792794714,0.028194590235502026,0.7820743111659167,0,1.0,0.48417156346596285
+124,38,0.5887834679872119,2.0,1.098958571254689,0.00048487687607907785,0.028632988983069967,0.784135057194197,0,1.0,0.4626115599573728
+124,39,0.5667754824215906,2.0,1.0913763075531255,0.00047799414521860475,0.028408896141338617,0.7828465232355672,0,1.0,0.4892516080719686
+124,40,0.5540269241526081,2.0,1.1010748141177171,0.0004995190451349991,0.028669725220066444,0.7844980033264191,0,1.0,0.5134230805086938
+124,41,0.5791306798366548,2.0,1.1220799388458487,0.0005088749159535839,0.029103026802261928,0.7880310496198368,0,1.0,0.5304355994555159
+124,42,0.6070581400895084,2.0,1.1289859190246485,0.0005275792612208293,0.02972832477619375,0.78918854067445,0,1.0,0.5235271336316945
+124,43,0.5598095164637561,2.0,1.1221240285569878,0.0005208810705669175,0.02955487695751708,0.7880424250297706,0,1.0,0.5326983882125204
+124,44,0.6038644303613813,2.0,1.1405381190352553,0.000531567462165716,0.02989989811047623,0.7911053776169302,0,1.0,0.5128814345379373
+124,45,0.6008183802707355,2.0,1.1338203435442922,0.0005248092788970051,0.02980672453047851,0.7899908002588321,0,1.0,0.5027279342357849
+124,46,0.5937060222405777,2.0,1.1270157043873412,0.0005179926299278626,0.029554908258238727,0.7888573758209011,0,1.0,0.4790200741352587
+124,47,0.5877466683676242,2.0,1.1201876666173793,0.0005112698197999572,0.02902092241783961,0.7877155967117649,0,1.0,0.4591555612254139
+124,48,0.5856678834391658,2.0,1.113327954367613,0.0005044315554828089,0.028993741851495464,0.7865639575328921,0,1.0,0.4522262781305521
+124,49,0.5786036880948142,2.0,1.1063864406899593,0.0004976886632135986,0.02894878045687695,0.785394017549502,0,1.0,0.4286789603160472
+125,0,0.16019582901587923,2.0,1.3725142674090458,0.0007075544329072688,0.03633529583778093,0.8269164700460331,1,0.13074648972792638,0.2263241104156956
+125,1,0.1440960404975976,1.95,1.3724020578624847,0.0007063363395977366,0.036530912438120164,0.8159003034702954,1,0.17364804947037432,0.21545606903149297
+125,2,0.19064661492862967,2.0,1.3751415673653975,0.0007053051564049381,0.03652177793009779,0.8272915383148407,1,0.1952552937279435,0.24181499145817417
+125,3,0.17187782180517017,2.0,1.3752581954509209,0.0007041022827175819,0.03649385779986251,0.8273078578208446,1,0.2556838322247146,0.19868096305094776
+125,4,0.1788720179525011,2.0,1.3854306396581102,0.0007000024390841356,0.0366919317681782,0.8287551915222504,1,0.2591286583042094,0.18406851543605787
+125,5,0.21250614535708692,2.0,1.3853708226630528,0.0007000777629152873,0.036733213207918114,0.8287467235066904,1,0.2788645282415206,0.2032011135349289
+125,6,0.2316109867781836,2.0,1.3844432340253245,0.0006988985863892887,0.036316691160845974,0.8286146998773397,1,0.30655407319695976,0.22996452499799894
+125,7,0.2452522681411922,2.0,1.3842108488294578,0.0006987291562993274,0.03664168561890597,0.8285816476529134,1,0.3215894253389039,0.2553883266854354
+125,8,0.2332134830553729,2.0,1.3839377170454437,0.0006985112579339882,0.036661213455551206,0.8285427882347643,1,0.3453713710487424,0.25021644878625315
+125,9,0.23754127212011328,2.0,1.3840084196199538,0.0006986057736900446,0.03652127735240686,0.8285528588359747,1,0.36231113002111337,0.2420560670388931
+125,10,0.2335427679548711,2.0,1.3839934881938554,0.0006986918107066461,0.03662403389472835,0.8285507622152891,1,0.40385834402100224,0.20666476782156737
+125,11,0.31037491238891773,2.0,1.3852698058355077,0.0007011026612343295,0.03676378118901099,0.8287326770952722,1,0.446073372906054,0.2731518774216539
+125,12,0.34691238712050426,2.0,1.3851801326427264,0.0007014953879510361,0.03645832268100098,0.828720060460711,1,0.4864517161379646,0.34110566888439464
+125,13,0.3870513514536335,2.0,1.3850126645963081,0.0007018795042790739,0.03671493134410856,0.8286963972721031,1,0.5427496883381525,0.3998382537279084
+125,14,0.4000670066617498,2.0,1.3847655507707566,0.0007022590589508271,0.03675739847866968,0.8286614222502103,1,0.5743702596639073,0.4343963426539564
+125,15,0.4292978679760134,2.0,1.384272478820137,0.0007010717722773098,0.03642330246137694,0.8285910664706924,1,0.6246592788683641,0.46478052142889237
+125,16,0.4237058655576752,2.0,1.363911117368012,0.0006884685233152744,0.03629380353816458,0.8256761793919467,1,0.6410045028729155,0.49101354802836333
+125,17,0.4296429301904293,2.0,1.365445576664258,0.0006878538794693077,0.0360672854589338,0.8258967547088473,1,0.6623829739297962,0.48229913539503594
+125,18,0.4428023747792137,2.0,1.3662681638260303,0.0006872618253287148,0.035706838816247435,0.8260148337105491,1,0.6913788687992043,0.4875027575317731
+125,19,0.4505990937690694,2.0,1.3665198066104987,0.0006868702559479928,0.03603246520124276,0.8260508828875707,1,0.7098793523096054,0.4888245094840908
+125,20,0.4652737983406393,2.0,1.366314959530435,0.0006863831737292836,0.036110367126529805,0.8260213062790825,1,0.7421978074428706,0.4946489178783036
+125,21,0.46747726452592553,2.0,1.3657493173483393,0.0006859995868717559,0.03634247884555905,0.8259398924976546,1,0.7933135734931528,0.46717278376221455
+125,22,0.5494649668098416,2.0,1.3694327408616485,0.0006892309562425431,0.036277012901666,0.8264697244829132,1,0.850056272166233,0.5314748598111612
+125,23,0.5881874575980623,2.0,1.3720588392879978,0.0007001362764120254,0.036453864682562856,0.8268491528086669,2,0.9023083792691367,0.5908803529680255
+125,24,0.536720261820395,2.0,1.3501580950577428,0.0006800158834942003,0.03615631920432032,0.8236853078232986,2,0.9346353835093769,0.542887028055481
+125,25,0.6471508165304231,1.95,1.352430706170565,0.0006793221205987923,0.0361184044801579,0.8128733035140454,2,0.9945209492556603,0.5644747894271964
+125,26,0.5567974425108393,1.95,1.3566718067870362,0.0006870265194534877,0.03553642199402759,0.8135199003403616,2,1.0,0.5226581417027975
+125,27,0.5962109198264631,1.9,1.3581443417770773,0.0006856618203214481,0.03569767596038324,0.8021070207263111,2,1.0,0.5540363994215437
+125,28,0.6298905903442545,1.9,1.3608575596371795,0.0006847844253693623,0.036347807235521404,0.8025370623816034,2,1.0,0.5996353011475151
+125,29,0.5640049195048524,1.9,1.357537391897149,0.0006829260307127047,0.03607493053491699,0.8020097922566762,2,1.0,0.5466830650161746
+125,30,0.6479527798311253,1.8499999999999999,1.3585795491610075,0.00068232538204313,0.035827531826550046,0.7900031164446324,2,1.0,0.5598425994370846
+125,31,0.6067382212909382,1.8499999999999999,1.3625417742055792,0.0006884102979413029,0.03596842663340327,0.7906617014273833,2,1.0,0.5891274043031274
+125,32,0.561674334620648,1.7999999999999998,1.365542466650556,0.0006879681167124724,0.0363922348926974,0.7784951718941919,2,1.0,0.5389144487354933
+125,33,0.6494470864196128,1.7499999999999998,1.3656395548383349,0.0006869208706348105,0.03606146595191629,0.7653096246931966,2,1.0,0.5648236213987095
+125,34,0.6300260010111711,1.7499999999999998,1.3688930831104753,0.0006917738786569571,0.036185088347008156,0.7658952293071398,2,1.0,0.6000866700372368
+125,35,0.6174136641983212,1.7999999999999998,1.344594233546561,0.0007540208594420731,0.03666769515410476,0.774884830230045,2,1.0,0.624712213994404
+125,36,0.5743149189857661,1.8499999999999999,1.351837762762101,0.000744632181573382,0.03668772100097862,0.7889032327737998,2,1.0,0.5810497299525537
+125,37,0.5621240794591993,1.7999999999999998,1.3617026290852623,0.0006887693910516709,0.0362293039752871,0.7778325975299127,2,1.0,0.5404135981973308
+125,38,0.5521766257158578,1.8499999999999999,1.3617640762976044,0.0006870195711404954,0.03604745747471472,0.7905324904750772,2,1.0,0.5072554190528591
+125,39,0.6190427353909604,1.9,1.3624053922315624,0.0006861006017696867,0.03604898797506288,0.8027826513691338,2,1.0,0.5634757846365345
+125,40,0.6290395435207665,1.9,1.360236481923072,0.0006851290071173783,0.03620266953197064,0.8024387301325456,2,1.0,0.5967984784025548
+125,41,0.6459635846253746,1.95,1.357174486695282,0.0006835118184177711,0.03585065825300006,0.8135950814508572,2,1.0,0.6532119487512487
+125,42,0.6861569923627803,2.0,1.356564053465188,0.0007385837156427709,0.03677078472584963,0.8246306432035039,2,1.0,0.687189974542601
+125,43,0.5929942661122622,2.0,1.3547813492070127,0.0007393766419860387,0.03665257090865849,0.8243729179123006,2,1.0,0.6433142203742076
+125,44,0.6290336882178541,1.95,1.3592446673282481,0.0007329894332363772,0.036716799598228586,0.8139238247783275,2,1.0,0.663445627392847
+125,45,0.6863249369125061,1.95,1.3634141472480061,0.0007279083699097015,0.03669471543174524,0.8145529387322585,2,1.0,0.6877497897083534
+125,46,0.5927842774955988,1.95,1.3609246066957708,0.0007291687332110152,0.03666391647924387,0.814176964418779,2,1.0,0.6426142583186627
+125,47,0.6369057319441058,1.9,1.3646628659594515,0.000723863954886215,0.03660796593546202,0.8031517573167863,2,1.0,0.6896857731470194
+125,48,0.6692279900564779,1.9,1.3682017919681946,0.0007196132822874893,0.03632693270818424,0.8037093166586843,2,1.0,0.7307599668549261
+125,49,0.7054265626529627,1.9,1.3671449718038975,0.0007236487573335814,0.03672911118281817,0.8035438125996016,2,1.0,0.7514218755098757
+126,0,0.182101673908731,1.9,1.3789337783848858,0.000704164826690723,0.03623567846417766,0.8053920425535731,0,0.20261016853441843,0.1701920216498787
+126,1,0.17609607701786653,1.8499999999999999,1.3576286109383975,0.0006907275063470389,0.03585492427560512,0.7898481033247817,0,0.2397079285716359,0.20070968529737396
+126,2,0.2332605590924532,1.9,1.3711142004532202,0.0006930969009245219,0.036423062704807725,0.8041600219258955,0,0.3297970883681797,0.17113907915060442
+126,3,0.2252563399850592,1.9,1.3593373029409153,0.0006878335839063917,0.036322911178664825,0.8022970017723864,0,0.37192952192035666,0.18828177072305516
+126,4,0.2576743917648645,1.95,1.3594552545954857,0.000686612356877118,0.03600204234679757,0.8139416701592871,0,0.4200189789318085,0.16555600064047035
+126,5,0.29459490958494977,1.95,1.3615290992357776,0.0007189788125456452,0.03642472536090548,0.8142653202678238,0,0.4933765396476457,0.15748097908630487
+126,6,0.28233497088364007,1.95,1.3611352170727096,0.0007226390242688907,0.036252440898774954,0.8142068506084248,0,0.5158699919235747,0.18662324704736705
+126,7,0.2752713230491718,2.0,1.3624986453210375,0.0007189523484575814,0.03644927728288867,0.8254815649407607,0,0.5373148353270458,0.20115129639451151
+126,8,0.3581346708544646,2.0,1.3778991606206454,0.0007044670897231296,0.03664463969524409,0.8276849493381339,0,0.6308709154468802,0.18595434891904167
+126,9,0.37095064543952816,2.0,1.2717785335534209,0.0007319907187978646,0.034520275753717425,0.8120281081035996,0,0.6943091226261625,0.17742332129687713
+126,10,0.4191821084432533,2.0,1.2721131395691276,0.0007379588045697918,0.03455904187342666,0.8120809980497341,0,0.8023221402880139,0.16084417442682594
+126,11,0.3970564233988418,2.0,1.1654342475693058,0.0007764095197026806,0.03390534200233025,0.7952695807227513,0,0.8225705906173022,0.1600939571730695
+126,12,0.3886192172652979,2.0,1.162700994779338,0.0007745492657768059,0.033970350347729175,0.7948235978808573,0,0.8485513781815112,0.16399555330897808
+126,13,0.42678699667650905,2.0,1.1672101965301334,0.0007980413029804253,0.034202314942165093,0.7955656183010275,0,0.872240755522509,0.1929689815583513
+126,14,0.4384685557661844,2.0,1.164293768473534,0.0007961974966386162,0.03436649954248613,0.7950902779481172,0,0.896706545512591,0.19928645853715968
+126,15,0.48619041125261614,2.0,1.16120598748221,0.0007942511145256842,0.034328127380447895,0.7945861175624155,0,0.9674458159267016,0.19737361627311825
+126,16,0.48116386000081385,2.0,1.1669758456263248,0.0007837863108919091,0.03420472424684354,0.7955228630309479,0,1.0,0.20387953333604605
+126,17,0.48877096412100085,2.0,1.3432792774219369,0.000686206737078187,0.035796315206356726,0.8226858929546759,0,1.0,0.2292365470700027
+126,18,0.5108445227012611,2.0,1.3411280451471435,0.0006853789558402352,0.03593783525128938,0.8223716247909256,0,1.0,0.20281507567087012
+126,19,0.5048615134582151,2.0,1.348217573441072,0.0006841108259363728,0.035930256380176676,0.8234045039491851,0,1.0,0.18287171152738338
+126,20,0.48244755898731156,2.0,1.1569282857891485,0.0007775327221342982,0.03413416884817354,0.7938815640750371,0,1.0,0.2081585299577051
+126,21,0.4861907540271325,1.95,1.3519507417342411,0.0006836229198736812,0.03555549402817169,0.8128015937990976,1,1.0,0.22063584675710832
+126,22,0.47296211328777765,2.0,1.338402621129909,0.0007135408112574489,0.03606410039872191,0.8219813963278161,1,1.0,0.20987371095925872
+126,23,0.5311568096478848,2.0,1.3461886574895607,0.00070831230798942,0.03608301542898638,0.823116334012199,1,1.0,0.2705226988262826
+126,24,0.5002304342023552,2.0,1.3428860112875507,0.0007074328354040192,0.03636521061571445,0.8226347125941723,1,1.0,0.2674347806745174
+126,25,0.5427510540977093,1.95,1.3443610977632536,0.000717700025637243,0.036401634842907406,0.8116544668227595,1,1.0,0.30917018032569754
+126,26,0.5596994579391368,1.95,1.339829978239679,0.0007171864043621437,0.035562106535761,0.8109606519779834,1,1.0,0.3656648597971224
+126,27,0.5307197313595432,2.0,1.3361137620223666,0.0007163605863438181,0.03581896697348991,0.821647051771569,1,1.0,0.36906577119847733
+126,28,0.5628610557536416,1.95,1.3384004173961663,0.0007272351505843964,0.035922594729856504,0.8107444816423091,1,1.0,0.40953685251213856
+126,29,0.5463753677580363,1.95,1.3664002663144783,0.0007012447377790305,0.036440430273628324,0.8149955472151135,1,1.0,0.4212512258601207
+126,30,0.5754313065045272,2.0,1.3655756917229385,0.0006991851166432853,0.0362701224407713,0.825918721695965,1,1.0,0.45143768834842385
+126,31,0.5381059038783977,2.0,1.3658440570151482,0.0007012501224486442,0.036388795860826696,0.825957896770246,1,1.0,0.427019679594659
+126,32,0.5294243341101235,1.95,1.3650167365006989,0.0007020915997851161,0.036223970394308365,0.8147871063069361,1,1.0,0.39808111370041144
+126,33,0.5448579273696804,2.0,1.3450789371835872,0.0007172866347288075,0.036066959299993734,0.8229573205278847,1,1.0,0.41619309123226783
+126,34,0.5504295198273014,2.0,1.3661970525816263,0.0007008192053707253,0.03616809066262327,0.8260085106946685,1,1.0,0.43476506609100446
+126,35,0.5949229445316009,2.0,1.3654050363377321,0.0006990034860461752,0.036265199619795775,0.8258941317797535,1,1.0,0.4830764817720026
+126,36,0.5605204397035821,2.0,1.3708740791875036,0.0006982424998504946,0.03644231986655922,0.826678922769096,2,1.0,0.4684014656786071
+126,37,0.5780509378040299,1.95,1.350810937306772,0.0006804100676311419,0.03611329234414108,0.8126271264317462,2,1.0,0.49350312601343277
+126,38,0.5829488650365188,2.0,1.3544190626779347,0.0006798352629779725,0.03540631447302037,0.8243032133204795,2,1.0,0.5098295501217291
+126,39,0.6105046420411506,2.0,1.3582855951208899,0.0006808575089442576,0.035642428168690427,0.8248627866255556,2,1.0,0.535015473470502
+126,40,0.6209006047590424,2.0,1.3551461174072559,0.0006787616350982061,0.035398454308437396,0.8244081751237922,2,1.0,0.569668682530141
+126,41,0.6320821625456471,2.0,1.3517355987779525,0.0006766515717026332,0.0356676320420305,0.8239133120959994,2,1.0,0.6069405418188235
+126,42,0.6429457334529974,2.0,1.3765371794728565,0.0007120526187923157,0.036657904271788465,0.8274927790351337,2,1.0,0.6431524448433246
+126,43,0.6589976597283883,2.0,1.3750058449550937,0.0007129510930584639,0.03659792103464408,0.8272743304914928,2,1.0,0.6966588657612941
+126,44,0.6945838424316014,2.0,1.3732212574778866,0.0007137874131257563,0.03672706896027437,0.82701941841934,2,1.0,0.7152794747720048
+126,45,0.6780619423750848,2.0,1.372365988772376,0.0007171682275204057,0.036497564265760944,0.8268979987553899,2,1.0,0.7602064745836158
+126,46,0.6925051124810336,2.0,1.3704528758058059,0.0007182777778029355,0.03636801838883555,0.8266243069224269,2,1.0,0.8083503749367785
+126,47,0.7057188629461849,2.0,1.3799774739058992,0.000698448859288241,0.036574132407658964,0.8279794475514449,2,1.0,0.8523962098206163
+126,48,0.7193191068862073,2.0,1.3782734804355539,0.0006980844760284461,0.03646904099749563,0.8277365090748862,2,1.0,0.8977303562873575
+126,49,0.6585710658153516,2.0,1.3762765713593093,0.0006976093353836998,0.036550856942183074,0.8274514501916439,2,1.0,0.8619035527178387
+127,0,0.13750310300958635,1.95,1.377588066898572,0.0007041741863819064,0.036197541120837444,0.8166773550883487,0,0.1372448488956039,0.20868387817114933
+127,1,0.14639172863058797,1.9,1.3785879541238626,0.0007031553216228268,0.03659109557978278,0.8053375173032683,0,0.1583935159186145,0.21011440754380728
+127,2,0.1587132578354207,1.95,1.3792974493417487,0.0007021737907838431,0.03660466234403266,0.8169325391990347,0,0.17809681799905028,0.22491510211933533
+127,3,0.22384974479017772,2.0,1.380097013815246,0.0007012559045408019,0.036581875490043395,0.8279972724391137,0,0.27407328929880864,0.2140680969021809
+127,4,0.25357988996987046,2.0,1.3721888362110988,0.0006935348032910738,0.03633978229243056,0.8268658735209571,0,0.3764030248960888,0.17672893337144985
+127,5,0.2035040745874944,2.0,1.3581403501996236,0.000686219578801015,0.03595445697215115,0.8248433523432546,0,0.38170333764456604,0.16940913176555988
+127,6,0.28525976191088565,1.95,1.3614891383423846,0.0006860022109741134,0.035741895315548375,0.8142493015717645,0,0.48094208996408877,0.14294308641750048
+127,7,0.27864290707326134,1.95,1.3725694925936058,0.0007109649866461094,0.03659766381816713,0.8159268423676289,0,0.5187093209622348,0.1705305956278913
+127,8,0.2665201770371208,2.0,1.3736335984035069,0.0007086345884807687,0.036563067038876816,0.8270769253411006,0,0.5391277624882806,0.16956357347269502
+127,9,0.3010788944323817,2.0,1.3762799468850866,0.0007065989347222732,0.036585774098206174,0.8274544991028054,0,0.5597344913644343,0.19061699295535997
+127,10,0.3178569585171015,2.0,1.3770067818588414,0.0007048527278746559,0.036635931989575085,0.8275577488282918,0,0.5871807815034708,0.20994881971904383
+127,11,0.37567160132792476,2.0,1.377049410065579,0.0007058466927032844,0.03659552994441195,0.8275641157220865,0,0.6811399353205666,0.17738542399899374
+127,12,0.36486299175162096,2.0,1.223493075486481,0.0007436238469121911,0.03453635429972608,0.8045502831294237,0,0.7177654110341961,0.1925227577931415
+127,13,0.37681044164751376,2.0,1.2248071222540071,0.0007365211238556398,0.03447279271013623,0.8047546011283845,0,0.7363615286533942,0.2075527672871868
+127,14,0.39806215870732864,2.0,0.9375980848323702,0.0010346856542737348,0.034680536023151,0.7557775240824937,0,0.7742192116150931,0.22791491353763793
+127,15,0.4636093177068756,2.0,0.9659494672586643,0.0010122076189989465,0.03500025401940587,0.7609643638196578,0,0.8734372778006928,0.2141146886219948
+127,16,0.49490973278308065,2.0,1.3782960972632772,0.0006946295996940862,0.036418000195223066,0.8277387487160361,0,0.9728800243477721,0.18585907681323927
+127,17,0.49679664738890644,2.0,1.1469307658896772,0.0007704378380806293,0.03362818113348133,0.7922384910982406,0,1.0,0.18932215796302138
+127,18,0.48602408349286086,2.0,1.152734814676308,0.0007619268613979508,0.03349562761025706,0.793189405578561,0,1.0,0.22008027830953603
+127,19,0.5077073389408677,2.0,1.3801167419000357,0.0006960434006857239,0.03641282857833719,0.827998597358742,0,1.0,0.22569112980289224
+127,20,0.46424038578846294,2.0,1.379404352834774,0.0006956561906645395,0.036493057299213046,0.8278970070522597,0,0.9974567496820926,0.21752561971875284
+127,21,0.4713004740040493,1.95,1.3804462255501213,0.000696115104922097,0.03649177964899839,0.8171024695735318,0,1.0,0.23766824668016423
+127,22,0.5147676826457565,2.0,1.3809967818965996,0.0006965098946891327,0.036622372244838206,0.82812402656605,0,1.0,0.21589227548585468
+127,23,0.4915639155560585,2.0,1.3824357630493243,0.0006975106212537195,0.036645790819153964,0.8283290313162504,0,1.0,0.23854638518686147
+127,24,0.49580137760992166,1.95,1.3821320140521163,0.0006972859134892576,0.03638561478629312,0.817354618869498,0,1.0,0.2526712586997387
+127,25,0.5202434915025219,2.0,1.381626006289351,0.0006969487887833446,0.03657965692036239,0.8282136933808153,0,1.0,0.2341449716750728
+127,26,0.47401307790538594,2.0,1.3827494126700108,0.0006977499373040114,0.03663487740947454,0.8283736957616787,0,1.0,0.2467102596846198
+127,27,0.49659435146630515,1.95,1.3833772182874118,0.0006981495176231567,0.03645494521029607,0.8175406946762676,0,1.0,0.25531450488768365
+127,28,0.5250094550908639,1.95,1.3829429741476722,0.0006978880679800085,0.036658326600204794,0.817475832433311,0,1.0,0.25003151696954623
+127,29,0.5109507803736797,1.95,1.3837351901818247,0.0006984033684906715,0.0364471265269108,0.8175941622405226,0,1.0,0.23650260124559888
+127,30,0.5167793463326458,2.0,1.3833374900631752,0.0006981546089389991,0.036574721312676604,0.8284574020214907,0,1.0,0.22259782110881926
+127,31,0.4894063524516819,2.0,1.3839585969376396,0.0006988142771800826,0.03651685431087304,0.8285458404967173,0,1.0,0.23135450817227285
+127,32,0.5144820647381548,1.95,1.3836543663719634,0.0006984621003815455,0.036678562686333835,0.8175821258759863,0,1.0,0.2149402157938493
+127,33,0.5064831652279835,1.95,1.3839427178266677,0.0006989197703321946,0.03665426365032676,0.817625263623438,0,1.0,0.22161055075994493
+127,34,0.5087017509599341,2.0,1.3835900627958433,0.0006989044544542306,0.036670214941672725,0.8284935066975417,0,1.0,0.2290058365331134
+127,35,0.5061569322662579,2.0,1.3832383470850864,0.0006988649219977386,0.03669579759142591,0.8284435136918372,0,1.0,0.22052310755419277
+127,36,0.4955624501860504,2.0,1.3827500400856576,0.0006988292063159532,0.03647517738183863,0.8283740918423443,0,1.0,0.25187483395350124
+127,37,0.5166260402671744,2.0,1.3824410250321004,0.0006982426018580026,0.036424091281019574,0.8283299877436904,0,1.0,0.2554201342239145
+127,38,0.4784104120520439,2.0,1.3819017564213811,0.000698150402181613,0.036621348097983855,0.8282532642517033,0,1.0,0.2613680401734796
+127,39,0.5005651914461381,1.95,1.3829685780929792,0.0006983062215954029,0.036476102996692863,0.8174797775263695,0,1.0,0.2685506381537937
+127,40,0.5270321024009171,1.95,1.3825470964241244,0.0006977941332088845,0.036577983318844084,0.8174167284132393,0,1.0,0.2567736746697237
+127,41,0.4844683670502753,1.95,1.3831026545361103,0.000698606478137492,0.036443858764064,0.8174998713566874,0,1.0,0.2815612235009176
+127,42,0.5070854880866517,1.9,1.3839647864402733,0.0006987820579855708,0.036671305094417087,0.8061776876249426,0,1.0,0.2902849602888389
+127,43,0.49266548067009863,1.9,1.3835842380246917,0.0006983749927664204,0.0366526339021316,0.8061180907769553,0,0.9987145391180083,0.3105988834096508
+127,44,0.49252024727077665,1.95,1.3842221446456617,0.0006987375246997011,0.03666144550627942,0.8176668720885996,0,1.0,0.30840082423592213
+127,45,0.5352636207031295,2.0,1.3846589005956946,0.0006990730594396916,0.03671966939230527,0.8286453745771503,0,1.0,0.28421206901043156
+127,46,0.5308241462089357,2.0,1.3851985156643976,0.000699414750532739,0.03651000639573123,0.8287220791304175,0,1.0,0.2694138206964521
+127,47,0.48131555083671806,2.0,1.38547893045768,0.000699684799692981,0.03675662262302504,0.8287619546889468,0,1.0,0.2710518361223935
+127,48,0.5113076552286488,1.95,1.3857607534887406,0.000699809634401586,0.036625866005188,0.8178964670890764,0,1.0,0.3043588507621629
+127,49,0.5338483024968389,1.95,1.3855706905717544,0.0006996756744339721,0.03659635781366498,0.8178681171494957,0,1.0,0.27949434165612946
+128,0,-0.001420337940346808,1.95,1.3749634638926806,0.0007007215869115054,0.03605407723128598,0.8162830492830966,0,0.09701843737627766,0.1992409570304738
+128,1,0.1862731586422539,1.9,1.385965480092449,0.0006999470580987418,0.036731066211086155,0.8064904786002378,0,0.20768888967444887,0.17732534257491447
+128,2,0.201951283215794,1.9,1.3638045000522778,0.000691232704671164,0.036232626404388714,0.8030056916901266,0,0.2767049866108416,0.1708976285715245
+128,3,0.22996719210162161,1.95,1.3629215651381676,0.0006908894257701096,0.03639867150681391,0.8144673318719704,0,0.34210117711850274,0.17708907084740164
+128,4,0.26111223027517716,1.95,1.3625086721199537,0.0006907376666934477,0.03615773591282405,0.8144048855073708,0,0.4025257678074976,0.20033974384059378
+128,5,0.23275728305787088,1.95,1.3741714994809364,0.000708597796888125,0.0364865441906569,0.8161666160475102,0,0.42176919125162926,0.2134986885240639
+128,6,0.301540044802875,1.9,1.3768920347685616,0.0007071110763012188,0.036435425670567595,0.8050727536008229,0,0.49362414292360846,0.21363462544477205
+128,7,0.3291050519411546,1.9,1.3763142179178973,0.0007084281601709746,0.03668615448451551,0.8049824739895421,0,0.5613059129574908,0.2152756225271943
+128,8,0.2944372435213165,1.9,1.3758876385205228,0.000709535066539713,0.036561118947587956,0.8049158460429284,0,0.5718962700911767,0.21892911828281938
+128,9,0.30469326040005273,1.8499999999999999,1.3783107971611137,0.0007079545111350061,0.036624557227721365,0.7932661719482347,0,0.5913917017079614,0.2271219323895606
+128,10,0.37596648349050255,1.9,1.3800489705063677,0.0007067911411019886,0.03663175691047109,0.8055675961578053,0,0.675446617971185,0.21929278767342855
+128,11,0.3976733484278049,1.95,0.9075053934043876,0.0009302962785566724,0.03204274907436311,0.7358221676945664,0,0.7307321846796352,0.21793491518650276
+128,12,0.4436934413628086,2.0,0.9217142619526736,0.0009864933691786878,0.03290625410241226,0.752815889322816,0,0.84591504081207,0.18442475012660187
+128,13,0.43336745168746554,2.0,1.150776063590063,0.0007605966123918175,0.03365726061381826,0.7928674706459712,0,0.8767646420043929,0.20887198295236126
+128,14,0.4935587207392861,2.0,1.3525401921107578,0.0007049842487775426,0.036069978417549386,0.8240382287933578,0,0.9820875008481725,0.16907906800005681
+128,15,0.49543726747945854,2.0,1.1470050592116705,0.0007579350614190985,0.03369541329802887,0.7922466035837032,1,1.0,0.15145755826486174
+128,16,0.4715452135385843,2.0,1.3660761749207206,0.0007206662900709294,0.03644823986238334,0.8259968428202249,1,1.0,0.17181737846194758
+128,17,0.4530778184088349,1.95,1.3645917210998535,0.0007215620469853003,0.03662760910151241,0.8147288370784339,1,1.0,0.14359272802944947
+128,18,0.4389368842282971,2.0,1.3688672250117837,0.000718046926549271,0.03659344823405371,0.8263968729548579,1,1.0,0.09645628076099014
+128,19,0.4552571097926143,2.0,1.3728517431671068,0.0007143349291684548,0.0366840977272579,0.8269667066335179,2,1.0,0.11752369930871423
+128,20,0.49739302698986254,2.0,1.3860630309831552,0.0007004657436023511,0.03677369759137961,0.8288450533058686,2,1.0,0.15797675663287514
+128,21,0.5349549836046924,2.0,1.3858956345186613,0.0007006687774424108,0.036466687559903524,0.8288213625918263,2,1.0,0.1831832786823081
+128,22,0.49470584624859837,2.0,1.3856865035049672,0.0007009764028746625,0.03664291284675661,0.8287917770743956,2,1.0,0.21568615416199433
+128,23,0.5246443728811984,1.95,1.38209232190589,0.0006991097067373179,0.03667561703963466,0.8173492378581481,2,1.0,0.2488145762706609
+128,24,0.5141451406734973,1.95,1.382587270754301,0.0007008110364050909,0.03660868784895198,0.8174236247203118,2,1.0,0.28048380224499087
+128,25,0.5460347830126892,2.0,1.383137902020453,0.0007000103055585319,0.036693737631793184,0.8284295630764797,2,1.0,0.3201159433756304
+128,26,0.5878843901733748,2.0,1.3835187588477467,0.0007014313430947723,0.03674227200971636,0.8284840928723392,2,1.0,0.35961463391124937
+128,27,0.5617505093666263,2.0,1.382524599087951,0.0007015223755197607,0.036415698730961656,0.8283428043104109,2,1.0,0.3725016978887541
+128,28,0.5503250776263613,1.95,1.3825778730844542,0.0007031560235078716,0.0365575425890507,0.8174229221322076,2,1.0,0.40108359208787087
+128,29,0.5042703594218675,2.0,1.3439616028282333,0.0006715194702039682,0.035971423403513544,0.8227811213213146,2,1.0,0.34756786473955836
+128,30,0.4939810036490757,1.95,1.382762838033001,0.0006991283355037626,0.03644572974438183,0.8174493231098158,2,1.0,0.3132700121635857
+128,31,0.5274877824261905,2.0,1.383912770628982,0.0006991919366701899,0.03669653908657381,0.8285394377239003,2,1.0,0.3249592747539683
+128,32,0.562071202414602,2.0,1.383582497503887,0.0006986150894133627,0.03669743989890546,0.8284923494939358,2,1.0,0.3735706747153395
+128,33,0.5739480658338616,2.0,1.383853572809768,0.0006992937094428339,0.03648497481663638,0.828531056726522,2,1.0,0.4131602194462053
+128,34,0.5858355839099236,2.0,1.3440421326046008,0.0006723720881805146,0.03513588010957341,0.8227931118832426,2,1.0,0.45278527969974514
+128,35,0.5675933073181848,2.0,1.3401727800944918,0.0006698260174593101,0.035458675259685116,0.8222274933238601,2,1.0,0.4586443577272825
+128,36,0.5230927178053766,2.0,1.343339477996108,0.0006702022653538372,0.03592184693194662,0.8226900053379751,2,1.0,0.41030905935125517
+128,37,0.6124419336951071,1.95,1.3458189769756486,0.0006708861719321852,0.03595631930694988,0.8118629333204844,2,1.0,0.44147311231702396
+128,38,0.5175519785213054,1.95,1.351770303145472,0.0006779886505229149,0.035146451203982285,0.8127724228206987,2,1.0,0.3918399284043511
+128,39,0.5846908200084415,1.9,1.3823775225395543,0.0007016787143068518,0.03668569157875971,0.8059304549233176,2,1.0,0.44896940002813823
+128,40,0.5208794556706949,1.9,1.3498274194528124,0.0006775190956972888,0.03602194772269987,0.8007809486831624,2,1.0,0.4029315189023165
+128,41,0.5826123334954642,1.8499999999999999,1.3519321425807265,0.0006772117041594847,0.03557926920748554,0.7888964945028695,2,1.0,0.4420411116515469
+128,42,0.525458043810741,1.8499999999999999,1.3474307597741304,0.0006743549308294686,0.035725980612877406,0.7881449106617696,2,1.0,0.4181934793691366
+128,43,0.5090928581441352,1.7999999999999998,1.348810640185281,0.0006742725019512335,0.036050570234291125,0.775591721539846,2,1.0,0.3636428604804507
+128,44,0.573020203626611,1.8499999999999999,1.3766261104198225,0.0007033775368273949,0.03630327162726579,0.7929882526360287,2,1.0,0.41006734542203643
+128,45,0.5137604267457911,1.8499999999999999,1.348315455429705,0.0006743283853791311,0.03547928153249631,0.7882925839993126,1,1.0,0.3792014224859703
+128,46,0.5368694308365172,1.7999999999999998,1.3432426758119091,0.0007354671046164349,0.03602797550558427,0.774642501320169,1,1.0,0.38956476945505697
+128,47,0.5184716903426408,1.7999999999999998,1.3413354720532897,0.0007440045521288998,0.036600359377555194,0.7743123674185018,1,1.0,0.361572301142136
+128,48,0.5788740206889713,1.8499999999999999,1.3490256238186291,0.0007363889133966731,0.03655342636324746,0.788431782895841,1,1.0,0.4295800689632377
+128,49,0.5524148359173013,1.8499999999999999,1.3721579960146957,0.0007053725218748925,0.03644511613405753,0.7922544728973154,1,1.0,0.44138278639100426
+129,0,0.18460453613901,1.7999999999999998,1.374592422029826,0.0007044170814298274,0.03632010804338381,0.7800574605105697,1,0.14713949806426987,0.25249578971100695
+129,1,0.191258258131094,1.7499999999999998,1.3740691057747156,0.0007053107222309725,0.03656738423652846,0.7668268520808318,1,0.17027925607743646,0.27715518566706476
+129,2,0.18017353700671299,1.7999999999999998,1.3735808583688116,0.0007043935921764765,0.03644285409085535,0.7798838515094539,1,0.18408774909027767,0.28846145790200645
+129,3,0.21954836893336804,1.8499999999999999,1.3736073459711045,0.0007045442737490306,0.03645519796537632,0.7924926440779445,1,0.2036844626687932,0.32691527955283584
+129,4,0.2659348347405993,1.8499999999999999,1.3845075176160064,0.0006989254996499356,0.036715585732212834,0.7942776054717626,1,0.2542102334244141,0.3808358045694455
+129,5,0.2784458432293494,1.8499999999999999,1.3844977888278505,0.0006990081598251709,0.036509054815379395,0.7942760427901177,1,0.28315622160885856,0.4172778486193533
+129,6,0.2617972304660284,1.9,1.3820373977168658,0.0007018079798768472,0.036609021394060796,0.8058772920797822,1,0.3253695720085937,0.4054980055419697
+129,7,0.29121187626777134,1.95,1.3820150423002266,0.0007011477184639134,0.036690764230201615,0.8173383090809171,1,0.3544153268587946,0.43148581841417827
+129,8,0.357431826798926,1.95,1.381895819895242,0.0007014358923986561,0.0365672389381632,0.8173205949850699,1,0.3937506735982013,0.499771857865485
+129,9,0.3933528581269599,1.95,1.381623929337123,0.0007019197085317806,0.036475253825098544,0.8172801406448007,1,0.4328830301088349,0.5673321536114199
+129,10,0.372295803274038,1.95,1.3859695945009105,0.0007003737679610233,0.03677041486601519,0.8179277382116666,1,0.4562827135449691,0.5659423928535012
+129,11,0.3718454868869485,1.9,1.3857523453470102,0.0007004334745402598,0.036661385224076984,0.8064573656981775,1,0.49150173822869886,0.5508159719848964
+129,12,0.38940730360487363,1.95,1.3857976374947776,0.000700191668839157,0.03669529427303902,0.8179020743953737,1,0.50672906109622,0.5557189305546189
+129,13,0.38417345626571064,2.0,1.3855458591913112,0.0007002037484360051,0.03676553829459854,0.828771599997102,1,0.5439249670472746,0.5220115648226693
+129,14,0.4596989157626152,2.0,1.3855387257836664,0.0006999381702073624,0.03673951356780906,0.8287705123219327,1,0.586118653726402,0.5841715142401813
+129,15,0.5003850312206433,2.0,1.3856190487727003,0.0007003137996071735,0.03641285553247971,0.828782017257739,1,0.6475660382926277,0.6378620530119739
+129,16,0.4705496558673773,2.0,1.3499781737209322,0.0007044369881706162,0.036290033653524185,0.8236662706794857,1,0.7027794168942088,0.5981262970323127
+129,17,0.5458610206349415,1.95,1.3743099261261313,0.0006929055435098068,0.036363062728022165,0.8161826759641579,1,0.7530272706680918,0.648833707892349
+129,18,0.5145201510735639,1.95,1.3426233398569725,0.0007027916661779523,0.03556892780186575,0.8113841061864134,1,0.7984202321324044,0.6171735274020067
+129,19,0.5204116726912524,1.9,1.33919317170775,0.0007016764311656652,0.03571586586708822,0.7990867876222159,1,0.8354882970574773,0.5873878462275385
+129,20,0.5721841184887038,1.95,1.3675853877831303,0.000724367094217591,0.03664310590470227,0.8151811378959941,1,0.8706826005381119,0.6130369275781968
+129,21,0.5700256054370244,1.95,1.3348417314815826,0.0006658408981782268,0.03559180702241927,0.8101789577400975,1,0.9075954784650635,0.6232913801699966
+129,22,0.6411646988034646,2.0,1.3380474945570349,0.0006695711169892417,0.035221707473754416,0.8219165541312287,1,0.96336151201089,0.6860669799970283
+129,23,0.6245009370026282,2.0,1.3383072621925072,0.0006719761057116258,0.035198304048984795,0.8219552769872455,1,1.0,0.6816697900087606
+129,24,0.6736791957963948,2.0,1.3405783589466935,0.0006760637895121957,0.03498801570242012,0.8222885918705315,1,1.0,0.7455973193213159
+129,25,0.6887432880711635,2.0,1.3394139290973857,0.000677974736787627,0.03526192201871642,0.8221189287127676,1,1.0,0.7958109602372114
+129,26,0.6406864719168497,2.0,1.337837321666072,0.0006794668555748376,0.03553774267643111,0.8218886863468339,1,1.0,0.7689549063894987
+129,27,0.6972431938630973,1.95,1.3353899869761736,0.0006764750041957379,0.03579422972230487,0.8102665287573279,1,1.0,0.8241439795436576
+129,28,0.6457129351911289,1.95,1.3767083362481123,0.0007010222236304335,0.03652846934485565,0.8165446647981336,1,1.0,0.7857097839704298
+129,29,0.6864838629110577,1.9,1.3340978809619217,0.00067606623011573,0.03500631923357675,0.7982592582649918,1,1.0,0.8216128763701923
+129,30,0.6976915633975467,1.9,1.3808582779522187,0.0006997151342936524,0.03656390314775016,0.8056921098559173,1,1.0,0.8589718779918222
+129,31,0.7042439799693332,1.95,1.3806329763866447,0.0006984156925824634,0.03638851535860643,0.8171310646356622,1,1.0,0.8808132665644436
+129,32,0.66523820528979,2.0,1.3802056251802295,0.0006972310850143417,0.03642418849157492,0.8280115937454207,1,1.0,0.8507940176326335
+129,33,0.7262061403585032,1.95,1.3820780682670386,0.0006976541676985322,0.036435821375829396,0.817346675332847,1,1.0,0.9206871345283438
+129,34,0.7469221926039684,1.95,1.3827655344464183,0.000698906701294409,0.03662847906524149,0.8174496593372269,1,1.0,0.989740642013228
+129,35,0.7170653922893073,1.95,1.3830553886380028,0.0007001542443136664,0.03642268254154861,0.8174932813181552,1,1.0,0.990217974297691
+129,36,0.72,1.9,1.3821626642501108,0.0007003871087322967,0.0366832701253633,0.8058964433845346,1,1.0,1.0
+129,37,0.75,1.95,1.3808917484667527,0.000700534832782308,0.036443303150735205,0.8171703624403063,1,1.0,1.0
+129,38,0.74,1.95,1.3811151036930966,0.000702505645226312,0.03642273186116382,0.8172043188148261,1,1.0,1.0
+129,39,0.7050123773338193,2.0,1.3809322866290576,0.0007007722432019463,0.036604370246614316,0.8281160598696771,1,1.0,0.9833745911127307
+129,40,0.75,1.95,1.38308598655854,0.0007003343663069525,0.036453852646100016,0.8174979001694919,1,1.0,1.0
+129,41,0.7011422880685652,1.95,1.3829391592433598,0.000701624355249234,0.03643209926695174,0.8174763781903444,1,1.0,0.9704742935618839
+129,42,0.689182278750615,1.9,1.384424912364699,0.0007010733812394384,0.03674706260464196,0.806250290435122,1,1.0,0.9306075958353832
+129,43,0.7272068155575802,1.95,1.3853041505524837,0.0007006875664259201,0.03671428504526854,0.8178287115350488,1,1.0,0.9573560518586003
+129,44,0.7354258056678344,1.95,1.3852829829651063,0.0007000376093625121,0.036424496130922406,0.8178253641924538,1,1.0,0.9847526855594481
+129,45,0.74,2.0,1.384958233731951,0.0006994541107931643,0.03672296745582011,0.8286879815632426,1,1.0,1.0
+129,46,0.74,2.0,1.3844593707318549,0.0006989246551977524,0.03646385890829104,0.8286169988813803,1,1.0,1.0
+129,47,0.74,2.0,1.3836909906909027,0.000698343470076916,0.0366765957141459,0.8285076878578753,1,1.0,1.0
+129,48,0.7175823371826591,2.0,1.3826798330646795,0.0006977402937623142,0.03649897598140326,0.828363800611172,1,0.9939558429566476,1.0
+129,49,0.7180783072151068,1.95,1.382370606725,0.000697414607609698,0.03638185721059989,0.8173902731479121,1,1.0,0.9935943573836893
+130,0,0.1961507202161355,2.0,1.3740276483534113,0.0007022587784892055,0.03624667059216878,0.8271314520884977,1,0.16262696822881334,0.2703331097487005
+130,1,0.1572455373727531,1.95,1.3741196293760323,0.0007028366559608242,0.036500251624500636,0.8161571045474244,1,0.18027024933926566,0.2504581254568227
+130,2,0.20260784972094417,1.9,1.3765531695544873,0.0007022244520987057,0.036503977672514606,0.8050180357332463,1,0.2156574418603603,0.25448290992266687
+130,3,0.17327297401457786,1.9,1.3851133292330853,0.0006996744699670175,0.03646380628999915,0.8063573690194795,1,0.2494554743067104,0.2116359476396456
+130,4,0.2532244340122578,1.8499999999999999,1.3854870442199116,0.0006997591990515997,0.036746869968906665,0.794437886956646,1,0.29838633222519134,0.2795663370739375
+130,5,0.23133572825161522,1.8499999999999999,1.3853855209823982,0.0006998141405635278,0.03654913190959219,0.7944213250193136,1,0.3132385618366028,0.286801011723247
+130,6,0.22227870118268522,1.7999999999999998,1.385359995069703,0.0006999243951505646,0.036628037339974696,0.7818977254197065,1,0.33910835511001297,0.2554511971289335
+130,7,0.23155826541667135,1.8499999999999999,1.3856916168594444,0.0006999699388404674,0.03669917359986463,0.7944713617734668,1,0.3888820957991871,0.22001809032332173
+130,8,0.28939342030925524,1.9,1.3859543979207245,0.0007000213087496525,0.036412309863729626,0.8064887722466996,1,0.41881980762598153,0.27288499086287543
+130,9,0.274332739729358,1.9,1.3849994882380323,0.0007017269329568694,0.03660471394496441,0.8063402336871014,1,0.4284094318113754,0.27656322334935945
+130,10,0.31839522395176295,1.95,1.384824100095143,0.0007019607734929044,0.036782271696134086,0.8177575598411387,1,0.46678772372703686,0.3056004482031607
+130,11,0.34163669697720284,1.95,1.3849964484980957,0.0007014173298548865,0.036665007345802816,0.8177830815786796,1,0.5036511856852862,0.3339207423436278
+130,12,0.3983130656556125,1.95,1.3850292409976908,0.0007009570384524833,0.036531149951773464,0.8177878308896144,1,0.5657099686715897,0.40676359395658856
+130,13,0.40806791583631546,1.95,1.3851644337474185,0.0007011870132633497,0.03678136698682981,0.8178080437483084,1,0.5931373331822719,0.4360432752113557
+130,14,0.4591380885493284,2.0,1.3856453049964195,0.000700879511090104,0.03660288915007967,0.8287859035951316,1,0.6340407482454373,0.5184059641705117
+130,15,0.4406336431169996,2.0,1.374253233086571,0.000693236942631584,0.03650731711800992,0.8271611253351592,1,0.6553861194914476,0.5282639844014017
+130,16,0.5057497758303432,2.0,1.3741387500827518,0.0006939872581473602,0.03638280586542754,0.827144972145602,1,0.7041458060561562,0.5803048446929356
+130,17,0.4761020174313063,2.0,1.3739089988292796,0.0006948928435990693,0.036393531157516576,0.8271123797159866,1,0.7503469375630275,0.5532108080203177
+130,18,0.521406143673979,1.95,1.3773839893737965,0.0006954987377751594,0.03618468126925773,0.8166442015072545,1,0.7737446974630684,0.5730275489625052
+130,19,0.5405983865421164,1.95,1.3761150247203804,0.0006942398103284154,0.036432227937706715,0.8164537375741056,1,0.8017015651762184,0.5997258682387636
+130,20,0.5154755328593636,2.0,1.367214691354213,0.0007254621757265391,0.03666074137067217,0.8261617941311616,1,0.8369979820895626,0.5689211334117954
+130,21,0.5732484780910151,1.95,1.3664010451923096,0.00072604912482476,0.036602300320146865,0.8150031444340975,1,0.8792555095470481,0.6051542475739858
+130,22,0.562154339672963,1.95,1.3412620317675412,0.0006768494976290195,0.03528706478221842,0.8111677361277938,1,0.911348037115601,0.5920504160890754
+130,23,0.5590317200197559,2.0,1.364988730442246,0.0007285117954005322,0.036364350274765235,0.8258427500952058,1,0.9537659151129774,0.558417846581883
+130,24,0.6107084408423766,2.0,1.3640368913001584,0.0007292047099605837,0.03633057525708085,0.8257060073809923,1,0.99390528436715,0.5771544236517219
+130,25,0.5739447401953007,2.0,1.3626026600344265,0.0007319452413027637,0.03651960948394749,0.8255002922478434,1,1.0,0.5464824673176691
+130,26,0.5626374873542097,1.95,1.3610456122163324,0.0007335068602262007,0.03677505488113078,0.8141965835427386,1,1.0,0.5087916245140324
+130,27,0.6228734081993005,2.0,1.3587091168133152,0.0007357944772381386,0.03674258544581392,0.8249398298304078,1,1.0,0.576244693997668
+130,28,0.5874917115365897,2.0,1.3638856574243237,0.0007292438206874528,0.03671605814470008,0.8256842526537951,1,0.9912316981141895,0.5699967743030464
+130,29,0.62058008804103,1.95,1.367286009286017,0.0007243849396720635,0.03673783076895958,0.8151360343992238,2,1.0,0.6019336268034333
+130,30,0.5686390754767789,1.95,1.3687189937086632,0.00071932835050025,0.03669533806061647,0.8153503497075949,2,1.0,0.5621302515892631
+130,31,0.6081352750610716,1.9,1.3510777774158065,0.0006755332969915792,0.035572679361089654,0.8009797111835735,2,1.0,0.5937842502035717
+130,32,0.6397115799117343,1.9,1.3536034495989016,0.0006767823994412692,0.03551402668572057,0.8013824232435678,2,1.0,0.6323719330391141
+130,33,0.5764210483520089,1.9,1.3701922331885965,0.0007171179518040099,0.03664209807863253,0.8040223537672618,2,1.0,0.588070161173363
+130,34,0.6111605117904598,1.8499999999999999,1.3476140253712359,0.0006721889203134645,0.03597891111019265,0.7881747861097502,2,1.0,0.6038683726348659
+130,35,0.6425594542161958,1.8499999999999999,1.3714538379191297,0.0007148287937566194,0.036238847951151766,0.7921416675796331,2,1.0,0.641864847387319
+130,36,0.6529034247293987,1.8499999999999999,1.3693286037628187,0.0007155213210813322,0.03654804383118303,0.7917917519520901,2,1.0,0.6763447490979952
+130,37,0.6331072374113954,1.9,1.366932710409407,0.0007161400884391012,0.03658691377182785,0.8035079316414435,2,1.0,0.6770241247046511
+130,38,0.6673151922851719,1.95,1.371042283258568,0.0007119162416337991,0.03663855771661027,0.8156976457822935,2,1.0,0.7243839742839061
+130,39,0.7046593610173184,1.95,1.3690395510948605,0.000712025195611638,0.036533755238708415,0.815396407469876,2,1.0,0.7488645367243948
+130,40,0.6608678830998235,1.95,1.3687147216767244,0.0007170537294820677,0.03664694795930806,0.815349021624434,2,1.0,0.7695596103327448
+130,41,0.6673419324456696,1.9,1.3716316496859315,0.0007130926834908896,0.03661430867199329,0.8042477965424716,2,1.0,0.7911397748188987
+130,42,0.6789712760925162,1.95,1.373197654422162,0.0007098753043656507,0.03626094349858531,0.8160208402255181,2,1.0,0.8299042536417204
+130,43,0.736224735556032,2.0,1.372051234115656,0.0007024906700051683,0.03632790429877448,0.8268487381338795,2,1.0,0.85408245185344
+130,44,0.6452811498107661,2.0,1.3730718018086314,0.0007074172943547904,0.03661018897541651,0.8269962137178958,2,1.0,0.8176038327025537
+130,45,0.6315487641067304,1.95,1.3754323559373605,0.000704799252614349,0.03638892964031672,0.8163545789145776,2,1.0,0.7718292136891014
+130,46,0.6702973173178381,2.0,1.374359949999371,0.0007074201458951055,0.036591573368858585,0.8271804367492177,2,1.0,0.800991057726127
+130,47,0.6242498953603579,2.0,1.3771478018359422,0.0007020358452124671,0.0365734575673779,0.8275770683855687,2,1.0,0.7474996512011931
+130,48,0.7181835807634577,1.95,1.375091240072346,0.0007053362996852789,0.03655616064083992,0.816303594442861,2,1.0,0.7939452692115258
+130,49,0.7012157783746992,1.95,1.374582437816643,0.0007087828848880016,0.036401870013005766,0.8162283202049321,2,1.0,0.8373859279156638
+131,0,0.13262471307001236,2.0,1.3734358314021562,0.000701872649883344,0.0360917335476234,0.8270467042865204,0,0.11836080870216348,0.21760129863048994
+131,1,0.11924717317661444,1.95,1.3743993389571962,0.0007006025621972119,0.036475113256785284,0.8161983994619741,0,0.12442097651520267,0.2315959419017779
+131,2,0.18567886042921022,2.0,1.3757208723237102,0.0006995959145138406,0.036505754504088314,0.8273726629953222,0,0.18541153642054042,0.23838081953664683
+131,3,0.24413083790596868,2.0,1.376590209439033,0.0007019440866765198,0.03659584811399666,0.8274974629766662,0,0.3167829325039019,0.22472554968135972
+131,4,0.25897547592618836,2.0,1.3722393732547362,0.0006936203362698076,0.03634079967165153,0.8268731327077223,0,0.3904487740508389,0.20931988768617615
+131,5,0.2508840645541655,2.0,1.3713421019138763,0.0006932864136841791,0.036264671892528466,0.8267445514302568,0,0.4074792848269255,0.22630783541131758
+131,6,0.30877050037911136,2.0,1.3666902685668672,0.0007148160214781433,0.03614530748380782,0.826083405405799,0,0.48781922499657504,0.21214270126827112
+131,7,0.34592742489077827,2.0,1.3664251720400702,0.000718197956546126,0.036486501073056524,0.8260462877265516,0,0.5940461120314549,0.19436326692732098
+131,8,0.3709674273589123,2.0,1.3770813334211844,0.0006988829724040157,0.03648548575028331,0.8275666837555142,0,0.6797321415911391,0.19691523574152223
+131,9,0.41925704570492145,2.0,1.2216003833259226,0.0007057702848361307,0.033360252403525956,0.8042405684975018,0,0.7864510465368039,0.18225542363399969
+131,10,0.4311264604946531,2.0,1.2194203350626904,0.0007058780384643624,0.03384165522325475,0.8038971530783751,0,0.8556019472943148,0.16295227192309036
+131,11,0.3929082231118567,2.0,1.126177630088068,0.0007687918006382379,0.033117699276475523,0.7888013264616571,0,0.8646000380021306,0.1568940263700147
+131,12,0.4482023221239284,2.0,1.1326059978729888,0.0007941824448817042,0.033688732358538274,0.7898786927640306,0,0.9154112798011318,0.14012603401158563
+131,13,0.44318860116828845,2.0,1.137545070444049,0.0007845004605149682,0.0337998270155803,0.7906940540440686,0,0.9374101315359509,0.16074849517969353
+131,14,0.46049739710437904,2.0,1.1346788575308187,0.0007826217750701641,0.03393681899349125,0.7902186864018347,0,0.9632469961862771,0.18399532876622718
+131,15,0.4795473623832941,2.0,1.1315894085130818,0.0007805522784871824,0.03379034926565393,0.7897053922487614,0,1.0,0.1984912079443135
+131,16,0.49618821921981615,2.0,1.1282492505595725,0.0007782817647120669,0.033559502907681525,0.7891493972328006,0,1.0,0.18729406406605387
+131,17,0.4841582314395018,2.0,1.1326011654438979,0.0007693476374509016,0.03321337566489765,0.7898696468981621,0,1.0,0.2138607714650059
+131,18,0.4893790381407243,2.0,1.3596208309584144,0.0007028707580260538,0.0359392557763257,0.8250619513423993,0,1.0,0.23126346046908086
+131,19,0.5035125317314944,2.0,1.3589618944766062,0.0007036724690201705,0.03605661376286247,0.8249670550806995,0,1.0,0.21170843910498102
+131,20,0.4878946755609057,2.0,1.35828700075277,0.0007017966366190613,0.03603958447512323,0.824869039508468,0,1.0,0.22631558520301898
+131,21,0.4941345216978172,2.0,1.3576010019532743,0.000702537882944477,0.03636023826997993,0.8247701322184637,0,1.0,0.24711507232605712
+131,22,0.5194194327369653,2.0,1.356831781763818,0.0007032851936420796,0.03629852108150052,0.8246591495047985,0,1.0,0.26473144245655117
+131,23,0.5084127357226418,2.0,1.356061470246236,0.0007011627264198124,0.03606257846442382,0.8245471232365659,0,1.0,0.29470911907547254
+131,24,0.5127589351961773,2.0,1.355232680559623,0.0007019131171759187,0.03593351798893067,0.8244274079055693,0,1.0,0.3091964506539242
+131,25,0.538300261000793,2.0,1.3543142826596066,0.0007025884566172997,0.035842684617843956,0.8242946287080587,0,1.0,0.2943342033359765
+131,26,0.5258956773506911,2.0,1.3614384669000272,0.0007006884249175286,0.036081294761297976,0.8253235151143178,0,1.0,0.25298559116897024
+131,27,0.48054637983991294,2.0,1.3672043199786745,0.0006994375577266111,0.036386546192523336,0.8261528291950428,0,1.0,0.2684879327997098
+131,28,0.5240430428348962,1.95,1.3672459606514058,0.0007014737905095321,0.036369568510566906,0.8151230942200152,0,1.0,0.2468101427829871
+131,29,0.5047450357476865,1.95,1.3715982651830418,0.000700477085625837,0.036269706863554435,0.8157777764241293,0,1.0,0.2824834524922883
+131,30,0.5123371726326318,2.0,1.3708202652386041,0.000700837473917168,0.03630764083324223,0.8266719557687425,0,1.0,0.30779057544210603
+131,31,0.4888284990446152,2.0,1.3703273941616805,0.0007011691399414856,0.036246550590701206,0.8266014182283976,0,0.9935095905425744,0.30474887609195134
+131,32,0.5172318246185643,1.95,1.370325297955759,0.0007032332539144248,0.0363812380136648,0.8155872214904576,0,1.0,0.32410608206188096
+131,33,0.5256490090356751,1.95,1.3690376817124061,0.0007037785442562144,0.03633920636878463,0.815393643408734,0,1.0,0.3521633634522502
+131,34,0.5344583603390046,2.0,1.3680209496240072,0.0007042495254355761,0.03645633814939296,0.8262714673357053,0,1.0,0.3815278677966821
+131,35,0.5532483295064995,2.0,1.3673424452682479,0.0007045047031562952,0.036428285428899955,0.826174121848595,0,1.0,0.344161098354998
+131,36,0.5443626687085918,2.0,1.372051505895234,0.0007028611916322983,0.036399635278417566,0.8268488831395775,0,1.0,0.34787556236197253
+131,37,0.528373346510298,2.0,1.3716841625861635,0.0007008430153933454,0.03626993404297039,0.8267957063306334,0,1.0,0.36124448836765966
+131,38,0.5151370108284761,2.0,1.3706472071952145,0.0007010675110637556,0.03635979905928462,0.826647223599541,0,1.0,0.3837900360949203
+131,39,0.5524892559138871,2.0,1.370825985400611,0.0007036403164678442,0.03635634177866422,0.826673578591649,0,1.0,0.3749641863796233
+131,40,0.5122663878068499,2.0,1.3703921659993292,0.0007015184606587201,0.03638868775687775,0.8266108020106071,0,0.9955579989577349,0.3801439607458529
+131,41,0.5415063565411485,1.95,1.3703794720781455,0.0007037283804743364,0.03649542734227347,0.8155955183276739,0,1.0,0.40502118847049506
+131,42,0.565965560648286,2.0,1.2294117472499877,0.0006286339811637122,0.032690798365234544,0.8054432754631592,0,1.0,0.3865518688276197
+131,43,0.5592442820417812,2.0,1.3746700528787459,0.0006994187550615697,0.03630837786702622,0.8272224751838524,0,1.0,0.39748094013927043
+131,44,0.5228288888752521,2.0,1.37405791113506,0.000698148259602058,0.03642952948471501,0.8271346037048082,0,1.0,0.40942962958417367
+131,45,0.567231544829233,2.0,1.1989432216784945,0.0005922854112784283,0.031998838391965476,0.8006126437124527,0,1.0,0.39077181609744316
+131,46,0.5625757927424441,2.0,1.3743888027334428,0.0006945626454707332,0.03648320513587543,0.8271808852970148,0,1.0,0.3752526424748134
+131,47,0.5532262274516062,2.0,1.3775502823626866,0.0006952393535481888,0.0364911069880578,0.8276325529496583,0,1.0,0.3774207581720206
+131,48,0.537703000464619,2.0,1.3767171129944515,0.0006943801887619721,0.036356355547849675,0.8275134178694259,0,1.0,0.3923433348820635
+131,49,0.5421949872008082,2.0,1.3761744382938983,0.000694455325371989,0.03616026398330367,0.8274359669064869,0,1.0,0.40731662400269364
+132,0,0.10419954428938384,2.0,1.3710526110415118,0.0007012724926851477,0.0360101013073756,0.8267053696557055,0,0.10405415543829372,0.2085929403802212
+132,1,0.08439780120187576,1.95,1.372734642447191,0.0007000319116393138,0.036411114948517134,0.8159483612059286,0,0.19558412759740068,0.18721383387638493
+132,2,0.2055983364681633,2.0,1.3853747281739377,0.0007001686850341589,0.036710899567481865,0.8287473036062055,0,0.2686319491703867,0.19381852266669544
+132,3,0.1978137004007138,2.0,1.3476114777177597,0.0006843469257311799,0.03616014434037265,0.8233164232702557,0,0.2917154786868114,0.20375836308663087
+132,4,0.2461366054826554,2.0,1.3736079466528066,0.0006918155731479261,0.03633762264594265,0.8270684455115205,0,0.3674159124550578,0.19723413500210762
+132,5,0.2123431783184738,2.0,1.3490364614299235,0.0006820241629071936,0.03570401751561193,0.8235229400104319,0,0.37739830144223163,0.20461285913860383
+132,6,0.24401145208871647,1.95,1.3752991376858468,0.0006927726411378719,0.03604819116918333,0.8163309996365582,0,0.40182022790532845,0.2109445364219503
+132,7,0.30719614199515916,1.95,1.366017897433703,0.000709031222739475,0.03641122287432411,0.8149402361427356,0,0.5049100076783731,0.18410712974603294
+132,8,0.2933490713709401,1.95,1.3649195551636595,0.0006977789813384624,0.03627569084217826,0.8147711386026348,0,0.5230044105634737,0.21382435715183518
+132,9,0.3002918668058544,2.0,1.364851136672518,0.0007018928548380004,0.03652322250597545,0.8258153017396667,0,0.5278027182419431,0.23056926503025715
+132,10,0.3435021214547179,2.0,1.3665553682658482,0.0006997929812630024,0.03640396563896599,0.8260597063484266,0,0.5841794722440956,0.23276777519026565
+132,11,0.31187880740636026,2.0,1.3652147353922177,0.0006994614996578884,0.03627311829295683,0.8258668978706011,0,0.5943927952798507,0.24707229764806662
+132,12,0.39633700540486916,1.95,1.3682640114956963,0.0006978946360727442,0.03596546379957404,0.8152753846067359,0,0.6968110035204593,0.22537534665561823
+132,13,0.429829840615737,2.0,0.8772296423221356,0.0008992868271585003,0.03212896079373439,0.7444120654536912,0,0.7989341901325085,0.20085388187577846
+132,14,0.4531665525017554,2.0,0.8799740202942744,0.0008939241409902473,0.03224277446483468,0.7449318300956994,0,0.8761009029823192,0.20908730436275907
+132,15,0.4215131871593611,2.0,1.3553791691769161,0.000695607922276032,0.03613657720111963,0.824446785516548,0,0.8864228809136693,0.22314678264631121
+132,16,0.45984131031035963,1.95,1.354709652471593,0.000693480535651917,0.035897246153414615,0.8132240086687709,0,0.9107877871697212,0.25175398480823713
+132,17,0.5221055224046688,1.95,1.360164188280264,0.0006923890858325543,0.03604306018526045,0.8140507565053909,0,1.0,0.24035174134889592
+132,18,0.5121812789091703,1.95,1.3617465532114787,0.0006967502421703332,0.03617288591337089,0.8142914824210962,0,1.0,0.24060426303056756
+132,19,0.47386550665364613,2.0,1.360309173831796,0.0006967414010825068,0.03622090021309996,0.8251595123209049,0,0.9950377318156984,0.2528347130912224
+132,20,0.5119282378093795,1.95,1.3602753790458135,0.0006946762344235483,0.036140210283441374,0.8140682794715429,0,1.0,0.23976079269793138
+132,21,0.49710863634000135,1.95,1.358198794734046,0.0006944853102302912,0.03605145664128103,0.8137537024676161,0,1.0,0.2570287878000043
+132,22,0.5225384974004148,2.0,1.3638267172917482,0.0006936071307692733,0.036005702229491496,0.8256655102584086,0,1.0,0.24179499133471571
+132,23,0.5096531502675453,2.0,1.3657335068416963,0.0006976615842256705,0.03613024470737312,0.8259409726579952,0,1.0,0.23217716755848444
+132,24,0.49339454320874865,2.0,1.3644082675454081,0.0006976424229559199,0.03620095973863156,0.8257503651503643,0,1.0,0.2446484773624954
+132,25,0.5185763521454257,2.0,1.368985570074668,0.0006965904755750021,0.03617584994557281,0.8264076945695189,0,1.0,0.2285878404847524
+132,26,0.5101540881430404,2.0,1.3699750245534859,0.0007000953396878336,0.03647190609354735,0.8265505988566427,0,1.0,0.20051362714346788
+132,27,0.4644616029533857,2.0,1.3704714657080725,0.0007031926634410795,0.03640421077402203,0.8266226472635733,0,1.0,0.2148720098446188
+132,28,0.5020507498139332,1.95,1.3702277557327316,0.0007012506133526849,0.03626554271908666,0.8155719537950971,0,1.0,0.20683583271311026
+132,29,0.4652947647525282,1.95,1.3687152180266973,0.0007014485125754517,0.03633639838001258,0.8153443974209204,0,0.9918431938862318,0.22852495732678482
+132,30,0.46760150440998133,1.9,1.368315670461169,0.0006994722848068843,0.036253514784249395,0.8037209270306008,0,1.0,0.22533834803327102
+132,31,0.4950667260256473,1.95,1.367305691122825,0.0006976833365578509,0.03625565956324988,0.8151309528963514,0,1.0,0.25022242008549084
+132,32,0.4784867053178247,1.95,1.3719901000679482,0.0006970910705953817,0.03634566756586009,0.8158356383262677,0,1.0,0.26162235105941567
+132,33,0.48571022845852346,2.0,1.3713872678529482,0.0006957260456119243,0.036233563094894464,0.8267517196877223,0,1.0,0.2857007615284115
+132,34,0.48641937992567413,2.0,1.3710680551398502,0.0006945519201853574,0.03616945154092091,0.8267056566058265,0,1.0,0.288064599752247
+132,35,0.5120711475320309,2.0,1.3703433817486501,0.0006934064019404442,0.03619612034238272,0.826601484463452,0,1.0,0.3069038251067694
+132,36,0.49553736946130345,2.0,1.3738001567645794,0.0006938244924881813,0.036334314248155954,0.8270965094546441,0,1.0,0.31845789820434484
+132,37,0.5359484074045899,2.0,1.3730959542046948,0.0006929043468183629,0.0363513735718295,0.8269955164483399,0,1.0,0.31982802468196647
+132,38,0.4967574141065813,2.0,1.3722766737037708,0.0006928101908756739,0.036399453244446975,0.8268782404039232,0,1.0,0.3225247136886043
+132,39,0.5395723221778733,1.95,1.3715236850924581,0.0006918506604264693,0.03619875662948937,0.8157639749658524,0,1.0,0.33190774059291106
+132,40,0.5236077904051586,1.95,1.3702653714483142,0.000691495828041577,0.036147393050171464,0.8155746772034159,0,1.0,0.34535930135052867
+132,41,0.5284232081708325,2.0,1.3734422723550372,0.0006923275732200385,0.036367167712385864,0.8270448949316709,1,1.0,0.3614106939027749
+132,42,0.5781465419408124,2.0,1.3437662470862348,0.0007344772483102713,0.036547736902975504,0.8227709958578512,1,1.0,0.4271551398027078
+132,43,0.5766345047076671,2.0,1.3688446339814577,0.0007194436481680476,0.036352817255076955,0.8263940326740629,1,1.0,0.45544834902555686
+132,44,0.5561211448356824,2.0,1.3679138369701063,0.0007227234783910508,0.03672704033201636,0.8262613951709895,1,1.0,0.4537371494522747
+132,45,0.5352370374310331,1.95,1.3702114162220322,0.0007186927483779138,0.03664403126923303,0.8155747431765479,1,1.0,0.4174567914367768
+132,46,0.5268995309460353,1.9,1.3683246526732264,0.0007200206668755361,0.03649008264594465,0.8037288270491427,1,1.0,0.38966510315345076
+132,47,0.5866107655298481,1.95,1.3302077474426461,0.0007352923290412627,0.03588413223672262,0.8094866996014524,1,1.0,0.45536921843282696
+132,48,0.5386586178399072,1.95,1.3700534875925747,0.000718984378811148,0.036697070478986335,0.8155510752783136,1,1.0,0.42886205946635714
+132,49,0.5797261067915029,1.9,1.3685812114679146,0.0007198936363726103,0.03663098924922277,0.8037692556657444,1,1.0,0.4657536893050096
+133,0,0.012170822368770831,1.9,1.375888163285203,0.0007009163714375227,0.03623771523585536,0.8049132217073571,1,0.136998600537558,0.1579046071791588
+133,1,0.014360302535480304,1.8499999999999999,1.3855583055046246,0.0007010440710451211,0.03673756727072815,0.7944499437689323,1,0.1730011820470959,0.11719943238880645
+133,2,0.06827020942744602,1.9,1.385523265475495,0.0007011013368051644,0.036697883351420754,0.8064218160263878,1,0.19766687670348262,0.1640115291535099
+133,3,0.1594606446820128,1.9,1.3855049240812811,0.0007011127083405143,0.0364789838686278,0.8064189563650137,1,0.2168245433134261,0.1757694245221412
+133,4,0.21061092062980682,1.9,1.384290897273404,0.0006988020594116688,0.03669762633222517,0.8062286453076551,1,0.2608762584910067,0.2208680574446804
+133,5,0.20233950374697865,1.9,1.385830344591055,0.0006998770059093305,0.03663141145704969,0.8064693661287259,1,0.2863518122128578,0.22599592953945177
+133,6,0.24788959792299844,1.95,1.385818624903746,0.0006999048691416027,0.03653972594005117,0.8179051147731471,1,0.31165742544436087,0.2774220924841802
+133,7,0.23904595266085987,1.95,1.3857174690254526,0.0006998017292232474,0.036753079475752654,0.8178900177780375,1,0.3291731691979608,0.2912556166055852
+133,8,0.25325404865351925,2.0,1.3856769582912436,0.0006998210036233021,0.03665421492410725,0.828790094747514,1,0.35677473723522396,0.30181384586476545
+133,9,0.2635776057940325,2.0,1.385616494732917,0.0006998589321809338,0.036437890841069145,0.828781525739297,1,0.3809287420885722,0.30402036319534537
+133,10,0.2587494846333993,2.0,1.3855114280330358,0.0006998768771386449,0.036674848871313476,0.8287666210682272,1,0.4110650681897388,0.2810781911916792
+133,11,0.31350318710988473,2.0,1.3847795752092842,0.0007013055791788958,0.03675309730553711,0.828663142703255,1,0.4528980680411619,0.3078131996447333
+133,12,0.2908662962901998,2.0,1.3847636907852698,0.0007008586453416268,0.036438612328157885,0.8286607604992273,1,0.44667250423153204,0.3073243153252898
+133,13,0.30589983809996707,1.95,1.384624278455764,0.0007010929550988073,0.036685958050526726,0.8177275198095788,1,0.4818975192457854,0.31046943467217636
+133,14,0.3279883176486093,2.0,1.3844032929459935,0.0007013591254876623,0.03657749986634297,0.8286097265464321,1,0.5272873835195226,0.3235778808026673
+133,15,0.37033998185791445,2.0,1.3842161083366626,0.0007015622662435264,0.03640781749671085,0.828583199473166,1,0.5669159975278699,0.3452452761558883
+133,16,0.4113787655337581,2.0,1.3841730459977315,0.000700939931489243,0.03662036366802697,0.8285769063206283,1,0.5983144297286236,0.4068433121410288
+133,17,0.44842749607245314,2.0,1.3840043198442462,0.0007015674293636869,0.036751252448790954,0.8285531178745623,1,0.6380284243043483,0.4773870878357129
+133,18,0.4593960698115395,2.0,1.363068095861455,0.0006833461830495539,0.03560404331555751,0.8255533303700989,1,0.6622682610851707,0.5149625512582374
+133,19,0.47947915925671697,2.0,1.3610719359453995,0.0006819860535469774,0.03575917336083361,0.8252652742292041,1,0.6776344030996655,0.5614179933895027
+133,20,0.5020207454391796,2.0,1.3588612362293149,0.0006803639340949065,0.03593606110860912,0.8249457880353698,1,0.7096282487036728,0.593898153192368
+133,21,0.4920972844810029,2.0,1.3564048443251389,0.0006786768878906326,0.036213686494031484,0.824590288682109,1,0.733937699062712,0.5950740161863934
+133,22,0.5011547821438073,2.0,1.3576504499188362,0.0006793308547931872,0.03614845906506524,0.8247705706918294,1,0.7521710163580737,0.6009545853352593
+133,23,0.5136869009849534,2.0,1.3034418312464922,0.0006857812079165914,0.03508274231102358,0.8167996377344712,1,0.7774196716182749,0.6090634411254783
+133,24,0.5601836204332388,2.0,1.3083497452656598,0.0006819957679531307,0.03469056788763314,0.8175317771717673,2,0.8143517372774476,0.6481430850741988
+133,25,0.5953889775772017,2.0,1.3808689951993869,0.0007020076382864393,0.0365840512181541,0.8281074024961312,2,0.8417459124899256,0.6956353752707714
+133,26,0.6523396915098859,2.0,1.3805352729443585,0.0007032324273303435,0.03669806707881655,0.8280602421849884,2,0.8983771204041878,0.7099628111607027
+133,27,0.6488387586724887,2.0,1.3796839378111652,0.0007039287256526113,0.03642814212315155,0.8279391966164253,2,0.9383113202260919,0.7450474352735065
+133,28,0.6427386348529238,2.0,1.379155365848771,0.0007054119887578755,0.03648525346322723,0.8278643081231819,2,0.9604465073940124,0.7618667729843962
+133,29,0.7193814043563791,2.0,1.3790832903432302,0.0007034970106418057,0.036666603252045404,0.8278534909464981,2,1.0,0.7979380145212638
+133,30,0.6756638153460474,2.0,1.3781228886159564,0.0007043894882291133,0.03645971804815462,0.8277168335292316,2,1.0,0.8188793844868245
+133,31,0.7075778955489644,1.95,1.3777462161859608,0.0006996291692716499,0.036473141472002965,0.8166996705085154,2,1.0,0.8585929851632144
+133,32,0.6435303924898729,1.95,1.3755638347529895,0.0006994184713561844,0.036253383605122,0.8163726761275101,2,1.0,0.8117679749662429
+133,33,0.6766792290237441,1.9,1.375564708251719,0.0006975540830146379,0.036348305076053904,0.8048613690676822,2,1.0,0.8222640967458136
+133,34,0.7074956669529469,1.9,1.377985154025085,0.0006970098066060861,0.03650773062961528,0.8052410719713761,2,1.0,0.8583188898431562
+133,35,0.6461109606525612,1.9,1.3760308786056337,0.000696480515969967,0.03653056329920686,0.8049342380342069,2,1.0,0.8203698688418708
+133,36,0.7014723883164309,1.8499999999999999,1.3758509146400846,0.0006950907336562216,0.03623783498384657,0.7928582472974048,2,1.0,0.8382412943881026
+133,37,0.7350063426555683,1.8499999999999999,1.3734840470950547,0.0006942536230306788,0.03631686926848147,0.7924689822671283,2,1.0,0.8500211421852277
+133,38,0.7447541278955544,1.8499999999999999,1.3753250569518896,0.0006981274022424357,0.03651675773839475,0.7927728680150947,2,1.0,0.8825137596518481
+133,39,0.7498603057189551,1.9,1.3762658026697572,0.0007017386697254678,0.03659725310760472,0.8049727729970017,2,1.0,0.8995343523965172
+133,40,0.6532985545782324,1.95,1.3767212777732376,0.0007049736844392882,0.03661919729638836,0.8165477872647136,2,1.0,0.8443285152607746
+133,41,0.7142391440567644,1.9,1.3770021950854314,0.0007025428022336925,0.036447734115783385,0.8050886068343773,2,1.0,0.8807971468558808
+133,42,0.723065499081716,1.9,1.375095922469898,0.0007030219988397444,0.03639260215246724,0.8047894493251764,2,1.0,0.9102183302723864
+133,43,0.7100836934513963,1.95,1.3731295192478599,0.0007032791940616513,0.03640186691161941,0.8160086301625311,2,1.0,0.9336123115046545
+133,44,0.6672691809115554,2.0,1.3770748780395292,0.0007016418269151067,0.03629361372965857,0.827566549949525,2,1.0,0.8908972697051849
+133,45,0.654014928499117,1.95,1.3773266167099458,0.0006996366115334138,0.036380370790014195,0.8166368497950237,2,1.0,0.8467164283303903
+133,46,0.7465988096174282,2.0,1.3766923926038095,0.0006978529290885926,0.03636646784724571,0.82751088075357,2,1.0,0.8886626987247608
+133,47,0.7290212898192047,2.0,1.377520433896335,0.0007005342535826097,0.03653698310510127,0.8276298055504957,2,1.0,0.9300709660640153
+133,48,0.768197272147187,2.0,1.3759796728650484,0.0007007852698260025,0.036401301872432616,0.8274099632912857,2,1.0,0.9606575738239569
+133,49,0.7203327260282357,2.0,1.3761411781833917,0.0007037560154671591,0.03644315906915103,0.8274338738395534,2,1.0,0.9677757534274521
+134,0,0.18956502830348942,1.95,1.3754480587296032,0.0007010230382408591,0.03622846847883308,0.8163558008121325,1,0.1531350823220238,0.261036651248933
+134,1,0.16797758389755776,1.9,1.3750226887183534,0.000701567628752994,0.03650105475686447,0.8047774868038705,1,0.16954341151442942,0.26720073097262
+134,2,0.18396701293446857,1.8499999999999999,1.374559918061844,0.0007018898821311738,0.03642052963734923,0.7926483765246414,1,0.19919593007355088,0.2809621363501607
+134,3,0.19914543346743918,1.9,1.3740422190385337,0.0007022200833485669,0.03648766855189398,0.8046236036468088,1,0.2253076719707169,0.29674121559717476
+134,4,0.2671788770210418,1.95,1.3857983515446972,0.0006999216930830094,0.036757371196913045,0.8179021003252881,1,0.269098542269014,0.3651315337114541
+134,5,0.2503061816895586,1.95,1.3858423980090255,0.0007000592618577241,0.036697065105934464,0.8179087014143032,1,0.2851362518909515,0.38750560311059334
+134,6,0.29785534897431604,2.0,1.3857478839753132,0.0007000791671488156,0.03642911915720531,0.8288002319217032,1,0.33593728791938193,0.4116014460218776
+134,7,0.2694424547617442,2.0,1.3802240210970722,0.0007034092620134873,0.036654185835703165,0.828015973082759,1,0.3645502521652207,0.3787411796521864
+134,8,0.34664673894171294,1.95,1.3858128604084325,0.000700378140151614,0.03674207186179813,0.8179043972037279,1,0.41312351679338255,0.43799110741453307
+134,9,0.3227876894002028,1.95,1.3800403586956982,0.0007019694459646353,0.03629108356868289,0.8170435568392781,1,0.42588448325878553,0.44144632032229525
+134,10,0.3893654247924618,1.9,1.3802228120929696,0.000703766695381616,0.036686909214618986,0.805593875919115,1,0.47593701665042243,0.4966353937743095
+134,11,0.3618815998581488,1.9,1.3791142716348577,0.0007039693772480267,0.03657635973137038,0.8054202694690963,1,0.5187322432686172,0.4812956751690062
+134,12,0.40504609706849226,1.8499999999999999,1.3798888367058226,0.0007025663213251635,0.03662718395402979,0.793523077063708,1,0.5366868135662333,0.5012379054733299
+134,13,0.4577051926769444,1.8499999999999999,1.3810265109414266,0.0007015599405835814,0.03647412482580722,0.7937090865881387,1,0.5901307634115958,0.5721762910410202
+134,14,0.43103963525946115,1.8499999999999999,1.3799212583742544,0.00070151543357322,0.0364331733399907,0.7935280447581959,1,0.5982184651601445,0.572507497318011
+134,15,0.4984308050610309,1.7999999999999998,1.3801876426613733,0.0007036631507044893,0.036708995048872116,0.7810156580362618,1,0.6483673480291923,0.63027955283118
+134,16,0.5065493006751688,1.7999999999999998,1.3089558462427087,0.000713183369315493,0.03513554194639683,0.7685927700850013,1,0.6767131176099482,0.6528801787706318
+134,17,0.49269750337054474,1.8499999999999999,1.3113337486516963,0.0007292185197564493,0.035645214130527174,0.7820737232297568,1,0.7327766153410371,0.631956190780433
+134,18,0.49948876664737474,1.9,1.3091889454143681,0.0007277328276992874,0.035831578502548894,0.7942349615539678,1,0.7749846624927813,0.5983163388342073
+134,19,0.5045839154756668,1.95,1.3565342330342272,0.0006785884158771061,0.036146165166813016,0.8134964683325564,1,0.802734792450913,0.5782999949843386
+134,20,0.5088770008286638,2.0,1.3665262928969368,0.0006950132675437228,0.03644954011827966,0.8260541550351593,1,0.8360041674684776,0.5482511128042427
+134,21,0.513862313175253,2.0,1.3649474364407794,0.0006944897768153882,0.03645494851165856,0.8258270238272858,1,0.8644791728431515,0.5269021467933078
+134,22,0.5146727071667857,2.0,1.362709882200701,0.0006936949628061216,0.03635104816192466,0.8255047176378814,1,0.8991795522750361,0.48333628752257074
+134,23,0.5905015210844312,2.0,1.360343535871989,0.0006928789587680751,0.03612042962400571,0.825163355264456,1,0.9465014995545267,0.5396697375420683
+134,24,0.6050116152501576,2.0,1.3636910881546678,0.0006912908281295321,0.0357805986202329,0.8256453197839007,1,0.9777068645615424,0.5797628980851351
+134,25,0.5759182955128985,2.0,1.366302564432991,0.0006976859857020478,0.036098182116463325,0.8260227736300626,1,1.0,0.553060985042995
+134,26,0.5891279287269625,1.95,1.363783303453912,0.0006968825941733945,0.03620744694566182,0.8145993243894969,1,1.0,0.5637597624232082
+134,27,0.5721786514492557,2.0,1.3650796455869578,0.0006945607640701694,0.036364119939581926,0.8258460599614826,1,1.0,0.5405955048308525
+134,28,0.6362186913755966,2.0,1.3631327793017993,0.0006939245926052334,0.03640167758584498,0.8255656923120918,1,1.0,0.6207289712519886
+134,29,0.5879061160841539,2.0,1.3444323054983256,0.0006819617071469035,0.03544207088431024,0.8228527894235034,1,1.0,0.5930203869471795
+134,30,0.6481871486883011,1.95,1.3651729028189088,0.0006929873338614632,0.03592158224267442,0.8148079244851272,1,1.0,0.6606238289610036
+134,31,0.595801714841456,1.95,1.338535127134713,0.000675599270513981,0.03563346334789468,0.8107493053715382,1,1.0,0.6193390494715202
+134,32,0.584906536960852,1.9,1.3359150006383196,0.0006726747442045819,0.035799208303602906,0.798550640038193,1,1.0,0.5830217898695066
+134,33,0.602743064094911,1.95,1.3658208290405809,0.0006915669975667443,0.036021526577026806,0.8149052455280866,1,1.0,0.6091435469830364
+134,34,0.6505821841900269,2.0,1.3307399665301982,0.0006670897979036787,0.03481324297840337,0.8208437061148158,1,1.0,0.6686072806334227
+134,35,0.6174638776705759,2.0,1.3310214850397513,0.0006699696885923867,0.035153819355744485,0.8208859491699592,1,1.0,0.6582129255685861
+134,36,0.6669293506110161,1.95,1.333383380985626,0.0006746790766090546,0.034752982035454544,0.8099572988708466,1,1.0,0.7230978353700537
+134,37,0.6856388194886557,1.95,1.3309152632660608,0.000676433318451601,0.03560926537960591,0.8095776404262742,1,1.0,0.785462731628852
+134,38,0.6355399664887791,2.0,1.32922477325348,0.0006783041626315916,0.03569184486291649,0.8206240760314281,1,1.0,0.7517998882959301
+134,39,0.6241195339770969,1.95,1.3279732950295788,0.0006755105172699965,0.03563914191446414,0.8091234034901091,1,1.0,0.7137317799236562
+134,40,0.6815492584532332,2.0,1.3239782801267823,0.0006716772480045949,0.034599463472897135,0.8198485341306436,1,1.0,0.7718308615107771
+134,41,0.6769592777885278,2.0,1.3235295770193876,0.0006740712577327766,0.035049001545190854,0.8197829599320235,1,1.0,0.7898642592950927
+134,42,0.7040012379278509,2.0,1.3356735864321765,0.0006748307683956181,0.03502569657436475,0.8215703623158835,1,1.0,0.8466707930928359
+134,43,0.7221260975095325,2.0,1.379368164849582,0.0006993900926807325,0.03631391740524289,0.8278929148602749,1,1.0,0.9070869916984416
+134,44,0.6756145199770536,2.0,1.379182162921773,0.0006978893032206728,0.03653638366534767,0.8278659827929593,1,1.0,0.8853817332568452
+134,45,0.7102484713206181,1.95,1.379881511169284,0.0007000847125664664,0.03647670162338681,0.8170192470477106,1,1.0,0.9008282377353933
+134,46,0.7233555743802335,1.95,1.378252660927572,0.0007001566511162878,0.03646826570824419,0.816775631673151,1,1.0,0.9445185812674447
+134,47,0.75,2.0,1.3765046792722957,0.0007000870650314523,0.03627486221649283,0.8274847234028259,1,1.0,1.0
+134,48,0.6982813579479314,2.0,1.3765076230207125,0.0006981372399819869,0.03638788370183884,0.8274845869442277,1,1.0,0.9609378598264381
+134,49,0.7179025318132899,1.95,1.3771603347352541,0.0007008575169019197,0.036372812162865475,0.8166123149150105,1,1.0,0.9930084393776326
+135,0,0.12738262802410172,2.0,1.3739543623812698,0.0007027702511150209,0.03627049606077175,0.8271211193143971,1,0.10857521168215942,0.2131751445041265
+135,1,0.16495709480777906,1.95,1.3740604780349641,0.0007028278383392162,0.03650688706934292,0.816148226390919,1,0.13477210151237368,0.23682751400943192
+135,2,0.19436894832936,1.95,1.3735498610814951,0.0007021300833758503,0.03643420103967754,0.8160713863311579,1,0.17823129565185258,0.2769214335620631
+135,3,0.1869701101780708,1.95,1.3732895055192937,0.0007012945774921035,0.03649765575307341,0.816032053178893,1,0.19646382094847212,0.2946152726622732
+135,4,0.25181591800537734,2.0,1.3730164377159333,0.0007015378026443913,0.03638569690844442,0.8269866099752723,1,0.23834269945670702,0.35492946074231513
+135,5,0.2959082401952247,2.0,1.3856048757824575,0.0007008858173334137,0.03675628984489258,0.8287801684100587,1,0.29265695733543245,0.429484857536839
+135,6,0.28117639535267236,2.0,1.3797245573239159,0.0007006602152525316,0.0363401104127952,0.827944051813655,1,0.322378964876753,0.44074936467323705
+135,7,0.2831262284635452,2.0,1.3795749746571446,0.000701307991856396,0.036592594334628456,0.827922926886855,1,0.358666842052945,0.4321983054745572
+135,8,0.3299729142940692,2.0,1.379329537215316,0.0007005538393391701,0.036589367966759635,0.8278877425282476,1,0.38908444693580396,0.44779711839915876
+135,9,0.38074794476276147,2.0,1.3812993314845134,0.0007002684309511646,0.036500015899074416,0.8281681552973024,1,0.4492893954049748,0.503440622002572
+135,10,0.3587938060968662,2.0,1.377078421517592,0.0007037283187062923,0.03651870830279576,0.8275676510870172,1,0.4549620668634223,0.5226965978383241
+135,11,0.37288156904758973,1.95,1.3772427403829526,0.0007061666751484062,0.036670126571711543,0.8166262454612176,1,0.4878215544135091,0.5258431576072868
+135,12,0.4136948168746393,2.0,1.37689341907751,0.0007086252597603296,0.03656809384941202,0.8275426474900104,0,0.5217683774884873,0.5499582195974814
+135,13,0.4500564459337513,2.0,1.3712956424851344,0.00069721495296799,0.03625980856939314,0.8267390220371533,0,0.606625099072607,0.5580213543490284
+135,14,0.4520543864509312,2.0,1.3706490995165241,0.0007129434317358657,0.03660556147347365,0.8266508984180746,0,0.6391930987467025,0.5879238231741672
+135,15,0.5328984223291023,2.0,1.3709390406164084,0.000710127195655275,0.036387076508118586,0.8266916358307529,0,0.7603536710588754,0.5958565130185072
+135,16,0.545996710158386,2.0,1.3702458445856278,0.0007124041418391979,0.03656343062860251,0.8265929501004885,0,0.8207651511709232,0.5923021656333888
+135,17,0.5885576512958012,2.0,1.1611688297887321,0.0005525029808374608,0.030384009999007443,0.7945011238993201,0,0.918417408901143,0.5706356257844796
+135,18,0.566224439812657,2.0,1.15508346872423,0.0005463383668843514,0.030324093871512692,0.7935037716346144,0,0.9267548858948802,0.585074951515683
+135,19,0.6184270530188318,2.0,1.1590693776251717,0.0005611156703686728,0.030567915059119648,0.7941609521545856,0,1.0,0.5614235100627725
+135,20,0.6128546580200188,2.0,1.152883253975022,0.0005547519069205942,0.03040396585078084,0.7931457822086655,0,1.0,0.542848860066729
+135,21,0.6070372831369197,2.0,1.1466177328789988,0.0005483307875195771,0.03033015917423649,0.7921138231669206,0,1.0,0.5234576104563989
+135,22,0.5609468957421521,2.0,1.140283890824454,0.0005418247726252704,0.029968242608583318,0.7910667520284341,0,1.0,0.5364896524738401
+135,23,0.5634948250017271,2.0,1.1561125853806546,0.0005534861553266241,0.030229465306607434,0.7936746881475033,0,1.0,0.5449827500057571
+135,24,0.5890372270539037,2.0,1.1690112680883475,0.0005663020273162683,0.03056370842547848,0.7957830797137849,0,1.0,0.5634574235130124
+135,25,0.6137287339241368,2.0,1.1730035267352215,0.0005802997906719839,0.03100149101786414,0.7964356438884589,0,1.0,0.5457624464137892
+135,26,0.5905958903249645,2.0,1.1673655440764217,0.0005737663329726941,0.030939415350062373,0.795517927448116,0,1.0,0.5686529677498817
+135,27,0.6152367226335853,2.0,1.1700916716014491,0.0005869373180485782,0.03138167051762557,0.795965305152542,0,1.0,0.5507890754452843
+135,28,0.5882752195211242,2.0,1.1646676378653522,0.0005806468986428221,0.031057865241537398,0.7950809534862185,0,1.0,0.5609173984037471
+135,29,0.5965823520642297,2.0,1.1663255441009694,0.0005928782453399567,0.031160434902194434,0.7953549211254056,0,1.0,0.5886078402140988
+135,30,0.6077741500505119,2.0,1.1667331883177212,0.0006036186187253269,0.03128744178419255,0.7954247589994103,0,1.0,0.6259138335017063
+135,31,0.5904969278330636,2.0,1.3440828161831733,0.0006873992997171517,0.035458707822393555,0.8228034255742624,0,1.0,0.6349897594435452
+135,32,0.6245613179623447,2.0,1.3428541182222176,0.0006891751162500029,0.03568429181582725,0.8226247311051275,0,1.0,0.6152043932078155
+135,33,0.5835955222095022,2.0,1.340778772789002,0.0006860069791236763,0.03599308011892346,0.8223207820702617,0,1.0,0.6119850740316738
+135,34,0.6234157840071893,1.95,1.3393904358398838,0.0006876487754208596,0.035913450653935926,0.8108842003071176,0,1.0,0.6113859466906308
+135,35,0.5791421664450946,1.95,1.336175679420384,0.0006840976476555136,0.035142595633886886,0.810389630066261,0,1.0,0.5971405548169819
+135,36,0.5806849290602192,1.95,1.1509458937221284,0.0005460007695576235,0.030176025111762768,0.7802352627792465,0,0.9983113238798369,0.6045346650276145
+135,37,0.5806720269741359,2.0,1.2952516013687894,0.0006872637711571705,0.034819748167205275,0.8155713328766144,0,1.0,0.6022400899137863
+135,38,0.6283829477789332,2.0,1.2931831021244728,0.000686429319109626,0.03475990864175458,0.8152597456412983,0,1.0,0.5946098259297773
+135,39,0.6194304253710717,2.0,1.128817639356052,0.0005265421588297477,0.029725340706157476,0.7891601975063497,0,1.0,0.564768084570239
+135,40,0.5702097800577005,2.0,1.1218512914554213,0.0005195523993324304,0.029410534798888742,0.78799642181686,0,1.0,0.5673659335256683
+135,41,0.6053046294505973,2.0,1.138762689298346,0.0005321788034751241,0.02962648526851302,0.7908120248781122,0,1.0,0.5510154315019907
+135,42,0.6074823576240437,2.0,1.1641516455117957,0.0005397312736689074,0.03022194195125618,0.7949835345595224,0,1.0,0.5249411920801453
+135,43,0.5999244523018094,2.0,1.1574492378275882,0.0005330427219822326,0.030124620543462176,0.7938867957264203,0,1.0,0.49974817433936436
+135,44,0.5884094535895966,2.0,1.1507184007757563,0.0005265033595593987,0.030014561875592226,0.7927810978250852,0,1.0,0.4946981786319885
+135,45,0.5960546044535657,2.0,1.1754956847096265,0.0005383280647320897,0.03096263093570333,0.7968257991442327,1,1.0,0.4868486815118856
+135,46,0.6127107882582306,2.0,1.3679887427612063,0.0006912024173247899,0.03645233131946291,0.8262630982356247,1,1.0,0.5423692941941016
+135,47,0.6249777889153658,2.0,1.3697709736347201,0.0006905916056695305,0.03625181569591137,0.826518617827151,1,1.0,0.5832592963845527
+135,48,0.575907648063915,2.0,1.3707128718538117,0.0006900497550403062,0.03604313109567238,0.8266534756365687,1,1.0,0.5530254935463833
+135,49,0.632687369824314,1.95,1.3686557166096893,0.0006889639131125078,0.03592267852957172,0.8153316793626756,1,1.0,0.6089578994143795
+136,0,0.021283870980241412,1.95,1.3726886593131093,0.0007030480748706379,0.03622172436823528,0.8159423614524224,1,0.15011989306921436,0.17078637917518558
+136,1,0.17841782542482365,1.9,1.3856185420738556,0.0007006646685221825,0.03672503696915707,0.8064365524845873,1,0.191857177723883,0.20558318111756815
+136,2,0.15743225637734998,1.9,1.3714424950073736,0.0007033997683454183,0.03637386677245089,0.8042149632434176,1,0.2428552339679435,0.1676338759672419
+136,3,0.1856120215683197,1.8499999999999999,1.3824513037034791,0.0006975364018398447,0.03654888473099685,0.7939409608795311,1,0.2660223126238145,0.1973436550626464
+136,4,0.19062252985206166,1.8499999999999999,1.3823688566269892,0.0006974059056590854,0.03663051156739823,0.7939274296170802,1,0.26455147711331817,0.21600646335578133
+136,5,0.22287112170497583,1.9,1.385739567929058,0.0007005956170396499,0.0365732727742938,0.8064554219574125,1,0.28733695623950567,0.2264544640305785
+136,6,0.210389251135818,1.9,1.385754465792679,0.0007003829752658185,0.03655791658038438,0.8064576809011305,1,0.343430108168323,0.21005735956162933
+136,7,0.28414749098854564,1.95,1.3859700088324143,0.0007003258467610711,0.03678558036324901,0.8179277856416813,1,0.3905303479423116,0.2597845060387366
+136,8,0.24741580109289868,1.95,1.385929041102488,0.0007004568298748047,0.03666622338960044,0.8179217235826182,1,0.42831869524083943,0.22029440998854294
+136,9,0.3216395010668575,1.9,1.3837812987573699,0.0007015969025072147,0.03642590705685159,0.8061498948709297,1,0.4780826110426277,0.26802152216602143
+136,10,0.3329175790888877,1.9,1.3834798571633837,0.0007019403164054771,0.036754231045476725,0.8061028909217808,1,0.5036297517391134,0.3048855946441413
+136,11,0.35315736881590015,1.95,1.3834177373669656,0.0007012539085487011,0.03644764762494438,0.8175476648701374,1,0.5343704825340951,0.33136391934087367
+136,12,0.37583315543326584,1.95,1.3833462564407875,0.000700614136438302,0.03648709849978797,0.8175368114143639,1,0.569134808547786,0.3605974400471715
+136,13,0.3616313016589424,1.95,1.3831329650368112,0.0006999966608058719,0.036697398796411596,0.8175048082579164,1,0.6182254874898718,0.34780368887664553
+136,14,0.3600493877532764,2.0,1.3821149402112587,0.0007012527862635664,0.03651783702713672,0.8282844699815961,1,0.6468512658198197,0.30436293808449494
+136,15,0.4076875323824853,2.0,1.3835510182228128,0.0007009126126971022,0.03645326003590378,0.8284885294046794,1,0.6726673407136642,0.3287353203233987
+136,16,0.46650007652906117,2.0,1.3833560891418506,0.0007002281814566619,0.03658513041771856,0.8284606345936419,1,0.7382305120402916,0.40402623904314844
+136,17,0.47704586673010574,2.0,1.3707316269510517,0.0006935850459888583,0.0362767688573163,0.826657176360782,1,0.7651020006999039,0.43668355483381405
+136,18,0.4500924162512365,2.0,1.3688523611895946,0.0006927770195396382,0.03584941119117037,0.8263874896165624,1,0.8066768977804559,0.39140552379684707
+136,19,0.4692489341013254,1.95,1.3217546028128626,0.0007319092534333655,0.03622822759451601,0.8081786121544244,1,0.8227267369506978,0.4005274644034876
+136,20,0.5363716160042996,2.0,1.357650115173655,0.0006922474327280107,0.03629622107880666,0.8247742557955671,1,0.8718291877142813,0.45879980306195656
+136,21,0.5754022776105865,2.0,1.3625739377412733,0.0006911415417667358,0.03639678481739709,0.8254843987334942,1,0.9242593147693998,0.518995172342755
+136,22,0.5878296992230352,2.0,1.365600661899668,0.0006901463558854817,0.03635095079578461,0.8259197126989368,1,0.9666496890255841,0.5372327453760051
+136,23,0.6023422133012474,2.0,1.368357540721521,0.000695782936726781,0.036320124668846224,0.8263173484630836,1,0.9937606944233459,0.5494597851063632
+136,24,0.5894233669597185,2.0,1.3701171025889274,0.0007010516307865925,0.03607874007873094,0.8265712410586263,1,1.0,0.5647445565323949
+136,25,0.5722779375247078,2.0,1.371442227341634,0.0006989261380984014,0.03621074897754538,0.8267605082608986,1,1.0,0.5409264584156924
+136,26,0.5826464703172809,2.0,1.3693811056414908,0.0006984203422958747,0.036332627760688053,0.8264649548738591,1,1.0,0.542154901057603
+136,27,0.588221142492629,2.0,1.3701348877321804,0.0006964236340641279,0.03646730752884965,0.8265724637192898,1,1.0,0.5607371416420965
+136,28,0.5683748705019438,2.0,1.370272207170749,0.0006946295272787745,0.036418291515567046,0.8265916333101337,1,1.0,0.5279162350064794
+136,29,0.557174817332192,2.0,1.368348126304347,0.000694011080415795,0.036297713157474126,0.8263154887434603,1,1.0,0.49058272444063994
+136,30,0.5503048824710142,2.0,1.366323016551345,0.0006934321226313867,0.03603045251571284,0.8260244901418433,1,1.0,0.46768294157004703
+136,31,0.6035904233516671,2.0,1.3641857306970564,0.0006926603744205242,0.035839771113820966,0.8257169088229324,1,1.0,0.5119680778388901
+136,32,0.6030679039250052,2.0,1.367888536378246,0.0006919088130393816,0.036176938053479935,0.8262489157222425,1,1.0,0.5435596797500172
+136,33,0.5626464261491976,2.0,1.3702289954120697,0.0006968254543168581,0.03646979614589925,0.826586068875787,1,1.0,0.5088214204973253
+136,34,0.6231671800285208,1.95,1.3681659187353912,0.0006962456714236677,0.036447035606172955,0.8152601145355943,1,1.0,0.5772239334284025
+136,35,0.641337699143564,1.95,1.370723742714945,0.0006948891371295873,0.03595536092655011,0.8156446325508789,1,1.0,0.6377923304785464
+136,36,0.640414746454342,2.0,1.3344803207839058,0.000674261717592438,0.03515092189863213,0.8213952044270278,1,1.0,0.6680491548478067
+136,37,0.6215298972520321,2.0,1.3455780037277256,0.0006766705566599123,0.03544873011372092,0.8230181901855446,1,1.0,0.6717663241734403
+136,38,0.5946909986895393,2.0,1.3482121663186701,0.0006806113108864655,0.035625027616627114,0.8234026999691823,1,1.0,0.6156366622984644
+136,39,0.6076801625106,1.95,1.3460702821262776,0.000678268393703442,0.035967592838572725,0.8119035698201371,1,1.0,0.6256005417019999
+136,40,0.5947418635352688,2.0,1.347035561559771,0.0006816764456393155,0.0353203885048809,0.8232318539464999,2,1.0,0.6158062117842292
+136,41,0.572169276991729,2.0,1.3779331221603197,0.0007028310857781287,0.03661114898469081,0.8276893263141336,2,1.0,0.5738975899724301
+136,42,0.6317270343907629,1.95,1.352537761480867,0.000675870148070105,0.036056758127998134,0.8128885370905001,1,1.0,0.6057567813025431
+136,43,0.590588610403529,1.95,1.352349995569213,0.0006886944344996835,0.03608095510940892,0.8128638776687295,1,1.0,0.6019620346784296
+136,44,0.6284414911165954,1.9,1.3506351512797214,0.0006862935415625019,0.036133170467105055,0.8009125737131045,1,1.0,0.6281383037219844
+136,45,0.5928849508930516,1.9,1.3581125275527073,0.00068663741241643,0.035749568556131095,0.802102280482922,1,1.0,0.6096165029768386
+136,46,0.5833044600145618,1.8499999999999999,1.3562739891652944,0.0006844127190569773,0.03581029971974542,0.7896210659643552,1,1.0,0.5776815333818724
+136,47,0.6190085072666806,1.9,1.3712787751781548,0.0006938400605116329,0.0363313981790503,0.8041861730076574,1,1.0,0.5966950242222683
+136,48,0.6006562953684009,1.9,1.3736728940430059,0.0006985253723777031,0.03656257831803274,0.8045643756641262,1,1.0,0.6021876512280031
+136,49,0.6450996239478767,1.95,1.3521664411621312,0.0006799714657484371,0.035657017793362854,0.8128333003385331,1,1.0,0.6503320798262554
+137,0,0.10301861937842258,1.95,1.3778705503884372,0.0007008169865711823,0.036115731825256035,0.8167186383770316,0,0.10106761697771001,0.20863857529112856
+137,1,0.17765778192567191,1.9,1.3786978919443444,0.0007000604028636268,0.03655115678845124,0.8053537812556376,0,0.17830856111959867,0.2211145249261081
+137,2,0.20138053643620243,1.9,1.378959386577303,0.0007018496907018509,0.03658929757971985,0.8053953305215606,0,0.2453581306892324,0.21079094720169814
+137,3,0.23311979476351244,1.9,1.3730515898190585,0.0006911846622097551,0.036432538035582385,0.8044643535665363,0,0.3283858799200371,0.20588480931832528
+137,4,0.2809634593449331,1.9,1.372522732918327,0.0006907346131999241,0.03632124100963252,0.8043810085776201,0,0.4367217307009065,0.18758255688190162
+137,5,0.2981904004470315,1.9,1.3625612147242847,0.0006900929960513025,0.03611792901274001,0.8028085844883331,0,0.5074977502535033,0.1839710011521006
+137,6,0.2602152119574572,1.95,1.3615703069505825,0.0006898175444618372,0.036044806713179736,0.8142627318543838,0,0.5059168599824401,0.19282822654827053
+137,7,0.3402809418568046,1.9,1.3662776961898904,0.0006902201216331907,0.03599118756562261,0.8033963074900926,0,0.5884707088722775,0.18297552769297853
+137,8,0.324714763142734,1.9,1.3676328743752098,0.0006932891942056307,0.036256254500088,0.803611239526936,0,0.6204389565927332,0.18846393501880238
+137,9,0.38781337394654086,2.0,1.2305016343476631,0.0007846957210081454,0.03439364873937888,0.805662882617777,0,0.7283779297626845,0.1548740068048901
+137,10,0.42431118652032523,2.0,1.2335992810973608,0.0007830778647959764,0.0345477709642545,0.8061469169710607,0,0.8241985529862588,0.14877255108607235
+137,11,0.4358016244801796,2.0,1.1300209682233158,0.0007677976650627501,0.03306872190913362,0.789440561563845,0,0.88572362013457,0.13837392142117202
+137,12,0.43048237735774547,2.0,1.1330361467799706,0.0007598827897778405,0.03297526244230082,0.7899386929857845,0,0.9105770167447261,0.1541719021995166
+137,13,0.4760113446240691,2.0,1.1304152879729439,0.0007584225095653577,0.03343609073845849,0.7895029834924886,0,0.978784947743912,0.14832455175501427
+137,14,0.44166866582714914,2.0,1.1325452925702222,0.0007509372640969349,0.03351640581298248,0.7898542616066555,0,0.9867385828891477,0.1565774422383
+137,15,0.4744812195999276,2.0,1.139649569084948,0.0007717011690921541,0.03373898054689736,0.7910378977814354,0,1.0,0.1816040653330919
+137,16,0.48718193502125123,2.0,1.1369294145403432,0.000770498646352605,0.03357680634703254,0.7905875104122859,0,1.0,0.1572731167375042
+137,17,0.4736285772829057,2.0,1.1384939927593094,0.0007620000562394194,0.033164476301621254,0.7908436110033249,0,1.0,0.17876192427635212
+137,18,0.4811649880017467,2.0,1.1358900879315734,0.0007610306645730437,0.03290184832075331,0.7904122517473601,0,1.0,0.20388329333915556
+137,19,0.4973863943443952,2.0,1.3512691970393516,0.0006914142975829828,0.036082670568944396,0.8238499210422126,0,1.0,0.15795464781465052
+137,20,0.4541865429307669,2.0,1.130532210682228,0.0007584530541606073,0.03361918048275192,0.7895224241402057,0,1.0,0.18062180976922282
+137,21,0.47446512869797686,2.0,1.1372758863974723,0.0007791520512242091,0.03377255372280226,0.7906477308412396,0,1.0,0.18155042899325607
+137,22,0.4796236145921389,2.0,1.1346125524550335,0.0007778528132250073,0.03372849975901946,0.7902061133948926,0,1.0,0.19874538197379632
+137,23,0.5009876706097247,2.0,1.1318352901985458,0.0007765674810007935,0.03329565604767563,0.7897448997733378,0,1.0,0.2032922353657491
+137,24,0.4621999142829763,2.0,1.3519535731605217,0.0006939421166802448,0.03616288124698527,0.8239499498885507,0,1.0,0.20733304760992086
+137,25,0.49356667182944325,1.95,1.3510751079784702,0.0006922772471142178,0.03609210262397304,0.8126709601382568,0,1.0,0.24522223943147742
+137,26,0.48135557798014406,1.95,1.3574460543229339,0.0006915336980279267,0.035929398550576495,0.813638696120426,0,1.0,0.27118525993381337
+137,27,0.5242800141604521,2.0,1.3565634311216035,0.0006901005146649803,0.0356587772433105,0.8246165299652866,0,1.0,0.2476000472015069
+137,28,0.5018182884775788,2.0,1.3580538876343664,0.0006932205777204932,0.035758703761554045,0.8248328832261848,0,1.0,0.27272762825859587
+137,29,0.526246156611028,1.95,1.364020488516297,0.0006929213070857045,0.035992979394813364,0.8146339467787599,0,1.0,0.2541538553700933
+137,30,0.5241352158935682,1.95,1.3640026034964081,0.0006950935934841574,0.03624461660197623,0.8146319020883426,0,1.0,0.24711738631189353
+137,31,0.5141892501967041,2.0,1.3641948001788204,0.0006972376031158444,0.03622823902932377,0.8257195313870276,0,1.0,0.24729750065568035
+137,32,0.5031388923385401,2.0,1.363962618028553,0.000697783636266572,0.036210096859958976,0.8256862734523707,0,1.0,0.27712964112846705
+137,33,0.5212576685248659,2.0,1.3690497311203074,0.000697185903678287,0.036192050956713226,0.826417069623774,0,1.0,0.27085889508288613
+137,34,0.5212334141921577,2.0,1.3683121544550172,0.0006975238566636653,0.03608613543769577,0.8263113343837495,0,1.0,0.2707780473071925
+137,35,0.527954196858979,2.0,1.3674941644427923,0.000697876590036778,0.03620901372149517,0.8261940056757889,0,1.0,0.2598473228632633
+137,36,0.5075471595071649,2.0,1.3676699927931746,0.0007001043589562847,0.03638142427032326,0.8262198924637304,0,1.0,0.2918238650238829
+137,37,0.492868490909126,1.95,1.3721717998688077,0.0006992653101767566,0.03641173750470845,0.8158635900377138,0,1.0,0.3095616363637533
+137,38,0.5352281330353624,2.0,1.371241108630194,0.0006979203335361415,0.03620975820399299,0.8267314124675096,0,1.0,0.28409377678454134
+137,39,0.5223285908670593,2.0,1.3716481240317457,0.0006996195111373622,0.03628429400463651,0.8267901949529687,0,1.0,0.274428636223531
+137,40,0.5088299633255461,2.0,1.3709580266208377,0.000700084280192358,0.036207036320315765,0.826691478255722,0,1.0,0.29609987775182023
+137,41,0.5133033895914204,2.0,1.3748125861740887,0.0006994301457427154,0.03644391872447382,0.827242849125084,0,1.0,0.31101129863806803
+137,42,0.5176018513238694,2.0,1.3778452630988076,0.0006990656873748875,0.036409512271318514,0.8276757214153855,0,1.0,0.32533950441289794
+137,43,0.5039448502208681,2.0,1.3801842209259307,0.0006989174008093928,0.03645700995711513,0.8280090258757951,0,1.0,0.34648283406956026
+137,44,0.539457695250636,2.0,1.3797646783352375,0.0006980465687761448,0.036597277259830543,0.8279490224611301,0,1.0,0.33152565083545327
+137,45,0.5000939904967505,2.0,1.379169970824309,0.0006981619826877657,0.03648273185056489,0.82786432308099,0,1.0,0.33364663498916813
+137,46,0.530683810964352,1.95,1.3786965569710476,0.0006972770482748966,0.03630550350275584,0.8168411911524852,0,1.0,0.3689460365478401
+137,47,0.5576803467491832,1.95,1.3805647391273224,0.0006974446904767114,0.036449609921452616,0.817120577663148,0,1.0,0.3589344891639439
+137,48,0.5345364461246984,1.95,1.3809201033869196,0.0006984873658024292,0.03664825127632653,0.8171739869261949,0,1.0,0.38178815374899455
+137,49,0.5182895308973041,1.9,1.3825121555557442,0.0006985906208985108,0.03653116183102205,0.8059505456241218,0,1.0,0.394298436324347
+138,0,0.17142310119140033,1.95,1.379112372026853,0.0007071043873952321,0.03618674417154841,0.8169063335130662,0,0.1702380091233265,0.21109299180689903
+138,1,0.13507636582131125,1.9,1.3790962207606723,0.000708037734912319,0.03667955668023173,0.8054187157326934,0,0.18070540702712848,0.20931401003486616
+138,2,0.20928411854007506,1.8499999999999999,1.379780307935796,0.0007069418858859433,0.03670328553779632,0.7935067285968489,0,0.25902661577222696,0.18557824077061427
+138,3,0.2256673389082859,1.8499999999999999,1.3524771126426396,0.0006799535852050737,0.03616407577011601,0.7889881518526376,0,0.3246590964491286,0.18601233442878154
+138,4,0.26502943260520784,1.9,1.3512311267586998,0.0006792077239156546,0.035748917845704956,0.8010053270391017,0,0.42424251857973183,0.1511080839110502
+138,5,0.2806642896138206,1.9,1.3605518038069828,0.000684383701807781,0.03614453615817624,0.8024884773377702,0,0.48855987380294796,0.15080113364213812
+138,6,0.3110138073548717,1.95,1.3597512308532629,0.0006841715313518129,0.03608357190197742,0.8139857496806663,0,0.5726227537565972,0.1398823528407762
+138,7,0.3479641940802794,1.95,1.3595547697312975,0.0006843569801225847,0.03577667121293485,0.8139560572534629,0,0.6640250678679323,0.10784722311035505
+138,8,0.31243850956098657,2.0,1.1802413679210035,0.0007835279223714298,0.03428511692394298,0.797672174509296,0,0.6880816621885141,0.12401948228526978
+138,9,0.38457662957068767,2.0,1.2055167142960015,0.0007699685107647346,0.034493230885293734,0.801716408119785,0,0.7606817393634194,0.13434644608439963
+138,10,0.3786232445484334,2.0,1.2084529457969528,0.0007888599213010355,0.03457029081370521,0.802188754687358,0,0.7850102187452555,0.1487305235011039
+138,11,0.4392183627278252,2.0,1.2117216617089308,0.0007789344875902528,0.034727868618463796,0.8027037848547315,0,0.8761773354658529,0.12915809513828014
+138,12,0.427299030158267,2.0,1.1339978593215356,0.0007663535316621223,0.03303082183085046,0.7901003770386564,0,0.907617514721343,0.14750674756576576
+138,13,0.45309100907128946,2.0,1.1317685116925624,0.0007654823710665413,0.033514671450525724,0.7897301296441677,0,0.9424522531212691,0.18703369274260592
+138,14,0.4677902650674906,2.0,1.129281606637904,0.0007642925019238217,0.03363379371290155,0.7893164697169515,0,0.9632300134878163,0.2083275322412136
+138,15,0.4854247619830385,2.0,1.357370604692294,0.0007207781905182701,0.03628923933690727,0.824742104774061,0,0.9960122544304701,0.22339953403616816
+138,16,0.4655468946812828,2.0,1.357477859200301,0.0007173258644407999,0.036352262703876786,0.8247566091269847,0,1.0,0.21848964893760922
+138,17,0.49999591908902563,2.0,1.3638587957494075,0.0007139041040228788,0.03646574270974127,0.8256759706202544,0,1.0,0.19998639696341883
+138,18,0.5010932917749612,2.0,1.1239534444150479,0.0007615774840955037,0.0327862383424006,0.7884281461006989,0,1.0,0.2036443059165372
+138,19,0.4870161484450709,2.0,1.3635740943812604,0.0007141072387616819,0.03631569534215565,0.8256350467703409,0,1.0,0.2233871614835696
+138,20,0.5042549403887062,2.0,1.3634990650158065,0.0007112859051577195,0.036379880141040224,0.8256234327729038,0,1.0,0.21418313462902056
+138,21,0.5114573671551206,2.0,1.3625056408944798,0.0007119683913444424,0.03623736622243225,0.8254805604908603,0,1.0,0.20485789051706862
+138,22,0.509122240231859,2.0,1.3619996042592761,0.0007144931168482481,0.03642131784949013,0.8254083753032383,0,1.0,0.19707413410619656
+138,23,0.5072633863861875,2.0,1.125833091968713,0.0007521614262098373,0.03279082055079316,0.7887383806477013,0,1.0,0.22421128795395812
+138,24,0.4987770092173043,2.0,1.3617145705125502,0.0007155615598124266,0.036450081409779324,0.8253676034563364,0,1.0,0.2625900307243475
+138,25,0.5273446798601535,2.0,1.3615879148236636,0.0007126702407822492,0.03636411504514237,0.825348513513312,0,1.0,0.2911489328671783
+138,26,0.4896208119586636,2.0,1.3606025044951395,0.0007135416640219794,0.036325397138172344,0.825206674091879,0,0.9929652838235715,0.30811566143078317
+138,27,0.5150207076022075,1.95,1.366518664675655,0.0007106539248979919,0.03628599307950843,0.8150162355590831,0,1.0,0.3167356920073583
+138,28,0.5420850720504977,1.95,1.3658334101864065,0.0007083480321484059,0.03638419854775901,0.8149122054243125,0,1.0,0.30695024016832545
+138,29,0.5369628876760183,1.95,1.3653424780481975,0.0007104963478505729,0.03647500292134341,0.8148387947948876,0,1.0,0.2898762922533942
+138,30,0.4932047549981085,2.0,1.3647303347212756,0.0007123477028382515,0.03633812561606291,0.8258009323315695,0,1.0,0.31068251666036156
+138,31,0.5234166390548652,1.95,1.3702088075960395,0.0007096249056384872,0.03641163857599018,0.8155716229506825,0,1.0,0.3447221301828841
+138,32,0.5480327466818228,1.95,1.3696379457115455,0.0007076904031481098,0.03623913906548788,0.8154851593827079,0,1.0,0.32677582227274243
+138,33,0.5242268819656926,1.95,1.3690562843538272,0.0007091082824142354,0.03648056287630058,0.8153980481024808,0,1.0,0.3474229398856416
+138,34,0.5505225654660607,1.9,1.36877571860661,0.0007070812305888326,0.03639720930956365,0.8037958911358275,0,1.0,0.33507521822020214
+138,35,0.5370498585240965,1.9,1.3677586652299816,0.0007085409441321662,0.03646140643939865,0.8036359047651397,0,1.0,0.32349952841365476
+138,36,0.5433660835003058,1.95,1.3671170483924306,0.0007095458823547002,0.03631588635947622,0.8151060997563705,0,1.0,0.3112202783343525
+138,37,0.5318211919176115,2.0,1.366910874250029,0.0007105546598419482,0.036468679232089,0.8261138731753452,0,1.0,0.30607063972537124
+138,38,0.4969584710903163,2.0,1.366703088469563,0.000711287262596686,0.03646027440558462,0.8260842332838553,0,1.0,0.32319490363438774
+138,39,0.5354595194963637,1.95,1.371354054342415,0.0007090935231621484,0.03645224079557323,0.815743662732751,0,1.0,0.3181983983212124
+138,40,0.4937460558409808,1.95,1.3703040766453187,0.0007102227196323817,0.036420964664569226,0.8155861322000858,0,1.0,0.3124868528032692
+138,41,0.536209334391269,1.9,1.3742693268000439,0.0007082608283623467,0.03647626376986925,0.8046612025242242,0,1.0,0.32069778130423
+138,42,0.5370657837106307,1.9,1.373229306018152,0.0007092570258183164,0.036375686672941436,0.8044979920114982,0,1.0,0.2902192790354356
+138,43,0.48972874026044677,1.95,1.3726242675827631,0.000710675108988283,0.03661766085221404,0.8159349818229156,0,0.9979545810010941,0.30182302620003026
+138,44,0.49149606444819344,1.9,1.3762865932509345,0.0007085271885062273,0.03647276905600813,0.804978168368171,0,1.0,0.30498688149397807
+138,45,0.4929316050065656,1.95,1.3787057520948927,0.0007071469644872113,0.03642755141331443,0.8168455201196254,0,1.0,0.3097720166885518
+138,46,0.4954711477071589,2.0,1.3808799616370915,0.0007056911315501278,0.036582018200714966,0.8281100121614667,0,1.0,0.3182371590238629
+138,47,0.5169620027723005,2.0,1.3824607403080325,0.0007044934231781908,0.036771493203606134,0.828334568922339,0,1.0,0.3232066759076683
+138,48,0.5344031606645587,2.0,1.382735105182735,0.0007034107990110078,0.03657742564452206,0.8283732712730768,0,1.0,0.31467720221519563
+138,49,0.5323141007275427,2.0,1.3822451810520118,0.0007038198548476299,0.03642485834094248,0.8283037234151788,0,1.0,0.3077136690918088
+139,0,0.12970527212905072,2.0,1.3729135169757463,0.0007029822128603639,0.03622453891224596,0.8269722969643581,1,0.11830949913438008,0.20793824158432905
+139,1,0.14408220037684974,1.95,1.3727416756625486,0.0007031473195974465,0.03647511908302272,0.8159503531451383,1,0.14275074180117425,0.22327301218793347
+139,2,0.03471350510389146,2.0,1.3722168387161098,0.0007034808054409749,0.036417231286190566,0.8268727299293431,1,0.1658462058244731,0.1945834092470074
+139,3,0.13813873033035975,1.95,1.3845473256181762,0.0007011977324595134,0.036470301099362536,0.8177160810039732,1,0.2052616690099551,0.15344687575459232
+139,4,0.14206317825705175,1.95,1.3819894628488139,0.0006973730903709343,0.03657716866001302,0.8173333630322183,1,0.24888887652358832,0.10835875882538806
+139,5,0.21836518746362782,2.0,1.3828650901676498,0.0006978228955584146,0.036568422414503185,0.8283901618331114,1,0.2977538508793381,0.16421215703964187
+139,6,0.23287752676744491,2.0,1.3832198085684275,0.000698168220369574,0.036340869613466255,0.8284406808519983,1,0.33461066292838054,0.19677753865364223
+139,7,0.2798952588799984,2.0,1.3829420830021433,0.0006979373694182562,0.036619446613325016,0.8284011393956889,1,0.3905215066055437,0.24562218745926967
+139,8,0.29289539143552157,2.0,1.3861276917259708,0.0007003502787921672,0.03675128564894039,0.8288541931854935,1,0.4245536466798551,0.2769131092119318
+139,9,0.3413793358141755,2.0,1.383803744172037,0.0006999778278027074,0.03648424405236719,0.828524171976415,0,0.48004926791798275,0.3311987621566081
+139,10,0.3753646189339859,2.0,1.367996484715056,0.0007230737604438728,0.036747554414831206,0.8262733597872773,0,0.5816831275095816,0.3089712264338443
+139,11,0.3893489257340671,2.0,1.3671703686031351,0.0007248626115193963,0.036689926150303934,0.8261552562507678,0,0.639558612152014,0.3117516029108717
+139,12,0.43112327752535357,2.0,0.9012414548297744,0.0010472186229404414,0.03327576108609194,0.7490093711995957,0,0.7351579380799398,0.2902003409779254
+139,13,0.47634938547555405,2.0,0.8975215875235142,0.0010394189746373052,0.03376332804152256,0.748306471650884,0,0.8527487892162452,0.28416623263018653
+139,14,0.4628340731088618,2.0,1.3610186477359991,0.0006930727419619274,0.03608392603878002,0.825260787347108,0,0.8871599315159185,0.2932336683416479
+139,15,0.5099784830660398,2.0,1.3603128353596308,0.000693792155640248,0.03635154821801684,0.8251591895911218,0,0.9547358005673237,0.29361387613036766
+139,16,0.5238232829823428,2.0,1.3661375403280722,0.0006936041221031709,0.036273950215406914,0.825997883548422,0,1.0,0.27941094327447585
+139,17,0.5077346751997088,2.0,1.3708675106744304,0.0006938297682292073,0.03622152130480647,0.8266767170955089,0,1.0,0.29244891733236283
+139,18,0.5298397472486216,2.0,1.3701746393122438,0.0006941595409167018,0.03610012872799383,0.8265775129497078,0,1.0,0.2661324908287384
+139,19,0.4822982241640066,2.0,1.3693541166455807,0.00069294622136283,0.03618282725824847,0.826459513823806,0,0.9960610706485249,0.2795793196819886
+139,20,0.4852598349495688,1.95,1.3697334139529809,0.0006946156104544244,0.036307615707183064,0.8154955894713819,0,0.9954676957682073,0.2902425221409528
+139,21,0.5163294422750334,2.0,1.3694647478537934,0.0006959996497683498,0.036392008436871015,0.826476256247661,0,1.0,0.32109814091677813
+139,22,0.5394523386143006,2.0,1.369212316838681,0.0006966320291414494,0.036342627511300504,0.8264402327237806,0,1.0,0.29817446204766884
+139,23,0.48867389511117776,2.0,1.3684469014328973,0.0006953101332353249,0.036213961024046656,0.8263300371664731,0,0.9997688683648651,0.2958878258841056
+139,24,0.5269689152299035,1.95,1.3684661755933663,0.0006967972458066286,0.03601040288078078,0.8153054983735901,0,1.0,0.28989638409967816
+139,25,0.49250266374639956,1.95,1.3725653950349614,0.0006965801709248241,0.03639663845813472,0.8159219059855242,0,1.0,0.30834221248799853
+139,26,0.5205195911365796,1.9,1.3724690426419022,0.0006977254935161493,0.03648847972282341,0.8043747602797179,0,1.0,0.3350653037885985
+139,27,0.5017540443423272,1.9,1.3715824662956422,0.0006983212781001395,0.03632945622725291,0.8042354021216809,0,1.0,0.33918014780775735
+139,28,0.5409847813751205,1.95,1.371386907038232,0.0006995524918358097,0.03610553479401413,0.815745732531706,0,1.0,0.30328260458373474
+139,29,0.4938869166406463,1.95,1.3711113018460015,0.0006982015374434509,0.03605126863630025,0.8157038980092883,0,1.0,0.3129563888021543
+139,30,0.538336239096126,1.9,1.370830684164337,0.0006993111479964703,0.03634509148550279,0.8041173256886085,0,1.0,0.2944541303204199
+139,31,0.48951058870531006,1.9,1.369792767607775,0.0006979187219451405,0.036485558947669444,0.8039533501668777,0,1.0,0.29836862901770017
+139,32,0.5177255377732284,1.8499999999999999,1.3694265586422636,0.0006989334158892806,0.03628874946520681,0.7918024310703681,0,1.0,0.32575179257742787
+139,33,0.499895172309748,1.8499999999999999,1.36855224093807,0.0006999684386271048,0.03626498982028744,0.7916586032754461,0,1.0,0.33298390769916
+139,34,0.541619647528459,1.9,1.3681347978527048,0.000701006839611709,0.03627759124408901,0.8036928763740978,0,1.0,0.30539882509486327
+139,35,0.5163864024615273,1.9,1.3679245090755467,0.0006994898944457134,0.03631368402221119,0.8036592181405888,0,1.0,0.3212880082050911
+139,36,0.5029017494061776,1.8499999999999999,1.367440207591706,0.0007004985033129582,0.036431837807688806,0.7914753052457371,0,1.0,0.3430058313539251
+139,37,0.5452914160544058,1.9,1.366558485518996,0.0007016513838061023,0.036247088486342026,0.8034442650884601,0,1.0,0.3509713868480192
+139,38,0.5232475820100856,1.9,1.3717782329900705,0.0007006243212104427,0.03643639421502426,0.804266947053491,0,1.0,0.3441586067002853
+139,39,0.5254438691769091,1.8499999999999999,1.3713248510610268,0.0007014539122197594,0.03617364101084488,0.7921160238727615,0,1.0,0.3514795639230302
+139,40,0.5470111059313458,1.9,1.3704551045906288,0.0007023062240552406,0.03645768387825003,0.8040591041352276,0,1.0,0.35670368643781913
+139,41,0.5069752259460074,1.9,1.3748216416293046,0.0007013117434739177,0.0364635023489039,0.8047458178083262,0,1.0,0.3565840864866914
+139,42,0.5303711335248759,1.8499999999999999,1.374489993412088,0.0007022204259627069,0.036518324357748724,0.7926369923476219,0,1.0,0.36790377841625277
+139,43,0.535120955903355,1.8499999999999999,1.3737094036353714,0.0007029952723994638,0.03624696048639852,0.7925089173305887,0,1.0,0.3837365196778496
+139,44,0.5163884797739214,1.9,1.3731221717471196,0.0007036521716596529,0.03648502496248336,0.8044793780845534,0,1.0,0.3879615992464048
+139,45,0.5188053157919265,1.95,1.3730339658670663,0.0007047262290882741,0.036275993619198164,0.815994718021021,0,1.0,0.3960177193064215
+139,46,0.5182945299377106,2.0,1.372882000964498,0.0007055761039504241,0.03645063355409998,0.8269685296488769,0,1.0,0.39431509979236873
+139,47,0.5630365872173677,2.0,1.3726992129804323,0.0007062987522429565,0.036545919962598684,0.8269425794984914,0,1.0,0.3767886240578921
+139,48,0.5555329594008532,2.0,1.3723828199689145,0.0007045402320734721,0.0364075455569249,0.8268967928463953,0,1.0,0.3517765313361773
+139,49,0.5404185455129331,2.0,1.3719805931596107,0.0007030060547496744,0.03628271481536953,0.8268387718235161,0,1.0,0.33472848504311026
+140,0,0.18785831734686648,2.0,1.3721072233525458,0.0007035083811875809,0.0362348348280994,0.8268570453611294,1,0.15761072744214305,0.2493800879000309
+140,1,0.17886031822968776,1.95,1.3718905686586442,0.0007042364887083323,0.03647197044823239,0.8158228307686698,1,0.19368445896448777,0.27128844881297554
+140,2,0.18234868399697593,2.0,1.3712872232839035,0.0007046822034644886,0.03640965874339007,0.8267399552972038,1,0.21278749475323944,0.2574456203189339
+140,3,0.208623724946048,2.0,1.386125534123982,0.000700185955418693,0.036378746665593334,0.8288538404985905,1,0.271809956126395,0.2663324749849666
+140,4,0.19858060875434033,2.0,1.3860806753228625,0.0007002168720440906,0.036716079053454545,0.8288474857243074,1,0.30054096628987986,0.22788074079462792
+140,5,0.20607440551549017,2.0,1.3861835068128867,0.0007001983440582079,0.036750537638377254,0.8288620675810329,1,0.3494633834405747,0.18763017379753422
+140,6,0.2610717744877361,2.0,1.383121731233064,0.0006987912847507233,0.03629514724793562,0.8284269181126017,1,0.39049084182519966,0.21625145919218744
+140,7,0.23441035774459681,2.0,1.3858684765103366,0.0007002522644400097,0.036717783995023394,0.8288173912849705,1,0.4246611282049389,0.18181968820873745
+140,8,0.27960745900610723,1.95,1.3790740653829354,0.000698186643755782,0.03654325945041007,0.8168979361640044,1,0.4458820815951002,0.20418208789355716
+140,9,0.25306544338220455,1.95,1.377686127821124,0.0007016153583160048,0.03631544472747689,0.8166912697220033,1,0.47751349176612784,0.17353348891917797
+140,10,0.26860317105778303,1.9,1.3793914178708446,0.0006961344050116661,0.036578317758846166,0.8054612443580721,1,0.4814478259115713,0.18674680231051488
+140,11,0.32367368074261543,1.95,1.3802568979823664,0.0006975229194108412,0.0365219721773673,0.8170745944573439,0,0.5413301675940668,0.223805379016629
+140,12,0.296031135030054,1.95,1.341482939886463,0.000733808718711205,0.03590420984736029,0.8112190177223824,0,0.5603768997174869,0.23960125047686412
+140,13,0.38501400463155094,1.9,1.3472969429017874,0.0007277104493881439,0.03635359505113594,0.800392990439578,0,0.6711645188098297,0.2218273236920636
+140,14,0.4036135546670531,1.95,0.8350929847454333,0.000928690814929471,0.03243808465507618,0.7215072432514763,0,0.733776210860281,0.23367690107646902
+140,15,0.4382477037424445,2.0,0.8520280288464548,0.0009950051623761444,0.03344942961349919,0.739624545079026,0,0.8120150486613912,0.2114722809262933
+140,16,0.4223004515251194,2.0,1.3161856212961869,0.0007254419793091204,0.03596092059701931,0.8187106728792669,0,0.8422612228883058,0.21798654123265676
+140,17,0.442889506440983,2.0,1.3156852397915197,0.0007268579061113894,0.03544149790633405,0.8186368131044085,0,0.8698538461756737,0.24982655990237812
+140,18,0.464384197838796,2.0,1.3151305858291247,0.0007282248293318217,0.03528156121653497,0.8185548547926649,0,0.905932631969488,0.27337048350333565
+140,19,0.5251645659722781,2.0,1.3144809860276117,0.0007297091301305749,0.03540798006514746,0.8184587955297229,0,1.0,0.25054855324092684
+140,20,0.4796979470848529,2.0,1.3138076071352993,0.0007263283095595428,0.03575128894676554,0.8183577156420498,0,1.0,0.2656598236161763
+140,21,0.5212413297604377,1.95,1.3131971400180094,0.000728384928565688,0.03604263096035763,0.8068473851890572,0,1.0,0.27080443253479203
+140,22,0.5100972679220083,1.95,1.3247966485098153,0.000722697854271099,0.035623242969385585,0.8086469154163827,0,1.0,0.30032422640669426
+140,23,0.49593778267912825,2.0,1.3240762422641192,0.0007242652067771219,0.0354630570237099,0.8198785350453475,0,1.0,0.31979260893042744
+140,24,0.5392962530434678,2.0,1.3246194491523953,0.0007256126866898704,0.03546667869236818,0.819959138509994,0,1.0,0.29765417681155926
+140,25,0.5117572447871779,2.0,1.3239833529168592,0.0007224504785216675,0.03553633031046848,0.8198642809281227,0,1.0,0.30585748262392637
+140,26,0.5367289927577246,1.95,1.3232860767764203,0.0007240453068960784,0.035789654485088314,0.8084134823607052,0,1.0,0.28909664252574846
+140,27,0.5312359782238049,1.95,1.32134695922311,0.0007215284925423075,0.035978863099394784,0.8081121894795611,0,1.0,0.27078659407934946
+140,28,0.5019481713177908,2.0,1.3206246241350863,0.000718687884282209,0.03543988278615967,0.819366594099065,0,1.0,0.2731605710593026
+140,29,0.48432533181032356,1.95,1.3211895719555562,0.0007197492781964114,0.03554328033851657,0.8080872308951794,0,1.0,0.281084439367745
+140,30,0.5123114203330558,2.0,1.3193509755591457,0.0007224455722392805,0.03545392068371789,0.8191791243015593,0,1.0,0.30770473444351903
+140,31,0.5370697589936464,2.0,1.3199122138279735,0.0007234398051882986,0.0354078018000728,0.8192625370877914,0,1.0,0.29023252997882126
+140,32,0.5280518396495552,2.0,1.319172617361152,0.0007203520029068172,0.03568583256733662,0.8191520832553123,0,1.0,0.26017279883185046
+140,33,0.504355192921616,2.0,1.318429386166533,0.0007176250835383514,0.03598103504147912,0.8190411450933477,0,1.0,0.28118397640538684
+140,34,0.4839664753616274,1.95,1.317686962429266,0.000719231301511391,0.035958263007729224,0.8075432910547029,0,0.9883660331900378,0.2954002069520408
+140,35,0.531208391931293,1.9,1.315838766092733,0.0007221472439421519,0.035159646561145376,0.7953177690282791,0,1.0,0.30402797310430985
+140,36,0.49752585548581857,1.9,1.327219068835896,0.0007169643216369685,0.036094572801543164,0.7971624378691143,0,1.0,0.32508618495272856
+140,37,0.5378748034274622,1.8499999999999999,1.3266359994095476,0.0007190059291663537,0.03607748251672363,0.7846670429901413,0,1.0,0.32624934475820727
+140,38,0.5347285904977047,1.8499999999999999,1.3367677762393653,0.0007145387642656873,0.03560484938930154,0.7863725166554449,0,1.0,0.2824286349923488
+140,39,0.5309674565559922,1.9,1.3360710710482526,0.0007120529510149444,0.035678775403871085,0.7985884133974547,0,1.0,0.26989152185330734
+140,40,0.5257712500478946,1.95,1.336367277977707,0.0007093385758245019,0.035641771471925786,0.8104268249306762,0,1.0,0.25257083349298176
+140,41,0.520113272710789,2.0,1.3365886157183322,0.0007067415447665883,0.03536949405404344,0.821713809345329,0,1.0,0.2337109090359632
+140,42,0.51435640364286,2.0,1.3367447573804858,0.0007042943529437496,0.03547962993920826,0.8217359660274927,0,1.0,0.21452134547619967
+140,43,0.48701300699540184,2.0,1.3358281378854298,0.0007020730595857899,0.03535511100586054,0.8216010033715749,0,1.0,0.22337668998467275
+140,44,0.4699485919364334,1.95,1.3351501140362052,0.0007039212682367609,0.03565837784406091,0.8102380892205349,0,1.0,0.23316197312144454
+140,45,0.5173627802396291,2.0,1.3336098945131916,0.0007063198046374515,0.03581651963413045,0.8212768839498171,0,1.0,0.22454260079876365
+140,46,0.49659326254039005,2.0,1.3337746975960503,0.0007038188115455245,0.036073903077950005,0.8213003385365523,0,1.0,0.25531087513463346
+140,47,0.5211798257053569,1.95,1.3330789353384227,0.0007056950087321406,0.03574692961759113,0.8099199821685426,0,1.0,0.23726608568452287
+140,48,0.5013496702686838,1.95,1.331039017089192,0.0007035391535999576,0.03552706875573579,0.8096050743750103,0,1.0,0.27116556756227944
+140,49,0.4870768707680816,2.0,1.3302598265952992,0.00070537514210586,0.036009945836993976,0.8207843498125623,1,0.9950097457456779,0.2969099082327013
+141,0,0.19447987721327492,2.0,1.3710479818535175,0.0007051441855383814,0.036259294948962455,0.8267058158064313,1,0.1676767489180321,0.25803059215354035
+141,1,0.23455979951913764,1.95,1.370796462112042,0.0007060119517222162,0.03648095235868106,0.815658911868163,1,0.23200624138499537,0.30585767655046503
+141,2,0.21913724671732987,1.95,1.3853221755017135,0.0007003252579988542,0.036699160515579254,0.8178312890093404,1,0.2425075730678507,0.3404473916339653
+141,3,0.2865407952001932,2.0,1.3852197905465629,0.0007004037438969605,0.03642368723418947,0.8287253796591315,1,0.28177709302205134,0.41276652663790886
+141,4,0.2624681130891904,2.0,1.3785808948155667,0.0007016220781146085,0.03651064471866156,0.8277813471393964,1,0.2993704862302612,0.40906639532361966
+141,5,0.26686801652628517,1.95,1.378547877782832,0.0007028162813444676,0.036602436532060925,0.8168206035825589,1,0.3087654742940954,0.4112060893621567
+141,6,0.34597663234340353,2.0,1.3782063009303407,0.0007040031603095392,0.036425602482454335,0.8277286177639765,1,0.36408123461223335,0.5011471283283673
+141,7,0.3762951612242569,2.0,1.3777843898640503,0.0007042439814966598,0.03661932643380168,0.8276685161764582,2,0.3992223100571384,0.5553541240046718
+141,8,0.4312285726319854,2.0,1.3862943611198844,0.0007001722195526523,0.03675692642443548,0.8288777842514964,2,0.44466563402138437,0.577874396744772
+141,9,0.39516970186571077,2.0,1.385517547301506,0.0006998046807990431,0.036409083657093146,0.8287674689761753,2,0.4741660245929782,0.5850109734283981
+141,10,0.47866361733558166,1.95,1.3853388313235886,0.0006995599172558056,0.036665268985386384,0.8178335423914083,2,0.5294663720347996,0.6229235617388726
+141,11,0.47167995685851255,1.95,1.3862943611198846,0.0007001722195526527,0.036654967538210355,0.8179760380796509,2,0.5726378084506362,0.6420827782608604
+141,12,0.49808488998722716,2.0,1.3862408692789359,0.0007001712141396954,0.03651943821961566,0.8288701965820076,2,0.6055724413635757,0.6861863781393229
+141,13,0.5577594037229654,2.0,1.3816848457731143,0.0007028034685297735,0.03667511249490117,0.8282237305395008,2,0.6649991402263308,0.7058658254414435
+141,14,0.5258917705856012,2.0,1.381579626263109,0.0007045799951123492,0.036714801240908305,0.8282092660531192,2,0.7018771256222354,0.7171364011223567
+141,15,0.602896246253663,1.95,1.3827640580462428,0.0007033003681236831,0.036363803442847134,0.8174507503139624,2,0.7462539217251373,0.7479822585453606
+141,16,0.6134785245805073,1.95,1.382355563351043,0.0007048916472211197,0.036770618250850526,0.8173902598194749,2,0.8021534989310452,0.808723750026964
+141,17,0.6746318074462855,2.0,1.365167248227658,0.0007081991300655879,0.03622821325179453,0.8258625817935581,2,0.8581085998202966,0.837961225060556
+141,18,0.6003212144367795,2.0,1.3650755767454652,0.0007112007416516657,0.03624627634040062,0.8258502611907901,2,0.9048617757232709,0.7945883471582371
+141,19,0.7106662929969791,1.95,1.3798540110667488,0.0007022557119021563,0.036603681892869055,0.8170157849136248,2,0.9595270434170288,0.8228515854338921
+141,20,0.704442965996522,1.95,1.3643224941943946,0.0007090100164473933,0.036439602355800293,0.8146844049516359,2,0.982613393724413,0.8713253616891893
+141,21,0.6474825951667778,2.0,1.3626841328719972,0.0007102782239802696,0.036356290017874604,0.8255057860574123,2,1.0,0.8249419838892591
+141,22,0.7362734856170318,1.95,1.3626649923256688,0.0007065552406147601,0.03631549869804945,0.8144332931990486,2,1.0,0.8542449520567726
+141,23,0.7457338997091232,1.95,1.3615021251150303,0.0007101392418275282,0.036143057253237985,0.8142585669338682,2,1.0,0.8857796656970773
+141,24,0.7581876356009666,2.0,1.360527115007096,0.0007131222159334703,0.03629447200475721,0.8251956785899711,2,1.0,0.9272921186698886
+141,25,0.7101940640096105,2.0,1.3598765712572733,0.000715350604028348,0.036331010139834696,0.825102462402478,2,1.0,0.9339802133653683
+141,26,0.7201039637496236,1.95,1.3667869585747496,0.0007118941506974845,0.03646232801590566,0.815057055310043,2,1.0,0.967013212498745
+141,27,0.7288010081190486,2.0,1.3719829337485259,0.0007094279835284671,0.036409059018136083,0.8268409458673702,2,1.0,0.9960033603968285
+141,28,0.75,2.0,1.3766221598990511,0.0007070650840781893,0.03645744233659724,0.8275034856727802,2,1.0,1.0
+141,29,0.73,2.0,1.3755778849723233,0.0007084240604897115,0.03665552141882604,0.8273547615841389,2,1.0,1.0
+141,30,0.7799999999999999,1.95,1.3790888275368682,0.0007064592651315054,0.03654364650484655,0.8169026189432583,2,1.0,1.0
+141,31,0.7799999999999999,1.95,1.3779505959961902,0.0007082560227847297,0.036660591931050576,0.8167328470094805,2,1.0,1.0
+141,32,0.7799999999999999,2.0,1.3767753850580406,0.0007096708939075934,0.0364199138046412,0.827526099997498,2,1.0,1.0
+141,33,0.7799999999999999,2.0,1.3755711296118809,0.0007107316207260296,0.036386806441274254,0.8273544558744872,2,1.0,1.0
+141,34,0.73,2.0,1.3738449170268197,0.000711893675815258,0.03643058192413314,0.8271080782893946,2,1.0,1.0
+141,35,0.75,1.95,1.3773639460788942,0.0007091138585435778,0.03674605589597722,0.8166452776526785,2,1.0,1.0
+141,36,0.6905354461033753,1.95,1.3763157270445547,0.0007119525952359359,0.0367375919274621,0.8164891203553738,2,1.0,0.9684514870112508
+141,37,0.6813288334229101,1.9,1.377341086688481,0.0007090532729277638,0.03661572575349674,0.8051438233534807,2,1.0,0.9377627780763669
+141,38,0.7186833879265966,1.95,1.3775687628415125,0.0007066753883045139,0.03670824404996568,0.8166752139001648,2,1.0,0.962277959755322
+141,39,0.7748670578007057,1.95,1.3807110863321812,0.0007048434435008731,0.036680362737644065,0.8171446570182079,2,1.0,0.9828901926690192
+141,40,0.6837522415276684,1.95,1.379407561932443,0.0007056601014009294,0.03669062698609215,0.8169500490835956,2,1.0,0.9458408050922283
+141,41,0.7190911637865489,1.9,1.379654788725564,0.0007035386321688622,0.0364429933257978,0.8055048295238143,2,1.0,0.9636372126218293
+141,42,0.7783791834105749,1.9,1.3819665370471281,0.0007024766024725257,0.03639412179983738,0.8058664156677661,2,1.0,0.9945972780352498
+141,43,0.75,1.9,1.3806123020641476,0.000702921929638588,0.03664990711490378,0.805654603072602,2,1.0,1.0
+141,44,0.73,1.8499999999999999,1.3803844441287554,0.0007050821682461544,0.036695338658656554,0.7936050918271907,2,1.0,1.0
+141,45,0.7799999999999999,1.7999999999999998,1.3823341178957473,0.0007037040451450183,0.036664315079272605,0.7813825626494635,2,1.0,1.0
+141,46,0.7799999999999999,1.7999999999999998,1.3807961981342838,0.0007043564984474142,0.03670714638601522,0.7811199586865644,2,1.0,1.0
+141,47,0.73,1.8499999999999999,1.3790430178900093,0.0007047925946641441,0.03656402918514161,0.7933851900332116,2,1.0,1.0
+141,48,0.75,1.7999999999999998,1.3810092233975182,0.0007029304791348159,0.036605714542934924,0.781155890209395,2,1.0,1.0
+141,49,0.7799999999999999,1.7999999999999998,1.3807790804156346,0.0007054996240252135,0.03647861331971,0.7811174229167263,2,1.0,1.0
+142,0,0.10910277184613293,1.7999999999999998,1.3773993907259021,0.0007080789568076429,0.036204167148750174,0.7805399219501954,0,0.11416829998913665,0.21145150616826086
+142,1,0.1935392416441835,1.7499999999999998,1.3782081506807857,0.0007067236439967334,0.03665804463614743,0.7675666141669043,0,0.2128985881690547,0.19459935458853886
+142,2,0.18104328604543338,1.7499999999999998,1.3546061293225078,0.0006867549445199583,0.03617936843980809,0.7633220444694335,0,0.24661254350035142,0.20799422881764273
+142,3,0.2305615257751485,1.7999999999999998,1.3730556205899755,0.0006910859010340888,0.036389814963047065,0.7797891029882215,0,0.31785327152586895,0.21140072388266967
+142,4,0.27396827913872074,1.7999999999999998,1.3728441817298664,0.0006908953761239551,0.036340285021071124,0.7797527275290227,0,0.4252518079838046,0.17955851981732968
+142,5,0.28511892219164703,1.7999999999999998,1.3635138716154522,0.0006968358120893728,0.03640103295340193,0.7781482241949831,0,0.48993880143808916,0.1638113387213712
+142,6,0.30455316843397356,1.8499999999999999,1.362970931030592,0.0006972149866565091,0.03620316993822382,0.7907356386792085,0,0.5450095646257295,0.15516447527893937
+142,7,0.33472285045962263,1.9,1.3629398379382216,0.0006976173792367573,0.03606577853418365,0.8028708980741932,0,0.6193117383311828,0.15666051709049839
+142,8,0.379205836391094,1.95,1.1273392132178837,0.00072808310471501,0.032994296643452534,0.7762239639790645,0,0.7273810069108702,0.1275114454224864
+142,9,0.410711419132832,2.0,1.1280937412964196,0.0007262977486261128,0.03285577013479668,0.7891062188848935,0,0.8321117832294594,0.09288901947016073
+142,10,0.4367723858404011,2.0,1.1264442784655713,0.0007427564617788166,0.03294153508163402,0.788837071559464,0,0.9137136960054724,0.10428969146070724
+142,11,0.4354731564405655,2.0,1.1262323346775518,0.0007365416327949419,0.03242946320160212,0.7887996945465172,0,0.9528555233782019,0.11443649029761573
+142,12,0.4497496077463712,2.0,1.1242417788471952,0.0007359901040155823,0.03255196644304526,0.7884677038108591,0,0.9741319234193621,0.13365612792875442
+142,13,0.4419076712176563,2.0,1.1220962377974486,0.0007354585465233112,0.03300518572675609,0.7881094577669571,0,0.9956742131256585,0.14545995322464295
+142,14,0.4702288563227361,2.0,1.1301677708678446,0.0007534388765694884,0.03343546988049625,0.7894601894842841,0,1.0,0.1674295210757868
+142,15,0.45641146311785735,2.0,1.12794303618142,0.000752840065845941,0.0332625003447536,0.7890899726608746,0,1.0,0.18803821039285776
+142,16,0.4938894381591803,2.0,1.1345924914083447,0.0007705274314387587,0.033568142282259884,0.7902003587987261,0,1.0,0.17963146053060094
+142,17,0.4755421593488944,2.0,1.1346813363636252,0.0007622372203020416,0.03310778581983903,0.7902123388328858,0,1.0,0.18514053116298118
+142,18,0.48135992697354024,2.0,1.1326321954414318,0.0007621124032257162,0.03283896285924097,0.7898723953625426,0,1.0,0.20453308991180066
+142,19,0.48979746511983163,2.0,1.2993958071143195,0.0006511255792167781,0.03432260337596078,0.8161830241890285,0,1.0,0.23265821706610534
+142,20,0.5013610551347827,2.0,1.2976018786113008,0.0006507588483367564,0.034363924983573144,0.8159136213158641,0,1.0,0.27120351711594237
+142,21,0.5259089277717737,2.0,1.2958323523592712,0.0006502388677438353,0.03441491883273293,0.8156475360137637,0,1.0,0.2530297592392454
+142,22,0.4758654569021741,2.0,1.2940450903546596,0.0006492272876470385,0.0342687773159429,0.8153783352597299,0,1.0,0.2528848563405803
+142,23,0.5198914186417221,1.95,1.3026211139370771,0.0006546906749253558,0.03451855383977793,0.8051706970561275,0,1.0,0.23297139547240683
+142,24,0.4721453146453851,1.95,1.2988934094592408,0.0006525177454735179,0.034300191565882744,0.8045845803084262,0,1.0,0.24048438215128368
+142,25,0.5189942255710285,1.9,1.3062386388677567,0.0006584112266237235,0.03469739360499646,0.7937296886798996,0,1.0,0.2299807519034283
+142,26,0.4637739825782683,1.9,1.30254955139069,0.0006560105853001052,0.03453997443514489,0.7931242584044058,0,0.9832178169828989,0.23495618595036247
+142,27,0.5098728832181534,1.8499999999999999,1.3087528677011262,0.0006620453209776483,0.03456591464486136,0.7816106006275748,0,1.0,0.19957627739384437
+142,28,0.4824719929184647,1.9,1.1144016420534235,0.000758167972650961,0.033323326675018486,0.7605901991097368,0,1.0,0.20823997639488218
+142,29,0.5046337841749952,1.8499999999999999,1.312111418185176,0.0006654791806932827,0.03460746765957416,0.7821845178037858,0,1.0,0.18211261391665043
+142,30,0.5000026162351765,1.9,1.103455694258137,0.0007525670434228074,0.0328821849378122,0.7585892883845269,0,1.0,0.2000087207839216
+142,31,0.4876925489064581,1.95,1.3143205905798496,0.0006678694206412938,0.035123889445224724,0.8070035588941171,0,1.0,0.22564182968819352
+142,32,0.4960783765460626,2.0,1.3145621666840372,0.0006685403607644867,0.035183157268666186,0.8184526801955541,0,1.0,0.25359458848687527
+142,33,0.520334335445923,2.0,1.3147062736739694,0.0006690568430981056,0.03513898237747624,0.8184742452384531,0,1.0,0.23444778481974338
+142,34,0.47348710329679894,2.0,1.3130843889268804,0.0006672934623983095,0.03501685912774656,0.818232626075482,0,1.0,0.24495701098932968
+142,35,0.4789581368277113,1.95,1.317515877557563,0.0006735407207435313,0.034821222304943486,0.8075024960459105,0,1.0,0.26319378942570437
+142,36,0.5225516379628927,2.0,1.3194709081298976,0.0006791958136835486,0.0349307702697972,0.8191840765093061,0,1.0,0.27517212654297574
+142,37,0.510986110951586,2.0,1.3317970246000213,0.0006788540690522377,0.035327181599916,0.8210025613526641,0,1.0,0.30328703650528654
+142,38,0.5376768554676662,2.0,1.330486185003846,0.0006789219765690716,0.03524669799602609,0.8208098627427205,0,1.0,0.32558951822555404
+142,39,0.5465478227568047,2.0,1.3399243513469103,0.0006789954793080361,0.035757191751151475,0.8221938587290044,0,1.0,0.3218260758560154
+142,40,0.5406565718718694,2.0,1.3384989769385602,0.0006772620582922305,0.035637867319376564,0.8219848786587068,0,1.0,0.3021885729062312
+142,41,0.5166296059993521,2.0,1.3371303394213212,0.0006757344807586544,0.03517035810473562,0.821784076060385,0,1.0,0.3220986866645071
+142,42,0.5255529081966132,1.95,1.3358029982779027,0.0006757152289982521,0.035258902993310144,0.8103297812340379,0,1.0,0.35184302732204364
+142,43,0.5499876340004825,2.0,1.333233643313543,0.0006750920170739926,0.03550114032495524,0.8212124809825013,0,1.0,0.33329211333494135
+142,44,0.49767868518173775,2.0,1.3329399364282684,0.000673968251706733,0.03526911855166874,0.8211690240719273,0,0.9948536136316839,0.3324574657635472
+142,45,0.5292219888635248,1.95,1.3362993927295257,0.0006788391206211577,0.03567531200887883,0.8104070229967222,0,1.0,0.3640732962117492
+142,46,0.516410193654075,1.95,1.3338050868336393,0.0006785106378655902,0.03515918509289755,0.8100233813263743,0,1.0,0.3880339788469166
+142,47,0.5459672321524133,2.0,1.3365611715136976,0.0006837377092949049,0.03547324802155444,0.821703048374757,0,1.0,0.41989077384137735
+142,48,0.5666535070115231,2.0,1.2252075494784656,0.0005848618950357146,0.03181592798150106,0.8047698588561863,0,1.0,0.38884502337174354
+142,49,0.5350414247242159,2.0,1.3461279932575216,0.0006800454546910909,0.035364004593466794,0.8230992698343222,0,1.0,0.383471415747386
+143,0,0.18983613262019688,1.95,1.3703170248905923,0.0007073379879976293,0.036228354516357544,0.8155872119251695,1,0.14063633566922984,0.27860532784168307
+143,1,0.2217861530019316,1.9,1.3696548417618517,0.0007081738283978023,0.03648785150733064,0.8039348433512825,1,0.1876642702969133,0.32240148294388754
+143,2,0.19828063661046585,1.9,1.3689230751241515,0.0007090931401572483,0.03637580620830417,0.8038197639365966,1,0.19684845246713617,0.331804185412038
+143,3,0.20923122139454844,1.8499999999999999,1.368623951928712,0.0007095467587021133,0.0364903148309597,0.7916735901544805,1,0.2280682819790435,0.32667969534310354
+143,4,0.2448904523406269,1.9,1.3852014461288975,0.0007001564469635943,0.036754393399247666,0.8063712781836451,2,0.2567586691731162,0.3406232822379347
+143,5,0.25441972945683466,1.9,1.3861618525237087,0.0007002174369091708,0.03664475844418164,0.8065212077240652,2,0.28383316804560327,0.36962154079531134
+143,6,0.2180235188828259,1.95,1.3861782900825887,0.0007001458859033124,0.036553928620215934,0.81795874763895,2,0.30260489348736774,0.32327187162626264
+143,7,0.26523939706210486,1.9,1.3862245390097183,0.0007001375349864502,0.03676927399498055,0.8065309644975037,2,0.3389717847845252,0.33216894382764944
+143,8,0.28175975408396103,1.9,1.3862052285292707,0.000700107655888113,0.036556761800677226,0.8065279419713871,2,0.3701327820759031,0.3456888041786661
+143,9,0.2979586604295651,1.95,1.3861456454983503,0.0007000857915172563,0.03663213842199675,0.8179538688401999,2,0.40499203168392944,0.3532061591866443
+143,10,0.27329822290935446,2.0,1.3856474726227925,0.000700610788852545,0.03676549673883472,0.8287861349175413,2,0.44793348312417586,0.31374943219894696
+143,11,0.2841157412155198,1.95,1.3856875374934852,0.0007003561514318463,0.036761236691985805,0.8178857247165104,2,0.4995228862507887,0.2810219557173477
+143,12,0.3333520490689187,2.0,1.3856282229546648,0.0007001132238773712,0.03651018468589935,0.8287832621681017,2,0.5318467032308744,0.3020445592552298
+143,13,0.3828914680399296,2.0,1.3859434637055816,0.0007001012370490291,0.03669052111722082,0.8288279872869955,2,0.569627089082738,0.35013544135611474
+143,14,0.45431573700750627,2.0,1.3859506630762188,0.0007003007572651483,0.03675711419941839,0.8288290652872534,2,0.6558106940519259,0.3733048646224529
+143,15,0.44720662632357927,2.0,1.3859634060581285,0.0007000082424074208,0.0364338091662821,0.8288307901466134,2,0.6959075212691894,0.3961453927196784
+143,16,0.5085486788806958,2.0,1.3858231045860907,0.0007000383392936295,0.0366641257504729,0.8288108931552576,2,0.7594730955484572,0.41586480220437627
+143,17,0.47116098524430305,2.0,1.3849029498712597,0.0007001271580284656,0.03673129589775322,0.8286803241950769,2,0.7843406635260511,0.4247490661129419
+143,18,0.4379438022168537,1.95,1.3850468425751297,0.0007008903192152292,0.0364254387950087,0.817790433818178,2,0.8103550076494958,0.3793393305235178
+143,19,0.5503964180070048,1.9,1.3692797232247447,0.0007031827448242976,0.03639798901176732,0.803874135282823,2,0.8665385252567934,0.41260335968095807
+143,20,0.5919869516288032,1.9,1.3322433464355783,0.0006597924914628156,0.03456954718976543,0.7979551888570754,2,0.9326698508660073,0.4630633709413343
+143,21,0.5888237160510127,1.9,1.3412778887976775,0.0006683500322965615,0.03541018056412058,0.7994105864315619,2,0.9718562015708971,0.5002707847421793
+143,22,0.5287755154415693,1.95,1.3372877656887754,0.0006656649151666369,0.03577064179599492,0.8105547915064372,2,0.9836002909677646,0.4511179968482116
+143,23,0.6241686799758779,1.9,1.340425575564216,0.0006672206721727031,0.03582700263554961,0.7992735179349858,2,1.0,0.4805622665862596
+143,24,0.5796846796043679,1.9,1.3468529345975149,0.0006750102788804144,0.035504602325756404,0.8003052002020292,2,1.0,0.49894893201455953
+143,25,0.5817766317321575,1.8499999999999999,1.3504373120682223,0.0006754435584382636,0.03523856100585159,0.7886468502526813,2,1.0,0.5059221057738585
+143,26,0.5854433949541283,1.9,1.35181021776009,0.0006752530426478289,0.035883837146342835,0.8010963553365744,2,1.0,0.5181446498470942
+143,27,0.5914751394250677,1.95,1.3538930538524987,0.0006766264343511407,0.03595098108905932,0.8130948205533399,2,1.0,0.5382504647502253
+143,28,0.6284282880672638,2.0,1.3550064581900088,0.0006777674981315137,0.03589099018087979,0.8243876693847979,2,1.0,0.5947609602242127
+143,29,0.5656182925529489,2.0,1.3527978905356224,0.0006760735303860395,0.035796942331444245,0.8240672089249055,2,1.0,0.5520609751764964
+143,30,0.601604247736445,1.95,1.3548944289367253,0.0006777901092396671,0.03614610722574137,0.8132473069193684,2,1.0,0.5720141591214832
+143,31,0.6384573049535089,1.95,1.3541182555305888,0.000678271758787638,0.035501835144482366,0.8131295424213295,2,1.0,0.6281910165116961
+143,32,0.6281289081029282,1.95,1.3782800858785655,0.0007031457744417194,0.036449879674899224,0.8167806305156463,1,1.0,0.6604296936764272
+143,33,0.6221730609788152,2.0,1.3503418224115873,0.0006740355597882004,0.035938537160206736,0.8237102517409776,1,1.0,0.6739102032627173
+143,34,0.6655417468861493,2.0,1.351550660257739,0.000675275671487095,0.036034572006849765,0.8238860802975893,1,1.0,0.7184724896204977
+143,35,0.6204848229730349,2.0,1.3539367142658332,0.000677399477197016,0.03573912714028747,0.8242326393546475,1,1.0,0.7016160765767828
+143,36,0.6650024718524974,1.95,1.3510981645215243,0.0006749270934013454,0.03532091753165249,0.8126691875215524,1,1.0,0.7166749061749912
+143,37,0.6183790249067853,1.95,1.3518107083796398,0.0006764718014215831,0.03595248688037759,0.8127781097083469,1,1.0,0.6945967496892843
+143,38,0.67661720560012,1.9,1.3489145157013183,0.0006738537010808746,0.0360562806362534,0.8006341022763412,1,1.0,0.7553906853337331
+143,39,0.6467589394027257,1.9,1.3488655835735206,0.0006752969743365863,0.03510628406589003,0.8006267524186726,1,1.0,0.7558631313424187
+143,40,0.6768582088907054,1.8499999999999999,1.3495862950655644,0.0006777516834797841,0.0354121190194984,0.7885057351720322,1,1.0,0.7895273629690177
+143,41,0.6385680653461374,1.8499999999999999,1.3572642349102917,0.0006803412239502953,0.036179706862684416,0.7897841661136734,1,1.0,0.7618935511537915
+143,42,0.6706410830474765,1.7999999999999998,1.3544624088730546,0.0006777987658267632,0.035604140161322795,0.7765750986378105,1,1.0,0.768803610158255
+143,43,0.6567360486547806,1.7999999999999998,1.3608421905888635,0.0006817147749144745,0.03593687593775312,0.7776814310492347,1,1.0,0.7891201621826018
+143,44,0.6380657394682544,1.8499999999999999,1.3613353334797873,0.0006824277412061645,0.03629485041175863,0.7904599646213339,1,1.0,0.7602191315608479
+143,45,0.6743260227597786,1.9,1.3593076786766356,0.0006807648593461998,0.03608341863306214,0.8022900603497515,1,1.0,0.7810867425325951
+143,46,0.6353161068627508,1.9,1.3657001574365637,0.0006856872485646722,0.03598078641327076,0.8033036364198083,1,1.0,0.7510536895425024
+143,47,0.6968794938663634,1.8499999999999999,1.3630711687807646,0.0006840128639513405,0.03625651011503011,0.7907478558528591,1,1.0,0.8229316462212111
+143,48,0.7099029975356921,1.8499999999999999,1.3619870195415191,0.0007056709950457697,0.036309291062847956,0.7905755815939747,0,1.0,0.8663433251189732
+143,49,0.7050785753619819,1.9,1.3723528752478293,0.0006907762982547459,0.036258861826354925,0.8043542928371757,0,1.0,0.8835952512066064
+144,0,0.18295181908860536,1.95,1.3679945148197081,0.0007104203517447334,0.036241735057351294,0.8152385679656952,1,0.14460721995388423,0.25036310369017223
+144,1,0.18824923261388601,1.9,1.368097032968289,0.000710823684823143,0.036499613681650875,0.8036900157883237,1,0.16304089946370443,0.2767762427613474
+144,2,0.23663918207018025,1.95,1.367549272113845,0.0007096840805938252,0.0363627539503108,0.8151712721643031,1,0.21407292340021083,0.3367000423669864
+144,3,0.24203281820192782,1.95,1.3851900193085904,0.0007012690609712174,0.0363391214624411,0.8178118803654623,1,0.22700305960973655,0.37077198119344396
+144,4,0.278909069498905,2.0,1.3852974706873666,0.0007009271843725199,0.03673626495836217,0.8287365538538694,1,0.2584612907733338,0.41841517729857164
+144,5,0.25177702823076453,2.0,1.379001127935914,0.0007034773477810385,0.03663050358992717,0.8278417758901311,1,0.3243647024084338,0.37343715755796997
+144,6,0.34345206218322116,1.95,1.3853482148695138,0.000700586391207616,0.03643781389667204,0.8178352462151012,1,0.40700817360285374,0.4354959758069322
+144,7,0.3148921579770861,1.95,1.3762338226719628,0.0007093515571926236,0.0367137396533999,0.8164760684324718,1,0.44476388651770304,0.4232886779000162
+144,8,0.39831459891943644,1.9,1.3773359067398239,0.0007073974900683477,0.03656165086591384,0.8051424911397149,1,0.49950346837529525,0.4950440385643945
+144,9,0.3615110648085367,1.9,1.3760277764020408,0.000707841598549724,0.03644784300158217,0.804937318646209,1,0.5382997649015471,0.4539705294930595
+144,10,0.4026048748619852,1.8499999999999999,1.3768679726935362,0.0007058464005775709,0.036650731917944615,0.793028763872401,1,0.5449223021189701,0.48211984671465735
+144,11,0.38033495316849575,1.8499999999999999,1.3787937717820045,0.0007043704871798435,0.03657456300769658,0.7933441909364345,1,0.5825941488270832,0.4576576454588748
+144,12,0.3861788663640696,1.7999999999999998,1.3793528497122867,0.0007028179251133651,0.03667869878171955,0.780872560484196,1,0.6317409245608286,0.41160832179912704
+144,13,0.3953492638595906,1.8499999999999999,1.3714267691243736,0.0007060856106841038,0.036604825131856436,0.7921343313322714,1,0.6800362227746605,0.377782582499088
+144,14,0.4075137170928851,1.9,1.3804079148784922,0.0007028215861647608,0.036474019700791865,0.8056225676693503,1,0.7192247447011673,0.3660793973747273
+144,15,0.4874963933259629,1.95,1.3823126020272896,0.0007020243462541405,0.03668150502758432,0.8173829911865822,1,0.7800740717585292,0.4182225487418376
+144,16,0.4723001272171996,1.95,1.3718287475742101,0.0007015081828542333,0.03645704479645846,0.8158127216804317,1,0.8094280161987936,0.42842973579227384
+144,17,0.5095691947887411,2.0,1.374691948267318,0.0006975733287604992,0.03624078073684065,0.8272250770598802,1,0.8320266158127619,0.4558618282121209
+144,18,0.4867426541737665,2.0,1.376089748370183,0.0007010589611046901,0.03620647501015571,0.8274257599679364,1,0.8721028459135352,0.42633838602784124
+144,19,0.564401157939693,1.95,1.374688586084474,0.0007008405066466682,0.036348633062369365,0.8162418593135291,1,0.9320638836441542,0.4719186816067713
+144,20,0.5418790650727348,1.95,1.3763053521896806,0.0006993905685525215,0.03656075336104553,0.8164838013295955,1,0.9561604964068477,0.4647162216999853
+144,21,0.5790415344996387,1.9,1.3772240947129664,0.0006981110795569109,0.03652474461409947,0.8051220345000063,1,0.972427575986808,0.5002350136830515
+144,22,0.5530429536947639,1.9,1.3779974512646938,0.0007011016109274586,0.03634180679633492,0.8052442839194716,1,1.0,0.47680984564921264
+144,23,0.5705920059308931,1.8499999999999999,1.3764911121690833,0.0007009962676729919,0.03636202111125366,0.7929653088611873,1,1.0,0.5019733531029769
+144,24,0.5775961924945783,1.9,1.376916338130902,0.0006993197295481454,0.03653938779842192,0.8050741221371054,1,1.0,0.5253206416485939
+144,25,0.5587270014114809,1.95,1.3773248895168986,0.0006978950046669717,0.03651000452865003,0.8166360695816659,1,1.0,0.49575667137160295
+144,26,0.5754795590507217,2.0,1.376145364302221,0.0006976794353199733,0.03651552071638672,0.8274327362461719,1,1.0,0.5182651968357389
+144,27,0.6211338561716676,2.0,1.3762553122829775,0.0006963802576898459,0.036455569320971035,0.8274480639245954,1,1.0,0.5704461872388918
+144,28,0.5794082550246062,2.0,1.3784494069399753,0.0006962662572502704,0.03648122963271191,0.827761074318278,1,1.0,0.564694183415354
+144,29,0.6328922426923245,1.95,1.3770890507549494,0.000695742654567978,0.03650552514911169,0.816600107381225,1,1.0,0.6096408089744145
+144,30,0.6528180017406214,1.95,1.3640589414376219,0.0006845730226752579,0.03588385386883535,0.8146372320847136,1,1.0,0.6760600058020713
+144,31,0.6695547782121777,2.0,1.3654114057442066,0.000685081051931847,0.03613136784558289,0.8258910437367498,1,1.0,0.7318492607072586
+144,32,0.689228539464079,2.0,1.3664400060125022,0.0006860596022671965,0.03609970352246852,0.8260391829964813,1,1.0,0.7974284648802633
+144,33,0.6394714019701091,2.0,1.36628876459087,0.0006865242003095864,0.03635178160025472,0.8260175823039221,1,1.0,0.7649046732336972
+144,34,0.6311782115086814,1.95,1.3641299792505466,0.0006846942487496906,0.03628205092060049,0.8146479954065631,1,1.0,0.7372607050289379
+144,35,0.6399042077076675,2.0,1.361196239585748,0.0006823961156127526,0.035612967723707534,0.8252833166547026,1,1.0,0.7330140256922252
+144,36,0.6473432650017247,2.0,1.3630849713672153,0.0006842796677242781,0.035703874975420234,0.8255560295517274,1,1.0,0.7578108833390821
+144,37,0.7001238035536197,2.0,1.3635915009778445,0.0006857655424571828,0.0358066467955827,0.8256293923391272,1,1.0,0.8337460118453985
+144,38,0.6533319517395584,2.0,1.3631825490706224,0.0007178163341399567,0.03648958905356149,0.8255797402151126,1,1.0,0.8111065057985279
+144,39,0.6520387673213442,1.95,1.3623719493378699,0.000722093522531575,0.03647862846575481,0.8143936985057437,1,1.0,0.8067958910711474
+144,40,0.7096093529564638,2.0,1.3606319197607362,0.0007264648274556361,0.036462942825088426,0.8252146449149408,1,1.0,0.8653645098548791
+144,41,0.6677484794352146,2.0,1.3624171806257726,0.0007207850118119164,0.03659095148022661,0.8254703567436977,1,1.0,0.8591615981173824
+144,42,0.7055643405856449,1.95,1.3611906207892002,0.0007238832152740716,0.036386806655618956,0.8142156080216186,1,1.0,0.8852144686188161
+144,43,0.6878228310264677,1.95,1.3587135109909012,0.0007263295362051228,0.03651236951382812,0.8138413487755232,1,1.0,0.8927427700882254
+144,44,0.7339452068442962,2.0,1.3654767511751622,0.000721276425478778,0.03649277895466926,0.8259108486252625,1,1.0,0.9464840228143206
+144,45,0.7061684411227346,2.0,1.366920567255085,0.0007162789213325239,0.03648531467981935,0.8261169101294488,1,1.0,0.9538948037424485
+144,46,0.7379465050390626,1.95,1.372250000600073,0.0007128114069640157,0.036532369072654246,0.8158794076879989,1,1.0,0.993155016796875
+144,47,0.75,1.95,1.3701070599603848,0.0007143466900653978,0.0363684006530732,0.8155577386715198,1,1.0,1.0
+144,48,0.72,2.0,1.3707228556038822,0.000710497591033279,0.036532563969447165,0.8266607664097256,1,1.0,1.0
+144,49,0.75,1.95,1.3756087319569337,0.0007076789663347451,0.036384378674197033,0.8163818830474743,1,1.0,1.0
+145,0,0.16273965648338307,1.95,1.3674208899081302,0.000710518249371322,0.03618306419823325,0.815152179794702,1,0.1275069871519457,0.23912287207534927
+145,1,0.19208646601147328,1.9,1.367293807339582,0.0007093043895115473,0.03644242252889928,0.8035627784203825,1,0.17014594284802806,0.2800936295742068
+145,2,0.17786774377175998,1.9,1.3666719508922645,0.0007083513471590255,0.03635774620531614,0.8034642990855569,1,0.1823834054537528,0.28304793863419625
+145,3,0.24078305406398043,1.95,1.366421455469616,0.0007087725831439042,0.03648664114838062,0.8150010120710318,1,0.22968351810750262,0.3296988227365979
+145,4,0.25472247599131986,1.95,1.3850528074564257,0.000701559746327193,0.036739372190361684,0.817791522139732,1,0.2655230007538073,0.3617109189659899
+145,5,0.22760271144358057,2.0,1.3851281070761932,0.0007011831426193826,0.03671146659776683,0.8287125870178847,1,0.2960161189068971,0.33065421293607233
+145,6,0.2811354787213498,1.95,1.3855261500357907,0.0007009491387005395,0.0364058423591684,0.8178618617041084,1,0.3258383911585681,0.36933374085974185
+145,7,0.26362858330904043,1.95,1.3855373567419758,0.0007006754251211895,0.03676832515466423,0.8178634495458307,1,0.3755405673821521,0.3447078545205986
+145,8,0.27076191417397016,2.0,1.3858425736484343,0.0007005436652800413,0.03666427401974834,0.828813798867118,1,0.4190045803135094,0.31053360682855463
+145,9,0.2873352974497709,2.0,1.3766919571374252,0.0007021066608117969,0.03633355427758768,0.8275120329201255,1,0.4784373245383625,0.2865345587814196
+145,10,0.2884170872287256,2.0,1.3787857391168832,0.0007012282203900822,0.036549028014605286,0.8278104353757955,1,0.504419102626944,0.25549815392649333
+145,11,0.3673798114087177,2.0,1.3803283975782543,0.0007004700826596371,0.036647332923700524,0.8280299993060632,1,0.5608994877333815,0.3100667210512171
+145,12,0.3711328756151995,2.0,1.3794794573837286,0.0007004333121344232,0.036570096380671276,0.8279090692028568,1,0.5899310725482545,0.31720148865299225
+145,13,0.42117521673541125,2.0,1.379660024950728,0.0006993467630558578,0.03652802583901485,0.827934484582599,1,0.6457476840411318,0.3762538103965285
+145,14,0.3962736380712437,2.0,1.3771457255088386,0.0007028007805501475,0.036554589667058754,0.8275769904099032,1,0.6963816789169867,0.3590698883481633
+145,15,0.4083999539845629,1.95,1.3790420877614054,0.0007016192981471802,0.03623312101867545,0.8168941799424035,1,0.7469653423969461,0.3320460567526148
+145,16,0.45602780398431436,2.0,1.3801944721608725,0.0007005728856723595,0.03664652256395334,0.8280109572618406,1,0.7780515751129559,0.34935724646377353
+145,17,0.4429762193582213,2.0,1.3808919992202175,0.0006995811317179466,0.03666475408964204,0.8281099861955983,1,0.7943994976370189,0.35072140101137916
+145,18,0.45360120455208963,2.0,1.3813777912441814,0.0007013966484893477,0.036545489560705226,0.8281796413645626,1,0.8117632892338158,0.3629862961952109
+145,19,0.49562951202402433,2.0,1.3220411984527232,0.0007546849083448633,0.03644219614884039,0.819586804899486,1,0.8364843655849773,0.4034525526334446
+145,20,0.5158468444161696,2.0,1.3783267775032524,0.000695695217861756,0.03649581272122235,0.8277434271659548,1,0.8644258020535058,0.43358841198255715
+145,21,0.5582525926632897,2.0,1.3796970476798194,0.0006978826345173563,0.03653938006423219,0.8279393415917897,1,0.9069292032416714,0.48493637122207056
+145,22,0.5720773136542429,2.0,1.380847473396278,0.0006975352013361394,0.03650478022269852,0.828103065657419,1,0.9385569258736088,0.5221818110159975
+145,23,0.6273622721750329,2.0,1.3818306881844207,0.0006994347267216646,0.03667233590156375,0.8282435199803053,1,1.0,0.5912075739167764
+145,24,0.6257316137199866,2.0,1.3826179340544436,0.0006988567522028835,0.03636548782438994,0.8283553172860174,1,1.0,0.619105379066622
+145,25,0.5848385649941386,2.0,1.3635629491171048,0.0006856317765752233,0.03585625174441881,0.825625243301973,1,1.0,0.5827952166471286
+145,26,0.6179914930385851,1.95,1.3831580517885793,0.0007001029163409629,0.03670655942171338,0.8175085826422476,1,1.0,0.5933049767952837
+145,27,0.6487509798487014,1.95,1.3833887086637144,0.0007016073859904394,0.036658176268314,0.8175434402615822,1,1.0,0.6625032661623379
+145,28,0.6252879392524036,1.95,1.3600615152911786,0.0006824891239332769,0.03584339699477779,0.814032216807575,1,1.0,0.6842931308413449
+145,29,0.6258410228960857,1.9,1.3601405064137266,0.0006837376613522435,0.035540183287820076,0.8024230734468948,1,1.0,0.6861367429869523
+145,30,0.6720872986895268,1.95,1.3590372580462113,0.0006845617684130886,0.03610899104071939,0.8138777389438282,1,1.0,0.7402909956317555
+145,31,0.6221081766457428,1.95,1.3603326549428965,0.0006873010943535753,0.03605520474435788,0.8140747161104064,1,1.0,0.7070272554858094
+145,32,0.6329753440781034,1.9,1.3583451263111281,0.0006849972097181314,0.036280338197568214,0.8021386786292799,1,1.0,0.709917813593678
+145,33,0.6345816043833806,1.95,1.3570757999674767,0.000686167388285598,0.03577269082395354,0.8135809198695891,0,1.0,0.7152720146112685
+145,34,0.6147117644425596,2.0,1.338697738147324,0.0006751140093051377,0.035566061636569515,0.8220133321278431,0,1.0,0.7157058814751986
+145,35,0.6204909843871658,2.0,1.3359798019010887,0.0006737985879840494,0.03529470400813561,0.8216149442271073,0,0.9953767162994643,0.7411343262246
+145,36,0.6705373199994819,2.0,1.3318060740284507,0.000671516013838667,0.035637674547262965,0.8210017344688634,0,1.0,0.7351243999982726
+145,37,0.625253966335221,2.0,1.3393163045594263,0.0006714094082671371,0.035820791697117,0.8221027313621271,0,1.0,0.7508465544507367
+145,38,0.6654582127725881,1.95,1.335112951891582,0.0006689387321313863,0.035426986674987226,0.8102216176141377,0,1.0,0.7515273759086271
+145,39,0.6664986354440572,1.95,1.3345202139331398,0.0006673824945701677,0.03488362365614098,0.8101299811973817,0,1.0,0.7549954514801903
+145,40,0.6330683029078925,2.0,1.334223540082909,0.0006668610070036828,0.035441015253607815,0.8213553584607881,0,0.9995094612134655,0.7775483947416878
+145,41,0.6570663194095959,1.95,1.3315889193347095,0.00066521848753369,0.03501299956285937,0.8096780143467255,0,1.0,0.790221064698653
+145,42,0.6613892120253997,1.95,1.3379544191967019,0.0006738798752619617,0.03556642421694206,0.8106596606245972,0,1.0,0.8046307067513322
+145,43,0.6860627673380932,2.0,1.374463603479994,0.000692369354801453,0.0361791298457647,0.8271909509579193,0,1.0,0.7868758911269774
+145,44,0.6805332624441445,2.0,1.3380957908490416,0.0006730733362439788,0.03545971222370714,0.8219246483402465,0,1.0,0.8017775414804812
+145,45,0.6403960570773969,2.0,1.3790241317753402,0.000696036066843201,0.03635796844929048,0.8278429333296579,0,1.0,0.8013201902579896
+145,46,0.6501964443920486,1.95,1.3814403921430753,0.0006969756526515225,0.036396891265470625,0.8172512540305097,0,1.0,0.8339881479734953
+145,47,0.6768805388913786,2.0,1.3830192319219639,0.000697880633211404,0.0364947384692307,0.8284120899148524,0,1.0,0.8562684629712616
+145,48,0.7039997121517882,2.0,1.3820669551753098,0.0006973127076950717,0.03651793337655198,0.8282765241681894,0,1.0,0.8799990405059606
+145,49,0.7043186842051419,2.0,1.3815999826929322,0.0006968959482145876,0.03647849281473618,0.828209975785811,0,1.0,0.8810622806838061
+146,0,0.18378821584418897,2.0,1.3771293002777318,0.0007065761908773918,0.03622001996796821,0.8275757240871727,0,0.20150385218865258,0.17728891656242646
+146,1,0.20007862144957667,1.95,1.3592483917691192,0.0006865985026650364,0.03573291057885447,0.8139103364917666,0,0.27108607928794803,0.17214729911465812
+146,2,0.1914071246915914,2.0,1.3576354346614583,0.000685840113420241,0.036047444148174214,0.82477028211462,0,0.29245095056267495,0.18142248155507143
+146,3,0.24399527139614527,2.0,1.358294996596822,0.0006851968151909375,0.036241867094978536,0.8248653985351798,0,0.3694973929564995,0.18732104737848485
+146,4,0.2395820426932204,2.0,1.3572083813709488,0.0006846559762073716,0.036067077447121725,0.8247082116234586,0,0.40641506554724866,0.19005338824773635
+146,5,0.2785583037764109,2.0,1.3488319257895665,0.000700414220151182,0.035964254020376264,0.8234985582889378,0,0.46285207837616843,0.17805824141981177
+146,6,0.24920142560556305,2.0,1.3476454933933577,0.0007002796887657988,0.03599423936887295,0.823326006573316,0,0.479949448004188,0.19073882134629289
+146,7,0.2874679493577115,1.95,1.3546040429491215,0.0006979623144863805,0.03582923978735379,0.8132093285991728,0,0.5037805915685908,0.21985237576758387
+146,8,0.3054258732110896,1.95,1.3374687469762974,0.0007661347142518523,0.03680253787791572,0.8106134306878338,0,0.5291188675171942,0.24592775401403977
+146,9,0.35744606941179485,2.0,1.3426488566476618,0.000758728524773431,0.03667120851846318,0.8226150780412578,0,0.5905487716261224,0.27075520253781976
+146,10,0.3529343287761184,2.0,1.342558909089425,0.0007585806936014035,0.03679785168650164,0.8226019094112214,0,0.6205344216877889,0.2824018670033427
+146,11,0.3993426727763346,2.0,0.8096464648881057,0.000884722744456319,0.030960544166269144,0.7313368724139292,0,0.6967472098795325,0.26881262941507206
+146,12,0.43212028806344405,2.0,0.8221249629540033,0.000955633129853986,0.031237388682800425,0.7338093025065671,0,0.7553034546055287,0.2999963540707753
+146,13,0.4782742324415809,2.0,0.8320623891878912,0.001017997058967479,0.032799350776968786,0.7357701456922743,0,0.8634337723093708,0.276335745059442
+146,14,0.42349630089052615,2.0,1.3209806125224328,0.0006627428417940926,0.03497875344627878,0.8194027190467108,0,0.8536230193718389,0.2734903104726352
+146,15,0.4273935956691848,1.95,1.320453218733448,0.0006620628042627846,0.03525219035166109,0.8079551086157203,0,0.8551559300788737,0.284437412125451
+146,16,0.4881168256289947,2.0,1.3178945986306607,0.0006604781243619293,0.03494093897048793,0.8189449230248687,0,0.9061533258240191,0.2855183176646237
+146,17,0.44800565534640346,2.0,1.3266961306402232,0.0006697723258396769,0.03503382801148517,0.8202490416460557,0,0.9058695334470673,0.2855261398919217
+146,18,0.5268864270381355,1.95,1.3256005546116214,0.0006684767404617352,0.03516415232406528,0.8087545063676022,0,0.9962949594968916,0.2612281441312626
+146,19,0.5207507265109782,1.95,1.3217317211403365,0.0006665960336491839,0.03481895567254854,0.8081548132887593,0,1.0,0.23583575503659376
+146,20,0.4700103579153881,2.0,1.3192889155840346,0.000665462115150634,0.035149666940618045,0.8191530489087931,0,1.0,0.2333678597179602
+146,21,0.4982457560349283,1.95,1.3196344217361895,0.0006649540910279394,0.03516582708909813,0.8078289267439057,0,1.0,0.26081918678309424
+146,22,0.4807553683699393,1.95,1.32715509218861,0.0006651994127015834,0.03499129474032825,0.8089938194729837,0,1.0,0.26918456123313106
+146,23,0.5077998755782994,2.0,1.3257617671522788,0.0006643549588714022,0.03509313699648524,0.8201096389124454,0,1.0,0.2926662519276646
+146,24,0.5316238640417934,2.0,1.334550099614345,0.000667202748474222,0.03519468803751509,0.8214033700189632,0,1.0,0.3054128801393112
+146,25,0.5322084732228622,2.0,1.3412280722807353,0.0006731110972735516,0.03531429331460535,0.8223826520471365,0,1.0,0.3073615774095407
+146,26,0.53449218757787,2.0,1.3464291209984895,0.0006790382401446248,0.03540008672711708,0.8231428185759784,0,1.0,0.28164062525956657
+146,27,0.5249928824586627,2.0,1.3445077942394343,0.0006782459413657288,0.035775901078274205,0.8228627096379317,1,1.0,0.24997627486220897
+146,28,0.47788481688582896,2.0,1.3329671922403334,0.0007388672556545583,0.03599444526861166,0.8211920863339885,1,1.0,0.22628272295276305
+146,29,0.5158832220239299,1.95,1.3417018128848663,0.0007313009327502251,0.036394074879746434,0.811251766251257,0,1.0,0.25294407341309966
+146,30,0.502716687331868,1.95,1.3662965209736708,0.0006862962118331256,0.03621934013738787,0.8149753960601877,0,1.0,0.2757222911062266
+146,31,0.5119219339471461,2.0,1.3697444842112452,0.0006899297644282297,0.03613714663948727,0.8265146297922649,0,1.0,0.30640644649048693
+146,32,0.537792057032913,2.0,1.3726362661761797,0.0006936202979004548,0.03629804141995374,0.8269299421173627,0,1.0,0.2926401901097098
+146,33,0.5293767761322107,2.0,1.3725831353162712,0.0006926789783623244,0.03606296926882757,0.8269220686191117,0,1.0,0.2979225871073688
+146,34,0.5337925877184403,2.0,1.3745119780572956,0.0006927605999087605,0.036197437699859766,0.8271979776550873,0,1.0,0.2793086257281343
+146,35,0.48675927313487577,2.0,1.3742645033943204,0.0006922373491826588,0.036424200624007,0.8271624507824761,0,1.0,0.2891975771162525
+146,36,0.48678168971730745,1.95,1.3732138900443371,0.0006916155556317844,0.03643459021334094,0.8160177949709939,0,1.0,0.2892722990576915
+146,37,0.5310256056934978,2.0,1.371730581976889,0.0006907567803565534,0.03613882987698294,0.8267994649772831,0,1.0,0.3034186856449925
+146,38,0.5393573209302731,2.0,1.3736983552231616,0.0006914777395422753,0.03630438025442736,0.8270812792938744,0,1.0,0.2978577364342436
+146,39,0.5340589294767197,2.0,1.3734012987129285,0.0006911414285794574,0.036061773263230235,0.8270386945708048,0,1.0,0.28019643158906576
+146,40,0.5258867484663564,2.0,1.3728850558005026,0.0006908981797576802,0.036157467369099895,0.8269647661630793,0,1.0,0.28628916155452133
+146,41,0.5303858877063521,2.0,1.3740929216774225,0.000691881722469804,0.036368074232162144,0.827137817575897,0,1.0,0.26795295902117344
+146,42,0.5182551081766702,2.0,1.3735148291062942,0.0006918689638073294,0.03642531331075332,0.8270551421275527,0,1.0,0.26085036058890065
+146,43,0.4798529699210242,2.0,1.3743240308057452,0.0006930485306072554,0.036445696963977404,0.8271711928685975,0,0.9910546069630145,0.2781037571193947
+146,44,0.48806516084491225,1.95,1.3735271298775111,0.0006922277466473309,0.03627685285494273,0.8160650016578108,0,1.0,0.2935505361497075
+146,45,0.4887327111015338,2.0,1.3723082562516182,0.0006911941011934839,0.03633587430278476,0.8268822987390247,0,1.0,0.2957757036717794
+146,46,0.5106569250336398,2.0,1.3716991155116436,0.0006904830860023721,0.036046138841074604,0.8267948804778944,0,1.0,0.3021897501121327
+146,47,0.5318510807212334,2.0,1.374954337281737,0.0006922705283836097,0.03642172018403074,0.8272610599244702,0,1.0,0.2728369357374447
+146,48,0.5272591265840331,2.0,1.374473970761553,0.000692112916611383,0.036399882569582834,0.8271923596019843,0,1.0,0.25753042194677683
+146,49,0.5025008615033929,2.0,1.3738587079589055,0.0006920027400986762,0.03642123399144058,0.8271043615455387,0,1.0,0.27500287167797627
+147,0,0.13136833370950776,1.95,1.3668023067021677,0.0007092552849003718,0.0361398973622565,0.8150585733071456,1,0.12256073152725752,0.2078134703286825
+147,1,0.20173833833487148,1.9,1.3661677465601156,0.0007098355688773914,0.03642171768428501,0.8033851371780595,1,0.17149126292841288,0.2771394438783544
+147,2,0.18110934458693465,1.9,1.365398301917105,0.0007106484783236197,0.036352491163580886,0.8032638262151826,1,0.1723936114631665,0.30717300000556014
+147,3,0.19622907163312697,1.8499999999999999,1.365114216272055,0.0007111653647471949,0.036484995910433755,0.7910946840950908,1,0.19823854451318287,0.3231121794261794
+147,4,0.23092759831323859,1.9,1.36430825837065,0.0007119982358215053,0.03640582000943821,0.8030919354299076,1,0.22231132802535447,0.34001022367698935
+147,5,0.20749298305811034,1.9,1.3861757936598476,0.0007003226615081634,0.03664929865539214,0.806523415995071,1,0.25775173068103086,0.31464096928565993
+147,6,0.25836642751809924,1.8499999999999999,1.3862109833431704,0.0007002561216349457,0.03656047663733915,0.7945562478306972,1,0.2928653757035935,0.33740092412220624
+147,7,0.3082434697006931,1.8499999999999999,1.3862568443642975,0.0007002101696850932,0.036770671852503954,0.7945637189258268,1,0.3425331177448183,0.40410074200921936
+147,8,0.3432465801319649,1.8499999999999999,1.3778531048738818,0.0007008761641594078,0.03650887341788109,0.7931887803892274,1,0.38883282502279143,0.45904483374282773
+147,9,0.32804947712452565,1.8499999999999999,1.3773527873975482,0.0007012217303900334,0.036491381532245605,0.7931068095085922,1,0.4114658654619531,0.4782104364658147
+147,10,0.39102322505799536,1.9,1.3793146393858255,0.000699115505348619,0.03651133863769499,0.8054501476716713,1,0.44415109163953537,0.5445426280072707
+147,11,0.3706060779936034,1.9,1.3787191001576313,0.000699166298494004,0.03645995136235512,0.805356825499404,1,0.4703637250298335,0.5415352932722333
+147,12,0.3813026762260887,1.8499999999999999,1.379034391025952,0.0007007758724109922,0.03657636302843938,0.7933824589766111,1,0.5069436371644004,0.5284174045344284
+147,13,0.38209037368218246,1.9,1.3789150804431922,0.0007023565663597086,0.036442555145887914,0.8053885450568539,1,0.5647399162030144,0.48731469066992217
+147,14,0.43894804731524567,1.95,1.3788940723749619,0.0007009966681730788,0.03645961895444363,0.8168718527656578,1,0.5975112383527748,0.5331451732471193
+147,15,0.4098611897265187,1.95,1.3812486828126094,0.0007004951355963238,0.03640111168543321,0.8172236715924743,1,0.6249614793947532,0.4995886598953913
+147,16,0.4583261451100414,1.9,1.3723384454519474,0.0006932362183986741,0.03625071184890737,0.8043527962657354,1,0.6486213426114498,0.5295920268848715
+147,17,0.43453722741458967,1.9,1.3706911221740852,0.0006927071686678322,0.03624772153686234,0.804093261370796,1,0.6930336337587603,0.49107924637028516
+147,18,0.45275871847696003,1.8499999999999999,1.3722327191095505,0.0006956418984161541,0.03639106945051416,0.79226356815004,1,0.7067841953111755,0.5001501345082994
+147,19,0.524622551054851,1.9,1.3711925497957391,0.0006940626055172326,0.03633945206566927,0.8041726647663126,1,0.7697852983401483,0.5556947723959721
+147,20,0.5581018008419238,1.9,1.3749067341992685,0.0006943877586936822,0.03636585675493283,0.8047570122283757,1,0.804467081764842,0.6210498937866233
+147,21,0.5417106201388373,1.9,1.3575180918584357,0.0006817922678303174,0.03583037780323996,0.802006367518964,1,0.8189478058636547,0.6471049926445849
+147,22,0.5475928907129083,1.95,1.357803622377015,0.0006834330346857861,0.03558248856976036,0.8136904522777542,1,0.835995247358897,0.6439826392311648
+147,23,0.5909194010802793,2.0,1.3582560004972142,0.0006853520949776843,0.035648505065042545,0.8248598098561679,1,0.8672349214541248,0.6800847749954311
+147,24,0.5881324032772226,2.0,1.3654630368921101,0.0006873221993338701,0.035799690049065525,0.8258991124232402,1,0.9027588578969143,0.6900962003948562
+147,25,0.6047173775501425,2.0,1.3649592147336,0.0006882039733713602,0.03588985989770575,0.8258269097195389,1,0.9293208109904996,0.7099635105131423
+147,26,0.6086214174988179,2.0,1.3641338997419301,0.0006888805196362002,0.035953197367626685,0.8257083618364058,1,0.9770089586466705,0.6927261134671656
+147,27,0.6771571809941713,2.0,1.3624576613920927,0.0006869704577529467,0.03629293679914455,0.8254664454734109,1,1.0,0.7571906033139043
+147,28,0.6299626150369667,2.0,1.3632428454764032,0.0006894225604211742,0.036312836626093886,0.8255802454825323,1,1.0,0.7332087167898889
+147,29,0.6694474614307089,1.95,1.361464750697217,0.0006872418865362423,0.03595477342266882,0.814245987976955,1,1.0,0.7648248714356961
+147,30,0.6530318761134959,1.95,1.3672977338594845,0.0006886117488305774,0.03601348284661364,0.815127019724084,1,1.0,0.7767729203783195
+147,31,0.6353680948715221,2.0,1.366563613130149,0.0006892309863278925,0.03611082723647059,0.8260578558026237,1,1.0,0.7512269829050736
+147,32,0.6456950871703019,2.0,1.3652996126885393,0.0006876471336163463,0.035992589861612787,0.8258757058976705,0,1.0,0.7523169572343394
+147,33,0.6718700423412123,2.0,1.33806403717199,0.0006742015307357568,0.03524562513374403,0.8219203309428165,0,1.0,0.7395668078040408
+147,34,0.66278594061912,2.0,1.3447768802934423,0.0006742321954711162,0.03511257630767135,0.8229007582408172,0,1.0,0.7092864687303997
+147,35,0.6568213627511224,2.0,1.349619861282455,0.0006750065058622374,0.03562931894198125,0.8236056721724045,0,1.0,0.7227378758370742
+147,36,0.6171072277044973,2.0,1.3500086768353983,0.0006748847332752923,0.035989174086634435,0.8236621165702197,0,1.0,0.7236907590149909
+147,37,0.6537566955049071,1.95,1.346633075407171,0.0006725816508074351,0.03593786586703279,0.8119877660524941,0,1.0,0.6791889850163569
+147,38,0.6473911669919622,1.95,1.349539109283969,0.0006735908340615405,0.03521580770453964,0.8124313171391747,1,1.0,0.6579705566398739
+147,39,0.5961525026230332,2.0,1.3653650170461142,0.0006853231082496491,0.03613354995823151,0.8258844427868682,1,1.0,0.6205083420767773
+147,40,0.640896735311093,1.95,1.3637398362417419,0.0006839858996601232,0.036325563351977966,0.814588863922397,1,1.0,0.6696557843703099
+147,41,0.6531699419088357,1.95,1.3683275636005967,0.0006874219729645207,0.0357463804196622,0.8152818011624189,1,1.0,0.7105664730294522
+147,42,0.6264170663377981,2.0,1.3721436690229676,0.00069151484618422,0.03628968246827095,0.826858828982815,1,1.0,0.6880568877926603
+147,43,0.6101837317843668,1.95,1.3731660132173162,0.0006913409401772627,0.036039739224855635,0.8160105245223256,1,1.0,0.6672791059478892
+147,44,0.6029090075489728,2.0,1.3708217697274945,0.0006899598659286612,0.0364760790482488,0.8266690541153418,1,1.0,0.6430300251632425
+147,45,0.5967630392882314,2.0,1.369123813614336,0.0006890408531979879,0.0363862159393749,0.8264253598957785,1,1.0,0.6225434642941046
+147,46,0.6532735298603309,2.0,1.3668914909762595,0.0006877815915346439,0.03640754551269536,0.826104545884817,1,1.0,0.6775784328677698
+147,47,0.606446806957174,2.0,1.3683721908509314,0.0006878145845714517,0.03616253932820743,0.8263171638176514,1,1.0,0.6548226898572467
+147,48,0.6439612411929786,1.95,1.3660886784133757,0.0006863383406081426,0.03588962748917627,0.8149440660317778,1,1.0,0.6798708039765952
+147,49,0.6201761441463803,1.95,1.3694985631790084,0.0006908737741248307,0.036431779546890655,0.8154591244289299,1,1.0,0.6672538138212678
+148,0,0.13489460590400995,1.9,1.3650812374044599,0.0007095931156066938,0.03611299691751161,0.8032133817343192,1,0.1241698828478228,0.21742217588293616
+148,1,0.17992367322989086,1.8499999999999999,1.3643947488638044,0.0007101750515447563,0.036389354345001554,0.7909754297507411,1,0.1624052094136338,0.2498719648814578
+148,2,0.23254339186147993,1.8499999999999999,1.363679595989309,0.0007092038564218708,0.03637293312613541,0.7908568452863132,1,0.22545314892480112,0.3078737743051982
+148,3,0.2043645583312117,1.8499999999999999,1.3862299254070356,0.0007001314256882906,0.036509909398198995,0.7945592991424293,1,0.28702495184866994,0.2651819253058124
+148,4,0.23179158602643565,1.7999999999999998,1.3862296123462579,0.0007001288503643314,0.03678655947939641,0.7820460577913424,1,0.3208135276073611,0.278220583278304
+148,5,0.2901182688915518,1.7999999999999998,1.3861727663312888,0.0007000913602213582,0.036460009243405325,0.7820363554507275,1,0.35992241862247476,0.32049767147520625
+148,6,0.2480307143233907,1.7999999999999998,1.3862285794841347,0.0007001761649773166,0.03672110360896394,0.7820458978694828,1,0.3799704710644262,0.28680841965873394
+148,7,0.25000252536334644,1.7499999999999998,1.386219775883756,0.0007001326306204563,0.03671709744176367,0.7689905463009907,1,0.41388176983305824,0.24816605810041042
+148,8,0.30868898273468004,1.7999999999999998,1.3784624716014404,0.0006991798579591538,0.03640854747201046,0.7807189235978301,1,0.4468230293024301,0.29986590337902674
+148,9,0.28874514542146146,1.7999999999999998,1.378632242133805,0.0006981845623059231,0.03658084867341763,0.7807476456484143,1,0.4827794071294906,0.2854446085655507
+148,10,0.2960146502835028,1.8499999999999999,1.3801272955003285,0.0006979567382240595,0.0365167944174398,0.7935606341206857,1,0.5249317852463729,0.25347312061651217
+148,11,0.37674740515761557,1.9,1.381319245583552,0.0006978427907492317,0.03653920548002641,0.8057636791705342,1,0.5720894027188523,0.3263721469002488
+148,12,0.4175664549775329,1.9,1.3806541472489227,0.0006976407440725894,0.03651674969935055,0.8056595011405605,1,0.6240055343695747,0.39321413743234346
+148,13,0.3939679961373817,1.9,1.377134524995736,0.0007116068914209893,0.03669793350020201,0.8051122157756143,1,0.6339908962968175,0.40123879206218227
+148,14,0.38133828924972646,1.8499999999999999,1.3808777600276252,0.0006968057608698511,0.03654996028977004,0.7936831728059205,1,0.662159428492989,0.3549150595084361
+148,15,0.4516272356223057,1.9,1.371101273978253,0.0007151709666040902,0.03668850998523737,0.8041649388742445,1,0.6941975083598904,0.4131607742611652
+148,16,0.4687691173171376,1.9,1.3797763356234023,0.0006963989543158358,0.03647416152693589,0.8055216342355725,1,0.7297218826868965,0.4562678808079299
+148,17,0.4910221451272934,1.95,1.3789515641243546,0.0006955765820534983,0.03621635260828231,0.8168788313759039,1,0.7527015504766348,0.4998050831221315
+148,18,0.5137426584132174,1.95,1.3781746456712836,0.0006947455191944263,0.03630004078849948,0.8167623364799174,1,0.7835093243083474,0.534463095632928
+148,19,0.5308687465971703,1.95,1.377043167800875,0.0006937987190909034,0.03646860571084319,0.8165926533674157,1,0.8134586777079483,0.5516175850466366
+148,20,0.5267186407413491,2.0,1.3838767456042202,0.0007008558909517598,0.036551994406575014,0.8285347926615821,1,0.8355456797380088,0.575001229487152
+148,21,0.5232836269878934,2.0,1.3844666067810714,0.000700319110267094,0.036494415349481765,0.8286184225298704,1,0.8753556849754195,0.5438045099924187
+148,22,0.5296170585735782,2.0,1.3838059270625358,0.0007002867609124903,0.03662067381466307,0.8285245698847888,1,0.9172840297097052,0.5090114889656537
+148,23,0.6131716075463008,2.0,1.3830269625755363,0.0007002457187762921,0.0367046134428071,0.8284138611577517,1,0.9842292989880688,0.564932959836911
+148,24,0.5856182256990863,2.0,1.3834654877628898,0.0006995502199148605,0.03639351187502189,0.8284759883867601,1,0.9742804100268992,0.5863535389610888
+148,25,0.5782872999291161,1.95,1.3839588413390524,0.0006992134305162604,0.03656667168587331,0.8176277554325341,1,1.0,0.5609576664303868
+148,26,0.6362121210067928,2.0,1.3830486721218138,0.0006989242734760062,0.036538778287901266,0.8284165713578882,1,1.0,0.6207070700226424
+148,27,0.5889295889826599,2.0,1.3550415087380407,0.0006964376450228334,0.03631503330457107,0.8243981493519733,1,1.0,0.5964319632755328
+148,28,0.6273104233052816,1.95,1.3833934334839846,0.0006984636351733185,0.03654074816425944,0.8175432071622826,1,1.0,0.6243680776842718
+148,29,0.6380034838754673,1.95,1.352490393672584,0.0006957472730832322,0.035791215161412836,0.8128873790597189,1,1.0,0.6600116129182243
+148,30,0.6650166108618013,2.0,1.3546480163358674,0.0007039844762679224,0.03608482566117414,0.8243433634158829,1,1.0,0.7167220362060043
+148,31,0.6594161303982208,2.0,1.3560551933675171,0.0007000920734347281,0.03598886115254874,0.8245459053814904,1,1.0,0.7313871013274025
+148,32,0.6446446182152192,2.0,1.3573788957968844,0.000707006914894037,0.036326742420391675,0.8247393221031772,1,1.0,0.7488153940507308
+148,33,0.6229799810226222,2.0,1.3638705789776535,0.000703844848400447,0.03642521488657782,0.8256747708766875,1,1.0,0.7099332700754074
+148,34,0.6807303127386055,1.95,1.3614283706880252,0.0007036629871342156,0.0363608615967204,0.8142454528848144,1,1.0,0.769101042462018
+148,35,0.6812431578950745,1.95,1.3612286556393807,0.0007002115117844047,0.036145588331701936,0.814214199925595,1,1.0,0.8041438596502483
+148,36,0.7119160160547437,2.0,1.3680032078515345,0.0007221927217302533,0.036644106645387815,0.8262740719247925,1,1.0,0.8730533868491458
+148,37,0.7147191529831423,2.0,1.371653932651499,0.0007172724501571233,0.03643194954029684,0.8267960828057869,1,1.0,0.9157305099438073
+148,38,0.7219120442522537,2.0,1.3695705931888553,0.0007183419493885241,0.03670597088057962,0.8264978431744613,1,1.0,0.9397068141741788
+148,39,0.6994659586012549,2.0,1.3672085145826083,0.0007192402590721598,0.0365773460285959,0.8261591198518702,1,1.0,0.9315531953375163
+148,40,0.7298997684888723,1.95,1.3706535156777353,0.000714949864268324,0.03657926769770984,0.8156401055775392,1,1.0,0.966332561629574
+148,41,0.75,1.95,1.3677086762172492,0.0007159620323855074,0.036149982133898126,0.8151971794704176,1,1.0,1.0
+148,42,0.7010996884670262,1.95,1.370964991748295,0.0007117876442853516,0.03657267226303337,0.8156859872125887,1,1.0,0.9703322948900874
+148,43,0.6993435421679448,1.9,1.3705191350488497,0.0007162086021614076,0.036659037732263706,0.8040735721912043,1,1.0,0.9644784738931494
+148,44,0.7140143757408851,1.95,1.3691863976786893,0.0007205653868604937,0.036612311483446465,0.8154210813181418,1,1.0,0.9800479191362836
+148,45,0.72,2.0,1.3728404595619237,0.0007159087693398213,0.03674731013748826,0.8269655424383766,1,1.0,1.0
+148,46,0.72,2.0,1.3752980115048836,0.0007120189991836874,0.036565831918010695,0.8273158082940809,1,1.0,1.0
+148,47,0.6985461869741414,2.0,1.37657061038542,0.0007089298949245545,0.03669830441235987,0.8274966596843576,1,1.0,0.9618206232471378
+148,48,0.7382287875067343,1.95,1.3758541471426022,0.0007114048840299151,0.036501757705701875,0.8164197854146423,1,1.0,0.9940959583557807
+148,49,0.75,1.95,1.3739478482078646,0.0007128212991003818,0.03663096182670546,0.816134324888092,1,1.0,1.0
+149,0,0.1586308204882792,2.0,1.3642733666501843,0.0007095386678745476,0.036079211569802955,0.8257343775499826,1,0.13095408079906862,0.2208306272288392
+149,1,0.2002129060407209,1.95,1.3645841165310224,0.0007082638035914818,0.03634367733871137,0.8147236745185616,1,0.17169708225986513,0.2717802437892494
+149,2,0.18749404000136397,1.95,1.3638136015133169,0.0007090287566870934,0.036314174288477254,0.8146075688843643,1,0.20432844066346634,0.2858755457865914
+149,3,0.2523977364614061,2.0,1.3860301010132283,0.0007000194723310062,0.03641227935555525,0.8288402551593974,1,0.2447957452721096,0.348264794508541
+149,4,0.2367501954405654,2.0,1.38608407022799,0.0007000288101865214,0.03672119212306795,0.8288479139661944,1,0.25736022585578444,0.3793536836608387
+149,5,0.2966298295234776,2.0,1.3860624514970548,0.0007000102763975507,0.036740717124367675,0.8288448418733239,1,0.3049769974139938,0.41546343519293366
+149,6,0.2659130365364294,2.0,1.3767104630276767,0.0007046690376863006,0.03631353369463426,0.8275154058345111,1,0.346202847280964,0.39143965874681247
+149,7,0.3116242383778755,1.95,1.3859810616257198,0.0006999609219292259,0.0367021303317024,0.8179293229492554,1,0.3721678033882107,0.40919039007530406
+149,8,0.332582608955356,1.95,1.3757630889665529,0.0007016092537303249,0.03641051358149741,0.8164032008602691,1,0.4076297168579866,0.4317690740405381
+149,9,0.37682577497407116,1.95,1.3797928382515954,0.000697295569334591,0.036482375739954866,0.8170051561850571,1,0.44526568931155897,0.49573166416482517
+149,10,0.3386691316240422,1.95,1.3793188883014063,0.000697358302613724,0.036515518982755305,0.8169343051207952,0,0.48022070493099256,0.4552694988388174
+149,11,0.40701309502453203,1.9,1.3727065714212097,0.0007035438357498187,0.03636989564683703,0.804413964988282,0,0.5759993830892534,0.4220444726294355
+149,12,0.40015374251186264,1.9,1.3707231378305091,0.0007033924964554357,0.03633014042435826,0.8041016710352342,0,0.6192932800984885,0.44145476824155755
+149,13,0.43971717836912094,1.95,1.3139638696347686,0.0007119382013978377,0.035693565060844853,0.8069617239011473,0,0.6780217766627009,0.42836155901346856
+149,14,0.43069016719042763,1.95,1.3121080649983483,0.0007106543639539373,0.03585009256865587,0.806672071734952,0,0.6950448823412472,0.4422407141797624
+149,15,0.47241521778271045,2.0,1.3164998615172296,0.0007051127082207184,0.03590634362302919,0.8187512752909776,0,0.7541845177671032,0.43580470225289736
+149,16,0.4995466266773879,2.0,1.3144349232653871,0.0007038239165752277,0.03576813921198517,0.8184442586306564,0,0.8286230646450761,0.42699133606452505
+149,17,0.5540158788548566,2.0,1.166977709535424,0.0005304256230107293,0.030091199687646147,0.7954407275137875,0,0.9415967060711212,0.4245906547546934
+149,18,0.5377912138495768,2.0,1.1606465967882815,0.0005246889701530722,0.030086638947458628,0.7944067610011641,0,0.9601970751604284,0.4457079459513517
+149,19,0.5264258047686908,2.0,1.1679578198891556,0.0005396185832607021,0.03045063272207334,0.7956031496844503,0,0.968221733329617,0.46379037145614677
+149,20,0.5685729846207426,2.0,1.1829073958532161,0.0005498193852749075,0.031084568347713094,0.7980267789031436,0,1.0,0.49524328206914175
+149,21,0.5933549733850328,2.0,1.1880841935531437,0.0005631328999976062,0.03148449717806111,0.7988641666275397,0,1.0,0.5111832446167759
+149,22,0.5802231155351705,2.0,1.211009090936978,0.0005727404108234577,0.031985541655965614,0.8025255639681127,0,1.0,0.5340770517839015
+149,23,0.5654767620321743,2.0,1.214078837145554,0.0005829971389191222,0.0318748232633229,0.8030148452043966,0,1.0,0.5515892067739143
+149,24,0.6090709644466065,2.0,1.2263134932693576,0.0005913827495336579,0.03186345082683007,0.8049456086809343,0,1.0,0.5302365481553546
+149,25,0.604638637822813,2.0,1.2207990967210205,0.0005860703189791362,0.031804763590039795,0.8040766733496963,0,1.0,0.515462126076043
+149,26,0.5576784436428003,2.0,1.2151847700894356,0.000580547034091976,0.03203615582410307,0.8031889506640452,0,1.0,0.5255948121426676
+149,27,0.6013037085126219,2.0,1.2257248401300729,0.0005901578878341448,0.03266965536317287,0.8048527839694425,0,1.0,0.5043456950420728
+149,28,0.5770287078823575,2.0,1.220269278356498,0.000584619960711467,0.03239716805529839,0.8039927365884189,0,1.0,0.5234290262745249
+149,29,0.600420404188011,2.0,1.223333369254445,0.0005946935374905095,0.0320688815645033,0.8044783211156697,0,1.0,0.50140134729337
+149,30,0.5912192814973412,2.0,1.2180851521984462,0.0005893575766849118,0.031702789692990445,0.8036498102274425,0,1.0,0.47073093832447044
+149,31,0.5653820292582887,2.0,1.2127950623913137,0.0005838740368535996,0.03157449045786883,0.8028119737786055,0,1.0,0.48460676419429544
+149,32,0.5887714081535778,2.0,1.2150832977754127,0.0005940242209713828,0.03217537538576797,0.8031771708656915,0,1.0,0.4625713605119257
+149,33,0.5851106956146706,2.0,1.2100196573949367,0.0005887902552272984,0.03223011159300373,0.8023738034016592,1,1.0,0.45036898538223474
+149,34,0.58862304465085,2.0,1.3842521216990378,0.0006998961650126873,0.03656264827903181,0.8285878412291541,1,1.0,0.49541014883616646
+149,35,0.6170298731365045,2.0,1.384485436530816,0.0007008908359893795,0.03675364922717374,0.8286212589042037,0,1.0,0.5567662437883483
+149,36,0.6104955299852204,2.0,1.2456978167678394,0.0006266394200064409,0.032783708328908104,0.8079820670539644,0,1.0,0.5349850999507344
+149,37,0.6008736527999048,2.0,1.2414122817072255,0.0006219700970469444,0.03248876783489918,0.8073148485501451,0,1.0,0.5029121759996826
+149,38,0.5965014270731285,2.0,1.2370552199491345,0.0006171886437554665,0.032818965503861194,0.8066346753045144,0,1.0,0.4883380902437613
+149,39,0.5869065203064154,2.0,1.2325872448880508,0.0006124007002394492,0.033001522145673944,0.805935329493694,0,1.0,0.45635506768805145
+149,40,0.5816762255453167,2.0,1.228064238863885,0.0006076033132513736,0.03277451890909544,0.8052254313404617,0,1.0,0.4389207518177223
+149,41,0.5597822732297799,2.0,1.2234523121765424,0.0006026969633741403,0.03221523107401339,0.8044995468917846,0,1.0,0.46594091076593275
+149,42,0.5829612960839454,2.0,1.2238292988117603,0.0006107262715549094,0.03233463077036044,0.8045613576607112,0,1.0,0.44320432027981765
+149,43,0.539048406029747,2.0,1.2193695611646294,0.0006059577735516934,0.03200690064368202,0.8038576415768399,0,1.0,0.4634946867658232
+149,44,0.5684228324930447,2.0,1.2290915670571367,0.0006156567179866278,0.03265851655690473,0.805389028893121,0,1.0,0.4947427749768157
+149,45,0.5927900532641424,2.0,1.2290175709652797,0.0006229927627458183,0.033009950025395404,0.8053797304264136,0,1.0,0.5093001775471411
+149,46,0.5942565772318804,2.0,1.2499482744735795,0.0006245612806928646,0.033442860916454334,0.8086400067463209,0,1.0,0.48085525743960095
+149,47,0.58819841722411,2.0,1.2457631603779906,0.0006202061927580371,0.03291911132879084,0.8079902085980805,0,1.0,0.49399472408036654
+149,48,0.5880045314463123,2.0,1.265099166633076,0.0006243793785962782,0.033171321429899016,0.8109734638818709,0,1.0,0.4600151048210407
+149,49,0.5828416168695721,2.0,1.2608762905954,0.0006204368081790253,0.032774033201628326,0.8103240537808593,0,1.0,0.4428053895652403
+150,0,0.06505477183376979,2.0,1.3752195795763074,0.0007068952475795101,0.03617486254683703,0.8273031387959295,0,0.1666870980747702,0.19459977534620568
+150,1,0.15864430304111435,1.95,1.384416464928175,0.0007019936620123251,0.03670194699293737,0.8176968118541593,0,0.19196730336909373,0.2061912723115895
+150,2,0.22483595110583177,1.95,1.3745438039083528,0.0007031655097175926,0.036522948067931826,0.8162208398056529,0,0.29555940821293086,0.1887072927355313
+150,3,0.17723696837289554,1.95,1.3554588280937,0.0006820379097243781,0.03612301404712267,0.8133343003410483,0,0.2988068744643223,0.19238072862388875
+150,4,0.25028416362467565,1.9,1.359173661935535,0.000682761411361652,0.035986014019735835,0.8022694350962551,0,0.3789025551841335,0.19574380517007423
+150,5,0.21507544389175753,1.9,1.3574318027723606,0.0006817941106540991,0.03576155894815317,0.8019926657173301,0,0.3844646458274737,0.20429861853589354
+150,6,0.3009382319616986,1.8499999999999999,1.3749804156791956,0.0006925230471301908,0.03617826902276395,0.7927144014488895,0,0.490096420275439,0.18299887950507668
+150,7,0.33211115317079887,1.8499999999999999,1.348881027820611,0.0006875495943104169,0.03545637412748842,0.7883913669407144,0,0.5902121162972906,0.15342102217294215
+150,8,0.3284220200071069,1.8499999999999999,1.3508101218366442,0.0006922342696667072,0.035923253994803964,0.7887145808078938,0,0.6363234265398452,0.17964216463722923
+150,9,0.3934210168622984,1.95,1.0167878084260555,0.0006160978197865411,0.02988725766940469,0.7563957994436833,0,0.7381463502764943,0.1605415891723355
+150,10,0.3522380586371632,2.0,1.0255427197677673,0.0006209997589694198,0.030127563962394632,0.7714972248340738,0,0.7536422984043326,0.1692704642514336
+150,11,0.43466808903787635,2.0,1.0584724535545287,0.0006172837741502638,0.030570101108222593,0.7772491410048067,0,0.8524922939285915,0.14557057155479916
+150,12,0.4183364496682633,2.0,1.114016984062235,0.0007423343840472777,0.03252715224350065,0.7867594460948641,0,0.8782494696992091,0.15678887262859859
+150,13,0.43038853748758504,2.0,1.1120332007996596,0.0007416591474137054,0.03298745202816711,0.7864262125675809,0,0.9068130298502382,0.15887775182496586
+150,14,0.4180636852249166,2.0,1.109912236751849,0.0007407911170080167,0.033092454558639635,0.7860694670385503,0,0.9124216830420963,0.17698337336026038
+150,15,0.49325674851350937,2.0,1.118316616785011,0.0007599228504403177,0.03327296218927361,0.7874857888469986,0,0.9840922305936872,0.19873285425344836
+150,16,0.45569068658570516,2.0,1.1186531230194237,0.0007524155091253144,0.032985028110900504,0.7875395861032081,0,0.9903548578857401,0.19849581143803033
+150,17,0.48317989789988247,2.0,1.1256323508109605,0.0007696943998956875,0.033102771004291626,0.7887107728423459,0,1.0,0.2105996596662748
+150,18,0.4613467991970628,2.0,1.3198024231055412,0.0006932205983728989,0.03575003187218349,0.8192373296458684,0,1.0,0.20448933065687586
+150,19,0.46780731369263406,1.95,1.3186978643160436,0.0006911391732676543,0.03557523707418191,0.8076916269579458,0,1.0,0.22602437897544678
+150,20,0.5108885994542486,2.0,1.3161022886489597,0.0006888407310585675,0.03460651970159677,0.8186874382251512,0,1.0,0.236295331514162
+150,21,0.5164655916428746,2.0,1.3181107468907258,0.0006935732359623786,0.03476144236229894,0.818986782749792,0,1.0,0.2215519721429154
+150,22,0.48508187720894513,2.0,1.3170381028250355,0.0006954702438539916,0.03493167340576715,0.8188282744460763,0,1.0,0.21693959069648372
+150,23,0.5011583998637478,1.95,1.3295057528524763,0.0006925043027084301,0.03561829512058744,0.8093652124403039,0,1.0,0.20386133287915914
+150,24,0.4610679765042178,2.0,1.3286326228666683,0.0006962559477224214,0.0358340208648137,0.8205421817843213,0,1.0,0.203559921680726
+150,25,0.5009427647579363,1.95,1.3288088403444893,0.0006943056426054569,0.03581410230825456,0.8092582165275232,0,1.0,0.2031425491931209
+150,26,0.4625061221705609,1.95,1.3276562245297567,0.0006978216670953,0.035012049758448655,0.8090813223048081,0,1.0,0.2083537405685363
+150,27,0.490586465833288,1.9,1.3266405364649192,0.0006957502492728646,0.03513510053042205,0.7970620134502958,0,1.0,0.23528821944429318
+150,28,0.4940652855799032,1.9,1.3369730044434354,0.0006932172788770959,0.036044898507741965,0.7987273897192402,0,1.0,0.24688428526634384
+150,29,0.5181805322901198,1.95,1.3468602056127077,0.0006916998149262515,0.035953411724877815,0.8120282745178593,0,1.0,0.26060177430039955
+150,30,0.48390508204630683,1.95,1.347616128772637,0.0006943642094282159,0.036053192025733004,0.8121444431643748,0,1.0,0.27968360682102267
+150,31,0.5320068237818009,1.9,1.3466061472634738,0.0006926014866805132,0.03560306042219327,0.8002713800348953,0,1.0,0.2733560792726694
+150,32,0.4883491608404608,1.9,1.3449670491182488,0.0006941961945816275,0.03562919433152678,0.8000097726829245,0,1.0,0.294497202801536
+150,33,0.5298771612727617,1.8499999999999999,1.34391365876541,0.0006923485837253385,0.036064224541577566,0.7875630773384007,0,1.0,0.26625720424253885
+150,34,0.4851574131677568,1.8499999999999999,1.3420858219865552,0.0006938617075411638,0.03547047968502242,0.7872576126859959,0,0.9969313752018427,0.2879495436233991
+150,35,0.525684513858372,1.7999999999999998,1.3410106039016632,0.0006919150148822274,0.03527017967229083,0.7742373814223753,0,1.0,0.2856150461945734
+150,36,0.528594026116408,1.7999999999999998,1.3400087799623837,0.0006949578822428623,0.036076888163945345,0.7740632849735192,0,1.0,0.29531342038802666
+150,37,0.5309005075869884,1.8499999999999999,1.3397285676095674,0.0006977583179237853,0.03604217419306832,0.7868638521648267,0,1.0,0.3030016919566277
+150,38,0.515101566055919,1.9,1.340234730820995,0.0007001526476802505,0.03614980158143667,0.7992534658464213,0,1.0,0.3170052201863965
+150,39,0.5310168812532515,1.95,1.3505158198963343,0.0006978975923628507,0.03626831308342128,0.8125875128210471,0,1.0,0.3033896041775048
+150,40,0.4948482383340092,2.0,1.3507093511229102,0.0006996413694645395,0.03615848499783435,0.8237710494828582,0,1.0,0.3161607944466973
+150,41,0.5322144697821304,1.95,1.3506494739520496,0.0006978459147112591,0.03578800681999169,0.8126078502808727,0,1.0,0.3073815659404344
+150,42,0.537762055759369,1.95,1.349189954212974,0.000699476265340392,0.03598939458307799,0.8123859955387317,0,1.0,0.2925401858645631
+150,43,0.5090753137159564,2.0,1.348727686962476,0.0007015780997509032,0.035813075144662254,0.823483745161111,0,1.0,0.2969177123865213
+150,44,0.4938839978235528,1.95,1.3573410233875922,0.0006995956788754005,0.03600059720319049,0.8136252147117895,0,1.0,0.3129466594118426
+150,45,0.4950753619652077,2.0,1.3559393509464097,0.0006980519452712847,0.03596818057209615,0.8245285554978627,0,1.0,0.3169178732173588
+150,46,0.4912260475934323,2.0,1.3557911719045626,0.0006964288929437903,0.03572753718686569,0.8245066460468053,0,0.9978697804667203,0.3069271180224806
+150,47,0.49596894508809275,2.0,1.3549264353367296,0.0006948678997720366,0.035887364213379694,0.8243810355070462,0,1.0,0.3198964836269758
+150,48,0.5001396994023652,2.0,1.353983055944115,0.0006932178971308085,0.03620074221670298,0.8242439360661358,0,1.0,0.3337989980078842
+150,49,0.5448527581971834,2.0,1.3529594440289143,0.0006915464457834033,0.03623742609304117,0.8240951158214063,0,1.0,0.3495091939906111
+151,0,0.06010712303598967,2.0,1.3724761325912174,0.0007029227672717441,0.03605194635248276,0.8269096860513617,0,0.15342646728790213,0.19578845373609605
+151,1,0.19673038208780652,1.95,1.3841902550835805,0.0006997299064251119,0.036662705548389365,0.8176624136068529,0,0.24308759638014327,0.16498447845249742
+151,2,0.21404710254903228,1.95,1.3625327408609218,0.0006837195753393276,0.03608795620165088,0.8144064019194343,0,0.3118914656238928,0.16430172099825044
+151,3,0.23564517059817594,2.0,1.3617217174097875,0.000683178343870389,0.03628970813988118,0.8253592982558494,0,0.3711805985574614,0.1572431039173046
+151,4,0.27680693588928884,2.0,1.3614254124822676,0.0006829653822665622,0.03611491789388207,0.8253165229478607,0,0.4657400443371764,0.13503639384806093
+151,5,0.2996662408863609,2.0,1.3376262165995791,0.0006724536892998578,0.03560853516111517,0.8218557274967753,0,0.5428403058278779,0.1417670618506992
+151,6,0.3253837781748092,2.0,1.3364958413830492,0.0006728255670465256,0.035710109355935576,0.8216902792718904,0,0.6128751972398782,0.13411233092952632
+151,7,0.37834195327673753,2.0,0.9476092602086151,0.0004991150439585485,0.02709361698867325,0.7574238808158813,0,0.7439269830186425,0.1025705335642684
+151,8,0.41643523204006017,2.0,0.942206696186016,0.00049340136940937,0.027013077448523846,0.7564277663915211,0,0.8585561688303861,0.07670921502635249
+151,9,0.4135867698872753,2.0,1.1180053006732413,0.0007677195631623423,0.03331956674210002,0.7874362948798745,0,0.9028326526021069,0.10817902948810834
+151,10,0.4614628529258692,2.0,1.1161100455432589,0.0007669171169499004,0.03324022270858422,0.7871186246284102,0,0.9843916415681586,0.09235398766201926
+151,11,0.45889279440960495,2.0,1.1167276609493026,0.0007592938277627694,0.03269914228586814,0.7872195418364534,0,1.0,0.1296426480320163
+151,12,0.46218678985109657,2.0,1.1146055162311435,0.0007585162819991904,0.03272589650075234,0.7868635946556832,1,1.0,0.1406226328369885
+151,13,0.46317620107182117,2.0,1.3749711295921858,0.0007131382039583687,0.03670901782755475,0.827269423378745,1,1.0,0.14392067023940375
+151,14,0.49264128919768185,2.0,1.3737757504255803,0.0007138645424145052,0.03669362074308804,0.8270987509143618,1,1.0,0.1754709639922728
+151,15,0.48181292030006,2.0,1.3750746783431256,0.0007109290525302285,0.03633338438975061,0.8272835881372657,1,1.0,0.20604306766686653
+151,16,0.4665253453259749,2.0,1.346358756386554,0.0006913884320385848,0.035934160106070305,0.8231361707380546,1,1.0,0.18841781775324945
+151,17,0.523627585572037,2.0,1.3548495325798577,0.0007135545763843291,0.036283171191194744,0.8243753124874127,1,1.0,0.24542528524012322
+151,18,0.5419464338956405,2.0,1.3375973790572568,0.0006930381623491856,0.03556963388623061,0.821857532916757,1,1.0,0.3064881129854681
+151,19,0.49138251394736043,2.0,1.3357814729348567,0.0006934602288656543,0.0353924688249799,0.8215916385536032,1,1.0,0.27127504649120127
+151,20,0.5036939256770883,1.95,1.3455808296799785,0.0006914772508806908,0.03561070941859411,0.811832846719756,1,1.0,0.278979752256961
+151,21,0.5078056141702085,2.0,1.3461928013573425,0.0006966032634200677,0.03603575090316887,0.8231135277483755,1,1.0,0.29268538056736165
+151,22,0.5368516099230335,2.0,1.3479419842174016,0.0007014523619592081,0.036137777161097374,0.8233694711704289,1,1.0,0.322838699743445
+151,23,0.5444293417931283,2.0,1.3467850737574718,0.000698327028209633,0.03584081959468975,0.8232002464744854,1,1.0,0.34809780597709417
+151,24,0.5055072856247786,2.0,1.345512127014644,0.0006954912951806833,0.03572439335876176,0.8230140774247628,1,1.0,0.3183576187492621
+151,25,0.5165731298439787,1.95,1.3539824084780132,0.0006939722537974832,0.035704222551163324,0.8131136713345967,1,1.0,0.3219104328132625
+151,26,0.49955526250177434,2.0,1.353920736677912,0.0006975435790666381,0.03623988105037185,0.8242361612834866,1,1.0,0.2985175416725811
+151,27,0.5610150760441366,2.0,1.3616547682756202,0.0006963612191036693,0.03630658486887681,0.8253534484358258,1,1.0,0.37005025348045517
+151,28,0.5622081162023982,2.0,1.3603876966148352,0.0006968041534878158,0.036242811456391674,0.8251708587208009,1,1.0,0.4073603873413272
+151,29,0.5732635385420438,2.0,1.3806600831581672,0.0006963264143289407,0.03656692364087284,0.8280760451405103,1,1.0,0.4442117951401459
+151,30,0.5550320780120265,2.0,1.38127253008535,0.0006966376161943889,0.03651356918993419,0.828163307881276,1,1.0,0.4501069267067549
+151,31,0.6038983459957248,2.0,1.3827186570146388,0.0006977985743145004,0.036500321577587716,0.8283693369937716,1,1.0,0.5129944866524155
+151,32,0.5777318395059458,2.0,1.3817543391089089,0.0006973216615097039,0.03664578994850984,0.8282320573552117,1,1.0,0.5257727983531525
+151,33,0.5572764135681774,1.95,1.3828349480971442,0.00069875051534762,0.036433988422190575,0.8174599707986862,1,1.0,0.490921378560591
+151,34,0.5508653638919663,1.9,1.3827347853193659,0.0006982048088592801,0.036619854126430484,0.8059852406093313,1,1.0,0.46955121297322094
+151,35,0.5645579826412848,1.95,1.3823896532119866,0.0006976778915479679,0.036678237186720385,0.817393194670764,1,0.998344973153538,0.48406664459956505
+151,36,0.5711773023840022,2.0,1.3832909505891886,0.0006987762790279196,0.03665843811142805,0.8284509646323658,1,1.0,0.5039243412800073
+151,37,0.5719385198485389,2.0,1.3837797566459096,0.0006998027580596057,0.03656020667931069,0.8285207142511422,1,1.0,0.5064617328284629
+151,38,0.5535928931637367,2.0,1.3839006916484364,0.0007006748244976606,0.03673935810870342,0.8285381430813885,1,1.0,0.47864297721245563
+151,39,0.6144377589324386,2.0,1.3837173334263102,0.0006999214746056769,0.036520543476682744,0.828511879078491,1,1.0,0.5481258631081282
+151,40,0.6184334464382023,2.0,1.3831131277735849,0.000700042908437633,0.03645203197324936,0.8284260510525842,1,1.0,0.5947781547940075
+151,41,0.6291032860331587,2.0,1.3843170077848395,0.0006998730633325056,0.036724666389743886,0.8285970502434344,1,1.0,0.6303442867771952
+151,42,0.6566319857478694,2.0,1.361345078518181,0.0006983689520766718,0.036018873319224355,0.8253093825921418,1,1.0,0.6887732858262311
+151,43,0.6536053530343242,2.0,1.361030700830526,0.0006953796351589843,0.036098041873935297,0.8252631907886454,1,1.0,0.7120178434477473
+151,44,0.6137837980519926,2.0,1.3625337463599145,0.0007008527158929481,0.03631776372981525,0.8254814067283075,1,1.0,0.6792793268399753
+151,45,0.6722032173182265,1.95,1.3603954344319016,0.0007007857746228187,0.03626143478398281,0.814088299850646,1,1.0,0.7406773910607548
+151,46,0.6294644505512992,1.95,1.3592417844425928,0.0006974554655377143,0.036042958894282315,0.8139126245309758,1,1.0,0.7315481685043304
+151,47,0.6808386192845104,1.9,1.3569651963214464,0.000697377907441959,0.03613197181518933,0.8019235087466067,1,1.0,0.7694620642817012
+151,48,0.6974256331615314,1.9,1.35534693348414,0.0006939744336668008,0.03602982606828605,0.8016652524393808,1,1.0,0.8247521105384377
+151,49,0.6697600392075199,1.95,1.3577431066295635,0.0007247787800038284,0.036471699639058996,0.8136938140593397,1,1.0,0.8325334640250663
+152,0,0.015333573180215734,1.9,1.3633689860450484,0.0007098778628903822,0.03607191006916262,0.8029426900586093,1,0.14593904319654485,0.15652651967199266
+152,1,0.030088886728593056,1.8499999999999999,1.3843642703974686,0.0007019639323689802,0.03671975771017098,0.794255190836535,1,0.14107495256922098,0.17886301900301557
+152,2,0.0449198843218174,1.9,1.3843915482628226,0.0007017325160562607,0.036693026893653266,0.8062452844821968,1,0.16986371817144783,0.18991465684412762
+152,3,0.162425833929667,1.95,1.3844868266888284,0.0007014154105827128,0.036464599407847575,0.8177071279676279,1,0.19993098178157273,0.20817813739012633
+152,4,0.16901130347671475,1.95,1.3628156802515732,0.0007100984139035847,0.036270407765226234,0.8144571367108026,1,0.20906983357015638,0.21794456682884067
+152,5,0.1625166243105724,2.0,1.3858320313506725,0.0006998448093831818,0.0366870870797298,0.8288121047941723,1,0.24001982216157444,0.1883623181531421
+152,6,0.18167443403618797,2.0,1.3814636936026734,0.0006969690926505319,0.03620841373092516,0.8281906047659473,1,0.27018780616147153,0.1786643719053312
+152,7,0.21901453548406483,2.0,1.3814031254989851,0.0006971357349427799,0.03656227756949625,0.8281820337282689,1,0.28866217397616023,0.2118322196453358
+152,8,0.23613289343209934,2.0,1.386054980145516,0.0007001367640635553,0.03674648128247012,0.8288438178643209,1,0.3045835987366432,0.24766484645814021
+152,9,0.28546112264392587,2.0,1.386147691367808,0.0007001237165860234,0.036394589585424006,0.8288569659373285,1,0.3590203962903763,0.30617654709258457
+152,10,0.30063265985145493,2.0,1.3861765049452948,0.0007002245380053363,0.036699758537023286,0.8288610817968881,1,0.4013513746238664,0.33364036667302793
+152,11,0.26622252533726753,2.0,1.3805629929514918,0.0006976431730884658,0.036597197586745775,0.8280625972925184,1,0.4178054481275849,0.29700115362077856
+152,12,0.34850957060202536,1.95,1.3812742664841147,0.0006974906658484509,0.03656607295005832,0.8172265954352471,1,0.47596224258329256,0.3604155785623611
+152,13,0.36431040956790783,1.95,1.3803841073911474,0.000697119054890778,0.036589913251103855,0.8170934861630988,1,0.5171762889759949,0.3914663132583663
+152,14,0.38727726764611087,2.0,1.3804616213956622,0.0006966528677943599,0.03638630385170522,0.8280478820359038,1,0.5502230244905689,0.42396019283294434
+152,15,0.37419925574848345,2.0,1.3805276420414827,0.0006996094847664964,0.03645619121142753,0.8280581240699786,1,0.5546307930896782,0.44115646170870704
+152,16,0.3623049346958046,2.0,1.3806273042869284,0.0007007067422508308,0.036510103555455434,0.8280726257337049,1,0.5756678611852141,0.4067926340723965
+152,17,0.4475191739804956,2.0,1.3803497182280935,0.0006997815772408318,0.036603041528546695,0.8280328391882767,1,0.6431376975504046,0.46754698320111265
+152,18,0.43630522035046404,2.0,1.36213416127811,0.0006834798669181423,0.03555916498477387,0.8254188273853367,1,0.67301972336073,0.49032443668724
+152,19,0.5019961703796433,2.0,1.362885842670892,0.0006835951321435326,0.03587488442110238,0.8255271533275303,1,0.7188089572678271,0.548241958241708
+152,20,0.5132678076053956,2.0,1.3642667614022284,0.000684225588259462,0.03604151667202842,0.8257261419620574,1,0.7539427210304984,0.5723023973106541
+152,21,0.5095930371026037,2.0,1.3621418999864632,0.0006826929237360145,0.03632510720991228,0.8254197157503502,1,0.7820909611581707,0.5891888421311182
+152,22,0.5794447714384858,2.0,1.3626290994679122,0.0006832002215121599,0.03623395947314563,0.8254900572026143,1,0.8247165826683893,0.6651937945704334
+152,23,0.6158669515870154,2.0,1.3574148250408171,0.0006963082848548122,0.0358602591357096,0.8247414226097548,1,0.8759309013051765,0.718315303549816
+152,24,0.5785955915658819,2.0,1.3564846176985859,0.0006933960688761549,0.03607656850422569,0.8246060846325446,1,0.911832206595488,0.6795423630922889
+152,25,0.575184610335261,1.95,1.3545019165087253,0.0006932940910186226,0.03604244956888901,0.8131923968048047,1,0.9264644586959281,0.6486627561896326
+152,26,0.6341520357740296,2.0,1.3515603219729773,0.0006928344155898656,0.03604732602643889,0.8238925775675744,1,0.9650162221214206,0.6938184897515376
+152,27,0.658159649732511,2.0,1.3542722095994961,0.0006992749493029549,0.036159803019922734,0.8242875752190407,1,1.0,0.7271988324417031
+152,28,0.6661715000357231,2.0,1.3553036086601058,0.0007051092260035738,0.03605202757943744,0.8244385994978571,1,1.0,0.753905000119077
+152,29,0.6949489104601376,2.0,1.355617381873973,0.0007104254021108642,0.03610091215465659,0.824485548886338,1,1.0,0.8164963682004586
+152,30,0.7139662899380397,2.0,1.3496281375746966,0.0007462439728756281,0.03628733674523283,0.8236275721470147,1,1.0,0.8798876331267989
+152,31,0.6637197822269942,2.0,1.3561045648377472,0.0007386598349621597,0.03644587457393483,0.8245642063911391,1,1.0,0.8457326074233138
+152,32,0.701275727336157,1.95,1.3543527266118942,0.0007426154251205913,0.036771904171636526,0.8131847180273276,1,1.0,0.8709190911205228
+152,33,0.6662622531652482,1.95,1.3510862658579037,0.0007456771815266171,0.03676299175104418,0.8126889169944199,1,1.0,0.8542075105508273
+152,34,0.7011843165918377,1.9,1.3491325666688583,0.0007498407112249592,0.03664527149307802,0.8006931587751552,1,1.0,0.8706143886394588
+152,35,0.7106928147102038,1.9,1.3455948191967815,0.0007532942036369155,0.03673592442764757,0.8001290961744754,1,1.0,0.9023093823673458
+152,36,0.6743771044659581,1.95,1.3426753237434814,0.000755350245670595,0.036691825375219714,0.8114081477446079,1,1.0,0.8812570148865271
+152,37,0.6688665365522231,1.9,1.3416272246108976,0.0007590777813000042,0.0367876889461491,0.7994956870437439,1,1.0,0.8628884551740768
+152,38,0.7086347725254158,1.95,1.3382267600057434,0.0007648229639057287,0.036730389746149665,0.8107293703480899,1,1.0,0.895449241751386
+152,39,0.671975826236363,1.95,1.3366687822355556,0.0007659064968617375,0.03679650282514403,0.8104905200402469,1,1.0,0.8732527541212098
+152,40,0.6651505193710405,1.9,1.3342908099989514,0.0007701942143358927,0.0365636672906026,0.7983206378584864,1,1.0,0.8505017312368016
+152,41,0.6551145030975016,1.95,1.330554896790166,0.0007755280812361137,0.03682242423743469,0.809552637699176,1,1.0,0.8170483436583389
+152,42,0.646742601915242,2.0,1.329510663384807,0.0007767157342853434,0.036689496661278256,0.8206951205259988,1,1.0,0.7891420063841401
+152,43,0.6637698599849938,2.0,1.355739651530243,0.0007132244850683945,0.0362927937871909,0.824504051759725,1,0.9997172481111656,0.8129432024684253
+152,44,0.7131226476882484,2.0,1.3216371228275468,0.0007828504914310546,0.03668870602031128,0.8195353802029294,1,1.0,0.8770754922941612
+152,45,0.6697424185263552,2.0,1.3304481316033927,0.0007711958121042662,0.036723983887582724,0.8208314082586111,1,1.0,0.8658080617545173
+152,46,0.7143379848344258,1.95,1.327308019264406,0.0007729762112626083,0.03668278484975894,0.8090507516626607,1,1.0,0.9144599494480861
+152,47,0.7395502997601546,1.95,1.3233723221445532,0.0007814903536967639,0.03621425442109095,0.8084446325146353,1,1.0,0.9651676658671821
+152,48,0.7343793863727335,1.95,1.331087415465427,0.0007700600852886424,0.03666855491577174,0.8096330408548474,1,1.0,0.9812646212424446
+152,49,0.74,2.0,1.328501986940458,0.000775602811513428,0.03675748612274361,0.8205463133344432,1,1.0,1.0
+153,0,0.02273626849433734,2.0,1.3629317570069213,0.0007105198992902084,0.0360920677195166,0.8255415220578797,2,0.15642674501476153,0.1672185682947758
+153,1,0.22784276867926728,1.95,1.3862817078073946,0.0007001660900320026,0.03673459397384101,0.8179741522794155,2,0.22519550555906231,0.19254855485214106
+153,2,0.2551566735203362,1.95,1.3862943611198846,0.0007001722195526527,0.03672553263852695,0.8179760380796509,2,0.27965375607385035,0.21098390363598696
+153,3,0.17165008086932748,1.95,1.3859790029849353,0.0007000437840063813,0.0364144579824078,0.8179290410541511,2,0.3069229969781211,0.16293627359359678
+153,4,0.22294372335375381,1.9,1.3862466180232729,0.0007001727668874605,0.03675615626243425,0.8065344206511921,2,0.3405069821708131,0.18913643495142865
+153,5,0.3107617355767552,1.9,1.386247765723371,0.0007001452473716599,0.03664119385585325,0.8065345911463063,2,0.41088509605656753,0.22135899051376046
+153,6,0.2783416857374382,1.9,1.3857137022847459,0.0007004109390233985,0.03655837377812239,0.8064513270325108,2,0.4292960610698096,0.2554108710317147
+153,7,0.2930239927847206,1.8499999999999999,1.3859492635272985,0.0007003019085051787,0.03678179505777425,0.7945135372303596,2,0.45527426080810096,0.2697142948716006
+153,8,0.3413870936633976,1.9,1.38607254175431,0.0007002030710182147,0.03637795016259922,0.8065072663822416,2,0.49802019151070975,0.30726339019704557
+153,9,0.41068341058550634,1.9,1.3860829388649658,0.0007003941103205907,0.03662564869149694,0.8065089485046927,2,0.5668003199503506,0.34654427535122023
+153,10,0.4415377098012658,1.9,1.3858809555109404,0.0007004784929837454,0.036776881287377924,0.8064774529329743,2,0.6264976847512064,0.3697954530026105
+153,11,0.4765321850928617,1.9,1.3856121165102246,0.000700500569013204,0.03647546796602528,0.8064354982427534,2,0.6868342414116049,0.4059949617607325
+153,12,0.3881344615071176,1.9,1.3808545510030013,0.0007011595124758771,0.0365535781325181,0.8056919786348362,2,0.6946739282266639,0.36754963405484026
+153,13,0.3949402110587403,1.8499999999999999,1.3847527252471048,0.0007009518726128019,0.03671518880807624,0.7943183318020284,2,0.7395803184429929,0.330360278938477
+153,14,0.463792896817168,1.9,1.3847131054910915,0.000700404589482301,0.03656819125158589,0.8062950964208779,2,0.7453797147125422,0.38547003644050376
+153,15,0.4203812008887461,1.9,1.3846963136589854,0.0007009898894051484,0.03670979828499009,0.8062926566333827,2,0.7832272182000406,0.3569677120290995
+153,16,0.46378792483293274,1.8499999999999999,1.3846084778632743,0.0007003969963498116,0.03669426336849797,0.794294582813955,2,0.798972730678138,0.3806627752055917
+153,17,0.4322372160412786,1.8499999999999999,1.385363052756553,0.0007002718864756686,0.03670052767375531,0.7944178050888715,2,0.8220153482006345,0.3447702558700828
+153,18,0.4782266427627391,1.7999999999999998,1.3685492904794685,0.0007168272303298181,0.03652783621068862,0.7790231718322602,2,0.8501208242354722,0.3605943768951671
+153,19,0.5273287351296955,1.7999999999999998,1.3693722641819026,0.0007135908717558659,0.03650489864875047,0.7791636972450007,2,0.8884748428002576,0.4064626600319746
+153,20,0.48466736843720487,1.7999999999999998,1.3479741000664274,0.0006734025169220161,0.03588719777935106,0.7754457858525022,2,0.9327891603345231,0.37183901434465205
+153,21,0.56676902870402,1.7499999999999998,1.3580190461993118,0.0007158216080225601,0.03652158014119143,0.7639485563455294,2,0.9879071400434812,0.4053539089554247
+153,22,0.5577817070603269,1.7499999999999998,1.345859869007483,0.0006715605433048247,0.03506763579506841,0.7617327791411597,2,1.0,0.425939023534423
+153,23,0.5621774132347782,1.7999999999999998,1.3453998310317605,0.0006725967542762883,0.03526836600017198,0.7749969305302645,2,1.0,0.4405913774492606
+153,24,0.5638677816346045,1.8499999999999999,1.3454377607823595,0.0006739396869120956,0.03531829612172804,0.7878118046851625,2,1.0,0.4462259387820148
+153,25,0.5287567456890134,1.9,1.3450859962460266,0.0006751427032291467,0.035433681822493734,0.8000227063184291,2,1.0,0.4291891522967115
+153,26,0.5674980786672962,1.8499999999999999,1.348779180398562,0.0006792682991818169,0.03550766860938171,0.7883716118741101,2,1.0,0.45832692889098725
+153,27,0.5286210394610371,1.8499999999999999,1.3464211322955983,0.0006795612349892343,0.035986979877865075,0.7879780212096965,2,1.0,0.42873679820345695
+153,28,0.6194767881091086,1.7999999999999998,1.348409789127701,0.000683463287173776,0.0357865032409378,0.775525146013821,2,1.0,0.46492262703036186
+153,29,0.6281792655679379,1.7999999999999998,1.3560788518066735,0.000684122899246551,0.035663911635292075,0.7768576287246354,2,1.0,0.4939308852264597
+153,30,0.5325001149321522,1.8499999999999999,1.3629659987414495,0.0006859326556098424,0.03606585050262742,0.7907310886456406,2,1.0,0.44166704977384075
+153,31,0.6227667280276321,1.7999999999999998,1.3649523592780868,0.0006885397421041195,0.03609329607806381,0.7783935940041152,2,1.0,0.47588909342544045
+153,32,0.5294310983700984,1.7999999999999998,1.369874409558218,0.0006898718821172297,0.036222508201779746,0.7792419277374621,2,1.0,0.4314369945669945
+153,33,0.5862437404600892,1.7499999999999998,1.3707891510527082,0.0006915681722787905,0.036162645315396674,0.7662349486694936,2,1.0,0.4541458015336305
+153,34,0.5245791640567015,1.7499999999999998,1.3687790954726031,0.0006895922389964873,0.03618355524261837,0.7658740083522168,2,1.0,0.4152638801890049
+153,35,0.5609696906303334,1.6999999999999997,1.369324851124807,0.000691214620183725,0.036457036045265186,0.7522609468473257,2,1.0,0.43656563543444465
+153,36,0.5671078629585267,1.6999999999999997,1.3681929275921993,0.0006917959571551073,0.03596852533940007,0.7520501531559732,2,1.0,0.45702620986175546
+153,37,0.5768501986412358,1.7499999999999998,1.3672539941735775,0.0006924114105487909,0.03612825557639669,0.7656014418518471,2,1.0,0.48950066213745236
+153,38,0.5342252886524963,1.7999999999999998,1.3666306037087086,0.0006931526016551713,0.036068199604579354,0.7786845408037524,2,1.0,0.44741762884165426
+153,39,0.5951793919432115,1.7499999999999998,1.3675474127742073,0.0006955377292484076,0.036030590756923886,0.7656552153354046,2,1.0,0.48393130647737137
+153,40,0.5796761915852535,1.7499999999999998,1.3658275007791452,0.0006934351737037962,0.036411741913305914,0.7653457199682268,2,1.0,0.4989206386175116
+153,41,0.6149119825127608,1.7999999999999998,1.36471716985751,0.000694127106933713,0.0361572330114762,0.778354949730589,2,1.0,0.5497066083758693
+153,42,0.5546011323975792,1.7999999999999998,1.3638807662395014,0.0006921335280467615,0.03631316591730778,0.7782099328412607,2,1.0,0.5153371079919308
+153,43,0.6136919827725265,1.7499999999999998,1.3642760016492401,0.0006946170678395362,0.036088215447069485,0.7650673938457799,2,1.0,0.545639942575088
+153,44,0.59965422264992,1.7499999999999998,1.362266198213336,0.0006921574035762812,0.03605275845587919,0.7647050756644398,2,1.0,0.5655140754997329
+153,45,0.6586130739892571,1.7999999999999998,1.3611286874273871,0.000693174406790343,0.0363507592950737,0.7777349223381252,2,1.0,0.5953769132975235
+153,46,0.5657080508722726,1.7999999999999998,1.3681088301587043,0.0006933094786663113,0.036255311148180196,0.7789392399272296,2,1.0,0.5523601695742419
+153,47,0.6552209640195208,1.7499999999999998,1.3684384636240357,0.0006954806142172775,0.036438544208851245,0.7658150358562038,2,1.0,0.5840698800650693
+153,48,0.5630389207690821,1.7499999999999998,1.3731970887556537,0.0006954774385926407,0.03621324787510967,0.7666673780639115,2,1.0,0.5434630692302737
+153,49,0.598030068119592,1.6999999999999997,1.373256076153558,0.0006970314533733507,0.036400665365315214,0.7529950243143325,2,1.0,0.5601002270653065
+154,0,0.1707836103555945,1.6999999999999997,1.3571866886678017,0.0007135089641202262,0.03601282816096996,0.750000265861393,1,0.14957081085336366,0.2365176200474967
+154,1,0.22307946486876257,1.6499999999999997,1.3569521244291818,0.0007120505493277098,0.0362341878584534,0.7356297253354227,1,0.2000446144079624,0.31020539701859196
+154,2,0.2310741773293071,1.6499999999999997,1.3862047287899975,0.0007001118064040726,0.03656069702324507,0.7412748077151314,1,0.21645161109172145,0.34831177630872834
+154,3,0.27897887065005456,1.6999999999999997,1.3861527666889162,0.0007000775698867319,0.0366948472901342,0.7553870168076148,1,0.26650134085477284,0.4079277810271515
+154,4,0.25765754665433704,1.6999999999999997,1.3809096486599437,0.0007006538582801072,0.03664383190223538,0.7544171234805979,1,0.2779412817617222,0.4216034464988271
+154,5,0.26234406819631734,1.6499999999999997,1.3807034123995066,0.0007009397474197563,0.03635454418808734,0.7402186484688008,1,0.3315241210634802,0.3991147325697507
+154,6,0.3384139130389221,1.6999999999999997,1.3860193930214635,0.0007000424938231794,0.03677255242264412,0.7553623585557138,1,0.3803519210023324,0.45424381545996384
+154,7,0.30616317275363414,1.6999999999999997,1.379714930556752,0.0006986690902447612,0.036506221683604,0.7541949725894495,1,0.41383539562567967,0.4354300483445409
+154,8,0.3818402290980439,1.6499999999999997,1.374222296845341,0.0007005851688285363,0.03634948740273403,0.7389702865823119,1,0.46030810807015493,0.49238995289993986
+154,9,0.36193998904259406,1.6499999999999997,1.3727278154742675,0.0007006011184575682,0.036406901681445746,0.7386819145059045,1,0.4652242375150029,0.5195009801219762
+154,10,0.3725138960676809,1.6999999999999997,1.3731514014724047,0.0007034209160802811,0.036497134565415985,0.7529779319020912,1,0.48858875065806323,0.5235946526815187
+154,11,0.36626579628296974,1.7499999999999998,1.373566263415789,0.0007058909784313363,0.036609429881697776,0.7667371376379082,1,0.5273765555085703,0.48438391359847194
+154,12,0.3721636454776061,1.7999999999999998,1.3738662793927383,0.0007037256725759848,0.03636539684121885,0.7799326151235524,1,0.5664287369661235,0.45197383563718896
+154,13,0.4567959939797674,1.8499999999999999,1.3739328779213504,0.0007018848006553103,0.036443506244416383,0.792545297551087,1,0.627309732858789,0.5195736694541727
+154,14,0.49850237861322294,1.8499999999999999,1.3606790442320253,0.0006870207750889806,0.03623749256010926,0.7903527628288813,1,0.6802746887629544,0.5879750103601373
+154,15,0.47583565375831127,1.8499999999999999,1.3596428416166455,0.0006876528636187554,0.03600415357194158,0.79018122689092,1,0.7437209625464967,0.5611575624657086
+154,16,0.5560788438449722,1.7999999999999998,1.3655309600052958,0.0006886391157515563,0.035945270758692825,0.7784934190930053,1,0.7860081688766358,0.6389185876477261
+154,17,0.5120037117608373,1.7999999999999998,1.298114101221719,0.0007246517974119387,0.03542473583607307,0.7666629704338295,1,0.8147092907286377,0.5870666515646071
+154,18,0.5282637624631803,1.7499999999999998,1.3849010333770675,0.0006997319032625848,0.03641668125804473,0.7687560539221916,1,0.8274926754517047,0.5908889742749946
+154,19,0.5985453264101103,1.7999999999999998,1.3850680778317186,0.0007003771699668253,0.036752215727476875,0.7818480940565945,1,0.8846524140935289,0.6489478692423287
+154,20,0.6106291590132604,1.7999999999999998,1.3562586984723444,0.0007128050003048232,0.036111517710368475,0.776898746493249,1,0.913174228271825,0.6845315590151011
+154,21,0.5886515548952737,1.8499999999999999,1.355968564818462,0.000717780063928632,0.03637740685103861,0.7895814121838296,1,0.9604133224029159,0.6482874197803576
+154,22,0.6385742023478462,1.7999999999999998,1.3547303173657856,0.0007181416946325365,0.036300288428619536,0.7766355760926478,1,0.9785769274300818,0.6904781045860447
+154,23,0.6094952868972849,1.7999999999999998,1.3533127707622823,0.0007236817169256601,0.03635440967267989,0.7763914975340518,1,1.0,0.6649842896576165
+154,24,0.6698683061422639,1.7499999999999998,1.3511975462111931,0.0007247822903271564,0.036248666193284595,0.7627194566532328,1,1.0,0.732894353807546
+154,25,0.6886863980264375,1.7499999999999998,1.350852110553368,0.0007198060887163584,0.03633884234588665,0.7626551330545651,1,1.0,0.7956213267547914
+154,26,0.6588085389198273,1.7999999999999998,1.3507015683824322,0.0007146693658826198,0.03615786084767436,0.7759347116808543,1,1.0,0.7960284630660907
+154,27,0.6658427111620662,1.7499999999999998,1.3600487096181761,0.0007102466204022592,0.036285962304895544,0.7643123632615698,1,1.0,0.819475703873554
+154,28,0.7163838595741492,1.7999999999999998,1.33207982912255,0.000733410617392743,0.036416774377796876,0.7726870916924511,1,1.0,0.8879461985804971
+154,29,0.7126980680216091,1.7999999999999998,1.3385362623380634,0.0007251176995196485,0.036371826790587494,0.7738162110489134,1,1.0,0.9089935600720299
+154,30,0.6793673269923315,1.8499999999999999,1.3386586204962696,0.0007359444930248326,0.036228104097508915,0.7866971731121332,1,1.0,0.8978910899744382
+154,31,0.6959618295235819,1.7999999999999998,1.3359180855869592,0.000735318980380555,0.03619413705312337,0.773361213056069,1,1.0,0.9198727650786063
+154,32,0.6774328624271164,1.8499999999999999,1.3439489685382031,0.000727926044370595,0.036187800341171,0.7875808891323793,1,1.0,0.8914428747570546
+154,33,0.7307387215870731,1.9,1.3410616261816144,0.0007271946915945175,0.03605906420781866,0.7993947794114351,1,1.0,0.9357957386235766
+154,34,0.7307145679402421,1.9,1.3465070737385196,0.0007198599271831396,0.035907762827952966,0.8002642581349317,1,1.0,0.969048559800807
+154,35,0.6896798911324862,1.95,1.346653729487558,0.0007294492991832127,0.03644192929642463,0.8120082815629548,1,1.0,0.932266303774954
+154,36,0.6831316862200013,1.9,1.3440438397123176,0.000728975463711788,0.03624403354807571,0.7998731585705842,1,1.0,0.910438954066671
+154,37,0.6768753637810074,1.95,1.339065322767615,0.0007294926995048929,0.03639432710591972,0.8108471747254109,1,1.0,0.8895845459366913
+154,38,0.7336503035257561,2.0,1.3362387117560426,0.0007286477021461967,0.03644760472864564,0.8216689624342324,1,1.0,0.9455010117525201
+154,39,0.7062576682362396,2.0,1.3413425995186312,0.0007211300154614743,0.03638379372762565,0.8224134070787564,1,1.0,0.954192227454132
+154,40,0.7350247994293441,1.95,1.349981817401788,0.0007149784433468906,0.03642318113308139,0.8125113806495703,1,1.0,0.9834159980978134
+154,41,0.75,1.95,1.3495097405636205,0.0007246029105441002,0.03602131025784869,0.8124423886074337,1,1.0,1.0
+154,42,0.7003986604386413,2.0,1.3524073399887475,0.0007184455649814841,0.03634216966476207,0.8240228685720968,1,1.0,0.967995534795471
+154,43,0.74,1.95,1.3498857319811055,0.0007180666383211913,0.036015979760034685,0.812497683825357,1,1.0,1.0
+154,44,0.6965613119173721,1.95,1.349030900169013,0.0007271106062150016,0.03649610026838821,0.812370176580956,1,1.0,0.9552043730579073
+154,45,0.75,1.9,1.3456138537796438,0.0007274782693523876,0.03627293965933855,0.8001238830832151,0,1.0,1.0
+154,46,0.74,1.9,1.3818510576757317,0.0006971536046010956,0.03659341184105855,0.8058466831306991,0,1.0,1.0
+154,47,0.72,1.95,1.381339627114939,0.0006967327289872059,0.03645688113783182,0.8172361315602732,0,1.0,1.0
+154,48,0.7442174876573755,1.9,1.3802100519847764,0.0006959676032948269,0.03653084682798716,0.8055894346208811,0,1.0,0.9807249588579181
+154,49,0.7197629027530168,1.9,1.380996866197305,0.0006965413894082287,0.03661956235215677,0.8057128116179103,0,1.0,0.9992096758433893
+155,0,0.01565110172007543,1.8499999999999999,1.3591025418799039,0.0007116543088948276,0.03600008159951198,0.7900995949465057,1,0.13457476719568823,0.1727373161393338
+155,1,0.06822979151423125,1.7999999999999998,1.384041428449592,0.0006995200699740209,0.03668362706553644,0.7816726438278612,1,0.173004143038367,0.1967604476629482
+155,2,0.05436121395594917,1.7999999999999998,1.38393410835545,0.000699540604918826,0.036615732860779106,0.7816543349803815,1,0.1892047080625071,0.19559776910315443
+155,3,0.1947698608671035,1.8499999999999999,1.3838903615580593,0.0006994416799546702,0.036505470878532495,0.7941769121802698,1,0.231714666487699,0.20694664757341288
+155,4,0.17212846588003128,1.8499999999999999,1.3859502812346094,0.0007000465345928443,0.03677617035110312,0.7945136199974536,1,0.26299130183101305,0.18977315049208687
+155,5,0.21806094678554835,1.7999999999999998,1.3786809045732276,0.0006948534726029594,0.03628821863229028,0.780754835200045,1,0.27587448665549713,0.22570384041116492
+155,6,0.2618463792618535,1.7999999999999998,1.3857734112052351,0.0006998080660761813,0.03669990404386983,0.7819681789083747,1,0.3154768734191345,0.285518766313999
+155,7,0.27414490885538306,1.7999999999999998,1.3858927061269606,0.0006999017077334445,0.036710750995981235,0.7819885492146951,1,0.3539099992012875,0.30860303058289357
+155,8,0.28911682351498913,1.8499999999999999,1.3857645029447894,0.0006997996611340913,0.036443006796964786,0.7944832072345798,1,0.36504511134992496,0.34366259658339715
+155,9,0.3352464620283384,1.9,1.3856083160051622,0.0006997076061675929,0.03671128047514384,0.8064346574341469,1,0.4206917042307178,0.38989926778683764
+155,10,0.3767581119219984,1.9,1.3800888829793485,0.0006960604267485719,0.03659716151541049,0.8055704860998697,1,0.47917488636750655,0.4502938579166525
+155,11,0.4158004330430795,1.9,1.3686991225995393,0.0007027669081383669,0.03642261246739946,0.8037824501736063,1,0.5287223774708021,0.5143716068491955
+155,12,0.42736389546708703,1.9,1.3672853802559863,0.000702802634994272,0.036383966564819695,0.8035593955870532,1,0.5569876034383571,0.5485628469724806
+155,13,0.470612964328763,1.95,1.3715029821777331,0.0007011413852105003,0.03645599864160069,0.8157636561240382,1,0.5935897832708902,0.6105901700680231
+155,14,0.47769390169491627,1.95,1.383675325631966,0.0007000179806984363,0.0365332841979788,0.8175857158389132,1,0.6216213713273363,0.6301511772132724
+155,15,0.4738814072917851,2.0,1.2480551085296756,0.000694124495512927,0.03477146660308851,0.8083684373615203,1,0.6570537882604388,0.6368663066253651
+155,16,0.48608201464771306,2.0,1.260549029955088,0.0006900312068193638,0.0348348141697946,0.8102951456430226,1,0.6827226096242481,0.643309902660046
+155,17,0.483356689773783,2.0,1.2673197258477311,0.0006855292969840314,0.03437049856839891,0.8113323520045427,1,0.713660705692307,0.6263080249895338
+155,18,0.5032802529343359,2.0,1.2622993494376067,0.0006825976596741358,0.034043672684677326,0.8105617703984404,1,0.7367596563179423,0.6285879680238633
+155,19,0.4994970376046024,2.0,1.2674403097606437,0.0006789220701577482,0.03411482634765257,0.8113487867309088,1,0.7858611115802723,0.5838419765749782
+155,20,0.5837410943162981,2.0,1.3675307569833455,0.0006892964451060839,0.036031846255062186,0.8261967960801498,1,0.8504743808183876,0.6451711399631432
+155,21,0.5668566029748148,2.0,1.3646181982766972,0.0007082438806784978,0.036305063585429384,0.8257836197040148,1,0.8781325357912189,0.6520119621944238
+155,22,0.5795519756619334,2.0,1.3701280683184198,0.000705875308517788,0.03637791845819639,0.8265741959497042,1,0.9131754877682647,0.6476059351820914
+155,23,0.6200459142955813,2.0,1.3744511022177321,0.0007040537048760742,0.036507250957322816,0.8271925044100588,1,0.9421803108198137,0.6772459665588527
+155,24,0.6192795838358904,2.0,1.3743115191572224,0.0007067045613449457,0.03640089536450798,0.8271733087107435,1,0.9750259383772721,0.6975640282832719
+155,25,0.6620990653358918,2.0,1.377788286807873,0.0007049625000995646,0.03650067140046701,0.8276692769786768,1,1.0,0.740330217786306
+155,26,0.6432965723977478,2.0,1.3774177534955219,0.0007071233547632236,0.03670052318382892,0.8276170369078623,1,1.0,0.7443219079924926
+155,27,0.6274850832878012,2.0,1.380133288195028,0.0007054365519413039,0.03654956499612006,0.8280036292601433,1,1.0,0.7249502776260038
+155,28,0.6864678734246329,2.0,1.3790395385147054,0.0007059797357843341,0.03660165569414179,0.8278479633484412,1,1.0,0.788226244748776
+155,29,0.637200576839761,2.0,1.3794210784124479,0.0007038684211222048,0.036660212214657914,0.8279017303361907,1,1.0,0.7573352561325364
+155,30,0.6508164160511998,1.95,1.3782492539272249,0.0007043094889813118,0.03634724475845069,0.816776364774456,1,1.0,0.7693880535039993
+155,31,0.6564836909935253,2.0,1.38053076013217,0.000703014986729918,0.03669372985299586,0.8280595377486885,1,1.0,0.7882789699784176
+155,32,0.7055501615981393,2.0,1.3823330470118076,0.0007018822330972387,0.036738103292567756,0.8283156679653857,1,1.0,0.8518338719937976
+155,33,0.7017073879778719,2.0,1.3364018077487374,0.0007434940167828511,0.03657827117791033,0.8216972098215509,1,1.0,0.8723579599262395
+155,34,0.7120690370236439,2.0,1.3353374954326191,0.0007530113341353054,0.03659796333599412,0.8215440137420574,1,1.0,0.9068967900788129
+155,35,0.6722220607089386,2.0,1.33366242648802,0.0007613500616451295,0.036608697064122266,0.8213007482179059,1,1.0,0.8740735356964622
+155,36,0.6567074084834829,1.95,1.3302552813067483,0.0007624609351698329,0.03615091809958143,0.8095024094580412,1,1.0,0.8223580282782762
+155,37,0.6714575849208353,2.0,1.3252536371544579,0.0007647236093703831,0.03658650911639501,0.8200642848610452,1,1.0,0.8381919497361174
+155,38,0.7009841900268473,2.0,1.3354876266173408,0.0007530928096782629,0.03653189883394736,0.8215660472173945,1,1.0,0.8699473000894908
+155,39,0.664020676941292,2.0,1.3338348800593116,0.0007614175451323515,0.03666064606897579,0.8213260769132233,1,1.0,0.8467355898043067
+155,40,0.6587772732878879,1.95,1.3304550700790594,0.0007625161776310315,0.03666470797892043,0.8095332336672076,1,1.0,0.8292575776262929
+155,41,0.6481519157107638,2.0,1.325421904088761,0.0007646930302629726,0.03588871040620527,0.8200891037763003,1,1.0,0.7938397190358794
+155,42,0.6559750371245754,2.0,1.3823642592510688,0.0007018035287380995,0.03650429723984215,0.8283200841912326,2,1.0,0.786583457081918
+155,43,0.6954757566013859,2.0,1.3759995484051646,0.0006964896877805599,0.03630946807936855,0.8274115747248761,2,1.0,0.8182525220046197
+155,44,0.6835374111208327,2.0,1.3847081916360604,0.0006998861080925742,0.03674956781706567,0.8286526042934694,2,1.0,0.8451247037361087
+155,45,0.7436713444328952,2.0,1.384901712789736,0.0006994936709435362,0.03656348354777583,0.8286799686958891,2,1.0,0.8789044814429843
+155,46,0.7274345916642477,2.0,1.3852785943292523,0.0007003747427705837,0.036502294270696796,0.8287337178521403,2,1.0,0.9247819722141589
+155,47,0.7689686198133358,2.0,1.38452788193162,0.000700396770008011,0.03674183446610185,0.8286271460906582,2,1.0,0.9632287327111192
+155,48,0.7297524633361889,2.0,1.3846023217514476,0.0007015812792220265,0.03665465655633639,0.8286380529928878,2,1.0,0.9991748777872961
+155,49,0.75,1.95,1.384791907980858,0.0007006827209025283,0.0365133675529072,0.8177523812521856,2,1.0,1.0
+156,0,0.18458535016805666,1.95,1.3593934895883701,0.0007114648777710012,0.03600333621225797,0.8139398437836525,1,0.14900912377758677,0.2499390021900732
+156,1,0.2280218101815611,1.9,1.3591094547427818,0.0007120052941631509,0.036272490874132035,0.8022685278037208,1,0.20476212341566774,0.3203898693843133
+156,2,0.26347038343801166,1.9,1.385700153641292,0.0006998202243074629,0.03668333290135854,0.806449027840641,1,0.24278360614942554,0.3878564699274716
+156,3,0.3005207410288699,1.9,1.3856344158578282,0.0006998515091822155,0.03643562731956527,0.8064387764563283,1,0.2869958069620787,0.4524080608134613
+156,4,0.268052635730438,1.9,1.3772614864444008,0.0006947820838428466,0.03647026916405946,0.8051268565953146,1,0.32107524698040696,0.43207512312758395
+156,5,0.2740862190280201,1.8499999999999999,1.3766811347429286,0.0006941556131902776,0.036301647786755806,0.7929942575451709,1,0.3590757898697279,0.4015196769337631
+156,6,0.3042232279579078,1.9,1.3757864941263822,0.0006934121544409145,0.03628763433214628,0.8048948994149807,1,0.3922765598930714,0.4243753466689307
+156,7,0.3067488537769718,1.9,1.3759058318057003,0.0006939097455112276,0.0363939263844063,0.8049137956859763,1,0.4387985119665164,0.4040981633012174
+156,8,0.3182129078482285,1.95,1.377696643710027,0.0007008790908030041,0.03640001834643834,0.8166926235682463,1,0.438391889752082,0.4095205064913189
+156,9,0.388437693194798,2.0,1.3780038763600582,0.0007023529794771579,0.036416207984145334,0.8276992806548177,1,0.49682596684828195,0.4656910215182841
+156,10,0.4309461610653687,2.0,1.377439270214568,0.0007025435416913662,0.0364668923575386,0.8276187998510512,1,0.5523681776052195,0.5333296334109364
+156,11,0.47338241365449923,2.0,1.3764991076900297,0.0007027617074527382,0.036558412718505115,0.8274846916690313,1,0.610877585961766,0.5967712642326428
+156,12,0.4818963773250347,2.0,1.355700939290693,0.0006890065340464556,0.036074319976883595,0.8244914413179745,1,0.6249177952354484,0.6397641974361846
+156,13,0.47163521662127617,2.0,1.2566993802817579,0.0006725792908002581,0.03394091534910551,0.809697304171255,1,0.6384344834510516,0.6542047441361849
+156,14,0.47141239716324657,2.0,1.2607398319161185,0.0006700003450702255,0.033995365743204956,0.8103183158846387,1,0.6896724904487378,0.6184780032791716
+156,15,0.5190629354762942,2.0,1.2560288242475925,0.0006672400619289154,0.0342476138278505,0.809592312250362,1,0.7147083358048585,0.6439320038478361
+156,16,0.532157802059915,2.0,1.2641337740497365,0.0006901129009782425,0.03473080623163428,0.8108455936925004,1,0.7287008943303986,0.6689248144258519
+156,17,0.5168001227460646,2.0,1.2700797457369384,0.0007120338300157039,0.0346665143433117,0.8117625713772231,1,0.7875268017958873,0.6392980067590323
+156,18,0.5756810929056817,2.0,1.26527829475457,0.0007097576400511315,0.03462478235025966,0.8110270937893025,1,0.8350229176370038,0.672239752836267
+156,19,0.5909613099220392,2.0,1.3785477522435325,0.0007040068183666718,0.036517829012983685,0.8277773022512012,1,0.8545117600752318,0.6971886863064883
+156,20,0.5810140788310775,2.0,1.3783282002321096,0.0007060368832635046,0.03672057908365519,0.827746579118966,1,0.8706613449563221,0.7091651361618285
+156,21,0.5876903825689188,2.0,1.3806726342882896,0.0007045561815975864,0.036497979734725274,0.8280801752366366,1,0.8868008173661431,0.7099001854082052
+156,22,0.6292558034161044,2.0,1.3823334309338717,0.0007033476720036136,0.03665135577420815,0.8283161393586589,0,0.9170262346792041,0.7414843651480757
+156,23,0.5929301524974315,2.0,1.354455457683386,0.0006803856894777448,0.035886451665123276,0.8243086436831042,0,0.9343056476412783,0.7306929781364007
+156,24,0.6596216610996095,1.95,1.3519506178110658,0.0006778860144412384,0.03610358447412277,0.8127998291375834,0,1.0,0.6987388703320314
+156,25,0.633858392837079,1.95,1.3505495898765871,0.0006787793421483114,0.035455350759250034,0.8125868326179971,0,1.0,0.71286130945693
+156,26,0.6173348884154249,1.9,1.3584860605412672,0.0006816528415083798,0.03557169550092829,0.8021599841652616,0,1.0,0.7244496280514163
+156,27,0.6226603950858666,1.95,1.355171502882264,0.0006788228374147876,0.03593821520868244,0.8132896978230589,0,1.0,0.7422013169528884
+156,28,0.6233429127512994,2.0,1.3531400029015126,0.0006770143847493997,0.035890377274324384,0.8241170757791021,0,1.0,0.7444763758376646
+156,29,0.662586673932843,2.0,1.3510091980677545,0.0006750935765651356,0.03571337230469877,0.8238074486809667,0,1.0,0.7419555797761432
+156,30,0.6225864317063905,2.0,1.3532028750097853,0.0006774690147880381,0.03612843452643167,0.8241263205774938,0,0.9948027363134332,0.7488844572700574
+156,31,0.6649575227315697,1.95,1.3502648720050807,0.0006748596842779482,0.03600867533006971,0.8125422751639598,0,1.0,0.7165250757718988
+156,32,0.6118384461227447,1.95,1.3492972201060707,0.0006756120826392574,0.03521818741372375,0.8123950697816358,0,1.0,0.7061281537424825
+156,33,0.6090970078026701,1.9,1.3463429482693596,0.0006729758622644106,0.0353890005047572,0.8002230328752902,0,0.9967776642306322,0.7012864737013905
+156,34,0.6463068186148542,1.95,1.3421212906537008,0.0006693808185600234,0.03584419898586681,0.811297030797184,0,1.0,0.6876893953828469
+156,35,0.6436322548500961,1.95,1.3453756641288894,0.0006731150979687356,0.035985895083485556,0.8117958927712966,0,1.0,0.6787741828336535
+156,36,0.6081123855879861,2.0,1.3464646406833127,0.0006759407965774226,0.03583567272458412,0.8231470876020011,0,1.0,0.6937079519599536
+156,37,0.6387869966521283,1.95,1.3445378412654267,0.0006735582703692862,0.035920935543070354,0.8116679894609655,0,1.0,0.7292899888404277
+156,38,0.6626464444060146,1.95,1.3527471262947093,0.0006767135723050065,0.035203024352449444,0.8129206360896484,0,1.0,0.7088214813533819
+156,39,0.6544425075406928,1.95,1.3531889202094296,0.000678361722912448,0.03557845693415722,0.812988316282877,0,1.0,0.7148083584689757
+156,40,0.611005066277715,2.0,1.3539977381168808,0.0006807324218910951,0.036054564403008416,0.8242424455684294,0,1.0,0.7033502209257168
+156,41,0.6512761695840416,1.95,1.3522121091830777,0.0006785462639369185,0.035653887295736916,0.8128398143234573,0,1.0,0.7042538986134715
+156,42,0.6148989501808159,1.95,1.3516061818141503,0.0006802086725430194,0.03585942429707985,0.8127481223608486,0,1.0,0.7163298339360529
+156,43,0.6351298956037567,1.9,1.3489707649919664,0.0006774672893489218,0.035428516625783724,0.8006442341418726,0,1.0,0.717099652012522
+156,44,0.6116560523385208,1.9,1.3566423177946545,0.0006799811650817212,0.03604107818362526,0.8018666892039426,0,1.0,0.705520174461736
+156,45,0.6561023106690725,1.8499999999999999,1.3538809614035943,0.0006775147893282448,0.03615632992482365,0.7892209665924618,0,1.0,0.6870077022302415
+156,46,0.60427132333118,1.8499999999999999,1.35400765354157,0.0006790006494886643,0.0353134617129897,0.7892425355262002,0,1.0,0.6809044111039334
+156,47,0.6439259439289855,1.7999999999999998,1.3512026493104718,0.0006762863125532359,0.03549708594917937,0.7760084744330188,0,1.0,0.6797531464299514
+156,48,0.6466375908082913,1.7999999999999998,1.3508406463210632,0.0006777909819580769,0.035732338535504046,0.7759460682171869,0,1.0,0.6887919693609709
+156,49,0.609928696269043,1.8499999999999999,1.3505981672381402,0.0006797340239956,0.035438658401028014,0.788675090988362,0,1.0,0.6997623208968099
+157,0,0.16015976297713522,1.7999999999999998,1.3572800139215402,0.0007137393077842351,0.03601955454288698,0.7770760417572036,1,0.1434517937235784,0.2092634849590128
+157,1,0.2068655683623042,1.7499999999999998,1.3563917593081203,0.0007127056357785187,0.03621399873128929,0.7636538550003018,1,0.1978632378294722,0.25906757743505104
+157,2,0.238900236857505,1.7499999999999998,1.3553206427002988,0.0007137080235377993,0.03636929295334975,0.7634608402050851,1,0.23504129492744327,0.3162790629550922
+157,3,0.21619199974457973,1.7499999999999998,1.385636637266985,0.0006998024530191948,0.0365964572259998,0.7688868215805952,1,0.2524056020723631,0.31743252971878166
+157,4,0.28953292273200065,1.6999999999999997,1.3856163299050874,0.0006998644037198493,0.036748999399519006,0.7552878029977791,1,0.3154821480565487,0.37780021169793737
+157,5,0.27505493367033174,1.6999999999999997,1.3855203868706467,0.0006999470776088596,0.036432201396362496,0.755270100153489,1,0.34064314993038874,0.3959922456605874
+157,6,0.2822416722214421,1.7499999999999998,1.3854672403225985,0.0007000657302008255,0.03676241295154548,0.768856811970453,1,0.3533307385870261,0.4030312559554387
+157,7,0.3492804640514055,1.7999999999999998,1.3699123666370763,0.0006886992911073129,0.0363707096822869,0.7792480537755535,1,0.4012988736241832,0.462536382005774
+157,8,0.4004661197209994,1.7999999999999998,1.3680022932098108,0.0007035670285689135,0.03619331840902339,0.778924427220115,1,0.4803503699411307,0.5277532391484905
+157,9,0.3863790513873462,1.7999999999999998,1.3664217022520533,0.0007034471898165735,0.03630404715556978,0.7786520863176148,1,0.5077188140749628,0.5443050858578701
+157,10,0.3832235052172247,1.8499999999999999,1.366976874627741,0.0007078139516600001,0.03646027908960876,0.791401240808129,1,0.5426743218462386,0.5205125882624306
+157,11,0.43544511965806226,1.9,1.367946314711968,0.0007049411757869111,0.03648282753098135,0.8036643791513649,1,0.5751387414057446,0.5512987436525482
+157,12,0.4175392079817084,1.9,1.3724396775767185,0.0007028915439036031,0.03648988884493776,0.8043717653111192,1,0.6228440068739297,0.5280053507737883
+157,13,0.4950289144658632,1.95,1.3541409213133326,0.0006883986819582705,0.03570941008224064,0.8131360639665868,1,0.6741484377192678,0.5845651312605202
+157,14,0.5057350445101108,1.95,1.3530545041556379,0.0006882831364954398,0.03585485595613913,0.8129708961380173,1,0.7028853737595954,0.6152696500209086
+157,15,0.5247889334599513,2.0,1.2716408319719676,0.0007822688793416273,0.035959930763618274,0.812022438242555,1,0.7215145709615921,0.6539436835843814
+157,16,0.5217587534541943,2.0,1.2736172926386478,0.0007947108331882604,0.03610209835143835,0.8123277367271979,1,0.7588761030361899,0.6606943741323942
+157,17,0.5368883294297081,2.0,1.2786685202400934,0.0007829286545586335,0.035739623930336036,0.813093007650817,1,0.7947139079969375,0.6633425541031102
+157,18,0.53868418291266,2.0,1.2822168748924394,0.0007721398033780939,0.03592835634267408,0.8136283899789762,1,0.8286361058924495,0.6574324685189338
+157,19,0.6128955792518381,2.0,1.380247452667896,0.000696755433943104,0.036457962500653404,0.8280174147793206,1,0.861439763691329,0.7277322459176883
+157,20,0.6226533746583867,2.0,1.3801903027534792,0.0006962588056906786,0.03659773449812438,0.8280091347678276,2,0.8936839477815823,0.7505993184858455
+157,21,0.6638563129074596,2.0,1.3759219354632937,0.0006988408643162102,0.0365145040286162,0.827401162723162,2,0.9375439621875082,0.7961290934415209
+157,22,0.7302976192766671,2.0,1.375491267108753,0.0007000768421585285,0.03643241691407142,0.8273400040738602,2,1.0,0.8343253975888907
+157,23,0.713196766295642,2.0,1.38396143125931,0.0006990315624426219,0.03669231778490523,0.8285463048672989,2,1.0,0.8773225543188065
+157,24,0.6491012103199437,2.0,1.3849716298636308,0.0006993311674509145,0.03644727452897324,0.8286898484193256,2,1.0,0.8303373677331458
+157,25,0.7380727598025306,1.95,1.3851713161184773,0.0006997364710171351,0.03660234098245987,0.8178086369514819,2,1.0,0.860242532675102
+157,26,0.7173096928269063,1.95,1.3846785900132907,0.000699162445720053,0.03644000596923282,0.8177350393026547,2,1.0,0.8910323094230205
+157,27,0.7313292848423395,1.9,1.3854741740409708,0.0006995977368078269,0.0366429025939259,0.8064136830042706,2,1.0,0.9377642828077981
+157,28,0.773728170965971,1.95,1.3858266985087797,0.0007000425577992032,0.036419710649750005,0.8179063582367038,2,1.0,0.9790939032199036
+157,29,0.7799999999999999,1.95,1.3853019837392377,0.0007000072862276617,0.03645924347294655,0.8178281860090145,2,1.0,1.0
+157,30,0.685396905018915,2.0,1.3844888444443115,0.0006999186176133779,0.03666745424760318,0.8286214667296089,2,1.0,0.9513230167297165
+157,31,0.6722985780360156,1.95,1.38498383394637,0.0006996382478357598,0.03659311279986935,0.8177806716066331,2,1.0,0.9076619267867184
+157,32,0.7352214799644639,2.0,1.3850215983395036,0.0006993568080755651,0.036335350542997955,0.8286969492565367,1,1.0,0.9507382665482129
+157,33,0.75,2.0,1.3184647933766143,0.0007642128836468184,0.03658064302588593,0.8190602019231753,1,1.0,1.0
+157,34,0.74,2.0,1.3274134707570417,0.00075321868736146,0.03654010659610178,0.8203793765074346,1,1.0,1.0
+157,35,0.72,2.0,1.3261100951526519,0.0007639954900988193,0.03649779683866915,0.8201904134170279,1,1.0,1.0
+157,36,0.72,1.95,1.3351523230784683,0.0007534368119988131,0.0361414393549221,0.810253654637276,1,1.0,1.0
+157,37,0.7069538980892408,2.0,1.3410393382115844,0.0007452830833523259,0.03654852654987197,0.8223761679183731,1,1.0,0.9898463269641359
+157,38,0.7060134727808891,2.0,1.3384637032771487,0.0007448653543572445,0.03644506659494056,0.8219995009480241,1,1.0,0.986711575936297
+157,39,0.74,2.0,1.334534723661006,0.0007452156617796947,0.03655730593661578,0.8214240024048857,1,1.0,1.0
+157,40,0.698223340355216,2.0,1.3334106309361797,0.0007552440203979716,0.036643068821846175,0.8212619976317127,1,1.0,0.96074446785072
+157,41,0.75,1.95,1.3295640533647524,0.0007558552376606035,0.0364799032408565,0.8093937554097547,1,1.0,1.0
+157,42,0.7006833323043078,1.95,1.3370121727669781,0.0007469827643876129,0.03642119553065744,0.8105374456700462,1,1.0,0.9689444410143595
+157,43,0.7380613629603857,1.9,1.3330061266177518,0.0007472480199210709,0.03649616422470666,0.7981063237388584,1,1.0,0.9935378765346189
+157,44,0.7013243250538014,1.9,1.3304571214726981,0.0007588110935633254,0.03633872284682365,0.7976990157603723,1,1.0,0.9710810835126712
+157,45,0.75,1.8499999999999999,1.3263809187178093,0.0007594527149426295,0.0358576500294858,0.7846376100606863,2,1.0,1.0
+157,46,0.73,1.8499999999999999,1.3848530426032906,0.0007018429048279445,0.03637284371528056,0.794335011969189,2,1.0,1.0
+157,47,0.73,1.7999999999999998,1.3855000998809013,0.0007011659116667467,0.036770192495621454,0.7819220404710339,2,1.0,1.0
+157,48,0.75,1.8499999999999999,1.385710126131166,0.0007005839292223378,0.03677845194400663,0.7944745845839245,2,1.0,1.0
+157,49,0.7799999999999999,1.8499999999999999,1.3852248943280792,0.0007008160959095016,0.03658607492410216,0.7943954181642451,2,1.0,1.0
+158,0,0.105208274608076,1.8499999999999999,1.3702987042129815,0.000698985727027395,0.035947853355743645,0.7919461860862433,0,0.1007841314131112,0.2163154068094384
+158,1,0.10591824207232098,1.7999999999999998,1.3711183232113762,0.0006977756291327629,0.03632485952103082,0.7794585537092943,0,0.09484500969362827,0.22660079398289892
+158,2,0.18867840212159553,1.8499999999999999,1.3712154902138272,0.0006965053200471811,0.036412124612767674,0.7920963851798276,0,0.18403827805323159,0.2168769696676763
+158,3,0.22485887562021217,1.8499999999999999,1.370939393307423,0.0006964374786553747,0.03650417006166064,0.7920508916089928,0,0.27755311258472093,0.21279210195441262
+158,4,0.2358259898443709,1.8499999999999999,1.376784635663503,0.000694484724050474,0.036490624693843385,0.7930113552012358,0,0.32550494844380823,0.2187467015561586
+158,5,0.2289039387790864,1.9,1.3762689138925446,0.0006943152244594764,0.03629047112998286,0.8049709305890606,0,0.34510821668396413,0.2362021736850026
+158,6,0.2891320783667664,1.95,1.3761453203141196,0.0006939078152736244,0.03625271093012167,0.8164581780366393,1,0.42823841059598833,0.2594557137612369
+158,7,0.33986427590278273,1.95,1.3779470988493174,0.0006949511253243341,0.03644679194735291,0.816728340550319,1,0.48312399730699096,0.32204892326662116
+158,8,0.3105268968025406,1.95,1.3770812285798701,0.0006945519068952718,0.03632426247505512,0.816598579229995,1,0.537891186119129,0.2845680745162965
+158,9,0.35912242893137436,1.9,1.3780771319367453,0.0006946488614144238,0.03617543497902178,0.8052547557844416,1,0.566818701309457,0.30798316135863857
+158,10,0.3834297433221487,1.9,1.3777157063413792,0.0006942500747698294,0.03651251542287565,0.8051979458350289,2,0.5955985711626921,0.35063438285690623
+158,11,0.39586064479891425,1.9,1.3856044231948137,0.0007005586126022717,0.03647655154979714,0.8064343154552488,2,0.6223219777128074,0.3897728457126376
+158,12,0.41016523583029607,1.95,1.3829081522229212,0.0006978224816143033,0.03656119719558744,0.8174706170553662,2,0.647182172030553,0.4043078900602497
+158,13,0.3752736453414903,2.0,1.3814369347233582,0.000701177843011805,0.03668515945657175,0.8281879949384762,2,0.667980743047355,0.36027116040849433
+158,14,0.4865860041553232,1.95,1.3842208649048302,0.0006992218586349044,0.03669777129890216,0.8176668257114245,2,0.7179541606469256,0.398014466321843
+158,15,0.4619762805825438,1.95,1.384112120804173,0.0006988366114033469,0.036491341960910605,0.8176504978546856,2,0.7678934755037933,0.416062967936755
+158,16,0.47670370091015224,1.9,1.3813751138559556,0.0007011769475389487,0.03670026759706583,0.8057734664951844,2,0.7956958431347805,0.4280845455208003
+158,17,0.4461859453401412,1.95,1.3814787974598963,0.0007030786255104024,0.03631187935362933,0.8172588127842958,2,0.8161825106073416,0.3990431369906818
+158,18,0.5176031084389594,1.9,1.346556232093275,0.0007140016003705103,0.03637340581402269,0.8002702428006507,2,0.8407631781110925,0.4376594573150745
+158,19,0.5135248745856558,1.9,1.3739145821961078,0.0006918033583077711,0.036233346074132436,0.8046002623990095,2,0.871980533645336,0.4491088704250709
+158,20,0.5279779012281427,1.95,1.3747903003772775,0.0006930245083631096,0.036127727775608916,0.816254770539175,2,0.9116190155663987,0.444434316671944
+158,21,0.5778794776245667,2.0,1.3754696135643796,0.0006942418795502347,0.0362377355837147,0.8273352438135653,2,0.9518246104996789,0.4904987780823168
+158,22,0.5988506811497781,2.0,1.3745117520409367,0.0006930957591264589,0.03624771215348398,0.8271980411642759,2,0.9759605973317944,0.5282214740568676
+158,23,0.5952884636728644,2.0,1.373080800037768,0.0006916420874478755,0.036267603200127986,0.8269929870746431,2,1.0,0.5509615455762145
+158,24,0.6291255361568491,2.0,1.373300987193743,0.0006926801118587293,0.03649070040180612,0.8270247852018341,2,1.0,0.59708512052283
+158,25,0.61359820145034,2.0,1.3717292056231667,0.0006910593410616051,0.0364110104076906,0.8267993545351611,2,1.0,0.6119940048344666
+158,26,0.6658794062465135,2.0,1.3742251326108783,0.0007018280381438697,0.03652210155703158,0.8271595643904859,2,1.0,0.6195980208217118
+158,27,0.6478700215375064,2.0,1.3732579471456792,0.000702681384443815,0.036464934322069056,0.8270214895518698,2,1.0,0.6595667384583543
+158,28,0.6616141124044542,2.0,1.3727933098563576,0.0007045975345166713,0.03641518898074596,0.8269555582634808,2,1.0,0.7053803746815139
+158,29,0.7032778832512349,2.0,1.3720966342893937,0.0007063077338960637,0.036541084158226905,0.8268563309180342,2,1.0,0.7442596108374495
+158,30,0.6826023335260711,2.0,1.371062076941087,0.0007076461867886843,0.03634927240863361,0.826708551988218,2,1.0,0.7753411117535702
+158,31,0.6664142180228813,1.95,1.3701867392789215,0.0007095838117194043,0.036461613859446615,0.8155682911691405,2,1.0,0.788047393409604
+158,32,0.674503362602062,2.0,1.3694766111243482,0.000706955151178844,0.03649989624802899,0.8264810998727021,2,1.0,0.8150112086735397
+158,33,0.6836085347402127,2.0,1.380525072500225,0.0006969184013508355,0.03635980126208195,0.8280569919197867,2,1.0,0.8453617824673755
+158,34,0.716148214369043,2.0,1.3800012245541657,0.0006972392915656569,0.03644490994352077,0.8279824857665096,2,1.0,0.8871607145634763
+158,35,0.7051068582145128,2.0,1.3789521833117653,0.0006959430765767604,0.03653774472062561,0.8278326525568966,2,1.0,0.9170228607150424
+158,36,0.7614343825820711,2.0,1.3782247502648337,0.0006961651868051045,0.036479766966802725,0.827729013231902,2,1.0,0.9381146086069037
+158,37,0.6698797021130134,2.0,1.3809260377388244,0.0006968881120869254,0.03644888706488782,0.828114064661104,2,1.0,0.8995990070433778
+158,38,0.7631796250290791,1.95,1.381329081206508,0.0006978174417291419,0.036601606809899254,0.8172348804350953,2,1.0,0.9439320834302638
+158,39,0.7483187168281066,1.95,1.3832192426906564,0.0006983270363317758,0.03667226977930449,0.817517181570491,2,1.0,0.994395722760355
+158,40,0.75,2.0,1.3823277358179387,0.0006974608242142554,0.03656341393691667,0.8283136551307086,2,1.0,1.0
+158,41,0.75,2.0,1.3813017895303168,0.0006966801651773643,0.036629662206953885,0.8281674838290259,2,1.0,1.0
+158,42,0.7799999999999999,2.0,1.3799192670961233,0.0006957221633881394,0.03648645935832789,0.8279703802725965,2,1.0,1.0
+158,43,0.6853549857525032,2.0,1.3817926974363393,0.0006976543293592454,0.036508446926355055,0.8282376089354511,2,1.0,0.9511832858416774
+158,44,0.6721165525221924,1.95,1.3824801496293406,0.0006976335105691677,0.036652080044682914,0.8174066886712259,2,1.0,0.9070551750739748
+158,45,0.7060724663739514,2.0,1.3825845633460854,0.0006975465701938026,0.03663072030669847,0.828350199914614,2,1.0,0.9202415545798378
+158,46,0.6647900203016788,2.0,1.382703762005654,0.0006977908712741336,0.03642589827693906,0.8283672171163253,2,1.0,0.8826334010055957
+158,47,0.7528842591403929,1.95,1.382653254363519,0.0006980880523410472,0.036649417262642495,0.8174326593200096,2,1.0,0.909614197134643
+158,48,0.7611867974928891,1.95,1.3841905307824063,0.0006987255920582758,0.03670293956557497,0.8176621552431664,2,1.0,0.9372893249762968
+158,49,0.7130408345798708,2.0,1.3851742641248417,0.0006994585308648851,0.03658948387866961,0.8287186492246423,2,1.0,0.943469448599569
+159,0,0.010427517117618593,1.95,1.3580869889850968,0.0007127018372391894,0.03605082604743651,0.8137422788162783,1,0.11914230789725577,0.17590197986238768
+159,1,0.18601014333965782,1.9,1.3823510271232893,0.0006997849275726646,0.03663324226171458,0.8059257184212845,1,0.17441387413152576,0.22081531229015844
+159,2,0.18767303765048687,1.9,1.3571475992030289,0.0007132617716427679,0.03630480665394557,0.8019575258765878,1,0.2055689627368158,0.2181515085192018
+159,3,0.17796861262619731,1.95,1.385554241065094,0.0007000699503646292,0.03642829018166308,0.8178657842842467,1,0.2314709224731722,0.21793414545642822
+159,4,0.17196746720056033,2.0,1.3855261148964593,0.0007001342854796493,0.03673016463964301,0.8287687783660082,1,0.26957954246374843,0.18045216738353648
+159,5,0.17494194893540385,2.0,1.3766091529369073,0.000693327037187594,0.0363974689513867,0.827497706985379,1,0.31450817840828027,0.13046225857363908
+159,6,0.20046457105881996,2.0,1.3784153782314097,0.0006948797354177112,0.036068201672204994,0.8277558273306118,1,0.3303701214944186,0.16105507487017515
+159,7,0.27472021693904947,2.0,1.3785223627743428,0.0006948020723164248,0.0364556687927987,0.827771058092282,1,0.38343634103024543,0.23781893508983767
+159,8,0.3102674181528596,2.0,1.3851414745293855,0.0007001451698855218,0.03671833326170159,0.8287141898192709,1,0.43101506582994004,0.292871306069612
+159,9,0.2915691890623511,2.0,1.3782062956917527,0.0006950790278377539,0.03608092054996152,0.8277260719474356,1,0.4439189974850617,0.31333863356108793
+159,10,0.2848938297228099,2.0,1.3795987473584705,0.0006969708882003077,0.03649760337022579,0.827925077906618,1,0.4779069735485836,0.2791034676779216
+159,11,0.3106520327227243,2.0,1.3801823711453352,0.0006966845231375864,0.036556942700703074,0.8280081264779603,1,0.5109202425712811,0.2876131189807061
+159,12,0.36260757136171123,2.0,1.3812259171419075,0.0006982904565818199,0.036573741230793516,0.8281571447872286,1,0.5563173267827818,0.33360213549532847
+159,13,0.3512022482081358,2.0,1.3815334376016932,0.000697832875924595,0.036553189687788916,0.8282007742827187,1,0.5800798518917454,0.3305676915047919
+159,14,0.36328972660253445,2.0,1.3823117872687696,0.0006992145920428317,0.036636506704312045,0.8283118858851608,1,0.613944065707883,0.3257070010646041
+159,15,0.3596170703710162,2.0,1.3695780232107155,0.000722176312729842,0.036285592646780336,0.8265000083116216,1,0.6496316133092811,0.2992147501576792
+159,16,0.4386853868464192,2.0,1.3723019507183243,0.0007188752175789258,0.03660334429454221,0.8268893209930064,1,0.6921965998075593,0.37268915641131833
+159,17,0.4431582041553335,2.0,1.371390500665465,0.0007204879597148255,0.03679546257290846,0.8267592760659306,2,0.7169572883977772,0.38791762932074225
+159,18,0.4465558981756371,2.0,1.3848091923085402,0.0006999728059744169,0.03641858509484744,0.8286669692653492,2,0.7333976308710857,0.4106561527573427
+159,19,0.46186345060848466,2.0,1.3743274611346994,0.0007032035117933963,0.03638912125332435,0.8271745867307951,2,0.7535306889602941,0.4348372500812235
+159,20,0.4384679736327776,2.0,1.374727694821974,0.000706777253302616,0.03664406316576381,0.827232816873128,2,0.7907685541763522,0.4072018398741225
+159,21,0.4918850523785695,1.95,1.3732477735393087,0.0007068626213206117,0.036600118729713936,0.8160274599646536,2,0.8245338246033023,0.4402384084574953
+159,22,0.5390862088134131,1.95,1.3713433039691771,0.000691558831334175,0.036277510955880186,0.8157367756515096,2,0.8589267783621144,0.48505165822855756
+159,23,0.4915152238094224,1.95,1.3699119706743408,0.0006900429725624512,0.03643794238295,0.8155210781842104,2,0.8926765433370011,0.44814868824873993
+159,24,0.6019738727242128,1.9,1.3698911781832432,0.0006910052757710798,0.03636898015918487,0.8039666812581263,2,0.9494215664087295,0.4740174872024033
+159,25,0.5254197947805115,1.9,1.3740935242478403,0.0006923294992595634,0.03606985838496944,0.8046285593190852,2,0.9886344965594812,0.4332199871890631
+159,26,0.6154391542863572,1.8499999999999999,1.373854428349168,0.0006928308088284426,0.036236857165918554,0.7925294213749485,2,1.0,0.45146384762119096
+159,27,0.5648555532152186,1.8499999999999999,1.3772279737374968,0.0006940988325122273,0.036535492366156996,0.7930839905351836,2,1.0,0.4495185107173953
+159,28,0.5654193605338886,1.7999999999999998,1.3774527712083862,0.000694831639976955,0.03645733713927043,0.780544527390173,2,1.0,0.4513978684462954
+159,29,0.6238801683760329,1.8499999999999999,1.3770847444133674,0.0006953288069158567,0.03627028892204691,0.7930608890778345,2,1.0,0.47960056125344314
+159,30,0.5983393116287657,1.8499999999999999,1.380249740270018,0.0006964021639854081,0.03633775893027279,0.7935801832543397,2,1.0,0.49446437209588573
+159,31,0.5820655742685261,1.7999999999999998,1.3791509007580123,0.0006953439796375106,0.036521859322569517,0.7808354448728859,2,1.0,0.5068852475617535
+159,32,0.5878773104754813,1.8499999999999999,1.3787119258032485,0.0006955007829172971,0.03641808632906818,0.7933278635163317,2,1.0,0.5262577015849376
+159,33,0.6176438720903279,1.9,1.3783899306354028,0.0006958354958960698,0.03641998517431367,0.8053041761505252,2,1.0,0.5588129069677594
+159,34,0.6063822092272405,1.9,1.3774944590727682,0.0006947615992080448,0.03648673291309459,0.8051634004164435,2,1.0,0.5879406974241349
+159,35,0.6097791256159661,1.95,1.3768129013214405,0.0006948958861491665,0.03642672163159385,0.816558492742886,2,1.0,0.5992637520532202
+159,36,0.6405831741233492,2.0,1.376203840297144,0.0006950864614384178,0.036339990187193166,0.827440345282169,2,1.0,0.6352772470778306
+159,37,0.5746327512244088,2.0,1.3686613129934164,0.0007021894806616058,0.03622450913017665,0.8263627791466907,2,1.0,0.5821091707480294
+159,38,0.6120690068180161,1.95,1.3758790619869945,0.0006945003927595829,0.03637683253091957,0.8164184523706337,2,1.0,0.606896689393387
+159,39,0.5759307167955723,1.95,1.3739732682904984,0.000701036291837723,0.03643951756078899,0.816134602507464,2,1.0,0.5864357226519076
+159,40,0.6433738049566857,1.9,1.3751406443007825,0.000694363733144939,0.03634414389341871,0.8047937547547114,2,1.0,0.6445793498556189
+159,41,0.6259089584046066,1.9,1.3781405219481546,0.0007003333119483486,0.036549527004292294,0.8052664791747246,2,1.0,0.6530298613486883
+159,42,0.657515313025965,1.95,1.377482908819328,0.0006988594090328011,0.03652994476495365,0.8166600192546681,2,1.0,0.6917177100865499
+159,43,0.595203947267675,1.95,1.3771871163296798,0.0006998501581630808,0.03641607838929842,0.8166160238902521,2,1.0,0.6506798242255833
+159,44,0.6832475421586438,1.9,1.3801289616773338,0.0006995870007065509,0.036517163496840595,0.8055778680980047,2,1.0,0.6774918071954795
+159,45,0.6376371215895084,1.9,1.3795257446688465,0.0007004651991436969,0.03630735935366845,0.8054836487199056,1,1.0,0.6921237386316943
+159,46,0.6546341191517583,1.8499999999999999,1.375449530213967,0.0006926884376667463,0.03639349462967708,0.7927915292955438,1,1.0,0.7154470638391942
+159,47,0.6142354506765871,1.9,1.3781344431684357,0.0006944739432919256,0.036445062871793846,0.8052636882886169,1,1.0,0.6807848355886237
+159,48,0.6009695713929173,1.8499999999999999,1.376959322245482,0.0006937524124705026,0.036499915878468646,0.7930397871631673,1,1.0,0.636565237976391
+159,49,0.6460063022122446,1.9,1.3751609584940783,0.0006926216629208227,0.03618541013085435,0.8047963987553605,1,1.0,0.6866876740408152
+160,0,0.16046230307109272,1.9,1.3568599643350088,0.0007115463573150057,0.03599764614650763,0.8019112942786918,1,0.12632499975108186,0.23310767723553327
+160,1,0.1788662495513286,1.8499999999999999,1.3565998825638208,0.0007102503315976956,0.03615913993077681,0.7896837806687731,1,0.15311009650067925,0.25874070317018966
+160,2,0.19877947686118094,1.9,1.3556314533244802,0.0007092814350239689,0.03630091666799657,0.8017153533506879,1,0.17248196013360592,0.2992889760257952
+160,3,0.2465247591060613,1.95,1.3559901724371815,0.0007077820787142837,0.036410981073753,0.8134227707816329,1,0.22149338887271267,0.3597580118565874
+160,4,0.2308266870698686,1.95,1.3846659235051753,0.0007006071316989316,0.03671478725587883,0.8177335820702974,1,0.24632398359785343,0.37432364543575747
+160,5,0.30315385302466596,2.0,1.3845851095946227,0.0007008729103313805,0.03669721748720738,0.8286354077289846,1,0.3031499248700336,0.43964627692217517
+160,6,0.3164513797035963,2.0,1.3719274191088857,0.0006918588941793927,0.03597250306033582,0.8268279662658932,1,0.33927795933664195,0.4691339865631318
+160,7,0.33574125161557095,2.0,1.375292762488644,0.0006930094257470681,0.0363319600085729,0.8273096267280339,1,0.36471090250752125,0.4995229687085416
+160,8,0.32472363424127626,2.0,1.3779228388257811,0.0006943598140498929,0.036479089725835634,0.827685443332792,1,0.3862199057375818,0.500785573154145
+160,9,0.372823353725849,2.0,1.3782220815235982,0.0006947973608280066,0.036543443948905734,0.8277282425981489,1,0.41261849140373086,0.5592531905478557
+160,10,0.3962757881599391,2.0,1.3726923749563067,0.0006974388493410267,0.03623203703230853,0.8269390650348486,1,0.4437616502642608,0.5959037601807826
+160,11,0.36934808080503734,2.0,1.3757840483503625,0.0006970620013118497,0.03641546132416959,0.8273809622654669,1,0.48525067711450304,0.5508260331974537
+160,12,0.44639862278759895,1.95,1.3753313624234047,0.0006959406551729032,0.03639311894183953,0.8163367811628096,1,0.5348184752930131,0.6082374422346457
+160,13,0.4561476875335904,1.95,1.3819402960852432,0.0006972474471324043,0.03659979507291812,0.8173259848245378,1,0.5690634521845703,0.6284076888658744
+160,14,0.5088245458917866,2.0,1.381214593230654,0.0006968800434579317,0.036427966672423415,0.8281551317994367,1,0.6244468778783587,0.6968193158014768
+160,15,0.47851855039758506,2.0,1.2422346012393355,0.0007636743978579232,0.035256358535487836,0.8074867945011346,1,0.6753878811650197,0.6612113264385905
+160,16,0.5334416365704169,2.0,1.23788992678684,0.0007616201978880635,0.035221173354376405,0.8068098639490878,1,0.7194234283145181,0.685574217482032
+160,17,0.5133651454527081,2.0,1.240172733181139,0.0007837613406007405,0.03514608488979663,0.8071723229766694,1,0.7660122140560781,0.656534199434256
+160,18,0.5323999912382742,2.0,1.2356444370266009,0.0007819147899867734,0.03517696141603073,0.8064659586437536,1,0.7835464473903553,0.6632713742737737
+160,19,0.5322361321059099,2.0,1.2422143212382006,0.0007704546823089028,0.03499267370456839,0.8074857499506624,1,0.8228434147465501,0.6436625540242995
+160,20,0.532613377131427,2.0,1.354706616173216,0.0006841497641068734,0.03593768903189334,0.8243461045490321,1,0.8506751937951718,0.6078109987111944
+160,21,0.575273712628892,2.0,1.352941318349193,0.0006820867267562417,0.03615618628822709,0.824089745609384,1,0.8800607424630719,0.6108313854788776
+160,22,0.5655652095660401,2.0,1.3603910769302443,0.000684039973919434,0.03618014124152348,0.8251676635343441,1,0.8985043238284461,0.620544933448872
+160,23,0.5596607226882208,2.0,1.3610846605887512,0.0006860098411436534,0.03589273599658735,0.8252682696148391,1,0.9420684264526142,0.5761111736905835
+160,24,0.5715336974259194,2.0,1.3845078838152425,0.0007004317306585244,0.03649289674679405,0.828624316184749,1,1.0,0.5384456580863981
+160,25,0.5896957617482524,2.0,1.3844810671034455,0.0006998329058475966,0.03662643774060858,0.8286203379390695,1,1.0,0.5656525391608415
+160,26,0.6413581907354127,2.0,1.384607256675125,0.0007005776822029081,0.03674557824337944,0.8286384687214017,1,1.0,0.6378606357847088
+160,27,0.6126794419898338,2.0,1.3609989898662704,0.0006859033956690881,0.03631053119763214,0.8252558848043429,1,1.0,0.6422648066327791
+160,28,0.6661546181585174,1.95,1.3611476927861457,0.0006877550402409236,0.03627442426416358,0.8141981836207292,1,1.0,0.7205153938617246
+160,29,0.6824585401275238,1.95,1.3601748317070568,0.0006891949782289463,0.03559491424491951,0.814051400624939,1,1.0,0.7748618004250792
+160,30,0.7008431168099822,2.0,1.3593838968927758,0.0006907857304179904,0.035943918016111506,0.8250242617515006,1,1.0,0.8361437226999405
+160,31,0.6534354357428639,2.0,1.3284180349704224,0.000757973734955073,0.0361261412290141,0.8205287589657632,1,1.0,0.8114514524762129
+160,32,0.6422935998558725,1.95,1.3246038253257924,0.0007583439937726435,0.03643178869024951,0.8086281093734211,1,1.0,0.774311999519575
+160,33,0.6568316064323647,2.0,1.3588459902551815,0.0006914791078339228,0.036137914212557035,0.8249467966480757,1,1.0,0.7894386881078821
+160,34,0.70337196355584,2.0,1.3595409678430606,0.0006942697794148498,0.03629381859980092,0.8250479410395269,1,1.0,0.8445732118527995
+160,35,0.7029161720508674,2.0,1.3181508202144316,0.000758316636667465,0.03629214544924135,0.8190119182434085,1,1.0,0.876387240169558
+160,36,0.6669268278302831,2.0,1.317052463790846,0.0007704630786180606,0.036014379291345905,0.8188526537505812,1,1.0,0.8564227594342773
+160,37,0.7070193075739486,1.95,1.31288155483526,0.0007707365656195773,0.03597495737634,0.8068114009222146,1,1.0,0.8900643585798285
+160,38,0.7157239385177294,1.95,1.3094661385182067,0.0007841200229163647,0.03669279869703349,0.8062826739056401,1,1.0,0.9190797950590979
+160,39,0.6745294450552421,2.0,1.3072431911632687,0.0007944219016206886,0.036657500797663105,0.8174002137358528,1,1.0,0.8817648168508073
+160,40,0.7160419804983699,1.95,1.3052166712583888,0.0007935517435460627,0.03668354154749231,0.805621035649575,1,1.0,0.9201399349945661
+160,41,0.7207965838637114,1.95,1.3007522019457372,0.0008053411317857413,0.03595050021250641,0.804924666933005,1,1.0,0.9359886128790376
+160,42,0.7255383792395842,2.0,1.2978644504447971,0.0008136282740393533,0.0366105692488995,0.8160019683252968,1,1.0,0.9517945974652806
+160,43,0.683010542887212,2.0,1.2968183742737496,0.0008179081828348524,0.03623531638522458,0.8158461416856696,1,1.0,0.9100351429573732
+160,44,0.719938894629329,1.95,1.2934561509111975,0.0008204286663823795,0.03669551589793862,0.8037812439300264,1,1.0,0.9331296487644299
+160,45,0.7411186497894312,1.95,1.2880982221180814,0.0008296702167710675,0.036798261445649516,0.8029377566573995,1,1.0,0.9703954992981038
+160,46,0.74,1.95,1.2998673971659152,0.0008139400678528946,0.03640217710759325,0.8047883984323752,1,1.0,1.0
+160,47,0.6993858098840842,2.0,1.2966608237985153,0.0008192815780381478,0.036192010762400265,0.8158228826548244,1,1.0,0.9646193662802803
+160,48,0.74,1.95,1.2956096968708235,0.000819838882205173,0.03637280295593658,0.8041204866607711,1,1.0,1.0
+160,49,0.7013433776766462,1.95,1.2902344780785537,0.0008277148433014067,0.03683063148278968,0.8032749369663261,0,1.0,0.9711445922554872
+161,0,0.13148557462936736,1.9,1.3664179063480066,0.0006950682693959757,0.03589748959852554,0.8034199842395837,0,0.1212075840103726,0.21000847008406104
+161,1,0.1485909056839383,1.8499999999999999,1.3681361486266916,0.000693996820325746,0.03619016263279605,0.7915879963079073,0,0.15263949578852143,0.2251170245617658
+161,2,0.21731471008888925,1.9,1.369353286626826,0.0006929678535940776,0.036380749037146054,0.8038825122211303,0,0.2570571883537407,0.21497278249130994
+161,3,0.26163496517872936,1.9,1.3776948617277813,0.0006946353460729607,0.03644369981359595,0.8051947971131137,0,0.35990747058562705,0.2255732564815952
+161,4,0.27245986040674236,1.9,1.378709181541145,0.0006958027329288282,0.03654608074435311,0.8053542161452009,0,0.41321181749452984,0.22391711136310155
+161,5,0.3024998616321036,1.95,1.3550898537060996,0.000728487195498383,0.036388521967317566,0.8132923824386523,0,0.4870667921042389,0.22557714930136014
+161,6,0.33398159201260064,1.95,1.355112816217172,0.0007285554118791547,0.036447435070820176,0.8132958899389924,0,0.5611055662397252,0.23179788505570204
+161,7,0.38147098296006104,1.95,1.3542950756171779,0.0007294297136384243,0.03640529259001869,0.8131719533979292,0,0.6672403707016268,0.21524944893136772
+161,8,0.4032443744570268,2.0,0.7736330230477546,0.000884797602922177,0.031112459758290894,0.7242021943324513,0,0.7355581502366179,0.23007038120793227
+161,9,0.4284972084014985,2.0,0.7940487136917254,0.0009636908410294482,0.032469818926402785,0.7282923935754693,0,0.8036471230203507,0.22346119731119418
+161,10,0.3919119203051925,2.0,1.320708172657393,0.0006637051507078229,0.034917368585111026,0.8193626842267235,0,0.7998420244274571,0.23991703511403215
+161,11,0.46784690552673336,2.0,0.8207951247025089,0.001141294896087888,0.03436620845248892,0.7336220307945472,0,0.8917733680355839,0.2037918610416659
+161,12,0.468692297555091,2.0,1.3365854733398081,0.0006701760254938752,0.0354015140454,0.821702634998383,0,0.9335490123381469,0.1842423087327742
+161,13,0.43479904353687704,2.0,1.1511362289990568,0.0007151350752488614,0.03228921392542531,0.79291168446305,0,0.9451181075420894,0.18917266840013747
+161,14,0.4775658818136497,2.0,1.1526577047495026,0.0007228026535947271,0.033086120432855415,0.7931639194395232,0,0.9814227349119959,0.2166559594961709
+161,15,0.4955850933042876,2.0,1.3378805475549567,0.0006706536634320412,0.03550648464912778,0.8218924337678779,0,1.0,0.251950311014292
+161,16,0.5001448687501153,2.0,1.3425551282889219,0.0006747232662784072,0.03568157629152944,0.8225768820073018,0,1.0,0.2671495625003845
+161,17,0.5209184942696841,2.0,1.3461833848504465,0.0006786811203336283,0.03556548753699154,0.8231069377869769,0,1.0,0.23639498089894662
+161,18,0.5230266287334063,2.0,1.3449741566641065,0.0006774904606608179,0.03561047473267885,0.8229304560653323,0,1.0,0.24342209577802082
+161,19,0.47233884190818554,2.0,1.3436764774958125,0.0006761591364944827,0.03531515700044664,0.8227408959871457,0,1.0,0.24112947302728502
+161,20,0.512176202015738,1.95,1.3424825507188585,0.0006760476833264628,0.03536762659821449,0.8113543722317538,1,1.0,0.2072540067191266
+161,21,0.5131415626223396,1.95,1.3538925221480824,0.0006869507412271611,0.0361155716354791,0.8130978777336538,1,1.0,0.24380520874113193
+161,22,0.48011595494682247,2.0,1.3524183398415612,0.0006850675811079021,0.03579929254439031,0.8240147832774857,1,1.0,0.23371984982274144
+161,23,0.5401796496720302,1.95,1.3600916017002227,0.0006862635099899045,0.03595477488242396,0.814037914095728,1,1.0,0.30059883224010064
+161,24,0.5560985689577683,1.95,1.3582350083198929,0.0006863146516741421,0.03567921299964343,0.8137567142623476,1,1.0,0.3536618965258943
+161,25,0.505500201296271,2.0,1.3568834187932202,0.0006865193649592357,0.03577762451428914,0.8246617674616903,1,1.0,0.3183340043209033
+161,26,0.5625403818199818,1.95,1.363378560212234,0.0006876967614172823,0.03587700218112564,0.8145354139959782,1,1.0,0.37513460606660565
+161,27,0.5176850684023581,1.95,1.3614984737814693,0.0006873405029246297,0.03614951177647405,0.8142511183518693,1,1.0,0.35895022800786025
+161,28,0.5813695532114715,1.9,1.366350181544,0.0006883522593020266,0.036155060326399445,0.8034071663143532,1,1.0,0.4378985107049051
+161,29,0.6009505098326491,1.9,1.3832080982510555,0.0007008758912221925,0.03669957319307183,0.8060600783960178,1,1.0,0.5031683661088302
+161,30,0.5961005500796477,1.95,1.3823142730316926,0.0007009911927635347,0.03662983769812747,0.8173829321805349,1,1.0,0.5203351669321589
+161,31,0.5753601343128862,2.0,1.3835248322945966,0.0007003506689259433,0.036684565628762184,0.8284846487737846,1,1.0,0.5178671143762873
+161,32,0.5507745261985745,1.95,1.3837757150734964,0.0007015708025801571,0.03675723800558302,0.8176011505175133,1,1.0,0.46924842066191474
+161,33,0.6020894534581974,1.9,1.3839158184719866,0.0007007503925031099,0.03665243602781446,0.8061706511521943,1,1.0,0.5069648448606577
+161,34,0.580546108425138,1.9,1.3830526869217925,0.0007008586050378227,0.03651114990857731,0.8060357768129298,1,1.0,0.5351536947504599
+161,35,0.5802369530102968,1.8499999999999999,1.3831159169574834,0.0007021691250015517,0.036759144666098476,0.7940511847292515,1,1.0,0.534123176700989
+161,36,0.6271095821372158,1.9,1.3828346407233065,0.0007034004133868309,0.03669065240129807,0.8060024796249758,1,1.0,0.590365273790719
+161,37,0.629188382510153,1.9,1.382081893763639,0.000703796916028941,0.036535841196034556,0.8058848751827562,1,1.0,0.6306279417005098
+161,38,0.6590469140885006,1.95,1.357582545953443,0.0006951797237097922,0.035925246176572695,0.8136604971673966,1,1.0,0.6968230469616685
+161,39,0.6297195911942415,1.95,1.3570830852776505,0.0006965464622986895,0.0360561081045408,0.8135851730995489,1,1.0,0.6990653039808048
+161,40,0.657229669640516,1.9,1.356988954910789,0.0006993550876421122,0.03594762368452376,0.8019279106955378,1,1.0,0.7240988988017198
+161,41,0.6366067374428013,1.9,1.3637364555949318,0.0006980060874524998,0.036173745009169124,0.8029970706913815,1,1.0,0.7220224581426707
+161,42,0.6233770277131642,1.8499999999999999,1.363414564884281,0.0007002029261580605,0.03644470371261043,0.7908100271302387,1,1.0,0.7112567590438804
+161,43,0.6575447283752498,1.9,1.36181580318396,0.0006979482514218481,0.03584702485817175,0.8026930422107199,1,1.0,0.725149094584166
+161,44,0.6833709692955834,1.9,1.3686999330634761,0.000697180797472564,0.03621040140003874,0.8037808159512226,1,1.0,0.7779032309852776
+161,45,0.6551738057299166,1.9,1.3677930190794692,0.0006983526159513348,0.0360628556916892,0.8036381104300575,1,1.0,0.7839126857663883
+161,46,0.6370347172855987,1.8499999999999999,1.3674720238384093,0.0007002792869318412,0.03630458842564531,0.7914804838601369,1,1.0,0.7567823909519955
+161,47,0.6982205952425244,1.9,1.3660470882690379,0.0006981708083144838,0.03616875002894235,0.8033623922356379,1,1.0,0.8274019841417479
+161,48,0.7158387923965096,1.9,1.3081690294793222,0.0007628208083057964,0.03646893319336667,0.7940797061769862,1,1.0,0.8861293079883652
+161,49,0.7370222311527042,1.95,1.3167640578887716,0.0007517986895064592,0.03622850156893925,0.807409943775726,1,1.0,0.9567407705090138
+162,0,0.18183187056653383,1.95,1.365366845004978,0.0006913794215108755,0.035676745613004664,0.8148367025965728,0,0.20455318092256355,0.16670199399169472
+162,1,0.19628081181140486,1.9,1.3672503289949018,0.0006894814907099217,0.036005465240139194,0.8035496569733933,1,0.2726490701466083,0.15740394584253845
+162,2,0.24471513615634788,1.95,1.3786807458748869,0.000694865069989939,0.036428225706372545,0.8168381038878159,1,0.3333425212488726,0.20459375885599612
+162,3,0.2546251249971282,1.95,1.384646719326697,0.0007008080032780684,0.036436574004209375,0.8177307796376106,1,0.36054574410946433,0.2346894245111415
+162,4,0.2339614757472624,2.0,1.384571629213547,0.0007004473987253972,0.03670849169761147,0.8286333726776361,1,0.4125539271213737,0.19646634966237636
+162,5,0.3163183861895917,1.95,1.3705810114641017,0.000690062516656573,0.03627616206063802,0.8156217176264666,1,0.47102259788810946,0.2596978234478263
+162,6,0.29426871909215874,1.95,1.3825776775847451,0.0007001765726985119,0.03654728540390707,0.817422003631013,1,0.4834084142784443,0.26968451126927
+162,7,0.2904231332927505,1.9,1.3828338337217112,0.0007013079932995794,0.0367097724622956,0.8060016990870125,1,0.517456292740452,0.24480205398856555
+162,8,0.29855187268929206,1.95,1.3833877940323327,0.0007007788390503249,0.03647283424046987,0.8175430566468779,1,0.5584530707038549,0.21723548135916715
+162,9,0.37185517308754196,2.0,1.3838501337292968,0.0007002569838292996,0.03638107059498412,0.828530841845053,1,0.6041645676556124,0.2672978200843233
+162,10,0.3371569612566966,2.0,1.3704670492296482,0.0007217548724265706,0.036632464535225735,0.8266273348384057,1,0.6453257057725067,0.23008892982564633
+162,11,0.38931657650030166,1.95,1.3725089918786777,0.0007186846157595157,0.03679091104598323,0.8159200744807231,1,0.6735619306069093,0.26630601419179317
+162,12,0.3726276089057796,1.95,1.3745355379009871,0.0007162057149774091,0.03662049596737471,0.816223512029108,1,0.7220566751410997,0.24601646283113238
+162,13,0.453795422280822,2.0,1.376194649675569,0.0007136833704031949,0.03678652512931537,0.8274443436208588,1,0.77974425077909,0.3063257398972865
+162,14,0.4838199081323044,2.0,1.375651876872304,0.0007145483806622109,0.03673229891629344,0.8273670797368463,1,0.8205222627552118,0.35203667676739897
+162,15,0.5239367290119836,2.0,1.359373908084363,0.000686527909239739,0.03602183863014023,0.8250215904471832,1,0.8762794155462408,0.4114165426449575
+162,16,0.5323380832377435,2.0,1.383742983196708,0.0007023765948875835,0.036631541937135005,0.8285162209995866,1,0.9048782052024892,0.43462267052249254
+162,17,0.5235962728730214,2.0,1.384360661763331,0.0007016168853702326,0.03676457096294893,0.8286037453805147,1,0.924579077100266,0.44588214010971644
+162,18,0.5294511151016879,2.0,1.384239379026331,0.000702451790831588,0.03650317373791734,0.8285867573354683,1,0.9773530261107627,0.4283663488579428
+162,19,0.568672340089122,2.0,1.384749207414966,0.0007017238318199818,0.036684851353237534,0.8286589497942358,1,0.9920059097874008,0.43956658724720565
+162,20,0.6005135030233132,2.0,1.385209684394127,0.0007011414685485084,0.03676286720919493,0.8287241546168918,1,1.0,0.501711676744377
+162,21,0.5746206904830239,2.0,1.3846699395964455,0.0007013254597201292,0.036431572147263364,0.8286475816646964,1,1.0,0.5154023016100796
+162,22,0.6044897432204834,1.95,1.38454917344656,0.0007021530285456442,0.03662905059592025,0.8177166412202873,1,1.0,0.5482991440682778
+162,23,0.6319864472822755,1.95,1.3848583359481004,0.0007014037779803727,0.03653814200978843,0.8177624959446816,1,1.0,0.6066214909409181
+162,24,0.6046841396889742,1.95,1.3662573789814771,0.0006991795659007411,0.036178819515462715,0.8149733791859217,1,1.0,0.6156137989632473
+162,25,0.6480516229985044,1.9,1.3658745236159073,0.0007010249685312755,0.03627768587670588,0.8033360323964739,1,1.0,0.6601720766616812
+162,26,0.5978483688296294,1.9,1.3645077301840502,0.0007023400997889283,0.03631934441320771,0.8031204228210481,1,1.0,0.6261612294320978
+162,27,0.6541307786403345,1.8499999999999999,1.36365688115882,0.000700152034079985,0.03615198023751285,0.790850093736663,1,1.0,0.6804359288011149
+162,28,0.5978047825293477,1.8499999999999999,1.3620928321839547,0.0007014285876320266,0.03623894384947942,0.7905916953009432,1,1.0,0.6260159417644922
+162,29,0.6077901409349309,1.7999999999999998,1.361131394980947,0.0006990904584475702,0.03628878368610324,0.7777374357012317,1,1.0,0.6259671364497694
+162,30,0.5893365454378438,1.8499999999999999,1.3602253386846792,0.0007014781875785827,0.03609256640248502,0.7902823683327815,1,1.0,0.5977884847928123
+162,31,0.6248126540379998,1.9,1.3838058741202646,0.0007018792700538559,0.03675599610883705,0.8061538235401654,1,1.0,0.6160421801266657
+162,32,0.5793554845336013,1.9,1.3609991288165462,0.0007003588945209709,0.03608420145301153,0.8025644318204943,1,1.0,0.564518281778671
+162,33,0.6421610376011033,1.8499999999999999,1.3840538464529095,0.0007005360002398743,0.03662835176932271,0.7942039918472956,1,1.0,0.6405367920036776
+162,34,0.6624089182011987,1.8499999999999999,1.3600435999397213,0.000699554874243731,0.03611558458990242,0.7902516084714042,1,1.0,0.7080297273373288
+162,35,0.615457157909555,1.8499999999999999,1.3589796766678814,0.0007009957986299395,0.03639685619476986,0.7900756824441004,1,1.0,0.68485719303185
+162,36,0.67380155678796,1.7999999999999998,1.3579312738971685,0.0006985850973727498,0.03614869451702583,0.7771835899843426,1,1.0,0.7460051892932
+162,37,0.6273638740233736,1.7999999999999998,1.3560340646401332,0.0006999401552224714,0.03596522891747854,0.7768553487055879,1,1.0,0.7245462467445787
+162,38,0.6370251402828652,1.7499999999999998,1.354842146118385,0.0006973541490255654,0.03608638118677664,0.7633685102070012,1,1.0,0.7234171342762172
+162,39,0.6745068023005678,1.7999999999999998,1.3539527962682483,0.0007003951535684389,0.035922477256760975,0.7764945085610385,1,1.0,0.7483560076685593
+162,40,0.6758656311582211,1.7999999999999998,1.3534573866663593,0.0007018303863008458,0.03603755063473895,0.7764090163654419,1,1.0,0.7862187705274035
+162,41,0.6404660379230993,1.8499999999999999,1.3614426791253174,0.0006999100712829103,0.03602883488942884,0.7904835349311402,1,1.0,0.7682201264103309
+162,42,0.6368125715201451,1.7999999999999998,1.360918025040885,0.0006974450522969134,0.03602106201658355,0.7776999810546013,1,1.0,0.7560419050671506
+162,43,0.6286478135550757,1.8499999999999999,1.3590454483998782,0.0006950229239469819,0.036054368518623,0.7900846096721865,1,1.0,0.7288260451835855
+162,44,0.6395447925540165,1.9,1.3582756124704884,0.0006926906363047703,0.03593114920734873,0.802130087874508,1,1.0,0.731815975180055
+162,45,0.6424268949271004,1.95,1.3589121843604692,0.0006955085845752389,0.035772368293218136,0.8138621086442165,1,1.0,0.7414229830903343
+162,46,0.623371094910182,2.0,1.3591488859519396,0.0006978331548793777,0.03593422309129628,0.8249923681848111,1,1.0,0.7112369830339401
+162,47,0.6297680929286392,2.0,1.3585094721091184,0.0006955180136031095,0.03600029430486183,0.8248993616554227,1,1.0,0.6992269764287972
+162,48,0.6062725409134035,2.0,1.3579332836176081,0.0006975155157981641,0.03590041060175475,0.8248166984312454,1,1.0,0.6542418030446786
+162,49,0.6616208900295485,1.95,1.3566846126679792,0.0006951996275345166,0.03575088026217098,0.813524322826764,1,1.0,0.7054029667651615
+163,0,0.1679997064432484,1.95,1.3560450281841023,0.0007084626055285739,0.03593752974902648,0.8134313024396327,1,0.13728144939244574,0.24362375562090036
+163,1,0.15680542823452084,1.9,1.3557489047147404,0.0007073492622203839,0.036070271811512664,0.8017334094196409,1,0.14421307794113636,0.2637339901935543
+163,2,0.16602142826421082,1.95,1.3548079953054848,0.0007085105879851573,0.03626097320063341,0.8132435110992164,1,0.1659099971817735,0.2655247646383381
+163,3,0.1729569770142758,2.0,1.355223210449794,0.0007090890163500863,0.03641706320404861,0.8244281145135203,1,0.23310361100842555,0.2323851087030185
+163,4,0.1885207351156173,2.0,1.3840378445264103,0.0007005256175754448,0.036658934062969634,0.8285575841203648,1,0.2440840153288637,0.23629042994690608
+163,5,0.23324760275726905,2.0,1.3839512540242274,0.0007007153572217966,0.036718404786779305,0.8285453375051034,1,0.2760122016071786,0.276142407047992
+163,6,0.25997701750171004,2.0,1.383852204388202,0.0007003580497790921,0.03635625369174737,0.8285311647344876,1,0.3166648982913158,0.31103686061727914
+163,7,0.24478747918613827,2.0,1.3837218236964104,0.0007000266974891071,0.03666760382948618,0.8285125469549129,1,0.3278477525469116,0.31216126055791205
+163,8,0.28129943595054535,2.0,1.383608132034238,0.0007002101935977792,0.03667543883269815,0.8284964452423056,1,0.34623746571102854,0.34268149888711313
+163,9,0.2589638274908135,2.0,1.3834511590942347,0.0006998387562363167,0.03649595521748582,0.8284740342276645,1,0.3449761383829922,0.3365779071253887
+163,10,0.27222456621474705,1.95,1.3833091105243562,0.0007000326456431318,0.036615597721367445,0.8175310967922268,1,0.3751852900299541,0.3405015006758846
+163,11,0.27547882756126146,2.0,1.3830629609229819,0.0007002042829793958,0.036587705721012026,0.8284189662789954,1,0.4252021865486531,0.3179931764726673
+163,12,0.3593010812748177,2.0,1.3836820005949988,0.0007002536800832955,0.03653228338608548,0.8285069533351244,1,0.4881381405668002,0.3801527501603253
+163,13,0.3315553247705163,2.0,1.3831067068133358,0.0007002172914556004,0.03664912592161993,0.8284251879714686,1,0.537910517126566,0.35463705973296616
+163,14,0.41556214912521444,1.95,1.3833660684216522,0.0006996700340688759,0.03668163556801595,0.817539485095524,1,0.5932303694264912,0.42756667118205993
+163,15,0.3967667938516586,1.95,1.3791298896128563,0.0006962826874351898,0.03644578587906897,0.8169057164127215,1,0.6245571042667514,0.42314650714986013
+163,16,0.4108808705188952,2.0,1.3528566845456593,0.000687880838281539,0.03587635679266985,0.8240791562450046,1,0.6544811159350991,0.4302947471495186
+163,17,0.397586996563556,2.0,1.3557773013591101,0.0006930962449698942,0.03606771689733014,0.8245036745844647,1,0.68343399118494,0.3807113336319332
+163,18,0.4036179206975874,2.0,1.3611864508083782,0.0007229957836345806,0.036635755997338745,0.8252936131585302,1,0.729062649965785,0.3399762023709113
+163,19,0.48465293147897887,2.0,1.3640402311749107,0.0007186434937642318,0.03656972807259819,0.8257034481787752,1,0.7867555664290312,0.3998356830245546
+163,20,0.4438092257672371,2.0,1.3620299034979482,0.0007190210548679387,0.036549285311614235,0.8254140466721535,1,0.8171056850760996,0.3565565057893241
+163,21,0.49450941296668877,1.95,1.349042038809065,0.0006827718904903655,0.03565688325031298,0.8123583574542788,1,0.8365381502514762,0.3996471762203277
+163,22,0.5431212353434356,1.95,1.3471444884066004,0.0006805654119056177,0.03571602795552466,0.8120682646325367,1,0.8806974475721316,0.46947418771527644
+163,23,0.5506215053084014,1.95,1.3828802271784393,0.0007007167343286433,0.03648864312042109,0.8174673139858717,1,0.9152026173381698,0.48180152791044445
+163,24,0.6018400720732031,2.0,1.382812154013925,0.0006998161836568377,0.036569823278029524,0.8283832030541282,1,0.9702592254532555,0.5457879396396695
+163,25,0.5806070738496916,2.0,1.382074021208211,0.0006998343189331302,0.03654837851709386,0.8282782465155134,1,0.9816045496314996,0.5598841799903057
+163,26,0.6342440525748342,1.95,1.3822951217053379,0.0007012198883100792,0.036685845590171365,0.8173801417562604,1,1.0,0.6141468419161138
+163,27,0.6078680114490969,1.95,1.3458363642049602,0.0006740690326207009,0.0357599401420597,0.8118665613551836,1,1.0,0.6262267048303227
+163,28,0.6154615215580853,1.9,1.3440577100869806,0.0006737194670052791,0.035501479153825004,0.7998576881099169,1,1.0,0.6515384051936177
+163,29,0.6027808261437002,1.95,1.3410752904706167,0.0006725957511013147,0.035139926727116494,0.8111378271476508,2,1.0,0.6426027538123339
+163,30,0.6751386943035981,2.0,1.3728683561519228,0.0006913796821573092,0.036214447258463636,0.8269625143315318,2,1.0,0.650462314345327
+163,31,0.5777192116105473,2.0,1.3729630472737298,0.0006923378316990526,0.036202578267370236,0.8269763379834432,2,1.0,0.5923973720351576
+163,32,0.5667079779234382,1.95,1.3748675439898481,0.00069387057317658,0.03634634564984316,0.8162666092567453,2,1.0,0.5556932597447938
+163,33,0.6307338277195497,2.0,1.3752730995447608,0.0006952897990470173,0.036399828782966534,0.8273074690904816,2,1.0,0.6024460923984986
+163,34,0.6431861438500437,2.0,1.3764101935450586,0.0006936265002404824,0.036471791666068024,0.8274693901312821,2,1.0,0.6439538128334786
+163,35,0.6332054512771694,2.0,1.3766213212791145,0.0006944306707527277,0.03643037483641002,0.8274997590256944,2,1.0,0.6773515042572312
+163,36,0.5884013428870396,2.0,1.3752490681716751,0.000693088143018552,0.036202592060143264,0.8273034065943052,2,1.0,0.6280044762901321
+163,37,0.6526399373950711,1.95,1.3783899641800508,0.0006946114532031556,0.03629229716332947,0.8167945190757611,2,1.0,0.6754664579835701
+163,38,0.5914280507561984,1.95,1.3782127116719451,0.000694857844613184,0.03654470040378851,0.8167680670514283,2,1.0,0.6380935025206612
+163,39,0.6317222298307602,1.9,1.3806586775776455,0.0006962109476518492,0.03656693700543135,0.8056597627313353,2,1.0,0.6724074327692006
+163,40,0.6898625497913742,1.9,1.3792242171750304,0.0006951642571628172,0.03641121500185932,0.8054347397069372,2,1.0,0.6995418326379141
+163,41,0.6512583773934375,1.9,1.3794822064879388,0.0006954499124759201,0.036522067904113095,0.8054752554440504,2,1.0,0.7375279246447916
+163,42,0.6896586270860856,1.8499999999999999,1.3780767039504553,0.0006943471040364248,0.03655347033638721,0.7932233154671706,2,1.0,0.7988620902869519
+163,43,0.6756331332168253,1.8499999999999999,1.3779719407399018,0.0006945054814800674,0.036143203824751655,0.7932061836257311,2,1.0,0.8187771107227506
+163,44,0.7128134903138135,1.9,1.3780587194596683,0.0007004764094782911,0.036561048571643655,0.8052536960929237,2,1.0,0.8760449677127115
+163,45,0.7240925754566525,1.9,1.376963743607626,0.000700860596275662,0.03643718900515543,0.8050820449618599,2,1.0,0.9136419181888418
+163,46,0.71456807929886,1.95,1.3753901650808007,0.0007011289859555919,0.03656099070051382,0.8163471530631267,2,1.0,0.948560264329533
+163,47,0.7673681217946763,2.0,1.3789283897321505,0.0007001858711759886,0.03649896795692649,0.827830470763103,2,1.0,0.9578937393155877
+163,48,0.7759277541048566,2.0,1.3793708617778229,0.0007026454398264181,0.0365349331041511,0.8278942268157947,2,1.0,0.9864258470161887
+163,49,0.7799999999999999,2.0,1.3791225676726568,0.0007048904110772351,0.03651140569045231,0.8278594855108855,2,1.0,1.0
+164,0,0.13231608229298492,2.0,1.3619698288883622,0.000706627481835739,0.036009578198333794,0.8254018172718923,1,0.12079051220773952,0.21333292469963036
+164,1,0.1432765312608494,1.95,1.3617648019566517,0.0007071567187184494,0.03623750797618778,0.8142973892923429,1,0.14004538101003874,0.22419459618944637
+164,2,0.18288160099668177,2.0,1.360996315024879,0.000707917130403801,0.036290530205029904,0.8252618481291243,1,0.16215947611335585,0.26005936850446476
+164,3,0.19893278291688637,2.0,1.3613086442001163,0.0007067268469634842,0.03645806268640012,0.8253065396786412,2,0.19305245078792685,0.2723726753390521
+164,4,0.16745835196038064,2.0,1.3862795076114505,0.0007001724638217762,0.03672732236900715,0.8288756774977301,2,0.2372663310521422,0.24183939846507918
+164,5,0.21931145293740445,1.95,1.3860148571804123,0.0007001072816709829,0.03673882958466057,0.817934399352263,2,0.2740486364801228,0.26563999448451775
+164,6,0.2956835192007187,1.95,1.3858936776286475,0.0007000905285491512,0.03640803535396831,0.817916347884666,2,0.325418469504473,0.285053771329765
+164,7,0.29892030460137464,1.95,1.3858557412862165,0.0006999588725227725,0.036759137883251525,0.8179106587717565,2,0.3757460197627565,0.3287396556542401
+164,8,0.30600043306775715,2.0,1.3860022125927882,0.0006999775282813695,0.03667116660005393,0.8288362868568948,2,0.4169659239901472,0.3640468782389941
+164,9,0.3469102749138046,2.0,1.3857980543650739,0.0007001692547282549,0.036381954993737656,0.8288073760656021,2,0.44472196392760577,0.3967382978092077
+164,10,0.29915904689327355,2.0,1.3858255410398692,0.0007004430580979641,0.03668987729262958,0.8288113536928609,2,0.4800573451712564,0.3571203627492367
+164,11,0.3506279734068293,1.95,1.3860203967323508,0.0007003237349934399,0.03676318065974834,0.8179352887554755,2,0.5158300226614012,0.38098654780756247
+164,12,0.37581686738741227,1.95,1.3860334584211533,0.0007001625594250374,0.036522869012863064,0.8179371858536773,2,0.5604403268650777,0.40546912213793723
+164,13,0.39455106811404994,1.95,1.3851392451728544,0.0006994813217421837,0.0367457803087789,0.8178037823717386,2,0.5888138572466425,0.4300850840513099
+164,14,0.41850165907274883,2.0,1.3848930863051208,0.0006992347886009258,0.03658555516290331,0.8286786704876858,2,0.629072286863084,0.4562424810917174
+164,15,0.43549894413262835,2.0,1.3686151162999134,0.000724372839326116,0.03659046011230242,0.826362516568127,2,0.6534289461786267,0.4804245522039254
+164,16,0.5154333182614843,2.0,1.3675911877795481,0.0007257216867056673,0.036763037040395005,0.8262159338600676,2,0.7008305511796942,0.5170036592986891
+164,17,0.4417565299583358,2.0,1.3702169383279255,0.0007216410269207255,0.03672634509745828,0.8265914547334582,2,0.7426267879064825,0.4823527159858094
+164,18,0.5575683320855109,1.95,1.3692259073027557,0.0007230421273542187,0.036317775851451205,0.8154277733458413,2,0.8095441877059281,0.5125021900104658
+164,19,0.5319397305086117,1.95,1.3739330435188581,0.0006936018991306492,0.03631173539389361,0.8161263350841822,2,0.8489579863257013,0.5411884532611037
+164,20,0.5128808168510318,1.9,1.3731362097381759,0.000693824359579038,0.03612255782946351,0.8044784944725636,2,0.9017194076520343,0.5073101793007271
+164,21,0.5077855105334068,1.95,1.3733119121631212,0.0006952910359533061,0.03639576934097946,0.8160336143947303,2,0.92091406909829,0.46473294298030265
+164,22,0.5134542583770307,2.0,1.3737671976593426,0.0006968819453361252,0.03644182484861762,0.8270926704890436,2,0.9664217479421457,0.4229518640005749
+164,23,0.5951565901738118,2.0,1.373947118999248,0.0006981960127405668,0.036421633028068626,0.8271187754008756,2,1.0,0.48385530057937276
+164,24,0.5993751868884165,2.0,1.373049130612503,0.0006966147742883318,0.03649514723462766,0.8269898788711442,2,1.0,0.49791728962805504
+164,25,0.5384610269085347,2.0,1.371984301326847,0.0006949648709360151,0.03640938912848193,0.8268370001226725,2,1.0,0.46153675636178226
+164,26,0.5777755107651729,1.95,1.371770269011498,0.000696206023060435,0.03632923593792341,0.8158023408994558,2,1.0,0.4925850358839095
+164,27,0.5893084141677659,1.95,1.3708480750952812,0.000697229003827332,0.036296622172687046,0.8156640311145338,2,1.0,0.5310280472258861
+164,28,0.6185640076389346,2.0,1.3700918680122482,0.0006981355693470024,0.0363125260104258,0.8265667875640205,2,1.0,0.5618800254631152
+164,29,0.6593202750190483,2.0,1.3694598710564398,0.000696318822215906,0.036322522109350185,0.8264756483965604,2,1.0,0.5977342500634945
+164,30,0.6409782971546297,2.0,1.3742980799906004,0.0006962901771799023,0.03647364773190287,0.8271684097931885,2,1.0,0.6365943238487657
+164,31,0.57805753727514,2.0,1.3765742036113282,0.0006933250524361116,0.03626461462268263,0.8274927175113523,2,1.0,0.5935251242504666
+164,32,0.6177398749977172,1.95,1.3729062500287492,0.0006943120686635909,0.03633044196391795,0.8159724134640031,2,1.0,0.6257995833257237
+164,33,0.6477958440597475,1.95,1.3788602913767858,0.00069503084823627,0.036458526394714044,0.8168650144111892,2,1.0,0.6593194801991581
+164,34,0.6575495801622523,1.95,1.3788104407976178,0.0006949171841113782,0.036500713669006646,0.8168575228095005,2,1.0,0.6918319338741741
+164,35,0.6403502310184204,2.0,1.3783764887745498,0.0006947267937196995,0.03622482388339891,0.8277502389393775,1,1.0,0.7011674367280678
+164,36,0.6596469726247697,2.0,1.351819633557443,0.000681793635771679,0.03589282181095581,0.8239269954807451,1,1.0,0.7321565754158988
+164,37,0.6221568894559906,2.0,1.357952842071899,0.0006830036883123642,0.035998651561224795,0.8248153307612693,1,1.0,0.7071896315199683
+164,38,0.6837659651244616,1.95,1.3564429034984262,0.0006816176163662851,0.035549349746164596,0.8134835306531769,1,1.0,0.7792198837482051
+164,39,0.6793311693738224,1.95,1.3596181547178308,0.000685430695819486,0.03594067106828293,0.8139659807278036,1,1.0,0.7977705645794079
+164,40,0.6932341109424791,2.0,1.3647213139826881,0.000686746390520481,0.0361263486543751,0.8257922688047991,1,1.0,0.8441137031415968
+164,41,0.6592290310752771,2.0,1.2950117378352366,0.0007796365653372957,0.036172194447167745,0.8155630421813538,1,1.0,0.8307634369175904
+164,42,0.7177848216688573,1.95,1.2938054091616837,0.0007939003513705336,0.03592500572908121,0.8038279557444258,1,1.0,0.8926160722295241
+164,43,0.7207463383764363,1.95,1.30385587280038,0.000781572068494773,0.036502398960517365,0.805404096640612,1,1.0,0.935821127921454
+164,44,0.7304167298856032,2.0,1.2988353629778766,0.000781399390824456,0.036563220866172495,0.81613802696001,1,1.0,0.968055766285344
+164,45,0.7382256788107443,2.0,1.2956719401182406,0.0007793608043621653,0.03644516093255152,0.8156622461726342,1,1.0,0.9940855960358141
+164,46,0.6942575956166611,2.0,1.2900866287609003,0.000778402792433347,0.03642147383959961,0.8148206834348238,1,1.0,0.9475253187222036
+164,47,0.75,1.95,1.2891310105051035,0.000794428578457276,0.03630054560476545,0.8030899765723485,1,1.0,1.0
+164,48,0.74,1.95,1.2984754173711381,0.0007819003612143737,0.03618406351389562,0.8045595441368912,1,1.0,1.0
+164,49,0.74,2.0,1.2930999601802189,0.0007813539510889885,0.03639445114128802,0.815275816428023,1,1.0,1.0
+165,0,0.15924608660209016,2.0,1.3624793937923037,0.0007134981790461555,0.03613992140317472,0.8254772200147826,1,0.12536109935518103,0.2303388228667258
+165,1,0.14264665835263934,1.95,1.3623394819654802,0.0007120708205643875,0.036352937833469975,0.8143857607218465,1,0.13387970576833083,0.23031592015102334
+165,2,0.16057307143861912,2.0,1.3615507632178572,0.0007129054393991527,0.036310489816371375,0.82534322591471,1,0.15972635391469386,0.2556084329091386
+165,3,0.19973474120030574,2.0,1.3618399692532355,0.0007130450447680326,0.03648061113666794,0.8253849517996492,1,0.19186791352248278,0.2766252526377087
+165,4,0.24961062479839513,2.0,1.36166271539053,0.0007115766725645354,0.03628794151935653,0.8253589803718347,1,0.24290088138337662,0.3415009074834817
+165,5,0.2829720812615274,2.0,1.3846897383137784,0.0007001023731065127,0.03671718884325741,0.8286500455516931,1,0.2877374982956797,0.39292360647751834
+165,6,0.2933933248842946,2.0,1.3846124486079343,0.0007003231843776497,0.036368146921175126,0.8286391336822674,1,0.3080404274992789,0.4339238462819435
+165,7,0.31294805220174937,2.0,1.3825726093826771,0.0006978431373128723,0.036577358201172624,0.8283485845560706,1,0.3375210710127058,0.45979874598889026
+165,8,0.3042042802589515,2.0,1.3833393046303037,0.0006988804504844658,0.03668188995530481,0.8284578662065434,1,0.3506720054560648,0.479784926921752
+165,9,0.3154412985070435,2.0,1.3836432573302528,0.0006986980626132466,0.03653888471664587,0.8285010064328782,1,0.3682027775844041,0.49386729157760606
+165,10,0.31590942892857454,2.0,1.3837636608503245,0.000698541003878205,0.03661999549252389,0.8285180689133596,0,0.42064106246995864,0.45884334646863706
+165,11,0.31162338770562803,2.0,1.3753138772995745,0.0006992817480406283,0.03646647410407584,0.8273144355478869,0,0.43249566600850337,0.4620837376740889
+165,12,0.3164521792024012,2.0,1.3767449728822374,0.0006982469450419504,0.03610066358909393,0.8275184982328163,0,0.43190737125008505,0.47896410234122383
+165,13,0.40689117900179944,2.0,1.3776678191070242,0.0006974524495479589,0.03642760610905878,0.8276499511100859,0,0.548123212304299,0.45880631360026636
+165,14,0.3612603088653425,2.0,1.3764069356693895,0.000697034545625971,0.03648218088474703,0.8274698981149942,0,0.5603436456861248,0.4570761686363085
+165,15,0.4440555941895434,1.95,1.3770305308225828,0.0006962157340961667,0.03656030489458105,0.816591484724051,0,0.6551437770288581,0.4399936112600007
+165,16,0.43129954548274696,2.0,1.2001157925855621,0.0006306175414210497,0.03283687829509748,0.8008119867823077,0,0.6891742725007584,0.45209945494147874
+165,17,0.497307421085731,2.0,1.2159643841940087,0.00063389186713868,0.0329823918000839,0.8033290167793832,0,0.7867750636140991,0.44199131880030457
+165,18,0.4555324893151774,2.0,1.227055278432872,0.0006663157353336847,0.03303918642841604,0.8050855671343708,0,0.8006968778137519,0.45084579396558894
+165,19,0.5349387811363082,1.95,1.3223579984968143,0.0006916739617713881,0.03529952355745689,0.8082596660472403,0,0.8847322408088667,0.43681961604253833
+165,20,0.5729222811836112,1.95,1.3193962153174235,0.0006881856843394513,0.035543483682660866,0.8077991585083852,0,0.9880209146835999,0.42571305103390394
+165,21,0.5688653349364585,1.95,1.3176412582722583,0.000684827900108013,0.03535244272981138,0.8075254934638878,0,1.0,0.4295511164548614
+165,22,0.5282785579609232,2.0,1.3297276051319726,0.0006829048571722852,0.03503941875812026,0.8206994350584261,0,1.0,0.4275951932030772
+165,23,0.5294970037506115,1.95,1.3335680980666806,0.0006894029300987436,0.03515667771478991,0.8099902623129799,0,0.986059740324237,0.450243692069722
+165,24,0.5357307756825201,2.0,1.334195813543841,0.0006950940467631262,0.035476392064835514,0.8213595753956952,0,0.9846994826014075,0.47283660880652384
+165,25,0.5878484935807626,2.0,1.3363934178844865,0.0007004715101361159,0.035619409566607,0.8216833736618356,0,1.0,0.45949497860254185
+165,26,0.5683695821641283,2.0,1.3350435817813289,0.0006971741720086115,0.03565927142160613,0.8214845429581308,0,1.0,0.4945652738804273
+165,27,0.5954260810144316,2.0,1.3335424688814883,0.0006979540235102123,0.035958971453288226,0.8212645309249518,0,1.0,0.4847536033814383
+165,28,0.586875953572485,2.0,1.3320895314780992,0.0006946799842247149,0.03579617616447581,0.8210501939023913,0,1.0,0.45625317857494974
+165,29,0.5802568195593929,2.0,1.3306197719483064,0.0006917556442945201,0.035260583476019694,0.820833284829863,0,1.0,0.4341893985313094
+165,30,0.5308640182839991,2.0,1.3291689280519705,0.0006891101412478789,0.03514328121255432,0.8206190368356502,0,1.0,0.43621339427999695
+165,31,0.5537060931674607,1.95,1.3303178009523549,0.0006939463389276678,0.03525506787447637,0.8094909192056025,0,1.0,0.445686977224869
+165,32,0.57183430002667,1.95,1.32777224498246,0.0006949433619945398,0.035868419872146756,0.809098354040741,0,1.0,0.4394476667555667
+165,33,0.558633272987966,2.0,1.3389439441623265,0.0006924583372020338,0.03578651105818101,0.8220544253834843,0,1.0,0.4621109099598864
+165,34,0.5823827047758268,2.0,1.3386490714127852,0.0006932457696965605,0.035907502963346175,0.8220115174384661,0,1.0,0.44127568258608907
+165,35,0.556597945927919,2.0,1.3372405579997495,0.0006905758216059545,0.03542224131253826,0.821804564378234,0,1.0,0.4553264864263966
+165,36,0.5816159246502257,1.95,1.3358932575441596,0.0006911933733667046,0.03532507487365584,0.8103484108096992,0,1.0,0.4387197488340854
+165,37,0.5350457860665913,1.95,1.3332876999276249,0.0006883981645746796,0.035739457638988927,0.8099467942625171,0,1.0,0.4501526202219708
+165,38,0.581362111309723,1.9,1.3345715014944668,0.0006931555677495154,0.03593323516282022,0.798341022582444,0,1.0,0.43787370436574335
+165,39,0.5377268497228871,1.9,1.3320171327245793,0.000690422690254621,0.03519511098172492,0.7979285933305412,0,1.0,0.4590894990762902
+165,40,0.5627210874263262,1.8499999999999999,1.3329252456017646,0.0006950518507151735,0.035426581305685136,0.7857197349021956,0,1.0,0.4757369580877541
+165,41,0.5503261375560896,1.8499999999999999,1.3304010156503265,0.000696162939875617,0.035830205826732214,0.7852948130295171,0,1.0,0.5010871251869653
+165,42,0.5889413567646382,1.9,1.3309555138637914,0.0007006879257686694,0.03536064429395244,0.7977606776775125,0,1.0,0.4631378558821272
+165,43,0.5781555115951846,1.9,1.3308270472148356,0.0006976916038853968,0.03573587354199651,0.7977389833377774,0,1.0,0.4271850386506151
+165,44,0.574450747785118,1.95,1.32943026082493,0.0006948220583442575,0.03503927524724208,0.8093542795244727,0,1.0,0.41483582595039287
+165,45,0.5584167440418888,2.0,1.329130656386912,0.0006920399808043904,0.035531583969628154,0.8206142656304599,0,1.0,0.394722480139629
+165,46,0.5410739408496875,2.0,1.3519765211181753,0.0007000857592028382,0.035811372611053036,0.8239550609287255,0,1.0,0.40357980283229167
+165,47,0.5455191959645731,2.0,1.3568656857718462,0.0006893024804290351,0.03585358390851201,0.8246600082008813,0,1.0,0.4183973198819103
+165,48,0.5526060603768744,2.0,1.355785853028963,0.0006899309118017226,0.035615132585812614,0.82450399595759,0,1.0,0.4420202012562479
+165,49,0.5697647933841442,2.0,1.354641707238988,0.0006905047850614601,0.035825673063545484,0.8243385460421032,0,1.0,0.4325493112804806
+166,0,0.18313579273638175,2.0,1.3610631844733243,0.0007126229052153228,0.03608866592887233,0.8252728479369416,1,0.1431413993087286,0.25293077670963443
+166,1,0.1631716011861967,1.95,1.3607619045888293,0.0007130849863795793,0.03632728532840835,0.8141474802394102,1,0.15780052155442736,0.26683797521475255
+166,2,0.20781868389643765,2.0,1.3598822658209513,0.0007141044786630429,0.036302839495662174,0.8251029245226192,1,0.19459112887394622,0.2999407744895305
+166,3,0.2042597911020034,2.0,1.3602665346667568,0.0007121198320363515,0.03647006269563478,0.8251577980390622,1,0.22062721188019507,0.32002968783308455
+166,4,0.21681846676284827,2.0,1.3846574491343646,0.0007004841558355705,0.03667401305906835,0.8286455692102629,1,0.23236368470854546,0.34624330959810035
+166,5,0.21049424508872389,2.0,1.3845428827358317,0.0007006067221155183,0.036725232599533135,0.8286293358849068,1,0.2649297694451559,0.315074457702205
+166,6,0.26253100362666676,2.0,1.3850916492284153,0.0007004898284413879,0.03638211163206051,0.8287072150020297,1,0.2949281380679202,0.3485324946649956
+166,7,0.24585032740740564,2.0,1.3850123085850319,0.0007002099549474638,0.03670255180064326,0.8286958727185423,1,0.3534499222134076,0.31490119507347525
+166,8,0.26533221148776925,2.0,1.3854655926003026,0.0007001691524467484,0.0367289746974487,0.828760199306482,1,0.37794934087832055,0.31384158378813665
+166,9,0.3049944009053561,2.0,1.3853435942843844,0.0007002491605298228,0.036423538350509335,0.8287429077206246,1,0.4207243203648794,0.3223489091980146
+166,10,0.35340875757517776,2.0,1.3818406070472862,0.0006994466533058494,0.036567320917539406,0.8282449343886062,1,0.47487361698289715,0.3781977026067297
+166,11,0.3339172753820582,2.0,1.381114299699448,0.0006992956845304026,0.03662325413452091,0.8281415457393344,1,0.5036500964605845,0.3748574559927479
+166,12,0.3785280556676041,2.0,1.3816049606943435,0.0007008651176321422,0.036559641909859046,0.8282118134918137,1,0.5436162590278445,0.4036051735215544
+166,13,0.36064311820152833,2.0,1.3796510644957956,0.0006995812264457373,0.03655666388620979,0.8279332748848436,1,0.5838080689052915,0.39039963546470574
+166,14,0.37589232398400985,2.0,1.3826183788387592,0.0006999342986526568,0.0366613345208774,0.8283556869434866,1,0.596387944492177,0.3911238206237968
+166,15,0.38197597972267094,2.0,1.3829508762982865,0.0007012512729580288,0.03634625285550682,0.8284033315359185,1,0.6569557638507381,0.36397891394125226
+166,16,0.42871946985044374,2.0,1.366563692364902,0.0007029670795344115,0.03617205106052348,0.82606181452813,1,0.6765962381961979,0.39360324857321527
+166,17,0.47588311139752654,2.0,1.371167182670612,0.0007013669658965713,0.03638571984665385,0.8267218100526418,1,0.7222191582772516,0.45665149362208646
+166,18,0.519375685193059,2.0,1.355085753725694,0.0006931695770984393,0.03605861896579897,0.824403608238829,1,0.789874041410106,0.5114202287633883
+166,19,0.4808546805307835,2.0,1.3531659487482073,0.0006930354216683801,0.03589256004938354,0.8241254808612601,1,0.8251490413423261,0.46931687997951
+166,20,0.4890853032346052,1.95,1.3802147355112084,0.000701564322239974,0.03662760773794378,0.8170695007293494,1,0.8525717752417694,0.4601886437929915
+166,21,0.4927046959837041,2.0,1.3816366990175317,0.0007008093908013072,0.03649318037523727,0.8282163132213938,1,0.8849013794181833,0.42914714738810256
+166,22,0.5151137336122854,2.0,1.3827916502175701,0.0007002182223520868,0.03656717050962451,0.8283804024358667,1,0.9164744393447755,0.42841319291458413
+166,23,0.5443664754503093,2.0,1.3830628596723207,0.0007015490194774263,0.03673370447785822,0.8284193341711485,1,0.9249394462878999,0.4479689897838306
+166,24,0.5405150254841817,2.0,1.3833330731487639,0.0007006675526279251,0.03650397299856602,0.8284574885661141,1,0.9532762773604857,0.4640150484666245
+166,25,0.5819576409423114,2.0,1.3834190184289015,0.0007017926070915694,0.03663034496995791,0.8284700221505591,1,0.977029115317804,0.5038199827172992
+166,26,0.5781307990556437,2.0,1.3834951580817438,0.0007008232705207909,0.03671287377948942,0.8284805664051695,1,1.0,0.5271026635188121
+166,27,0.6077495043664282,2.0,1.3834280949890407,0.0007017890068308899,0.03643706425855299,0.8284713109702386,1,1.0,0.5591650145547603
+166,28,0.5885852772615836,2.0,1.383341187522409,0.000700766493042734,0.036545448973314486,0.828458669864571,1,1.0,0.5619509242052786
+166,29,0.6339457944912416,2.0,1.3831532389469805,0.0007015592020579375,0.03674459731296114,0.8284321832614483,1,1.0,0.6131526483041384
+166,30,0.6135996587401497,2.0,1.36765425727838,0.0006879575861938559,0.036280303993235986,0.8262141449929111,1,1.0,0.6453321958004986
+166,31,0.6232643668971113,1.95,1.3660475837464556,0.0006870716027831692,0.0361602443253195,0.8149380896276849,1,1.0,0.6775478896570375
+166,32,0.6736792825537735,2.0,1.3636912313511849,0.0006857661575334771,0.035997883793397495,0.8256437497828971,1,1.0,0.7455976085125781
+166,33,0.6743250447114386,2.0,1.367555964467769,0.0006900114769825259,0.036106223895679,0.8262006210829648,1,1.0,0.7810834823714617
+166,34,0.7068809509387954,2.0,1.3711837809528982,0.0006906755120142911,0.03613017757005765,0.8267211246402921,1,1.0,0.8562698364626512
+166,35,0.67931709448476,2.0,1.340333479181022,0.0007602952980718793,0.03671763005844522,0.8222774248111897,1,1.0,0.8643903149491996
+166,36,0.6620322702481256,1.95,1.3480105516038026,0.0007515161869995193,0.03638619899066762,0.8122220451726362,1,1.0,0.8401075674937519
+166,37,0.6514021990994927,2.0,1.344847725575803,0.000755022100391538,0.036795252293662886,0.8229346281928474,1,1.0,0.8046739969983088
+166,38,0.6649975386180447,2.0,1.343499890186008,0.0007557359887349491,0.03673608078944225,0.822738353485232,1,1.0,0.8166584620601489
+166,39,0.672857364996023,2.0,1.3501198019090004,0.0007474065999135776,0.03671555346288978,0.823699320168956,1,1.0,0.8428578833200767
+166,40,0.7047497898213766,2.0,1.3552090182551464,0.0007400906665388737,0.03668776339487789,0.8244350348915384,1,1.0,0.8824992994045887
+166,41,0.7132183699767216,2.0,1.353338819997622,0.0007439533531930685,0.03676652296035876,0.8241652940991343,1,1.0,0.9107278999224054
+166,42,0.6738391925719533,2.0,1.3513111422465351,0.0007472794379653585,0.03644631974777658,0.8238722215079467,1,1.0,0.8794639752398445
+166,43,0.7164412023227307,1.95,1.3492810456013449,0.0007495881388334836,0.036351758248884064,0.8124151530904682,1,1.0,0.9214706744091019
+166,44,0.7436778575450342,1.95,1.3461696615879784,0.0007542465265298286,0.03666405490939906,0.8119419498391688,1,1.0,0.9789261918167809
+166,45,0.74,1.95,1.3525892240203579,0.0007461103029828992,0.03680555021761355,0.8129177299910828,1,1.0,1.0
+166,46,0.7047994888452813,2.0,1.3503989110633563,0.0007489184239898786,0.03651763016023381,0.8237402874002516,1,1.0,0.9826649628176043
+166,47,0.74,1.95,1.3491759436997468,0.0007507060646003655,0.03679778995843006,0.8123994761326826,1,1.0,1.0
+166,48,0.74,1.95,1.3459627441205644,0.0007548735955696227,0.03675042995615545,0.8119105446341637,1,1.0,1.0
+166,49,0.74,2.0,1.3434464273824709,0.0007575212863259506,0.036760215663594255,0.8227310770906372,1,1.0,1.0
+167,0,0.13760964708667806,2.0,1.3598135924330554,0.0007130383500931774,0.036043084955940156,0.8250927064601249,1,0.12113259579757304,0.2305220292254961
+167,1,0.1466230517952181,1.95,1.3596075236155252,0.000713410450237724,0.036312312534064375,0.8139728445005308,0,0.1437624699868776,0.2303935460015569
+167,2,0.12392120271495718,2.0,1.363539841935606,0.0006906188570524282,0.03624815515891326,0.8256233525565468,0,0.13884725551534632,0.22794100169606216
+167,3,0.19907275782740258,1.95,1.3651952813260246,0.0006900581377103723,0.03644354237320645,0.8148104172909234,0,0.2194365597336217,0.20432711311317964
+167,4,0.23890050014600606,1.95,1.3712997636486186,0.0006934824685679694,0.036344281135019876,0.8157308093035274,0,0.3240067168756988,0.19765937798575514
+167,5,0.2609486576332771,1.95,1.3727343895804047,0.0006920661139593451,0.03630157062720827,0.8159459306654675,0,0.4050043426153893,0.1964897352904047
+167,6,0.22998595803880076,1.95,1.314176355306515,0.0006713374356014056,0.03504827165153101,0.8069821737983016,0,0.4152998047041259,0.2128867871905013
+167,7,0.3164902365902589,1.9,1.3315128708104957,0.0007493480530810717,0.03631774571643377,0.797866281776835,0,0.5162917722444471,0.19991175897493343
+167,8,0.3386347327378077,1.9,1.3327543249389837,0.0006710325009657233,0.03541298011269729,0.7980411808131149,0,0.5957352869852917,0.2011353931456369
+167,9,0.33349182196006677,1.9,1.340560748649135,0.0007460266204415025,0.036407216002518415,0.7993204868834307,0,0.6195626474536529,0.21888920992868527
+167,10,0.3978438106625672,2.0,0.771795537316268,0.0010318116621896927,0.0325843492686987,0.7238938076776894,0,0.7249626990535412,0.19286243680383588
+167,11,0.42743553844645316,2.0,0.8320800678336503,0.00037902016864064896,0.023536368939571294,0.7355250597390067,0,0.8246778549813014,0.15854798817977517
+167,12,0.4465791160561489,2.0,1.1533442792802262,0.000738936213424878,0.03247354677582278,0.7932818240942183,0,0.9028720031573487,0.15143438264403147
+167,13,0.4719706787534468,2.0,1.1521773029134812,0.0007348983581569205,0.03258629019049675,0.7930890658661551,0,0.9675462488095949,0.14984059743202938
+167,14,0.4872582695917853,2.0,1.1508476209712073,0.0007303032178665959,0.033139030961473165,0.7928692723256529,0,1.0,0.15752756530595108
+167,15,0.47822463829463835,2.0,1.1493823948124715,0.0007255632502600579,0.03330854925061308,0.7926269802978058,0,1.0,0.19408212764879432
+167,16,0.4851032653161745,2.0,1.1492513899712282,0.0007308774600879738,0.03329517410322226,0.7926071933945705,0,1.0,0.2170108843872482
+167,17,0.507161013740148,2.0,1.347345329938823,0.0006869228994228171,0.03587820268947412,0.8232784539188198,0,1.0,0.22387004580049333
+167,18,0.5044312504313939,2.0,1.352728153495738,0.0006856520376493228,0.03623633998471025,0.8240598756901668,0,1.0,0.21477083477131292
+167,19,0.5057558414572074,2.0,1.3567418881359725,0.0006848463864161708,0.03617338287446127,0.8246408180804434,0,1.0,0.1858528048573581
+167,20,0.45749005364079454,2.0,1.1472728818579316,0.0007432313697724141,0.03317245394165018,0.7922858420760657,0,1.0,0.19163351213598168
+167,21,0.4887383432690278,2.0,1.1496674166391025,0.0007517176079150701,0.03369560083628602,0.7926824216603338,0,1.0,0.2291278108967593
+167,22,0.5098257229805132,2.0,1.3565676062108656,0.0006849423316966202,0.035713666381997716,0.8246156417868519,0,1.0,0.1994190766017105
+167,23,0.5041474528931422,2.0,1.1461734983897813,0.000761196955857304,0.0333298340628683,0.792110776409981,0,1.0,0.21382484297714052
+167,24,0.5098961456590697,2.0,1.3564268102846258,0.0006850895608432201,0.03627420509978797,0.8245953208795107,0,1.0,0.19965381886356567
+167,25,0.5001774510581531,2.0,1.1415552884544178,0.0007401387682946916,0.03271434863651501,0.7913423096974147,0,1.0,0.20059150352717686
+167,26,0.46152227021877634,2.0,1.3564650778456846,0.000685099770291427,0.03580750440601285,0.8246008587028462,0,1.0,0.20507423406258768
+167,27,0.48982440771357666,1.95,1.3546303172477536,0.0006841049942401702,0.0354125875892369,0.8132091098112658,0,1.0,0.2327480257119221
+167,28,0.4943269248020809,1.95,1.3573891145406107,0.0006908404322200302,0.03611958244003765,0.8136298518948434,0,1.0,0.24775641600693618
+167,29,0.5176802088982608,2.0,1.3599150867442753,0.0006976204161770313,0.03645182317465344,0.8251029032802298,0,1.0,0.225600696327536
+167,30,0.47158580711399806,2.0,1.3620706473192346,0.0006955031376965411,0.03643079200816163,0.8254131399553621,0,1.0,0.23861935704666007
+167,31,0.5151530674599998,1.95,1.360401945648329,0.0006949699761711396,0.03633981728050049,0.8140875248872911,0,1.0,0.21717689153333228
+167,32,0.4670166625300336,1.95,1.360613697687494,0.0006926275733017031,0.03584185895665781,0.8141188622733246,0,1.0,0.22338887510011182
+167,33,0.49855221015142237,1.9,1.3589557496800082,0.0006921219747894198,0.036023698425798854,0.802237834869846,0,1.0,0.2618407005047412
+167,34,0.520202188134165,1.9,1.3605048223316814,0.0006980525264226442,0.03637713965371913,0.8024853637586723,0,1.0,0.23400729378054988
+167,35,0.47794796702017955,1.9,1.3610725945267348,0.0006956107246005891,0.03602532708001109,0.8025745678758289,0,1.0,0.25982655673393185
+167,36,0.5082126165280028,1.8499999999999999,1.3594340583167845,0.0006952304694109153,0.03587815902699497,0.7901491225462375,0,1.0,0.2940420550933425
+167,37,0.529192260383444,1.8499999999999999,1.3605100265884391,0.0007009278439753723,0.0362862961444929,0.7903293651161805,0,1.0,0.26397420127814647
+167,38,0.4824318218990703,1.8499999999999999,1.3608072936267834,0.0006982331515890767,0.03633188595944485,0.7903777277307178,0,1.0,0.27477273966356763
+167,39,0.48383200738315624,1.7999999999999998,1.3592192995935486,0.0006979744178761422,0.036016912762004874,0.7774063454525316,0,0.9949290123528381,0.28620134147340337
+167,40,0.5253056825072446,1.8499999999999999,1.3567920909438316,0.0006974910395263146,0.03607608210157916,0.7897114637245451,1,1.0,0.2843522750241486
+167,41,0.5305931758667872,1.8499999999999999,1.3310201884863022,0.0006733405902982807,0.03517184216405329,0.7853914979906389,1,1.0,0.30197725288929056
+167,42,0.4946018479536701,1.9,1.3301822785706168,0.0006716489180899714,0.03535266051193036,0.7976265215694929,1,1.0,0.28200615984556704
+167,43,0.5336250556390915,1.8499999999999999,1.3395348749866858,0.0006727597417926157,0.03530422314934199,0.786822980307592,1,1.0,0.31208351879697127
+167,44,0.49436310258225646,1.8499999999999999,1.3371570530458063,0.0006708820984037893,0.03541115248368054,0.7864232393490271,1,1.0,0.2812103419408548
+167,45,0.5476091614891618,1.7999999999999998,1.3437151486880474,0.0006725693424771325,0.035133838323562976,0.7747030155419684,1,1.0,0.32536387163053915
+167,46,0.5669851179469387,1.7999999999999998,1.3398068078080057,0.0006700924719542727,0.035614729146601624,0.7740192617758372,1,1.0,0.3899503931564623
+167,47,0.5856511983156296,1.8499999999999999,1.336718213511063,0.0006682149697948025,0.03566357784934885,0.7863486256601612,1,1.0,0.45217066105209847
+167,48,0.6085318781700033,1.9,1.3817749698033948,0.0007024531684857319,0.036602935806273995,0.8058364367001517,1,1.0,0.5284395939000108
+167,49,0.6193942959170703,1.9,1.38104833576068,0.0007028092282736921,0.03672187933921587,0.8057228307816167,1,1.0,0.5646476530569009
+168,0,0.19418434671491996,1.95,1.356827821583855,0.0007166302402655508,0.03610171349761921,0.8135525484854973,1,0.16501020216917203,0.26060088615750376
+168,1,0.16136900493554526,1.9,1.3570788753736132,0.0007171238696516923,0.03633115425811691,0.8019478376355579,1,0.19987758740926162,0.23805989990613535
+168,2,0.1817973123725465,1.8499999999999999,1.362195997563178,0.000714613474752339,0.03634880433974822,0.7906131398760108,1,0.22900806980133256,0.23398028150671166
+168,3,0.2553789392724335,1.8499999999999999,1.384852920286101,0.0006994543799304239,0.03645507144738915,0.7943342115736352,1,0.28770908141525053,0.30098435568777765
+168,4,0.22936203769579933,1.8499999999999999,1.3848482135828868,0.0006996271369391111,0.03673561588851,0.794333499096703,1,0.3405186955226948,0.277181864955738
+168,5,0.2471875677963605,1.7999999999999998,1.3853348667346124,0.0006997343919627709,0.03654079963613994,0.7818933753572794,1,0.3650355264906233,0.2705778573337039
+168,6,0.23986038324037406,1.8499999999999999,1.3852101208772494,0.0006997605846466295,0.036691357444484984,0.7943926603869164,1,0.40361016454157356,0.22805439141248213
+168,7,0.2887211022743299,1.9,1.3832631690757036,0.000700431656502419,0.036694285364885074,0.8060685484329752,1,0.4310963998162377,0.2542751411594495
+168,8,0.2736071188215623,1.9,1.3838198028288626,0.0007000387235748491,0.03648005717958018,0.8061554249283601,1,0.4445231101104683,0.2526595825912498
+168,9,0.3424140824644693,1.95,1.3840375423945253,0.0007008402517725677,0.036564439730014275,0.8176399755932579,1,0.4821098519782285,0.33190047224392627
+168,10,0.3223351212430081,1.95,1.383597169683373,0.0007008672353967002,0.036723497070419345,0.8175743127520687,1,0.5003830969727322,0.34060627484638395
+168,11,0.335196278934496,1.9,1.383700607678068,0.0007017872399346465,0.03664637141666986,0.8061373442754062,1,0.5127447769806541,0.36699456047411433
+168,12,0.32119187115365194,1.95,1.3835858399306042,0.0007027073726313181,0.036703951596345555,0.8175731718559545,1,0.5295932773351205,0.33118186739867905
+168,13,0.37413977722289965,2.0,1.3840682376382145,0.0007019490037227748,0.03677266948926412,0.8285623057914729,1,0.5590174285832067,0.36844268596539
+168,14,0.39239403151159885,2.0,1.3846622038969438,0.0007013366681403469,0.036737900733670656,0.8286464864469985,1,0.578279155817265,0.4036078972823096
+168,15,0.4156889770612155,2.0,1.3796176682984893,0.0006994991984918881,0.036522381131245604,0.8279284938463655,1,0.6020906398023559,0.44950907046757704
+168,16,0.4388892310226241,2.0,1.3708363956812213,0.0006915889087082648,0.036194562418638256,0.8266716166565934,1,0.6393663110102473,0.47714235539508393
+168,17,0.4925729690619242,2.0,1.3702581814979171,0.0006906408115818074,0.03632291296163419,0.8265884794086056,1,0.6994757270977553,0.5426089274094069
+168,18,0.4615604885230792,2.0,1.3687653249060254,0.0006899336315578574,0.03635883401499188,0.826374186124727,1,0.7456462241080152,0.5110066629329105
+168,19,0.5088772166062965,1.95,1.3714783817765857,0.0006905338129437458,0.03629369732153977,0.8157567702542534,1,0.7685432612357822,0.538199707039945
+168,20,0.49574041907926925,1.95,1.370390614135893,0.0006895569516914475,0.036073620861245076,0.8155929313224746,1,0.7804242178888462,0.5452357730791024
+168,21,0.5174633242594912,2.0,1.3730264298013009,0.0006922290752440622,0.036192272515044754,0.8269853758560302,1,0.8090529225439168,0.5794738508064147
+168,22,0.5286911564545137,2.0,1.3788421931086332,0.0006958811924546058,0.036373978343506544,0.8278169579137853,1,0.8225168336833303,0.5989480766039385
+168,23,0.5342005872518558,2.0,1.3781099323178645,0.0006951078881393183,0.036452763058213426,0.827712338749491,1,0.8295723643137788,0.6079054717544808
+168,24,0.5974050133951712,2.0,1.3716446274744984,0.0006912039339550971,0.03638067587463444,0.8267872838392812,1,0.8660694776800225,0.66992407441054
+168,25,0.5786689549963967,2.0,1.3737879083529692,0.0006941461793015441,0.036310548104562176,0.8270948498365404,1,0.8895332873406161,0.6761854668671673
+168,26,0.5855403255750271,2.0,1.372348653494035,0.0006937160592538232,0.0362607971750946,0.8268888034516737,1,0.9108664905298611,0.6706457645436086
+168,27,0.5808055184506888,2.0,1.3707483229407875,0.0006931797254290575,0.03612979470043965,0.826659452641416,1,0.9458258119295017,0.6415839789296272
+168,28,0.6616475204698348,2.0,1.370093725035104,0.0006918132111378188,0.036183083265464336,0.8265652410981119,0,0.9976862241590662,0.7085767693540276
+168,29,0.6541383201938052,2.0,1.3659977036845223,0.0006982484040527661,0.03616689599344496,0.8259791196775425,0,1.0,0.7137944006460172
+168,30,0.6171411154685587,2.0,1.3648628895407673,0.0006991633382977448,0.03638037780574663,0.8258162070706855,1,1.0,0.723803718228529
+168,31,0.6852505606817255,1.95,1.361633781752217,0.0006834494656517029,0.03611960110413884,0.8142704053905283,1,1.0,0.7841685356057516
+168,32,0.6392557899973836,1.95,1.3656204259566795,0.0006867429686954452,0.03601648964665576,0.8148735604342894,1,1.0,0.7641859666579452
+168,33,0.6298663058579377,1.9,1.364417804060846,0.0006857776461775385,0.03606871916023592,0.8031009655113593,1,1.0,0.7328876861931257
+168,34,0.6404794826954099,1.95,1.3624571083694363,0.0006843812895794946,0.03609358470702572,0.8143951699451111,1,1.0,0.7349316089846994
+168,35,0.6706866720433725,2.0,1.3612534271698444,0.000683723493434514,0.03616177079298867,0.8252919451994202,1,1.0,0.7689555734779082
+168,36,0.6326083688590547,2.0,1.3654594495084738,0.0006861086770067833,0.036232455787703885,0.8258982476082933,1,1.0,0.7420278961968487
+168,37,0.67333696969861,1.95,1.3641255075809526,0.0006855276767802866,0.03614281248870742,0.8146475718887729,1,1.0,0.7777898989953663
+168,38,0.6608524005125346,1.95,1.3663195240812394,0.0006877372892541143,0.036083323860984916,0.8149792992800219,1,1.0,0.8028413350417819
+168,39,0.6943522008729248,2.0,1.3572604476509174,0.0007175445580909275,0.03644102178752365,0.824725246959218,1,1.0,0.8478406695764157
+168,40,0.721143883280712,2.0,1.3578790691588782,0.0007244669242278562,0.036613408615411486,0.8248166534008254,1,1.0,0.9038129442690396
+168,41,0.7198025050094244,2.0,1.362033414559559,0.000718923152192089,0.03653751520298717,0.825414524418956,1,1.0,0.9326750166980814
+168,42,0.7285963000066005,2.0,1.361457680462606,0.0007249479554527794,0.03633825670883587,0.8253332795464622,1,1.0,0.9619876666886681
+168,43,0.6892439470157421,2.0,1.360347741809425,0.0007302054617586037,0.036324034519943135,0.8251747318572673,1,1.0,0.93081315671914
+168,44,0.6964275117801052,1.95,1.3578330085539516,0.0007313658578549473,0.03666704987520503,0.813709439495215,1,1.0,0.9214250392670172
+168,45,0.6784608860962515,2.0,1.3622289814384847,0.0007260450357327902,0.03669722885330778,0.8254447571990909,1,1.0,0.8948696203208385
+168,46,0.6685726452856092,2.0,1.3602997954621405,0.0007262707657935118,0.03662683807130864,0.8251666796547901,1,1.0,0.8619088176186973
+168,47,0.6551345438725087,2.0,1.3576037151626699,0.0007269516147635274,0.03661234105932241,0.8247775809766251,0,1.0,0.8171151462416956
+168,48,0.6843438607463375,2.0,1.3827868925111821,0.0006981584489674245,0.036528321395117046,0.8283791403858519,0,1.0,0.8144795358211248
+168,49,0.6871490110715076,2.0,1.3821674515069509,0.0006981788082555144,0.036463044719606034,0.8282910641068916,0,1.0,0.8238300369050253
+169,0,0.18773223631270458,2.0,1.362799762889409,0.0007144884718695589,0.03620382296271636,0.8255236543140284,1,0.1523002545962739,0.2560404482473168
+169,1,0.1523482473543319,1.95,1.3624271577678964,0.0007153038448151097,0.0364343822753231,0.8143999909328621,1,0.19403806109947708,0.21577674304847008
+169,2,0.20074499292628362,1.9,1.3666827258755976,0.0007131827549040691,0.03641883548789337,0.8034675263864822,1,0.2360832327282305,0.22103899944997132
+169,3,0.24005015979672556,1.9,1.3859467073122513,0.0006999537698499771,0.03643594072803631,0.8064875509309183,1,0.2650864942569155,0.2800518736465313
+169,4,0.20427205570684,1.9,1.3859716871600765,0.0007000272131241226,0.03676447286243399,0.8064914723140959,1,0.3028437272650786,0.2437818826693619
+169,5,0.28633455667911506,1.8499999999999999,1.3861100441534089,0.0007000698529466416,0.036638555841693836,0.7945397095535894,1,0.35397949632729253,0.31580919382732686
+169,6,0.2946794634021402,1.8499999999999999,1.3860997080833366,0.0007001170484339532,0.036646903377135845,0.7945380376317182,1,0.383459635012664,0.33765203132358196
+169,7,0.31278336611107793,1.9,1.3860236373696506,0.0007000162744572404,0.0367635417473805,0.8064995762752554,1,0.4117375499823188,0.3602944870605014
+169,8,0.2859932251543784,1.95,1.3849824870086662,0.0007006612269995899,0.03651299587918916,0.8177807757714791,1,0.4343044303213773,0.340904843419425
+169,9,0.3381997241495319,1.9,1.3853369034838423,0.0007003988290351677,0.036432352044847835,0.8063925028453274,1,0.4724353806914528,0.3640852395765028
+169,10,0.3780627116480005,1.9,1.3854030108697983,0.000700128236869088,0.03676687280869552,0.8064027390733663,1,0.5112009328553059,0.4119411283529272
+169,11,0.34546709444946994,1.9,1.3842926118720722,0.0006995244743020609,0.03642172209093149,0.8062291388857807,1,0.5417071358536143,0.3959474670267473
+169,12,0.36568852613109815,1.8499999999999999,1.3847391486155316,0.0007000899125153855,0.03666882372015617,0.794315832036816,1,0.5675763437319532,0.39552662879438955
+169,13,0.4351417096681732,1.8499999999999999,1.3848426903937148,0.0007007646338531674,0.03655548612850042,0.7943329684456968,1,0.6252562819469294,0.4501306562980049
+169,14,0.45294600246354094,1.8499999999999999,1.3763684437221038,0.0007046536011753968,0.0363970972930376,0.7929463704379652,1,0.6774661164536941,0.4731985196068775
+169,15,0.47395272775944813,1.9,1.3761568845914773,0.0007029177547872548,0.0366182089826987,0.8049560434420416,1,0.7137348563189667,0.4948626174395381
+169,16,0.49553037521668614,1.9,1.376015185502656,0.0007011946168421802,0.03651146610442084,0.8049332543481685,1,0.7480218440610411,0.5210721253075656
+169,17,0.5143344493100314,1.9,1.3754797796237126,0.000699687669596518,0.03626477728468165,0.8048487001047031,1,0.7717188727550782,0.5521563340266669
+169,18,0.4889751721498439,1.95,1.3748250206357053,0.0006982131294728047,0.03642242429523134,0.8162615342975438,1,0.8123473092880535,0.5134541614487416
+169,19,0.5050957610404874,1.9,1.3759452376634527,0.0006931976933493903,0.03646838882749086,0.8049197597996228,1,0.8217248953582225,0.5213526763239945
+169,20,0.497408697185878,1.95,1.3746218829706431,0.000692111068385521,0.036083891200347884,0.8162292354291769,1,0.8571750179634661,0.4817956333349717
+169,21,0.5535014583356548,2.0,1.3757926398375842,0.0006933152793384559,0.036229583798637235,0.8273811190898238,1,0.8964720213787125,0.5163754992805659
+169,22,0.5479616334055836,2.0,1.3754655363620074,0.0006935098832080811,0.036237709010633376,0.8273344522433383,1,0.9191972058514907,0.5342758368832908
+169,23,0.5870699346259347,2.0,1.3743998333988376,0.0006924955327491049,0.03631186198714051,0.8271818711592832,1,0.9377705023996838,0.5732057788868703
+169,24,0.5630341793065667,2.0,1.3736411396036645,0.0006925020474770655,0.03642933238931918,0.8270733892859903,1,0.9690197619112471,0.5514209151402261
+169,25,0.6318777824185257,1.95,1.3744141560999545,0.0006939494563257256,0.0364012651378317,0.8161986261295795,1,1.0,0.6062592747284188
+169,26,0.6544490612918307,1.95,1.3676500295512133,0.0006890355574018826,0.03610236351736093,0.8151802307192586,1,1.0,0.6814968709727687
+169,27,0.6271624229126189,1.95,1.3716276822459172,0.0006904966027568567,0.03621490607283236,0.8157791975237318,1,1.0,0.6905414097087298
+169,28,0.6059488625948316,1.9,1.37034077957582,0.0006894974077532699,0.036292121992074516,0.8040370555042979,1,1.0,0.6531628753161052
+169,29,0.6609462311657319,1.8499999999999999,1.3687402775718023,0.0006886819118233907,0.03603191787042519,0.7916858927368906,1,1.0,0.703154103885773
+169,30,0.6789868349409159,1.8499999999999999,1.3717408822545973,0.000690284265691001,0.03625378447550902,0.7921808449651283,1,1.0,0.7632894498030529
+169,31,0.6298542809655309,1.9,1.3742537792997696,0.0006923288314241115,0.03643793471353076,0.8046537502043631,1,1.0,0.7328476032184362
+169,32,0.6684996100790666,1.8499999999999999,1.3734608337473242,0.0006915441941169301,0.036358330635758274,0.7924642733209285,1,1.0,0.7616653669302219
+169,33,0.697277082758881,1.8499999999999999,1.375710504434013,0.0006929774040691226,0.03623911317942609,0.7928344919934934,1,1.0,0.824256942529603
+169,34,0.6740015513874571,1.8499999999999999,1.3748757558208502,0.0007149706664849442,0.03678217111794201,0.7927045808576366,1,1.0,0.8466718379581905
+169,35,0.6760729736896682,1.7999999999999998,1.376918206698291,0.000711832152808171,0.03652646797907925,0.7804587714432154,1,1.0,0.8535765789655605
+169,36,0.7286015149942286,1.8499999999999999,1.3779923131895488,0.0007093174067250468,0.0364493967660373,0.7932143844053174,1,1.0,0.9286717166474289
+169,37,0.6837723366038821,1.8499999999999999,1.3806013889407251,0.0007069181425922275,0.03664338220373621,0.7936412256404771,1,1.0,0.9125744553462737
+169,38,0.6725901044825039,1.7999999999999998,1.3798758694856326,0.0007085490204177212,0.03638057705228094,0.7809640022867446,1,1.0,0.8753003482750129
+169,39,0.6878249047232936,1.8499999999999999,1.3787890301112007,0.0007102059716683853,0.03644353734980663,0.7933453269869178,1,1.0,0.8927496824109786
+169,40,0.7156916739359411,1.9,1.380037511779196,0.0007076531672552061,0.03663244206429942,0.8055660714262912,1,1.0,0.918972246453137
+169,41,0.7249745327073283,1.9,1.3792470245480095,0.0007086444005218319,0.036766975060545826,0.805442538659414,1,1.0,0.9499151090244272
+169,42,0.682906714757981,1.95,1.3780614818047108,0.0007097516185823316,0.036497904465318476,0.8167498915386432,1,1.0,0.9096890491932703
+169,43,0.6926456365477874,1.9,1.3773929571237051,0.0007112985498670583,0.03672209218344142,0.8051526655218314,1,1.0,0.9088187884926248
+169,44,0.7434665201351733,1.95,1.378113677039516,0.0007089200647772856,0.03662109062327092,0.8167574545361128,1,1.0,0.978221733783911
+169,45,0.74,1.95,1.3808529241560112,0.0007067202200273953,0.03677294739469915,0.817166410170496,1,1.0,1.0
+169,46,0.74,2.0,1.379790971686436,0.0007077243331913648,0.03657355373388162,0.8279555250211182,1,1.0,1.0
+169,47,0.74,2.0,1.378681451441345,0.0007084388598064151,0.036747590941962685,0.8277976254136284,1,1.0,1.0
+169,48,0.7019093903727393,2.0,1.3771729400949644,0.0007092745704082668,0.036509894804435686,0.8275827212071027,1,1.0,0.9730313012424642
+169,49,0.75,1.95,1.3764818684321531,0.0007117484092209663,0.0363904980303159,0.8165139515990276,1,1.0,1.0
+170,0,0.1655098253515498,1.95,1.3666084466269062,0.0007113341872338002,0.03621426029018239,0.8150299762391012,1,0.14307404869375825,0.2276006862468216
+170,1,0.038148380680691235,1.9,1.3664821904324254,0.0007099634708003672,0.03644098057608989,0.8034348415931588,1,0.17883654600164345,0.18871254093344625
+170,2,0.18453826928717829,1.8499999999999999,1.3844520253722747,0.0006994683044494373,0.03667096473102279,0.7942687152478186,1,0.20406163198434285,0.20971205497813708
+170,3,0.21987861968560146,1.8499999999999999,1.3855516048109207,0.0006996775465167575,0.03649472398886326,0.7944484032417185,1,0.2403168620405631,0.2458395828979208
+170,4,0.24555512052177147,1.8499999999999999,1.3855589241417263,0.000699651499220586,0.03675792526616642,0.7944495899798543,1,0.2693137650260985,0.2927653817044403
+170,5,0.2538745442784592,1.8499999999999999,1.385514307708468,0.0006996434114462156,0.036541711464481305,0.7944423014040911,1,0.30357859019997424,0.3081436939948984
+170,6,0.23986120606247513,1.9,1.3853448402046977,0.0006995000591161586,0.036609145341307894,0.8063934613147757,1,0.30811732724067825,0.3220475838873461
+170,7,0.3047876017788593,1.95,1.3854159844266705,0.0006995873309645661,0.03675822983749384,0.8178450446886413,1,0.34733437070305845,0.3861795116587863
+170,8,0.2751395126274462,1.95,1.3853639731795324,0.0006996158053407704,0.036639797362414114,0.8178373046937721,1,0.3938851096539844,0.358618229219508
+170,9,0.331998763524541,1.9,1.3857067145736572,0.0006997691494839904,0.036450975681771344,0.8064500359835381,1,0.4328129407266641,0.3962452907795845
+170,10,0.3757119267506933,1.9,1.380507004991459,0.000700870097842226,0.03667858599273034,0.8056374730506874,1,0.46737200017089126,0.4625437556077894
+170,11,0.3920055259084514,1.9,1.3842135194640517,0.0006993981154640724,0.036416575797160025,0.8062167429943309,1,0.5003345177207266,0.5062390627338692
+170,12,0.4451193491148576,1.95,1.3850176113251789,0.0006995419775496282,0.03666218227235768,0.8177856762128272,1,0.5622323613883712,0.5674213485316972
+170,13,0.4555872867533422,1.95,1.3848351721798244,0.0006996475214449516,0.036751249691605266,0.8177585204249043,1,0.58340886338295,0.607412471333874
+170,14,0.4696789349419939,2.0,1.3722452986688338,0.0006917653049571823,0.03604910550811949,0.8268734498438178,1,0.6066974670402026,0.6233331604197099
+170,15,0.4604085829691504,2.0,1.1955750706440271,0.0007443751364392293,0.034343903870878975,0.8001230851487274,1,0.6240399687862711,0.6359753181821397
+170,16,0.4753105335915326,2.0,1.2038310941238108,0.0007363100839313436,0.034323770600113365,0.8014376012263599,1,0.6548137331335835,0.6446168011269973
+170,17,0.4838851994172113,2.0,1.2099260808085746,0.0007290626730690502,0.03389840497806975,0.8024034492963792,1,0.6712962628351653,0.6512223142771506
+170,18,0.4775202295856234,2.0,1.2141328057770155,0.0007223874865967086,0.03407854693079808,0.8030674748525772,1,0.7052702608448417,0.618040417492289
+170,19,0.48481635636808096,2.0,1.2097307758027158,0.0007199404222997055,0.03402593935373369,0.8023695883754814,1,0.7441837980099293,0.5904761238803642
+170,20,0.5024988304879963,2.0,1.3847386243527964,0.0006991205488792764,0.036710343067231255,0.8286567079191889,1,0.7496036497689108,0.6088579019347732
+170,21,0.5153470605460061,2.0,1.2085200564421512,0.0007192491597873556,0.03389685043558356,0.8021773117428269,1,0.7651228095766411,0.6309931223844988
+170,22,0.5105284194540336,2.0,1.2115905791044874,0.0007132982455050515,0.033793869063930046,0.80266223226982,1,0.8006689430014631,0.6008694741781613
+170,23,0.5578265220951896,2.0,1.3761048724010254,0.0006932904694459406,0.03648225460830448,0.8274257010014652,1,0.8063128054181886,0.6510046664263802
+170,24,0.5541465071114063,2.0,1.3775948654982173,0.0006946711332419796,0.03640591128250807,0.8276387508326909,1,0.8411133777894065,0.6590038533188123
+170,25,0.5933609955483932,2.0,1.3768094377760796,0.000693943884818304,0.03632066690924744,0.8275264709009176,1,0.8656405298073762,0.6903492787514756
+170,26,0.5604400106135976,2.0,1.37791967688637,0.0006952892379138958,0.03645408290721009,0.8276852574828445,1,0.8840182264785454,0.6561090667405978
+170,27,0.57320478925976,1.95,1.3771647401313876,0.0006951470355118026,0.03629917105684914,0.8166112642849739,2,0.8900308782038462,0.6573081265940718
+170,28,0.6339408298309122,2.0,1.3661499337956386,0.0006866451043342248,0.0360799021590663,0.8259976644292021,2,0.9448080635782963,0.6867253479986453
+170,29,0.6317999691883525,2.0,1.3666033150776389,0.0006866054713939541,0.03615969877167926,0.8260628058710311,2,0.9723113125211273,0.7095848139330047
+170,30,0.647129300231041,2.0,1.3642279370296118,0.0006850276476423648,0.03578524972508192,0.8257207858102703,2,0.9926763320858146,0.7335292246557169
+170,31,0.658578705845893,2.0,1.361581144472896,0.0006834372199555362,0.03566423458335977,0.825339109595736,2,1.0,0.7619290194863096
+170,32,0.6186181669023453,2.0,1.358663896652241,0.000681571940625029,0.03579970081889923,0.8249176372947479,2,1.0,0.7287272230078174
+170,33,0.6789276782839004,1.95,1.3633177487583354,0.0006873718267931734,0.036322191023712425,0.81452612900969,2,1.0,0.7630922609463348
+170,34,0.6157633131490238,1.95,1.3627593651922325,0.000685850212097868,0.03603388646017706,0.8144412974254098,2,1.0,0.719211043830079
+170,35,0.6053014602984967,1.9,1.3663484773556034,0.0006909551742826114,0.035979349509462834,0.803407719377361,2,1.0,0.6843382009949892
+170,36,0.6723154166915926,1.95,1.3683109425031912,0.0006957971380464737,0.036391480461420565,0.8152818206245337,2,1.0,0.7410513889719749
+170,37,0.7097559289858578,1.95,1.3685615571302192,0.0006938006372705443,0.03617316095900834,0.8153189583057591,2,1.0,0.765853096619526
+170,38,0.6243562882749971,1.95,1.3723772639833245,0.0006934911747697804,0.03646589249781783,0.8158927202678942,2,1.0,0.7478542942499903
+170,39,0.6597087284404091,1.9,1.3742320265307861,0.0006971768165064145,0.036496663579663136,0.8046518550363077,2,1.0,0.7656957614680303
+170,40,0.617067079260047,1.9,1.371844826606948,0.0006965948247890703,0.03619325617263652,0.8042761615050078,2,1.0,0.7235569308668232
+170,41,0.6779056110350613,1.8499999999999999,1.373132972798246,0.0007006622680532811,0.0364343643907319,0.7924133463754873,2,1.0,0.7596853701168708
+170,42,0.6878859633520034,1.8499999999999999,1.372726159796538,0.0006983153504704672,0.03647962696067635,0.792345647645675,2,1.0,0.7929532111733444
+170,43,0.700213879490609,1.9,1.372162358200863,0.00069609258565969,0.03631138762258189,0.8043259831441772,2,1.0,0.8340462649686962
+170,44,0.7161197723147887,1.95,1.3750835014441325,0.0006932308155658611,0.03629235717272459,0.8162988034874031,2,1.0,0.8870659077159622
+170,45,0.6545444302621917,2.0,1.373372179875691,0.0006924407354190203,0.03626583262014746,0.8270349009341648,2,1.0,0.8484814342073053
+170,46,0.7151412759943776,1.95,1.3730764829696567,0.0006916917709724478,0.03614914252457121,0.8159971876595845,2,1.0,0.8838042533145918
+170,47,0.702881137004739,1.95,1.3706527686364287,0.0006904021862527073,0.03641694353355387,0.8156326105923609,2,1.0,0.9096037900157964
+170,48,0.7632768316680483,2.0,1.3731828086091808,0.0006911461246319529,0.03634421674118554,0.8270074396130701,2,1.0,0.944256105560161
+170,49,0.74392427526364,2.0,1.3764049431577814,0.0006944409508215246,0.03650709209696905,0.8274688731135549,2,1.0,0.9797475842121331
+171,0,0.1861135930913579,2.0,1.359065220474978,0.0006871756547236093,0.035525639774002776,0.8249772105905057,0,0.20122559873480417,0.1854111786581208
+171,1,0.20941832314154468,1.95,1.3665844349805143,0.0006892321063849561,0.03597568553548988,0.8150196920679524,0,0.27073732270772255,0.20374464686151883
+171,2,0.20030370577229764,1.95,1.3712328091939432,0.0006933929637732027,0.03623944889127874,0.8157207179863237,0,0.2834363079080568,0.22309727536358306
+171,3,0.25215356167591474,2.0,1.3709534848666727,0.0006925467857388234,0.036428953475603,0.8266886676943961,0,0.36922371000176396,0.1815469255840305
+171,4,0.2676138771294139,2.0,1.362147887566534,0.0006871551704782088,0.03617618607608676,0.8254218645996741,0,0.44413989440600476,0.1665263978900401
+171,5,0.3078061878291269,2.0,1.321320596745652,0.0006660095844511701,0.03490892382528357,0.8194539917213596,0,0.5402514044473764,0.1723520868339211
+171,6,0.3351538132046886,2.0,1.3195419939630544,0.0006650514870912883,0.0348948679178767,0.8191904156062881,0,0.6023192586263031,0.1807536991805579
+171,7,0.37423077671848964,2.0,0.7433180658746482,0.0002946865168956268,0.02071884237264885,0.717867347294634,0,0.6903773236105603,0.16026615758088522
+171,8,0.39210762162294654,2.0,0.7380468790372975,0.000290035381439325,0.020604499018253376,0.7167966403666988,0,0.7655083520648255,0.15301426932338782
+171,9,0.4375871364665305,2.0,0.7733748139881764,0.000352982210454599,0.022227282579677696,0.7239381005694864,0,0.8550346638239422,0.1519109031231787
+171,10,0.41511094523002445,2.0,1.1358590450060149,0.0007203754136000485,0.03288156891823909,0.7903936385899062,0,0.861731298466853,0.16806141947761066
+171,11,0.4031142820024093,2.0,1.1351417979308325,0.0007238478202562866,0.0324605843618192,0.7902759374511626,0,0.8769190066647731,0.1744889311216669
+171,12,0.4118606454622713,2.0,1.138850851498896,0.0007333314564630319,0.03239754608408593,0.7908931505434922,0,0.8855928509073281,0.1920783503311336
+171,13,0.44900060552404764,2.0,1.1417003509975578,0.0007422262135074315,0.032644179043289354,0.7913669506600778,0,0.909005003360752,0.2179953472658226
+171,14,0.4276417459626544,2.0,1.3334598253529049,0.000708631482127768,0.0355675979749108,0.8212555342476394,0,0.9070289753551233,0.216100519402017
+171,15,0.46005189851917916,1.95,1.3319319006959525,0.0007085385313642307,0.03584640315336981,0.8097442100010017,0,0.9306304385658536,0.22599907697612556
+171,16,0.44818192643045474,1.95,1.3318014223896366,0.0007164166487489416,0.035911242015694664,0.80972653545991,0,0.9471737754783434,0.2310413874637247
+171,17,0.5108556417336843,2.0,1.3301546280212917,0.0007164750574483696,0.03594461724292965,0.8207721405880805,0,1.0,0.23618547244561394
+171,18,0.4970354511908624,2.0,1.3418145418453684,0.0007108506229208035,0.03616528980619221,0.8224793218683386,0,1.0,0.2567848373028745
+171,19,0.50129091468108,2.0,1.342468488372507,0.0007175975716929102,0.03602730503724473,0.8225767519264237,0,1.0,0.27096971560359995
+171,20,0.5243569632298845,2.0,1.3425848296847156,0.0007236379227226052,0.03597941254353911,0.8225954936031642,0,1.0,0.24785654409961452
+171,21,0.47628277863363916,2.0,1.342953729290016,0.0007189482584982554,0.03619461296091485,0.8226479530844416,0,1.0,0.25427592877879707
+171,22,0.5163922070262092,1.95,1.341468883254615,0.0007192678758718121,0.03609899144178526,0.8112124113142772,0,1.0,0.2546406900873639
+171,23,0.5226369092859332,1.95,1.349691261338832,0.0007146998113221957,0.03628748383438001,0.8124670293897618,0,1.0,0.24212303095311047
+171,24,0.5144807321847233,2.0,1.3497692473278056,0.0007107416713010588,0.036029987298791054,0.8236377557542127,0,1.0,0.21493577394907762
+171,25,0.4683430296542081,2.0,1.3502947827935488,0.0007069889811352481,0.035968330526586455,0.8237129914655001,0,1.0,0.22781009884736023
+171,26,0.470294032532427,1.95,1.3490007756626416,0.0007072489517955314,0.0358272896146166,0.8123595298043175,0,1.0,0.23431344177475671
+171,27,0.5111453477898238,2.0,1.34673925021919,0.0007075943251901491,0.03604168592195911,0.8231962747628188,0,1.0,0.2038178259660792
+171,28,0.5071631654683931,2.0,1.3471473150432576,0.0007040657075449543,0.036106861252242946,0.8232546315146211,0,1.0,0.22387721822797707
+171,29,0.509204974449051,2.0,1.3551561880028953,0.0007012333410185111,0.036128911642945606,0.8244161387728518,0,1.0,0.1973499148301698
+171,30,0.4820740821200512,2.0,1.1390593180707949,0.0007518479014552496,0.03262622277469942,0.7909337486334717,0,1.0,0.2069136070668372
+171,31,0.46224952840730915,1.95,1.3554959544726095,0.0007035109014310351,0.036101733394705675,0.8133464567515076,0,0.9991507203869058,0.2086308008418226
+171,32,0.46210237943644006,2.0,1.3534157232433575,0.0007036269445584351,0.03613420183406134,0.824164750722333,0,1.0,0.20700793145480006
+171,33,0.4630263928521446,2.0,1.3528201919448812,0.0007036279935057441,0.03607476587243848,0.824078431628184,0,0.999568331115407,0.2106635346866059
+171,34,0.4877397383777653,2.0,1.3513920441144478,0.0007035616359404856,0.03604691049654964,0.8238712734165012,0,1.0,0.2257991279258842
+171,35,0.4739017601505926,2.0,1.3522048558883153,0.0007091571678973041,0.03623715361819343,0.8239908104167426,0,0.9999820937113904,0.24636307555345469
+171,36,0.4986124083705482,2.0,1.350747667783147,0.0007092471767770604,0.036214880506367356,0.8237794008397128,0,1.0,0.26204136123516064
+171,37,0.5236048126072824,2.0,1.3511320571012195,0.0007146535204307639,0.036200020803193636,0.8238367637487413,0,1.0,0.2453493753576081
+171,38,0.5089921122585908,2.0,1.3511824342798802,0.0007108223096484599,0.0359878497778153,0.8238429628450282,0,1.0,0.2299737075286356
+171,39,0.4679911425690528,2.0,1.3585948904805625,0.0007073884931975291,0.03618535667431757,0.8249151281141408,0,1.0,0.22663714189684248
+171,40,0.5150328375777946,1.95,1.3573239612347368,0.0007075957876733302,0.03622985239325458,0.8136250536806964,0,1.0,0.21677612525931525
+171,41,0.504891895386263,1.95,1.3564611878021482,0.0007045620757469614,0.03619966702874346,0.813493267336877,0,1.0,0.21630631795421001
+171,42,0.49653528962517557,2.0,1.362818456450971,0.0007021883261670245,0.03616737780813489,0.8255228035403963,0,1.0,0.25511763208391847
+171,43,0.52283729597895,2.0,1.363842415383085,0.0007059604971653694,0.03629165365910298,0.8256713261320818,0,1.0,0.24279098659650003
+171,44,0.49976292294718394,2.0,1.3635775218545143,0.0007033152229235563,0.03620623221460688,0.8256324329037582,0,1.0,0.26587640982394634
+171,45,0.478232051821696,1.95,1.3637676915572612,0.0007066198803480364,0.03628629102373379,0.8145999077581347,0,1.0,0.2607735060723199
+171,46,0.5221269280831521,1.9,1.3621687329639753,0.0007071073703700556,0.036297864757879945,0.8027518327219572,0,1.0,0.2404230936105069
+171,47,0.47451672907112874,1.9,1.3612199557905238,0.0007045106273939583,0.036220906040988,0.8026007361133664,0,1.0,0.24838909690376249
+171,48,0.5216705312006398,1.8499999999999999,1.3601413125094217,0.0007048465619819493,0.03631927102522568,0.7902695583936715,0,1.0,0.23890177066879917
+171,49,0.5124258109226759,1.8499999999999999,1.3589507027525891,0.0007022447636207472,0.03605940186718992,0.7900712912067493,0,1.0,0.24141936974225306
+172,0,0.0576627533066463,1.9,1.355322539720633,0.0006851566624927685,0.03541064128913432,0.8016585697759093,0,0.16573918766960496,0.1712235941293477
+172,1,0.19754126535653593,1.8499999999999999,1.3825805848532053,0.0007015788054589203,0.03668230952836156,0.7939634328656993,0,0.2732813374360047,0.1274291012737801
+172,2,0.24121597072051354,1.8499999999999999,1.3500321792203274,0.0006809687501297038,0.03599171801579842,0.7885811559349668,0,0.39405942522284537,0.11197400210458466
+172,3,0.19551890415696307,1.8499999999999999,1.3537510926452339,0.000687761536376691,0.036257066927324555,0.7892027713068838,0,0.40469281628007103,0.1121392588164488
+172,4,0.264802582931045,1.7999999999999998,1.2610929854302524,0.0006301856520206294,0.033599457651397734,0.759940504610902,0,0.476585132254913,0.11389510009693278
+172,5,0.23112531539422168,1.7999999999999998,1.25531479130998,0.0006264723562349463,0.03303739277949054,0.7588834416337733,0,0.4801420567953662,0.13022830892025059
+172,6,0.2663006315628833,1.7499999999999998,1.2688631194601236,0.0006262443830386843,0.033401598732479075,0.7474608434152489,0,0.49430516446940825,0.16192855258373337
+172,7,0.31670822394447196,1.7499999999999998,1.2675954202039954,0.0006264192818326477,0.03379711769181313,0.7472215395451162,0,0.5680571660666315,0.16495119172606457
+172,8,0.36663795720737136,1.7499999999999998,1.2645667771719584,0.0006242728676690387,0.03386557835589037,0.7466482446177826,0,0.6798035813754149,0.14905508219068472
+172,9,0.39812508083363435,1.8499999999999999,0.6278182954357636,0.00022424016904714684,0.01752939761174422,0.6441143442024153,0,0.7726977710833977,0.13015324133425094
+172,10,0.42061754712127036,1.95,0.6467308414080195,0.0002378575718367582,0.018100746465698016,0.6818326092738963,0,0.8433298182512323,0.1442853994025914
+172,11,0.4497992650077619,2.0,1.13255033807825,0.0007592193968079757,0.032696961124391244,0.7898578484717815,0,0.9160044106100808,0.14465833587909874
+172,12,0.47476719596128597,2.0,1.1336837408454898,0.0007544059117657189,0.03265233991417117,0.7900443147485006,0,0.9893638384107145,0.13007220199000058
+172,13,0.48178867495679956,2.0,1.132768528186294,0.0007498664633545989,0.03294954446421362,0.7898909574358705,0,1.0,0.13929558318933177
+172,14,0.47831868674730826,2.0,1.1318436370996006,0.0007455101016516496,0.032976364448861116,0.7897359715947724,0,1.0,0.12772895582436092
+172,15,0.46242688246636804,2.0,1.1309212362690708,0.0007414888002898589,0.033179629861085955,0.7895814269577832,1,1.0,0.14142294155456003
+172,16,0.45953875605099587,2.0,1.3511916262928512,0.0007439429493481555,0.03648704016178329,0.8238539098896328,1,1.0,0.13179585350331938
+172,17,0.4609628852271197,2.0,1.3493545234132784,0.0007451498950842741,0.03670647428135482,0.8235875040936695,1,1.0,0.13654295075706557
+172,18,0.5112099271933161,2.0,1.3473923679113942,0.0007462919860647983,0.0366415188821097,0.8233025715703267,1,1.0,0.2040330906443871
+172,19,0.48383579225602547,2.0,1.3267068722568316,0.0006620219103239259,0.03532545301007911,0.8202483399437878,1,1.0,0.2127859741867515
+172,20,0.48393720112595573,1.95,1.3341160332345028,0.0006713628007826206,0.035032864108955744,0.8100690273743362,1,1.0,0.2131240037531856
+172,21,0.47113432564473773,2.0,1.3385998624426199,0.0006800123095479804,0.035330606299857854,0.8220004451363826,1,1.0,0.20378108548245905
+172,22,0.510352833787842,2.0,1.3464861363151104,0.0006798939668533764,0.035512713347766914,0.823151367781678,1,1.0,0.23450944595947346
+172,23,0.5439902295446452,2.0,1.3465401907502075,0.0006783921935956183,0.03569919416553812,0.8231587992999593,1,1.0,0.313300765148817
+172,24,0.5445774720862451,2.0,1.343684675151961,0.0006769827166765471,0.03594733312916994,0.8227423317340263,1,1.0,0.34859157362081683
+172,25,0.5558544875813147,2.0,1.343267164822205,0.000675618209503592,0.03573731825235169,0.8226810368135706,1,1.0,0.38618162527104904
+172,26,0.5682590194432713,2.0,1.3423133749806262,0.0006742749027076988,0.03513184177623888,0.822541465880909,2,1.0,0.4275300648109039
+172,27,0.5163314055093322,2.0,1.3720684960848373,0.0006949791688944812,0.036089159839164255,0.826849058686326,2,1.0,0.3877713516977739
+172,28,0.5734932122360562,1.95,1.3310460765896912,0.0007096944246938419,0.035544029137946354,0.809608060146483,2,1.0,0.41164404078685374
+172,29,0.511300579232242,1.95,1.3706934967795668,0.0006918518953780359,0.0364258055781599,0.8156391710425973,2,1.0,0.37100193077414007
+172,30,0.6018355104349168,1.9,1.3038862847871877,0.0006988948192394202,0.035564429522923276,0.7933575625857637,2,1.0,0.40611836811638924
+172,31,0.507841603204543,1.9,1.3689001158655763,0.0006894956170413437,0.03610282663304191,0.8038099624184731,2,1.0,0.35947201068180995
+172,32,0.5493448964277381,1.8499999999999999,1.3081193209089843,0.0007396941024689658,0.035828647318886395,0.7815289546562835,2,1.0,0.39781632142579365
+172,33,0.6090562702943362,1.8499999999999999,1.3130650085378317,0.0007315117730468116,0.036060075614012366,0.7823694263323168,2,1.0,0.4301875676477874
+172,34,0.5689498399292953,1.8499999999999999,1.366714109534648,0.000687399330644021,0.03595034172437781,0.7913511174071991,2,1.0,0.46316613309765076
+172,35,0.5829342623470253,1.7999999999999998,1.3653994718931688,0.0006869769292676597,0.03610500013712642,0.7784701709644439,2,1.0,0.5097808744900841
+172,36,0.6437296101712646,1.8499999999999999,1.363416213814286,0.0006861159443086377,0.03614417309434238,0.7908056390725833,2,1.0,0.5457653672375488
+172,37,0.6539590040396586,1.8499999999999999,1.3682539567802832,0.0006882429644238168,0.03616860833290973,0.79160553283283,2,1.0,0.579863346798862
+172,38,0.6099629026103381,1.9,1.371420350315145,0.0006901182532853017,0.036228219499164487,0.8042072939402953,2,1.0,0.5998763420344605
+172,39,0.5676356821390655,1.8499999999999999,1.3704771032022924,0.0006894819329270373,0.03623444537651415,0.7919724473747897,2,1.0,0.5587856071302182
+172,40,0.6588693902955686,1.7999999999999998,1.3728378706004754,0.0006913540188527493,0.0362674398312258,0.7797518011974363,2,1.0,0.5962313009852288
+172,41,0.641491767396172,1.7999999999999998,1.3751091287201285,0.000692487885704393,0.03629271255408516,0.78014200574707,2,1.0,0.6383058913205729
+172,42,0.6857073693087548,1.8499999999999999,1.3712596906189432,0.0006947767801395448,0.03626717048270847,0.7921030946986363,2,1.0,0.6856912310291827
+172,43,0.6918084981001356,1.8499999999999999,1.3753756057732556,0.0006949595981987094,0.036324850765381875,0.7927801314467141,2,1.0,0.706028327000452
+172,44,0.645249162964872,1.9,1.3780414184953484,0.0006953353028816151,0.03638575460664644,0.805249370457612,2,1.0,0.7174972098829063
+172,45,0.6469506242247671,1.8499999999999999,1.3768130403783256,0.0006948527720921036,0.03625659678930515,0.7930161384597332,2,1.0,0.7231687474158901
+172,46,0.6791270355763049,1.9,1.3748741765637786,0.0006940544415634197,0.03647850965012242,0.80475179187315,2,1.0,0.7637567852543495
+172,47,0.6141924523059547,1.9,1.3745145459210986,0.0006930495735038182,0.03631272887033511,0.8046949623795078,2,1.0,0.7139748410198486
+172,48,0.7009657094728682,1.8499999999999999,1.3763342900421238,0.0006956333337908212,0.03642987833801916,0.7929378009342396,2,1.0,0.7365523649095606
+172,49,0.6822402147084745,1.8499999999999999,1.3785822847600835,0.000695765619673581,0.036264146701435684,0.7933066937739722,2,1.0,0.7741340490282483
+173,0,0.025434580111264843,1.9,1.3643121076820843,0.000711098848516027,0.03615359311883996,0.803092259691918,1,0.15343886188771377,0.18019678452059773
+173,1,0.052975236366729545,1.8499999999999999,1.3814111293970404,0.000698759237844488,0.036600628400961656,0.7937711380260473,1,0.18888980775252034,0.19139771088573806
+173,2,0.16106323893309046,1.8499999999999999,1.3813491332066006,0.000698376528395721,0.03657586927713798,0.7937608638541551,1,0.20938193879557462,0.19103487804953548
+173,3,0.2232805556174286,1.8499999999999999,1.3780034697258534,0.0006950702498315306,0.03651809800643318,0.7932115405562777,1,0.24957439523702155,0.24483599174206655
+173,4,0.24178217523842105,1.8499999999999999,1.3847775746969937,0.0006991941504646742,0.036731849071761004,0.7943218172599921,1,0.2844831812920984,0.2932963424052723
+173,5,0.29326515301402706,1.9,1.3845135833101943,0.0006990871469768354,0.036500655506361335,0.8062635209053549,1,0.34283463121484925,0.3537710017602912
+173,6,0.27357052572335316,1.9,1.384517526183947,0.0006989605791880148,0.0364746880971933,0.8062640972516056,1,0.3569349740850476,0.36932178696444695
+173,7,0.2645227700439856,1.95,1.384688116174811,0.0006990497769023966,0.0367294512012538,0.8177364255346902,1,0.390825064275603,0.32730914777914805
+173,8,0.3356190117014372,2.0,1.3851738267789453,0.000699442081745215,0.03663960629243195,0.8287185824762751,1,0.43588322044366856,0.37088574507989935
+173,9,0.31787979488755935,2.0,1.379994732864584,0.000700769657558823,0.03619575605864359,0.8279825668137752,1,0.4607968872095006,0.37853680001253037
+173,10,0.32484664743967245,2.0,1.3803277857757246,0.0007025862613922686,0.03659025104649545,0.8280305148591485,1,0.46534173067925294,0.3956998505599042
+173,11,0.3206809380553335,2.0,1.3804162811649487,0.0007041951243801132,0.036711740195217,0.8280435740452965,1,0.4940637600090966,0.37685144683898286
+173,12,0.3613358747689241,2.0,1.3814232205668726,0.000703086130656853,0.036560209326640336,0.8281865865809439,1,0.5085021650053194,0.393116695889321
+173,13,0.3894124878297281,2.0,1.3821191259443113,0.0007020679890208313,0.03665781638483333,0.8282852972053731,1,0.5418008190676431,0.44230720067556945
+173,14,0.3569139988108469,2.0,1.3830914421695675,0.0006995262043678384,0.036669524721982164,0.8284228218315032,1,0.5582967053992592,0.411984388837144
+173,15,0.37107142201218835,1.95,1.382823682695065,0.0006990508638693297,0.03650678032937143,0.8174583794148972,1,0.5677978172988568,0.41317431697548535
+173,16,0.4149698409142415,2.0,1.382674330997478,0.0006994696387075841,0.036683874472138334,0.8283635100892829,1,0.6051349831650751,0.4430528254940382
+173,17,0.43343022750187216,2.0,1.385090298973549,0.0006996903418902329,0.03674743088136687,0.8287067963540928,1,0.6367101794787328,0.46248718570126357
+173,18,0.41562918234706636,2.0,1.3848538478548684,0.000699351912173205,0.03642852382929022,0.8286731329770489,1,0.6686696032543649,0.4605378034844013
+173,19,0.494659477399969,2.0,1.3853999677380022,0.0006995805482899449,0.036640978188435466,0.8287507187667662,1,0.7229771983973328,0.5182286601367863
+173,20,0.4824468791192334,2.0,1.385160576241899,0.0006995107046659935,0.03672931318869162,0.8287167211140182,1,0.748817195389291,0.5430666698783898
+173,21,0.5537957648088331,2.0,1.3852921553434925,0.0006998337893326558,0.03644210417395123,0.8287354890562801,1,0.8041534736969712,0.6071145844334817
+173,22,0.5157281784467571,2.0,1.3792703346944173,0.0006997105819029827,0.03653075798275258,0.8278790662989568,1,0.8340440106838982,0.5737019139106592
+173,23,0.5339251652678458,1.95,1.3785890858030616,0.0006952486531182114,0.03647488060337775,0.8168245046799266,1,0.8413696763919287,0.5912576490369142
+173,24,0.6036140905899834,2.0,1.3774889850226737,0.0006943022410446208,0.036445528986287154,0.8276235409028572,1,0.8865144114674953,0.6633610866766174
+173,25,0.5681521645808298,2.0,1.3795276582445195,0.0006997398269285218,0.03641838134651311,0.8279157389395725,1,0.9280718972950998,0.6230780188759664
+173,26,0.644328880300661,1.95,1.3784179479992094,0.0006996849302247387,0.03655979410244142,0.8168002249427408,1,0.97976491501747,0.6747430476455767
+173,27,0.6726891757518658,1.95,1.3803248718381858,0.0006990280760986246,0.03655239025109549,0.8170852037752319,1,1.0,0.7422972525062193
+173,28,0.6675054027504157,1.95,1.3817258175720246,0.0006985878077837484,0.036646331817967184,0.8172943603952284,1,1.0,0.7583513425013854
+173,29,0.6472733842490342,2.0,1.3824512809401446,0.0007004046182805829,0.03630575408551188,0.8283320609928914,1,1.0,0.7575779474967806
+173,30,0.6543722876967826,1.95,1.3826786666140523,0.0006994870908208026,0.03643955946165162,0.8174368692930403,1,1.0,0.7812409589892753
+173,31,0.6556462566152558,2.0,1.382388278846994,0.0006985737470491004,0.03662337353563382,0.8283225813174602,2,1.0,0.7854875220508525
+173,32,0.6256309182007349,2.0,1.3751236789014543,0.0007022957881196153,0.03657711983363969,0.8272881224213517,2,1.0,0.7521030606691165
+173,33,0.6139337731054746,1.95,1.375556839538519,0.0007059355893636306,0.036568374801547024,0.8163735814254137,2,1.0,0.7131125770182484
+173,34,0.6998028605683021,2.0,1.3751967454247647,0.0007093705269287254,0.036594675295417226,0.8273005837045772,2,1.0,0.7326762018943405
+173,35,0.7056232217920547,2.0,1.3765266059872265,0.0007063214021428547,0.03663711022609451,0.8274896334185077,2,1.0,0.752077405973516
+173,36,0.6083697621183868,2.0,1.3769291211325927,0.0007038196733719454,0.036334986818822336,0.8275463710396973,2,1.0,0.6945658737279561
+173,37,0.6965684163150371,1.95,1.3767653698445081,0.0007061646583166568,0.03640172259555783,0.8165547488540882,2,1.0,0.7218947210501239
+173,38,0.6576012547482153,1.95,1.3765648404754833,0.0007038384503456592,0.036425531563322906,0.8165240120440187,2,1.0,0.7586708491607176
+173,39,0.6906239780703889,1.9,1.3752343328567496,0.000704385100845788,0.036548476111000795,0.8048116214084651,2,1.0,0.8020799269012959
+173,40,0.6747391984427843,1.9,1.383498940352071,0.0006992130610898701,0.036609183707220425,0.8061050210891779,2,1.0,0.8157973281426143
+173,41,0.7049489650861391,1.95,1.3839910347556095,0.0007005444655039544,0.036720850494910307,0.8176329527675276,2,1.0,0.8498298836204637
+173,42,0.641942995578745,1.95,1.3840573619563443,0.0006997111150410575,0.03671677316953229,0.8176425940518457,2,1.0,0.8064766519291502
+173,43,0.7009255921852494,1.9,1.3832339158056683,0.0006996330364586531,0.03662167469981307,0.806063725772648,2,1.0,0.8364186406174978
+173,44,0.7122901828233661,1.9,1.3828995780320947,0.000698703725230327,0.036581169355419274,0.8060111644645287,2,1.0,0.8743006094112202
+173,45,0.7246989754316491,1.95,1.3823438746926415,0.0006978581475184098,0.036459988900273785,0.8173864154104034,2,1.0,0.9156632514388301
+173,46,0.7138347008460326,2.0,1.381672676606717,0.0006970954198810933,0.036460526284623804,0.8282203750573356,2,1.0,0.9461156694867751
+173,47,0.7410845553761545,2.0,1.3824321869063967,0.000698078393203923,0.03663358167919776,0.8283286842626754,2,1.0,0.9702818512538481
+173,48,0.7731522998984167,2.0,1.3815775488601645,0.0006971513400932047,0.036447617043511356,0.8282068565911571,2,1.0,0.9771743329947222
+173,49,0.6872451743541699,2.0,1.3832796935371932,0.0006980737602796552,0.036493935314737255,0.828449165089181,2,1.0,0.9574839145138997
+174,0,0.18604076978921658,1.95,1.3652838705150352,0.0007104399116311706,0.03616213130977739,0.8148299350998663,2,0.14980822695996518,0.25372493001743496
+174,1,0.20724669146666874,1.9,1.3862119376838458,0.0007001724583393818,0.036739979908954765,0.8065290090934244,2,0.17597096002497975,0.28952769152225605
+174,2,0.16480532027359224,1.9,1.3862185603229564,0.0007001347472621582,0.03670348060981851,0.8065300307188892,2,0.21908175893270562,0.25724205566836666
+174,3,0.24770074426071048,1.8499999999999999,1.3856966889511242,0.000699855594788797,0.036443100221640004,0.7944721526353239,2,0.2633637167089203,0.30785085859047456
+174,4,0.19840212417561337,1.8499999999999999,1.3857733379696417,0.0006998280204522121,0.03676598987195434,0.7944846590714598,2,0.28826199666893887,0.2769910850267927
+174,5,0.31033099817890314,1.7999999999999998,1.3859256430116558,0.0007000178293658976,0.03654513941164287,0.7819942039162724,2,0.34466082880350535,0.30822222219167
+174,6,0.308558597768745,1.7999999999999998,1.385909303923237,0.000699919727649718,0.036703764586624124,0.7819913849786614,2,0.3784692905848022,0.35723627178274714
+174,7,0.31320500245868266,1.8499999999999999,1.3859745431196895,0.0006999512269730772,0.03671177152076992,0.7945175498866937,2,0.42340428658397655,0.37947762608364
+174,8,0.39359931776942514,1.9,1.3859912227267956,0.0007000646252266991,0.03638377611271264,0.8064945327516967,2,0.47808800921061656,0.4078803802839283
+174,9,0.4240782637103023,1.9,1.383219610659349,0.0006981708175284359,0.036517856571900216,0.8060610323437707,2,0.5289897374581359,0.44160789575682624
+174,10,0.3896110674203952,1.9,1.3829430505612001,0.0006978640665687467,0.03664176538156675,0.8060176990491591,2,0.5575932366249793,0.4552459092346783
+174,11,0.4728978857365688,1.8499999999999999,1.3823677428766583,0.0006975114287788583,0.036333539874729405,0.7939272819286343,2,0.6223172937512347,0.4799032274535831
+174,12,0.4730418243994767,1.8499999999999999,1.372624309681466,0.0007067129765851843,0.03654302702002736,0.792331652878998,2,0.6683373132429721,0.5190229970076262
+174,13,0.49089102713651006,1.9,1.3764049974093495,0.0007051878039459794,0.036491221833959975,0.8049957073513441,2,0.7016783302973745,0.5340656500585342
+174,14,0.4820952363570864,1.95,1.379551167997914,0.0007039198215944009,0.0363272255963791,0.8169710028947187,2,0.7244001148529878,0.5411173013863042
+174,15,0.5258300329773367,2.0,1.3791840014474253,0.0007045835664271191,0.0365056519077533,0.8278681526963902,2,0.7511553499303751,0.5845596433506218
+174,16,0.5550637696362132,2.0,1.381642621684015,0.0007034649264248033,0.03666278030581875,0.8282179114848838,2,0.7964652647456002,0.6215922124599101
+174,17,0.6124863868042714,2.0,1.3673461393738597,0.0007072267632258448,0.03649938543236882,0.8261754341893247,2,0.847549104146845,0.6448891504851111
+174,18,0.5783520588770513,2.0,1.3773381276280618,0.0007034918048711439,0.036394602041444374,0.8276046403599948,2,0.880229638035452,0.6542006788762351
+174,19,0.6665227867845883,1.95,1.3761091654206337,0.0007038536703031817,0.0364832881724438,0.8164557409174041,2,0.9566392294788542,0.6795569833101557
+174,20,0.6360835073184451,1.95,1.375745624812018,0.0007015945500970645,0.0364069922290383,0.8164005787530175,2,0.9858186939657186,0.7058534324405252
+174,21,0.6457282270235475,1.9,1.3742888492398624,0.0007018694893043342,0.03637216146305765,0.8046622618882513,2,1.0,0.7190940900784913
+174,22,0.6773402006454472,1.95,1.3722664390417905,0.000702110034872208,0.03628192308185748,0.8158786619483211,2,1.0,0.7578006688181573
+174,23,0.7157858273088423,1.95,1.3763399169419572,0.0007006571352566992,0.03627766221867359,0.816489359937457,2,1.0,0.785952757696141
+174,24,0.6223731650193735,1.95,1.376158544996503,0.0006986490689032596,0.036400554591337536,0.8164615807804152,2,1.0,0.7412438833979116
+174,25,0.679794011547823,1.9,1.3767128909054378,0.000701262587567916,0.036593903170886136,0.8050428030867017,2,1.0,0.7659800384927433
+174,26,0.6625980642070668,1.9,1.37948085279386,0.0007003918337409722,0.03653739579668401,0.8054765919857544,2,1.0,0.7753268806902224
+174,27,0.6869617534440943,1.95,1.3780409377654204,0.0007004275170419481,0.03651602342240554,0.8167440255822601,2,1.0,0.7898725114803141
+174,28,0.6248583792190552,1.95,1.380500391089882,0.0006996012426945715,0.036589680474114185,0.8171116061997983,2,1.0,0.7495279307301838
+174,29,0.6154847081860344,1.9,1.3809731435571293,0.000701741450546302,0.03633228090203295,0.8057107261067699,2,1.0,0.7182823606201145
+174,30,0.7049580776289414,1.95,1.3808798401258993,0.0007037059724177405,0.03667933051281351,0.8171695308527556,2,1.0,0.7498602587631381
+174,31,0.6611937881936383,1.95,1.3812191618664922,0.0007019070190174678,0.03670373860127379,0.8172196838239352,2,1.0,0.7706459606454606
+174,32,0.6200095236931432,1.9,1.3800861741399433,0.0007021807234082163,0.03650273684318138,0.8055719790224727,2,1.0,0.733365078977144
+174,33,0.604890055871609,1.8499999999999999,1.3798490624831339,0.0007041837115128546,0.03650873334058484,0.7935170902236863,2,1.0,0.6829668529053636
+174,34,0.594142129519147,1.9,1.3793023005874132,0.0007060503345291941,0.03673369757719794,0.8054503875576304,2,1.0,0.6471404317304901
+174,35,0.6803707347223524,1.95,1.3788988320843707,0.0007073597471678552,0.03672592865484332,0.8168744685010433,1,1.0,0.6679024490745081
+174,36,0.6503388980430554,1.95,1.3822491899869993,0.000700896436416877,0.036631538614830025,0.8173731888697425,1,1.0,0.701129660143518
+174,37,0.6342285523887035,1.9,1.3824412708864298,0.000702669350395203,0.03670069955767525,0.8059407352599822,1,1.0,0.7140951746290116
+174,38,0.6126515231143389,1.95,1.382788714426882,0.0007015017341875279,0.03673023048143917,0.8174538928395013,1,1.0,0.6755050770477963
+174,39,0.6284831419117727,1.9,1.3819333542050236,0.0007015837021302133,0.03669595431788539,0.805860944914203,1,1.0,0.6949438063725754
+174,40,0.6305967021031429,1.95,1.3819748934404072,0.0007004021053527364,0.03655286890611839,0.8173320922839279,1,1.0,0.7019890070104761
+174,41,0.6748688935796151,2.0,1.38191420189102,0.0006992894676496875,0.03640757207420586,0.8282553586707372,1,1.0,0.7495629785987168
+174,42,0.6763097957885889,2.0,1.3834398600422997,0.0006992022113131282,0.036527335614542786,0.8284722476584823,1,1.0,0.7876993192952959
+174,43,0.6885846645199385,2.0,1.3837946250380622,0.0007003228916897747,0.0364591989433848,0.828522974448439,1,1.0,0.828615548399795
+174,44,0.6505905388835816,2.0,1.3555669981689433,0.0007279319512634654,0.03649737123947766,0.8244833246081398,1,1.0,0.801968462945272
+174,45,0.687521247686334,1.95,1.35420187745844,0.0007310595552414703,0.03650339897494893,0.813158289260589,1,1.0,0.8250708256211133
+174,46,0.696894432867772,1.95,1.3515927086145494,0.0007338524918787041,0.03632867014842754,0.8127623994312086,1,1.0,0.8563147762259066
+174,47,0.656043462653867,2.0,1.349468668329066,0.0007357209848586745,0.03638874435614629,0.8236013480362875,1,1.0,0.82014487551289
+174,48,0.6428958527179298,1.95,1.3488011571217295,0.0007386909957067642,0.03633907271500017,0.8123386862730293,1,1.0,0.776319509059766
+174,49,0.6339552285613345,2.0,1.3836115759573588,0.0006998008302596956,0.03656569823817922,0.8284968182563711,1,1.0,0.7465174285377815
+175,0,0.09527709544448043,2.0,1.3557823531780304,0.0006832499732552092,0.03538961348600651,0.8245015561001391,0,0.0851357681901134,0.20407596056145025
+175,1,0.13761817351470582,1.95,1.3567665432262697,0.0006827179411208632,0.03569554884521477,0.8135329647368075,0,0.12614039772442553,0.22387338141645205
+175,2,0.15677686523487375,1.95,1.3582591981099565,0.0006820906229474949,0.03609070645930501,0.8137591000159927,0,0.15408676092273402,0.2504738695526005
+175,3,0.22534547994249915,2.0,1.3598874172854496,0.000682168930316428,0.03630865973166317,0.8250944506429784,0,0.25367140385511544,0.24625639466817656
+175,4,0.24096718532758954,2.0,1.3717487489849594,0.0006933775811345577,0.036326695289207865,0.8268028171139228,0,0.31903518021828564,0.24451037746758425
+175,5,0.23763793555127544,2.0,1.3710686829622825,0.000693202293215095,0.036334229578658686,0.826705359845276,0,0.35463968318661065,0.25260687425543726
+175,6,0.25440176901778516,2.0,1.370689820047588,0.0006922525604054807,0.03618881434462374,0.8266508036669676,0,0.3835024351729431,0.27000264982869304
+175,7,0.301896683067389,2.0,1.3701997871516685,0.0006914404931337844,0.03607142021241087,0.8265803382666983,0,0.45326158133745537,0.26864016844135613
+175,8,0.3244629041262845,2.0,1.3435263279305314,0.0007086079341371471,0.035918157016909855,0.8227284626414842,0,0.5197856536700899,0.2551621421941619
+175,9,0.33373954388589444,2.0,1.3432553988002465,0.0007109616095255394,0.03571180516209919,0.8226896318334636,0,0.5759947777876665,0.277805442569426
+175,10,0.3946324971729141,2.0,1.342666707816555,0.0007089076346713891,0.035736573805189804,0.8226031428802915,0,0.6658907787865158,0.260920618861026
+175,11,0.4331391309815174,2.0,0.8091998228972248,0.0011100398278588756,0.03387509280067866,0.7313376568089106,0,0.7702469323932059,0.2501345267474502
+175,12,0.4635422892948324,2.0,0.8060722130646736,0.0011017836960784992,0.03283784903128768,0.7307194414655152,0,0.8696882539482449,0.21888995905178135
+175,13,0.4211995538693255,2.0,1.297138389408738,0.0007292449891845644,0.034850105760356256,0.8158675784503161,0,0.8899576172725198,0.21738835653439176
+175,14,0.4345172249602948,1.95,1.2961130866873267,0.0007300502983490488,0.03543982394252201,0.804171485604611,0,0.9144603917253207,0.2291102275672217
+175,15,0.47890178217998375,2.0,1.2932818783485018,0.0007315009662405738,0.035700372973628464,0.8152881973595466,0,0.9523177118900317,0.2599156580799035
+175,16,0.5283681709903375,2.0,1.2950780823817982,0.0007367508013362634,0.035757283715815685,0.8155601199575437,0,1.0,0.26122723663445835
+175,17,0.5269935469991677,2.0,1.2942778327237578,0.0007316947377541618,0.03519118818775515,0.8154381926981914,0,1.0,0.256645156663892
+175,18,0.5257238853991125,2.0,1.2933391097417464,0.0007270463103825551,0.034982246338475825,0.8152954742329416,0,1.0,0.25241295133037506
+175,19,0.5214244254853256,2.0,1.2923145043562112,0.0007228850420348432,0.03460021576469065,0.8151398762329729,0,1.0,0.2380814182844188
+175,20,0.5160451232914709,2.0,1.291252780175889,0.0007190607685433502,0.03522226297851229,0.8149786815086468,0,1.0,0.22015041097156968
+175,21,0.5090662833153297,2.0,1.2901899276671667,0.0007156688578205501,0.035492979694805235,0.8148173383823853,0,1.0,0.19688761105109864
+175,22,0.48478793531146436,2.0,1.1217549526130335,0.0006597335421751008,0.031676358064147196,0.7880271627871801,0,1.0,0.2159597843715477
+175,23,0.49053235855618565,1.95,1.292635259866648,0.0007241012664137827,0.03517827650867507,0.803621341345121,0,1.0,0.23510786185395208
+175,24,0.5090036285754813,2.0,1.2910114397870203,0.0007299211651895627,0.03464639602889993,0.8149455631237423,0,1.0,0.23001209525160432
+175,25,0.5103811286992928,2.0,1.3080960137258875,0.000721778083811071,0.034982373745623026,0.8175057946353718,0,1.0,0.23460376233097557
+175,26,0.5130151269307689,2.0,1.321807152626521,0.0007156042717759224,0.03561271549434195,0.8195406360171326,1,1.0,0.24338375643589621
+175,27,0.5377244085737992,2.0,1.342872151039646,0.0006750209725379915,0.035398910618691895,0.8226232317725967,1,1.0,0.2924146952459971
+175,28,0.50795865568491,2.0,1.340170008140404,0.0006735353695615264,0.03531491725167896,0.8222281725357173,1,1.0,0.2931955189497
+175,29,0.5546026436687408,1.95,1.3455107204120265,0.0006811624658084111,0.03569829643946281,0.8118189850376194,1,1.0,0.3486754788958026
+175,30,0.5563712882137313,1.95,1.3416101085257228,0.0006793950420792146,0.03567635745930078,0.81122182654083,1,1.0,0.3879042940457706
+175,31,0.5387241063376506,2.0,1.340859979069815,0.0006774404102941647,0.035139268729960635,0.8223301435598805,1,1.0,0.3957470211255017
+175,32,0.5694265430085966,2.0,1.3464290653050779,0.0006855064531141065,0.03537982288088086,0.8231446937287118,1,1.0,0.43142181002865515
+175,33,0.5306527005399639,2.0,1.3807348424012456,0.0006963593800588606,0.036391427615561196,0.8280866974479334,1,1.0,0.40217566846654657
+175,34,0.5832904039459973,1.95,1.3814410657911949,0.0006967730213693792,0.03640440851754169,0.8172512941143296,1,1.0,0.4443013464866575
+175,35,0.5339105723029038,1.95,1.382749385181906,0.0006977782100257056,0.03652706512508472,0.8174469126358237,1,1.0,0.4130352410096794
+175,36,0.5964097722222447,1.9,1.3832021642243852,0.0006980084180945039,0.03664409639648562,0.8060582542113071,1,1.0,0.4880325740741488
+175,37,0.6098546581648047,1.9,1.3841645877181499,0.0006988184658108696,0.036530837968712794,0.8062089170848659,1,1.0,0.5328488605493487
+175,38,0.5863587159315915,1.95,1.384779069586642,0.0006996912027347871,0.03673751664938664,0.817750172353236,1,1.0,0.5545290531053049
+175,39,0.5680131158320592,1.9,1.3841767299324224,0.0006995675493565848,0.036679608236397904,0.806211048195939,1,1.0,0.5267103861068639
+175,40,0.6209692423932704,1.95,1.3845518708859474,0.0006993315425199192,0.03663958186631442,0.8177162021701594,1,1.0,0.5698974746442348
+175,41,0.5699076234256026,1.95,1.385023480325103,0.0007002235117231257,0.03648811898279452,0.8177867538772169,1,1.0,0.5330254114186753
+175,42,0.6090584914396255,1.9,1.3852359160538568,0.0006998870139406348,0.036737908980862106,0.806376576010098,1,1.0,0.5635283047987518
+175,43,0.6176369293420977,1.9,1.3854232038530447,0.0006997116796725873,0.036710566226137976,0.8064057614670818,1,1.0,0.5921230978069921
+175,44,0.5755167565769361,1.95,1.3853884119388855,0.0006995474119418655,0.03668119161353208,0.8178409251602576,1,1.0,0.5517225219231205
+175,45,0.5886319481604301,1.9,1.3855324663519841,0.0006996692807106431,0.03675315974458011,0.806422805229308,1,1.0,0.5621064938681002
+175,46,0.616641848727764,1.95,1.3851182501246158,0.0006993527069569068,0.036735671410128984,0.8178006157448928,1,1.0,0.5888061624258797
+175,47,0.6406324807428625,1.95,1.3850302277613462,0.0006993363816972221,0.036463497021646155,0.817787494936883,1,1.0,0.6354416024762082
+175,48,0.615153161224182,1.95,1.3772709945722126,0.0006998870546902204,0.036595852484118695,0.8166285957338483,1,1.0,0.6505105374139397
+175,49,0.595009432103087,1.9,1.3763429559015943,0.00070022724565309,0.036393932260088226,0.8049844105820144,1,1.0,0.6166981070102897
+176,0,0.07848107536094082,1.8499999999999999,1.3530353043410044,0.0006777479533855729,0.03515487900944321,0.7890803337031989,0,0.1902806581117918,0.17456270705408028
+176,1,0.2106928958535284,1.7999999999999998,1.377571931598644,0.0007029474506446919,0.03660931278276545,0.7805677184524955,0,0.29098961340963914,0.14765683496557588
+176,2,0.22168030509154632,1.7999999999999998,1.360967379693234,0.0006856059232560245,0.03626469952661433,0.7777044200278437,0,0.3548253113084324,0.13250060189391114
+176,3,0.2723784880959702,1.8499999999999999,1.3598868600000502,0.0006850322386886141,0.03631258941184352,0.7902208121682887,0,0.468978578563736,0.1159568555682528
+176,4,0.2964963623148133,1.8499999999999999,1.302258223613767,0.0006843599313869995,0.03502888765875185,0.7805076126757384,0,0.5552572421324546,0.08131155153943803
+176,5,0.254651823174432,1.8499999999999999,1.3067446827171807,0.0006987745627016833,0.03514183182162846,0.7812801716513127,0,0.5687905595788436,0.0904519978096486
+176,6,0.33845861264411625,1.7999999999999998,1.318134698009318,0.0006935346998652596,0.035003093347731294,0.7702143203617808,0,0.6668260095680069,0.07242736272304506
+176,7,0.3793850955323324,1.8499999999999999,0.708324451949667,0.00036471217110384664,0.02185040970218266,0.6624102947677865,0,0.7731062017834108,0.0671420493965603
+176,8,0.4177940497415687,1.9,0.7142510012220556,0.00036887526511736557,0.02196236267461251,0.6802647501577671,0,0.883275400042717,0.04827963241493968
+176,9,0.4109290529766456,1.95,1.1259433583021357,0.0006806345851120129,0.032157248991436724,0.7759649132605824,0,0.9232954473227962,0.07203624682509027
+176,10,0.3962189575947611,2.0,1.1307593392232778,0.0006912714036694167,0.032210584221582926,0.7895378391537682,0,0.9290902215535853,0.08194289657775658
+176,11,0.3945859330493351,2.0,1.1350717372429124,0.0007010693804977014,0.032082791367979056,0.7902567743662828,0,0.9183694808872537,0.09079380231477854
+176,12,0.43333905526902233,2.0,1.136432697178622,0.000708570417294213,0.03179064620695052,0.7904847503665301,0,0.9591437919813413,0.09893846158828606
+176,13,0.46701566989570964,2.0,1.1383882624977368,0.0007170169395116908,0.03217238560430154,0.7908112390048524,0,1.0,0.09005223298569888
+176,14,0.4299495388115363,2.0,1.1367958384971657,0.0007122634524668766,0.03268851900017123,0.7905461099925769,0,1.0,0.09983179603845431
+176,15,0.465717122202743,2.0,1.1379182473815446,0.0007195534964385278,0.03305680794664657,0.7907343137968181,0,1.0,0.08572374067580997
+176,16,0.46734330984621175,2.0,1.136376430601376,0.0007149344796705086,0.032839851855826004,0.7904775394973583,0,1.0,0.09114436615403919
+176,17,0.43112081539184044,2.0,1.1347608336276969,0.0007102058341795739,0.0322883712721833,0.7902082664125573,0,1.0,0.1037360513061348
+176,18,0.47397965134842296,2.0,1.135609909584598,0.0007172153536854789,0.03191878005830415,0.7903513137388088,0,1.0,0.11326550449474328
+176,19,0.45638762157773,2.0,1.134006645883722,0.000712378003688719,0.032046332573099696,0.7900839309502649,0,1.0,0.12129207192576656
+176,20,0.47604300391793436,2.0,1.1362786866162973,0.0007212051721571199,0.03278129941339797,0.7904634276549912,0,1.0,0.12014334639311446
+176,21,0.4363671350857776,2.0,1.1347125438350676,0.0007163783061444459,0.03295772111396607,0.7902023074434975,0,1.0,0.12122378361925866
+176,22,0.46175688926989483,2.0,1.1354993446119594,0.0007230889905297825,0.032983548626562706,0.790334939560246,0,1.0,0.1391896308996493
+176,23,0.46230759782750436,2.0,1.1373588904019627,0.0007312674291683457,0.03270812970216332,0.7906456178811976,0,1.0,0.141025326091681
+176,24,0.4824019360444953,2.0,1.1385724818943632,0.0007383190537446588,0.03220286885134977,0.790848759695108,0,1.0,0.14133978681498435
+176,25,0.48035440575714417,2.0,1.1372319329500657,0.000733663817428227,0.03229032796791235,0.7906253958400675,0,1.0,0.1345146858571472
+176,26,0.47592942919817627,2.0,1.135828987614775,0.0007287816535383681,0.03287327219032069,0.7903914442766742,0,1.0,0.11976476399392086
+176,27,0.43128094521981797,2.0,1.1343753943055626,0.0007240886868760366,0.033068127270941314,0.7901489654252656,0,1.0,0.10426981739939319
+176,28,0.47105500546411366,2.0,1.1353825750892677,0.0007309126712136497,0.03314062054516679,0.7903181825575584,0,1.0,0.10351668488037882
+176,29,0.4735332574553481,2.0,1.1339856948791551,0.0007261978432937643,0.03264786509513417,0.7900850402735843,0,1.0,0.11177752485116034
+176,30,0.4306318891123634,2.0,1.1325109258802613,0.000721578684695302,0.0318985910946386,0.7898388107130406,0,0.9793532535801452,0.12963529226768428
+176,31,0.47796462444830146,2.0,1.133281661375824,0.0007279752666705006,0.032187975044994474,0.7899688418128963,0,1.0,0.12654874816100492
+176,32,0.48343877545077546,2.0,1.1318234930686923,0.0007233340668918691,0.032679581641076094,0.7897252616193702,0,1.0,0.14479591816925153
+176,33,0.48527623136077247,2.0,1.1302704997343205,0.0007184061347966439,0.032908623809157996,0.7894656185052455,0,1.0,0.15092077120257497
+176,34,0.4493356796611571,2.0,1.128636918818375,0.0007135072378435805,0.03276597536233373,0.7891923431596649,0,1.0,0.16445226553719036
+176,35,0.4840566575745825,2.0,1.1293408410960692,0.000720252826848203,0.032473112654853725,0.78931167288733,0,1.0,0.14685552524860832
+176,36,0.4735275290146704,2.0,1.1277566723590615,0.0007153212959403145,0.031781500876063996,0.7890464651320346,0,1.0,0.17842509671556772
+176,37,0.4551144975230162,2.0,1.1303108593426807,0.0007244794239928482,0.03207634746640202,0.789474345407828,0,1.0,0.1837149917433873
+176,38,0.4804323698918304,2.0,1.1308503863132164,0.0007305875113712199,0.0327708711260633,0.7895660330121868,0,1.0,0.20144123297276792
+176,39,0.4874733883726908,2.0,1.2927435796379758,0.0007291729929663677,0.035661641996287886,0.8152064179998548,0,1.0,0.22491129457563586
+176,40,0.47240657748650694,2.0,1.292546854259854,0.0007336729552741963,0.03576722793283252,0.8151781364416452,0,1.0,0.24135525828835644
+176,41,0.46598122686307347,2.0,1.2915929527789491,0.0007349320271446806,0.035390452228788394,0.8150347554363517,0,1.0,0.2199374228769115
+176,42,0.5082252594115054,2.0,1.290602145272988,0.0007360644200558453,0.03506279143926137,0.8148856831412274,0,1.0,0.22741753137168477
+176,43,0.4716734284251946,2.0,1.3062968472042533,0.000728017462735089,0.035094808432527325,0.8172390873343983,0,1.0,0.2389114280839819
+176,44,0.508457151603533,1.95,1.305236091791778,0.0007290198069550025,0.03537937698010334,0.8056038653896302,0,1.0,0.22819050534510998
+176,45,0.5059087763361516,1.95,1.3180751361571243,0.0007225564049584275,0.035763896986426486,0.8076046460043292,0,1.0,0.2196959211205054
+176,46,0.4689656460225383,2.0,1.3306777805420007,0.0007166080403251143,0.03568485974668213,0.8208491252595834,0,1.0,0.22988548674179438
+176,47,0.4722822543552987,1.95,1.3307500581879415,0.0007169297644088609,0.03582931482014684,0.809564657795337,0,1.0,0.24094084785099562
+176,48,0.47377935941087607,2.0,1.3284315851801172,0.0007181248338862781,0.03550976819158462,0.8205190177778062,0,1.0,0.2459311980362535
+176,49,0.47676204573549796,2.0,1.3284199328851005,0.0007183196739774338,0.03564744505410345,0.8205173591540215,0,1.0,0.25587348578499325
+177,0,0.18061749487276169,2.0,1.3639529066935754,0.0006847498423170656,0.03552979728150444,0.8256811237874054,0,0.2052087798192262,0.16177994315023736
+177,1,0.20231009168780137,1.95,1.3685944533689463,0.0006993636334090547,0.03625786944703959,0.815325586815157,0,0.28048350895393465,0.16705562702075827
+177,2,0.16390559513785766,1.95,1.367322887231413,0.0006991365083258377,0.036370376268117365,0.8151339821655765,0,0.28371106770553656,0.16807056018547678
+177,3,0.23783209694191954,1.9,1.3692295334751312,0.0006976872708178573,0.036554751776408385,0.8038644893235117,0,0.36592191701094023,0.17154443379181142
+177,4,0.27108890616874604,1.9,1.36779646979557,0.0006972694670956171,0.036315583258015614,0.8036383131162067,0,0.4412852380685144,0.18191603647113416
+177,5,0.23864358665556934,1.9,1.3261671834596966,0.0007502190891768249,0.03608323072763925,0.7970030613742395,0,0.4616935852550201,0.17988717517853767
+177,6,0.2701801050063293,1.8499999999999999,1.335810867906961,0.0007421566883737112,0.03604941316098179,0.7862210048777546,0,0.4810287641522172,0.19256199781814126
+177,7,0.3178925957833313,1.8499999999999999,1.3372746733151781,0.0007370011179240458,0.036214810169249156,0.7864652029788985,0,0.5495661114208572,0.1935538373832947
+177,8,0.3421234038584901,1.8499999999999999,1.335674499686244,0.0007371807051546163,0.036428037090419835,0.7861964107112193,0,0.6048105986318011,0.20066388135256552
+177,9,0.3859677141063686,1.9,0.7427424391514065,0.0009597325812696914,0.03173838867530999,0.6866839902570634,0,0.6975847147966097,0.18977942729241573
+177,10,0.40477857767549646,2.0,0.6482428456951077,0.0002924456174384804,0.019182988553679125,0.698218266425544,0,0.7658614436993874,0.19478000065247167
+177,11,0.4508833332825858,2.0,0.7068198373635631,0.0003919386514722117,0.021941853857698305,0.7104568164377468,0,0.8800177277611865,0.16292080726037064
+177,12,0.43960601988012626,2.0,1.1341527898881625,0.0007464621057133576,0.03219728067675376,0.7901194727017214,0,0.903210629654924,0.1944058933938552
+177,13,0.45542019126272815,2.0,1.134864019043556,0.0007525367862851414,0.03268841026381788,0.790239405886227,0,0.9264964457913584,0.2160720431539493
+177,14,0.4656290812882034,2.0,1.3270964327160506,0.0006660203780767852,0.0351838701011236,0.8203069487412531,0,0.936910373157299,0.23621644008427928
+177,15,0.48637175343537997,2.0,1.3256463736443618,0.0006659840510939616,0.035367871717208274,0.8200930950146257,0,0.984211042699467,0.24229112118531035
+177,16,0.5165312180968056,2.0,1.3241590122007445,0.0006658070362979946,0.03509743983655224,0.8198734923270335,0,1.0,0.22177072698935163
+177,17,0.4912970112932442,2.0,1.3226180139326753,0.0006644725356636454,0.03480454731438551,0.8196454095028579,0,1.0,0.23765670431081393
+177,18,0.47905327844889706,1.95,1.3210906663627333,0.0006643441775022069,0.0349178595107771,0.8080547055948762,0,1.0,0.26351092816299015
+177,19,0.5021494483298428,2.0,1.3247207002395265,0.0006688880427086331,0.0350487880236936,0.8199573377295439,0,1.0,0.2738314944328091
+177,20,0.5259604542262968,2.0,1.3246875434275833,0.0006695312247976127,0.03518972667826187,0.8199526327333485,0,1.0,0.286534847420989
+177,21,0.5315913046938762,2.0,1.3339797026841687,0.0006709424769045735,0.035518342644830794,0.8213207751555248,0,1.0,0.27197101564625376
+177,22,0.47930184738313353,2.0,1.3325620479375178,0.0006697109603660156,0.0353489152440183,0.8211122735615584,0,1.0,0.26433949127711176
+177,23,0.482778489545001,1.95,1.3367422508815194,0.0006742346933525082,0.035034130441699465,0.8104736431498769,0,1.0,0.2759282984833366
+177,24,0.5309041848788064,2.0,1.338855315597213,0.0006781893231814862,0.03535913871717496,0.822037285496533,0,1.0,0.269680616262688
+177,25,0.5235078497314571,2.0,1.3385994898206555,0.0006771253484931595,0.035383913217263536,0.821999545798622,0,1.0,0.2450261657715238
+177,26,0.5057338867529831,2.0,1.337209427460486,0.0006755031458385183,0.035436232409348456,0.8217955908481747,0,1.0,0.2857796225099437
+177,27,0.5316587488754871,2.0,1.3358561532415971,0.0006757510376582967,0.03571135323148171,0.8215973934473999,0,1.0,0.272195829584957
+177,28,0.5140086306303349,2.0,1.3344164757756123,0.0006741213004256676,0.03553728400205332,0.8213857966435364,0,1.0,0.31336210210111626
+177,29,0.49629125030320914,2.0,1.3330030577521557,0.0006742935912657343,0.034997539259342555,0.8211783888279663,0,0.9935721693768764,0.32954127517486187
+177,30,0.5450839011759164,2.0,1.3360365152320237,0.0006790645155996755,0.0352495842450629,0.8216247997258339,0,1.0,0.3169463372530545
+177,31,0.5007170536003339,2.0,1.3346124631033178,0.0006772445028844414,0.03522158847409483,0.8214154646626302,0,1.0,0.3357235120011129
+177,32,0.5014494480358677,1.95,1.3369779404658733,0.0006818524110391703,0.035537174769637844,0.8105121837650604,0,1.0,0.3381648267862254
+177,33,0.5415143857179663,2.0,1.3375604249534192,0.0006858246310190969,0.03570495724607776,0.8218500101924773,0,1.0,0.3383812857265539
+177,34,0.5445997547916722,2.0,1.3477846769107795,0.0006856802004812704,0.035985386675673255,0.8233420043879937,0,1.0,0.34866584930557387
+177,35,0.5380327343332452,2.0,1.3553914581716617,0.0006860200946266152,0.03565392095861471,0.8244457887784411,0,1.0,0.3267757811108173
+177,36,0.5021623477174828,2.0,1.3615632963506612,0.0006868882490074721,0.03581446353744403,0.8253375316661116,0,1.0,0.3405411590582761
+177,37,0.5111442254279387,1.95,1.3628157203110596,0.0006893417308346364,0.03595195953641235,0.8144508693194471,0,0.9992717656926139,0.3714517305029771
+177,38,0.5340148675207991,2.0,1.3630688922446244,0.0006913779823843163,0.03634255147710805,0.8255557584475465,0,1.0,0.38004955840266347
+177,39,0.5542681080709756,2.0,1.362744680337064,0.0006920143461037584,0.03631240956103605,0.8255092459730059,0,1.0,0.3808936935699184
+177,40,0.5598145777776593,2.0,1.3679634980374074,0.0006922546053795145,0.036334518435505385,0.8262597763583122,0,1.0,0.3660485925921976
+177,41,0.5507174947726184,2.0,1.367021481567046,0.0006910132869274356,0.036053806969200464,0.8261241474218705,0,1.0,0.36905831590872795
+177,42,0.5094787777987511,2.0,1.3713286796574122,0.000691863354678198,0.03605711840543766,0.8267422211684777,0,1.0,0.3649292593291701
+177,43,0.5543307063266955,1.95,1.3720497732132164,0.0006933742174204396,0.03614201584668915,0.8158434870601289,0,1.0,0.34776902108898455
+177,44,0.5579993968437493,1.95,1.3707908736735912,0.0006921209612020419,0.036426651550443355,0.8156538942573431,0,1.0,0.35999798947916434
+177,45,0.5137101624663806,2.0,1.3697779991917574,0.0006909589651196631,0.036148566466100096,0.8265197305360925,0,1.0,0.37903387488793505
+177,46,0.5526161304052386,1.95,1.3707138263926082,0.0006926304702487814,0.036425499316844995,0.8156424621742654,0,1.0,0.37538710135079534
+177,47,0.537904915788886,1.95,1.374274352611506,0.0006933547525216788,0.03616913775428803,0.8161774736538568,0,1.0,0.39301638596295324
+177,48,0.558478428864269,2.0,1.3736893692497814,0.0006935225498099966,0.03638032733032284,0.8270805790269611,0,1.0,0.39492809621423
+177,49,0.5666970489752852,2.0,1.3770427799685543,0.0006945726603340541,0.03625929752933423,0.8275599519075422,0,1.0,0.3889901632509502
+178,0,0.18521020011785894,2.0,1.3667893274944825,0.0007051649643135943,0.0362144029377084,0.8260948637382685,1,0.14928670068648064,0.2516517328108889
+178,1,0.18819831248069394,1.95,1.3665766156555113,0.0007063784856724718,0.03639209117362642,0.8150236832381742,1,0.16923011079696917,0.26835422720635416
+178,2,0.23567159471862148,2.0,1.3658355944862826,0.0007052939562234233,0.03631551404783303,0.8259578428833818,1,0.2081911942477438,0.3413170567317466
+178,3,0.20775440910749882,2.0,1.3848700177015243,0.0006992170297690222,0.036461925162037036,0.8286753903630214,1,0.2576184827132139,0.3156900534073775
+178,4,0.2796352056000756,1.95,1.3851927114314229,0.0006993942237710556,0.03668633830927864,0.8178117227948697,1,0.30038469402678664,0.3649377599645365
+178,5,0.2498740770838327,1.95,1.3850013910508296,0.0006992903852902665,0.03667252852375608,0.8177831841991159,1,0.3403844780416659,0.34573428622388774
+178,6,0.32528292140171944,1.9,1.3852684002735032,0.0006994545932709709,0.036427057795364315,0.8063815128031135,1,0.39205794760031754,0.3948658078719748
+178,7,0.29128032736248766,1.9,1.3850367171552778,0.0006992938973861295,0.03673385636991577,0.8063452872786321,1,0.4334990110025111,0.35960240987161074
+178,8,0.3718399150032549,1.8499999999999999,1.3822976944508738,0.000701249313984616,0.036439443837194815,0.7939170444313832,1,0.47741535765630566,0.43624590646910877
+178,9,0.3765596965548125,1.8499999999999999,1.385695963830324,0.0006998244147863567,0.03671574937800524,0.7944720240505841,1,0.5040103083704264,0.4498519106888064
+178,10,0.4235304549017669,1.9,1.3859837578195966,0.0006999533972934514,0.03669710841700308,0.8064933330505234,1,0.5557211291663826,0.5041400107840461
+178,11,0.43269959571697303,1.9,1.385866409556385,0.0006999212516139704,0.036450637342802863,0.8064750087721948,1,0.5950403222991725,0.5156115559910135
+178,12,0.409312967045271,1.95,1.3860581258853828,0.0007000035328618224,0.036690672079521536,0.8179408118411916,1,0.6380265840772543,0.48034111138123076
+178,13,0.4265168859119677,1.9,1.3755233833511091,0.0006989631652204824,0.03650155796201211,0.8048553211461934,1,0.6483053929492394,0.49064909577423965
+178,14,0.43575890870155987,1.95,1.3760730648838762,0.0007019541055743471,0.03618981335300346,0.8164497616469422,1,0.6534389322004899,0.5146111194045464
+178,15,0.44702553326436345,2.0,1.376705692426676,0.0007047269340118435,0.036366925023017756,0.8275147414356707,1,0.6778765955210233,0.519582983519847
+178,16,0.4505704049689506,2.0,1.3769581662297503,0.000707054481449826,0.036537831827688494,0.8275514394053307,1,0.6879293625203063,0.5179955332027602
+178,17,0.4460030911224925,2.0,1.3766973589825624,0.0007092849890323967,0.036738996801141045,0.8275148531487542,1,0.718423680805118,0.4954453960014843
+178,18,0.46312394392156997,2.0,1.3787798322158473,0.0007073124256442684,0.03655308108932833,0.8278113278915177,1,0.731822648396694,0.501316281876308
+178,19,0.4746805593431762,2.0,1.3783998821714287,0.0007091215359312944,0.03668911228245515,0.8277576790359097,1,0.7536577009466864,0.5107249298816722
+178,20,0.5359651579892352,2.0,1.3778517697445272,0.0007107549248129121,0.03673856602514752,0.8276799838472014,1,0.7906799419035294,0.5656439374260779
+178,21,0.5731459708591755,2.0,1.3767817726647857,0.0007115167955540721,0.03635543665013767,0.827527538593216,1,0.8370857685400802,0.627705544810478
+178,22,0.5551639308261916,2.0,1.3483764447392126,0.0007086609148532513,0.0362009756111756,0.8234347429491485,1,0.8517569135441786,0.6482038846950671
+178,23,0.5423561448912934,2.0,1.3471141228755714,0.0007097231529590391,0.03585275165192152,0.8232514482073664,1,0.8781047083808806,0.6037142051298034
+178,24,0.618379431660424,2.0,1.3557724726225675,0.0007064541282459031,0.03599620076145117,0.8245068415575453,1,0.9233571845638513,0.6634551927829445
+178,25,0.5911441373803095,2.0,1.355446365146618,0.0007098619850558435,0.03613185120553899,0.8244606367500874,1,0.923012979489647,0.6731298186148355
+178,26,0.6608768892703145,1.95,1.354121276788597,0.0007109625281939112,0.03620507889886744,0.8131399359961357,1,0.9795986474342651,0.7301247676553614
+178,27,0.6192181847436081,1.95,1.352803094733434,0.000714942675921707,0.03628085016976116,0.8129407747888635,1,1.0,0.6973939491453605
+178,28,0.679134726806556,1.9,1.3608190156206683,0.0007112575253663958,0.036287188727999554,0.802539344704771,1,1.0,0.7637824226885198
+178,29,0.6975671386320879,1.9,1.3594122232371415,0.0007145950473109804,0.03638976519405844,0.8023173741987426,1,1.0,0.8252237954402928
+178,30,0.675120616355955,1.95,1.3421051641894275,0.0007489469704950569,0.036552140492324234,0.8113189231812474,1,1.0,0.8504020545198498
+178,31,0.6578442153921618,1.9,1.3449942588868684,0.0007409759132817142,0.03649337705535215,0.8000290943476478,1,1.0,0.826147384640539
+178,32,0.6481078486632151,1.95,1.342197701141535,0.0007443113660699663,0.03648459610429737,0.8113316692147826,1,1.0,0.7936928288773838
+178,33,0.701466083919195,2.0,1.3603543608116955,0.0007131125918880933,0.03626400850541718,0.82517075500565,1,1.0,0.8382202797306497
+178,34,0.675054466898124,2.0,1.3384160143289607,0.0007473847869907228,0.036430284622612705,0.8219932604590827,1,1.0,0.8501815563270798
+178,35,0.7056330592836135,1.95,1.3402181318966175,0.0007401201559187503,0.036388756159196886,0.8110271799492482,1,1.0,0.8854435309453785
+178,36,0.7134853234547573,1.95,1.3375674121734789,0.0007460009892896568,0.03621792640407519,0.8106223957062999,1,1.0,0.9116177448491912
+178,37,0.7193714441227139,2.0,1.3357105434595204,0.0007502758361278619,0.0363948048193664,0.8215978976381064,1,1.0,0.9312381470757132
+178,38,0.6809735659751834,2.0,1.3348384737288885,0.0007526218377747654,0.036420281884224116,0.8214707264619063,1,1.0,0.9032452199172778
+178,39,0.7175494557276783,1.95,1.3328908814487581,0.0007552785159425294,0.03636903272956866,0.8099062976922715,1,1.0,0.9251648524255939
+178,40,0.6770990625197422,1.95,1.3295895340299766,0.0007602298455936053,0.03629283642946897,0.809399036185989,1,1.0,0.8903302083991405
+178,41,0.7132675783238498,1.9,1.3275498876243443,0.0007630339389557833,0.03642011313139128,0.797230819253367,1,1.0,0.9108919277461657
+178,42,0.6775892476436368,1.9,1.323978013318123,0.0007682848597260102,0.036280095354858224,0.7966545002653477,1,1.0,0.8919641588121227
+178,43,0.71680075916867,1.8499999999999999,1.3218167147949313,0.0007712548086008859,0.03650523024514905,0.7838693414100405,1,1.0,0.9226691972289
+178,44,0.6933683958544093,1.8499999999999999,1.3179389573686475,0.000776799802844852,0.036270705833016156,0.7832135385736055,1,1.0,0.9112279861813645
+178,45,0.6735239260163324,1.7999999999999998,1.3209939001552455,0.0007674266100284929,0.03636191529277176,0.7707460769615682,2,1.0,0.8784130867211081
+178,46,0.6528936072135336,1.8499999999999999,1.3792954467948841,0.0007002941893352185,0.036593984924054315,0.7934250918210103,1,1.0,0.8429786907117787
+178,47,0.6756881575682085,1.7999999999999998,1.3266897337116883,0.0007547943214042457,0.036216256556893124,0.7717465083762811,1,1.0,0.852293858560695
+178,48,0.7019561514724686,1.7999999999999998,1.3268232807612799,0.0007480162566509732,0.03612309912007011,0.7717676445478265,1,1.0,0.8731871715748952
+178,49,0.6820646452039628,1.7999999999999998,1.3241977460133867,0.0007500918220981272,0.036149061874957464,0.771305578969881,0,1.0,0.8735488173465425
+179,0,0.13809938657246593,1.8499999999999999,1.3583748588849565,0.000680955487203146,0.03533479651129552,0.7899687021015834,0,0.1359263862829927,0.21242944019756285
+179,1,0.1263776403400585,1.7999999999999998,1.360193854075418,0.0006817344648308201,0.03584783883825567,0.7775693248206538,0,0.14636191741053675,0.22610957791947933
+179,2,0.16503215398973806,1.8499999999999999,1.3604242178027957,0.0006814874107383249,0.03619927554601356,0.790308702188112,0,0.16631704772255396,0.261684449669055
+179,3,0.22291270288829737,1.8499999999999999,1.361842596439802,0.0006824357277807179,0.03630090056507641,0.7905439743772583,0,0.24801300755954048,0.27902499954827065
+179,4,0.27607840011705637,1.8499999999999999,1.3565256282131781,0.0006858099230331793,0.035934989173437654,0.7896633292433929,0,0.35892522623215706,0.2750276987473118
+179,5,0.2565457642398778,1.8499999999999999,1.3593486300726907,0.0006911433441350314,0.03594447580528006,0.7901336015687199,0,0.3791185093554993,0.2829945349922602
+179,6,0.30645053083485285,1.9,1.3591146347408003,0.0006895152259472273,0.03580892021443898,0.8022622140830719,0,0.45086598110607873,0.28701379464140453
+179,7,0.3337699224111304,1.9,1.3156205116628952,0.0007194699086270615,0.03556833521216106,0.7952813658770197,0,0.5247789092776107,0.2795278623336205
+179,8,0.38064855147112364,1.9,1.3165128386825993,0.0007277834759781657,0.03584903266198712,0.795429311998138,0,0.6276162058486784,0.265340230438841
+179,9,0.41900122746865104,1.95,0.7637853598780295,0.0010083401970062654,0.032699709792183874,0.7069883959691966,0,0.7386787432379963,0.24509910057817488
+179,10,0.4492685888602031,2.0,0.7664225440223977,0.0010030781715956157,0.03239235958548836,0.722807094489575,0,0.8237927645734536,0.2325049434360722
+179,11,0.46865176653572954,2.0,1.355579474776082,0.0007264458482455542,0.03652831111805059,0.8244846999912187,1,0.8938323521067243,0.23706275231013285
+179,12,0.460505406543399,2.0,1.3428513479474349,0.0006792142353153655,0.03573965861760427,0.8226214200113239,1,0.9191582725036771,0.24280699180642712
+179,13,0.4525900255908515,2.0,1.3463657280291956,0.0006848441650648198,0.035591147857167375,0.8231352802208147,1,0.9541981064226813,0.20303594340592984
+179,14,0.5016430345754851,2.0,1.3534606560207791,0.0006847921977918979,0.035584586820334906,0.824165803294723,1,0.9813042361284026,0.23040446708041346
+179,15,0.5386668047335209,2.0,1.3521505885837217,0.0006830627474296924,0.03592063187720874,0.8239753705542533,1,1.0,0.295556015778403
+179,16,0.5171982105344127,2.0,1.3503328330533044,0.0006825253456005087,0.03578733128507687,0.8237114120102229,1,1.0,0.323994035114709
+179,17,0.5667431910665093,1.95,1.3533712833873326,0.0006876621430815619,0.03593221362089067,0.8130188685915346,1,1.0,0.3891439702216972
+179,18,0.5861529695200809,1.95,1.3505794713615205,0.0006870288736705776,0.035829004995538066,0.8125938957847606,1,1.0,0.45384323173360264
+179,19,0.598077513214562,2.0,1.3857622168833856,0.0006998648376891194,0.03677526962998915,0.8288022047922619,1,1.0,0.4935917107152066
+179,20,0.6170106440004496,2.0,1.3859283788583372,0.0007001765645538933,0.036764845769678346,0.8288258685305585,1,1.0,0.556702146668165
+179,21,0.5910662490644006,2.0,1.385889610347611,0.0007004741399642205,0.03646847255336621,0.8288204526725613,1,1.0,0.5702208302146686
+179,22,0.5729347209317786,1.95,1.3856393499245285,0.0007006412336040969,0.03663740746505523,0.8178786320602546,1,1.0,0.5431157364392617
+179,23,0.5878645779195657,2.0,1.3859583995306386,0.0007004198912394652,0.036531791348964865,0.8288301966696789,1,1.0,0.5595485930652189
+179,24,0.6183006872519912,2.0,1.3856498391381071,0.0007004997407988956,0.03651602417100105,0.8287864392097206,1,1.0,0.5943356241733035
+179,25,0.6456211631700911,2.0,1.3857434085380689,0.0007001511646682403,0.03664236063679421,0.8287996173307284,1,1.0,0.6520705439003034
+179,26,0.6224255182239046,2.0,1.3609863853843394,0.0007125748862057709,0.036376849577201484,0.8252617595688093,1,1.0,0.6747517274130153
+179,27,0.6539852294518171,1.95,1.3596763167056138,0.000713784017193565,0.036415568137944505,0.8139833741245636,1,1.0,0.7132840981727234
+179,28,0.6185362959106397,1.95,1.3586224273189271,0.0007104141503260421,0.03620698891602354,0.8138227260754882,1,1.0,0.6951209863687992
+179,29,0.6789314046826463,1.9,1.3655511684895907,0.00070758811458217,0.03620935883174576,0.8032870155833711,1,1.0,0.7631046822754877
+179,30,0.6759467066801175,1.9,1.3644028605487961,0.000710530783320399,0.03631308664707264,0.8031064308569463,1,1.0,0.7864890222670581
+179,31,0.6862274006879361,1.95,1.3638671299986738,0.0007073064202021223,0.03646053009191141,0.8146151325265852,1,1.0,0.8207580022931203
+179,32,0.6449549000380541,2.0,1.3100499586571401,0.0007921501428975337,0.036649962393052016,0.8178180936253395,1,1.0,0.7831830001268469
+179,33,0.656134915555257,1.95,1.3647769143789446,0.0007065161402893157,0.03644511835504952,0.8147522478440721,1,1.0,0.7871163851841901
+179,34,0.6626985523667437,2.0,1.36312248603217,0.0007079104325245866,0.03629648463082166,0.8255682381119047,1,1.0,0.8089951745558122
+179,35,0.6890258816126765,2.0,1.3073028035926382,0.0008007543535969664,0.036645107971661255,0.8174110013938498,1,1.0,0.8300862720422548
+179,36,0.6719611500006262,2.0,1.304206669497383,0.0008033157504183368,0.03617718508480096,0.816949214464007,1,1.0,0.8398705000020871
+179,37,0.6519271900128629,2.0,1.3113333184143312,0.0007907802940550236,0.036254036973996984,0.8180088176814585,1,1.0,0.806423966709543
+179,38,0.6421639470596179,1.95,1.3088890253257146,0.0007959570939817501,0.036624863311748516,0.8061962170961892,1,1.0,0.7738798235320596
+179,39,0.6985175968900851,2.0,1.3633731766742891,0.0007076667951283536,0.036238098139357376,0.8256042657935249,1,1.0,0.8283919896336167
+179,40,0.6486828791809802,2.0,1.3039655334206692,0.0008038402759505465,0.03665877350440429,0.8169133083508877,1,1.0,0.7956095972699339
+179,41,0.6638213858588933,1.95,1.3637471743520182,0.0007080475417167911,0.03631855441754394,0.8145972403239851,1,1.0,0.8127379528629776
+179,42,0.6930910439810541,2.0,1.2966616066494392,0.0008124082153086212,0.03649196978617956,0.8158209347481253,1,1.0,0.8436368132701803
+179,43,0.7089437375736258,2.0,1.2958141660543772,0.0008147089687966392,0.03627067550665135,0.8156942584476629,1,1.0,0.8964791252454194
+179,44,0.7199604180634471,2.0,1.2929374074765956,0.0008187687115953437,0.036601634644254866,0.8152626048496161,1,1.0,0.9332013935448235
+179,45,0.6828792455959337,2.0,1.2899685149759454,0.0008221978461831253,0.03671311199235222,0.8148160777358364,1,1.0,0.9095974853197789
+179,46,0.7197366787264303,1.95,1.2871142588063684,0.0008265814456001406,0.036667974661883145,0.8027810409475696,1,1.0,0.9324555957547674
+179,47,0.6799258551475039,1.95,1.2818438599310933,0.0008329259071283309,0.03624619040412848,0.8019472958160063,1,1.0,0.8997528504916796
+179,48,0.68725560907656,1.9,1.2788873732055002,0.00083732374679026,0.03660874332456178,0.7892751969235732,1,1.0,0.8908520302551998
+179,49,0.6737125263754711,1.95,1.2851909146672238,0.000825335189487844,0.036557689384893524,0.8024759576746395,1,1.0,0.8790417545849033
+180,0,0.16073051204842312,2.0,1.3652955895310952,0.0007074953153802523,0.03614629476809367,0.8258808358243024,1,0.12618080364234321,0.23419396863828607
+180,1,0.1873599389158124,1.95,1.365532711254519,0.0007061941409186661,0.03634871805186479,0.8148661967504167,1,0.15898271149534204,0.27922284772558525
+180,2,0.16647350521527768,1.95,1.3647820172202234,0.0007053002535280298,0.03631500259128637,0.8147526509907206,1,0.16295811575014155,0.2709675297174035
+180,3,0.20405523122917488,1.9,1.364520622202002,0.0007056073584684111,0.03646495289509208,0.8031234944880506,1,0.1949009991822274,0.2869827718542797
+180,4,0.18545955263038866,1.9,1.3637007966005716,0.0007046330722794345,0.03621267609635443,0.8029935263542849,1,0.2411166322563122,0.2633763324262125
+180,5,0.23632530385940145,1.95,1.3853770456801062,0.0006996942099794161,0.036611360019639314,0.8178392755807607,1,0.2737174276787927,0.2894611092929478
+180,6,0.25545434587141597,1.95,1.3853052261250702,0.0006997230989405387,0.03644490023695824,0.8178285843968961,1,0.29645346096472086,0.3229098716184255
+180,7,0.27083853526113155,2.0,1.3851830139191246,0.0006997449853135308,0.03672544634388967,0.82871997252283,1,0.31528671527492574,0.3490794971705376
+180,8,0.312548398099916,2.0,1.385059245511212,0.0006997767062262695,0.03672051086726885,0.8287024127325694,1,0.35415849582062425,0.40294999923888775
+180,9,0.34953607159386035,2.0,1.3841415352692887,0.0006987450741267609,0.03652248975667717,0.8285718070614542,1,0.40061640083322664,0.4642983708685657
+180,10,0.3532346529653766,2.0,1.383678922233377,0.0006994441284165163,0.03663543655589457,0.8285062859033279,1,0.4117068183598881,0.49517308540473787
+180,11,0.337741562796555,2.0,1.3840153882627748,0.0007003610970711548,0.036700671687938766,0.828554347445571,1,0.41597760416454893,0.5045017371024512
+180,12,0.4060111706196755,2.0,1.3844681394665728,0.0007000193784835367,0.03634761056693412,0.8286185550566134,1,0.4725689759871744,0.5566119340826858
+180,13,0.4476230622107343,2.0,1.3846064354261287,0.0006996641255421485,0.0366464683687074,0.8286380926622142,1,0.5345757578323225,0.6126425302593511
+180,14,0.46312552487266817,2.0,1.363231512658147,0.0006850548605267543,0.03584628482281928,0.8255773556903477,1,0.5795730309921843,0.6376543749193149
+180,15,0.5097107732269547,2.0,1.3616774439610324,0.000684200787071203,0.036165661274693235,0.8253532112912022,1,0.6313812277315559,0.6905276071144408
+180,16,0.54208198543406,2.0,1.1580173815173564,0.0006777226698557413,0.03264049132740228,0.7940270741508394,1,0.6741326545032116,0.7414297454425848
+180,17,0.5052101086632639,2.0,1.1827942102691205,0.000667131473547278,0.03260623421066161,0.7980463516718167,1,0.7098303542815573,0.7042598898354699
+180,18,0.5132952228694696,2.0,1.1769507560099897,0.0006627503096756559,0.03263616635537672,0.7971015141313385,1,0.7537768003364784,0.6726150091162606
+180,19,0.5256458559170506,2.0,1.1708839152347603,0.0006579887220167051,0.0326946130459237,0.7961170052934985,1,0.8067741795648182,0.6431206136370777
+180,20,0.5370115307931629,2.0,1.3635832743641267,0.0007082033515368489,0.036323879842133436,0.825634668468368,1,0.8095041041594708,0.6440329637645819
+180,21,0.547672142732548,2.0,1.3625931482633902,0.0007091450971693032,0.03644578582419686,0.8254923532375483,1,0.8368808738624105,0.6430659772919459
+180,22,0.5658843082508274,2.0,1.3614659393812847,0.000710022171384302,0.03632292870271211,0.825330166765881,1,0.861923869282999,0.6703825351254256
+180,23,0.582839890235313,2.0,1.360170132607973,0.0007109016178279622,0.036255987116742924,0.8251435379143895,1,0.8933880586953007,0.6849488891906422
+180,24,0.5938925630095682,2.0,1.3586934876705246,0.0007117316917874713,0.03620491408821992,0.8249306225596247,1,0.9055058428238641,0.7056340862667414
+180,25,0.5930090473794265,2.0,1.3570404098443924,0.0007124875238080558,0.03626380727175178,0.8246919752104682,1,0.943117598275666,0.6858733602305335
+180,26,0.6066530449502922,2.0,1.3640525968493102,0.0007091373868519147,0.036445223595296325,0.8257024916249364,1,0.9498796878946332,0.6890038993081297
+180,27,0.6283186053748997,2.0,1.36230355260549,0.0007096316584450008,0.03631274924361275,0.8254507718906814,1,0.9932849812717117,0.7033487095540497
+180,28,0.6369296711263799,2.0,1.3603159049176394,0.0007101249352213842,0.036196610604625264,0.8251643450902242,1,1.0,0.7230989037545996
+180,29,0.6402909297293754,2.0,1.358122521839254,0.0007104463275725116,0.036210644660865834,0.8248477769209461,1,1.0,0.7343030990979179
+180,30,0.6450134521929414,2.0,1.355737027309566,0.0007106952272259169,0.03630862979901884,0.8245029400871252,1,1.0,0.7500448406431376
+180,31,0.6792217918094702,2.0,1.3531477143365103,0.0007108061734889207,0.03634266306603531,0.8241279893833503,0,1.0,0.7974059726982339
+180,32,0.6847489902183445,2.0,1.3475203207191158,0.0006761068503549688,0.035557262678719115,0.8233007651269899,0,1.0,0.7824966340611481
+180,33,0.6360969912640057,2.0,1.348852084086901,0.0006793710870468699,0.035356847830974585,0.8234953710649368,0,0.999970684465649,0.7870290582591534
+180,34,0.6667428411769069,1.95,1.3461109666701554,0.0006763315279037074,0.03515214086665842,0.8119091913616062,0,1.0,0.8224761372563562
+180,35,0.6474158369402778,1.95,1.3828529760010455,0.0006980763790782663,0.036520813868383704,0.8174624597062039,0,0.9975445578809434,0.8279933792930017
+180,36,0.691825817431171,2.0,1.3842276697817357,0.0006987326586864913,0.036654485888137245,0.8285840377834462,0,1.0,0.8060860581039032
+180,37,0.6474822131967494,2.0,1.3844579533981598,0.0006991030192935975,0.03651800329315678,0.8286168482638194,0,1.0,0.8249407106558311
+180,38,0.6802716052211508,1.95,1.3853712939123735,0.0006995236721711212,0.03674934690735687,0.8178383678781989,0,1.0,0.8675720174038359
+180,39,0.6997029580438944,1.95,1.3847228503791822,0.0006991149479536572,0.03670580398241546,0.8177416218133864,0,1.0,0.865676526812981
+180,40,0.662821922570197,2.0,1.3845597304677808,0.0006989698940350708,0.0366420656586381,0.8286312634325292,0,1.0,0.8760730752339901
+180,41,0.691134419295922,1.95,1.3853239598214644,0.0006995664887206485,0.036762554003364846,0.8178313287552722,0,1.0,0.9037813976530732
+180,42,0.7136204596127996,1.95,1.3846394617322555,0.0006992888724875898,0.03671249695319151,0.8177292450645763,1,1.0,0.9120681987093319
+180,43,0.6977354591612104,1.95,1.3031953514305177,0.0007482390179405731,0.03610449432617855,0.8052901004451112,1,1.0,0.9257848638707014
+180,44,0.729348319461513,2.0,1.3077391417804562,0.0007390029561547547,0.035995317468631174,0.8174576875202002,1,1.0,0.9644943982050432
+180,45,0.7386228964735664,2.0,1.3046582352247986,0.000737505164981278,0.03599375222008093,0.8169970551436108,1,1.0,0.9954096549118876
+180,46,0.74,2.0,1.2994453582475658,0.0007363428996209113,0.035852509336979456,0.8162160259840833,1,1.0,1.0
+180,47,0.75,2.0,1.293946291895779,0.0007347229359711102,0.035345825450050675,0.8153892026698257,1,1.0,1.0
+180,48,0.74,2.0,1.3093955437736813,0.0007245636263978893,0.035306986182288384,0.8177004220884437,1,1.0,1.0
+180,49,0.72,2.0,1.3037954794832314,0.0007226073360498026,0.035256926525672236,0.816863569465846,1,1.0,1.0
+181,0,0.13631588972747855,1.95,1.3702093941445828,0.0007027890621549174,0.03617491587017575,0.8155696547473372,1,0.13522101021466476,0.20742495213870882
+181,1,0.15767936036555638,1.9,1.369644030332071,0.0007030592251869225,0.03640446958745442,0.8039315268290176,1,0.17127356747068087,0.23056644459094686
+181,2,0.18881189540425192,1.9,1.3690106741798664,0.0007034287907607619,0.036360130345186384,0.8038317910013165,1,0.1800330853459608,0.25599553755289195
+181,3,0.23644613191884611,1.9,1.368724724181059,0.0007024712139747919,0.03647022919507059,0.8037863946568432,1,0.23698263814352666,0.3055102555381181
+181,4,0.25070648150000663,1.9,1.3851555159540712,0.0007002107479057548,0.03675451440153016,0.8063641236567738,1,0.2767982131795146,0.3332906540940026
+181,5,0.2928361730747747,1.95,1.3849577995452118,0.0007002605801603192,0.03660455578313903,0.8177769775239212,1,0.3218647435246453,0.38030091888305534
+181,6,0.31209875418870264,1.95,1.384912618081602,0.0006999133209871598,0.036414999549495675,0.8177701410866962,1,0.3696735025537295,0.4140978438907028
+181,7,0.33091107350012033,2.0,1.3836405868936021,0.0006986828803987142,0.03668475615644595,0.8285006226835749,1,0.383823331660596,0.45793913611960646
+181,8,0.32233903640591044,2.0,1.3844656303918221,0.0006990062099281493,0.036705096749560275,0.8286179109825168,1,0.4021039070861744,0.4716582452381356
+181,9,0.36041414379833253,2.0,1.3839203846707668,0.0007006150660792559,0.03651979410781367,0.8285409237283217,1,0.42588539433048067,0.5001999535538009
+181,10,0.3586426074116039,2.0,1.384031653763124,0.0007014878073185583,0.03669479788027781,0.8285569780800638,1,0.46042588743285534,0.514907508128206
+181,11,0.3502842414970694,2.0,1.3842583736467375,0.0007008895244993763,0.036726424146563505,0.828589011364066,1,0.5022608219318454,0.4645997090811041
+181,12,0.3652406579238161,2.0,1.3838180143162873,0.0007009339638117314,0.03634040500008025,0.8285264710303074,0,0.5130583022586245,0.4667244567345544
+181,13,0.35386982917574017,2.0,1.365532527552088,0.0006918436778709299,0.03603639071288076,0.8259104044648427,0,0.5194662511452998,0.4869444290587342
+181,14,0.44148612093996464,2.0,1.3665231123217447,0.0006906347683312172,0.03613804767067106,0.8260524397341922,0,0.6174007708341971,0.4817527086876194
+181,15,0.47609621760785714,2.0,1.279869259816115,0.0006509158697085696,0.03475693100980097,0.8132353209238626,0,0.7064215981175235,0.4784252612028258
+181,16,0.49091598191344527,2.0,1.288135191002354,0.0006735919254960641,0.03507213876296899,0.8144943837559041,0,0.7693174195038411,0.4772967137063627
+181,17,0.5308632978118915,2.0,1.2829512248149515,0.000670409432739289,0.03450424132214915,0.8137088791419572,0,0.8684451762648018,0.4449507576865691
+181,18,0.4833739849790168,2.0,1.3115124584800006,0.0006993844554491754,0.03485630366536907,0.8180082740639859,0,0.8653963451483189,0.4573848230656308
+181,19,0.4912551622168201,1.95,1.3120880036522986,0.0007042473879667799,0.034991192592391314,0.8066669447068808,0,0.8704840380113922,0.4768718233742107
+181,20,0.5364929171645334,2.0,1.310858572160949,0.0007089463667023986,0.03577274159771334,0.8179137574269786,0,0.9124315657813866,0.5050676361732626
+181,21,0.5962959034862233,2.0,1.311152011708946,0.0007101989263417082,0.035785502315085656,0.8179578285689596,0,1.0,0.48765301162074415
+181,22,0.590544615803752,2.0,1.309854812149072,0.000706696049119124,0.03562132406339918,0.8177635481836778,1,1.0,0.468482052679173
+181,23,0.5856030620162791,2.0,1.3856607545004735,0.0007007964564898796,0.03677843032380353,0.8287880722953593,1,1.0,0.48534354005426356
+181,24,0.5653194763091076,2.0,1.3856630854383352,0.0007003757001617095,0.03651492010579484,0.8287882836423147,1,1.0,0.48439825436369194
+181,25,0.5491575224641425,1.95,1.3854333170779802,0.0007005455659516335,0.03664709940736477,0.8178479122998458,1,1.0,0.4638584082138083
+181,26,0.5841249013196045,2.0,1.3858742818533718,0.0007003957464919944,0.03645913953114387,0.828818255654434,1,1.0,0.4804163377320147
+181,27,0.5636710068672741,2.0,1.3858310348301224,0.0007000760194417106,0.0365022394744997,0.8288120290146009,1,1.0,0.4789033562242468
+181,28,0.5706231254084357,1.95,1.3855886572878955,0.0007001263907803289,0.036601858822166856,0.8178709277294497,1,1.0,0.5020770846947858
+181,29,0.6218852185058059,2.0,1.3852031897268366,0.0007001613741691754,0.03644384873380749,0.8287229545276518,1,1.0,0.5729507283526862
+181,30,0.5979728037949302,2.0,1.3852557738053333,0.0007007435146198236,0.036549805453782794,0.8287305835005199,1,1.0,0.5932426793164339
+181,31,0.6473154917285422,1.95,1.3848124206963115,0.0007009326391645639,0.036627180909455256,0.8177555128038494,1,1.0,0.6577183057618072
+181,32,0.6228424810484476,1.95,1.3465768192147785,0.0007252800498123719,0.03594859971993646,0.8119952679209017,0,1.0,0.6761416034948255
+181,33,0.6274509003388467,1.9,1.341183332561863,0.0006749451496610695,0.035146686446256806,0.7993975388068635,0,1.0,0.6915030011294888
+181,34,0.611649758918196,1.95,1.3501155854004034,0.0006769955850362032,0.03607690313858415,0.8125201858957589,0,1.0,0.7054991963939865
+181,35,0.6126478373091054,2.0,1.3481561801303088,0.0006748014264279132,0.036043610798675296,0.823392869125102,0,1.0,0.7088261243636846
+181,36,0.6510238300388964,2.0,1.346105442227962,0.0006726339576699205,0.035938338149421524,0.8230938278543175,0,1.0,0.7034127667963213
+181,37,0.6542404199607631,2.0,1.3461496614029451,0.0006744825819803128,0.03594866689455173,0.823100804874874,0,1.0,0.7141347332025436
+181,38,0.6511630857623971,2.0,1.3455072668879122,0.0006761349699703832,0.035615169984432975,0.8230077304416721,0,1.0,0.7038769525413238
+181,39,0.6093502552719264,2.0,1.3443512959761537,0.0006774102575448569,0.03527938714064173,0.8228396537072589,0,1.0,0.6978341842397546
+181,40,0.6061950640392094,1.95,1.3418105381461953,0.0006747436574814692,0.035094949996669365,0.8112510941521129,0,1.0,0.6873168801306979
+181,41,0.6102435186891094,2.0,1.337976265005614,0.0006712789182753609,0.035806815034667774,0.82190662800501,0,1.0,0.7008117289636979
+181,42,0.6130349317880597,2.0,1.3361549056607291,0.0006689890995142798,0.03566312083955621,0.8216391970194311,0,1.0,0.7101164392935321
+181,43,0.6358319946976454,2.0,1.3330041492969884,0.0006659550019631909,0.03565591063831931,0.8211761001528067,0,1.0,0.7194399823254846
+181,44,0.6151225966947558,2.0,1.3432187500330144,0.0006703575319657372,0.03552299768401443,0.8226724392251871,0,1.0,0.7170753223158525
+181,45,0.6186715019954951,1.95,1.3399939284990623,0.000667744898529034,0.03510878838057808,0.8109706268112039,0,1.0,0.7289050066516506
+181,46,0.6624079590689486,2.0,1.3353076198562115,0.0006639838475630095,0.03556930907749932,0.8215135271209364,0,1.0,0.7080265302298284
+181,47,0.6130476385145387,2.0,1.3401789230207966,0.0006681106996840654,0.03529450774168865,0.8222278897775411,0,0.9944798873331351,0.7175189452709488
+181,48,0.6537706565937461,1.95,1.3367811967729042,0.0006650754251548178,0.035651127926495316,0.8104768116174871,0,1.0,0.7125688553124868
+181,49,0.656925948828065,1.95,1.3354565472478446,0.0006660288785634922,0.03490468804002522,0.8102735494164042,1,1.0,0.7230864960935497
+182,0,0.1659403110266174,2.0,1.369929765502786,0.0006898951377917738,0.03575771749980594,0.8265411854063963,0,0.16306296432204714,0.20238375099266182
+182,1,0.13483312389544125,1.95,1.3725150100605523,0.0006932569524741645,0.0362977243087646,0.8159133400925097,0,0.18269009124145158,0.20585695799620204
+182,2,0.21964605945573978,1.9,1.3729516415788647,0.0006926044665909197,0.03634415403878792,0.8044490777856518,0,0.28509425311067005,0.18536119403823925
+182,3,0.2087199728333016,1.9,1.3560124851336497,0.0006932962333810965,0.03638591266870072,0.8017708370463967,0,0.3172723907656447,0.20603672175681242
+182,4,0.22459624066454068,1.95,1.341545342359557,0.0006826967365495411,0.03570888577849875,0.8112129192752028,0,0.354696571511238,0.20905870686681832
+182,5,0.2731297228194466,2.0,1.342926052902661,0.0006816663719902596,0.03553015221673383,0.8226330359269504,0,0.43472019426516667,0.197472150377933
+182,6,0.2688330890009609,2.0,1.27841022144265,0.0007190099257762113,0.034656572532853355,0.8130343183604979,0,0.4660180610487758,0.20808621527150198
+182,7,0.33259783178759034,2.0,1.2774667927896002,0.0007185516553880793,0.03484552074931974,0.812890726468212,0,0.5626992479051938,0.19172710875170945
+182,8,0.35298538080167285,2.0,1.288992712612408,0.0007077898492372117,0.03513887720191651,0.814634242927566,0,0.6388815677770595,0.1914425123028302
+182,9,0.3837338418980939,2.0,0.6320887079894945,0.0003022635628530712,0.019585187507954537,0.6948077399116281,0,0.7064623133285292,0.20382972188894086
+182,10,0.43378706495478797,2.0,0.7255831206938937,0.0008750398649551616,0.030409852203660055,0.7144984154355694,0,0.8130795293584426,0.19518417737136975
+182,11,0.4186469115277212,2.0,1.1352611332374387,0.0007637901204462828,0.03314015046851996,0.7903089542252395,0,0.8439208315806984,0.20359526298480607
+182,12,0.48371620774777796,2.0,1.3383980254432037,0.0007598963601925179,0.03670182640391639,0.8219942897121624,0,0.9454472536037566,0.18512435435425095
+182,13,0.47145430663045984,2.0,1.1341956593778395,0.0007739561257640219,0.03296467132417269,0.7901357000228462,0,0.9709537970509048,0.21024262603365962
+182,14,0.4544073489748365,2.0,1.3406969757274647,0.0007569562721129799,0.036621981602231825,0.8223295632926226,0,0.9760780714647433,0.21325373462979708
+182,15,0.5121791340617564,2.0,1.3393789104258862,0.0007605751921824144,0.036158920807360495,0.8221379656864541,0,1.0,0.2072637802058547
+182,16,0.48730338219058533,2.0,1.3450566924735132,0.0007527183323073726,0.036491922680753436,0.8229644040895079,0,1.0,0.22434460730195097
+182,17,0.4681577178491265,1.95,1.3435783336635279,0.0007537030515282255,0.03673648604478836,0.8115457881096421,0,1.0,0.22719239283042164
+182,18,0.49413143742129834,2.0,1.3411991745554277,0.0007583954313796806,0.03672059106976065,0.8224033448952754,0,1.0,0.24710479140432773
+182,19,0.47556839187515454,2.0,1.340764471646097,0.0007581104235123955,0.03673950240312012,0.8223397617148743,0,1.0,0.2518946395838484
+182,20,0.5058370859580466,2.0,1.339388086380549,0.0007614012057417187,0.03669636669483233,0.8221395490256423,0,1.0,0.2861236198601552
+182,21,0.5136416231024117,2.0,1.3378240382200117,0.0007625671477283489,0.03620187036941441,0.8219110704291162,0,1.0,0.3121387436747057
+182,22,0.5167984428696885,2.0,1.3361483380587091,0.0007637181185680027,0.036430862370632804,0.821665997711946,0,1.0,0.32266147623229496
+182,23,0.5024256822695453,2.0,1.3343790628718188,0.000764752353452637,0.03670885520801094,0.8214068999525973,0,1.0,0.34141894089848435
+182,24,0.5468867826594946,2.0,1.3328480692637286,0.0007688845214082005,0.03667831673646723,0.8211834098794533,0,1.0,0.3229559421983153
+182,25,0.5408141906413291,2.0,1.3386030249669918,0.0007602004594793104,0.03672916332019741,0.8220243721760668,0,1.0,0.3360473021377633
+182,26,0.49929025481203254,2.0,1.3456950854320877,0.000752009387687072,0.03669648642181641,0.8230571884404817,0,1.0,0.3309675160401084
+182,27,0.546549594583849,1.95,1.3443413499285644,0.0007551777052683703,0.03629861256762017,0.8116629063342734,0,1.0,0.32183198194616314
+182,28,0.49865495014355976,1.95,1.348030906881172,0.0007491604662916318,0.036747969487822184,0.8122244311180821,0,1.0,0.3288498338118659
+182,29,0.5381932824948945,1.9,1.34673129577817,0.0007518210316193204,0.03660176244299632,0.8003103115230655,0,1.0,0.32731094164964836
+182,30,0.5268062292448223,1.9,1.3519129206066043,0.0007459187303015505,0.03659975102200925,0.8011352371326628,0,1.0,0.35602076414940786
+182,31,0.5501180001483302,1.95,1.350501958102597,0.000747179630233938,0.03618307109250847,0.8126004117093079,0,1.0,0.33372666716110044
+182,32,0.5306162208879036,1.95,1.3552969951524825,0.0007398574016054921,0.03625654505960601,0.8133272869982564,0,1.0,0.3687207362930118
+182,33,0.5131944801985855,2.0,1.3539068353126258,0.0007409700470755612,0.036565592573171,0.824246729594067,0,1.0,0.3773149339952849
+182,34,0.5375317430900929,2.0,1.3534883362647274,0.0007426591827549072,0.03640437188397337,0.8241865854190373,0,1.0,0.39177247696697604
+182,35,0.5490532092038813,2.0,1.3520896111021177,0.000743852909696241,0.03672640142273192,0.8239841602155461,0,1.0,0.4301773640129375
+182,36,0.5269006315328982,2.0,1.3139305091046078,0.0007194331580043997,0.0351081325518777,0.818373934349423,0,1.0,0.4230021051096608
+182,37,0.5523387321642073,1.95,1.3136698128598723,0.0007239156857788132,0.03536253318344111,0.8069196454388236,0,1.0,0.44112910721402393
+182,38,0.5607326564935733,1.95,1.3109244737781507,0.0007260932842947504,0.03596758960919262,0.8064922399493342,0,1.0,0.4691088549785775
+182,39,0.5852880554763293,2.0,1.3094346205309138,0.0007276055651018951,0.0356821792120362,0.8177071539269727,0,1.0,0.45096018492109774
+182,40,0.5389372504306197,2.0,1.3098709112240419,0.0007220212875455243,0.03585263932562111,0.8177705149942004,0,1.0,0.4631241681020656
+182,41,0.5712150134853453,1.95,1.309606594275378,0.0007268263349827595,0.035512559549156525,0.8062867142799974,0,1.0,0.437383378284484
+182,42,0.5565515014034195,1.95,1.3224016716261473,0.0007205683847289774,0.03560580329592259,0.8082753897243162,0,1.0,0.45517167134473135
+182,43,0.5614952922505203,2.0,1.3210306527255646,0.00072198252525595,0.03596097151308615,0.8194276555511099,0,1.0,0.4716509741684011
+182,44,0.5794940144965659,2.0,1.3208372196865261,0.0007227421369831956,0.03564759514617077,0.8193992570958687,0,1.0,0.46498004832188616
+182,45,0.5452617544554661,2.0,1.3336116543259267,0.0007166507641951977,0.03611216969761495,0.8212801750140059,0,1.0,0.4842058481848871
+182,46,0.5470154998532891,1.95,1.3332587475946938,0.0007209971178814345,0.036192376857009594,0.8099523735891774,0,1.0,0.49005166617763046
+182,47,0.5506992317943864,2.0,1.3315468148785259,0.0007254566885225456,0.03577631658187143,0.8209794872262279,0,1.0,0.5023307726479544
+182,48,0.5856853128509582,2.0,1.3318616763715876,0.0007281985628830398,0.03576665541338227,0.8210265642201118,0,1.0,0.4856177095031937
+182,49,0.5877395031931703,2.0,1.3429845939486256,0.0007222439309854183,0.03598368687869721,0.8226534177855861,0,1.0,0.49246501064390075
+183,0,0.18871614191901942,2.0,1.3701483070506264,0.000691294829760907,0.035766600226120195,0.8265729169512739,0,0.2160110995155451,0.17437234037600458
+183,1,0.14857316364439438,1.95,1.3608866534509967,0.0006909700788159518,0.03591831861401113,0.8141596633777995,0,0.22156167892473452,0.19982830691500192
+183,2,0.2192124238331661,1.9,1.3626125166194065,0.0006897733691500218,0.03624750999803725,0.8028166046140855,0,0.30170468119201077,0.19510183785453927
+183,3,0.21877827087462853,1.9,1.3609453439685602,0.0006889589836029065,0.036394833429906466,0.8025522963334708,0,0.3310008561299184,0.22125976140887055
+183,4,0.2435648482615648,1.95,1.3288822343831477,0.0006749153091092086,0.0354290293343403,0.8092635593680727,0,0.3703731444301126,0.2513853016317325
+183,5,0.2864165108956001,1.95,1.3307312512664886,0.0006742782216063147,0.03517345289298715,0.8095486066671308,0,0.42679750829472907,0.2523250252590282
+183,6,0.33907838520747696,1.95,1.287053865569719,0.0007230443891663383,0.03524901914011082,0.8027386911134723,0,0.5419111759585339,0.24104638274687795
+183,7,0.34941539288225476,1.95,1.2847196596464021,0.0007222201221582571,0.03503444859829809,0.8023685486512689,0,0.5990915013297227,0.232595974501219
+183,8,0.3494403231390996,2.0,1.2870780305884897,0.0007369492976612517,0.0356292911214799,0.8143537585258256,0,0.6329261696943586,0.25423285087118724
+183,9,0.41394811870232456,2.0,0.6946299761926906,0.00079017915809388,0.029013829557866945,0.7081074999963124,0,0.731487723868846,0.23784343051595389
+183,10,0.44187778090425245,2.0,0.6908572865440518,0.0007801163249898691,0.02868498616563252,0.7073229398646718,0,0.8253426843033557,0.20580235727636728
+183,11,0.47297641024012,2.0,1.363126468924413,0.0007270476631921013,0.03673994629937674,0.8255743233120086,0,0.9218902790470355,0.1807343287376859
+183,12,0.46818421663503407,2.0,1.1318059336906416,0.0007818427848035457,0.032839310091836056,0.789741777076201,0,0.9669864046452405,0.20463218258979277
+183,13,0.5104800273978033,2.0,1.3630576162115062,0.0007271615933789764,0.03668168318898205,0.825564441019123,0,1.0,0.201600091326011
+183,14,0.46446203206876996,2.0,1.365121199943905,0.0007229862043310528,0.036600392925532646,0.8258602125765122,0,1.0,0.2148734402292332
+183,15,0.47315056282380413,1.95,1.3640652901921362,0.0007235572945192609,0.03628909410102778,0.8146499639466728,0,1.0,0.24383520941268044
+183,16,0.5190505343591033,2.0,1.3623412504068972,0.0007247330769970272,0.03666831518159099,0.8254605549203726,0,1.0,0.23016844786367774
+183,17,0.4723829071005736,2.0,1.364538751632383,0.0007201040971480527,0.03663956275718923,0.8257756025052214,0,1.0,0.24127635700191205
+183,18,0.47773161827074606,1.95,1.3634100140296004,0.000720620496297019,0.036557151778150034,0.8145501126057192,0,1.0,0.2591053942358202
+183,19,0.5058890456056656,2.0,1.3616066981314425,0.0007216029351999171,0.036529131991724445,0.8253537962992759,0,1.0,0.2862968186855521
+183,20,0.490290593182373,2.0,1.3615585481343728,0.0007245056399668967,0.03654906740173009,0.8253476924585422,0,1.0,0.30096864394124323
+183,21,0.4951159465167484,2.0,1.3603071264090476,0.0007251290619654095,0.03628896041638716,0.8251674078450746,0,1.0,0.31705315505582793
+183,22,0.4966608414456484,2.0,1.3589710105927673,0.0007256559413096027,0.03637007662714099,0.8249747199520446,0,1.0,0.32220280481882796
+183,23,0.5382175537938857,2.0,1.3575609710270042,0.0007261945496590616,0.03662063701776456,0.8247711847012172,0,1.0,0.29405851264628535
+183,24,0.4891965952361274,2.0,1.3592495304207628,0.00072161033715414,0.03649818243636396,0.8250137640959967,0,0.992801451937738,0.3069200482034405
+183,25,0.5179005145485212,1.95,1.3578877814917412,0.0007220388538123031,0.03640440647407163,0.813714914571254,0,1.0,0.32633504849507056
+183,26,0.5243799764250351,1.95,1.3566082894812932,0.0007267894863977734,0.03630460098314946,0.8135223289214609,0,1.0,0.3479332547501168
+183,27,0.5466567736705051,2.0,1.3557891626930987,0.00073050323690152,0.03638575352336385,0.8245162159218329,0,1.0,0.3221892455683503
+183,28,0.5236138658664138,2.0,1.357897925227416,0.0007251468633467129,0.03633612438777798,0.8248195744675216,0,1.0,0.3453795528880457
+183,29,0.5079389054672028,1.95,1.357054534381698,0.0007281657022723959,0.03657904111132819,0.8135904339118293,0,1.0,0.3597963515573424
+183,30,0.509694309331023,2.0,1.355122130991477,0.0007297263394392889,0.036508326636925804,0.8244194578143915,0,1.0,0.3656476977700767
+183,31,0.5403494901540853,2.0,1.3545552262067067,0.0007298335926482233,0.03643831317755728,0.8243374131731669,0,1.0,0.40116496718028427
+183,32,0.525414628599819,2.0,1.2980753708127803,0.0007473900786715757,0.035669660763511246,0.8160137458282815,0,1.0,0.41804876199939656
+183,33,0.5547447824918661,2.0,1.2971584540308467,0.0007508230628343049,0.03602444303693769,0.8158770757697235,0,1.0,0.4491492749728871
+183,34,0.5398129868674428,2.0,1.295920195455728,0.000752909973545606,0.03599928553619863,0.8156916172216516,0,0.9998720448969467,0.466213896362214
+183,35,0.5854158968079575,2.0,1.2948986122510466,0.0007563169040931044,0.035630713476458666,0.8155390091378614,0,1.0,0.45138632269319146
+183,36,0.557677027593097,2.0,1.2945511200292732,0.0007503700112237438,0.035187960984714314,0.8154849387247476,0,1.0,0.45892342531032326
+183,37,0.5868821425359139,1.95,1.2933640375983044,0.000752455665111542,0.035338810567443486,0.8037452726171042,0,1.0,0.45627380845304616
+183,38,0.5784238831693362,1.95,1.2911751118549113,0.0007477324723747468,0.03594137190041292,0.8033982724470324,0,1.0,0.42807961056445415
+183,39,0.5286683464349828,2.0,1.2904587990076384,0.0007424139604366256,0.03561280258918592,0.8148659745937573,0,1.0,0.4288944881166092
+183,40,0.5537759579180843,1.95,1.291346112214074,0.0007446469558213052,0.03587352700301546,0.8034243058527739,0,1.0,0.4459198597269474
+183,41,0.5561389505333683,1.95,1.2886184602501098,0.0007479227225450228,0.03497787956208897,0.8029941975665813,0,1.0,0.453796501777894
+183,42,0.5802199708345757,2.0,1.2874389095933019,0.0007499999632790467,0.03531420346581538,0.8144122557596635,0,1.0,0.43406656944858546
+183,43,0.5348072135020749,2.0,1.2884295925300633,0.0007434633189336789,0.0349758423868801,0.8145599710894518,0,1.0,0.4493573783402497
+183,44,0.5709588226983813,1.95,1.2876746121580636,0.0007469738624381947,0.035420290194868594,0.8028445428921095,0,1.0,0.4365294089946039
+183,45,0.5738906891987139,1.95,1.3023193896200778,0.0007389143638289575,0.03569029390337665,0.8051497889396213,0,1.0,0.4129689639957127
+183,46,0.5682242538868796,2.0,1.3015477615035989,0.0007342873430398818,0.035082943586740675,0.81653057656115,0,1.0,0.39408084628959855
+183,47,0.5579348317988789,2.0,1.3556326653346693,0.0007088604138354734,0.03630185797593581,0.824487307599502,0,1.0,0.35978277266292963
+183,48,0.5321804492151166,2.0,1.3561159428888085,0.0007052486450632887,0.03626261288828912,0.8245561857768922,0,1.0,0.3739348307170555
+183,49,0.5174506921669206,1.95,1.3567299126474819,0.0007106041003335376,0.03632321752117132,0.8135358684653902,0,1.0,0.39150230722306867
+184,0,0.1863311873872111,2.0,1.3666119600357411,0.0006895293521925423,0.03565060209736655,0.8260648882193112,0,0.2003307849698716,0.18732957799754157
+184,1,0.17661826857924018,1.95,1.364054829952021,0.0006877093801561066,0.035912246500388094,0.8146375584374996,0,0.22758378339717492,0.2186158507345674
+184,2,0.16691732448854935,2.0,1.3051272805220813,0.0006602722481395073,0.03489700160236213,0.817044084130968,0,0.23775057302515276,0.23939031759496074
+184,3,0.17927152469652363,2.0,1.315793322662778,0.0006606309818819718,0.03535689789010994,0.8186331947031574,0,0.25796449871974325,0.25361908402875444
+184,4,0.21781058190236577,2.0,1.322753844838173,0.0006605279670154769,0.035336618774672486,0.819664321953127,0,0.2902939547203467,0.2723100000474236
+184,5,0.26320383309562384,2.0,1.3240612234728952,0.000660549467697032,0.034884145974718145,0.8198574973553657,0,0.3588456056086621,0.2655519695071967
+184,6,0.2888458014175296,2.0,1.3223099364836155,0.0006593152967620155,0.034554473894027174,0.8195983378490816,0,0.42726176019181217,0.2598036578026825
+184,7,0.2590640008274892,2.0,1.2913079527269011,0.0007020741855930677,0.03509060160050379,0.814981878109304,0,0.4341580019907934,0.28466933343723944
+184,8,0.2985841461263223,1.95,1.305855296868228,0.0006966127690393471,0.03507947601448846,0.80569067179118,0,0.467657815206526,0.3050700668123728
+184,9,0.3093666964646169,1.95,1.3030740038227493,0.0006933538627598199,0.03492207036711574,0.8052538590713259,0,0.4789100320580129,0.3260089454713724
+184,10,0.3728630160798398,2.0,1.3018953830351434,0.0006903451386470021,0.03480378590538254,0.8165694841634019,0,0.5731107833559095,0.3120623424582533
+184,11,0.39491866408363585,2.0,1.302062573231033,0.0006905852237498207,0.034887582219105324,0.8165945971285227,0,0.6496851827353696,0.31681530329829344
+184,12,0.4369328402042985,2.0,0.6456174788830625,0.0006631244117288899,0.02534629341082869,0.6978211395609567,0,0.7484828971263399,0.2917989378458753
+184,13,0.45504667738295834,2.0,0.6414215206468785,0.0006525175924011288,0.025764604366195654,0.6969311368744638,0,0.8258868804396517,0.282306417356992
+184,14,0.4606207501396233,2.0,1.3606879048117786,0.0006836759604624274,0.035962725480346444,0.8252103765603732,0,0.8683751747484278,0.31090226746750704
+184,15,0.5074397991084812,2.0,1.3598375301507526,0.0006830655785321255,0.036019426995448675,0.8250875099396121,0,0.9319431763837491,0.31554176184993843
+184,16,0.4766660990485701,2.0,1.3625941901151208,0.0006855473303423234,0.03584596384130416,0.8254857044815724,0,0.957473838071335,0.3122552127334537
+184,17,0.512915138473581,1.95,1.3664253863533264,0.0006871206128362463,0.03593557775411073,0.8149950755498541,0,0.9892388181835822,0.3240653706671604
+184,18,0.537438670805347,1.95,1.364985583617314,0.0006861038334855846,0.03621055278583063,0.8147775794665888,0,1.0,0.3247955693511566
+184,19,0.5357970555289155,1.95,1.367330697711095,0.0006881521730716295,0.036182534524424964,0.8151318486501652,0,1.0,0.3193235184297185
+184,20,0.5282606706921916,2.0,1.3690017712380678,0.0006902374293042432,0.0361409744517814,0.8264081959648812,0,1.0,0.3608689023073053
+184,21,0.5395915589484171,2.0,1.368512182119741,0.0006894682886782514,0.0360831883226916,0.8263377286677793,0,1.0,0.39863852982805703
+184,22,0.5459446423458849,2.0,1.3674983633471447,0.0006885074437717017,0.03592076132088667,0.8261919178465197,0,1.0,0.41981547448628304
+184,23,0.553284384404796,2.0,1.2885866234600585,0.0006929301084337744,0.03468442469432581,0.814568424493023,0,1.0,0.44428128134932
+184,24,0.5343212166392027,2.0,1.2878291775903294,0.0006969501972083321,0.03392403768319637,0.8144552025459565,0,1.0,0.4477373887973425
+184,25,0.5801057254964159,2.0,1.287877294772617,0.0007020529283891888,0.03433159126364201,0.8144640159813912,0,1.0,0.43368575165471973
+184,26,0.5745246446290215,2.0,1.2860438240643854,0.0006980806958197939,0.03490153557497594,0.8141855942031794,0,1.0,0.4150821487634047
+184,27,0.5491126489105045,2.0,1.2841054456778662,0.0006940930929967825,0.03515394467324004,0.8138909553211623,0,1.0,0.4303754963683482
+184,28,0.5696477766480174,1.95,1.2833871021900567,0.0006982410700225172,0.035126730873146786,0.8021495444143063,0,1.0,0.43215925549339107
+184,29,0.5527687829025626,1.95,1.298838007379348,0.0006930412277193607,0.03416485280999394,0.8045886123768337,0,1.0,0.4425626096752085
+184,30,0.5601080330596637,2.0,1.2978358059918533,0.000696336003390521,0.03460727486681122,0.8159624431111246,0,1.0,0.46702677686554556
+184,31,0.5667725338583063,2.0,1.2982951911966019,0.0006991217837988735,0.03449399672821947,0.8160322543581208,0,1.0,0.4892417795276875
+184,32,0.5911192214374834,2.0,1.2969786846078573,0.000701538641558233,0.03513152057449228,0.8158352596535816,0,1.0,0.47039740479161135
+184,33,0.5427893973874147,2.0,1.2953157356438068,0.0006978806709014419,0.03535492581686433,0.8155841731469009,0,1.0,0.475964657958049
+184,34,0.5547797117089778,1.95,1.2958742753430865,0.0007034750983398485,0.035408124142677216,0.8041255034713863,0,1.0,0.5159323723632592
+184,35,0.5575515423896367,2.0,1.2943262113606786,0.0007087832463872391,0.03444715848194132,0.8154385773206332,0,1.0,0.5251718079654557
+184,36,0.5844273174913651,2.0,1.2957254634565574,0.0007130083518791426,0.034472364962033264,0.8156503403448181,0,1.0,0.5480910583045502
+184,37,0.6073011527135922,2.0,1.2946733274801399,0.0007159115288665961,0.034692109867536756,0.8154929571696036,0,1.0,0.5243371757119739
+184,38,0.5768171946136295,2.0,1.2932632922415839,0.000711980232344188,0.03511304980771386,0.8152795188721889,0,1.0,0.5227239820454314
+184,39,0.5788167914094994,1.95,1.2921319126250157,0.0007146944980128796,0.03552681629336456,0.8035389239571861,0,1.0,0.529389304698331
+184,40,0.5625702279390234,2.0,1.289217811285399,0.000717475875663387,0.03461966752741983,0.8146711564616643,0,1.0,0.5419007597967448
+184,41,0.6053122533113957,2.0,1.2908114484341797,0.000721789125979767,0.03518014165202418,0.8149129475739295,0,1.0,0.5177075110379854
+184,42,0.5947632927848069,2.0,1.289555528345251,0.0007177898723990896,0.034434611189836456,0.8147222350572254,0,1.0,0.5158776426160226
+184,43,0.5528327786418019,2.0,1.3057377027450046,0.0007111596315428297,0.03481842881963446,0.8171505214704596,0,1.0,0.5094425954726728
+184,44,0.5920357190505413,1.95,1.305420807974081,0.0007151597859202856,0.03533408999437779,0.8056284507911033,0,1.0,0.4734523968351374
+184,45,0.5454543328364982,1.95,1.3026344225266748,0.0007119239734963169,0.035384076863124954,0.8051907404761403,0,1.0,0.48484777612166063
+184,46,0.5519337697646061,1.9,1.3021614596072983,0.0007157336331752173,0.034751940896892465,0.793080176040762,0,1.0,0.5064458992153535
+184,47,0.5928290066276711,1.95,1.2999261939069222,0.0007195969152062887,0.03567156531238901,0.8047679914502278,0,1.0,0.5094300220922368
+184,48,0.5973431071031866,1.95,1.3164152330420573,0.0007128272280306388,0.03540010733696767,0.8073435730539944,0,1.0,0.4911436903439551
+184,49,0.57338499962675,2.0,1.3151869718716525,0.0007093881305795533,0.03581989545958607,0.818557634030616,0,1.0,0.5112833320891668
+185,0,0.13746606787042337,1.95,1.3640640988935708,0.0006883466698639418,0.035568957880484364,0.8146391505376951,0,0.11995331636645767,0.23161580441280102
+185,1,0.19630722689587948,1.9,1.3647063624007587,0.0006875615070307834,0.036040011704532644,0.8031471552582937,0,0.21148305235816234,0.2057133531753818
+185,2,0.20902520996971863,1.9,1.2920684335167074,0.0006387226351033088,0.034510269357889284,0.7913935438079818,0,0.27529766042287995,0.19635381933522214
+185,3,0.20343400925824845,1.95,1.3627015939923715,0.0006850718376783065,0.03630199948731252,0.8144323312227935,0,0.3016617978765026,0.20923096702549138
+185,4,0.2736975989508845,2.0,1.3091557923671777,0.0006505539368146698,0.034916339262840206,0.8176426113559228,0,0.41438500167717174,0.19314532760005276
+185,5,0.29009828743494964,2.0,1.2235737111192986,0.0006676081956261137,0.03347548372774367,0.8045390559787091,0,0.4871572826025533,0.1841179146464278
+185,6,0.3326483816734642,2.0,1.2205309825183146,0.0006652711431997804,0.032953636104798865,0.8040593889450955,0,0.5943122629827382,0.1497449216012297
+185,7,0.3124779076988549,2.0,1.2285712632935997,0.0006949779675031803,0.033655236620066385,0.8053323367349537,0,0.6120096264712949,0.1589135237011232
+185,8,0.375981381044332,2.0,0.681796180957261,0.0004168277211265334,0.02258797018040532,0.7052926174472774,0,0.7090820220218826,0.14116190745192972
+185,9,0.4120115795106097,2.0,0.6772724011959266,0.00041039334910116085,0.02239616262250311,0.7043487752191873,0,0.8178759111800412,0.11620405012864406
+185,10,0.4369852259844423,2.0,1.1281512006681076,0.0007880176250201114,0.033897754020396534,0.7891363221075296,0,0.8950804554847456,0.1298434793018135
+185,11,0.40250986156939705,2.0,1.1276204195604456,0.0007823997793842338,0.03332456181337751,0.7890461162761452,0,0.9096791436704933,0.12879401367066567
+185,12,0.4369636272446073,2.0,1.1297101247501806,0.0007903901303373159,0.032939953408113745,0.7893963992999249,0,0.9341198104385042,0.14438567689735193
+185,13,0.42418621555773167,2.0,1.128965640090024,0.0007916842404749823,0.03338921182434525,0.7892730327400963,0,0.9383844903820583,0.16277473134969453
+185,14,0.4674772969431875,2.0,1.1306684275417405,0.0007993724066689943,0.03391610143796987,0.7895586576210752,0,0.9770924795886485,0.1888010170257601
+185,15,0.48056397979076426,2.0,1.1298586852471193,0.0008006763512718857,0.034219916089967585,0.789424516228042,0,1.0,0.20187993263588083
+185,16,0.488772727219776,2.0,1.37353063485061,0.0006963200527596798,0.03626815885771914,0.8270586761950186,0,1.0,0.22924242406591983
+185,17,0.5160728351884236,2.0,1.3729453628657486,0.000695146275385915,0.036279373632935034,0.8269746112776516,0,1.0,0.22024278396141192
+185,18,0.4639338795414333,2.0,1.3720588489658447,0.0006950993227160456,0.03633678860827778,0.8268477119118937,0,1.0,0.21311293180477764
+185,19,0.48790421270624784,1.95,1.3750269118320426,0.0006951293651616581,0.03632576206296901,0.8162908868504072,0,1.0,0.2263473756874927
+185,20,0.4989053528904449,1.95,1.374143989452588,0.0006940800114659444,0.036358621138497804,0.8161581318692858,0,1.0,0.26301784296814956
+185,21,0.5242739806560751,2.0,1.3734698591946435,0.0006931396232331619,0.036214383565288576,0.8270490732723683,0,1.0,0.24757993552025007
+185,22,0.5021760128198061,2.0,1.3729509377420754,0.0006931211142298835,0.03619780586735603,0.8269748294223233,0,1.0,0.2739200427326869
+185,23,0.5076924274625948,1.95,1.3722334865814856,0.0006922105604644509,0.03620826394869351,0.8158707374642066,0,1.0,0.29230809154198245
+185,24,0.5343074785857254,2.0,1.3711121258538563,0.0006911262050657645,0.03626208793470376,0.8267109887026458,0,1.0,0.2810249286190844
+185,25,0.5232007552588682,2.0,1.3706367464646008,0.0006911459802122858,0.036279049522920256,0.8266428809748935,0,1.0,0.2773358508628938
+185,26,0.5073164568666152,2.0,1.372001943543135,0.0006931809366417219,0.03636071226538782,0.8268390152443812,0,1.0,0.2910548562220505
+185,27,0.5208537044937126,2.0,1.3712709749359735,0.0006922721680775073,0.03624454468517309,0.8267340725368358,0,1.0,0.33617901497904185
+185,28,0.5017452028952926,2.0,1.370505113717565,0.0006913277423216903,0.036068331113036714,0.8266240687073548,0,1.0,0.33915067631764195
+185,29,0.5439597022776376,2.0,1.3735988379450075,0.0006922556033730179,0.03626337036805348,0.8270672685959286,0,1.0,0.31319900759212527
+185,30,0.5009221306186715,2.0,1.372820722547855,0.0006920315152995468,0.03632127633369553,0.8269558846248343,0,1.0,0.3364071020622383
+185,31,0.5407824532699677,1.95,1.3752988263670327,0.0006929226131377279,0.03632058908257872,0.8163309979310789,0,1.0,0.30260817756655856
+185,32,0.530795130998473,1.95,1.3742393508936908,0.0006924299493020808,0.03636501406203213,0.8161719447187366,0,1.0,0.269317103328243
+185,33,0.5183036103218995,2.0,1.373397488133608,0.0006920411855941827,0.036198328424279475,0.827038406896389,0,1.0,0.22767870107299848
+185,34,0.4684166086618924,2.0,1.3728474122975682,0.0006918794732809546,0.036279654743488515,0.8269596603770482,0,0.9940575797612987,0.23597858919124282
+185,35,0.5198834612870049,1.95,1.3750142485699735,0.0006926654955311842,0.03631746676391749,0.816288248887853,0,1.0,0.23294487095668281
+185,36,0.5127157500619777,1.95,1.3738219161741227,0.0006919607819340347,0.03633545436369235,0.81610916568809,0,1.0,0.20905250020659202
+185,37,0.4698223761634286,2.0,1.372859969581055,0.0006915052544003222,0.03634346093914681,0.8269613501854136,0,1.0,0.23274125387809513
+185,38,0.4788306052318646,1.95,1.375003713012148,0.0006924187825880096,0.03641409372899194,0.8162865949564557,0,1.0,0.2627686841062153
+185,39,0.49487082646419833,2.0,1.3760350391684315,0.0006930366297648674,0.03632985302227318,0.8274156566217704,0,1.0,0.24956942154732772
+185,40,0.5015387529287308,2.0,1.3757705462115561,0.0006929778490696364,0.03641339677386504,0.8273778672338387,0,1.0,0.27179584309576926
+185,41,0.5179541428275245,2.0,1.3751666283677628,0.0006927449614787521,0.036319622944918986,0.8272915298295417,0,1.0,0.25984714275841503
+185,42,0.5234819143466082,2.0,1.3773718938136745,0.0006940329377375889,0.03623891299025821,0.8276067588554492,0,1.0,0.2449397144886939
+185,43,0.5186725132047989,2.0,1.3766050961105578,0.0006934766968570306,0.036258250644513025,0.827497170618434,0,1.0,0.22890837734932967
+185,44,0.5141646742370944,2.0,1.3757769491340375,0.0006929869574547659,0.036471666350334275,0.8273787843229827,0,1.0,0.2472155807903148
+185,45,0.4756766149613846,2.0,1.3776037081199437,0.0006946268901410678,0.03640677586144848,0.8276399996314818,0,1.0,0.25225538320461516
+185,46,0.5183145421288575,1.95,1.378924144783364,0.0006951477955193209,0.036464530607910745,0.8168746014564616,1,1.0,0.26104847376285817
+185,47,0.49863620389744956,1.95,1.3407748398458348,0.000684706015007545,0.03576792138151526,0.8110955069236834,1,1.0,0.26212067965816505
+185,48,0.4995230738698628,2.0,1.3440317883222452,0.0006922204018401117,0.035461161994421404,0.8227973915498131,1,1.0,0.2650769128995425
+185,49,0.5454395764941266,2.0,1.3471642601095748,0.0006993237130817869,0.03599000984406294,0.8232557171468363,1,1.0,0.3181319216470883
+186,0,0.16353212095797828,2.0,1.3690400318686524,0.0007041661583236734,0.036142940218533225,0.8264176809084137,1,0.1319350466076082,0.2358603410497834
+186,1,0.21646662682265155,1.95,1.3688251960246582,0.0007033928946131567,0.03637465724576119,0.8153615403471728,1,0.2011845944949968,0.2866426300821762
+186,2,0.22446142828327156,1.95,1.3853248671742366,0.0006998539439573414,0.03669679392254993,0.8178315495875585,1,0.2250157954548275,0.3148503670044685
+186,3,0.20587923641671202,2.0,1.3852085996469061,0.0006998856989503628,0.036409352810407754,0.8287236441578472,1,0.2720276646399737,0.29022723520240845
+186,4,0.2291990488564202,2.0,1.3852506382310712,0.0007000693599926804,0.03670564833017216,0.8287296632007483,1,0.29655627772349336,0.3019217925567429
+186,5,0.2682463298483039,2.0,1.3856118506030084,0.0007000722167930626,0.03673273944964155,0.8287809272551834,1,0.327677945546188,0.32391717209942894
+186,6,0.2880591651365289,2.0,1.3854753663091548,0.0007000956095256668,0.03640690136646625,0.8287615654810299,1,0.3499493921996398,0.36026469418890994
+186,7,0.27583565365146434,2.0,1.385294748193373,0.000700132799113596,0.03667858917746601,0.8287359419454083,1,0.3627670713920298,0.3690960836488414
+186,8,0.31653478355606085,2.0,1.3856350392998027,0.0007000774529341078,0.03674061191568319,0.8287842192641265,1,0.3905814795597434,0.4010073057738783
+186,9,0.3022159503400686,2.0,1.3843507093747063,0.0007002759155335183,0.03646142774084997,0.8286019510510855,1,0.4134274887596331,0.3894831827873845
+186,10,0.2859576075765014,2.0,1.3818716705180822,0.0007012404263138805,0.03661227574301245,0.8282498636220521,1,0.4269558609199889,0.3505842106950195
+186,11,0.3621347364269632,2.0,1.382694948740566,0.0007006316916474381,0.036695725384021896,0.8283667718772685,1,0.4700774368212161,0.4136792056615893
+186,12,0.32805504410633896,2.0,1.3830300435799439,0.0007023597911303022,0.0363291551518759,0.828414900109404,1,0.5119943609647624,0.3775243324014467
+186,13,0.36933565943340996,1.95,1.3815031682672734,0.00070058875532271,0.03661578958654262,0.8172617087611713,1,0.5257942333345039,0.3967265536653614
+186,14,0.3613726206861282,1.95,1.3817464087483673,0.0006997506613774737,0.0364662592439987,0.8172977824176814,1,0.5486363897683888,0.4063935492625756
+186,15,0.35368124994514116,2.0,1.3827555755409962,0.0007024633179358783,0.03655231473680533,0.8283759121395106,1,0.5890656499536409,0.36018329987894937
+186,16,0.3625129354637733,2.0,1.382275325469884,0.0007015329334755382,0.03658640308360254,0.828307359946572,1,0.6276038579056251,0.33823797433841063
+186,17,0.44458101821833707,2.0,1.3622213079887435,0.0007008846058866014,0.036163857560992996,0.8254364008901254,1,0.6832389864514048,0.40428474545925064
+186,18,0.4091279148855098,2.0,1.3600585060320554,0.0007153672363000175,0.036597650386764005,0.825128720363624,1,0.7069372544864605,0.387843376969752
+186,19,0.4686134691390102,1.95,1.3443478701504215,0.0006964900165637136,0.03611834454099644,0.8116459597387778,1,0.7503122375514977,0.4282952470613705
+186,20,0.5223195506995104,1.95,1.3565812912200303,0.0007184066417572042,0.03606230295925921,0.8135156896749848,1,0.7910152216307884,0.5197115401573168
+186,21,0.5548154395079219,1.95,1.3540067923388417,0.0007182785604165078,0.036110424915476405,0.8131247636127683,1,0.826044670213866,0.5813252380745847
+186,22,0.5761600663369822,1.95,1.384188608987583,0.0007025573818276868,0.036781645571109196,0.8176630112886243,1,0.8734909575222944,0.6225456110935482
+186,23,0.6168508702547206,1.95,1.367272787223428,0.0007202209178145657,0.036511942523720406,0.8151327870071711,1,0.9090179494025763,0.6774789683123001
+186,24,0.598733577773358,1.95,1.3662057814103132,0.0007230859039898858,0.036672593000818404,0.8149728084542256,1,0.93268431489061,0.6855328393903798
+186,25,0.6349412795458684,2.0,1.3646865070434888,0.0007243144101124001,0.03665508882821348,0.8257980704486,2,0.9596776613212931,0.7035673833911705
+186,26,0.6702984788224771,2.0,1.3781232644603245,0.0006991020516976182,0.03658096155931795,0.8277153791257746,2,0.9886234678880763,0.7494969722241551
+186,27,0.6817349517177493,2.0,1.3809389458401862,0.0006990128651095456,0.03640255923446886,0.828116506881106,2,1.0,0.7724498390591643
+186,28,0.6157089877613515,2.0,1.3830097244378072,0.0006991446099616301,0.03655077098301802,0.828411097803709,2,1.0,0.7190299592045049
+186,29,0.6102084389485813,1.95,1.3828345534160018,0.0006996778027025854,0.03668008966327869,0.8174601886426871,2,1.0,0.7006947964952709
+186,30,0.5987259658623778,2.0,1.3824048979215773,0.0007001624064229497,0.03657647976612449,0.8283253964310746,2,1.0,0.6624198862079258
+186,31,0.6876370416705869,2.0,1.3820493078405711,0.0007005696950240079,0.03648503280640214,0.8282749406142339,2,1.0,0.6921234722352898
+186,32,0.6993555597653563,2.0,1.3815656040411313,0.0006993535091341131,0.03664034421628214,0.8282057837269171,1,1.0,0.7311851992178545
+186,33,0.6875318602254124,2.0,1.362626953034519,0.0007291904522490886,0.03638095345296732,0.8255029979749681,1,1.0,0.7917728674180408
+186,34,0.6859741198570952,2.0,1.3611334184598594,0.0007325050014306532,0.03642952608599949,0.8252887088400265,1,1.0,0.8199137328569838
+186,35,0.6459500136370341,2.0,1.2764226325082684,0.0007518089055662401,0.03547947139304942,0.812741981649431,1,1.0,0.7865000454567803
+186,36,0.6589431962822526,1.95,1.3634295604588753,0.000727891114568906,0.036626726304984716,0.8145552617728574,1,1.0,0.7964773209408419
+186,37,0.6626363814883046,2.0,1.3610914808005,0.0007301624651812929,0.03657108317216467,0.8252819863343058,1,1.0,0.8087879382943486
+186,38,0.6463648553540713,2.0,1.2776585280879658,0.0007757249075960179,0.03584848028277087,0.8129372768662099,0,1.0,0.7878828511802377
+186,39,0.6367118906149777,2.0,1.3342838267528887,0.0006611771283669153,0.03467945033554212,0.821362536255897,0,0.9986305576182724,0.7908655585588956
+186,40,0.6610698226027987,2.0,1.3300321042972862,0.0006579006322359445,0.03455076044765394,0.8207368807873633,0,1.0,0.8035660753426623
+186,41,0.6461325200568155,2.0,1.365837086396443,0.0006913966371623979,0.036231434801719295,0.8259540617947695,0,1.0,0.8204417335227183
+186,42,0.6862264125097179,2.0,1.3686023187904415,0.0006906101133015654,0.03600605520372661,0.8263509909244292,0,1.0,0.8207547083657263
+186,43,0.6508114131150531,2.0,1.3655715879197134,0.0006892268221359069,0.035840932936928485,0.8259152680893087,0,1.0,0.8360380437168436
+186,44,0.6610059681752507,1.95,1.3675121395631478,0.0006885930576989417,0.03613581773809701,0.8151593217677795,0,1.0,0.8700198939175021
+186,45,0.6998573052727681,2.0,1.3680100759821177,0.0006878592649823233,0.036095975222456,0.8262652008254181,0,1.0,0.8661910175758937
+186,46,0.703152751536688,2.0,1.3655402940796928,0.0006864709536078363,0.03637897926355776,0.8259099761480027,0,1.0,0.8771758384556265
+186,47,0.7085236914747188,2.0,1.362307712684423,0.0006845451427586561,0.03595248955404655,0.8254441421626184,0,1.0,0.8617456382490628
+186,48,0.7014875617339296,2.0,1.3666167139469343,0.0006907270745436121,0.03597437466233756,0.8260659154484445,0,1.0,0.8382918724464318
+186,49,0.6943152016087619,2.0,1.369491453891721,0.0006965946618988201,0.03601655262979266,0.8264802568762805,0,1.0,0.847717338695873
+187,0,0.09811912152735011,2.0,1.3529519811400887,0.0006812689326381293,0.03521941714645186,0.8240910542415427,0,0.09318910528343873,0.20281159804658208
+187,1,0.1663348325323592,1.95,1.3548166848920349,0.0006809498648032391,0.035677051521774986,0.8132364589952998,0,0.16292859793770734,0.20387797785758752
+187,2,0.2095994057912855,1.95,1.357711100780346,0.000686239808095385,0.0361439719279648,0.8136772768059432,0,0.2563925957320702,0.190141224994858
+187,3,0.20137693868822712,1.95,1.3608599012729758,0.0006832981037102775,0.036183247596586685,0.81415329399336,0,0.29772925873699324,0.20761745064476614
+187,4,0.2149608609575009,2.0,1.322347405713752,0.0006726397125549067,0.035416434942947154,0.8196078179528089,0,0.3172898815778991,0.22681636108780417
+187,5,0.28110330852029175,2.0,1.3255236390451037,0.0006722163013077631,0.0350938515380176,0.8200768251447196,0,0.4152986667430309,0.21661280607693137
+187,6,0.2794547503470322,2.0,1.308811742231352,0.000737891439224289,0.0360675564530039,0.8176173556280077,0,0.4631149168883032,0.24736261197236967
+187,7,0.34799858948964363,2.0,1.3083885554629167,0.0007341275582525466,0.035869223368531766,0.817553119028446,0,0.5799136011141571,0.22011049681326922
+187,8,0.381951535684197,2.0,1.3074291802741538,0.0007350415831021533,0.035518338897549004,0.8174102478490722,0,0.6844307029310001,0.1939308483726566
+187,9,0.4162822883564303,2.0,0.6104969687454166,0.0003215648865196291,0.019785784930769167,0.6902183064192593,0,0.7982355902996885,0.1566268407885163
+187,10,0.44920235056939367,2.0,0.6055022347601705,0.0003153890516145681,0.019474186657713725,0.6891466879935754,0,0.8895074906717564,0.14466451433563687
+187,11,0.44388840389111917,2.0,1.126778292569448,0.0008043819639009214,0.03365997159187535,0.788913229587215,0,0.9320826475702804,0.17018448287669008
+187,12,0.4715398230617367,2.0,1.125789490777238,0.0008050395029848972,0.03314595100657874,0.788748737352332,0,0.9817216539707916,0.19617053824473346
+187,13,0.4982433343638503,2.0,1.1246469180271803,0.0008060211445431339,0.03364450442545558,0.7885586216564925,0,1.0,0.19414444787950114
+187,14,0.4545732518328932,2.0,1.1244901827216753,0.0007976775121231131,0.033749099295571273,0.7885297047841963,1,1.0,0.18191083944297726
+187,15,0.5195081501424589,1.95,1.3262293315871658,0.000774073793776607,0.03609423173418337,0.8088843915522017,1,1.0,0.2316938338081963
+187,16,0.5412975524923848,1.95,1.3656930964979581,0.0006927206867203705,0.03612349625487023,0.8148863263155399,1,1.0,0.30432517497461586
+187,17,0.5137511762882756,1.95,1.3650662594951466,0.0006938933161098785,0.03603432126349303,0.8147921053333678,1,1.0,0.3125039209609188
+187,18,0.5615394073193507,1.9,1.3649051823757106,0.0006955947263139945,0.03598208839154206,0.8031811269744286,1,1.0,0.3717980243978354
+187,19,0.5334581919406766,1.9,1.3636674476393522,0.0006967956352561416,0.03633305620064262,0.8029857709172433,1,1.0,0.3781939731355884
+187,20,0.5827340440664786,1.8499999999999999,1.3633499835565306,0.000698641203290586,0.03641184692218401,0.7907988265409829,1,1.0,0.44244681355492843
+187,21,0.5831724203253563,1.8499999999999999,1.3842369140240667,0.0007013460127258174,0.03663352789477517,0.7942341762886399,1,1.0,0.47724140108452084
+187,22,0.595088311176298,1.9,1.3841089676059999,0.0007005844226081203,0.03655474860113579,0.8062007788981133,1,1.0,0.5169610372543266
+187,23,0.5759621058909744,1.95,1.3839041089873252,0.0006998536546207286,0.03657786342024162,0.817619784944426,1,1.0,0.519873686303248
+187,24,0.5780819588624374,2.0,1.3836962187506425,0.0007002171046037835,0.036617954331372854,0.828508963093055,1,1.0,0.5269398628747911
+187,25,0.6104385651547297,2.0,1.3833954194543225,0.0007004948983693902,0.0366040482871227,0.8284662997004192,1,1.0,0.5681285505157657
+187,26,0.6179739073221537,2.0,1.383071161627225,0.0006996541602271597,0.03670381745458016,0.8284199755428238,1,1.0,0.5932463577405123
+187,27,0.582213392027024,2.0,1.3826278731940689,0.0006988413691853653,0.03648598559006613,0.8283567260815919,1,1.0,0.5740446400900799
+187,28,0.6380382386977383,1.95,1.3840050710730425,0.0006990822237633787,0.03653700166391469,0.8176346096395433,1,1.0,0.6267941289924609
+187,29,0.5859756691913554,1.95,1.3600024707566685,0.0007310113090700853,0.03656513919013707,0.8140379692972047,1,1.0,0.5865855639711843
+187,30,0.5793959894124077,1.9,1.3838056097253753,0.000699709606173003,0.03664066088673913,0.8061531041161661,1,1.0,0.5646532980413588
+187,31,0.6402657346592721,1.95,1.3848418075369344,0.0006997734558829234,0.036464632177608876,0.8177595468226595,1,1.0,0.6342191155309067
+187,32,0.6405743006591864,1.95,1.3642904151905961,0.0007267731888483335,0.03626985345410767,0.814684925408985,1,1.0,0.6685810021972879
+187,33,0.601114654282502,2.0,1.3665332627353695,0.0007220654772778855,0.03654650838930818,0.8260629305403928,1,1.0,0.6370488476083399
+187,34,0.6448828464798047,1.95,1.3712665265371995,0.0007176118318669195,0.03644204412496556,0.8157330672527245,1,1.0,0.6829428215993487
+187,35,0.6521498616478608,1.95,1.3724321591631703,0.0007144142497369771,0.03652144954681491,0.8159072515120535,1,1.0,0.7071662054928691
+187,36,0.6604705347273939,2.0,1.3733115569853607,0.0007111743094693475,0.03667954087887741,0.8270315885224473,1,1.0,0.7349017824246463
+187,37,0.693059406203659,2.0,1.3739552829892043,0.0007080134540329182,0.036501242317520534,0.8271227504174378,1,1.0,0.8101980206788633
+187,38,0.7082435387320845,2.0,1.2756170815946724,0.0007434394376882325,0.035466047320787356,0.8126168031558333,1,1.0,0.8608117957736148
+187,39,0.7090190128727754,2.0,1.2887803227023769,0.0007325528954784231,0.035870711274243,0.8146096483688158,1,1.0,0.8967300429092511
+187,40,0.7244091908093813,2.0,1.2823776042489887,0.0007295105219121053,0.03576211846322333,0.8136398338904122,1,1.0,0.9480306360312707
+187,41,0.7264534107382747,2.0,1.275560580653103,0.0007260387352487029,0.035290382943814924,0.8126029000836678,1,1.0,0.9548447024609155
+187,42,0.7382015781169879,2.0,1.268465736055562,0.0007220314814714248,0.034467907073069216,0.8115188783935793,1,1.0,0.9940052603899598
+187,43,0.6982975624961132,2.0,1.26097818081474,0.000717708716449204,0.03420101997315622,0.8103696111991106,1,1.0,0.960991874987044
+187,44,0.7389799610864606,1.95,1.264933741180227,0.0007453874698063053,0.03521987748395585,0.799219686340139,1,1.0,0.9965998702882017
+187,45,0.7007775859625127,1.95,1.2544134888407195,0.0007412989384106548,0.035218387662518974,0.7975248912798933,1,1.0,0.9692586198750424
+187,46,0.7355981153456581,1.9,1.2571423982661258,0.0007689184464456139,0.03506279644472263,0.7856127849923557,1,1.0,0.9853270511521935
+187,47,0.74,1.95,1.2465545595981213,0.0007655523740678844,0.03561122049301776,0.7962607413627303,1,1.0,1.0
+187,48,0.74,2.0,1.2424353971843705,0.0007608929770513759,0.03509768033651781,0.807517142030476,1,1.0,1.0
+187,49,0.7189744284277584,2.0,1.2383035780703877,0.0007560433910825966,0.034250693885858684,0.8068725925909053,1,1.0,0.9965814280925277
+188,0,0.1027761614572398,1.95,1.3562881138094456,0.0006855852232580011,0.03534915629696976,0.8134612476804127,0,0.10652747527239763,0.2005505711609359
+188,1,0.18156054947440892,1.9,1.357029305752994,0.0006844145038077794,0.03577255422705231,0.8019295736885341,0,0.20441948636265672,0.16597584976448734
+188,2,0.21717558621221156,1.9,1.3558354076084906,0.0006803525411385849,0.03576144582345216,0.8017385769722096,0,0.3063472448476623,0.1487889609104888
+188,3,0.1755160381883226,1.9,1.3594188779552165,0.0006825853045203086,0.036054274198079383,0.8023082757475962,0,0.31331212508542916,0.1673039605138364
+188,4,0.18822831162802087,1.8499999999999999,1.3624224850690538,0.0006843580472797416,0.03601712769718257,0.7906406149898739,0,0.3388952686567854,0.17556734721768907
+188,5,0.2644943497461964,1.9,1.3642601853776695,0.0006859264354378833,0.03610427195467388,0.8030760871695521,0,0.4270473554741385,0.1455846918551365
+188,6,0.21730555161027068,1.95,1.243691994731497,0.0006789824567518372,0.033838961781968456,0.7957678173472461,0,0.43487531621946557,0.14451808374161484
+188,7,0.2265656523457035,1.9,1.2641802975723344,0.0006734216405653238,0.03411654579391174,0.7867637221642756,0,0.45986069779208366,0.14207124409623345
+188,8,0.29573779662359556,1.95,1.276602501665649,0.0006669067865976522,0.03463561790663607,0.8010605954321128,0,0.5209202517778002,0.1578989863749182
+188,9,0.31808798872588484,1.95,1.2768485902720754,0.0006667412830568334,0.034708421044840565,0.8010997570842455,0,0.5886661694159186,0.1420717365317246
+188,10,0.36840823868878064,1.95,1.274106834493527,0.0006651403770854709,0.03448261167371975,0.8006620169416069,0,0.6985932027720592,0.12990319193319005
+188,11,0.40735655430640394,2.0,0.5341237396335851,0.00023604812355539808,0.016544176763709912,0.6736182474992963,0,0.8050431367884089,0.11779766530346797
+188,12,0.424995042199296,2.0,1.0728949582287353,0.0006985392718090568,0.031393589799399504,0.7797640730955923,0,0.8716367826453296,0.12113443047054724
+188,13,0.42690668998516196,2.0,1.0716881796643254,0.0006949088159369358,0.03173348445484109,0.7795555127805226,0,0.9114129939792501,0.14113830797820612
+188,14,0.43156940756335593,2.0,1.0702341759512506,0.0006951089016003231,0.031815118098904784,0.7793056113727015,0,0.9185510515411521,0.14716328982298346
+188,15,0.4657211923047966,2.0,1.068707489674351,0.0006950895413741593,0.03161851507263381,0.7790429204542522,0,0.9766466387124885,0.18354178939933713
+188,16,0.4540055635366321,2.0,1.0669360859712922,0.000695167584615043,0.030989888447555257,0.7787378759700511,0,0.9978285931527258,0.18291375425180573
+188,17,0.4954636324794767,2.0,1.0801539322228826,0.0007106488097019647,0.03132452455038792,0.7810122820318103,0,1.0,0.18487877493158908
+188,18,0.49541831663591496,2.0,1.0789220869182068,0.0007060325355805123,0.031516682386354924,0.7807999438562464,0,1.0,0.18472772211971658
+188,19,0.4973960642322728,2.0,1.0775796826490656,0.0007015869475820078,0.03187264652446235,0.7805685800060964,0,1.0,0.191320214107576
+188,20,0.49712764959773087,2.0,1.076174848232649,0.0006974004751263021,0.03190941074030186,0.7803264280784494,0,1.0,0.190425498659103
+188,21,0.4807492348611029,2.0,1.0747534547751774,0.000693616234528991,0.031547428641974226,0.7800813814578379,0,1.0,0.20249744953700943
+188,22,0.5073183078358451,2.0,1.358308289266916,0.0006889807975635656,0.03616026915370333,0.824868412093651,0,1.0,0.19106102611948345
+188,23,0.4975461518420109,2.0,1.069280377635072,0.0006955766356266414,0.03093952283663594,0.7791416864248474,0,1.0,0.1918205061400363
+188,24,0.4834663635531963,2.0,1.0678495823451253,0.0006915947888970314,0.031178499381362263,0.7788940054653571,0,1.0,0.21155454517732075
+188,25,0.49475855204164054,2.0,1.3594463160091228,0.0006906054954950827,0.03593041507121741,0.8250332203091773,0,1.0,0.2491951734721351
+188,26,0.4770556077471852,2.0,1.3586186401841158,0.000691100607007934,0.035966886437851446,0.8249138533599567,0,1.0,0.2568520258239506
+188,27,0.4803617319818214,2.0,1.3590757356623153,0.0006934777626931167,0.036318739337328924,0.8249805487717313,0,1.0,0.26787243993940457
+188,28,0.5080861843525228,2.0,1.3592444633050418,0.0006955899702620047,0.03626986628535056,0.8250055195081356,0,1.0,0.2936206145084095
+188,29,0.4928226442748905,2.0,1.358494317558232,0.0006963254776418213,0.03592602118712449,0.8248974059782203,0,0.9974592246981484,0.3127965146521038
+188,30,0.5141168150728055,2.0,1.3584955292021268,0.0006984137274336556,0.035837359421004064,0.8248981842493303,0,1.0,0.3137227169093515
+188,31,0.5227096326650713,2.0,1.3577729086334196,0.0006991451827558488,0.03596394719762387,0.8247939949862159,0,1.0,0.34236544221690407
+188,32,0.5459952101122325,2.0,1.3570294654459951,0.000699851302176085,0.036098496970700784,0.8246867390946218,0,1.0,0.31998403370744144
+188,33,0.5218592272299487,2.0,1.3562174824442779,0.0006979879627423172,0.0362882440529153,0.8245687737584733,0,1.0,0.3395307574331621
+188,34,0.5537054141797814,1.95,1.355432842789823,0.0006986562012333012,0.03624004916750288,0.8133354012394658,0,1.0,0.3456847139326044
+188,35,0.5307584688998707,1.95,1.3538476257203231,0.0006967652298687572,0.03580275446964783,0.813094037815928,0,1.0,0.369194896332902
+188,36,0.508564782897266,1.9,1.3529799195862915,0.0006973896388340018,0.03592795824232268,0.8012897206082709,0,1.0,0.36188260965755353
+188,37,0.5280409856184417,1.8499999999999999,1.3523688439577017,0.0007001474647641201,0.03620822375534559,0.7889768504174399,0,1.0,0.36013661872813896
+188,38,0.5136789988236187,1.9,1.350707310548016,0.000700961489540765,0.03583576362034941,0.8009287567875052,0,1.0,0.37892999607872885
+188,39,0.565276201775799,1.95,1.3514596652028081,0.0007035994460093324,0.03576251534505758,0.8127329433463819,0,1.0,0.3842540059193297
+188,40,0.5182350410757022,1.95,1.3513616834220286,0.0007012174041147554,0.035814295543283504,0.8127173051179062,0,1.0,0.394116803585674
+188,41,0.5427586562225319,1.9,1.351184978031585,0.0007035493193259171,0.03575198808213176,0.8010057310216459,0,1.0,0.4091955207417731
+188,42,0.5220002619361547,1.9,1.2955346701359414,0.0006550725344355716,0.03464210026295828,0.7919705936006993,0,0.9855720617302963,0.42590479081345384
+188,43,0.5520713338396654,1.8499999999999999,1.2934605047475676,0.0006557080086745765,0.03453577150454059,0.7789868427109642,0,1.0,0.4402377794655516
+188,44,0.530886020404895,1.8499999999999999,1.2978717419392292,0.0006622541539973513,0.03436086520120171,0.7797476230371754,0,1.0,0.43628673468298307
+188,45,0.5288679377032256,1.7999999999999998,1.2958698422332304,0.0006629415175848636,0.034508909473698925,0.7662391468102142,0,0.9984517714755865,0.4316240970433033
+188,46,0.574160594161057,1.8499999999999999,1.291825642958327,0.0006628043406605227,0.03421781043521117,0.7787076918810797,0,1.0,0.41386864720352334
+188,47,0.5708270526352683,1.8499999999999999,1.291783906011609,0.000661010273005863,0.034445929035721,0.7786998812726096,0,1.0,0.40275684211756085
+188,48,0.5239955153391215,1.9,1.2895417846574047,0.0006585920196746729,0.034106709802184706,0.7909826827853312,0,1.0,0.41331838446373814
+188,49,0.5499448577129539,1.8499999999999999,1.2896385407090645,0.0006598577734612575,0.0343069688897714,0.7783295595165363,0,1.0,0.4331495257098461
+189,0,0.016420419335681863,1.8499999999999999,1.3669802789824161,0.0007053365840064623,0.036076936364013434,0.7914009848629355,1,0.1418551596996905,0.1655945181860189
+189,1,0.02978657821765396,1.7999999999999998,1.3812755415848856,0.0006976391714605422,0.03659522462262275,0.7811996054111836,1,0.1872991112953971,0.14955644566498372
+189,2,0.17822632392437096,1.8499999999999999,1.381614102177089,0.0006984007846377644,0.03656131161645534,0.793804245045681,1,0.21731549896077032,0.17100041446687603
+189,3,0.22482433100918514,1.8499999999999999,1.3761364106829457,0.0006953141627621825,0.036462518720411785,0.7929052049246698,1,0.2608415308421961,0.23495906224102237
+189,4,0.2312314759635838,1.8499999999999999,1.3859176368917456,0.0007000546004807124,0.036775361574556284,0.7945082930081526,1,0.28479872746134943,0.2577066165968133
+189,5,0.20406473847301076,1.9,1.3858203872393915,0.0007000682236122302,0.03654407398855951,0.8064678717046588,1,0.31941263487927707,0.2209989484043331
+189,6,0.21144008893557692,1.8499999999999999,1.385853036584848,0.0007002020929604777,0.03653024547518606,0.7944977940095941,1,0.36657369440792376,0.18270203724135797
+189,7,0.2843618785254376,1.9,1.3729960697358794,0.0006951963960136435,0.03627983941565038,0.8044568821716425,2,0.40557517240757684,0.2404393652080229
+189,8,0.2825697476183463,1.9,1.3858311850052232,0.0007000616875637537,0.03653730208111394,0.8064695549465238,2,0.4312830014065572,0.26685515685241157
+189,9,0.37404039751943013,1.95,1.385762810468475,0.000699909743511741,0.03661022481794972,0.8178968032800432,2,0.5089390055594923,0.3015493176521106
+189,10,0.3760714931993163,1.95,1.3855608231020888,0.0006998787820159686,0.03674962374642895,0.8178667077981103,2,0.5507334665485576,0.35259368859964424
+189,11,0.3250001688934282,2.0,1.385653995915813,0.0007001947063145753,0.036647199597538975,0.82878694248525,2,0.5769688651859686,0.3140420760634691
+189,12,0.3244203000097667,1.95,1.385945046035238,0.0007001479003774509,0.036428030240809074,0.8179240151033333,2,0.6020884768796957,0.2786163641929613
+189,13,0.3188499125292271,2.0,1.3848222662863277,0.0007012402683682947,0.03676027213966694,0.828669185375114,2,0.6193175928399363,0.23707625131084203
+189,14,0.3642025831634558,2.0,1.3845720129070893,0.000701380037261417,0.03675367844522144,0.8286336920314665,2,0.6435513351990867,0.255940163612737
+189,15,0.3315397231499513,2.0,1.384423987390576,0.0007019149880413823,0.03647188555461335,0.8286128233415518,2,0.6724878330920431,0.20848196637711353
+189,16,0.44731996169048965,1.95,1.384101991465641,0.0007021610795336415,0.03669804946666024,0.817649978932533,2,0.735961059850262,0.24311845916794952
+189,17,0.36330032401773826,1.95,1.3841500760227738,0.0007013651607007418,0.03653069555495883,0.8176569108244683,2,0.7622302789036718,0.1946940415208984
+189,18,0.4762627556730609,1.9,1.3861769416447194,0.0007000923685636165,0.03658772248153276,0.8065235232591197,2,0.823849792820693,0.22240946181594565
+189,19,0.5082175919017686,1.9,1.3150732168026598,0.0007652691483051967,0.035913863441401475,0.7952071644605365,2,0.8881784893554607,0.24315398719861442
+189,20,0.5055830060880101,1.9,1.3138196507740914,0.0007750330411180978,0.03606391320321093,0.7950061247510495,2,0.9178602338067399,0.2947963752177136
+189,21,0.5690722066945303,1.95,1.3106152676871328,0.0007755415690746072,0.03639220005172336,0.8064594164025738,2,0.9753435597982562,0.32978260925075953
+189,22,0.5375978978673684,1.95,1.310716749630969,0.0007834607120758308,0.036558197270709615,0.8064777273937691,2,1.0,0.3586596595578946
+189,23,0.5969007150418391,1.9,1.3168738470096086,0.0007724869060716748,0.03652154061246572,0.79550259449012,2,1.0,0.38966905013946346
+189,24,0.5079538720330545,1.9,1.313311424805412,0.000782171139546516,0.03639052105246632,0.7949256133416024,2,1.0,0.3598462401101817
+189,25,0.5467313493919405,1.8499999999999999,1.3252622544439085,0.0007704814012265534,0.03619537880442386,0.7844522460171864,2,1.0,0.3891044979731348
+189,26,0.5068642878921668,1.8499999999999999,1.328869407432368,0.0007623435544388184,0.036567840804363795,0.7850587961959329,2,1.0,0.3562142929738893
+189,27,0.5699277469305806,1.7999999999999998,1.3390283224841184,0.0007527334860132963,0.03661691252114068,0.7739119862533017,2,1.0,0.3997591564352685
+189,28,0.6095194546436181,1.7999999999999998,1.3349273235344659,0.0007552402916361097,0.036224727804007685,0.7731944986154485,2,1.0,0.43173151547872696
+189,29,0.5120026052210646,1.7999999999999998,1.3727132686680512,0.0006911438974361097,0.036279794805448476,0.779730329271909,2,1.0,0.37334201740354855
+189,30,0.5729481666756915,1.7499999999999998,1.3272667054462306,0.0007757168502472555,0.036722243368245935,0.7583799640764038,2,1.0,0.40982722225230483
+189,31,0.557185358936472,1.7499999999999998,1.37005632924499,0.0006899916353258367,0.036080447301376405,0.7661030957903238,1,1.0,0.42395119645490664
+189,32,0.5287306303421119,1.7999999999999998,1.3842289458748196,0.0007001726606647749,0.036601748645491504,0.7817048666785118,1,1.0,0.3957687678070396
+189,33,0.5143699282117102,1.7499999999999998,1.3568948784965744,0.0007041644051467247,0.03615167659709233,0.7637415668968067,1,1.0,0.3478997607057007
+189,34,0.5287852795080359,1.7999999999999998,1.3632823698109566,0.0007021448716520999,0.03628376108985344,0.7781100899140896,1,1.0,0.3626175983601193
+189,35,0.529598096388622,1.8499999999999999,1.3637459987831826,0.0007049445666870693,0.03634292498374934,0.7908664193070606,1,1.0,0.36532698796207336
+189,36,0.5773714013068513,1.9,1.3639117575404547,0.0007072376467708707,0.03626623187584338,0.8030277211250182,1,1.0,0.4245713376895041
+189,37,0.5505417779085071,1.9,1.3823383393226845,0.000700404662379956,0.03651378377108086,0.8059239277878044,1,1.0,0.4351392596950235
+189,38,0.6026785700864065,1.8499999999999999,1.3821107857360255,0.0007010682553052956,0.03669473560179027,0.7938864028451122,1,1.0,0.5089285669546879
+189,39,0.5561303599964617,1.8499999999999999,1.3815049166273776,0.0007016269213890541,0.03669217637419235,0.7937874292514817,1,1.0,0.48710119998820534
+189,40,0.5499824224396124,1.7999999999999998,1.3832309365404023,0.0007011685988760678,0.03649599954776972,0.7815348562128354,1,1.0,0.46660807479870803
+189,41,0.537489721456725,1.8499999999999999,1.384401941853263,0.0007008499535176753,0.03664335931810678,0.7942609827357664,1,1.0,0.42496573818908323
+189,42,0.5931175128284385,1.9,1.3852601567775498,0.0007006002424836942,0.03677209125322252,0.8063805834826248,1,1.0,0.4770583760947949
+189,43,0.6111273382388279,1.9,1.3848637443575793,0.0007007465376533115,0.03670433103039148,0.8063187294160259,1,1.0,0.5370911274627597
+189,44,0.558881994264848,1.95,1.3842865076489013,0.0007009132332940757,0.03670923610706522,0.8176771163438907,1,1.0,0.49627331421615983
+189,45,0.6040871090381091,1.9,1.3850103688698627,0.0007004982454103243,0.03674665690293298,0.8063415490229329,1,1.0,0.5469570301270302
+189,46,0.6070540105979563,1.9,1.385038838035363,0.0006999943700225094,0.03673802500250582,0.8063458372201017,1,1.0,0.5568467019931872
+189,47,0.6349876753613267,1.95,1.3848832681294638,0.0006995281374356183,0.03659787791681067,0.8177656524493807,1,1.0,0.6166255845377556
+189,48,0.6081220764148257,1.95,1.3732337899533913,0.000709744094997795,0.03665974466171398,0.816026225824564,1,1.0,0.6270735880494192
+189,49,0.61936593910874,1.9,1.3720690341164885,0.0007106226898576942,0.03639084838552298,0.8043158687315239,1,1.0,0.6645531303624667
+190,0,0.14057014721372782,1.95,1.3543569472941226,0.0006828504790538361,0.0353377399567677,0.8131672001577719,0,0.13718745243263492,0.21898388746891287
+190,1,0.1891097407307986,1.9,1.3573339449281945,0.000683010732705658,0.03578031298954342,0.8019775118131349,0,0.22080230991380195,0.2026293892175926
+190,2,0.22399921042863016,1.9,1.3335528442936835,0.0006989335069502618,0.035867110103181866,0.7981788379713811,0,0.29974347757026076,0.21367273133508616
+190,3,0.24615104291401854,1.9,1.3322346525952802,0.0006984718289879318,0.03605498387400004,0.7979662589610141,0,0.3554993123436647,0.21317105992184213
+190,4,0.267665424521783,1.9,1.3307253498020082,0.0006979119023821867,0.035740164161025,0.7977226449063213,0,0.42233915344904943,0.19576587714054397
+190,5,0.3084613863242986,1.9,1.290937498797035,0.0007425407561488376,0.03543433806821161,0.7912410756348559,0,0.5177100359235108,0.20459123984964755
+190,6,0.33026927246372756,1.9,1.2805324303854266,0.0007453874100679924,0.03559658062841321,0.7895181182045099,0,0.5727206219092785,0.20393674566672051
+190,7,0.3758921135076762,1.9,1.2812454248315577,0.000755293356316874,0.035373157735878555,0.7896398695827157,0,0.6701967750654315,0.19271134493834535
+190,8,0.4130691110945155,2.0,0.47106350575126255,0.0001760101997399611,0.014614023123552856,0.6595782950448504,0,0.7779609732438468,0.17294907265658907
+190,9,0.44282405435297195,2.0,0.488398488954954,0.00018829813100611486,0.015128371916567462,0.6634652543069705,0,0.8753808339668789,0.1422390692207346
+190,10,0.4356778510518044,2.0,1.062685546467486,0.0006925934103641548,0.030871151980531607,0.7780037290856815,0,0.9022568193500742,0.18258374437258235
+190,11,0.45066502262123037,2.0,1.0611629065356918,0.0006927609241883583,0.03083424948389033,0.777740694561074,0,0.9334304629530386,0.1909761248000496
+190,12,0.4659707024270574,2.0,1.0595058936590862,0.0006926759127248447,0.031145143887483816,0.7774541019048391,0,0.9688624145748254,0.1947524553237574
+190,13,0.4950373946394017,2.0,1.0577046316155072,0.0006925395829416737,0.031556970839960966,0.7771422459785735,0,1.0,0.18345798213133901
+190,14,0.4944067985782871,2.0,1.0564281877669937,0.0006889186444949476,0.031546289856941925,0.7769198425626528,0,1.0,0.18135599526095716
+190,15,0.48083466313989887,2.0,1.0550316502415826,0.00068527923799077,0.03124973890600339,0.7766764449917977,0,1.0,0.20278221046632952
+190,16,0.5049097388363915,2.0,1.3554938214464687,0.0006945101550897897,0.0362128110175562,0.8244630612676663,0,1.0,0.18303246278797142
+190,17,0.4814319757558407,2.0,1.0497613399697425,0.0006855070907869866,0.03053346962497681,0.7757610553938596,0,1.0,0.20477325251946885
+190,18,0.4912152851218942,1.95,1.3560193144423027,0.0006954597408666492,0.0357362489860007,0.8134234533231184,0,1.0,0.23738428373964726
+190,19,0.5156020413209954,2.0,1.355062732975558,0.0006972148927941811,0.03588798264970725,0.8244014469100477,0,1.0,0.2186734710699845
+190,20,0.46466616482634937,2.0,1.3548657558511452,0.0006955816847620182,0.0360083810933245,0.8243724570309129,0,0.9981060113706255,0.21807920092699726
+190,21,0.5081483199451239,1.95,1.3543075824504702,0.0006968165568721768,0.03630066248558737,0.8131639439468252,0,1.0,0.22716106648374612
+190,22,0.4919257577503288,1.95,1.360747364786593,0.0006957635704612235,0.03605624742664289,0.8141400382331458,0,1.0,0.23975252583442924
+190,23,0.47871638598047805,2.0,1.3604691013160692,0.0006973716407225157,0.035906609812302544,0.8251827658977764,0,1.0,0.2623879532682601
+190,24,0.5253138506977173,2.0,1.360511316580738,0.0006984040099834841,0.03589249398487625,0.8251891534694132,0,1.0,0.25104616899239085
+190,25,0.5032355984411991,2.0,1.3597271947133995,0.0006968693078295468,0.035945874569325,0.8250755704729095,0,1.0,0.27745199480399724
+190,26,0.50156038818485,1.95,1.35939098621372,0.0006984188286259193,0.036015423167867204,0.8139355131956116,0,1.0,0.2718679606161669
+190,27,0.5045151518490626,2.0,1.3583312693970346,0.0006998519871767937,0.03626679002190053,0.8248748726365092,0,1.0,0.28171717283020864
+190,28,0.5244351548394509,2.0,1.3584129944743766,0.0007010453172024874,0.03632614091141635,0.8248870227763012,0,1.0,0.2481171827981697
+190,29,0.4990889444279107,2.0,1.3576967105747757,0.0006993965753076409,0.03600004210207545,0.8247830560795351,0,1.0,0.2636298147597022
+190,30,0.5086677151640633,1.95,1.357115760109891,0.0007005616251508491,0.03586832165955299,0.8135913465416292,0,1.0,0.29555905054687753
+190,31,0.5181685612178697,2.0,1.3558205500460285,0.000701650417823289,0.03611750497521497,0.8245124079170013,0,1.0,0.3272285373928989
+190,32,0.5260121214637528,2.0,1.3558113675265864,0.0007024997690046641,0.036083807906448176,0.8245113250681775,0,1.0,0.35337373821250917
+190,33,0.5570203045477738,2.0,1.355111078694046,0.0007033042437186361,0.036322645018691146,0.8244102084771221,0,1.0,0.3567343484925794
+190,34,0.5489618476660807,2.0,1.3543387927340118,0.0007012906613911561,0.03626992105229675,0.8242978026258206,0,1.0,0.3632061588869355
+190,35,0.5470297785401166,2.0,1.3612718131049897,0.0006996841106981986,0.03609629209752524,0.8252991986275446,0,1.0,0.3567659284670552
+190,36,0.5152819195637247,2.0,1.366961012187581,0.0006986415979334668,0.03606434479790609,0.8261176528281604,0,1.0,0.3842730652124155
+190,37,0.5598134461075183,1.95,1.3668246425102346,0.0007001914550993086,0.036194856936075215,0.8150592076345893,0,1.0,0.3993781536917273
+190,38,0.5212906979086471,1.95,1.3711857871716933,0.0006993749301119484,0.03648728775399832,0.8157154479809554,0,1.0,0.40430232636215685
+190,39,0.5273485613791831,1.95,1.2416981256877089,0.0006301159149908857,0.032806683973778145,0.7954276769484186,0,1.0,0.4244952045972767
+190,40,0.5746705702985183,2.0,1.2393104799911705,0.0006295882577627278,0.032814227709628656,0.8069900593312161,0,1.0,0.4155685676617275
+190,41,0.5573443399259146,2.0,1.2399279347806917,0.0006296258453079137,0.032785510915317055,0.8070862257759475,0,1.0,0.45781446641971535
+190,42,0.5649647310329636,2.0,1.25452392332806,0.0006343953515491677,0.033195932194020374,0.8093500839336075,0,1.0,0.48321577010987854
+190,43,0.5909364952087977,2.0,1.2669950928661886,0.0006404387282630112,0.033671661631389606,0.8112688473082085,0,1.0,0.46978831736265886
+190,44,0.5801976379295416,2.0,1.2644461015192148,0.0006388193362388902,0.03384374937059877,0.8108777605233943,0,1.0,0.46732545976513845
+190,45,0.5456352836448543,2.0,1.27907584642952,0.0006425084235450025,0.03396000335008616,0.8131122292757568,0,1.0,0.48545094548284734
+190,46,0.5670836758052248,1.95,1.2767556506995381,0.0006420527963726404,0.033892983762212045,0.8010770795454776,0,1.0,0.4902789193507493
+190,47,0.550251220052299,1.95,1.2852086065256676,0.0006471428693842812,0.033997662379539405,0.8024222665593141,0,1.0,0.5008374001743298
+190,48,0.592482938888091,2.0,1.282997020434447,0.0006468500628847086,0.03419391165422428,0.8137086785743953,0,1.0,0.4749431296269698
+190,49,0.5837568616343368,2.0,1.2829871724580566,0.0006462132007618313,0.033963674157133604,0.8137069926647804,0,1.0,0.4458562054477893
+191,0,0.08154472131897753,2.0,1.3645034851063051,0.0006957373461060407,0.03568414075988338,0.8257635170688847,0,0.18572780437558106,0.19084533189581696
+191,1,0.20495693699415718,1.95,1.3711698288164311,0.0007028093842432195,0.03644110803442634,0.8157140816172223,0,0.25818962654358646,0.20560362125574191
+191,2,0.2483031348458583,1.95,1.3178776230587144,0.0006925462442070726,0.03556106470309946,0.8075646274507738,0,0.34455074923089213,0.20160945051167156
+191,3,0.24378514912631433,1.95,1.3211005426822073,0.0007049920585423757,0.035988059621863716,0.8080688461971091,0,0.38962670363411367,0.2264482255755629
+191,4,0.2600139400581724,2.0,1.3235839262684694,0.0007008671897256737,0.035726484158944485,0.8197989064784033,0,0.42557184411244064,0.23261734137732046
+191,5,0.2856722932099858,2.0,1.2479992258743442,0.0007469002286463085,0.0347439653135309,0.8083761313848807,0,0.47227614627489245,0.2558727823334293
+191,6,0.33434614257828554,2.0,1.2508966231971825,0.0007397962080691238,0.034941082267790795,0.8088223523560795,0,0.5459773207904683,0.2531840475403274
+191,7,0.3677972492031761,2.0,1.2534666160652164,0.0007557324844508897,0.03509366301409571,0.8092243523264865,0,0.6278228515887775,0.2555603618922169
+191,8,0.41444095579597856,2.0,0.6887525200554648,0.0008443809370241334,0.029600784944777365,0.7069136572045824,0,0.7239185700632148,0.24957842590230872
+191,9,0.4558268069840317,2.0,0.6852530148861241,0.0008342426889105239,0.029581391569878483,0.7061838743804382,0,0.8314973771298775,0.24409285377360243
+191,10,0.41855124340118804,2.0,1.370078495772958,0.0006922124898237681,0.036195800767090336,0.826563172372612,0,0.8518972388304951,0.2593078262299666
+191,11,0.45085550583886647,1.95,1.3708104796668952,0.0006938450059020759,0.03621525237291077,0.8156573607043723,0,0.8722942395322336,0.27312603341991
+191,12,0.4535866728815309,1.95,1.3698553782413154,0.0006937555410559356,0.03616709555850492,0.8155136810243506,0,0.8963599820960718,0.31680893347700717
+191,13,0.4979693694171857,2.0,1.3704043099628453,0.0006955654049379866,0.03638138836360182,0.8266108361008444,0,0.9323463944844728,0.3501027054113218
+191,14,0.5507649860131347,2.0,1.3701105500622848,0.0006957968172922409,0.036310419436967264,0.826568795164382,0,1.0,0.3358832867104489
+191,15,0.5411634525782195,2.0,1.3693494275029106,0.0006945149353951717,0.03641563774225886,0.8264592912702894,0,1.0,0.33721150859406485
+191,16,0.5257949005753888,2.0,1.3731996406324325,0.0006946813170119985,0.03629109851900114,0.8270108592114593,0,1.0,0.3526496685846292
+191,17,0.5260861413786293,2.0,1.372504701706493,0.0006947337309463042,0.0362730324833159,0.8269114309490354,0,1.0,0.35362047126209745
+191,18,0.505321722719102,2.0,1.371737435684596,0.0006947824648895876,0.03625229347046126,0.8268015994053253,0,1.0,0.35107240906367354
+191,19,0.5298098499717196,1.95,1.3723609834846697,0.0006967027858554306,0.03633278987718665,0.8158912395841456,0,1.0,0.36603283323906555
+191,20,0.5529571927779647,1.95,1.3712096936186509,0.000696808101863539,0.03639472623974162,0.8157182699606007,0,1.0,0.3431906425932155
+191,21,0.5253338009343879,1.95,1.3704755570771598,0.0006953481820110221,0.036312724909773816,0.8156074484070219,0,1.0,0.35111266978129263
+191,22,0.5512277155751356,1.9,1.3696463085381336,0.0006954627353027871,0.03621086864378623,0.8039294911217242,0,1.0,0.3374257185837851
+191,23,0.503119507317143,1.9,1.3684207701647917,0.0006939324069353751,0.03620377623193362,0.8037357585921696,0,1.0,0.34373169105714363
+191,24,0.5054942114049685,1.8499999999999999,1.369046334405174,0.0006960421710438828,0.0363055766940312,0.7917387901761641,0,0.9952558112830379,0.35797295630584464
+191,25,0.5326915867492715,1.9,1.368947535163199,0.0006979990422238491,0.03628576666888268,0.8038201221913679,0,1.0,0.3756386224975717
+191,26,0.5145896004386195,1.9,1.3685763265889037,0.0006983645314712955,0.03626893639390483,0.8037616937684038,0,1.0,0.3819653347953982
+191,27,0.5175031377254854,1.95,1.3686958389666812,0.0007003840889964035,0.036278086960140794,0.8153411592133832,0,1.0,0.39167712575161784
+191,28,0.5548730212224745,2.0,1.369007673619337,0.0007021390716602109,0.036353272818152496,0.826412457429771,0,1.0,0.3495767374082481
+191,29,0.551430657813771,2.0,1.3688124811470772,0.0007003917273807143,0.036299016875958975,0.8263839529329317,0,1.0,0.3381021927125696
+191,30,0.5394715160267686,2.0,1.3681805630660626,0.000698906286136697,0.036095346798585594,0.826292844305285,0,1.0,0.3315717200892284
+191,31,0.50111942720003,2.0,1.3725300881004605,0.0006983273323396316,0.036297213210848035,0.8269160931229929,0,1.0,0.3370647573334331
+191,32,0.5203074373754832,1.95,1.3724482592752953,0.0006995704318940692,0.03645399978898021,0.8159052106218121,0,1.0,0.33435812458494385
+191,33,0.4963671472638529,2.0,1.3715815753147835,0.0007000405129239578,0.036305568328740316,0.8267807850128377,0,1.0,0.321223824212843
+191,34,0.5392308585269798,1.95,1.3717443847917392,0.0007012585062471932,0.0364300218175164,0.8157999697568833,1,1.0,0.29743619508993263
+191,35,0.5394820731572794,1.95,1.357407837441923,0.0007111169226917392,0.03625986526767627,0.8136388401041565,1,1.0,0.3316069105242645
+191,36,0.5475092320910937,2.0,1.3570823224283917,0.0007075285821887734,0.036098064549934784,0.8246966008001565,1,1.0,0.358364106970312
+191,37,0.5822350902022198,2.0,1.3571082683016593,0.0007040927684132532,0.03600559133418853,0.8246993583871695,1,1.0,0.44078363400739906
+191,38,0.5532088777744381,2.0,1.3843048162126883,0.0006994511970450165,0.03671676766363394,0.8285951989096654,1,1.0,0.4440295925814602
+191,39,0.5804056319591033,1.95,1.3845440069382273,0.0007001996135809551,0.03652587498148803,0.8177152887796476,1,1.0,0.46801877319701096
+191,40,0.5910289233229881,1.95,1.3843123800975317,0.0006995708935207751,0.036659949138671544,0.8176805731800209,1,1.0,0.50342974440996
+191,41,0.6275431123984665,2.0,1.3839758157576545,0.0006990126935258063,0.03640348046545861,0.8285483429201208,1,1.0,0.5918103746615548
+191,42,0.6251794413845472,2.0,1.3835310228083162,0.0006989875580459378,0.03654260286593323,0.8284851410416134,1,1.0,0.6172648046151572
+191,43,0.6532150907917211,2.0,1.3730344510159447,0.0006915540087723004,0.03634298250004353,0.8269863303560799,1,1.0,0.6773836359724035
+191,44,0.6745715693644132,2.0,1.371477161591443,0.0006907652707679301,0.03618511665574474,0.8267631740700062,1,1.0,0.7485718978813772
+191,45,0.6510984152213329,2.0,1.36967001118348,0.0006898475671736953,0.03601286373634326,0.8265039274060768,1,1.0,0.7703280507377763
+191,46,0.6975943439661596,1.95,1.372226471108163,0.0006932771986197879,0.03623988457839357,0.8158700040317232,1,1.0,0.8253144798871983
+191,47,0.6731066054481485,2.0,1.1980637726227519,0.0007832067266357252,0.034023907561464936,0.8005331979020807,1,1.0,0.8436886848271613
+191,48,0.7042093327521461,2.0,1.2233277370873843,0.0007674505089054005,0.034479826210927066,0.8045317765910597,1,1.0,0.8806977758404869
+191,49,0.7147634921177259,2.0,1.2157717763196976,0.0007622749725945486,0.033897282447645935,0.80333915305444,1,1.0,0.9158783070590862
+192,0,0.18543190048562513,2.0,1.36726024530459,0.0007051975860875074,0.03607995800817887,0.8261625157799869,1,0.15129029595460378,0.24971927367927882
+192,1,0.14968255131355962,1.95,1.3670309313498805,0.0007056673279592464,0.03635911039436461,0.8150919517385818,1,0.1875479206705169,0.21554461015117612
+192,2,0.178044910328964,1.9,1.3704849214003312,0.0007045747370233292,0.03636784209974099,0.8040645164588915,1,0.21925405434977857,0.23447762863017524
+192,3,0.19438077787618682,1.9,1.3856428128991807,0.000699758101714381,0.03644214078504545,0.8064400580306649,1,0.24877616311801287,0.2495677087632723
+192,4,0.22928217592273095,1.95,1.385764583692499,0.0006997990427693266,0.03675789912343423,0.817897034410896,1,0.2614760828036647,0.28230580933755023
+192,5,0.27322376517762026,1.95,1.385654978896058,0.0006997490267154026,0.03668669480725422,0.8178806942420167,1,0.30760119032365,0.3339442968272008
+192,6,0.3101229975558228,1.95,1.3855730530448833,0.0006996618017197731,0.036399900481331335,0.8178684649299494,1,0.37248764971887455,0.3704264588942433
+192,7,0.32065429510383964,1.95,1.3854384774225388,0.0006995893497930765,0.036734982349337045,0.8178483961496174,1,0.4076645811189444,0.3919615421875397
+192,8,0.36717269348081805,2.0,1.3829849150917695,0.0007009910527395996,0.03659228254000011,0.8284080961593163,1,0.45357035088672554,0.45248184375375944
+192,9,0.3478476922692739,2.0,1.3826265280988308,0.0007024574497062413,0.03653766526763748,0.8283575631139423,1,0.4835275716212376,0.448122212069263
+192,10,0.39062815964980385,2.0,1.3831820991068218,0.0007016419703388784,0.036680012642864634,0.828436308711138,1,0.5172367436254129,0.47911154066546224
+192,11,0.42952350086771374,2.0,1.383185011435212,0.0007027345632506205,0.03672505619294163,0.8284370332175359,1,0.5540174958239917,0.5263883417937235
+192,12,0.39732938986971,2.0,1.3838806709336073,0.0007019045491741173,0.0363485513700173,0.8285356482664069,1,0.6094822075648746,0.4784550228125338
+192,13,0.4664091028711997,1.95,1.3278797265301459,0.0007123126951965476,0.03609813176178497,0.8091203201544156,1,0.6546668195728461,0.5151412501402043
+192,14,0.48583811570462304,1.95,1.3228917172413934,0.0007109553607077823,0.03529506395672858,0.8083483402935775,1,0.6916266268021593,0.5639582166125311
+192,15,0.4835650380278803,2.0,1.3285866259382595,0.0007055316864010089,0.03537626055709279,0.820538140331731,1,0.7257072194675094,0.5776071674695884
+192,16,0.5260455848845151,2.0,1.3321623887775784,0.0007181013130684964,0.03575849300895551,0.8210677803549625,1,0.7513607179361702,0.6183376590334898
+192,17,0.5554525741174627,2.0,1.1066127903685645,0.0006028201739976526,0.03061575394082077,0.7854675995613649,1,0.7972232083273597,0.6552109692883961
+192,18,0.5481574472008247,2.0,1.1233716487261605,0.0006466865239482452,0.03172944894896174,0.7882927357956323,1,0.8178854441975266,0.6700108984060469
+192,19,0.5421442206837271,2.0,1.3693722301275664,0.0006922932538763467,0.03625881113627696,0.8264619244193252,1,0.8569137989622203,0.63126233699613
+192,20,0.5940119379285183,2.0,1.3723617679663473,0.0006923791862633038,0.03624613483588372,0.8268902979708771,1,0.8822199428846297,0.6704132025822211
+192,21,0.5830894161824537,2.0,1.371824676740804,0.0006913078316159826,0.03612872716862485,0.8268130969452876,1,0.891107163408205,0.6888218360639055
+192,22,0.6268552190810021,2.0,1.3739866492051396,0.0006943221569938986,0.036312258653619645,0.827123320037598,1,0.9172824971723221,0.7331407340402439
+192,23,0.6453825248475248,2.0,1.3732752019843515,0.0006929889328439896,0.036391277193053524,0.827021184831133,1,0.9482288281673337,0.7536366452686375
+192,24,0.6895686904449398,2.0,1.3723176939209938,0.0006917983528439691,0.03635171001388547,0.8268838227116513,1,0.9965099090735551,0.8032157560517259
+192,25,0.6423911520509407,2.0,1.3059751762396146,0.0007925963584602105,0.03618130981877695,0.8172103319336956,1,1.0,0.7746371735031354
+192,26,0.680008156982818,1.95,1.372565652322237,0.0006918694641670621,0.036217959817465915,0.8159205295907257,1,1.0,0.8000271899427266
+192,27,0.689966770207515,1.95,1.2998061366973077,0.0008090046183148685,0.036754461925933804,0.8047772231654223,1,1.0,0.8332225673583831
+192,28,0.7010265752285474,2.0,1.2961184625879654,0.0008108895660719219,0.03653832241337811,0.8157388529438994,1,1.0,0.8700885840951579
+192,29,0.6630916335381478,2.0,1.2942583901789486,0.000810090751417377,0.03657805329442241,0.8154588627275876,1,1.0,0.8436387784604926
+192,30,0.6493225307166144,1.95,1.2916352007080858,0.0008185055269003789,0.03612990489688155,0.8034932830358205,1,1.0,0.7977417690553814
+192,31,0.6659396107155509,2.0,1.3721971435303386,0.0006916376045908714,0.03617376117062422,0.8268665195840311,1,1.0,0.8197987023851695
+192,32,0.6511366023526227,2.0,1.2867740593578407,0.0008297762019935112,0.03672518917215957,0.8143358704298141,1,1.0,0.8037886745087424
+192,33,0.6907021837472069,2.0,1.2838799710754776,0.0008348651160442706,0.03678449447489071,0.8138994481487158,1,1.0,0.8356739458240231
+192,34,0.6978475376641384,2.0,1.2806704597475282,0.0008378820792370343,0.036806178531911836,0.8134137386005383,1,1.0,0.8594917922137946
+192,35,0.7325291149912943,2.0,1.27719078534469,0.0008406006037207877,0.03668821156201965,0.8128858729968262,1,1.0,0.9417637166376474
+192,36,0.7314300464898551,2.0,1.2883287892389463,0.0008242527755677066,0.036205000664387726,0.8145691511947192,1,1.0,0.9714334882995167
+192,37,0.74,2.0,1.2845793267862364,0.0008266687447650537,0.03613147740082208,0.8140028724175213,1,1.0,1.0
+192,38,0.7051594215083233,2.0,1.2805127764417064,0.0008287377174982422,0.036538692653353924,0.8133870295309032,1,1.0,0.9838647383610777
+192,39,0.7031414132610491,1.95,1.2775342892818349,0.0008369186434052515,0.03668722676536003,0.8012631968860549,1,1.0,0.9771380442034968
+192,40,0.74,2.0,1.2719299566031141,0.0008468001434267108,0.036413385112887275,0.8120862628371007,2,1.0,1.0
+192,41,0.73,2.0,1.3836241937587397,0.0006985834041905373,0.03669448805097354,0.8284982651451637,2,1.0,1.0
+192,42,0.73,2.0,1.3838908425723593,0.0006984961891987067,0.036522474066460336,0.828536124880166,2,1.0,1.0
+192,43,0.73,2.0,1.3837571802659046,0.0006984352980056133,0.03647462606399124,0.8285171181400359,2,1.0,1.0
+192,44,0.75,2.0,1.3833210975411272,0.0006983601657959248,0.03666946070873757,0.8284551307999758,2,1.0,1.0
+192,45,0.75,2.0,1.3824927939909557,0.0006975667742306418,0.03646974038227449,0.8283371569363005,2,1.0,1.0
+192,46,0.7799999999999999,2.0,1.3814150405584131,0.0006967687626477414,0.03638607383916749,0.8281836247565278,2,1.0,1.0
+192,47,0.75,2.0,1.382988125849497,0.0006981279192084966,0.0366722344284505,0.8284077385840921,2,1.0,1.0
+192,48,0.75,1.95,1.3817897936592554,0.0006976406228531773,0.03652642337638046,0.8173036305209184,2,1.0,1.0
+192,49,0.75,2.0,1.3801787477975098,0.0006969844750489111,0.0363944607413065,0.8280076959068502,2,1.0,1.0
+193,0,0.11244845938663954,2.0,1.373023353396054,0.0006982397400990729,0.03593252354467124,0.8269866556971236,0,0.11929492201515665,0.21576830193525628
+193,1,0.1553742945404696,1.95,1.3738729812257138,0.0006973251028768699,0.036370141818356516,0.8161184391952048,0,0.15125606554916524,0.24957289440267844
+193,2,0.15010032082305283,1.95,1.3747109065871337,0.0006964172637670419,0.03640401706851527,0.816243880287351,0,0.1766669848020837,0.26477842300739785
+193,3,0.22815536998375519,2.0,1.3753618277313855,0.0006957414379519083,0.036564544239272564,0.8273202743460554,0,0.2804578249164403,0.21990746672393024
+193,4,0.21246064009279766,2.0,1.3273450472524853,0.0006879121660647161,0.03552346095315183,0.8203500451977088,0,0.30117377934039546,0.23997042785546502
+193,5,0.27463150307983203,2.0,1.326771887466133,0.0006856144264398902,0.03536474593068918,0.8202648822652704,0,0.39841642890181844,0.2175497717303488
+193,6,0.2847637779310655,2.0,1.3298641248492467,0.0006935028157590818,0.035640111592646295,0.8207226420354933,0,0.4519871280745844,0.21322975567077254
+193,7,0.2797269263703127,2.0,1.2534500564526805,0.0008217785569950673,0.035970296099707415,0.8092421876363187,0,0.47522600239722385,0.2321217513714106
+193,8,0.3504492598270913,2.0,1.2566389573875059,0.0008113807139613749,0.03579133314171182,0.8097307666536285,0,0.5843835355560042,0.22231948534896534
+193,9,0.3360041201778998,2.0,1.2550949003162106,0.0008121403065675912,0.035742034651225434,0.8094929991457595,0,0.5999667210237233,0.25339143922803486
+193,10,0.39947479906456235,2.0,1.2576364320282143,0.0008020385130355855,0.03533734036570928,0.8098815200700217,0,0.700858683557112,0.23043775213905837
+193,11,0.4167123580293732,2.0,0.6425971604829144,0.0007136662588208155,0.02685316722498467,0.6972052146387487,0,0.7703534871245415,0.22856987726518868
+193,12,0.46459037949869786,2.0,0.6665860746772049,0.0008116289852047189,0.027742033481848827,0.7022863968985531,0,0.8749276168453246,0.21539777586856013
+193,13,0.4956947607279764,2.0,1.3650868897236754,0.0007281554963487069,0.03676123522048063,0.825856765065802,1,0.9700055709537332,0.2256417744882771
+193,14,0.4846418171827462,2.0,1.3471055812146728,0.0007060058114022046,0.03575860081052947,0.8232491235014884,1,0.9956843327732751,0.2212269469114538
+193,15,0.48945214068811504,2.0,1.347790065216359,0.0007120658685967848,0.03618853770478439,0.8233504635458017,2,1.0,0.23150713562705
+193,16,0.5066990586321883,2.0,1.320046727324435,0.0007780568897815855,0.036349961763053655,0.8192986263451644,2,1.0,0.25566352877396087
+193,17,0.5631787376340694,2.0,1.3257284287452373,0.0007680203192250392,0.03661871842930843,0.8201353065373362,2,1.0,0.27726245878023137
+193,18,0.5740079196873187,2.0,1.3238032886135191,0.0007741350030164501,0.0365844520069777,0.8198529537703546,2,1.0,0.3133597322910622
+193,19,0.5578879879447194,2.0,1.3216726412682367,0.0007793807192837084,0.03664353693032929,0.819539606901395,2,1.0,0.35962662648239757
+193,20,0.5456860851953296,2.0,1.319151575398926,0.0007813523241156015,0.036507467438687914,0.8191670389889345,2,1.0,0.3856202839844317
+193,21,0.5733603694518455,2.0,1.3241449833345686,0.0007712633888027612,0.036319911738356456,0.8199025664880527,2,1.0,0.4112012315061517
+193,22,0.593424320604711,2.0,1.3597341260880902,0.0006822884714283991,0.03615651564158114,0.8250723620425311,2,1.0,0.47808106868236944
+193,23,0.5248799636478012,2.0,1.3585939204012552,0.0006815325636907199,0.03588374036582437,0.8249075191231426,2,1.0,0.4162665454926707
+193,24,0.5861525803535608,1.95,1.3630355273672885,0.0006853275048724812,0.03600927015346487,0.8144828713086928,2,1.0,0.453841934511869
+193,25,0.5961972922075813,1.95,1.361188266310145,0.0006838417674366484,0.035744549233926746,0.8142031375163213,2,1.0,0.48732430735860427
+193,26,0.5831059297810952,2.0,1.3597264446532833,0.0006827602604738996,0.0360511015991508,0.8250713895792904,2,1.0,0.510353099270317
+193,27,0.6167934003158788,2.0,1.3585992088174261,0.000682180357112569,0.03604504358801369,0.8249084700822686,2,1.0,0.5559780010529292
+193,28,0.6260490182875138,2.0,1.3569956283608307,0.0006810382467255344,0.03596357518563008,0.8246764068116589,2,1.0,0.5868300609583792
+193,29,0.6396468420875173,2.0,1.3552694703477484,0.0006800054925363219,0.03586010888580925,0.8244263909898305,2,1.0,0.6321561402917242
+193,30,0.5769689711038615,2.0,1.3759213907618522,0.0006929977999875032,0.03650983121133987,0.8273994160499285,2,1.0,0.5898965703462049
+193,31,0.6439661641688955,1.95,1.3499592081566654,0.0006768758138651356,0.03574957683094905,0.8124963271154838,2,1.0,0.6465538805629848
+193,32,0.5855568313588778,1.95,1.3756672573501347,0.0006927722987934565,0.036007266661593845,0.816386187017786,2,1.0,0.6185227711962593
+193,33,0.5699018106074005,1.9,1.3753832360467753,0.000693038692553389,0.03637645620552724,0.8048314470175847,2,1.0,0.5663393686913349
+193,34,0.6055341554556746,1.95,1.3416592252339572,0.0006721729129778629,0.035656460864294234,0.8112271362563257,2,1.0,0.5851138515189153
+193,35,0.6094568307056439,1.95,1.3408604587266253,0.0006716233995438617,0.035636082001736236,0.8111046162187902,2,1.0,0.5981894356854797
+193,36,0.5658059859785589,2.0,1.3388182958395622,0.0006704805526366237,0.03527216073818901,0.8220296142103789,2,1.0,0.5526866199285299
+193,37,0.6541131631157128,1.95,1.3458846205900314,0.0006743734791326439,0.0356865322266791,0.8118740248872671,2,1.0,0.5803772103857092
+193,38,0.5674102596667729,1.95,1.3513250415123195,0.0006776723285759941,0.03577110431310534,0.812704560104139,2,1.0,0.5580341988892432
+193,39,0.6020640965912606,1.9,1.3560836964330183,0.0006804120106793362,0.035851113432254125,0.8017780593783514,2,1.0,0.5735469886375353
+193,40,0.6322306627711488,1.9,1.3536097827086788,0.0006791336980550214,0.03576063218287786,0.8013841797761453,2,1.0,0.6074355425704958
+193,41,0.6699615502935495,1.9,1.3751033546927238,0.0006928560377924119,0.03633853069788924,0.8047874227307029,2,1.0,0.6332051676451651
+193,42,0.6522125251366735,1.9,1.373456741934125,0.0006913560615087786,0.03599668774226379,0.8045281306327166,2,1.0,0.674041750455578
+193,43,0.5894531703397037,1.95,1.3768622061794566,0.0006935516957853859,0.03643265317598896,0.8165654753555718,2,1.0,0.6315105677990123
+193,44,0.6248678360072892,1.9,1.376726001115425,0.0006934882677761849,0.03616934426191417,0.8050424203776027,2,1.0,0.6495594533576307
+193,45,0.6500681760451366,1.9,1.3773033151610168,0.0006942467156714576,0.0365257790134285,0.8051332513451285,2,1.0,0.6668939201504549
+193,46,0.5872396108077441,1.9,1.3799668224802606,0.0006957310313635372,0.03652857638113323,0.8055512642643867,2,1.0,0.6241320360258138
+193,47,0.6734483207375664,1.8499999999999999,1.3795632453588327,0.0006955693978831912,0.03638416293672745,0.793467432452286,1,1.0,0.6448277357918883
+193,48,0.6372801793933666,1.8499999999999999,1.3725567086251134,0.0006926046899503028,0.03626966185747943,0.7923158863933528,1,1.0,0.6576005979778883
+193,49,0.6604154448068394,1.7999999999999998,1.3714398347158272,0.0006913238995447273,0.0362036446668489,0.7795115997571326,1,1.0,0.7013848160227979
+194,0,0.19216952567628343,1.7999999999999998,1.3686119053366947,0.0007061728148674597,0.036156580315366414,0.7790302824203851,1,0.1634950507203924,0.2559050179604216
+194,1,0.23408018674237635,1.7499999999999998,1.3683392404149677,0.0007067834076538145,0.03643534976867482,0.7658012947906621,1,0.2307716745937435,0.3059050563495964
+194,2,0.21588668574168937,1.7499999999999998,1.3845388999681028,0.0006990095315830716,0.0365632383291196,0.768691414251866,1,0.25033958531738976,0.3191695053824449
+194,3,0.22476778894138794,1.7999999999999998,1.3847673393053341,0.0006991122389084195,0.036576891824288846,0.7817963636780002,1,0.29653939500276116,0.3205067698009449
+194,4,0.30834332962483785,1.8499999999999999,1.3851734932281947,0.000699457401516194,0.036744302777149906,0.7943865787782636,1,0.35418664947952117,0.3888955661100981
+194,5,0.28710957175465535,1.8499999999999999,1.3850920960960207,0.0006993532295960325,0.03652705214427614,0.7943732493017699,1,0.37687059388462874,0.38787111400267954
+194,6,0.3248556562134431,1.7999999999999998,1.3852825910097186,0.0006994631593002274,0.03660704446262884,0.7818843678136816,1,0.40643693430865724,0.4076029416332674
+194,7,0.3115013616363189,1.7999999999999998,1.3750049353097702,0.0007024642775785722,0.036530737292902335,0.7801275564153423,1,0.46124041974757163,0.39001731245763416
+194,8,0.33174206502306486,1.8499999999999999,1.3815379155945626,0.0007010516190875684,0.03632920990074496,0.7937926424276194,1,0.4816992744392322,0.39687451749123986
+194,9,0.3445773902597527,1.8499999999999999,1.3818681629268352,0.0007024383545522606,0.03665015688796161,0.7938471478986661,1,0.5072668277264633,0.4055688638972245
+194,10,0.3395060264446318,1.9,1.3760340169003458,0.0007024762272180732,0.03646678326725239,0.8049366136174658,1,0.5422689870183272,0.37532810545766965
+194,11,0.4187949000330629,1.95,1.3818517351438235,0.0007046419530620696,0.03650935305034442,0.8173149701063377,1,0.5952553235552251,0.4356425687032427
+194,12,0.44715834654802317,1.95,1.3770743540598704,0.0007024293286448007,0.036270288751444085,0.8165999091909207,1,0.6249490564275522,0.4905957465900076
+194,13,0.43564525222859796,1.95,1.3346731943086585,0.0007131371105916909,0.03586716506832003,0.8101675855893565,1,0.6513031218348982,0.5170800116487954
+194,14,0.47643759198559804,2.0,1.3359100743042582,0.0007235523045411907,0.03569016037626914,0.821619308832097,1,0.6797568970008897,0.5484494439508073
+194,15,0.5275627289733016,2.0,1.3402861105539996,0.0007175332738663467,0.03586389437742597,0.8222580034077769,1,0.7288448452421293,0.6200826362548328
+194,16,0.5616236022365007,2.0,1.1481390238606652,0.0006515888608604448,0.03197944598198924,0.7923981967288448,1,0.7656769065411513,0.6845094654001335
+194,17,0.529930277098827,2.0,1.1732415399814524,0.0006422904796067738,0.0320275855332927,0.7964943262982167,1,0.80195467839571,0.6638280191351434
+194,18,0.5436601205230648,1.95,1.3717099129202701,0.0006958375612208796,0.03605524924149808,0.8157931603433187,1,0.8516951938539314,0.643273476604974
+194,19,0.5526013193189911,2.0,1.3727918218447037,0.0006997498969217014,0.036518324412441495,0.8269539579285782,1,0.892979466516971,0.6180317757073426
+194,20,0.568837574654447,2.0,1.3739209488123263,0.0007033694364204414,0.03657429770646096,0.8271165127575156,1,0.9103184986089038,0.6157005840362846
+194,21,0.6128746377270449,2.0,1.3743190803570169,0.00070125971359971,0.0365230728151738,0.8271728328763822,1,0.9465040537978855,0.6475767206929688
+194,22,0.6607880297528044,2.0,1.3726370055690367,0.0007011886708258173,0.036402118059453856,0.8269322142479433,1,0.992025630775401,0.7132592581421465
+194,23,0.6615128551209342,2.0,1.3758054714924028,0.000699779169364932,0.036483140781147574,0.8273847980625755,1,1.0,0.7383761837364471
+194,24,0.6664459824398492,2.0,1.3739199756795237,0.0006995322984653584,0.036131902978740096,0.8271152762196502,1,1.0,0.7548199414661637
+194,25,0.6740520294738505,2.0,1.3718272985243085,0.000699101989728673,0.03626477445154959,0.8268157044922158,1,1.0,0.7801734315795014
+194,26,0.6846469138452922,2.0,1.3695085702410061,0.0006986615217308791,0.03643270904739301,0.8264833043411657,1,1.0,0.8154897128176406
+194,27,0.6479860232776501,2.0,1.2874094472470166,0.0008273310869758013,0.03672903024800489,0.8144311783454812,1,1.0,0.7932867442588335
+194,28,0.6377680449992551,1.95,1.3697124906495914,0.0006986791876406957,0.036442861971891206,0.8154936641226149,1,1.0,0.7592268166641835
+194,29,0.6978017666565437,2.0,1.370516309839036,0.0007036342502426574,0.03612345453941165,0.8266292006953548,1,1.0,0.8260058888551456
+194,30,0.7151250576059276,2.0,1.2806802714797105,0.0008323966871633075,0.03610535447221602,0.8134135626890383,1,1.0,0.8837501920197582
+194,31,0.6910173965067153,2.0,1.2903462583542653,0.0008169257050980832,0.03618242452538633,0.8148714783099342,1,1.0,0.903391321689051
+194,32,0.7405711215744186,1.95,1.3048257269116657,0.0008016971726329022,0.03668312676522674,0.8055623597755257,1,1.0,0.9685704052480621
+194,33,0.6931531111593111,1.95,1.310730650435902,0.0007907636364301911,0.036591645607260005,0.8064821764283168,1,1.0,0.9438437038643702
+194,34,0.7108432615948386,1.9,1.3073852738546905,0.0007927022369817859,0.036346548377396704,0.7939612957543575,1,1.0,0.9694775386494621
+194,35,0.6890101853188962,1.95,1.318721556289903,0.0007812664448398414,0.03663463219459033,0.8077233031387704,1,1.0,0.9300339510629875
+194,36,0.7047157364117055,1.9,1.3168711148936794,0.0007810289966119166,0.03643910332631119,0.795504929248582,1,1.0,0.9490524547056848
+194,37,0.6855638906680395,1.95,1.3264899524261984,0.0007705639374685719,0.03661939005007318,0.8089235927890789,1,1.0,0.9185463022267982
+194,38,0.7372878670372485,2.0,1.324435997798189,0.0007702383950080226,0.03668998611463873,0.8199452317167679,1,1.0,0.9576262234574949
+194,39,0.6861290263279479,2.0,1.3327548664364828,0.0007582383531095526,0.03661598434307719,0.8211665966519585,1,1.0,0.9204300877598263
+194,40,0.681294607318087,1.95,1.3293282147492016,0.0007592172276731595,0.03657461828445645,0.8093584061282222,1,1.0,0.9043153577269567
+194,41,0.6741244503985249,2.0,1.3242328503300398,0.0007611639029658217,0.03598130661854508,0.8199125582910298,1,1.0,0.8804148346617497
+194,42,0.6630454006585367,2.0,1.3219182925847823,0.0007603641008221303,0.035971361791234,0.8195703104238865,1,1.0,0.843484668861789
+194,43,0.7028499642611405,2.0,1.3179905912591772,0.0007604692458699864,0.035882231148842494,0.8189888043005468,1,1.0,0.8761665475371352
+194,44,0.7106693331745132,2.0,1.316744877625739,0.0007717701749075826,0.036470465890000435,0.8188074119484822,1,1.0,0.9022311105817106
+194,45,0.7150693429248223,2.0,1.314881915907869,0.0007815231892951088,0.036607357897284795,0.818533752727357,1,1.0,0.9168978097494072
+194,46,0.7454354071234026,2.0,1.3125727242910594,0.0007898515846705746,0.03665229922307217,0.8181929795047284,1,1.0,0.984784690411342
+194,47,0.74,2.0,1.3198838312453767,0.0007777419625828497,0.03654994857167569,0.8192744153303582,1,1.0,1.0
+194,48,0.72,2.0,1.3174344912865872,0.0007845520707246529,0.03626315698445946,0.8189134927956643,1,1.0,1.0
+194,49,0.7000701068101587,1.95,1.3288710802562946,0.0007724867301541261,0.03620876317224469,0.8092919575235933,1,1.0,0.9669003560338623
+195,0,0.16291614268599391,2.0,1.3686891808884025,0.0007078359205988753,0.03616991679007754,0.8263683981501513,1,0.13338933098210223,0.23186803431051006
+195,1,0.2096432182768,1.95,1.3689231572819336,0.0007066521946555478,0.03642313806885189,0.8153772689683332,1,0.16958007186734736,0.3060372984328702
+195,2,0.1775621413226394,1.95,1.368236965467654,0.0007072998831719133,0.03634264326831015,0.8152741443203264,1,0.2171229518129958,0.26904320199147025
+195,3,0.19258269670935788,1.9,1.3838387847286338,0.0006986625945639643,0.03653178085729197,0.8061579611033044,1,0.2355466306957408,0.26121348143687184
+195,4,0.2067572188782373,1.95,1.383974990542447,0.0006986085588331497,0.03669292254547117,0.817629983083825,1,0.25490329035783826,0.2826530091170067
+195,5,0.21181083423204822,2.0,1.3841284463663548,0.0006986687279312447,0.03662996673214845,0.8285699262095552,1,0.29900937759106727,0.274023610652071
+195,6,0.22881019930030214,2.0,1.3846913758952921,0.0006991464929731186,0.03631123893037817,0.8286500066212823,1,0.314218960771678,0.27707538330543646
+195,7,0.2278863896748287,2.0,1.3847308125323976,0.0006991118607443862,0.03666536167086238,0.8286555962896532,1,0.32471578483822333,0.2600002524651312
+195,8,0.24161223230447557,2.0,1.3847010042527097,0.0006990472594465832,0.03669711833471288,0.8286513455594684,1,0.35187729011851465,0.2695377208568991
+195,9,0.29108341752970235,2.0,1.3846159434160175,0.0006990111050945997,0.03649626974589485,0.8286392573112594,1,0.38931919490703193,0.31785246522296534
+195,10,0.30748533271084827,2.0,1.3843442276229159,0.0006988059269949956,0.03663219020599092,0.8286006129658696,1,0.41280612090130997,0.34120961450108095
+195,11,0.2868541538854032,2.0,1.3804374003750972,0.0007050661135539041,0.036727531707662645,0.8280468291663848,1,0.42114321787411674,0.327989555785855
+195,12,0.32658893346334267,1.95,1.3802658453068883,0.0007063391515747237,0.03654384427225881,0.8170785671374907,1,0.4620046095019315,0.3392902988752336
+195,13,0.34528463507004836,1.95,1.3808420860454826,0.0007050955747989647,0.036741850449045634,0.817164305426351,1,0.4918104952606721,0.36186812321926515
+195,14,0.3120965357274645,2.0,1.381286279507807,0.0007038120938819979,0.0365130840786152,0.8281673064920547,1,0.5058138735541546,0.3325699543526754
+195,15,0.3662155952005824,1.95,1.382602497036439,0.0007028957915753944,0.03634686328276363,0.8174265193740544,1,0.534900262364829,0.3741849675155026
+195,16,0.36824716111504435,1.95,1.3827749186926868,0.0007019797729927569,0.036733892042169515,0.8174519768592845,1,0.5746816294285103,0.39458169781213404
+195,17,0.36306527460856414,2.0,1.3826813806454186,0.000702953176249778,0.03660775792010953,0.8283655029414202,1,0.6083928468571662,0.3656937862189921
+195,18,0.36509522287615725,2.0,1.357412714131569,0.0006906916293535022,0.03635836608344815,0.8247394937876559,1,0.6334962568248743,0.33898906715402505
+195,19,0.41952957629590987,2.0,1.3590089708928434,0.0006890505312247626,0.03625290027506568,0.8249696300206837,1,0.6722408995201895,0.36877738829278034
+195,20,0.4643125382463679,2.0,1.3621287742824222,0.0006881799684375205,0.0360547794694024,0.8254194056981422,1,0.7202790025321928,0.4206697907783027
+195,21,0.4365158951707778,2.0,1.3385759233985106,0.0007172115880060681,0.035782548613927184,0.8220078280360346,1,0.7216886691277875,0.42613475839887593
+195,22,0.5042357814087514,1.95,1.3392644276102157,0.0007262147426159832,0.03602450373971612,0.810876704963787,1,0.7682592368399939,0.4897736222425127
+195,23,0.5118589042379018,1.95,1.3352046419228882,0.0007264715476892666,0.036361316551366145,0.8102534068525205,0,0.8009047126443657,0.5049900639338517
+195,24,0.5303874993246166,2.0,1.299464025072294,0.0006663442478887116,0.03498162554377566,0.8161978248131093,0,0.8733193628518441,0.47019918061292976
+195,25,0.48982185587027754,2.0,1.3125394751689825,0.00066519630982701,0.0352447069724535,0.8181509440624452,0,0.8655635581469647,0.4786547753716388
+195,26,0.5329336337665693,1.95,1.3091818291677872,0.0006632711674870975,0.03469108648748402,0.8062005031405063,0,0.8994902854596877,0.5104583986089809
+195,27,0.5764670403361591,1.95,1.3141673068096145,0.0006774993904078733,0.03480336281958445,0.8069826839824432,0,0.9769037545804251,0.48568512834663025
+195,28,0.5858689070050644,1.95,1.3235899179882595,0.0006748462140268081,0.03548694172460059,0.8084452995913886,0,1.0,0.48622969001688116
+195,29,0.5888876493587117,2.0,1.3309301435823842,0.0006730693425927517,0.03580676770092412,0.8208734301897535,0,1.0,0.4962921645290389
+195,30,0.591667920750921,2.0,1.3377022739121818,0.0006729699704861396,0.03589799486584404,0.821867013859812,0,1.0,0.47222640250306974
+195,31,0.5429143009321286,2.0,1.3406807118176813,0.0006723127289837511,0.03586719139863176,0.8223024519929419,0,1.0,0.4763810031070952
+195,32,0.5875187152136451,1.95,1.337601941429245,0.0006703884470111997,0.035341371625945715,0.8106044806452927,0,1.0,0.4583957173788168
+195,33,0.5337325849897795,1.95,1.3383314830753659,0.0006692186528072743,0.03521205125194263,0.8107160990205158,0,0.9946480513439723,0.45291121484063523
+195,34,0.5791774981651544,1.9,1.3353095609311445,0.0006672287285958257,0.035583533849412895,0.798451474038794,0,1.0,0.4305916605505144
+195,35,0.5335803934782303,1.9,1.335145015083921,0.0006661450403631336,0.035240704996239124,0.7984246440920343,0,1.0,0.44526797826076764
+195,36,0.5351905327122777,1.8499999999999999,1.33211465594851,0.0006642487561041154,0.03473859831318642,0.7855728517235747,0,1.0,0.4506351090409255
+195,37,0.560097920155454,1.9,1.3274281864274347,0.0006610011741444336,0.03542816790010704,0.7971781527119253,0,1.0,0.46699306718484657
+195,38,0.5403318998926163,1.9,1.336363937007664,0.0006723777180144082,0.03556765574870214,0.7986227540988584,0,1.0,0.4677729996420545
+195,39,0.5412874938458876,1.95,1.3332034689853636,0.0006705151201950999,0.03575621400119412,0.8099283220743656,0,1.0,0.47095831281962547
+195,40,0.5817029222933959,2.0,1.3313867846726533,0.0006695840792920534,0.03564103140620094,0.8209395403181964,0,1.0,0.43900974097798623
+195,41,0.5372171833929763,2.0,1.3339304721797256,0.0006695204518395361,0.03531715982305375,0.8213131329326561,0,1.0,0.4573906113099209
+195,42,0.5573403230275616,1.95,1.3309219578416793,0.0006678157409801661,0.035652710796079956,0.8095760154675071,0,1.0,0.45780107675853865
+195,43,0.563969779054649,1.95,1.3359433144989012,0.0006775130997505481,0.03501025802663705,0.8103518988567328,0,1.0,0.4798992635154964
+195,44,0.5479647603022869,2.0,1.3407478581120995,0.0006878225088926726,0.035439125470291044,0.8223167956446037,0,1.0,0.49321586767428977
+195,45,0.5987101811476971,2.0,1.3390131278723352,0.0006871582251893654,0.03528935758319921,0.8220629948696143,0,1.0,0.4957006038256568
+195,46,0.5929642829929878,2.0,1.3400033767273056,0.0006844164151455698,0.0354390870234461,0.8222069961426035,0,1.0,0.4765476099766259
+195,47,0.5828530414037911,2.0,1.3401422698063716,0.00068209864575827,0.035595342273056295,0.8222266214168518,0,1.0,0.44284347134597024
+195,48,0.5348957669485002,2.0,1.3396328539647948,0.0006798395034605617,0.03575727333897088,0.8221514872225285,0,1.0,0.44965255649500047
+195,49,0.5740199450804833,1.95,1.3372054049680033,0.000678880755251842,0.035726279541740326,0.8105462031330868,0,1.0,0.4467331502682776
+196,0,0.1104248311741878,1.95,1.3660696396418446,0.000692151053741367,0.035721512649955975,0.814942948020824,0,0.10855810245653216,0.22333863397191647
+196,1,0.08828275108791281,1.9,1.3669549197834054,0.0006913418709741301,0.036106152738379464,0.8035036076559293,0,0.19753073330803106,0.19756819254900138
+196,2,0.1825723614854813,1.8499999999999999,1.3687570359917123,0.0007209965026297225,0.03671357117801907,0.7916993148077738,0,0.23430224505175862,0.2295048782159262
+196,3,0.24559534839367309,1.8499999999999999,1.3003721224009628,0.0006852878249304406,0.03524052247822258,0.7801846416584223,1,0.3270478147509269,0.21592074164434097
+196,4,0.22802977223780224,1.8499999999999999,1.3830548108814908,0.0006979794426125389,0.03665710649634709,0.7940398212718995,1,0.356010841647041,0.21875145192995282
+196,5,0.28718266670741777,1.9,1.3829615498474233,0.0006978663672656655,0.036429266133890484,0.8060205921742235,1,0.3984738364090632,0.25931044047930835
+196,6,0.2504705932020904,1.9,1.3833179165610123,0.000698076634083713,0.03644427187573252,0.8060763702681372,1,0.42230172885750916,0.23849967219695573
+196,7,0.3026810940595216,1.8499999999999999,1.383757176860543,0.0007022209437091449,0.036758317188070704,0.7941560496303747,1,0.44866898807710015,0.2773783294289384
+196,8,0.2832462396301115,1.8499999999999999,1.3838710689845073,0.00070159437845305,0.03637502828990806,0.7941744623664233,1,0.4925616105904765,0.25407198464640285
+196,9,0.31097082816748045,1.9,1.3845454933096935,0.0007011816600864397,0.03669971466265821,0.8062691596067015,1,0.5221615179509814,0.2736874032902929
+196,10,0.3131771741782141,1.9,1.3845349427893847,0.0007017192574415159,0.03677624879595566,0.8062676795641106,1,0.5332281948774024,0.2662863207575106
+196,11,0.36242367837972406,1.95,1.3844001930577803,0.0007022069881849854,0.03649422971412046,0.8176944498156468,1,0.5777378288218251,0.30442848950331336
+196,12,0.4134792992257119,1.95,1.384601171175627,0.0007015358636159874,0.03653314248310302,0.8177242076943814,1,0.6286374137803284,0.37341444571193527
+196,13,0.38001794467921274,1.95,1.3393474747088758,0.0006763189762380864,0.035648929316924885,0.8108741370964385,1,0.6725166324012368,0.33670430572905996
+196,14,0.4015396570528968,1.9,1.3419402049617164,0.0006752278428237227,0.035206411224852054,0.7995189748293954,1,0.68803556698554,0.3544181008622691
+196,15,0.4461082311259516,1.9,1.3458483636970366,0.0006840806508849203,0.03549935569808978,0.800147505402927,1,0.720045325317233,0.39363366999686145
+196,16,0.43465970896724926,1.9,1.3502751567071885,0.0006826713549873072,0.036032611768635585,0.8008540103962059,1,0.7360226942574941,0.4008354375475051
+196,17,0.4211123043320314,1.95,1.3367923206753414,0.0006948210532641034,0.035674137362320904,0.8104876581610624,1,0.7628611492461079,0.35322614877862746
+196,18,0.49699637791403906,2.0,1.35918301153199,0.0007058367895276319,0.03649545364242891,0.8249996062456959,1,0.8201662714452272,0.3964328977864937
+196,19,0.4573800797414829,2.0,1.3451235772958514,0.0006972005790438604,0.035852850802567025,0.8229579715082825,1,0.8487693517959632,0.35957446341032545
+196,20,0.5364076583733903,1.95,1.3529595888961987,0.0006949114506095511,0.03572165118446769,0.8129584796896674,1,0.8959052506042734,0.426818527105603
+196,21,0.5025325877793292,1.95,1.3831302396125973,0.0006984579565541967,0.03651087731877341,0.8175039425276652,1,0.929246033899964,0.4027805807311454
+196,22,0.5848043247161153,1.9,1.3840615518203059,0.00069876431988653,0.036726248650691795,0.8061928017300558,1,0.9910413206054083,0.4612926549131731
+196,23,0.5614534510055939,1.9,1.383491762045385,0.0006985368831725236,0.03652628398403618,0.8061036877455664,1,1.0,0.4715115033519795
+196,24,0.6106795768716148,1.8499999999999999,1.3839094490195825,0.0006992979002301848,0.03669344011213254,0.7941799851942211,1,1.0,0.5355985895720492
+196,25,0.6286536372422897,1.8499999999999999,1.3832198685886932,0.0006992593014472046,0.03660572801260417,0.7940672321723256,1,1.0,0.5955121241409658
+196,26,0.6439610226376267,1.9,1.382414223801001,0.0006991756875001765,0.03666044450819178,0.8059354122135716,1,1.0,0.6465367421254221
+196,27,0.6434028097931392,1.95,1.3723521913794379,0.0007021733045832096,0.036430732111059135,0.815891562380891,1,1.0,0.6780093659771307
+196,28,0.624390277961504,2.0,1.3705414039156427,0.0007018308679748387,0.036387879892988695,0.8266322800927454,1,1.0,0.6813009265383466
+196,29,0.6492328816783058,2.0,1.3720453298684556,0.0006996170397661405,0.03640778599341649,0.8268470699823098,1,1.0,0.6974429389276858
+196,30,0.6745797490814035,2.0,1.3698737333457487,0.0006991622704192277,0.03603364916893211,0.8265358092357911,1,1.0,0.748599163604678
+196,31,0.6883245309076054,2.0,1.372830604515487,0.000697658799883527,0.0362524926026078,0.8269589092391669,1,1.0,0.7944151030253512
+196,32,0.6360652900250265,2.0,1.3747715655588397,0.0006963713600660851,0.03644924674690533,0.8272361124030954,1,1.0,0.7535509667500884
+196,33,0.6880826807966306,1.95,1.376221693472531,0.0007001232185783399,0.036565426787533994,0.8164714853117089,1,1.0,0.7936089359887685
+196,34,0.6879208753786766,1.95,1.3772394480620485,0.0006986197226451663,0.03650872095098951,0.8166234921479284,1,1.0,0.826402917928922
+196,35,0.6991298083089355,2.0,1.347746435205146,0.0007219154825574311,0.0359258603633877,0.8233469829185912,1,1.0,0.8637660276964515
+196,36,0.7243818438940635,2.0,1.3450578867586727,0.0007213195874689253,0.03595690941184161,0.8229554286940494,1,1.0,0.9146061463135448
+196,37,0.6744351474400236,2.0,1.3483439265151775,0.0007152725564584132,0.03587373779462176,0.8234319376408309,1,1.0,0.8814504914667453
+196,38,0.7175748206397503,1.95,1.3487670865931851,0.0007239191251260242,0.03626529779025421,0.8123289884319398,1,1.0,0.925249402132501
+196,39,0.6999430163159139,1.95,1.3442153520343483,0.0007244539214238635,0.036355530078427775,0.811634250578674,1,1.0,0.9331433877197133
+196,40,0.7245676386927288,2.0,1.3522495063524849,0.000718168065136933,0.03619683096137216,0.8239998995870187,1,1.0,0.9485587956424292
+196,41,0.7344702519270939,2.0,1.3494823991622837,0.0007176339495045332,0.03633370267808581,0.8235980874104173,1,1.0,0.9815675064236462
+196,42,0.7147163732829931,2.0,1.345544310135055,0.0007170897196171096,0.03590952564087703,0.8230250571473987,1,1.0,0.9823879109433105
+196,43,0.7012619583152067,2.0,1.3523689080102508,0.0007116242913893981,0.035870263400826566,0.8240153171603798,1,1.0,0.970873194384022
+196,44,0.6946851160536336,2.0,1.353087396276961,0.0007205109534576353,0.03635194632773491,0.8241220599839854,1,1.0,0.9489503868454453
+196,45,0.7345263475446575,2.0,1.352938437795364,0.0007285003817871336,0.03656551400847359,0.8241027844360665,1,1.0,0.9817544918155248
+196,46,0.75,2.0,1.3494540780575761,0.0007287970619161821,0.03660317703953566,0.8235972164469331,1,1.0,1.0
+196,47,0.75,2.0,1.3538206119499292,0.0007222977606470092,0.036463980584275704,0.8242288283242226,2,1.0,1.0
+196,48,0.73,2.0,1.3850597104162097,0.0007005632823508821,0.03660069065199549,0.8287027020442292,2,1.0,1.0
+196,49,0.7799999999999999,1.95,1.3842148773335026,0.0007005955715806659,0.03644303888142937,0.817666342644812,2,1.0,1.0
+197,0,0.07351483589306942,1.95,1.3748068032591623,0.0006945560489024264,0.03604512705773501,0.8162577050812764,0,0.1794903412689015,0.1723956646183627
+197,1,0.19601692900983841,1.9,1.3711833763405483,0.0007042310066711611,0.036428046463809996,0.8041744227529722,0,0.2525537810815132,0.1833180552574437
+197,2,0.17084918750889388,1.9,1.3736983572850046,0.0006929511733289747,0.03620851168836687,0.8045666265281133,0,0.26377806845389173,0.21779320042445724
+197,3,0.23841436333503838,1.8499999999999999,1.2990310904383164,0.0006774797030888293,0.035120316297825784,0.7799518927140145,0,0.3303496490931241,0.2209150123259625
+197,4,0.2625571510702152,1.8499999999999999,1.2952172379462041,0.000675935636443241,0.03472639575700129,0.7792961029284569,0,0.39493155659231244,0.21528176144430086
+197,5,0.2918140042928794,1.8499999999999999,1.2933208140491392,0.0006751172922020985,0.034620116588552644,0.7789694754364017,0,0.4772193512112708,0.20308754602790371
+197,6,0.3259975940438284,1.9,1.206891077212932,0.0008033226812680836,0.035075510313319194,0.7770397014323529,0,0.5591300125081526,0.1744852968018911
+197,7,0.3410553024189918,1.9,1.2757972362689474,0.0007371396488350447,0.035061162259409744,0.7887273996362597,0,0.6234940086524547,0.17219232986003302
+197,8,0.3880719585754387,2.0,0.41843637425415886,0.00013196715603427353,0.012651057043905095,0.6476442679189011,0,0.7326078849065168,0.15009601537610642
+197,9,0.415448034296385,2.0,0.43611544967014026,0.00014308473280042397,0.013188952331713572,0.6516730931835769,0,0.826067177596606,0.11673721085914197
+197,10,0.42673049474570623,2.0,1.044630154194693,0.0006847530880748219,0.030575744671768934,0.7748669297542782,0,0.8920615127754417,0.09968629878509869
+197,11,0.42592400409898845,2.0,1.0435686568400715,0.0006820924852801766,0.030401858186204195,0.7746807706373708,0,0.9232502548183621,0.12207967390547864
+197,12,0.47622010773352635,2.0,1.041959077549068,0.0006818331109435131,0.030747342421458795,0.774399602971664,0,0.9982174586929271,0.12311041418785187
+197,13,0.47727596436946546,2.0,1.0407123195214139,0.0006789559351025296,0.031081596977073883,0.774180707771194,0,1.0,0.12425321456488493
+197,14,0.45874699470488994,2.0,1.0393449913425166,0.0006761783596246768,0.03107555311008106,0.7739406031841255,0,1.0,0.12915664901629975
+197,15,0.48159936972320794,2.0,1.0377179749667094,0.0006761725900673187,0.030870557021681073,0.7736558171311186,0,1.0,0.13866456574402652
+197,16,0.4663224525847286,2.0,1.0363004923502652,0.0006735311746518192,0.030144000534806797,0.7734065761261717,0,1.0,0.15440817528242845
+197,17,0.4762140710624732,2.0,1.0346833932097579,0.0006736305621099605,0.030137560422616633,0.7731230909471568,0,1.0,0.1873802368749105
+197,18,0.4984321713921234,2.0,1.0329526424878537,0.0006737501612482647,0.030412223216748534,0.7728194092322924,0,1.0,0.1947739046404115
+197,19,0.4818872229414067,2.0,1.0314928866682975,0.0006711007778837217,0.030763071316025885,0.7725620874243325,0,1.0,0.20629074313802215
+197,20,0.4660711145923413,2.0,1.3393485879636304,0.0007549610444150483,0.0365736478182775,0.8221318897570231,0,1.0,0.22023704864113752
+197,21,0.5134209275893341,2.0,1.338159022315776,0.0007573189213342995,0.03636664394196075,0.8219585617829545,0,1.0,0.21140309196444684
+197,22,0.5066947994895588,2.0,1.3407034609747737,0.0007507733055920477,0.0363096029153606,0.8223287041013285,0,1.0,0.22231599829852916
+197,23,0.4953191593994788,2.0,1.3489265026508306,0.0007435627345211476,0.036644642916803145,0.8235248465323389,0,1.0,0.2510638646649291
+197,24,0.5182939659198781,2.0,1.3477852151819534,0.0007447554122642528,0.03650675051659842,0.8233592669899875,0,1.0,0.26097988639959335
+197,25,0.5078260973930246,2.0,1.354763538715064,0.0007383119869467453,0.036684861513990176,0.8243700309650211,0,1.0,0.29275365797674874
+197,26,0.5146237282377314,2.0,1.3535713361874346,0.000739387796079661,0.03665505630603275,0.8241976640191686,0,1.0,0.31541242745910464
+197,27,0.5411504778639616,2.0,1.352284251554518,0.0007404473099910912,0.03631274601165795,0.8240114002352618,0,1.0,0.30383492621320546
+197,28,0.515199819814296,2.0,1.3546209417195307,0.0007349360969073859,0.03632557862373989,0.8243484065919585,0,1.0,0.31733273271432
+197,29,0.5377348644026088,1.95,1.3533394182903473,0.000735908196552796,0.03659222200872618,0.8130286929383603,0,1.0,0.2924495480086957
+197,30,0.5074272461401987,1.95,1.3543176331609121,0.0007315837436201852,0.0365923491126345,0.813176034875501,0,1.0,0.2914241538006625
+197,31,0.5349673002898846,1.9,1.3530419352612273,0.0007324368246204471,0.03647173166500285,0.8013107549276655,0,1.0,0.28322433429961513
+197,32,0.5093248887438523,1.9,1.3535136193569017,0.0007283347283266813,0.036370322803291506,0.8013845361057529,0,1.0,0.2977496291461744
+197,33,0.5248415409919266,1.8499999999999999,1.3522071918756873,0.0007291238881956375,0.036384956488592676,0.7889595847676046,0,1.0,0.2828051366397553
+197,34,0.48450352793666296,1.9,1.3586172195118507,0.0007245799268512364,0.036500860820669195,0.8021944217501136,0,0.995357888536501,0.2878679084068751
+197,35,0.5295914503084332,1.8499999999999999,1.3585291740129102,0.0007269575642669145,0.03661692253154565,0.790009568022569,0,1.0,0.265304834361444
+197,36,0.5200643244744888,1.8499999999999999,1.358870460178487,0.000723327603450026,0.036379464862380716,0.7900649757548388,0,1.0,0.2335477482482958
+197,37,0.4965968485420037,1.9,1.359398203356322,0.0007195207149761217,0.036392065875831776,0.8023167130490649,0,1.0,0.25532282847334553
+197,38,0.5233645761716715,1.8499999999999999,1.3589626964787442,0.0007197369753833582,0.03642103340752652,0.7900790828328698,0,1.0,0.24454858723890485
+197,39,0.5061230631538084,1.8499999999999999,1.3585279410229893,0.0007166223373952108,0.036411413474250184,0.7900059343397376,0,1.0,0.2870768771793611
+197,40,0.4889488884295134,1.9,1.3574056347467427,0.0007173429108774201,0.0363718480252592,0.8019998004563177,0,1.0,0.2964962947650446
+197,41,0.5112827989696767,1.95,1.3575240316322126,0.0007196993695856629,0.036352383890707864,0.8136590605867061,0,1.0,0.3042759965655886
+197,42,0.5173266330589196,1.95,1.3570852113800946,0.0007199855108234171,0.03647405769932223,0.8135926051748735,0,1.0,0.32442211019639866
+197,43,0.5258927926525065,2.0,1.3558988024036949,0.0007207000114117142,0.036281007836193244,0.8245292423838392,0,1.0,0.35297597550835497
+197,44,0.511780250874338,2.0,1.3553279941205563,0.0007209077050643355,0.03645580700979991,0.8244467022232864,0,1.0,0.3726008362477932
+197,45,0.5535163177816486,2.0,1.3547025896498055,0.0007241978877881747,0.03633814621904036,0.8243571191432044,0,1.0,0.34505439260549486
+197,46,0.4999866243771776,2.0,1.3550527272853974,0.0007201520821099341,0.036376464273562045,0.8244066393337305,0,1.0,0.3332887479239254
+197,47,0.5047423350921381,1.95,1.3543955330076594,0.0007228825323768867,0.03632505338377625,0.8131852255167173,0,1.0,0.3491411169737936
+197,48,0.534011573640059,2.0,1.3528901349975786,0.0007259689928813581,0.036414730405938844,0.8240950485679754,0,1.0,0.3800385788001966
+197,49,0.5517397085326594,2.0,1.352529097634208,0.0007263671886760424,0.036318587647190925,0.824042821075194,0,1.0,0.37246569510886446
+198,0,0.06702312479526762,2.0,1.3801106583119744,0.0006967453776551518,0.03622412248486183,0.8279979308986399,0,0.17123420365103012,0.1950981444495186
+198,1,0.21317009131118303,1.95,1.3685110772525007,0.0007099997313567751,0.03640263834173558,0.8153162356587362,0,0.2802289023037009,0.1702617679656755
+198,2,0.24375587809159566,1.95,1.3795761104324085,0.0006955385674183581,0.036439598364175874,0.8169722260308592,0,0.37013997438705626,0.15233296112257716
+198,3,0.2776362148291193,1.95,1.380564308439703,0.0006962624841261226,0.036448196192444285,0.8171201599782493,0,0.47154740182424004,0.13005751366474438
+198,4,0.27324305504893304,2.0,1.202741788736322,0.0006899216789024995,0.03380795267707116,0.8012494231049756,0,0.5009393026801265,0.17622444658960806
+198,5,0.31956289203575783,2.0,1.216829011334975,0.0006874925359303425,0.033610270384887994,0.8034825121657876,0,0.5779941657281397,0.16121741914833992
+198,6,0.27537417474124615,2.0,1.2135873545312552,0.0006850551122713866,0.03321448459647948,0.802969385010957,0,0.5660635340859352,0.1631625370229068
+198,7,0.36446987361079913,2.0,1.2327546105821874,0.0006766726416733628,0.033488474234514225,0.8059816066193994,0,0.6690742358140213,0.15613393095063546
+198,8,0.3989581518103744,2.0,0.3925346695756813,0.00011076853494105992,0.011621741065366575,0.6417013625573383,0,0.76104442306713,0.1484679419450746
+198,9,0.4333898358945204,2.0,0.3890490278294684,0.00010836427826103819,0.011478521650761204,0.640898439395234,0,0.8658794823046501,0.12346014324220134
+198,10,0.42551703709071775,2.0,1.0255848897270632,0.0006711194423734123,0.030018699111362013,0.7715223290976821,0,0.9066670090829843,0.1428341115250801
+198,11,0.4759648930585847,2.0,1.024005195356947,0.0006709983486177048,0.029914683607781573,0.7712437053255284,0,0.9893761920941797,0.13404805406970935
+198,12,0.46584211626752947,2.0,1.0227084972051534,0.0006688171592774914,0.030223832192487247,0.7710140823088578,0,1.0,0.15280705422509816
+198,13,0.48698102039367797,2.0,1.0209584935386815,0.000668692696072693,0.03061147141431577,0.7707049262535364,0,1.0,0.15660340131225992
+198,14,0.4745876886510023,2.0,1.0195789518362541,0.0006666267612133525,0.030610654647419966,0.7704603134760035,0,1.0,0.18195896217000765
+198,15,0.4972042642164068,2.0,1.0178416732721216,0.0006665316556249393,0.03039944804116196,0.7701528956220636,0,1.0,0.19068088072135603
+198,16,0.48488749877936044,2.0,1.0163951412563086,0.0006645173192082892,0.02969756981442645,0.7698960205041534,0,1.0,0.21629166259786808
+198,17,0.5053713763213856,2.0,1.2811458375973759,0.0007733145997377803,0.03541387692875223,0.8134662828146925,0,1.0,0.21790458773795204
+198,18,0.47084669406068036,2.0,1.2976692979345696,0.0007622347932658039,0.03554231735817991,0.815957230660183,0,0.9994597094291733,0.23687603429670334
+198,19,0.5147615136609879,1.95,1.296726664073816,0.0007655030155895588,0.035684010400130875,0.8042792553170616,0,1.0,0.21587171220329296
+198,20,0.5137280814707309,1.95,1.2952920138035164,0.0007606427905375641,0.036110062038323634,0.8040517910205978,0,1.0,0.2124269382357694
+198,21,0.4757908860664124,2.0,1.2952155120699074,0.000754927121425168,0.036003733972382525,0.8155862591765224,0,1.0,0.2526362868880413
+198,22,0.50179523819274,1.95,1.2960294619703094,0.0007564757597873767,0.035998835306388144,0.8041666393111524,0,1.0,0.2726507939757999
+198,23,0.4839258426535635,1.95,1.2933916538701005,0.0007593275874431564,0.03534184891668676,0.8037517966306678,0,1.0,0.2797528088452115
+198,24,0.5274232399800395,2.0,1.2925057476756319,0.0007621822333286699,0.035473906441458376,0.8151805337709421,0,1.0,0.25807746660013164
+198,25,0.508731168933958,2.0,1.294050702285623,0.0007552493837164319,0.03542160107402949,0.815411098202825,0,1.0,0.29577056311319316
+198,26,0.4844823807824342,2.0,1.2930976627447182,0.0007569562024633575,0.03571101569830147,0.815268121649156,0,0.9952745359754983,0.287908554640783
+198,27,0.49244123047263444,1.95,1.2922582800580444,0.0007595768472736216,0.036071121469162394,0.8035730412279122,0,0.9968882113405055,0.31228648645477397
+198,28,0.49442343785308873,2.0,1.2896936448366179,0.0007632916998155878,0.03547319049082013,0.8147568182298478,1,1.0,0.314744792843629
+198,29,0.5143634898382943,2.0,1.3400269564376703,0.0006916292158215106,0.035766861202143965,0.8222125517918136,1,1.0,0.3145449661276475
+198,30,0.5144035698817022,2.0,1.3428297997702328,0.0007007083752798749,0.03611321433293487,0.8226245484312645,1,1.0,0.3146785662723408
+198,31,0.5438326072424042,2.0,1.3445672567128324,0.0007091422669343601,0.03612726776133513,0.8228803830530439,1,1.0,0.3461086908080139
+198,32,0.5721736469259158,2.0,1.3450238146657718,0.0007048444655920607,0.03571697639239817,0.8229456633422315,1,1.0,0.4072454897530522
+198,33,0.5227851534555301,2.0,1.3816767777078671,0.0006991496262127226,0.03638171111416012,0.828221543033092,1,1.0,0.37595051151843356
+198,34,0.5587094836590888,1.95,1.330928342458738,0.0007024498039446191,0.03563981599782795,0.8095876780247748,1,1.0,0.3956982788636292
+198,35,0.5391705174635637,1.95,1.3302567548482642,0.0006979031223795881,0.035842392807645576,0.8094827252169317,1,1.0,0.39723505821187893
+198,36,0.5166646331455351,2.0,1.332695265642732,0.0007079787318207362,0.035696990677282034,0.8211430814924087,1,1.0,0.3555487771517836
+198,37,0.5345044519613925,1.95,1.343805685626408,0.0007033358070895205,0.03607062282793639,0.8115651521237156,1,1.0,0.38168150653797495
+198,38,0.5359576208037228,2.0,1.3442410101035824,0.0007116695819011138,0.03600849424182945,0.8228335650265627,1,1.0,0.3865254026790758
+198,39,0.5381191535183358,2.0,1.345859975565443,0.0007189131775322392,0.036077102496217,0.82307156173015,1,1.0,0.3937305117277861
+198,40,0.5700735750845878,2.0,1.345841307084145,0.0007255043982192094,0.036198918506895994,0.8230707628254539,1,1.0,0.43357858361529256
+198,41,0.596879679976392,2.0,1.3806651901065088,0.000699368653036617,0.03666874742656075,0.8280776384143952,1,1.0,0.48959893325464
+198,42,0.6185697094999166,2.0,1.3796160465595197,0.0006992820501604544,0.036484506261971715,0.8279282009373633,1,1.0,0.5618990316663884
+198,43,0.6126041227853944,2.0,1.378374770928607,0.0006991863263205897,0.03648185835920263,0.8277512656852182,1,1.0,0.5753470759513147
+198,44,0.5960438801919575,2.0,1.3781695158867269,0.0006978209440771303,0.03651415114171079,0.827721609233,1,1.0,0.5868129339731916
+198,45,0.6202204839696147,2.0,1.3788326014826868,0.0006999415747529689,0.03637184836266657,0.8278167482629291,1,1.0,0.6007349465653823
+198,46,0.5818483611777175,2.0,1.376972335504192,0.0006985476961892045,0.036566436616516616,0.8275510334953038,1,1.0,0.5728278705923916
+198,47,0.6408896086870133,1.95,1.3784434461141535,0.0006984575228986651,0.036577289722975706,0.8168036730621235,1,1.0,0.6362986956233776
+198,48,0.5911307085675139,1.95,1.3776590297614997,0.0007015598483850229,0.036597023873380805,0.8166871963070447,1,1.0,0.6037690285583798
+198,49,0.6477113093668773,1.9,1.3780719717382506,0.0007044267243139601,0.03655173835666908,0.805257013274406,1,1.0,0.6590376978895908
+199,0,0.10411188182600559,1.9,1.3783236410565676,0.0006948602536412769,0.03616001602049154,0.8052934766117555,0,0.09904785102659615,0.2149758047178904
+199,1,0.0850885479279059,1.8499999999999999,1.378236394983336,0.0006947007492443712,0.03643470060373268,0.7932496227767994,0,0.19002320698937172,0.1969308837738574
+199,2,0.21696852881314732,1.9,1.3628710012164043,0.0007175098201634814,0.036474511370041436,0.8028663000217111,0,0.2828988953369174,0.1793632355946011
+199,3,0.1985811927218484,1.9,1.3815963353412068,0.0007014158538820505,0.03641029303610459,0.8058081606568382,0,0.30093331979420485,0.19402621601388823
+199,4,0.2493192625095357,1.95,1.3814835839638748,0.0007009686669311387,0.03666984612303879,0.8172588974022349,0,0.39007971310454886,0.1776245908923872
+199,5,0.2520116028970389,1.95,1.3814407370595037,0.0007012553777627893,0.0365818718553152,0.8172525839085316,0,0.4307348876897675,0.19905882607043957
+199,6,0.2990788550969152,2.0,1.2476872074066065,0.0007858309369376433,0.03510927637727075,0.8083398568640298,0,0.49699730366341005,0.20093311210517054
+199,7,0.33807246681073067,2.0,1.2338649241954465,0.0008047425095952159,0.03545125357417395,0.8061951967749114,0,0.5986687106361613,0.1620166085208871
+199,8,0.3723444186961218,2.0,1.2333578046755989,0.00077611037265804,0.03523934596409568,0.8061069996712802,0,0.7022985262374821,0.13808336067042984
+199,9,0.40171296824648933,2.0,0.35015201909318044,8.382309475458483e-05,0.010095842988945046,0.6318867768941944,0,0.8113316399564086,0.09060104087975304
+199,10,0.36255543283442776,2.0,1.0091202225476237,0.0006640835589100034,0.029685986757676502,0.7686045399234357,0,0.8170810178600877,0.11907675230130885
+199,11,0.37192805033210735,2.0,1.0281690357785331,0.0006760295115963833,0.030084737273099633,0.7719792600268384,0,0.8317492563530476,0.13076115930296103
+199,12,0.41519971447752096,2.0,1.0448989905626787,0.0006896400000837913,0.030924121190026216,0.7749155290705895,0,0.8768348670451153,0.14821922553158268
+199,13,0.4369235561724345,2.0,1.0434145102817107,0.0006894433787340282,0.03133488155420136,0.774656429554091,0,0.9079579972158343,0.17913452428700255
+199,14,0.48879791137975254,2.0,1.041757643799694,0.0006892039736246167,0.031410745669383774,0.7743669852972893,0,0.9887513757943268,0.1776578702067394
+199,15,0.4562092646889099,2.0,1.0406458985343894,0.0006858603592226314,0.03112333101919924,0.774171509724533,0,0.9997991356830612,0.18763203471895132
+199,16,0.4965091065990162,2.0,1.0560692640655547,0.0007008567307645939,0.03096587747484202,0.7768617682782312,0,1.0,0.18836368866338732
+199,17,0.48349853175918756,2.0,1.0548653538545998,0.000696676770156351,0.030841547434944022,0.7766515536783787,0,1.0,0.21166177253062496
+199,18,0.507210257358782,2.0,1.291879329052584,0.0007045828223715203,0.03478085224881956,0.8150687746558241,0,1.0,0.19070085786260643
+199,19,0.4934093615832432,2.0,1.0484383303659206,0.0006965227041964046,0.03150195127670059,0.7755346614180563,0,1.0,0.1780312052774774
+199,20,0.4870335799172191,2.0,1.0473229898674592,0.0006927218317697703,0.0315482042144717,0.7753391184197113,0,1.0,0.15677859972406352
+199,21,0.48962311763860406,2.0,1.0460762395117098,0.0006892331015762563,0.031197438212742713,0.7751206582312506,0,1.0,0.16541039212868022
+199,22,0.473509914018999,2.0,1.044741718748431,0.0006856691804399279,0.03061953209909704,0.7748867109913102,0,1.0,0.17836638006332986
+199,23,0.49045532754440757,2.0,1.0432296603081959,0.0006860882241706005,0.030465017341335738,0.7746229882951173,0,1.0,0.16818442514802526
+199,24,0.4887829581123426,2.0,1.0418665091043013,0.0006827280663655491,0.030727053186662096,0.7743837431257441,0,1.0,0.16260986037447545
+199,25,0.45328538975210986,2.0,1.040489060046102,0.0006796168087226224,0.031007929410066498,0.774141905160294,0,1.0,0.1776179658403662
+199,26,0.4560399511982967,2.0,1.0552856098983727,0.0006923989033537714,0.03154869423565433,0.7767229606930681,0,1.0,0.18679983732765562
+199,27,0.49761152597483427,2.0,1.067900165451399,0.0007057588212974175,0.03175929211115697,0.7789075951008831,0,1.0,0.19203841991611426
+199,28,0.48536518635323206,2.0,1.0666513489293366,0.000701951498614998,0.03118825268062616,0.7786911485737457,0,1.0,0.21788395451077341
+199,29,0.49944438185328816,2.0,1.2920348489296403,0.000705114836279226,0.03479987213062603,0.815092375644472,0,1.0,0.2648146061776271
+199,30,0.47809541892332297,2.0,1.2903318474669199,0.0007054005021011154,0.03474110910876728,0.8148356531819606,0,0.9965883173875436,0.26486697322768504
+199,31,0.5065853323641982,1.95,1.2924315563929007,0.0007142344507206944,0.03494262571973137,0.8035860774315284,0,1.0,0.2886177745473274
+199,32,0.4889047903857975,1.95,1.2888484558163773,0.0007149875764701425,0.03539910614400088,0.8030201599937793,0,1.0,0.2963493012859915
+199,33,0.5330090838106483,2.0,1.2904014457036084,0.0007236458011007004,0.03531830788172975,0.8148516591727997,0,1.0,0.2766969460354941
+199,34,0.5167849869557709,2.0,1.2912002412421693,0.0007181797708217755,0.03541397058523538,0.8149704934167361,0,1.0,0.2559499565192362
+199,35,0.5189480683427227,2.0,1.306869580445645,0.000711188308767476,0.03511934967078942,0.8173195894531715,0,1.0,0.22982689447574192
+199,36,0.5152256710559824,2.0,1.3057265684808521,0.0007071831658331188,0.03493722643265268,0.8171476695294335,0,1.0,0.21741890351994123
+199,37,0.48987932559179337,2.0,1.3044958767767907,0.0007035060559828778,0.03502488208982843,0.8169626113430207,0,1.0,0.23293108530597775
+199,38,0.4689480456203536,1.95,1.3031517483251753,0.0007040578824995678,0.03513113316987383,0.805269407710412,0,0.9945831089480603,0.237049340137098
+199,39,0.470523377789442,1.9,1.3028490600747522,0.000711131749689602,0.03531936592130218,0.7931914815254214,0,0.985254536653221,0.25473854376051175
+199,40,0.4756908896950004,1.95,1.3020378266076187,0.0007178082339838886,0.035136545154875944,0.8050989888886935,0,0.989627810960785,0.2661325510356212
+199,41,0.5083508521627019,2.0,1.3040274128002718,0.0007230044601766932,0.03513765621899914,0.8168983823553954,0,1.0,0.29450284054233977
+199,42,0.5146459883622738,2.0,1.3043252282982043,0.0007233511586511278,0.035052996652866764,0.8169430277236575,0,1.0,0.3154866278742462
+199,43,0.49915022852395086,2.0,1.3029799283121897,0.0007242797814267427,0.03519559434229521,0.8167420341829519,0,1.0,0.3305007617465028
+199,44,0.5302526146797091,2.0,1.303129519344067,0.0007300199326734998,0.03546221635315895,0.8167661412218293,0,1.0,0.3675087155990303
+199,45,0.5372896167797906,2.0,1.3017310884621245,0.000731046400311719,0.03580033554844915,0.8165570679545769,0,1.0,0.39096538926596847
+199,46,0.5570292729105536,2.0,1.3002250922278797,0.0007320296133182038,0.03580267480069222,0.8163316696167721,0,1.0,0.39009757636851183
+199,47,0.5600012113808935,2.0,1.3152696039933507,0.0007241858321663927,0.03555276355187644,0.8185743015827328,0,1.0,0.3666707046029781
+199,48,0.5125039217873364,2.0,1.3144509623295015,0.0007195210307842636,0.035200349120402416,0.8184513067914858,0,1.0,0.3750130726244547
+199,49,0.5631243135049427,1.95,1.31454739098725,0.0007249040968054972,0.03547622391595246,0.8070566433994916,0,1.0,0.3770810450164756
diff --git a/app.py b/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..1f50da50d625f87fedec8e9bcefb5c6ebc0332f3
--- /dev/null
+++ b/app.py
@@ -0,0 +1,368 @@
+import os
+import sys
+import time
+import uuid
+from pathlib import Path
+
+import gradio as gr
+import numpy as np
+import matplotlib.pyplot as plt
+
+ROOT = Path(__file__).resolve().parent
+
+# Make local quark folders importable
+for p in [ROOT / 'Down', ROOT / 'Strange', ROOT / 'Charm']:
+ if p.exists() and str(p) not in sys.path:
+ sys.path.insert(0, str(p))
+
+RUNTIME_DIR = Path('/tmp/twoquarks_runs')
+RUNTIME_DIR.mkdir(parents=True, exist_ok=True)
+
+
+def _run_id() -> str:
+ return str(uuid.uuid4())[:8]
+
+
+def _save_csv(path: Path, header: list[str], rows: list[list[object]]) -> None:
+ path.parent.mkdir(parents=True, exist_ok=True)
+ with path.open('w', encoding='utf-8') as f:
+ f.write(','.join(header) + '\n')
+ for row in rows:
+ f.write(','.join(map(str, row)) + '\n')
+
+
+def _plot_series(y, title, xlabel='step', ylabel='value'):
+ fig, ax = plt.subplots()
+ ax.plot(y)
+ ax.set_title(title)
+ ax.set_xlabel(xlabel)
+ ax.set_ylabel(ylabel)
+ ax.grid(True, alpha=0.2)
+ return fig
+
+
+# =========================
+# DOWN / AntiDown
+# =========================
+
+def run_down(episodes_per_phase: int, seed: int):
+ """Runs Down paradox tabular experiment (HFLevo vs LevoParadoxIsomer)."""
+ from down.exp.run_paradox_tabular import run_experiment
+
+ run_id = _run_id()
+ out_dir = RUNTIME_DIR / f'down_{run_id}'
+ out_csv = out_dir / 'down_paradox_tabular_results.csv'
+
+ run_experiment(out_csv=out_csv, episodes_per_phase=int(episodes_per_phase), seed=int(seed))
+
+ # Load and summarize
+ import csv
+ rows = []
+ with out_csv.open('r', encoding='utf-8') as f:
+ reader = csv.DictReader(f)
+ for r in reader:
+ rows.append(r)
+
+ # Aggregate mean reward by phase+agent
+ phases = sorted({int(r['phase']) for r in rows})
+ agents = sorted({r['agent'] for r in rows})
+ summary = {}
+ for a in agents:
+ summary[a] = {p: [] for p in phases}
+ for r in rows:
+ summary[r['agent']][int(r['phase'])].append(float(r['episode_reward']))
+
+ table_lines = []
+ for a in agents:
+ for p in phases:
+ vals = summary[a][p]
+ table_lines.append({
+ 'agent': a,
+ 'phase': p,
+ 'mean_reward': float(np.mean(vals)) if vals else float('nan'),
+ 'std_reward': float(np.std(vals)) if vals else float('nan'),
+ 'n': len(vals),
+ })
+
+ # Plot: mean reward per phase (bar-ish via line)
+ fig, ax = plt.subplots()
+ for a in agents:
+ means = [np.mean(summary[a][p]) if summary[a][p] else np.nan for p in phases]
+ ax.plot(phases, means, marker='o', label=a)
+ ax.set_title('DOWN: Mean reward by phase')
+ ax.set_xlabel('phase')
+ ax.set_ylabel('mean episode reward')
+ ax.grid(True, alpha=0.2)
+ ax.legend()
+
+ meta = {
+ 'run_id': run_id,
+ 'timestamp_utc': time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime()),
+ 'seed': int(seed),
+ 'episodes_per_phase': int(episodes_per_phase),
+ 'artifact_csv': str(out_csv),
+ }
+
+ return meta, table_lines, fig, str(out_csv)
+
+
+def run_antidown(n_episodes: int, base_seed: int):
+ """Runs AntiDown corrupted valley tabular experiment with adjustable n_episodes."""
+ # Import pieces from the script
+ from AntiDown.envs.corrupted_valley import CorruptedValleyEnv
+ from AntiDown.levo.levo_q_tabular import LevoQTabularAgent
+ from AntiDown.levo.levo_thinking_ensemble import LevoThinkingEnsembleAgent
+ from AntiDown.exp.run_corrupted_valley_tabular import EpsGreedyQAgent, SoftmaxBoltzmannAgent, run_phase
+ from AntiDown.utils.logging import CSVLogger
+
+ run_id = _run_id()
+ out_dir = RUNTIME_DIR / f'antidown_{run_id}'
+ out_csv = out_dir / 'antidown_corrupted_valley_tabular.csv'
+
+ base_seed = int(base_seed)
+ seed_offset = 1000
+
+ probe_env = CorruptedValleyEnv(seed=base_seed, phase=1)
+ n_states = probe_env.n_states
+ n_actions = probe_env.n_actions
+
+ agents = [
+ EpsGreedyQAgent(n_states, n_actions, epsilon=0.1, name='EpsGreedy'),
+ SoftmaxBoltzmannAgent(n_states, n_actions, tau=0.5, name='Softmax'),
+ LevoQTabularAgent(n_states, n_actions, A=0.5, omega=0.05, ent_weight=0.0, name='LevoQ'),
+ LevoThinkingEnsembleAgent(n_states, n_actions, n_heads=5, A=0.5, omega=0.05, lambda_var=0.5, name='LevoThinking'),
+ ]
+
+ logger = CSVLogger(
+ str(out_csv),
+ fieldnames=['phase', 'phase_tag', 'episode', 'agent', 'total_reward', 'valley_visits'],
+ )
+
+ n_episodes = int(n_episodes)
+
+ # 3 phases
+ run_phase(base_seed, seed_offset, 1, n_episodes, agents, logger, noisy_heads_spec=None, noise_std=0.0)
+ run_phase(base_seed, seed_offset, 2, n_episodes, agents, logger, noisy_heads_spec=None, noise_std=0.0)
+ run_phase(base_seed, seed_offset, 3, n_episodes, agents, logger, noisy_heads_spec=None, noise_std=0.1)
+
+ # Summarize
+ import csv
+ rows = []
+ with out_csv.open('r', encoding='utf-8') as f:
+ reader = csv.DictReader(f)
+ for r in reader:
+ rows.append(r)
+
+ phases = sorted({int(r['phase']) for r in rows})
+ agents_names = sorted({r['agent'] for r in rows})
+ summary = {a: {p: [] for p in phases} for a in agents_names}
+ for r in rows:
+ summary[r['agent']][int(r['phase'])].append(float(r['total_reward']))
+
+ table_lines = []
+ for a in agents_names:
+ for p in phases:
+ vals = summary[a][p]
+ table_lines.append({
+ 'agent': a,
+ 'phase': p,
+ 'mean_total_reward': float(np.mean(vals)) if vals else float('nan'),
+ 'std_total_reward': float(np.std(vals)) if vals else float('nan'),
+ 'mean_valley_visits': float(np.mean([float(rr['valley_visits']) for rr in rows if rr['agent']==a and int(rr['phase'])==p])) if vals else float('nan'),
+ 'n': len(vals),
+ })
+
+ fig, ax = plt.subplots()
+ for a in agents_names:
+ means = [np.mean(summary[a][p]) if summary[a][p] else np.nan for p in phases]
+ ax.plot(phases, means, marker='o', label=a)
+ ax.set_title('AntiDown: Mean total reward by phase')
+ ax.set_xlabel('phase')
+ ax.set_ylabel('mean episode total reward')
+ ax.grid(True, alpha=0.2)
+ ax.legend()
+
+ meta = {
+ 'run_id': run_id,
+ 'timestamp_utc': time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime()),
+ 'base_seed': base_seed,
+ 'episodes_per_phase': n_episodes,
+ 'artifact_csv': str(out_csv),
+ }
+
+ return meta, table_lines, fig, str(out_csv)
+
+
+# =========================
+# STRANGE / AntiStrange
+# =========================
+
+def run_strange(n_episodes: int, max_steps: int, seed: int, mode: str):
+ if mode == 'Strange':
+ from strange.exp.run_strange_hypothesis_lab import run_experiment
+ out_name = 'strange_hypothesis_lab.csv'
+ else:
+ from AntiStrange.exp.run_antistrange_hypothesis_lab import run_antistrange as run_experiment
+ out_name = 'antistrange_hypothesis_lab.csv'
+
+ run_id = _run_id()
+ out_dir = RUNTIME_DIR / f"{mode.lower()}_{run_id}"
+ out_csv = out_dir / out_name
+
+ run_experiment(n_episodes=int(n_episodes), max_steps=int(max_steps), seed=int(seed), out_path=str(out_csv))
+
+ # Load CSV and make curves
+ import csv
+ rewards_by_ep = {}
+ with out_csv.open('r', encoding='utf-8') as f:
+ reader = csv.DictReader(f)
+ for r in reader:
+ ep = int(r['episode'])
+ rewards_by_ep.setdefault(ep, 0.0)
+ rewards_by_ep[ep] += float(r['reward'])
+
+ eps = sorted(rewards_by_ep.keys())
+ ep_returns = [rewards_by_ep[e] for e in eps]
+
+ fig = _plot_series(ep_returns, f'{mode}: return per episode', xlabel='episode', ylabel='return')
+
+ metrics = {
+ 'run_id': run_id,
+ 'timestamp_utc': time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime()),
+ 'mode': mode,
+ 'seed': int(seed),
+ 'n_episodes': int(n_episodes),
+ 'max_steps': int(max_steps),
+ 'return_mean_last_20': float(np.mean(ep_returns[-20:])) if len(ep_returns) >= 20 else float(np.mean(ep_returns)),
+ 'return_std_last_20': float(np.std(ep_returns[-20:])) if len(ep_returns) >= 20 else float(np.std(ep_returns)),
+ 'artifact_csv': str(out_csv),
+ }
+
+ return metrics, fig, str(out_csv)
+
+
+# =========================
+# CHARM
+# =========================
+
+def run_charm(n_episodes: int, seed: int):
+ from charm.levo.charm import train_charm_enchanted_valley
+
+ run_id = _run_id()
+ out_dir = RUNTIME_DIR / f'charm_{run_id}'
+ out_dir.mkdir(parents=True, exist_ok=True)
+
+ stats = train_charm_enchanted_valley(n_episodes=int(n_episodes), seed=int(seed))
+
+ rewards = stats['rewards']
+ lam = stats['lambda']
+ rho = stats['rho_mean']
+
+ fig_r = _plot_series(rewards, 'Charm: reward per episode', xlabel='episode', ylabel='reward')
+ fig_l = _plot_series(lam, 'Charm: lambda (meta-control) per episode', xlabel='episode', ylabel='lambda')
+ fig_rho = _plot_series(rho, 'Charm: rho_mean per episode', xlabel='episode', ylabel='rho_mean')
+
+ # Save CSV artifact
+ out_csv = out_dir / 'charm_timeseries.csv'
+ header = ['episode', 'reward', 'lambda', 'rho_mean']
+ rows = [[i, float(rewards[i]), float(lam[i]), float(rho[i])] for i in range(len(rewards))]
+ _save_csv(out_csv, header, rows)
+
+ metrics = {
+ 'run_id': run_id,
+ 'timestamp_utc': time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime()),
+ 'seed': int(seed),
+ 'n_episodes': int(n_episodes),
+ 'reward_mean_last_50': float(np.mean(rewards[-50:])) if len(rewards) >= 50 else float(np.mean(rewards)),
+ 'reward_std_last_50': float(np.std(rewards[-50:])) if len(rewards) >= 50 else float(np.std(rewards)),
+ 'artifact_csv': str(out_csv),
+ }
+
+ return metrics, fig_r, fig_l, fig_rho, str(out_csv)
+
+
+# =========================
+# UI
+# =========================
+
+def build_ui():
+ with gr.Blocks(title='TwoQuarks — QuarksLab (Interactive)') as demo:
+ gr.Markdown(
+ """# TwoQuarks • QuarksLab (Interactive)\n\n"
+ "Real runs, real knobs: seed/episodes/steps. Short-bounded experiments (public CPU)."
+ """
+ )
+
+ with gr.Tab('DOWN / AntiDown'):
+ gr.Markdown('Tabular experiments (fast).')
+ with gr.Row():
+ down_eps = gr.Slider(50, 800, value=200, step=50, label='DOWN: episodes_per_phase')
+ down_seed = gr.Number(value=2025, precision=0, label='DOWN: seed')
+ run_down_btn = gr.Button('Run DOWN')
+ down_meta = gr.JSON(label='DOWN: run meta')
+ down_table = gr.Dataframe(label='DOWN: summary (mean/std by phase+agent)', interactive=False)
+ down_plot = gr.Plot(label='DOWN: mean reward by phase')
+ down_file = gr.File(label='DOWN: results CSV')
+
+ run_down_btn.click(
+ fn=run_down,
+ inputs=[down_eps, down_seed],
+ outputs=[down_meta, down_table, down_plot, down_file],
+ )
+
+ gr.Markdown('---')
+ with gr.Row():
+ ad_eps = gr.Slider(20, 400, value=120, step=20, label='AntiDown: episodes_per_phase')
+ ad_seed = gr.Number(value=1234, precision=0, label='AntiDown: base seed')
+ run_ad_btn = gr.Button('Run AntiDown')
+ ad_meta = gr.JSON(label='AntiDown: run meta')
+ ad_table = gr.Dataframe(label='AntiDown: summary', interactive=False)
+ ad_plot = gr.Plot(label='AntiDown: mean total reward by phase')
+ ad_file = gr.File(label='AntiDown: results CSV')
+
+ run_ad_btn.click(
+ fn=run_antidown,
+ inputs=[ad_eps, ad_seed],
+ outputs=[ad_meta, ad_table, ad_plot, ad_file],
+ )
+
+ with gr.Tab('STRANGE / AntiStrange'):
+ gr.Markdown('HypothesisLab: swarm dynamics with hidden regime shifts.')
+ mode = gr.Radio(['Strange', 'AntiStrange'], value='Strange', label='Mode')
+ with gr.Row():
+ seps = gr.Slider(50, 500, value=200, step=50, label='Episodes')
+ ssteps = gr.Slider(10, 120, value=50, step=5, label='Max steps per episode')
+ sseed = gr.Number(value=0, precision=0, label='Seed')
+ run_s_btn = gr.Button('Run')
+ s_meta = gr.JSON(label='Run meta')
+ s_plot = gr.Plot(label='Return per episode')
+ s_file = gr.File(label='Results CSV')
+ run_s_btn.click(fn=run_strange, inputs=[seps, ssteps, sseed, mode], outputs=[s_meta, s_plot, s_file])
+
+ with gr.Tab('CHARM'):
+ gr.Markdown('Enchanted Valley: non-stationary graph + CharmField meta-control.')
+ with gr.Row():
+ ceps = gr.Slider(50, 600, value=300, step=50, label='Episodes')
+ cseed = gr.Number(value=0, precision=0, label='Seed')
+ run_c_btn = gr.Button('Run CHARM')
+ c_meta = gr.JSON(label='Run meta')
+ c_plot_r = gr.Plot(label='Reward')
+ c_plot_l = gr.Plot(label='Lambda')
+ c_plot_rho = gr.Plot(label='Rho_mean')
+ c_file = gr.File(label='Timeseries CSV')
+ run_c_btn.click(fn=run_charm, inputs=[ceps, cseed], outputs=[c_meta, c_plot_r, c_plot_l, c_plot_rho, c_file])
+
+ gr.Markdown(
+ """### Notes
+- This Space runs bounded experiments on shared CPU.
+- For heavy runs, keep episodes modest and use the CSV artifact to reproduce locally.
+"""
+ )
+
+ return demo
+
+
+demo = build_ui()
+
+if __name__ == '__main__':
+ demo.launch()
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..760bcae49e34b867422083a41b21d3c651901a74
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,3 @@
+gradio
+numpy
+matplotlib